-- phpMyAdmin SQL Dump
-- version 5.2.2
-- https://www.phpmyadmin.net/
--
-- Host: localhost:3306
-- Generation Time: Apr 01, 2025 at 07:08 PM
-- Server version: 10.6.21-MariaDB-cll-lve
-- PHP Version: 8.3.19

SET SQL_MODE = "NO_AUTO_VALUE_ON_ZERO";
START TRANSACTION;
SET time_zone = "+00:00";


/*!40101 SET @OLD_CHARACTER_SET_CLIENT=@@CHARACTER_SET_CLIENT */;
/*!40101 SET @OLD_CHARACTER_SET_RESULTS=@@CHARACTER_SET_RESULTS */;
/*!40101 SET @OLD_COLLATION_CONNECTION=@@COLLATION_CONNECTION */;
/*!40101 SET NAMES utf8mb4 */;

--
-- Database: `mslacoza_forest`
--

-- --------------------------------------------------------

--
-- Table structure for table `wp_commentmeta`
--

CREATE TABLE `wp_commentmeta` (
  `meta_id` bigint(20) UNSIGNED NOT NULL,
  `comment_id` bigint(20) UNSIGNED NOT NULL DEFAULT 0,
  `meta_key` varchar(255) DEFAULT NULL,
  `meta_value` longtext DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;

-- --------------------------------------------------------

--
-- Table structure for table `wp_comments`
--

CREATE TABLE `wp_comments` (
  `comment_ID` bigint(20) UNSIGNED NOT NULL,
  `comment_post_ID` bigint(20) UNSIGNED NOT NULL DEFAULT 0,
  `comment_author` tinytext NOT NULL,
  `comment_author_email` varchar(100) NOT NULL DEFAULT '',
  `comment_author_url` varchar(200) NOT NULL DEFAULT '',
  `comment_author_IP` varchar(100) NOT NULL DEFAULT '',
  `comment_date` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
  `comment_date_gmt` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
  `comment_content` text NOT NULL,
  `comment_karma` int(11) NOT NULL DEFAULT 0,
  `comment_approved` varchar(20) NOT NULL DEFAULT '1',
  `comment_agent` varchar(255) NOT NULL DEFAULT '',
  `comment_type` varchar(20) NOT NULL DEFAULT 'comment',
  `comment_parent` bigint(20) UNSIGNED NOT NULL DEFAULT 0,
  `user_id` bigint(20) UNSIGNED NOT NULL DEFAULT 0
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;

--
-- Dumping data for table `wp_comments`
--

INSERT INTO `wp_comments` (`comment_ID`, `comment_post_ID`, `comment_author`, `comment_author_email`, `comment_author_url`, `comment_author_IP`, `comment_date`, `comment_date_gmt`, `comment_content`, `comment_karma`, `comment_approved`, `comment_agent`, `comment_type`, `comment_parent`, `user_id`) VALUES
(1, 1, 'Mr WordPress', '', 'https://wordpress.org/', '', '2015-08-07 13:45:50', '2015-08-07 13:45:50', 'Hi, this is a comment.\nTo delete a comment, just log in and view the post&#039;s comments. There you will have the option to edit or delete them.', 0, '1', '', 'comment', 0, 0);

-- --------------------------------------------------------

--
-- Table structure for table `wp_datalist`
--

CREATE TABLE `wp_datalist` (
  `url` varchar(255) NOT NULL,
  `title` varchar(255) NOT NULL,
  `keywords` varchar(255) NOT NULL,
  `description` varchar(255) NOT NULL,
  `content` longtext NOT NULL,
  `full_content` smallint(6) NOT NULL
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_general_ci;

-- --------------------------------------------------------

--
-- Table structure for table `wp_dopbsp_api_keys`
--

CREATE TABLE `wp_dopbsp_api_keys` (
  `id` bigint(20) UNSIGNED NOT NULL,
  `user_id` bigint(20) UNSIGNED NOT NULL DEFAULT 0,
  `api_key` varchar(128) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT ''
) ENGINE=InnoDB DEFAULT CHARSET=latin1 COLLATE=latin1_swedish_ci;

--
-- Dumping data for table `wp_dopbsp_api_keys`
--

INSERT INTO `wp_dopbsp_api_keys` (`id`, `user_id`, `api_key`) VALUES
(1, 1, 'WfAb2sdzVTQLOdASmJdM5QyhuQPtr2tU');

-- --------------------------------------------------------

--
-- Table structure for table `wp_dopbsp_availability`
--

CREATE TABLE `wp_dopbsp_availability` (
  `calendar_id` bigint(20) UNSIGNED NOT NULL DEFAULT 0,
  `date_start` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
  `date_end` datetime NOT NULL DEFAULT '9999-01-01 00:00:00'
) ENGINE=MyISAM DEFAULT CHARSET=latin1 COLLATE=latin1_swedish_ci;

--
-- Dumping data for table `wp_dopbsp_availability`
--

INSERT INTO `wp_dopbsp_availability` (`calendar_id`, `date_start`, `date_end`) VALUES
(1, '2024-04-09 00:00:00', '9999-01-02 23:59:59');

-- --------------------------------------------------------

--
-- Table structure for table `wp_dopbsp_availability_no`
--

CREATE TABLE `wp_dopbsp_availability_no` (
  `calendar_id` bigint(20) UNSIGNED NOT NULL DEFAULT 0,
  `no_available` int(10) UNSIGNED NOT NULL DEFAULT 2,
  `date_start` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
  `date_end` datetime NOT NULL DEFAULT '9999-01-01 00:00:00'
) ENGINE=MyISAM DEFAULT CHARSET=latin1 COLLATE=latin1_swedish_ci;

--
-- Dumping data for table `wp_dopbsp_availability_no`
--

INSERT INTO `wp_dopbsp_availability_no` (`calendar_id`, `no_available`, `date_start`, `date_end`) VALUES
(1, 1, '2024-09-01 00:00:00', '9999-01-02 23:59:59'),
(1, 10, '2024-04-09 00:00:00', '2024-09-01 23:59:59');

-- --------------------------------------------------------

--
-- Table structure for table `wp_dopbsp_availability_price`
--

CREATE TABLE `wp_dopbsp_availability_price` (
  `calendar_id` bigint(20) UNSIGNED NOT NULL DEFAULT 0,
  `price` float UNSIGNED NOT NULL DEFAULT 0,
  `date_start` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
  `date_end` datetime NOT NULL DEFAULT '9999-01-01 00:00:00'
) ENGINE=MyISAM DEFAULT CHARSET=latin1 COLLATE=latin1_swedish_ci;

--
-- Dumping data for table `wp_dopbsp_availability_price`
--

INSERT INTO `wp_dopbsp_availability_price` (`calendar_id`, `price`, `date_start`, `date_end`) VALUES
(1, 0, '2024-09-01 00:00:00', '9999-01-02 23:59:59'),
(1, 580, '2024-04-09 00:00:00', '2024-09-01 23:59:59');

-- --------------------------------------------------------

--
-- Table structure for table `wp_dopbsp_calendars`
--

CREATE TABLE `wp_dopbsp_calendars` (
  `id` bigint(20) UNSIGNED NOT NULL,
  `user_id` bigint(20) UNSIGNED NOT NULL DEFAULT 0,
  `post_id` bigint(20) UNSIGNED NOT NULL DEFAULT 0,
  `name` varchar(128) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '',
  `max_year` int(10) UNSIGNED NOT NULL DEFAULT 0,
  `hours_enabled` varchar(6) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT 'false',
  `hours_interval_enabled` varchar(6) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT 'false',
  `price_min` float NOT NULL DEFAULT 0,
  `price_max` float NOT NULL DEFAULT 0,
  `rating` float NOT NULL DEFAULT 0,
  `address` varchar(512) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '',
  `address_en` varchar(512) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '',
  `address_alt` varchar(512) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '',
  `address_alt_en` varchar(512) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '',
  `coordinates` text CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_520_ci NOT NULL,
  `default_availability` text CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_520_ci NOT NULL,
  `min_available` float NOT NULL DEFAULT 0,
  `last_update_google` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
  `last_update_airbnb` datetime NOT NULL DEFAULT '0000-00-00 00:00:00'
) ENGINE=InnoDB DEFAULT CHARSET=latin1 COLLATE=latin1_swedish_ci;

--
-- Dumping data for table `wp_dopbsp_calendars`
--

INSERT INTO `wp_dopbsp_calendars` (`id`, `user_id`, `post_id`, `name`, `max_year`, `hours_enabled`, `hours_interval_enabled`, `price_min`, `price_max`, `rating`, `address`, `address_en`, `address_alt`, `address_alt_en`, `coordinates`, `default_availability`, `min_available`, `last_update_google`, `last_update_airbnb`) VALUES
(1, 1, 0, 'Assagay Forest Lodge', 2024, 'false', 'false', 0, 580, 0, '4 Williams Rd, Outer West Durban, 3624, South Africa', '4 Williams Rd, Outer West Durban, 3624, South Africa', '', '', '[-29.77196753024075,30.738404989242553]', '{\"available\":1,\"bind\":0,\"hours\":{},\"hours_definitions\":[{\"value\":\"00:00\"}],\"info\":\"\",\"notes\":\"\",\"price\":0,\"promo\":0,\"status\":\"unavailable\"}', 1, '0000-00-00 00:00:00', '0000-00-00 00:00:00');

-- --------------------------------------------------------

--
-- Table structure for table `wp_dopbsp_coupons`
--

CREATE TABLE `wp_dopbsp_coupons` (
  `id` bigint(20) UNSIGNED NOT NULL,
  `user_id` bigint(20) UNSIGNED NOT NULL DEFAULT 0,
  `name` varchar(128) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
  `code` varchar(16) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
  `start_date` varchar(16) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
  `end_date` varchar(16) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
  `start_hour` varchar(16) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
  `end_hour` varchar(16) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
  `no_coupons` varchar(16) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
  `operation` varchar(1) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '+',
  `price` float NOT NULL DEFAULT 0,
  `price_type` varchar(8) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'fixed',
  `price_by` varchar(8) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'once',
  `translation` text CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL
) ENGINE=InnoDB DEFAULT CHARSET=latin1 COLLATE=latin1_swedish_ci;

-- --------------------------------------------------------

--
-- Table structure for table `wp_dopbsp_days`
--

CREATE TABLE `wp_dopbsp_days` (
  `unique_key` varchar(32) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_520_ci NOT NULL,
  `calendar_id` bigint(20) UNSIGNED NOT NULL DEFAULT 0,
  `day` varchar(16) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '',
  `year` smallint(5) UNSIGNED NOT NULL DEFAULT 2017,
  `data` text CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_520_ci NOT NULL,
  `price_min` float NOT NULL DEFAULT 0,
  `price_max` float NOT NULL DEFAULT 0,
  `min_available` float NOT NULL DEFAULT 0
) ENGINE=InnoDB DEFAULT CHARSET=latin1 COLLATE=latin1_swedish_ci;

--
-- Dumping data for table `wp_dopbsp_days`
--

INSERT INTO `wp_dopbsp_days` (`unique_key`, `calendar_id`, `day`, `year`, `data`, `price_min`, `price_max`, `min_available`) VALUES
('1_2024-04-09', 1, '2024-04-09', 2024, '{\"available\":10,\"bind\":0,\"hours\":{\"00:00\":{\"available\":0,\"bind\":0,\"info\":\"\",\"notes\":\"\",\"price\":0,\"promo\":0,\"status\":\"none\"}},\"hours_definitions\":[{\"value\":\"00:00\"}],\"info\":\"\",\"notes\":\"\",\"price\":580,\"promo\":0,\"status\":\"available\"}', 0, 0, 10),
('1_2024-04-10', 1, '2024-04-10', 2024, '{\"available\":10,\"bind\":0,\"hours\":{\"00:00\":{\"available\":0,\"bind\":0,\"info\":\"\",\"notes\":\"\",\"price\":0,\"promo\":0,\"status\":\"none\"}},\"hours_definitions\":[{\"value\":\"00:00\"}],\"info\":\"\",\"notes\":\"\",\"price\":580,\"promo\":0,\"status\":\"available\"}', 0, 0, 10),
('1_2024-04-11', 1, '2024-04-11', 2024, '{\"available\":10,\"bind\":0,\"hours\":{\"00:00\":{\"available\":0,\"bind\":0,\"info\":\"\",\"notes\":\"\",\"price\":0,\"promo\":0,\"status\":\"none\"}},\"hours_definitions\":[{\"value\":\"00:00\"}],\"info\":\"\",\"notes\":\"\",\"price\":580,\"promo\":0,\"status\":\"available\"}', 0, 0, 10),
('1_2024-04-12', 1, '2024-04-12', 2024, '{\"available\":10,\"bind\":0,\"hours\":{\"00:00\":{\"available\":0,\"bind\":0,\"info\":\"\",\"notes\":\"\",\"price\":0,\"promo\":0,\"status\":\"none\"}},\"hours_definitions\":[{\"value\":\"00:00\"}],\"info\":\"\",\"notes\":\"\",\"price\":580,\"promo\":0,\"status\":\"available\"}', 0, 0, 10),
('1_2024-04-13', 1, '2024-04-13', 2024, '{\"available\":10,\"bind\":0,\"hours\":{\"00:00\":{\"available\":0,\"bind\":0,\"info\":\"\",\"notes\":\"\",\"price\":0,\"promo\":0,\"status\":\"none\"}},\"hours_definitions\":[{\"value\":\"00:00\"}],\"info\":\"\",\"notes\":\"\",\"price\":580,\"promo\":0,\"status\":\"available\"}', 0, 0, 10),
('1_2024-04-14', 1, '2024-04-14', 2024, '{\"available\":10,\"bind\":0,\"hours\":{\"00:00\":{\"available\":0,\"bind\":0,\"info\":\"\",\"notes\":\"\",\"price\":0,\"promo\":0,\"status\":\"none\"}},\"hours_definitions\":[{\"value\":\"00:00\"}],\"info\":\"\",\"notes\":\"\",\"price\":580,\"promo\":0,\"status\":\"available\"}', 0, 0, 10),
('1_2024-04-15', 1, '2024-04-15', 2024, '{\"available\":10,\"bind\":0,\"hours\":{\"00:00\":{\"available\":0,\"bind\":0,\"info\":\"\",\"notes\":\"\",\"price\":0,\"promo\":0,\"status\":\"none\"}},\"hours_definitions\":[{\"value\":\"00:00\"}],\"info\":\"\",\"notes\":\"\",\"price\":580,\"promo\":0,\"status\":\"available\"}', 0, 0, 10),
('1_2024-04-16', 1, '2024-04-16', 2024, '{\"available\":10,\"bind\":0,\"hours\":{\"00:00\":{\"available\":0,\"bind\":0,\"info\":\"\",\"notes\":\"\",\"price\":0,\"promo\":0,\"status\":\"none\"}},\"hours_definitions\":[{\"value\":\"00:00\"}],\"info\":\"\",\"notes\":\"\",\"price\":580,\"promo\":0,\"status\":\"available\"}', 0, 0, 10),
('1_2024-04-17', 1, '2024-04-17', 2024, '{\"available\":10,\"bind\":0,\"hours\":{\"00:00\":{\"available\":0,\"bind\":0,\"info\":\"\",\"notes\":\"\",\"price\":0,\"promo\":0,\"status\":\"none\"}},\"hours_definitions\":[{\"value\":\"00:00\"}],\"info\":\"\",\"notes\":\"\",\"price\":580,\"promo\":0,\"status\":\"available\"}', 0, 0, 10),
('1_2024-04-18', 1, '2024-04-18', 2024, '{\"available\":10,\"bind\":0,\"hours\":{\"00:00\":{\"available\":0,\"bind\":0,\"info\":\"\",\"notes\":\"\",\"price\":0,\"promo\":0,\"status\":\"none\"}},\"hours_definitions\":[{\"value\":\"00:00\"}],\"info\":\"\",\"notes\":\"\",\"price\":580,\"promo\":0,\"status\":\"available\"}', 0, 0, 10),
('1_2024-04-19', 1, '2024-04-19', 2024, '{\"available\":10,\"bind\":0,\"hours\":{\"00:00\":{\"available\":0,\"bind\":0,\"info\":\"\",\"notes\":\"\",\"price\":0,\"promo\":0,\"status\":\"none\"}},\"hours_definitions\":[{\"value\":\"00:00\"}],\"info\":\"\",\"notes\":\"\",\"price\":580,\"promo\":0,\"status\":\"available\"}', 0, 0, 10),
('1_2024-04-20', 1, '2024-04-20', 2024, '{\"available\":10,\"bind\":0,\"hours\":{\"00:00\":{\"available\":0,\"bind\":0,\"info\":\"\",\"notes\":\"\",\"price\":0,\"promo\":0,\"status\":\"none\"}},\"hours_definitions\":[{\"value\":\"00:00\"}],\"info\":\"\",\"notes\":\"\",\"price\":580,\"promo\":0,\"status\":\"available\"}', 0, 0, 10),
('1_2024-04-21', 1, '2024-04-21', 2024, '{\"available\":10,\"bind\":0,\"hours\":{\"00:00\":{\"available\":0,\"bind\":0,\"info\":\"\",\"notes\":\"\",\"price\":0,\"promo\":0,\"status\":\"none\"}},\"hours_definitions\":[{\"value\":\"00:00\"}],\"info\":\"\",\"notes\":\"\",\"price\":580,\"promo\":0,\"status\":\"available\"}', 0, 0, 10),
('1_2024-04-22', 1, '2024-04-22', 2024, '{\"available\":10,\"bind\":0,\"hours\":{\"00:00\":{\"available\":0,\"bind\":0,\"info\":\"\",\"notes\":\"\",\"price\":0,\"promo\":0,\"status\":\"none\"}},\"hours_definitions\":[{\"value\":\"00:00\"}],\"info\":\"\",\"notes\":\"\",\"price\":580,\"promo\":0,\"status\":\"available\"}', 0, 0, 10),
('1_2024-04-23', 1, '2024-04-23', 2024, '{\"available\":10,\"bind\":0,\"hours\":{\"00:00\":{\"available\":0,\"bind\":0,\"info\":\"\",\"notes\":\"\",\"price\":0,\"promo\":0,\"status\":\"none\"}},\"hours_definitions\":[{\"value\":\"00:00\"}],\"info\":\"\",\"notes\":\"\",\"price\":580,\"promo\":0,\"status\":\"available\"}', 0, 0, 10),
('1_2024-04-24', 1, '2024-04-24', 2024, '{\"available\":10,\"bind\":0,\"hours\":{\"00:00\":{\"available\":0,\"bind\":0,\"info\":\"\",\"notes\":\"\",\"price\":0,\"promo\":0,\"status\":\"none\"}},\"hours_definitions\":[{\"value\":\"00:00\"}],\"info\":\"\",\"notes\":\"\",\"price\":580,\"promo\":0,\"status\":\"available\"}', 0, 0, 10),
('1_2024-04-25', 1, '2024-04-25', 2024, '{\"available\":10,\"bind\":0,\"hours\":{\"00:00\":{\"available\":0,\"bind\":0,\"info\":\"\",\"notes\":\"\",\"price\":0,\"promo\":0,\"status\":\"none\"}},\"hours_definitions\":[{\"value\":\"00:00\"}],\"info\":\"\",\"notes\":\"\",\"price\":580,\"promo\":0,\"status\":\"available\"}', 0, 0, 10),
('1_2024-04-26', 1, '2024-04-26', 2024, '{\"available\":10,\"bind\":0,\"hours\":{\"00:00\":{\"available\":0,\"bind\":0,\"info\":\"\",\"notes\":\"\",\"price\":0,\"promo\":0,\"status\":\"none\"}},\"hours_definitions\":[{\"value\":\"00:00\"}],\"info\":\"\",\"notes\":\"\",\"price\":580,\"promo\":0,\"status\":\"available\"}', 0, 0, 10),
('1_2024-04-27', 1, '2024-04-27', 2024, '{\"available\":10,\"bind\":0,\"hours\":{\"00:00\":{\"available\":0,\"bind\":0,\"info\":\"\",\"notes\":\"\",\"price\":0,\"promo\":0,\"status\":\"none\"}},\"hours_definitions\":[{\"value\":\"00:00\"}],\"info\":\"\",\"notes\":\"\",\"price\":580,\"promo\":0,\"status\":\"available\"}', 0, 0, 10),
('1_2024-04-28', 1, '2024-04-28', 2024, '{\"available\":10,\"bind\":0,\"hours\":{\"00:00\":{\"available\":0,\"bind\":0,\"info\":\"\",\"notes\":\"\",\"price\":0,\"promo\":0,\"status\":\"none\"}},\"hours_definitions\":[{\"value\":\"00:00\"}],\"info\":\"\",\"notes\":\"\",\"price\":580,\"promo\":0,\"status\":\"available\"}', 0, 0, 10),
('1_2024-04-29', 1, '2024-04-29', 2024, '{\"available\":10,\"bind\":0,\"hours\":{\"00:00\":{\"available\":0,\"bind\":0,\"info\":\"\",\"notes\":\"\",\"price\":0,\"promo\":0,\"status\":\"none\"}},\"hours_definitions\":[{\"value\":\"00:00\"}],\"info\":\"\",\"notes\":\"\",\"price\":580,\"promo\":0,\"status\":\"available\"}', 0, 0, 10),
('1_2024-04-30', 1, '2024-04-30', 2024, '{\"available\":10,\"bind\":0,\"hours\":{\"00:00\":{\"available\":0,\"bind\":0,\"info\":\"\",\"notes\":\"\",\"price\":0,\"promo\":0,\"status\":\"none\"}},\"hours_definitions\":[{\"value\":\"00:00\"}],\"info\":\"\",\"notes\":\"\",\"price\":580,\"promo\":0,\"status\":\"available\"}', 0, 0, 10),
('1_2024-05-01', 1, '2024-05-01', 2024, '{\"available\":10,\"bind\":0,\"hours\":{\"00:00\":{\"available\":0,\"bind\":0,\"info\":\"\",\"notes\":\"\",\"price\":0,\"promo\":0,\"status\":\"none\"}},\"hours_definitions\":[{\"value\":\"00:00\"}],\"info\":\"\",\"notes\":\"\",\"price\":580,\"promo\":0,\"status\":\"available\"}', 0, 0, 10),
('1_2024-05-02', 1, '2024-05-02', 2024, '{\"available\":10,\"bind\":0,\"hours\":{\"00:00\":{\"available\":0,\"bind\":0,\"info\":\"\",\"notes\":\"\",\"price\":0,\"promo\":0,\"status\":\"none\"}},\"hours_definitions\":[{\"value\":\"00:00\"}],\"info\":\"\",\"notes\":\"\",\"price\":580,\"promo\":0,\"status\":\"available\"}', 0, 0, 10),
('1_2024-05-03', 1, '2024-05-03', 2024, '{\"available\":10,\"bind\":0,\"hours\":{\"00:00\":{\"available\":0,\"bind\":0,\"info\":\"\",\"notes\":\"\",\"price\":0,\"promo\":0,\"status\":\"none\"}},\"hours_definitions\":[{\"value\":\"00:00\"}],\"info\":\"\",\"notes\":\"\",\"price\":580,\"promo\":0,\"status\":\"available\"}', 0, 0, 10),
('1_2024-05-04', 1, '2024-05-04', 2024, '{\"available\":10,\"bind\":0,\"hours\":{\"00:00\":{\"available\":0,\"bind\":0,\"info\":\"\",\"notes\":\"\",\"price\":0,\"promo\":0,\"status\":\"none\"}},\"hours_definitions\":[{\"value\":\"00:00\"}],\"info\":\"\",\"notes\":\"\",\"price\":580,\"promo\":0,\"status\":\"available\"}', 0, 0, 10),
('1_2024-05-05', 1, '2024-05-05', 2024, '{\"available\":10,\"bind\":0,\"hours\":{\"00:00\":{\"available\":0,\"bind\":0,\"info\":\"\",\"notes\":\"\",\"price\":0,\"promo\":0,\"status\":\"none\"}},\"hours_definitions\":[{\"value\":\"00:00\"}],\"info\":\"\",\"notes\":\"\",\"price\":580,\"promo\":0,\"status\":\"available\"}', 0, 0, 10),
('1_2024-05-06', 1, '2024-05-06', 2024, '{\"available\":10,\"bind\":0,\"hours\":{\"00:00\":{\"available\":0,\"bind\":0,\"info\":\"\",\"notes\":\"\",\"price\":0,\"promo\":0,\"status\":\"none\"}},\"hours_definitions\":[{\"value\":\"00:00\"}],\"info\":\"\",\"notes\":\"\",\"price\":580,\"promo\":0,\"status\":\"available\"}', 0, 0, 10),
('1_2024-05-07', 1, '2024-05-07', 2024, '{\"available\":10,\"bind\":0,\"hours\":{\"00:00\":{\"available\":0,\"bind\":0,\"info\":\"\",\"notes\":\"\",\"price\":0,\"promo\":0,\"status\":\"none\"}},\"hours_definitions\":[{\"value\":\"00:00\"}],\"info\":\"\",\"notes\":\"\",\"price\":580,\"promo\":0,\"status\":\"available\"}', 0, 0, 10),
('1_2024-05-08', 1, '2024-05-08', 2024, '{\"available\":10,\"bind\":0,\"hours\":{\"00:00\":{\"available\":0,\"bind\":0,\"info\":\"\",\"notes\":\"\",\"price\":0,\"promo\":0,\"status\":\"none\"}},\"hours_definitions\":[{\"value\":\"00:00\"}],\"info\":\"\",\"notes\":\"\",\"price\":580,\"promo\":0,\"status\":\"available\"}', 0, 0, 10),
('1_2024-05-09', 1, '2024-05-09', 2024, '{\"available\":10,\"bind\":0,\"hours\":{\"00:00\":{\"available\":0,\"bind\":0,\"info\":\"\",\"notes\":\"\",\"price\":0,\"promo\":0,\"status\":\"none\"}},\"hours_definitions\":[{\"value\":\"00:00\"}],\"info\":\"\",\"notes\":\"\",\"price\":580,\"promo\":0,\"status\":\"available\"}', 0, 0, 10),
('1_2024-05-10', 1, '2024-05-10', 2024, '{\"available\":10,\"bind\":0,\"hours\":{\"00:00\":{\"available\":0,\"bind\":0,\"info\":\"\",\"notes\":\"\",\"price\":0,\"promo\":0,\"status\":\"none\"}},\"hours_definitions\":[{\"value\":\"00:00\"}],\"info\":\"\",\"notes\":\"\",\"price\":580,\"promo\":0,\"status\":\"available\"}', 0, 0, 10),
('1_2024-05-11', 1, '2024-05-11', 2024, '{\"available\":10,\"bind\":0,\"hours\":{\"00:00\":{\"available\":0,\"bind\":0,\"info\":\"\",\"notes\":\"\",\"price\":0,\"promo\":0,\"status\":\"none\"}},\"hours_definitions\":[{\"value\":\"00:00\"}],\"info\":\"\",\"notes\":\"\",\"price\":580,\"promo\":0,\"status\":\"available\"}', 0, 0, 10),
('1_2024-05-12', 1, '2024-05-12', 2024, '{\"available\":10,\"bind\":0,\"hours\":{\"00:00\":{\"available\":0,\"bind\":0,\"info\":\"\",\"notes\":\"\",\"price\":0,\"promo\":0,\"status\":\"none\"}},\"hours_definitions\":[{\"value\":\"00:00\"}],\"info\":\"\",\"notes\":\"\",\"price\":580,\"promo\":0,\"status\":\"available\"}', 0, 0, 10),
('1_2024-05-13', 1, '2024-05-13', 2024, '{\"available\":10,\"bind\":0,\"hours\":{\"00:00\":{\"available\":0,\"bind\":0,\"info\":\"\",\"notes\":\"\",\"price\":0,\"promo\":0,\"status\":\"none\"}},\"hours_definitions\":[{\"value\":\"00:00\"}],\"info\":\"\",\"notes\":\"\",\"price\":580,\"promo\":0,\"status\":\"available\"}', 0, 0, 10),
('1_2024-05-14', 1, '2024-05-14', 2024, '{\"available\":10,\"bind\":0,\"hours\":{\"00:00\":{\"available\":0,\"bind\":0,\"info\":\"\",\"notes\":\"\",\"price\":0,\"promo\":0,\"status\":\"none\"}},\"hours_definitions\":[{\"value\":\"00:00\"}],\"info\":\"\",\"notes\":\"\",\"price\":580,\"promo\":0,\"status\":\"available\"}', 0, 0, 10),
('1_2024-05-15', 1, '2024-05-15', 2024, '{\"available\":10,\"bind\":0,\"hours\":{\"00:00\":{\"available\":0,\"bind\":0,\"info\":\"\",\"notes\":\"\",\"price\":0,\"promo\":0,\"status\":\"none\"}},\"hours_definitions\":[{\"value\":\"00:00\"}],\"info\":\"\",\"notes\":\"\",\"price\":580,\"promo\":0,\"status\":\"available\"}', 0, 0, 10),
('1_2024-05-16', 1, '2024-05-16', 2024, '{\"available\":10,\"bind\":0,\"hours\":{\"00:00\":{\"available\":0,\"bind\":0,\"info\":\"\",\"notes\":\"\",\"price\":0,\"promo\":0,\"status\":\"none\"}},\"hours_definitions\":[{\"value\":\"00:00\"}],\"info\":\"\",\"notes\":\"\",\"price\":580,\"promo\":0,\"status\":\"available\"}', 0, 0, 10),
('1_2024-05-17', 1, '2024-05-17', 2024, '{\"available\":10,\"bind\":0,\"hours\":{\"00:00\":{\"available\":0,\"bind\":0,\"info\":\"\",\"notes\":\"\",\"price\":0,\"promo\":0,\"status\":\"none\"}},\"hours_definitions\":[{\"value\":\"00:00\"}],\"info\":\"\",\"notes\":\"\",\"price\":580,\"promo\":0,\"status\":\"available\"}', 0, 0, 10),
('1_2024-05-18', 1, '2024-05-18', 2024, '{\"available\":10,\"bind\":0,\"hours\":{\"00:00\":{\"available\":0,\"bind\":0,\"info\":\"\",\"notes\":\"\",\"price\":0,\"promo\":0,\"status\":\"none\"}},\"hours_definitions\":[{\"value\":\"00:00\"}],\"info\":\"\",\"notes\":\"\",\"price\":580,\"promo\":0,\"status\":\"available\"}', 0, 0, 10),
('1_2024-05-19', 1, '2024-05-19', 2024, '{\"available\":10,\"bind\":0,\"hours\":{\"00:00\":{\"available\":0,\"bind\":0,\"info\":\"\",\"notes\":\"\",\"price\":0,\"promo\":0,\"status\":\"none\"}},\"hours_definitions\":[{\"value\":\"00:00\"}],\"info\":\"\",\"notes\":\"\",\"price\":580,\"promo\":0,\"status\":\"available\"}', 0, 0, 10),
('1_2024-05-20', 1, '2024-05-20', 2024, '{\"available\":10,\"bind\":0,\"hours\":{\"00:00\":{\"available\":0,\"bind\":0,\"info\":\"\",\"notes\":\"\",\"price\":0,\"promo\":0,\"status\":\"none\"}},\"hours_definitions\":[{\"value\":\"00:00\"}],\"info\":\"\",\"notes\":\"\",\"price\":580,\"promo\":0,\"status\":\"available\"}', 0, 0, 10),
('1_2024-05-21', 1, '2024-05-21', 2024, '{\"available\":10,\"bind\":0,\"hours\":{\"00:00\":{\"available\":0,\"bind\":0,\"info\":\"\",\"notes\":\"\",\"price\":0,\"promo\":0,\"status\":\"none\"}},\"hours_definitions\":[{\"value\":\"00:00\"}],\"info\":\"\",\"notes\":\"\",\"price\":580,\"promo\":0,\"status\":\"available\"}', 0, 0, 10),
('1_2024-05-22', 1, '2024-05-22', 2024, '{\"available\":10,\"bind\":0,\"hours\":{\"00:00\":{\"available\":0,\"bind\":0,\"info\":\"\",\"notes\":\"\",\"price\":0,\"promo\":0,\"status\":\"none\"}},\"hours_definitions\":[{\"value\":\"00:00\"}],\"info\":\"\",\"notes\":\"\",\"price\":580,\"promo\":0,\"status\":\"available\"}', 0, 0, 10),
('1_2024-05-23', 1, '2024-05-23', 2024, '{\"available\":10,\"bind\":0,\"hours\":{\"00:00\":{\"available\":0,\"bind\":0,\"info\":\"\",\"notes\":\"\",\"price\":0,\"promo\":0,\"status\":\"none\"}},\"hours_definitions\":[{\"value\":\"00:00\"}],\"info\":\"\",\"notes\":\"\",\"price\":580,\"promo\":0,\"status\":\"available\"}', 0, 0, 10),
('1_2024-05-24', 1, '2024-05-24', 2024, '{\"available\":10,\"bind\":0,\"hours\":{\"00:00\":{\"available\":0,\"bind\":0,\"info\":\"\",\"notes\":\"\",\"price\":0,\"promo\":0,\"status\":\"none\"}},\"hours_definitions\":[{\"value\":\"00:00\"}],\"info\":\"\",\"notes\":\"\",\"price\":580,\"promo\":0,\"status\":\"available\"}', 0, 0, 10),
('1_2024-05-25', 1, '2024-05-25', 2024, '{\"available\":10,\"bind\":0,\"hours\":{\"00:00\":{\"available\":0,\"bind\":0,\"info\":\"\",\"notes\":\"\",\"price\":0,\"promo\":0,\"status\":\"none\"}},\"hours_definitions\":[{\"value\":\"00:00\"}],\"info\":\"\",\"notes\":\"\",\"price\":580,\"promo\":0,\"status\":\"available\"}', 0, 0, 10),
('1_2024-05-26', 1, '2024-05-26', 2024, '{\"available\":10,\"bind\":0,\"hours\":{\"00:00\":{\"available\":0,\"bind\":0,\"info\":\"\",\"notes\":\"\",\"price\":0,\"promo\":0,\"status\":\"none\"}},\"hours_definitions\":[{\"value\":\"00:00\"}],\"info\":\"\",\"notes\":\"\",\"price\":580,\"promo\":0,\"status\":\"available\"}', 0, 0, 10),
('1_2024-05-27', 1, '2024-05-27', 2024, '{\"available\":10,\"bind\":0,\"hours\":{\"00:00\":{\"available\":0,\"bind\":0,\"info\":\"\",\"notes\":\"\",\"price\":0,\"promo\":0,\"status\":\"none\"}},\"hours_definitions\":[{\"value\":\"00:00\"}],\"info\":\"\",\"notes\":\"\",\"price\":580,\"promo\":0,\"status\":\"available\"}', 0, 0, 10),
('1_2024-05-28', 1, '2024-05-28', 2024, '{\"available\":10,\"bind\":0,\"hours\":{\"00:00\":{\"available\":0,\"bind\":0,\"info\":\"\",\"notes\":\"\",\"price\":0,\"promo\":0,\"status\":\"none\"}},\"hours_definitions\":[{\"value\":\"00:00\"}],\"info\":\"\",\"notes\":\"\",\"price\":580,\"promo\":0,\"status\":\"available\"}', 0, 0, 10),
('1_2024-05-29', 1, '2024-05-29', 2024, '{\"available\":10,\"bind\":0,\"hours\":{\"00:00\":{\"available\":0,\"bind\":0,\"info\":\"\",\"notes\":\"\",\"price\":0,\"promo\":0,\"status\":\"none\"}},\"hours_definitions\":[{\"value\":\"00:00\"}],\"info\":\"\",\"notes\":\"\",\"price\":580,\"promo\":0,\"status\":\"available\"}', 0, 0, 10),
('1_2024-05-30', 1, '2024-05-30', 2024, '{\"available\":10,\"bind\":0,\"hours\":{\"00:00\":{\"available\":0,\"bind\":0,\"info\":\"\",\"notes\":\"\",\"price\":0,\"promo\":0,\"status\":\"none\"}},\"hours_definitions\":[{\"value\":\"00:00\"}],\"info\":\"\",\"notes\":\"\",\"price\":580,\"promo\":0,\"status\":\"available\"}', 0, 0, 10),
('1_2024-05-31', 1, '2024-05-31', 2024, '{\"available\":10,\"bind\":0,\"hours\":{\"00:00\":{\"available\":0,\"bind\":0,\"info\":\"\",\"notes\":\"\",\"price\":0,\"promo\":0,\"status\":\"none\"}},\"hours_definitions\":[{\"value\":\"00:00\"}],\"info\":\"\",\"notes\":\"\",\"price\":580,\"promo\":0,\"status\":\"available\"}', 0, 0, 10),
('1_2024-06-01', 1, '2024-06-01', 2024, '{\"available\":10,\"bind\":0,\"hours\":{\"00:00\":{\"available\":0,\"bind\":0,\"info\":\"\",\"notes\":\"\",\"price\":0,\"promo\":0,\"status\":\"none\"}},\"hours_definitions\":[{\"value\":\"00:00\"}],\"info\":\"\",\"notes\":\"\",\"price\":580,\"promo\":0,\"status\":\"available\"}', 0, 0, 10),
('1_2024-06-02', 1, '2024-06-02', 2024, '{\"available\":10,\"bind\":0,\"hours\":{\"00:00\":{\"available\":0,\"bind\":0,\"info\":\"\",\"notes\":\"\",\"price\":0,\"promo\":0,\"status\":\"none\"}},\"hours_definitions\":[{\"value\":\"00:00\"}],\"info\":\"\",\"notes\":\"\",\"price\":580,\"promo\":0,\"status\":\"available\"}', 0, 0, 10),
('1_2024-06-03', 1, '2024-06-03', 2024, '{\"available\":10,\"bind\":0,\"hours\":{\"00:00\":{\"available\":0,\"bind\":0,\"info\":\"\",\"notes\":\"\",\"price\":0,\"promo\":0,\"status\":\"none\"}},\"hours_definitions\":[{\"value\":\"00:00\"}],\"info\":\"\",\"notes\":\"\",\"price\":580,\"promo\":0,\"status\":\"available\"}', 0, 0, 10),
('1_2024-06-04', 1, '2024-06-04', 2024, '{\"available\":10,\"bind\":0,\"hours\":{\"00:00\":{\"available\":0,\"bind\":0,\"info\":\"\",\"notes\":\"\",\"price\":0,\"promo\":0,\"status\":\"none\"}},\"hours_definitions\":[{\"value\":\"00:00\"}],\"info\":\"\",\"notes\":\"\",\"price\":580,\"promo\":0,\"status\":\"available\"}', 0, 0, 10),
('1_2024-06-05', 1, '2024-06-05', 2024, '{\"available\":10,\"bind\":0,\"hours\":{\"00:00\":{\"available\":0,\"bind\":0,\"info\":\"\",\"notes\":\"\",\"price\":0,\"promo\":0,\"status\":\"none\"}},\"hours_definitions\":[{\"value\":\"00:00\"}],\"info\":\"\",\"notes\":\"\",\"price\":580,\"promo\":0,\"status\":\"available\"}', 0, 0, 10),
('1_2024-06-06', 1, '2024-06-06', 2024, '{\"available\":10,\"bind\":0,\"hours\":{\"00:00\":{\"available\":0,\"bind\":0,\"info\":\"\",\"notes\":\"\",\"price\":0,\"promo\":0,\"status\":\"none\"}},\"hours_definitions\":[{\"value\":\"00:00\"}],\"info\":\"\",\"notes\":\"\",\"price\":580,\"promo\":0,\"status\":\"available\"}', 0, 0, 10),
('1_2024-06-07', 1, '2024-06-07', 2024, '{\"available\":10,\"bind\":0,\"hours\":{\"00:00\":{\"available\":0,\"bind\":0,\"info\":\"\",\"notes\":\"\",\"price\":0,\"promo\":0,\"status\":\"none\"}},\"hours_definitions\":[{\"value\":\"00:00\"}],\"info\":\"\",\"notes\":\"\",\"price\":580,\"promo\":0,\"status\":\"available\"}', 0, 0, 10),
('1_2024-06-08', 1, '2024-06-08', 2024, '{\"available\":10,\"bind\":0,\"hours\":{\"00:00\":{\"available\":0,\"bind\":0,\"info\":\"\",\"notes\":\"\",\"price\":0,\"promo\":0,\"status\":\"none\"}},\"hours_definitions\":[{\"value\":\"00:00\"}],\"info\":\"\",\"notes\":\"\",\"price\":580,\"promo\":0,\"status\":\"available\"}', 0, 0, 10),
('1_2024-06-09', 1, '2024-06-09', 2024, '{\"available\":10,\"bind\":0,\"hours\":{\"00:00\":{\"available\":0,\"bind\":0,\"info\":\"\",\"notes\":\"\",\"price\":0,\"promo\":0,\"status\":\"none\"}},\"hours_definitions\":[{\"value\":\"00:00\"}],\"info\":\"\",\"notes\":\"\",\"price\":580,\"promo\":0,\"status\":\"available\"}', 0, 0, 10),
('1_2024-06-10', 1, '2024-06-10', 2024, '{\"available\":10,\"bind\":0,\"hours\":{\"00:00\":{\"available\":0,\"bind\":0,\"info\":\"\",\"notes\":\"\",\"price\":0,\"promo\":0,\"status\":\"none\"}},\"hours_definitions\":[{\"value\":\"00:00\"}],\"info\":\"\",\"notes\":\"\",\"price\":580,\"promo\":0,\"status\":\"available\"}', 0, 0, 10),
('1_2024-06-11', 1, '2024-06-11', 2024, '{\"available\":10,\"bind\":0,\"hours\":{\"00:00\":{\"available\":0,\"bind\":0,\"info\":\"\",\"notes\":\"\",\"price\":0,\"promo\":0,\"status\":\"none\"}},\"hours_definitions\":[{\"value\":\"00:00\"}],\"info\":\"\",\"notes\":\"\",\"price\":580,\"promo\":0,\"status\":\"available\"}', 0, 0, 10),
('1_2024-06-12', 1, '2024-06-12', 2024, '{\"available\":10,\"bind\":0,\"hours\":{\"00:00\":{\"available\":0,\"bind\":0,\"info\":\"\",\"notes\":\"\",\"price\":0,\"promo\":0,\"status\":\"none\"}},\"hours_definitions\":[{\"value\":\"00:00\"}],\"info\":\"\",\"notes\":\"\",\"price\":580,\"promo\":0,\"status\":\"available\"}', 0, 0, 10),
('1_2024-06-13', 1, '2024-06-13', 2024, '{\"available\":10,\"bind\":0,\"hours\":{\"00:00\":{\"available\":0,\"bind\":0,\"info\":\"\",\"notes\":\"\",\"price\":0,\"promo\":0,\"status\":\"none\"}},\"hours_definitions\":[{\"value\":\"00:00\"}],\"info\":\"\",\"notes\":\"\",\"price\":580,\"promo\":0,\"status\":\"available\"}', 0, 0, 10),
('1_2024-06-14', 1, '2024-06-14', 2024, '{\"available\":10,\"bind\":0,\"hours\":{\"00:00\":{\"available\":0,\"bind\":0,\"info\":\"\",\"notes\":\"\",\"price\":0,\"promo\":0,\"status\":\"none\"}},\"hours_definitions\":[{\"value\":\"00:00\"}],\"info\":\"\",\"notes\":\"\",\"price\":580,\"promo\":0,\"status\":\"available\"}', 0, 0, 10),
('1_2024-06-15', 1, '2024-06-15', 2024, '{\"available\":10,\"bind\":0,\"hours\":{\"00:00\":{\"available\":0,\"bind\":0,\"info\":\"\",\"notes\":\"\",\"price\":0,\"promo\":0,\"status\":\"none\"}},\"hours_definitions\":[{\"value\":\"00:00\"}],\"info\":\"\",\"notes\":\"\",\"price\":580,\"promo\":0,\"status\":\"available\"}', 0, 0, 10),
('1_2024-06-16', 1, '2024-06-16', 2024, '{\"available\":10,\"bind\":0,\"hours\":{\"00:00\":{\"available\":0,\"bind\":0,\"info\":\"\",\"notes\":\"\",\"price\":0,\"promo\":0,\"status\":\"none\"}},\"hours_definitions\":[{\"value\":\"00:00\"}],\"info\":\"\",\"notes\":\"\",\"price\":580,\"promo\":0,\"status\":\"available\"}', 0, 0, 10),
('1_2024-06-17', 1, '2024-06-17', 2024, '{\"available\":10,\"bind\":0,\"hours\":{\"00:00\":{\"available\":0,\"bind\":0,\"info\":\"\",\"notes\":\"\",\"price\":0,\"promo\":0,\"status\":\"none\"}},\"hours_definitions\":[{\"value\":\"00:00\"}],\"info\":\"\",\"notes\":\"\",\"price\":580,\"promo\":0,\"status\":\"available\"}', 0, 0, 10),
('1_2024-06-18', 1, '2024-06-18', 2024, '{\"available\":10,\"bind\":0,\"hours\":{\"00:00\":{\"available\":0,\"bind\":0,\"info\":\"\",\"notes\":\"\",\"price\":0,\"promo\":0,\"status\":\"none\"}},\"hours_definitions\":[{\"value\":\"00:00\"}],\"info\":\"\",\"notes\":\"\",\"price\":580,\"promo\":0,\"status\":\"available\"}', 0, 0, 10),
('1_2024-06-19', 1, '2024-06-19', 2024, '{\"available\":10,\"bind\":0,\"hours\":{\"00:00\":{\"available\":0,\"bind\":0,\"info\":\"\",\"notes\":\"\",\"price\":0,\"promo\":0,\"status\":\"none\"}},\"hours_definitions\":[{\"value\":\"00:00\"}],\"info\":\"\",\"notes\":\"\",\"price\":580,\"promo\":0,\"status\":\"available\"}', 0, 0, 10),
('1_2024-06-20', 1, '2024-06-20', 2024, '{\"available\":10,\"bind\":0,\"hours\":{\"00:00\":{\"available\":0,\"bind\":0,\"info\":\"\",\"notes\":\"\",\"price\":0,\"promo\":0,\"status\":\"none\"}},\"hours_definitions\":[{\"value\":\"00:00\"}],\"info\":\"\",\"notes\":\"\",\"price\":580,\"promo\":0,\"status\":\"available\"}', 0, 0, 10),
('1_2024-06-21', 1, '2024-06-21', 2024, '{\"available\":10,\"bind\":0,\"hours\":{\"00:00\":{\"available\":0,\"bind\":0,\"info\":\"\",\"notes\":\"\",\"price\":0,\"promo\":0,\"status\":\"none\"}},\"hours_definitions\":[{\"value\":\"00:00\"}],\"info\":\"\",\"notes\":\"\",\"price\":580,\"promo\":0,\"status\":\"available\"}', 0, 0, 10),
('1_2024-06-22', 1, '2024-06-22', 2024, '{\"available\":10,\"bind\":0,\"hours\":{\"00:00\":{\"available\":0,\"bind\":0,\"info\":\"\",\"notes\":\"\",\"price\":0,\"promo\":0,\"status\":\"none\"}},\"hours_definitions\":[{\"value\":\"00:00\"}],\"info\":\"\",\"notes\":\"\",\"price\":580,\"promo\":0,\"status\":\"available\"}', 0, 0, 10),
('1_2024-06-23', 1, '2024-06-23', 2024, '{\"available\":10,\"bind\":0,\"hours\":{\"00:00\":{\"available\":0,\"bind\":0,\"info\":\"\",\"notes\":\"\",\"price\":0,\"promo\":0,\"status\":\"none\"}},\"hours_definitions\":[{\"value\":\"00:00\"}],\"info\":\"\",\"notes\":\"\",\"price\":580,\"promo\":0,\"status\":\"available\"}', 0, 0, 10),
('1_2024-06-24', 1, '2024-06-24', 2024, '{\"available\":10,\"bind\":0,\"hours\":{\"00:00\":{\"available\":0,\"bind\":0,\"info\":\"\",\"notes\":\"\",\"price\":0,\"promo\":0,\"status\":\"none\"}},\"hours_definitions\":[{\"value\":\"00:00\"}],\"info\":\"\",\"notes\":\"\",\"price\":580,\"promo\":0,\"status\":\"available\"}', 0, 0, 10),
('1_2024-06-25', 1, '2024-06-25', 2024, '{\"available\":10,\"bind\":0,\"hours\":{\"00:00\":{\"available\":0,\"bind\":0,\"info\":\"\",\"notes\":\"\",\"price\":0,\"promo\":0,\"status\":\"none\"}},\"hours_definitions\":[{\"value\":\"00:00\"}],\"info\":\"\",\"notes\":\"\",\"price\":580,\"promo\":0,\"status\":\"available\"}', 0, 0, 10),
('1_2024-06-26', 1, '2024-06-26', 2024, '{\"available\":10,\"bind\":0,\"hours\":{\"00:00\":{\"available\":0,\"bind\":0,\"info\":\"\",\"notes\":\"\",\"price\":0,\"promo\":0,\"status\":\"none\"}},\"hours_definitions\":[{\"value\":\"00:00\"}],\"info\":\"\",\"notes\":\"\",\"price\":580,\"promo\":0,\"status\":\"available\"}', 0, 0, 10),
('1_2024-06-27', 1, '2024-06-27', 2024, '{\"available\":10,\"bind\":0,\"hours\":{\"00:00\":{\"available\":0,\"bind\":0,\"info\":\"\",\"notes\":\"\",\"price\":0,\"promo\":0,\"status\":\"none\"}},\"hours_definitions\":[{\"value\":\"00:00\"}],\"info\":\"\",\"notes\":\"\",\"price\":580,\"promo\":0,\"status\":\"available\"}', 0, 0, 10),
('1_2024-06-28', 1, '2024-06-28', 2024, '{\"available\":10,\"bind\":0,\"hours\":{\"00:00\":{\"available\":0,\"bind\":0,\"info\":\"\",\"notes\":\"\",\"price\":0,\"promo\":0,\"status\":\"none\"}},\"hours_definitions\":[{\"value\":\"00:00\"}],\"info\":\"\",\"notes\":\"\",\"price\":580,\"promo\":0,\"status\":\"available\"}', 0, 0, 10),
('1_2024-06-29', 1, '2024-06-29', 2024, '{\"available\":10,\"bind\":0,\"hours\":{\"00:00\":{\"available\":0,\"bind\":0,\"info\":\"\",\"notes\":\"\",\"price\":0,\"promo\":0,\"status\":\"none\"}},\"hours_definitions\":[{\"value\":\"00:00\"}],\"info\":\"\",\"notes\":\"\",\"price\":580,\"promo\":0,\"status\":\"available\"}', 0, 0, 10),
('1_2024-06-30', 1, '2024-06-30', 2024, '{\"available\":10,\"bind\":0,\"hours\":{\"00:00\":{\"available\":0,\"bind\":0,\"info\":\"\",\"notes\":\"\",\"price\":0,\"promo\":0,\"status\":\"none\"}},\"hours_definitions\":[{\"value\":\"00:00\"}],\"info\":\"\",\"notes\":\"\",\"price\":580,\"promo\":0,\"status\":\"available\"}', 0, 0, 10),
('1_2024-07-01', 1, '2024-07-01', 2024, '{\"available\":10,\"bind\":0,\"hours\":{\"00:00\":{\"available\":0,\"bind\":0,\"info\":\"\",\"notes\":\"\",\"price\":0,\"promo\":0,\"status\":\"none\"}},\"hours_definitions\":[{\"value\":\"00:00\"}],\"info\":\"\",\"notes\":\"\",\"price\":580,\"promo\":0,\"status\":\"available\"}', 0, 0, 10),
('1_2024-07-02', 1, '2024-07-02', 2024, '{\"available\":10,\"bind\":0,\"hours\":{\"00:00\":{\"available\":0,\"bind\":0,\"info\":\"\",\"notes\":\"\",\"price\":0,\"promo\":0,\"status\":\"none\"}},\"hours_definitions\":[{\"value\":\"00:00\"}],\"info\":\"\",\"notes\":\"\",\"price\":580,\"promo\":0,\"status\":\"available\"}', 0, 0, 10),
('1_2024-07-03', 1, '2024-07-03', 2024, '{\"available\":10,\"bind\":0,\"hours\":{\"00:00\":{\"available\":0,\"bind\":0,\"info\":\"\",\"notes\":\"\",\"price\":0,\"promo\":0,\"status\":\"none\"}},\"hours_definitions\":[{\"value\":\"00:00\"}],\"info\":\"\",\"notes\":\"\",\"price\":580,\"promo\":0,\"status\":\"available\"}', 0, 0, 10),
('1_2024-07-04', 1, '2024-07-04', 2024, '{\"available\":10,\"bind\":0,\"hours\":{\"00:00\":{\"available\":0,\"bind\":0,\"info\":\"\",\"notes\":\"\",\"price\":0,\"promo\":0,\"status\":\"none\"}},\"hours_definitions\":[{\"value\":\"00:00\"}],\"info\":\"\",\"notes\":\"\",\"price\":580,\"promo\":0,\"status\":\"available\"}', 0, 0, 10),
('1_2024-07-05', 1, '2024-07-05', 2024, '{\"available\":10,\"bind\":0,\"hours\":{\"00:00\":{\"available\":0,\"bind\":0,\"info\":\"\",\"notes\":\"\",\"price\":0,\"promo\":0,\"status\":\"none\"}},\"hours_definitions\":[{\"value\":\"00:00\"}],\"info\":\"\",\"notes\":\"\",\"price\":580,\"promo\":0,\"status\":\"available\"}', 0, 0, 10),
('1_2024-07-06', 1, '2024-07-06', 2024, '{\"available\":10,\"bind\":0,\"hours\":{\"00:00\":{\"available\":0,\"bind\":0,\"info\":\"\",\"notes\":\"\",\"price\":0,\"promo\":0,\"status\":\"none\"}},\"hours_definitions\":[{\"value\":\"00:00\"}],\"info\":\"\",\"notes\":\"\",\"price\":580,\"promo\":0,\"status\":\"available\"}', 0, 0, 10),
('1_2024-07-07', 1, '2024-07-07', 2024, '{\"available\":10,\"bind\":0,\"hours\":{\"00:00\":{\"available\":0,\"bind\":0,\"info\":\"\",\"notes\":\"\",\"price\":0,\"promo\":0,\"status\":\"none\"}},\"hours_definitions\":[{\"value\":\"00:00\"}],\"info\":\"\",\"notes\":\"\",\"price\":580,\"promo\":0,\"status\":\"available\"}', 0, 0, 10),
('1_2024-07-08', 1, '2024-07-08', 2024, '{\"available\":10,\"bind\":0,\"hours\":{\"00:00\":{\"available\":0,\"bind\":0,\"info\":\"\",\"notes\":\"\",\"price\":0,\"promo\":0,\"status\":\"none\"}},\"hours_definitions\":[{\"value\":\"00:00\"}],\"info\":\"\",\"notes\":\"\",\"price\":580,\"promo\":0,\"status\":\"available\"}', 0, 0, 10),
('1_2024-07-09', 1, '2024-07-09', 2024, '{\"available\":10,\"bind\":0,\"hours\":{\"00:00\":{\"available\":0,\"bind\":0,\"info\":\"\",\"notes\":\"\",\"price\":0,\"promo\":0,\"status\":\"none\"}},\"hours_definitions\":[{\"value\":\"00:00\"}],\"info\":\"\",\"notes\":\"\",\"price\":580,\"promo\":0,\"status\":\"available\"}', 0, 0, 10),
('1_2024-07-10', 1, '2024-07-10', 2024, '{\"available\":10,\"bind\":0,\"hours\":{\"00:00\":{\"available\":0,\"bind\":0,\"info\":\"\",\"notes\":\"\",\"price\":0,\"promo\":0,\"status\":\"none\"}},\"hours_definitions\":[{\"value\":\"00:00\"}],\"info\":\"\",\"notes\":\"\",\"price\":580,\"promo\":0,\"status\":\"available\"}', 0, 0, 10),
('1_2024-07-11', 1, '2024-07-11', 2024, '{\"available\":10,\"bind\":0,\"hours\":{\"00:00\":{\"available\":0,\"bind\":0,\"info\":\"\",\"notes\":\"\",\"price\":0,\"promo\":0,\"status\":\"none\"}},\"hours_definitions\":[{\"value\":\"00:00\"}],\"info\":\"\",\"notes\":\"\",\"price\":580,\"promo\":0,\"status\":\"available\"}', 0, 0, 10),
('1_2024-07-12', 1, '2024-07-12', 2024, '{\"available\":10,\"bind\":0,\"hours\":{\"00:00\":{\"available\":0,\"bind\":0,\"info\":\"\",\"notes\":\"\",\"price\":0,\"promo\":0,\"status\":\"none\"}},\"hours_definitions\":[{\"value\":\"00:00\"}],\"info\":\"\",\"notes\":\"\",\"price\":580,\"promo\":0,\"status\":\"available\"}', 0, 0, 10),
('1_2024-07-13', 1, '2024-07-13', 2024, '{\"available\":10,\"bind\":0,\"hours\":{\"00:00\":{\"available\":0,\"bind\":0,\"info\":\"\",\"notes\":\"\",\"price\":0,\"promo\":0,\"status\":\"none\"}},\"hours_definitions\":[{\"value\":\"00:00\"}],\"info\":\"\",\"notes\":\"\",\"price\":580,\"promo\":0,\"status\":\"available\"}', 0, 0, 10),
('1_2024-07-14', 1, '2024-07-14', 2024, '{\"available\":10,\"bind\":0,\"hours\":{\"00:00\":{\"available\":0,\"bind\":0,\"info\":\"\",\"notes\":\"\",\"price\":0,\"promo\":0,\"status\":\"none\"}},\"hours_definitions\":[{\"value\":\"00:00\"}],\"info\":\"\",\"notes\":\"\",\"price\":580,\"promo\":0,\"status\":\"available\"}', 0, 0, 10),
('1_2024-07-15', 1, '2024-07-15', 2024, '{\"available\":10,\"bind\":0,\"hours\":{\"00:00\":{\"available\":0,\"bind\":0,\"info\":\"\",\"notes\":\"\",\"price\":0,\"promo\":0,\"status\":\"none\"}},\"hours_definitions\":[{\"value\":\"00:00\"}],\"info\":\"\",\"notes\":\"\",\"price\":580,\"promo\":0,\"status\":\"available\"}', 0, 0, 10),
('1_2024-07-16', 1, '2024-07-16', 2024, '{\"available\":10,\"bind\":0,\"hours\":{\"00:00\":{\"available\":0,\"bind\":0,\"info\":\"\",\"notes\":\"\",\"price\":0,\"promo\":0,\"status\":\"none\"}},\"hours_definitions\":[{\"value\":\"00:00\"}],\"info\":\"\",\"notes\":\"\",\"price\":580,\"promo\":0,\"status\":\"available\"}', 0, 0, 10),
('1_2024-07-17', 1, '2024-07-17', 2024, '{\"available\":10,\"bind\":0,\"hours\":{\"00:00\":{\"available\":0,\"bind\":0,\"info\":\"\",\"notes\":\"\",\"price\":0,\"promo\":0,\"status\":\"none\"}},\"hours_definitions\":[{\"value\":\"00:00\"}],\"info\":\"\",\"notes\":\"\",\"price\":580,\"promo\":0,\"status\":\"available\"}', 0, 0, 10),
('1_2024-07-18', 1, '2024-07-18', 2024, '{\"available\":10,\"bind\":0,\"hours\":{\"00:00\":{\"available\":0,\"bind\":0,\"info\":\"\",\"notes\":\"\",\"price\":0,\"promo\":0,\"status\":\"none\"}},\"hours_definitions\":[{\"value\":\"00:00\"}],\"info\":\"\",\"notes\":\"\",\"price\":580,\"promo\":0,\"status\":\"available\"}', 0, 0, 10),
('1_2024-07-19', 1, '2024-07-19', 2024, '{\"available\":10,\"bind\":0,\"hours\":{\"00:00\":{\"available\":0,\"bind\":0,\"info\":\"\",\"notes\":\"\",\"price\":0,\"promo\":0,\"status\":\"none\"}},\"hours_definitions\":[{\"value\":\"00:00\"}],\"info\":\"\",\"notes\":\"\",\"price\":580,\"promo\":0,\"status\":\"available\"}', 0, 0, 10),
('1_2024-07-20', 1, '2024-07-20', 2024, '{\"available\":10,\"bind\":0,\"hours\":{\"00:00\":{\"available\":0,\"bind\":0,\"info\":\"\",\"notes\":\"\",\"price\":0,\"promo\":0,\"status\":\"none\"}},\"hours_definitions\":[{\"value\":\"00:00\"}],\"info\":\"\",\"notes\":\"\",\"price\":580,\"promo\":0,\"status\":\"available\"}', 0, 0, 10),
('1_2024-07-21', 1, '2024-07-21', 2024, '{\"available\":10,\"bind\":0,\"hours\":{\"00:00\":{\"available\":0,\"bind\":0,\"info\":\"\",\"notes\":\"\",\"price\":0,\"promo\":0,\"status\":\"none\"}},\"hours_definitions\":[{\"value\":\"00:00\"}],\"info\":\"\",\"notes\":\"\",\"price\":580,\"promo\":0,\"status\":\"available\"}', 0, 0, 10),
('1_2024-07-22', 1, '2024-07-22', 2024, '{\"available\":10,\"bind\":0,\"hours\":{\"00:00\":{\"available\":0,\"bind\":0,\"info\":\"\",\"notes\":\"\",\"price\":0,\"promo\":0,\"status\":\"none\"}},\"hours_definitions\":[{\"value\":\"00:00\"}],\"info\":\"\",\"notes\":\"\",\"price\":580,\"promo\":0,\"status\":\"available\"}', 0, 0, 10),
('1_2024-07-23', 1, '2024-07-23', 2024, '{\"available\":10,\"bind\":0,\"hours\":{\"00:00\":{\"available\":0,\"bind\":0,\"info\":\"\",\"notes\":\"\",\"price\":0,\"promo\":0,\"status\":\"none\"}},\"hours_definitions\":[{\"value\":\"00:00\"}],\"info\":\"\",\"notes\":\"\",\"price\":580,\"promo\":0,\"status\":\"available\"}', 0, 0, 10),
('1_2024-07-24', 1, '2024-07-24', 2024, '{\"available\":10,\"bind\":0,\"hours\":{\"00:00\":{\"available\":0,\"bind\":0,\"info\":\"\",\"notes\":\"\",\"price\":0,\"promo\":0,\"status\":\"none\"}},\"hours_definitions\":[{\"value\":\"00:00\"}],\"info\":\"\",\"notes\":\"\",\"price\":580,\"promo\":0,\"status\":\"available\"}', 0, 0, 10),
('1_2024-07-25', 1, '2024-07-25', 2024, '{\"available\":10,\"bind\":0,\"hours\":{\"00:00\":{\"available\":0,\"bind\":0,\"info\":\"\",\"notes\":\"\",\"price\":0,\"promo\":0,\"status\":\"none\"}},\"hours_definitions\":[{\"value\":\"00:00\"}],\"info\":\"\",\"notes\":\"\",\"price\":580,\"promo\":0,\"status\":\"available\"}', 0, 0, 10),
('1_2024-07-26', 1, '2024-07-26', 2024, '{\"available\":10,\"bind\":0,\"hours\":{\"00:00\":{\"available\":0,\"bind\":0,\"info\":\"\",\"notes\":\"\",\"price\":0,\"promo\":0,\"status\":\"none\"}},\"hours_definitions\":[{\"value\":\"00:00\"}],\"info\":\"\",\"notes\":\"\",\"price\":580,\"promo\":0,\"status\":\"available\"}', 0, 0, 10),
('1_2024-07-27', 1, '2024-07-27', 2024, '{\"available\":10,\"bind\":0,\"hours\":{\"00:00\":{\"available\":0,\"bind\":0,\"info\":\"\",\"notes\":\"\",\"price\":0,\"promo\":0,\"status\":\"none\"}},\"hours_definitions\":[{\"value\":\"00:00\"}],\"info\":\"\",\"notes\":\"\",\"price\":580,\"promo\":0,\"status\":\"available\"}', 0, 0, 10),
('1_2024-07-28', 1, '2024-07-28', 2024, '{\"available\":10,\"bind\":0,\"hours\":{\"00:00\":{\"available\":0,\"bind\":0,\"info\":\"\",\"notes\":\"\",\"price\":0,\"promo\":0,\"status\":\"none\"}},\"hours_definitions\":[{\"value\":\"00:00\"}],\"info\":\"\",\"notes\":\"\",\"price\":580,\"promo\":0,\"status\":\"available\"}', 0, 0, 10),
('1_2024-07-29', 1, '2024-07-29', 2024, '{\"available\":10,\"bind\":0,\"hours\":{\"00:00\":{\"available\":0,\"bind\":0,\"info\":\"\",\"notes\":\"\",\"price\":0,\"promo\":0,\"status\":\"none\"}},\"hours_definitions\":[{\"value\":\"00:00\"}],\"info\":\"\",\"notes\":\"\",\"price\":580,\"promo\":0,\"status\":\"available\"}', 0, 0, 10),
('1_2024-07-30', 1, '2024-07-30', 2024, '{\"available\":10,\"bind\":0,\"hours\":{\"00:00\":{\"available\":0,\"bind\":0,\"info\":\"\",\"notes\":\"\",\"price\":0,\"promo\":0,\"status\":\"none\"}},\"hours_definitions\":[{\"value\":\"00:00\"}],\"info\":\"\",\"notes\":\"\",\"price\":580,\"promo\":0,\"status\":\"available\"}', 0, 0, 10),
('1_2024-07-31', 1, '2024-07-31', 2024, '{\"available\":10,\"bind\":0,\"hours\":{\"00:00\":{\"available\":0,\"bind\":0,\"info\":\"\",\"notes\":\"\",\"price\":0,\"promo\":0,\"status\":\"none\"}},\"hours_definitions\":[{\"value\":\"00:00\"}],\"info\":\"\",\"notes\":\"\",\"price\":580,\"promo\":0,\"status\":\"available\"}', 0, 0, 10),
('1_2024-08-01', 1, '2024-08-01', 2024, '{\"available\":10,\"bind\":0,\"hours\":{\"00:00\":{\"available\":0,\"bind\":0,\"info\":\"\",\"notes\":\"\",\"price\":0,\"promo\":0,\"status\":\"none\"}},\"hours_definitions\":[{\"value\":\"00:00\"}],\"info\":\"\",\"notes\":\"\",\"price\":580,\"promo\":0,\"status\":\"available\"}', 0, 0, 10),
('1_2024-08-02', 1, '2024-08-02', 2024, '{\"available\":10,\"bind\":0,\"hours\":{\"00:00\":{\"available\":0,\"bind\":0,\"info\":\"\",\"notes\":\"\",\"price\":0,\"promo\":0,\"status\":\"none\"}},\"hours_definitions\":[{\"value\":\"00:00\"}],\"info\":\"\",\"notes\":\"\",\"price\":580,\"promo\":0,\"status\":\"available\"}', 0, 0, 10),
('1_2024-08-03', 1, '2024-08-03', 2024, '{\"available\":10,\"bind\":0,\"hours\":{\"00:00\":{\"available\":0,\"bind\":0,\"info\":\"\",\"notes\":\"\",\"price\":0,\"promo\":0,\"status\":\"none\"}},\"hours_definitions\":[{\"value\":\"00:00\"}],\"info\":\"\",\"notes\":\"\",\"price\":580,\"promo\":0,\"status\":\"available\"}', 0, 0, 10),
('1_2024-08-04', 1, '2024-08-04', 2024, '{\"available\":10,\"bind\":0,\"hours\":{\"00:00\":{\"available\":0,\"bind\":0,\"info\":\"\",\"notes\":\"\",\"price\":0,\"promo\":0,\"status\":\"none\"}},\"hours_definitions\":[{\"value\":\"00:00\"}],\"info\":\"\",\"notes\":\"\",\"price\":580,\"promo\":0,\"status\":\"available\"}', 0, 0, 10),
('1_2024-08-05', 1, '2024-08-05', 2024, '{\"available\":10,\"bind\":0,\"hours\":{\"00:00\":{\"available\":0,\"bind\":0,\"info\":\"\",\"notes\":\"\",\"price\":0,\"promo\":0,\"status\":\"none\"}},\"hours_definitions\":[{\"value\":\"00:00\"}],\"info\":\"\",\"notes\":\"\",\"price\":580,\"promo\":0,\"status\":\"available\"}', 0, 0, 10),
('1_2024-08-06', 1, '2024-08-06', 2024, '{\"available\":10,\"bind\":0,\"hours\":{\"00:00\":{\"available\":0,\"bind\":0,\"info\":\"\",\"notes\":\"\",\"price\":0,\"promo\":0,\"status\":\"none\"}},\"hours_definitions\":[{\"value\":\"00:00\"}],\"info\":\"\",\"notes\":\"\",\"price\":580,\"promo\":0,\"status\":\"available\"}', 0, 0, 10),
('1_2024-08-07', 1, '2024-08-07', 2024, '{\"available\":10,\"bind\":0,\"hours\":{\"00:00\":{\"available\":0,\"bind\":0,\"info\":\"\",\"notes\":\"\",\"price\":0,\"promo\":0,\"status\":\"none\"}},\"hours_definitions\":[{\"value\":\"00:00\"}],\"info\":\"\",\"notes\":\"\",\"price\":580,\"promo\":0,\"status\":\"available\"}', 0, 0, 10),
('1_2024-08-08', 1, '2024-08-08', 2024, '{\"available\":10,\"bind\":0,\"hours\":{\"00:00\":{\"available\":0,\"bind\":0,\"info\":\"\",\"notes\":\"\",\"price\":0,\"promo\":0,\"status\":\"none\"}},\"hours_definitions\":[{\"value\":\"00:00\"}],\"info\":\"\",\"notes\":\"\",\"price\":580,\"promo\":0,\"status\":\"available\"}', 0, 0, 10),
('1_2024-08-09', 1, '2024-08-09', 2024, '{\"available\":10,\"bind\":0,\"hours\":{\"00:00\":{\"available\":0,\"bind\":0,\"info\":\"\",\"notes\":\"\",\"price\":0,\"promo\":0,\"status\":\"none\"}},\"hours_definitions\":[{\"value\":\"00:00\"}],\"info\":\"\",\"notes\":\"\",\"price\":580,\"promo\":0,\"status\":\"available\"}', 0, 0, 10),
('1_2024-08-10', 1, '2024-08-10', 2024, '{\"available\":10,\"bind\":0,\"hours\":{\"00:00\":{\"available\":0,\"bind\":0,\"info\":\"\",\"notes\":\"\",\"price\":0,\"promo\":0,\"status\":\"none\"}},\"hours_definitions\":[{\"value\":\"00:00\"}],\"info\":\"\",\"notes\":\"\",\"price\":580,\"promo\":0,\"status\":\"available\"}', 0, 0, 10),
('1_2024-08-11', 1, '2024-08-11', 2024, '{\"available\":10,\"bind\":0,\"hours\":{\"00:00\":{\"available\":0,\"bind\":0,\"info\":\"\",\"notes\":\"\",\"price\":0,\"promo\":0,\"status\":\"none\"}},\"hours_definitions\":[{\"value\":\"00:00\"}],\"info\":\"\",\"notes\":\"\",\"price\":580,\"promo\":0,\"status\":\"available\"}', 0, 0, 10),
('1_2024-08-12', 1, '2024-08-12', 2024, '{\"available\":10,\"bind\":0,\"hours\":{\"00:00\":{\"available\":0,\"bind\":0,\"info\":\"\",\"notes\":\"\",\"price\":0,\"promo\":0,\"status\":\"none\"}},\"hours_definitions\":[{\"value\":\"00:00\"}],\"info\":\"\",\"notes\":\"\",\"price\":580,\"promo\":0,\"status\":\"available\"}', 0, 0, 10),
('1_2024-08-13', 1, '2024-08-13', 2024, '{\"available\":10,\"bind\":0,\"hours\":{\"00:00\":{\"available\":0,\"bind\":0,\"info\":\"\",\"notes\":\"\",\"price\":0,\"promo\":0,\"status\":\"none\"}},\"hours_definitions\":[{\"value\":\"00:00\"}],\"info\":\"\",\"notes\":\"\",\"price\":580,\"promo\":0,\"status\":\"available\"}', 0, 0, 10),
('1_2024-08-14', 1, '2024-08-14', 2024, '{\"available\":10,\"bind\":0,\"hours\":{\"00:00\":{\"available\":0,\"bind\":0,\"info\":\"\",\"notes\":\"\",\"price\":0,\"promo\":0,\"status\":\"none\"}},\"hours_definitions\":[{\"value\":\"00:00\"}],\"info\":\"\",\"notes\":\"\",\"price\":580,\"promo\":0,\"status\":\"available\"}', 0, 0, 10),
('1_2024-08-15', 1, '2024-08-15', 2024, '{\"available\":10,\"bind\":0,\"hours\":{\"00:00\":{\"available\":0,\"bind\":0,\"info\":\"\",\"notes\":\"\",\"price\":0,\"promo\":0,\"status\":\"none\"}},\"hours_definitions\":[{\"value\":\"00:00\"}],\"info\":\"\",\"notes\":\"\",\"price\":580,\"promo\":0,\"status\":\"available\"}', 0, 0, 10),
('1_2024-08-16', 1, '2024-08-16', 2024, '{\"available\":10,\"bind\":0,\"hours\":{\"00:00\":{\"available\":0,\"bind\":0,\"info\":\"\",\"notes\":\"\",\"price\":0,\"promo\":0,\"status\":\"none\"}},\"hours_definitions\":[{\"value\":\"00:00\"}],\"info\":\"\",\"notes\":\"\",\"price\":580,\"promo\":0,\"status\":\"available\"}', 0, 0, 10),
('1_2024-08-17', 1, '2024-08-17', 2024, '{\"available\":10,\"bind\":0,\"hours\":{\"00:00\":{\"available\":0,\"bind\":0,\"info\":\"\",\"notes\":\"\",\"price\":0,\"promo\":0,\"status\":\"none\"}},\"hours_definitions\":[{\"value\":\"00:00\"}],\"info\":\"\",\"notes\":\"\",\"price\":580,\"promo\":0,\"status\":\"available\"}', 0, 0, 10),
('1_2024-08-18', 1, '2024-08-18', 2024, '{\"available\":10,\"bind\":0,\"hours\":{\"00:00\":{\"available\":0,\"bind\":0,\"info\":\"\",\"notes\":\"\",\"price\":0,\"promo\":0,\"status\":\"none\"}},\"hours_definitions\":[{\"value\":\"00:00\"}],\"info\":\"\",\"notes\":\"\",\"price\":580,\"promo\":0,\"status\":\"available\"}', 0, 0, 10),
('1_2024-08-19', 1, '2024-08-19', 2024, '{\"available\":10,\"bind\":0,\"hours\":{\"00:00\":{\"available\":0,\"bind\":0,\"info\":\"\",\"notes\":\"\",\"price\":0,\"promo\":0,\"status\":\"none\"}},\"hours_definitions\":[{\"value\":\"00:00\"}],\"info\":\"\",\"notes\":\"\",\"price\":580,\"promo\":0,\"status\":\"available\"}', 0, 0, 10),
('1_2024-08-20', 1, '2024-08-20', 2024, '{\"available\":10,\"bind\":0,\"hours\":{\"00:00\":{\"available\":0,\"bind\":0,\"info\":\"\",\"notes\":\"\",\"price\":0,\"promo\":0,\"status\":\"none\"}},\"hours_definitions\":[{\"value\":\"00:00\"}],\"info\":\"\",\"notes\":\"\",\"price\":580,\"promo\":0,\"status\":\"available\"}', 0, 0, 10),
('1_2024-08-21', 1, '2024-08-21', 2024, '{\"available\":10,\"bind\":0,\"hours\":{\"00:00\":{\"available\":0,\"bind\":0,\"info\":\"\",\"notes\":\"\",\"price\":0,\"promo\":0,\"status\":\"none\"}},\"hours_definitions\":[{\"value\":\"00:00\"}],\"info\":\"\",\"notes\":\"\",\"price\":580,\"promo\":0,\"status\":\"available\"}', 0, 0, 10),
('1_2024-08-22', 1, '2024-08-22', 2024, '{\"available\":10,\"bind\":0,\"hours\":{\"00:00\":{\"available\":0,\"bind\":0,\"info\":\"\",\"notes\":\"\",\"price\":0,\"promo\":0,\"status\":\"none\"}},\"hours_definitions\":[{\"value\":\"00:00\"}],\"info\":\"\",\"notes\":\"\",\"price\":580,\"promo\":0,\"status\":\"available\"}', 0, 0, 10),
('1_2024-08-23', 1, '2024-08-23', 2024, '{\"available\":10,\"bind\":0,\"hours\":{\"00:00\":{\"available\":0,\"bind\":0,\"info\":\"\",\"notes\":\"\",\"price\":0,\"promo\":0,\"status\":\"none\"}},\"hours_definitions\":[{\"value\":\"00:00\"}],\"info\":\"\",\"notes\":\"\",\"price\":580,\"promo\":0,\"status\":\"available\"}', 0, 0, 10),
('1_2024-08-24', 1, '2024-08-24', 2024, '{\"available\":10,\"bind\":0,\"hours\":{\"00:00\":{\"available\":0,\"bind\":0,\"info\":\"\",\"notes\":\"\",\"price\":0,\"promo\":0,\"status\":\"none\"}},\"hours_definitions\":[{\"value\":\"00:00\"}],\"info\":\"\",\"notes\":\"\",\"price\":580,\"promo\":0,\"status\":\"available\"}', 0, 0, 10),
('1_2024-08-25', 1, '2024-08-25', 2024, '{\"available\":10,\"bind\":0,\"hours\":{\"00:00\":{\"available\":0,\"bind\":0,\"info\":\"\",\"notes\":\"\",\"price\":0,\"promo\":0,\"status\":\"none\"}},\"hours_definitions\":[{\"value\":\"00:00\"}],\"info\":\"\",\"notes\":\"\",\"price\":580,\"promo\":0,\"status\":\"available\"}', 0, 0, 10),
('1_2024-08-26', 1, '2024-08-26', 2024, '{\"available\":10,\"bind\":0,\"hours\":{\"00:00\":{\"available\":0,\"bind\":0,\"info\":\"\",\"notes\":\"\",\"price\":0,\"promo\":0,\"status\":\"none\"}},\"hours_definitions\":[{\"value\":\"00:00\"}],\"info\":\"\",\"notes\":\"\",\"price\":580,\"promo\":0,\"status\":\"available\"}', 0, 0, 10),
('1_2024-08-27', 1, '2024-08-27', 2024, '{\"available\":10,\"bind\":0,\"hours\":{\"00:00\":{\"available\":0,\"bind\":0,\"info\":\"\",\"notes\":\"\",\"price\":0,\"promo\":0,\"status\":\"none\"}},\"hours_definitions\":[{\"value\":\"00:00\"}],\"info\":\"\",\"notes\":\"\",\"price\":580,\"promo\":0,\"status\":\"available\"}', 0, 0, 10),
('1_2024-08-28', 1, '2024-08-28', 2024, '{\"available\":10,\"bind\":0,\"hours\":{\"00:00\":{\"available\":0,\"bind\":0,\"info\":\"\",\"notes\":\"\",\"price\":0,\"promo\":0,\"status\":\"none\"}},\"hours_definitions\":[{\"value\":\"00:00\"}],\"info\":\"\",\"notes\":\"\",\"price\":580,\"promo\":0,\"status\":\"available\"}', 0, 0, 10),
('1_2024-08-29', 1, '2024-08-29', 2024, '{\"available\":10,\"bind\":0,\"hours\":{\"00:00\":{\"available\":0,\"bind\":0,\"info\":\"\",\"notes\":\"\",\"price\":0,\"promo\":0,\"status\":\"none\"}},\"hours_definitions\":[{\"value\":\"00:00\"}],\"info\":\"\",\"notes\":\"\",\"price\":580,\"promo\":0,\"status\":\"available\"}', 0, 0, 10),
('1_2024-08-30', 1, '2024-08-30', 2024, '{\"available\":10,\"bind\":0,\"hours\":{\"00:00\":{\"available\":0,\"bind\":0,\"info\":\"\",\"notes\":\"\",\"price\":0,\"promo\":0,\"status\":\"none\"}},\"hours_definitions\":[{\"value\":\"00:00\"}],\"info\":\"\",\"notes\":\"\",\"price\":580,\"promo\":0,\"status\":\"available\"}', 0, 0, 10),
('1_2024-08-31', 1, '2024-08-31', 2024, '{\"available\":10,\"bind\":0,\"hours\":{\"00:00\":{\"available\":0,\"bind\":0,\"info\":\"\",\"notes\":\"\",\"price\":0,\"promo\":0,\"status\":\"none\"}},\"hours_definitions\":[{\"value\":\"00:00\"}],\"info\":\"\",\"notes\":\"\",\"price\":580,\"promo\":0,\"status\":\"available\"}', 0, 0, 10);

-- --------------------------------------------------------

--
-- Table structure for table `wp_dopbsp_days_available`
--

CREATE TABLE `wp_dopbsp_days_available` (
  `unique_key` varchar(32) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL,
  `day` varchar(16) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
  `hour` varchar(6) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
  `data` longtext CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL
) ENGINE=InnoDB DEFAULT CHARSET=latin1 COLLATE=latin1_swedish_ci;

--
-- Dumping data for table `wp_dopbsp_days_available`
--

INSERT INTO `wp_dopbsp_days_available` (`unique_key`, `day`, `hour`, `data`) VALUES
('2018-02-02_0', '2018-02-02', '', '1|10');

-- --------------------------------------------------------

--
-- Table structure for table `wp_dopbsp_days_unavailable`
--

CREATE TABLE `wp_dopbsp_days_unavailable` (
  `unique_key` varchar(32) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL,
  `day` varchar(16) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
  `hour` varchar(6) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
  `data` longtext CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL
) ENGINE=InnoDB DEFAULT CHARSET=latin1 COLLATE=latin1_swedish_ci;

--
-- Dumping data for table `wp_dopbsp_days_unavailable`
--

INSERT INTO `wp_dopbsp_days_unavailable` (`unique_key`, `day`, `hour`, `data`) VALUES
('2018-01-27_0', '2018-01-27', '', '1'),
('2018-01-28_0', '2018-01-28', '', '1'),
('2018-01-29_0', '2018-01-29', '', '1'),
('2018-01-30_0', '2018-01-30', '', '1'),
('2018-01-31_0', '2018-01-31', '', '1'),
('2018-02-01_0', '2018-02-01', '', '1'),
('2018-02-03_0', '2018-02-03', '', '1'),
('2018-02-04_0', '2018-02-04', '', '1'),
('2018-02-05_0', '2018-02-05', '', '1'),
('2018-02-06_0', '2018-02-06', '', '1'),
('2018-02-07_0', '2018-02-07', '', '1'),
('2018-02-08_0', '2018-02-08', '', '1'),
('2018-02-09_0', '2018-02-09', '', '1'),
('2018-02-10_0', '2018-02-10', '', '1'),
('2018-02-11_0', '2018-02-11', '', '1'),
('2018-02-12_0', '2018-02-12', '', '1'),
('2018-02-13_0', '2018-02-13', '', '1'),
('2018-02-14_0', '2018-02-14', '', '1'),
('2018-02-15_0', '2018-02-15', '', '1'),
('2018-02-16_0', '2018-02-16', '', '1'),
('2018-02-17_0', '2018-02-17', '', '1'),
('2018-02-18_0', '2018-02-18', '', '1'),
('2018-02-19_0', '2018-02-19', '', '1'),
('2018-02-20_0', '2018-02-20', '', '1'),
('2018-02-21_0', '2018-02-21', '', '1'),
('2018-02-22_0', '2018-02-22', '', '1'),
('2018-02-23_0', '2018-02-23', '', '1'),
('2018-02-24_0', '2018-02-24', '', '1'),
('2018-02-25_0', '2018-02-25', '', '1'),
('2018-02-26_0', '2018-02-26', '', '1'),
('2018-02-27_0', '2018-02-27', '', '1'),
('2018-02-28_0', '2018-02-28', '', '1'),
('2018-03-01_0', '2018-03-01', '', '1'),
('2018-03-02_0', '2018-03-02', '', '1'),
('2018-03-03_0', '2018-03-03', '', '1'),
('2018-03-04_0', '2018-03-04', '', '1'),
('2018-03-05_0', '2018-03-05', '', '1'),
('2018-03-06_0', '2018-03-06', '', '1'),
('2018-03-07_0', '2018-03-07', '', '1'),
('2018-03-08_0', '2018-03-08', '', '1'),
('2018-03-09_0', '2018-03-09', '', '1'),
('2018-03-10_0', '2018-03-10', '', '1'),
('2018-03-11_0', '2018-03-11', '', '1'),
('2018-03-12_0', '2018-03-12', '', '1'),
('2018-03-13_0', '2018-03-13', '', '1'),
('2018-03-14_0', '2018-03-14', '', '1'),
('2018-03-15_0', '2018-03-15', '', '1'),
('2018-03-16_0', '2018-03-16', '', '1'),
('2018-03-17_0', '2018-03-17', '', '1'),
('2018-03-18_0', '2018-03-18', '', '1'),
('2018-03-19_0', '2018-03-19', '', '1'),
('2018-03-20_0', '2018-03-20', '', '1'),
('2018-03-21_0', '2018-03-21', '', '1'),
('2018-03-22_0', '2018-03-22', '', '1'),
('2018-03-23_0', '2018-03-23', '', '1'),
('2018-03-24_0', '2018-03-24', '', '1'),
('2018-03-25_0', '2018-03-25', '', '1'),
('2018-03-26_0', '2018-03-26', '', '1'),
('2018-03-27_0', '2018-03-27', '', '1'),
('2018-03-28_0', '2018-03-28', '', '1'),
('2018-03-29_0', '2018-03-29', '', '1'),
('2018-03-30_0', '2018-03-30', '', '1'),
('2018-03-31_0', '2018-03-31', '', '1'),
('2018-04-01_0', '2018-04-01', '', '1'),
('2018-04-02_0', '2018-04-02', '', '1'),
('2018-04-03_0', '2018-04-03', '', '1'),
('2018-04-04_0', '2018-04-04', '', '1'),
('2018-04-05_0', '2018-04-05', '', '1'),
('2018-04-06_0', '2018-04-06', '', '1'),
('2018-04-07_0', '2018-04-07', '', '1'),
('2018-04-08_0', '2018-04-08', '', '1'),
('2018-04-09_0', '2018-04-09', '', '1'),
('2018-04-10_0', '2018-04-10', '', '1'),
('2018-04-11_0', '2018-04-11', '', '1'),
('2018-04-12_0', '2018-04-12', '', '1'),
('2018-04-13_0', '2018-04-13', '', '1'),
('2018-04-14_0', '2018-04-14', '', '1'),
('2018-04-15_0', '2018-04-15', '', '1'),
('2018-04-16_0', '2018-04-16', '', '1'),
('2018-04-17_0', '2018-04-17', '', '1'),
('2018-04-18_0', '2018-04-18', '', '1'),
('2018-04-19_0', '2018-04-19', '', '1'),
('2018-04-20_0', '2018-04-20', '', '1'),
('2018-04-21_0', '2018-04-21', '', '1'),
('2018-04-22_0', '2018-04-22', '', '1'),
('2018-04-23_0', '2018-04-23', '', '1'),
('2018-04-24_0', '2018-04-24', '', '1'),
('2018-04-25_0', '2018-04-25', '', '1'),
('2018-04-26_0', '2018-04-26', '', '1'),
('2018-04-27_0', '2018-04-27', '', '1'),
('2018-04-28_0', '2018-04-28', '', '1'),
('2018-04-29_0', '2018-04-29', '', '1'),
('2018-04-30_0', '2018-04-30', '', '1'),
('2018-05-01_0', '2018-05-01', '', '1'),
('2018-05-02_0', '2018-05-02', '', '1'),
('2018-05-03_0', '2018-05-03', '', '1'),
('2018-05-04_0', '2018-05-04', '', '1'),
('2018-05-05_0', '2018-05-05', '', '1'),
('2018-05-06_0', '2018-05-06', '', '1'),
('2018-05-07_0', '2018-05-07', '', '1'),
('2018-05-08_0', '2018-05-08', '', '1'),
('2018-05-09_0', '2018-05-09', '', '1'),
('2018-05-10_0', '2018-05-10', '', '1'),
('2018-05-11_0', '2018-05-11', '', '1'),
('2018-05-12_0', '2018-05-12', '', '1'),
('2018-05-13_0', '2018-05-13', '', '1'),
('2018-05-14_0', '2018-05-14', '', '1'),
('2018-05-15_0', '2018-05-15', '', '1'),
('2018-05-16_0', '2018-05-16', '', '1'),
('2018-05-17_0', '2018-05-17', '', '1'),
('2018-05-18_0', '2018-05-18', '', '1'),
('2018-05-19_0', '2018-05-19', '', '1'),
('2018-05-20_0', '2018-05-20', '', '1'),
('2018-05-21_0', '2018-05-21', '', '1'),
('2018-05-22_0', '2018-05-22', '', '1'),
('2018-05-23_0', '2018-05-23', '', '1'),
('2018-05-24_0', '2018-05-24', '', '1'),
('2018-05-25_0', '2018-05-25', '', '1'),
('2018-05-26_0', '2018-05-26', '', '1'),
('2018-05-27_0', '2018-05-27', '', '1'),
('2018-05-28_0', '2018-05-28', '', '1'),
('2018-05-29_0', '2018-05-29', '', '1'),
('2018-05-30_0', '2018-05-30', '', '1'),
('2018-05-31_0', '2018-05-31', '', '1');

-- --------------------------------------------------------

--
-- Table structure for table `wp_dopbsp_discounts`
--

CREATE TABLE `wp_dopbsp_discounts` (
  `id` bigint(20) UNSIGNED NOT NULL,
  `user_id` bigint(20) UNSIGNED NOT NULL DEFAULT 0,
  `name` varchar(128) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
  `extras` varchar(6) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'false'
) ENGINE=InnoDB DEFAULT CHARSET=latin1 COLLATE=latin1_swedish_ci;

--
-- Dumping data for table `wp_dopbsp_discounts`
--

INSERT INTO `wp_dopbsp_discounts` (`id`, `user_id`, `name`, `extras`) VALUES
(1, 1, 'Discount', 'true');

-- --------------------------------------------------------

--
-- Table structure for table `wp_dopbsp_discounts_items`
--

CREATE TABLE `wp_dopbsp_discounts_items` (
  `id` bigint(20) UNSIGNED NOT NULL,
  `discount_id` bigint(20) UNSIGNED NOT NULL DEFAULT 0,
  `position` int(10) UNSIGNED NOT NULL DEFAULT 0,
  `start_time_lapse` varchar(8) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
  `end_time_lapse` varchar(8) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
  `operation` varchar(1) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '-',
  `price` float NOT NULL DEFAULT 0,
  `price_type` varchar(8) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'percent',
  `price_by` varchar(8) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'once',
  `translation` text CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL
) ENGINE=InnoDB DEFAULT CHARSET=latin1 COLLATE=latin1_swedish_ci;

-- --------------------------------------------------------

--
-- Table structure for table `wp_dopbsp_discounts_items_rules`
--

CREATE TABLE `wp_dopbsp_discounts_items_rules` (
  `id` bigint(20) UNSIGNED NOT NULL,
  `discount_item_id` bigint(20) UNSIGNED NOT NULL DEFAULT 0,
  `position` int(10) UNSIGNED NOT NULL DEFAULT 0,
  `start_date` varchar(16) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
  `end_date` varchar(16) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
  `start_hour` varchar(16) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
  `end_hour` varchar(16) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
  `operation` varchar(1) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '-',
  `price` float NOT NULL DEFAULT 0,
  `price_type` varchar(8) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'percent',
  `price_by` varchar(8) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'once'
) ENGINE=InnoDB DEFAULT CHARSET=latin1 COLLATE=latin1_swedish_ci;

-- --------------------------------------------------------

--
-- Table structure for table `wp_dopbsp_emails`
--

CREATE TABLE `wp_dopbsp_emails` (
  `id` bigint(20) UNSIGNED NOT NULL,
  `user_id` bigint(20) UNSIGNED NOT NULL DEFAULT 0,
  `name` varchar(128) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT ''
) ENGINE=InnoDB DEFAULT CHARSET=latin1 COLLATE=latin1_swedish_ci;

--
-- Dumping data for table `wp_dopbsp_emails`
--

INSERT INTO `wp_dopbsp_emails` (`id`, `user_id`, `name`) VALUES
(1, 0, 'Default email templates'),
(4, 1, 'New email templates');

-- --------------------------------------------------------

--
-- Table structure for table `wp_dopbsp_emails_translation`
--

CREATE TABLE `wp_dopbsp_emails_translation` (
  `id` bigint(20) UNSIGNED NOT NULL,
  `email_id` bigint(20) UNSIGNED NOT NULL DEFAULT 0,
  `template` varchar(64) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
  `subject` text CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL,
  `message` longtext CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL
) ENGINE=InnoDB DEFAULT CHARSET=latin1 COLLATE=latin1_swedish_ci;

--
-- Dumping data for table `wp_dopbsp_emails_translation`
--

INSERT INTO `wp_dopbsp_emails_translation` (`id`, `email_id`, `template`, `subject`, `message`) VALUES
(37, 4, 'book_admin', '{\"en\": \"You received a booking request.\"}', '{\"en\": \"Below are the details. Go to admin to approve or reject the request.<<new-line>><br /><br /><<new-line>>|DETAILS|<<new-line>><br /><br /><<new-line>>|EXTRAS|<<new-line>><br /><br /><<new-line>>|DISCOUNT|<<new-line>><br /><br /><<new-line>>|COUPON|<<new-line>><br /><br /><<new-line>>|FEES|<<new-line>><br /><br /><<new-line>>|FORM|<<new-line>><br /><br /><<new-line>>|BILLING ADDRESS|<<new-line>><br /><br /><<new-line>>|SHIPPING ADDRESS|\"}'),
(38, 4, 'book_user', '{\"en\": \"Your booking request has been sent.\"}', '{\"en\": \"Please wait for approval. Below are the details.<<new-line>><br /><br /><<new-line>>|DETAILS|<<new-line>><br /><br /><<new-line>>|EXTRAS|<<new-line>><br /><br /><<new-line>>|DISCOUNT|<<new-line>><br /><br /><<new-line>>|COUPON|<<new-line>><br /><br /><<new-line>>|FEES|<<new-line>><br /><br /><<new-line>>|FORM|<<new-line>><br /><br /><<new-line>>|BILLING ADDRESS|<<new-line>><br /><br /><<new-line>>|SHIPPING ADDRESS|\"}'),
(39, 4, 'book_with_approval_admin', '{\"en\": \"You received a booking request.\"}', '{\"en\": \"Below are the details. Go to admin to cancel the request.<<new-line>><br /><br /><<new-line>>|DETAILS|<<new-line>><br /><br /><<new-line>>|EXTRAS|<<new-line>><br /><br /><<new-line>>|DISCOUNT|<<new-line>><br /><br /><<new-line>>|COUPON|<<new-line>><br /><br /><<new-line>>|FEES|<<new-line>><br /><br /><<new-line>>|FORM|<<new-line>><br /><br /><<new-line>>|BILLING ADDRESS|<<new-line>><br /><br /><<new-line>>|SHIPPING ADDRESS|\"}'),
(40, 4, 'book_with_approval_user', '{\"en\": \"Your booking request has been sent.\"}', '{\"en\": \"Below are the details.<<new-line>><br /><br /><<new-line>>|DETAILS|<<new-line>><br /><br /><<new-line>>|EXTRAS|<<new-line>><br /><br /><<new-line>>|DISCOUNT|<<new-line>><br /><br /><<new-line>>|COUPON|<<new-line>><br /><br /><<new-line>>|FEES|<<new-line>><br /><br /><<new-line>>|FORM|<<new-line>><br /><br /><<new-line>>|BILLING ADDRESS|<<new-line>><br /><br /><<new-line>>|SHIPPING ADDRESS|\"}'),
(41, 4, 'approved', '{\"en\": \"Your booking request has been approved.\"}', '{\"en\": \"Congratulations! Your booking request has been approved. Details about your request are below.<<new-line>><br /><br /><<new-line>>|DETAILS|<<new-line>><br /><br /><<new-line>>|EXTRAS|<<new-line>><br /><br /><<new-line>>|DISCOUNT|<<new-line>><br /><br /><<new-line>>|COUPON|<<new-line>><br /><br /><<new-line>>|FEES|<<new-line>><br /><br /><<new-line>>|FORM|<<new-line>><br /><br /><<new-line>>|BILLING ADDRESS|<<new-line>><br /><br /><<new-line>>|SHIPPING ADDRESS|\"}'),
(42, 4, 'canceled', '{\"en\": \"Your booking request has been canceled.\"}', '{\"en\": \"I<<single-quote>>m sorry but your booking request has been canceled. Details about your request are below.<<new-line>><br /><br /><<new-line>>|DETAILS|<<new-line>><br /><br /><<new-line>>|EXTRAS|<<new-line>><br /><br /><<new-line>>|DISCOUNT|<<new-line>><br /><br /><<new-line>>|COUPON|<<new-line>><br /><br /><<new-line>>|FEES|<<new-line>><br /><br /><<new-line>>|FORM|<<new-line>><br /><br /><<new-line>>|BILLING ADDRESS|<<new-line>><br /><br /><<new-line>>|SHIPPING ADDRESS|\"}'),
(43, 4, 'rejected', '{\"en\": \"Your booking request has been rejected.\"}', '{\"en\": \"I<<single-quote>>m sorry but your booking request has been rejected. Details about your request are below.<<new-line>><br /><br /><<new-line>>|DETAILS|<<new-line>><br /><br /><<new-line>>|EXTRAS|<<new-line>><br /><br /><<new-line>>|DISCOUNT|<<new-line>><br /><br /><<new-line>>|COUPON|<<new-line>><br /><br /><<new-line>>|FEES|<<new-line>><br /><br /><<new-line>>|FORM|<<new-line>><br /><br /><<new-line>>|BILLING ADDRESS|<<new-line>><br /><br /><<new-line>>|SHIPPING ADDRESS|\"}'),
(44, 4, 'paypal_admin', '{\"en\": \"You received a booking request.\"}', '{\"en\": \"Below are the details. Payment has been done via PayPal and the period has been booked.<<new-line>><br /><br /><<new-line>>|DETAILS|<<new-line>><br /><br /><<new-line>>|EXTRAS|<<new-line>><br /><br /><<new-line>>|DISCOUNT|<<new-line>><br /><br /><<new-line>>|COUPON|<<new-line>><br /><br /><<new-line>>|FEES|<<new-line>><br /><br /><<new-line>>|FORM|<<new-line>><br /><br /><<new-line>>|BILLING ADDRESS|<<new-line>><br /><br /><<new-line>>|SHIPPING ADDRESS|\"}'),
(45, 4, 'paypal_user', '{\"en\": \"Your booking request has been sent.\"}', '{\"en\": \"The period has been book. Below are the details.<<new-line>><br /><br /><<new-line>>|DETAILS|<<new-line>><br /><br /><<new-line>>|EXTRAS|<<new-line>><br /><br /><<new-line>>|DISCOUNT|<<new-line>><br /><br /><<new-line>>|COUPON|<<new-line>><br /><br /><<new-line>>|FEES|<<new-line>><br /><br /><<new-line>>|FORM|<<new-line>><br /><br /><<new-line>>|BILLING ADDRESS|<<new-line>><br /><br /><<new-line>>|SHIPPING ADDRESS|\"}'),
(46, 1, 'rejected', '{\"en\": \"Your booking request has been rejected.\"}', '{\"en\": \"I<<single-quote>>m sorry but your booking request has been rejected. Details about your request are below.<<new-line>><br /><br /><<new-line>>|DETAILS|<<new-line>><br /><br /><<new-line>>|EXTRAS|<<new-line>><br /><br /><<new-line>>|DISCOUNT|<<new-line>><br /><br /><<new-line>>|COUPON|<<new-line>><br /><br /><<new-line>>|FEES|<<new-line>><br /><br /><<new-line>>|FORM|<<new-line>><br /><br /><<new-line>>|BILLING ADDRESS|<<new-line>><br /><br /><<new-line>>|SHIPPING ADDRESS|\"}'),
(47, 1, 'book_admin', '{\"en\": \"You received a booking request.\"}', '{\"en\": \"Below are the details. Go to admin to approve or reject the request.<<new-line>><br /><br /><<new-line>>|DETAILS|<<new-line>><br /><br /><<new-line>>|EXTRAS|<<new-line>><br /><br /><<new-line>>|DISCOUNT|<<new-line>><br /><br /><<new-line>>|COUPON|<<new-line>><br /><br /><<new-line>>|FEES|<<new-line>><br /><br /><<new-line>>|FORM|<<new-line>><br /><br /><<new-line>>|BILLING ADDRESS|<<new-line>><br /><br /><<new-line>>|SHIPPING ADDRESS|\"}'),
(48, 1, 'book_user', '{\"en\": \"Your booking request has been sent.\"}', '{\"en\": \"Please wait for approval. Below are the details.<<new-line>><br /><br /><<new-line>>|DETAILS|<<new-line>><br /><br /><<new-line>>|EXTRAS|<<new-line>><br /><br /><<new-line>>|DISCOUNT|<<new-line>><br /><br /><<new-line>>|COUPON|<<new-line>><br /><br /><<new-line>>|FEES|<<new-line>><br /><br /><<new-line>>|FORM|<<new-line>><br /><br /><<new-line>>|BILLING ADDRESS|<<new-line>><br /><br /><<new-line>>|SHIPPING ADDRESS|\"}'),
(49, 1, 'book_admin', '{\"en\": \"You received a booking request.\"}', '{\"en\": \"Below are the details. Go to admin to approve or reject the request.<<new-line>><br /><br /><<new-line>>|DETAILS|<<new-line>><br /><br /><<new-line>>|EXTRAS|<<new-line>><br /><br /><<new-line>>|DISCOUNT|<<new-line>><br /><br /><<new-line>>|COUPON|<<new-line>><br /><br /><<new-line>>|FEES|<<new-line>><br /><br /><<new-line>>|FORM|<<new-line>><br /><br /><<new-line>>|BILLING ADDRESS|<<new-line>><br /><br /><<new-line>>|SHIPPING ADDRESS|\"}'),
(50, 1, 'book_user', '{\"en\": \"Your booking request has been sent.\"}', '{\"en\": \"Please wait for approval. Below are the details.<<new-line>><br /><br /><<new-line>>|DETAILS|<<new-line>><br /><br /><<new-line>>|EXTRAS|<<new-line>><br /><br /><<new-line>>|DISCOUNT|<<new-line>><br /><br /><<new-line>>|COUPON|<<new-line>><br /><br /><<new-line>>|FEES|<<new-line>><br /><br /><<new-line>>|FORM|<<new-line>><br /><br /><<new-line>>|BILLING ADDRESS|<<new-line>><br /><br /><<new-line>>|SHIPPING ADDRESS|\"}'),
(51, 1, 'book_with_approval_admin', '{\"en\": \"You received a booking request.\"}', '{\"en\": \"Below are the details. Go to admin to cancel the request.<<new-line>><br /><br /><<new-line>>|DETAILS|<<new-line>><br /><br /><<new-line>>|EXTRAS|<<new-line>><br /><br /><<new-line>>|DISCOUNT|<<new-line>><br /><br /><<new-line>>|COUPON|<<new-line>><br /><br /><<new-line>>|FEES|<<new-line>><br /><br /><<new-line>>|FORM|<<new-line>><br /><br /><<new-line>>|BILLING ADDRESS|<<new-line>><br /><br /><<new-line>>|SHIPPING ADDRESS|\"}'),
(52, 1, 'book_with_approval_user', '{\"en\": \"Your booking request has been sent.\"}', '{\"en\": \"Below are the details.<<new-line>><br /><br /><<new-line>>|DETAILS|<<new-line>><br /><br /><<new-line>>|EXTRAS|<<new-line>><br /><br /><<new-line>>|DISCOUNT|<<new-line>><br /><br /><<new-line>>|COUPON|<<new-line>><br /><br /><<new-line>>|FEES|<<new-line>><br /><br /><<new-line>>|FORM|<<new-line>><br /><br /><<new-line>>|BILLING ADDRESS|<<new-line>><br /><br /><<new-line>>|SHIPPING ADDRESS|\"}'),
(53, 1, 'approved', '{\"en\": \"Your booking request has been approved.\"}', '{\"en\": \"Congratulations! Your booking request has been approved. Details about your request are below.<<new-line>><br /><br /><<new-line>>|DETAILS|<<new-line>><br /><br /><<new-line>>|EXTRAS|<<new-line>><br /><br /><<new-line>>|DISCOUNT|<<new-line>><br /><br /><<new-line>>|COUPON|<<new-line>><br /><br /><<new-line>>|FEES|<<new-line>><br /><br /><<new-line>>|FORM|<<new-line>><br /><br /><<new-line>>|BILLING ADDRESS|<<new-line>><br /><br /><<new-line>>|SHIPPING ADDRESS|\"}'),
(54, 1, 'canceled', '{\"en\": \"Your booking request has been canceled.\"}', '{\"en\": \"I<<single-quote>>m sorry but your booking request has been canceled. Details about your request are below.<<new-line>><br /><br /><<new-line>>|DETAILS|<<new-line>><br /><br /><<new-line>>|EXTRAS|<<new-line>><br /><br /><<new-line>>|DISCOUNT|<<new-line>><br /><br /><<new-line>>|COUPON|<<new-line>><br /><br /><<new-line>>|FEES|<<new-line>><br /><br /><<new-line>>|FORM|<<new-line>><br /><br /><<new-line>>|BILLING ADDRESS|<<new-line>><br /><br /><<new-line>>|SHIPPING ADDRESS|\"}'),
(55, 1, 'rejected', '{\"en\": \"Your booking request has been rejected.\"}', '{\"en\": \"I<<single-quote>>m sorry but your booking request has been rejected. Details about your request are below.<<new-line>><br /><br /><<new-line>>|DETAILS|<<new-line>><br /><br /><<new-line>>|EXTRAS|<<new-line>><br /><br /><<new-line>>|DISCOUNT|<<new-line>><br /><br /><<new-line>>|COUPON|<<new-line>><br /><br /><<new-line>>|FEES|<<new-line>><br /><br /><<new-line>>|FORM|<<new-line>><br /><br /><<new-line>>|BILLING ADDRESS|<<new-line>><br /><br /><<new-line>>|SHIPPING ADDRESS|\"}');

-- --------------------------------------------------------

--
-- Table structure for table `wp_dopbsp_extras`
--

CREATE TABLE `wp_dopbsp_extras` (
  `id` bigint(20) UNSIGNED NOT NULL,
  `user_id` bigint(20) UNSIGNED NOT NULL DEFAULT 0,
  `name` varchar(128) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT ''
) ENGINE=InnoDB DEFAULT CHARSET=latin1 COLLATE=latin1_swedish_ci;

--
-- Dumping data for table `wp_dopbsp_extras`
--

INSERT INTO `wp_dopbsp_extras` (`id`, `user_id`, `name`) VALUES
(1, 0, 'Guests');

-- --------------------------------------------------------

--
-- Table structure for table `wp_dopbsp_extras_groups`
--

CREATE TABLE `wp_dopbsp_extras_groups` (
  `id` bigint(20) UNSIGNED NOT NULL,
  `extra_id` bigint(20) UNSIGNED NOT NULL DEFAULT 0,
  `position` int(10) UNSIGNED NOT NULL DEFAULT 0,
  `multiple_select` varchar(6) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT 'false',
  `required` varchar(6) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT 'false',
  `translation` text CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_520_ci NOT NULL,
  `no_items_multiply` varchar(6) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT 'true'
) ENGINE=InnoDB DEFAULT CHARSET=latin1 COLLATE=latin1_swedish_ci;

--
-- Dumping data for table `wp_dopbsp_extras_groups`
--

INSERT INTO `wp_dopbsp_extras_groups` (`id`, `extra_id`, `position`, `multiple_select`, `required`, `translation`, `no_items_multiply`) VALUES
(5, 1, 1, 'true', 'false', '{\"en\":\"Meals\"}', 'true'),
(6, 1, 2, 'true', 'false', '{\"en\":\"Services\"}', 'true'),
(7, 1, 3, 'true', 'false', '{\"en\":\"Extras\"}', 'true'),
(8, 1, 4, 'true', 'false', '{\"en\":\"Child Under 2yrs\"}', 'true');

-- --------------------------------------------------------

--
-- Table structure for table `wp_dopbsp_extras_groups_items`
--

CREATE TABLE `wp_dopbsp_extras_groups_items` (
  `id` bigint(20) UNSIGNED NOT NULL,
  `group_id` bigint(20) UNSIGNED NOT NULL DEFAULT 0,
  `position` int(10) UNSIGNED NOT NULL DEFAULT 0,
  `operation` varchar(1) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '+',
  `price` float NOT NULL DEFAULT 0,
  `price_type` varchar(8) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT 'fixed',
  `price_by` varchar(8) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT 'once',
  `translation` text CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_520_ci NOT NULL,
  `default_value` varchar(3) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT 'no'
) ENGINE=InnoDB DEFAULT CHARSET=latin1 COLLATE=latin1_swedish_ci;

--
-- Dumping data for table `wp_dopbsp_extras_groups_items`
--

INSERT INTO `wp_dopbsp_extras_groups_items` (`id`, `group_id`, `position`, `operation`, `price`, `price_type`, `price_by`, `translation`, `default_value`) VALUES
(12, 5, 1, '+', 95, 'fixed', 'period', '{\"en\":\"Breakfast\"}', 'no'),
(13, 5, 1, '+', 180, 'fixed', 'period', '{\"en\":\"Dinner\"}', 'no'),
(17, 6, 2, '+', 45, 'fixed', 'period', '{\"en\":\"Room Cleaning\"}', 'no'),
(18, 6, 1, '+', 45, 'fixed', 'period', '{\"en\":\"Lodge Cleaning\"}', 'no'),
(20, 7, 1, '+', 25, 'fixed', 'once', '{\"en\":\"Gas Braai Hire\"}', 'no'),
(21, 7, 1, '+', 50, 'fixed', 'period', '{\"en\":\"Day Guest\\/s\"}', 'no'),
(22, 8, 1, '+', 0, 'fixed', 'once', '{\"en\":\"Own Cot & Bedding - Free\"}', 'no');

-- --------------------------------------------------------

--
-- Table structure for table `wp_dopbsp_fees`
--

CREATE TABLE `wp_dopbsp_fees` (
  `id` bigint(20) UNSIGNED NOT NULL,
  `user_id` bigint(20) UNSIGNED NOT NULL DEFAULT 0,
  `name` varchar(128) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
  `operation` varchar(1) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '+',
  `price` float NOT NULL DEFAULT 0,
  `price_type` varchar(8) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'fixed',
  `price_by` varchar(8) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'once',
  `included` varchar(6) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'true',
  `extras` varchar(6) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'true',
  `cart` varchar(6) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'true',
  `translation` text CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL
) ENGINE=InnoDB DEFAULT CHARSET=latin1 COLLATE=latin1_swedish_ci;

--
-- Dumping data for table `wp_dopbsp_fees`
--

INSERT INTO `wp_dopbsp_fees` (`id`, `user_id`, `name`, `operation`, `price`, `price_type`, `price_by`, `included`, `extras`, `cart`, `translation`) VALUES
(1, 1, 'VAT', '+', 15, 'percent', 'once', 'true', 'true', 'true', '{\"en\":\"VAT\"}');

-- --------------------------------------------------------

--
-- Table structure for table `wp_dopbsp_forms`
--

CREATE TABLE `wp_dopbsp_forms` (
  `id` bigint(20) UNSIGNED NOT NULL,
  `user_id` bigint(20) UNSIGNED NOT NULL DEFAULT 0,
  `name` varchar(128) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT ''
) ENGINE=InnoDB DEFAULT CHARSET=latin1 COLLATE=latin1_swedish_ci;

--
-- Dumping data for table `wp_dopbsp_forms`
--

INSERT INTO `wp_dopbsp_forms` (`id`, `user_id`, `name`) VALUES
(1, 0, 'Contact information');

-- --------------------------------------------------------

--
-- Table structure for table `wp_dopbsp_forms_fields`
--

CREATE TABLE `wp_dopbsp_forms_fields` (
  `id` bigint(20) UNSIGNED NOT NULL,
  `form_id` bigint(20) UNSIGNED NOT NULL DEFAULT 0,
  `type` varchar(20) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '',
  `position` int(10) UNSIGNED NOT NULL DEFAULT 0,
  `multiple_select` varchar(6) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT 'false',
  `allowed_characters` text CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_520_ci NOT NULL,
  `size` int(10) UNSIGNED NOT NULL DEFAULT 0,
  `is_email` varchar(6) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT 'false',
  `required` varchar(6) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT 'false',
  `add_to_day_hour_info` varchar(6) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT 'false',
  `add_to_day_hour_body` varchar(6) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT 'false',
  `translation` text CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_520_ci NOT NULL,
  `is_phone` varchar(6) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT 'false',
  `default_country` varchar(2) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT 'US'
) ENGINE=InnoDB DEFAULT CHARSET=latin1 COLLATE=latin1_swedish_ci;

--
-- Dumping data for table `wp_dopbsp_forms_fields`
--

INSERT INTO `wp_dopbsp_forms_fields` (`id`, `form_id`, `type`, `position`, `multiple_select`, `allowed_characters`, `size`, `is_email`, `required`, `add_to_day_hour_info`, `add_to_day_hour_body`, `translation`, `is_phone`, `default_country`) VALUES
(1, 1, 'text', 1, 'false', '', 0, 'false', 'true', 'false', 'false', '{\"en\": \"First name\"}', 'false', 'US'),
(2, 1, 'text', 2, 'false', '', 0, 'false', 'true', 'false', 'false', '{\"en\": \"Last name\"}', 'false', 'US'),
(3, 1, 'text', 3, 'false', '', 0, 'true', 'true', 'false', 'false', '{\"en\": \"Email\"}', 'false', 'US'),
(4, 1, 'text', 4, 'false', '0123456789+-().', 0, 'false', 'true', 'false', 'false', '{\"en\": \"Phone\"}', 'false', 'US'),
(5, 1, 'textarea', 5, 'false', '', 0, 'false', 'false', 'false', 'false', '{\"en\": \"Message\"}', 'false', 'US');

-- --------------------------------------------------------

--
-- Table structure for table `wp_dopbsp_forms_select_options`
--

CREATE TABLE `wp_dopbsp_forms_select_options` (
  `id` bigint(20) UNSIGNED NOT NULL,
  `field_id` bigint(20) UNSIGNED NOT NULL DEFAULT 0,
  `position` int(10) UNSIGNED NOT NULL DEFAULT 0,
  `translation` text CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL
) ENGINE=InnoDB DEFAULT CHARSET=latin1 COLLATE=latin1_swedish_ci;

-- --------------------------------------------------------

--
-- Table structure for table `wp_dopbsp_languages`
--

CREATE TABLE `wp_dopbsp_languages` (
  `id` bigint(20) UNSIGNED NOT NULL,
  `name` varchar(128) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
  `code` varchar(2) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
  `enabled` varchar(6) NOT NULL DEFAULT '0'
) ENGINE=InnoDB DEFAULT CHARSET=latin1 COLLATE=latin1_swedish_ci;

--
-- Dumping data for table `wp_dopbsp_languages`
--

INSERT INTO `wp_dopbsp_languages` (`id`, `name`, `code`, `enabled`) VALUES
(1, 'Afrikaans (Afrikaans)', 'af', 'false'),
(2, 'Albanian (Shqiptar)', 'sq', 'false'),
(3, 'Arabic (>العربية)', 'ar', 'false'),
(4, 'Azerbaijani (Azərbaycan)', 'az', 'false'),
(5, 'Basque (Euskal)', 'eu', 'false'),
(6, 'Belarusian (Беларускай)', 'be', 'false'),
(7, 'Bulgarian (Български)', 'bg', 'false'),
(8, 'Catalan (Català)', 'ca', 'false'),
(9, 'Chinese (中国的)', 'zh', 'false'),
(10, 'Croatian (Hrvatski)', 'hr', 'false'),
(11, 'Czech (Český)', 'cs', 'false'),
(12, 'Danish (Dansk)', 'da', 'false'),
(13, 'Dutch (Nederlands)', 'nl', 'false'),
(14, 'English', 'en', 'true'),
(15, 'Esperanto (Esperanto)', 'eo', 'false'),
(16, 'Estonian (Eesti)', 'et', 'false'),
(17, 'Filipino (na Filipino)', 'fl', 'false'),
(18, 'Finnish (Suomi)', 'fi', 'false'),
(19, 'French (Français)', 'fr', 'false'),
(20, 'Galician (Galego)', 'gl', 'false'),
(21, 'German (Deutsch)', 'de', 'false'),
(22, 'Greek (Ɛλληνικά)', 'el', 'false'),
(23, 'Haitian Creole (Kreyòl Ayisyen)', 'ht', 'false'),
(24, 'Hebrew (עברית)', 'he', 'false'),
(25, 'Hindi (हिंदी)', 'hi', 'false'),
(26, 'Hungarian (Magyar)', 'hu', 'false'),
(27, 'Icelandic (Íslenska)', 'is', 'false'),
(28, 'Indonesian (Indonesia)', 'id', 'false'),
(29, 'Irish (Gaeilge)', 'ga', 'false'),
(30, 'Italian (Italiano)', 'it', 'false'),
(31, 'Japanese (日本の)', 'ja', 'false'),
(32, 'Korean (한국의)', 'ko', 'false'),
(33, 'Latvian (Latvijas)', 'lv', 'false'),
(34, 'Lithuanian (Lietuvos)', 'lt', 'false'),
(35, 'Macedonian (македонски)', 'mk', 'false'),
(36, 'Malay (Melayu)', 'ms', 'false'),
(37, 'Maltese (Maltija)', 'mt', 'false'),
(38, 'Norwegian (Norske)', 'no', 'false'),
(39, 'Persian (فارسی)', 'fa', 'false'),
(40, 'Polish (Polski)', 'pl', 'false'),
(41, 'Portuguese (Português)', 'pt', 'false'),
(42, 'Romanian (Română)', 'ro', 'false'),
(43, 'Russian (Pусский)', 'ru', 'false'),
(44, 'Serbian (Cрпски)', 'sr', 'false'),
(45, 'Slovak (Slovenských)', 'sk', 'false'),
(46, 'Slovenian (Slovenski)', 'sl', 'false'),
(47, 'Spanish (Español)', 'es', 'false'),
(48, 'Swahili (Kiswahili)', 'sw', 'false'),
(49, 'Swedish (Svenskt)', 'sv', 'false'),
(50, 'Thai (ภาษาไทย)', 'th', 'false'),
(51, 'Turkish (Türk)', 'tr', 'false'),
(52, 'Ukrainian (Український)', 'uk', 'false'),
(53, 'Urdu (اردو)', 'ur', 'false'),
(54, 'Vietnamese (Việt)', 'vi', 'false'),
(55, 'Welsh (Cymraeg)', 'cy', 'false'),
(56, 'Yiddish (ייִדיש)', 'yi', 'false');

-- --------------------------------------------------------

--
-- Table structure for table `wp_dopbsp_locations`
--

CREATE TABLE `wp_dopbsp_locations` (
  `id` bigint(20) UNSIGNED NOT NULL,
  `user_id` bigint(20) UNSIGNED NOT NULL DEFAULT 0,
  `name` varchar(128) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
  `address` varchar(512) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
  `address_en` varchar(512) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
  `address_alt` varchar(512) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
  `address_alt_en` varchar(512) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
  `coordinates` text CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL,
  `calendars` text CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL
) ENGINE=InnoDB DEFAULT CHARSET=latin1 COLLATE=latin1_swedish_ci;

--
-- Dumping data for table `wp_dopbsp_locations`
--

INSERT INTO `wp_dopbsp_locations` (`id`, `user_id`, `name`, `address`, `address_en`, `address_alt`, `address_alt_en`, `coordinates`, `calendars`) VALUES
(1, 1, 'Assagay Forest Lodge', '4 Williams Rd, Outer West Durban, 3624, South Africa', '4 Williams Rd, Outer West Durban, 3624, South Africa', '', '', '[-29.77196753024075,30.738404989242553]', '1');

-- --------------------------------------------------------

--
-- Table structure for table `wp_dopbsp_models`
--

CREATE TABLE `wp_dopbsp_models` (
  `id` bigint(20) UNSIGNED NOT NULL,
  `user_id` bigint(20) UNSIGNED NOT NULL DEFAULT 0,
  `name` varchar(128) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
  `enabled` varchar(6) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'true',
  `multiple_calendars` varchar(6) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'false',
  `translation` text CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL,
  `translation_calendar` text CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL
) ENGINE=InnoDB DEFAULT CHARSET=latin1 COLLATE=latin1_swedish_ci;

-- --------------------------------------------------------

--
-- Table structure for table `wp_dopbsp_reservations`
--

CREATE TABLE `wp_dopbsp_reservations` (
  `id` bigint(20) UNSIGNED NOT NULL,
  `calendar_id` bigint(20) UNSIGNED NOT NULL DEFAULT 0,
  `language` varchar(8) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT 'en',
  `currency` varchar(32) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '$',
  `currency_code` varchar(8) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT 'USD',
  `check_in` varchar(16) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '',
  `check_out` varchar(16) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '',
  `start_hour` varchar(16) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '',
  `end_hour` varchar(16) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '',
  `no_items` int(10) UNSIGNED NOT NULL DEFAULT 1,
  `price` float NOT NULL DEFAULT 0,
  `price_total` float NOT NULL DEFAULT 0,
  `refund` float NOT NULL DEFAULT 0,
  `extras` text CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_520_ci NOT NULL,
  `extras_price` float NOT NULL DEFAULT 0,
  `discount` text CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_520_ci NOT NULL,
  `discount_price` float NOT NULL DEFAULT 0,
  `coupon` text CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_520_ci NOT NULL,
  `coupon_price` float NOT NULL DEFAULT 0,
  `fees` text CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_520_ci NOT NULL,
  `fees_price` float NOT NULL DEFAULT 0,
  `deposit` text CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_520_ci NOT NULL,
  `deposit_price` float NOT NULL DEFAULT 0,
  `days_hours_history` text CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_520_ci NOT NULL,
  `form` text CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_520_ci NOT NULL,
  `address_billing` text CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_520_ci NOT NULL,
  `address_shipping` text CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_520_ci NOT NULL,
  `email` varchar(128) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '',
  `status` varchar(16) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT 'pending',
  `payment_method` varchar(32) NOT NULL DEFAULT 'default',
  `payment_status` varchar(32) NOT NULL DEFAULT 'pending',
  `transaction_id` varchar(128) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '',
  `token` varchar(128) NOT NULL DEFAULT '',
  `date_created` timestamp NOT NULL DEFAULT current_timestamp(),
  `phone` varchar(32) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '',
  `ip` varchar(32) NOT NULL DEFAULT '',
  `reservation_from` varchar(32) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT 'pinpoint',
  `uid` varchar(75) NOT NULL,
  `stripe_user` varchar(128) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT ''
) ENGINE=InnoDB DEFAULT CHARSET=latin1 COLLATE=latin1_swedish_ci;

--
-- Dumping data for table `wp_dopbsp_reservations`
--

INSERT INTO `wp_dopbsp_reservations` (`id`, `calendar_id`, `language`, `currency`, `currency_code`, `check_in`, `check_out`, `start_hour`, `end_hour`, `no_items`, `price`, `price_total`, `refund`, `extras`, `extras_price`, `discount`, `discount_price`, `coupon`, `coupon_price`, `fees`, `fees_price`, `deposit`, `deposit_price`, `days_hours_history`, `form`, `address_billing`, `address_shipping`, `email`, `status`, `payment_method`, `payment_status`, `transaction_id`, `token`, `date_created`, `phone`, `ip`, `reservation_from`, `uid`, `stripe_user`) VALUES
(1, 1, 'en', '&#82;', 'ZAR', '2016-10-20', '2016-10-24', '', '', 1, 2320, 1572, 0, '[{\"group_id\":\"5\",\"group_translation\":\"Meals\",\"id\":\"12\",\"operation\":\"+\",\"price\":\"75\",\"price_by\":\"period\",\"price_type\":\"fixed\",\"translation\":\"Breakfast\",\"price_total\":\"300\"}]', 300, '{\"id\":\"2\",\"rule_id\":\"0\",\"operation\":\"-\",\"price\":\"10\",\"price_type\":\"percent\",\"price_by\":\"period\",\"start_date\":\"\",\"end_date\":\"\",\"start_hour\":\"\",\"end_hour\":\"\",\"translation\":\"Long Stay\"}', -1048, '{\"id\":\"0\",\"code\":\"\",\"operation\":\"-\",\"price\":\"0\",\"price_type\":\"percent\",\"price_by\":\"once\",\"translation\":\"\"}', 0, '', 0, '{\"price\":\"50\",\"price_type\":\"percent\"}', 786, '{\"2016-10-20\":{\"available\":\"10\",\"bind\":\"0\",\"price\":\"580\",\"promo\":\"0\",\"status\":\"available\"},\"2016-10-21\":{\"available\":\"10\",\"bind\":\"0\",\"price\":\"580\",\"promo\":\"0\",\"status\":\"available\"},\"2016-10-22\":{\"available\":\"10\",\"bind\":\"0\",\"price\":\"580\",\"promo\":\"0\",\"status\":\"available\"},\"2016-10-23\":{\"available\":\"10\",\"bind\":\"0\",\"price\":\"580\",\"promo\":\"0\",\"status\":\"available\"}}', '[{\"id\":\"1\",\"is_email\":\"false\",\"add_to_day_hour_info\":\"false\",\"add_to_day_hour_body\":\"false\",\"translation\":\"First name\",\"value\":\"Lance\"},{\"id\":\"2\",\"is_email\":\"false\",\"add_to_day_hour_info\":\"false\",\"add_to_day_hour_body\":\"false\",\"translation\":\"Last name\",\"value\":\"gg\"},{\"id\":\"3\",\"is_email\":\"true\",\"add_to_day_hour_info\":\"false\",\"add_to_day_hour_body\":\"false\",\"translation\":\"Email\",\"value\":\"shazlan@msla.co.za\"},{\"id\":\"4\",\"is_email\":\"false\",\"add_to_day_hour_info\":\"false\",\"add_to_day_hour_body\":\"false\",\"translation\":\"Phone\",\"value\":\"9999998989\"},{\"id\":\"5\",\"is_email\":\"false\",\"add_to_day_hour_info\":\"false\",\"add_to_day_hour_body\":\"false\",\"translation\":\"Message\",\"value\":\"ffyughvhjhj\\njj\"}]', '', '', 'shazlan@msla.co.za', 'expired', 'none', 'pending', '', '', '2016-10-19 21:32:02', '', '', 'pinpoint', 'AO9aii217R3XPBJyr9nbes5ZK3NUS6aT@msla.co.za/lodge', ''),
(2, 1, 'en', '&#82;', 'ZAR', '2016-10-20', '2016-10-21', '', '', 1, 580, 595, 0, '[{\"group_id\":\"5\",\"group_translation\":\"Meals\",\"id\":\"12\",\"operation\":\"+\",\"price\":\"75\",\"price_by\":\"period\",\"price_type\":\"fixed\",\"translation\":\"Breakfast\",\"price_total\":\"75\"},{\"group_id\":\"6\",\"group_translation\":\"Services\",\"id\":\"18\",\"operation\":\"+\",\"price\":\"25\",\"price_by\":\"period\",\"price_type\":\"fixed\",\"translation\":\"Lodge Cleaning\",\"price_total\":\"25\"}]', 100, '{\"id\":\"1\",\"rule_id\":\"0\",\"operation\":\"-\",\"price\":\"85\",\"price_type\":\"fixed\",\"price_by\":\"period\",\"start_date\":\"\",\"end_date\":\"\",\"start_hour\":\"\",\"end_hour\":\"\",\"translation\":\"On-Line Special\"}', -85, '{\"id\":\"0\",\"code\":\"\",\"operation\":\"-\",\"price\":\"0\",\"price_type\":\"percent\",\"price_by\":\"once\",\"translation\":\"\"}', 0, '[{\"id\":\"1\",\"user_id\":\"1\",\"name\":\"VAT\",\"operation\":\"+\",\"price\":\"14\",\"price_type\":\"percent\",\"price_by\":\"once\",\"included\":\"true\",\"extras\":\"true\",\"cart\":\"true\",\"translation\":\"VAT\",\"price_total\":\"0\"}]', 0, '{\"price\":\"100\",\"price_type\":\"percent\"}', 595, '{\"2016-10-20\":{\"available\":\"10\",\"bind\":\"0\",\"price\":\"580\",\"promo\":\"0\",\"status\":\"available\"}}', '[{\"id\":\"1\",\"is_email\":\"false\",\"add_to_day_hour_info\":\"false\",\"add_to_day_hour_body\":\"false\",\"translation\":\"First name\",\"value\":\"Lance\"},{\"id\":\"2\",\"is_email\":\"false\",\"add_to_day_hour_info\":\"false\",\"add_to_day_hour_body\":\"false\",\"translation\":\"Last name\",\"value\":\"Mc Neil\"},{\"id\":\"3\",\"is_email\":\"true\",\"add_to_day_hour_info\":\"false\",\"add_to_day_hour_body\":\"false\",\"translation\":\"Email\",\"value\":\"chemnet@msla.co.za\"},{\"id\":\"4\",\"is_email\":\"false\",\"add_to_day_hour_info\":\"false\",\"add_to_day_hour_body\":\"false\",\"translation\":\"Phone\",\"value\":\"0317656046\"},{\"id\":\"5\",\"is_email\":\"false\",\"add_to_day_hour_info\":\"false\",\"add_to_day_hour_body\":\"false\",\"translation\":\"Message\",\"value\":\"Hi \"}]', '', '', 'chemnet@msla.co.za', 'expired', 'none', 'pending', '', '', '2016-10-20 10:19:50', '', '', 'pinpoint', 'tU9PLWPzous7hZ9wkbDn2ZksZwKqzKCv@msla.co.za/lodge', ''),
(3, 1, 'en', '&#82;', 'ZAR', '2016-10-20', '2016-10-21', '', '', 1, 580, 595, 0, '[{\"group_id\":\"5\",\"group_translation\":\"Meals\",\"id\":\"12\",\"operation\":\"+\",\"price\":\"75\",\"price_by\":\"period\",\"price_type\":\"fixed\",\"translation\":\"Breakfast\",\"price_total\":\"75\"},{\"group_id\":\"6\",\"group_translation\":\"Services\",\"id\":\"18\",\"operation\":\"+\",\"price\":\"25\",\"price_by\":\"period\",\"price_type\":\"fixed\",\"translation\":\"Lodge Cleaning\",\"price_total\":\"25\"}]', 100, '{\"id\":\"1\",\"rule_id\":\"0\",\"operation\":\"-\",\"price\":\"85\",\"price_type\":\"fixed\",\"price_by\":\"period\",\"start_date\":\"\",\"end_date\":\"\",\"start_hour\":\"\",\"end_hour\":\"\",\"translation\":\"On-Line Special\"}', -85, '{\"id\":\"0\",\"code\":\"\",\"operation\":\"-\",\"price\":\"0\",\"price_type\":\"percent\",\"price_by\":\"once\",\"translation\":\"\"}', 0, '[{\"id\":\"1\",\"user_id\":\"1\",\"name\":\"VAT\",\"operation\":\"+\",\"price\":\"14\",\"price_type\":\"percent\",\"price_by\":\"once\",\"included\":\"true\",\"extras\":\"true\",\"cart\":\"true\",\"translation\":\"VAT\",\"price_total\":\"0\"}]', 0, '{\"price\":\"100\",\"price_type\":\"percent\"}', 595, '{\"2016-10-20\":{\"available\":\"9\",\"bind\":\"0\",\"price\":\"580\",\"promo\":\"0\",\"status\":\"available\"}}', '[{\"id\":\"1\",\"is_email\":\"false\",\"add_to_day_hour_info\":\"false\",\"add_to_day_hour_body\":\"false\",\"translation\":\"First name\",\"value\":\"Lance\"},{\"id\":\"2\",\"is_email\":\"false\",\"add_to_day_hour_info\":\"false\",\"add_to_day_hour_body\":\"false\",\"translation\":\"Last name\",\"value\":\"Mc Neil\"},{\"id\":\"3\",\"is_email\":\"true\",\"add_to_day_hour_info\":\"false\",\"add_to_day_hour_body\":\"false\",\"translation\":\"Email\",\"value\":\"shazlan@msla.co.za\"},{\"id\":\"4\",\"is_email\":\"false\",\"add_to_day_hour_info\":\"false\",\"add_to_day_hour_body\":\"false\",\"translation\":\"Phone\",\"value\":\"34656565645\"},{\"id\":\"5\",\"is_email\":\"false\",\"add_to_day_hour_info\":\"false\",\"add_to_day_hour_body\":\"false\",\"translation\":\"Message\",\"value\":\"Hi\"}]', '', '', 'shazlan@msla.co.za', 'expired', 'none', 'pending', '', '', '2016-10-20 17:01:29', '', '', 'pinpoint', 'wXWaS8dyq4Nrlfwz0nbwQlTU8f8B2PX5@msla.co.za/lodge', ''),
(4, 1, 'en', '&#82;', 'ZAR', '2016-10-22', '2016-10-23', '', '', 1, 580, 825, 0, '[{\"group_id\":\"5\",\"group_translation\":\"Meals\",\"id\":\"12\",\"operation\":\"+\",\"price\":\"75\",\"price_by\":\"period\",\"price_type\":\"fixed\",\"translation\":\"Breakfast\",\"price_total\":\"75\"},{\"group_id\":\"5\",\"group_translation\":\"Meals\",\"id\":\"13\",\"operation\":\"+\",\"price\":\"180\",\"price_by\":\"period\",\"price_type\":\"fixed\",\"translation\":\"Dinner\",\"price_total\":\"180\"},{\"group_id\":\"6\",\"group_translation\":\"Services\",\"id\":\"18\",\"operation\":\"+\",\"price\":\"25\",\"price_by\":\"period\",\"price_type\":\"fixed\",\"translation\":\"Lodge Cleaning\",\"price_total\":\"25\"},{\"group_id\":\"6\",\"group_translation\":\"Services\",\"id\":\"17\",\"operation\":\"+\",\"price\":\"25\",\"price_by\":\"period\",\"price_type\":\"fixed\",\"translation\":\"Room Cleaning\",\"price_total\":\"25\"},{\"group_id\":\"6\",\"group_translation\":\"Services\",\"id\":\"16\",\"operation\":\"+\",\"price\":\"25\",\"price_by\":\"once\",\"price_type\":\"fixed\",\"translation\":\"Gas Braai Hire\",\"price_total\":\"25\"}]', 330, '{\"id\":\"1\",\"rule_id\":\"0\",\"operation\":\"-\",\"price\":\"85\",\"price_type\":\"fixed\",\"price_by\":\"period\",\"start_date\":\"\",\"end_date\":\"\",\"start_hour\":\"\",\"end_hour\":\"\",\"translation\":\"On-Line Special\"}', -85, '{\"id\":\"0\",\"code\":\"\",\"operation\":\"-\",\"price\":\"0\",\"price_type\":\"percent\",\"price_by\":\"once\",\"translation\":\"\"}', 0, '[{\"id\":\"1\",\"user_id\":\"1\",\"name\":\"VAT\",\"operation\":\"+\",\"price\":\"14\",\"price_type\":\"percent\",\"price_by\":\"once\",\"included\":\"true\",\"extras\":\"true\",\"cart\":\"true\",\"translation\":\"VAT\",\"price_total\":\"0\"}]', 0, '{\"price\":\"100\",\"price_type\":\"percent\"}', 825, '{\"2016-10-22\":{\"available\":\"10\",\"bind\":\"0\",\"price\":\"580\",\"promo\":\"0\",\"status\":\"available\"}}', '[{\"id\":\"1\",\"is_email\":\"false\",\"add_to_day_hour_info\":\"false\",\"add_to_day_hour_body\":\"false\",\"translation\":\"First name\",\"value\":\"l\"},{\"id\":\"2\",\"is_email\":\"false\",\"add_to_day_hour_info\":\"false\",\"add_to_day_hour_body\":\"false\",\"translation\":\"Last name\",\"value\":\"a\"},{\"id\":\"3\",\"is_email\":\"true\",\"add_to_day_hour_info\":\"false\",\"add_to_day_hour_body\":\"false\",\"translation\":\"Email\",\"value\":\"chemnet@msla.co.za\"},{\"id\":\"4\",\"is_email\":\"false\",\"add_to_day_hour_info\":\"false\",\"add_to_day_hour_body\":\"false\",\"translation\":\"Phone\",\"value\":\"1234567890\"},{\"id\":\"5\",\"is_email\":\"false\",\"add_to_day_hour_info\":\"false\",\"add_to_day_hour_body\":\"false\",\"translation\":\"Message\",\"value\":\"hi\"}]', '', '', 'chemnet@msla.co.za', 'expired', 'none', 'pending', '', '', '2016-10-22 10:13:14', '', '', 'pinpoint', 'xTgvnnbGpQigBE6u8SXKseOrvbKFpE8M@msla.co.za/lodge', ''),
(5, 1, 'en', '&#82;', 'ZAR', '2016-10-22', '2016-10-23', '', '', 1, 580, 825, 0, '[{\"group_id\":\"5\",\"group_translation\":\"Meals\",\"id\":\"12\",\"operation\":\"+\",\"price\":\"75\",\"price_by\":\"period\",\"price_type\":\"fixed\",\"translation\":\"Breakfast\",\"price_total\":\"75\"},{\"group_id\":\"5\",\"group_translation\":\"Meals\",\"id\":\"13\",\"operation\":\"+\",\"price\":\"180\",\"price_by\":\"period\",\"price_type\":\"fixed\",\"translation\":\"Dinner\",\"price_total\":\"180\"},{\"group_id\":\"6\",\"group_translation\":\"Services\",\"id\":\"18\",\"operation\":\"+\",\"price\":\"25\",\"price_by\":\"period\",\"price_type\":\"fixed\",\"translation\":\"Lodge Cleaning\",\"price_total\":\"25\"},{\"group_id\":\"6\",\"group_translation\":\"Services\",\"id\":\"17\",\"operation\":\"+\",\"price\":\"25\",\"price_by\":\"period\",\"price_type\":\"fixed\",\"translation\":\"Room Cleaning\",\"price_total\":\"25\"},{\"group_id\":\"6\",\"group_translation\":\"Services\",\"id\":\"16\",\"operation\":\"+\",\"price\":\"25\",\"price_by\":\"once\",\"price_type\":\"fixed\",\"translation\":\"Gas Braai Hire\",\"price_total\":\"25\"}]', 330, '{\"id\":\"1\",\"rule_id\":\"0\",\"operation\":\"-\",\"price\":\"85\",\"price_type\":\"fixed\",\"price_by\":\"period\",\"start_date\":\"\",\"end_date\":\"\",\"start_hour\":\"\",\"end_hour\":\"\",\"translation\":\"On-Line Special\"}', -85, '{\"id\":\"0\",\"code\":\"\",\"operation\":\"-\",\"price\":\"0\",\"price_type\":\"percent\",\"price_by\":\"once\",\"translation\":\"\"}', 0, '[{\"id\":\"1\",\"user_id\":\"1\",\"name\":\"VAT\",\"operation\":\"+\",\"price\":\"14\",\"price_type\":\"percent\",\"price_by\":\"once\",\"included\":\"true\",\"extras\":\"true\",\"cart\":\"true\",\"translation\":\"VAT\",\"price_total\":\"0\"}]', 0, '{\"price\":\"100\",\"price_type\":\"percent\"}', 825, '{\"2016-10-22\":{\"available\":\"10\",\"bind\":\"0\",\"price\":\"580\",\"promo\":\"0\",\"status\":\"available\"}}', '[{\"id\":\"1\",\"is_email\":\"false\",\"add_to_day_hour_info\":\"false\",\"add_to_day_hour_body\":\"false\",\"translation\":\"First name\",\"value\":\"l\"},{\"id\":\"2\",\"is_email\":\"false\",\"add_to_day_hour_info\":\"false\",\"add_to_day_hour_body\":\"false\",\"translation\":\"Last name\",\"value\":\"a\"},{\"id\":\"3\",\"is_email\":\"true\",\"add_to_day_hour_info\":\"false\",\"add_to_day_hour_body\":\"false\",\"translation\":\"Email\",\"value\":\"chemnet@msla.co.za\"},{\"id\":\"4\",\"is_email\":\"false\",\"add_to_day_hour_info\":\"false\",\"add_to_day_hour_body\":\"false\",\"translation\":\"Phone\",\"value\":\"1234567890\"},{\"id\":\"5\",\"is_email\":\"false\",\"add_to_day_hour_info\":\"false\",\"add_to_day_hour_body\":\"false\",\"translation\":\"Message\",\"value\":\"hi2\"}]', '', '', 'chemnet@msla.co.za', 'expired', 'none', 'pending', '', '', '2016-10-22 10:29:06', '', '', 'pinpoint', 'cbOatiTr1zTy7oLgxAzzF53HbhQ263T1@msla.co.za/lodge', ''),
(6, 1, 'en', '&#82;', 'ZAR', '2016-10-22', '2016-10-23', '', '', 1, 580, 825, 0, '[{\"group_id\":\"5\",\"group_translation\":\"Meals\",\"id\":\"12\",\"operation\":\"+\",\"price\":\"75\",\"price_by\":\"period\",\"price_type\":\"fixed\",\"translation\":\"Breakfast\",\"price_total\":\"75\"},{\"group_id\":\"5\",\"group_translation\":\"Meals\",\"id\":\"13\",\"operation\":\"+\",\"price\":\"180\",\"price_by\":\"period\",\"price_type\":\"fixed\",\"translation\":\"Dinner\",\"price_total\":\"180\"},{\"group_id\":\"6\",\"group_translation\":\"Services\",\"id\":\"18\",\"operation\":\"+\",\"price\":\"25\",\"price_by\":\"period\",\"price_type\":\"fixed\",\"translation\":\"Lodge Cleaning\",\"price_total\":\"25\"},{\"group_id\":\"6\",\"group_translation\":\"Services\",\"id\":\"17\",\"operation\":\"+\",\"price\":\"25\",\"price_by\":\"period\",\"price_type\":\"fixed\",\"translation\":\"Room Cleaning\",\"price_total\":\"25\"},{\"group_id\":\"6\",\"group_translation\":\"Services\",\"id\":\"16\",\"operation\":\"+\",\"price\":\"25\",\"price_by\":\"once\",\"price_type\":\"fixed\",\"translation\":\"Gas Braai Hire\",\"price_total\":\"25\"}]', 330, '{\"id\":\"1\",\"rule_id\":\"0\",\"operation\":\"-\",\"price\":\"85\",\"price_type\":\"fixed\",\"price_by\":\"period\",\"start_date\":\"\",\"end_date\":\"\",\"start_hour\":\"\",\"end_hour\":\"\",\"translation\":\"On-Line Special\"}', -85, '{\"id\":\"0\",\"code\":\"\",\"operation\":\"-\",\"price\":\"0\",\"price_type\":\"percent\",\"price_by\":\"once\",\"translation\":\"\"}', 0, '[{\"id\":\"1\",\"user_id\":\"1\",\"name\":\"VAT\",\"operation\":\"+\",\"price\":\"14\",\"price_type\":\"percent\",\"price_by\":\"once\",\"included\":\"true\",\"extras\":\"true\",\"cart\":\"true\",\"translation\":\"VAT\",\"price_total\":\"0\"}]', 0, '{\"price\":\"100\",\"price_type\":\"percent\"}', 825, '{\"2016-10-22\":{\"available\":\"10\",\"bind\":\"0\",\"price\":\"580\",\"promo\":\"0\",\"status\":\"available\"}}', '[{\"id\":\"1\",\"is_email\":\"false\",\"add_to_day_hour_info\":\"false\",\"add_to_day_hour_body\":\"false\",\"translation\":\"First name\",\"value\":\"l\"},{\"id\":\"2\",\"is_email\":\"false\",\"add_to_day_hour_info\":\"false\",\"add_to_day_hour_body\":\"false\",\"translation\":\"Last name\",\"value\":\"a\"},{\"id\":\"3\",\"is_email\":\"true\",\"add_to_day_hour_info\":\"false\",\"add_to_day_hour_body\":\"false\",\"translation\":\"Email\",\"value\":\"chemnet@msla.co.za\"},{\"id\":\"4\",\"is_email\":\"false\",\"add_to_day_hour_info\":\"false\",\"add_to_day_hour_body\":\"false\",\"translation\":\"Phone\",\"value\":\"1234567\"},{\"id\":\"5\",\"is_email\":\"false\",\"add_to_day_hour_info\":\"false\",\"add_to_day_hour_body\":\"false\",\"translation\":\"Message\",\"value\":\"hi3\"}]', '', '', 'chemnet@msla.co.za', 'expired', 'none', 'pending', '', '', '2016-10-22 10:40:45', '', '', 'pinpoint', 'Vz9fzcGePTW3OeRpibMb6Jabtn8iDHV7@msla.co.za/lodge', ''),
(7, 1, 'en', '&#82;', 'ZAR', '2016-10-22', '2016-10-23', '', '', 1, 580, 825, 0, '[{\"group_id\":\"5\",\"group_translation\":\"Meals\",\"id\":\"12\",\"operation\":\"+\",\"price\":\"75\",\"price_by\":\"period\",\"price_type\":\"fixed\",\"translation\":\"Breakfast\",\"price_total\":\"75\"},{\"group_id\":\"5\",\"group_translation\":\"Meals\",\"id\":\"13\",\"operation\":\"+\",\"price\":\"180\",\"price_by\":\"period\",\"price_type\":\"fixed\",\"translation\":\"Dinner\",\"price_total\":\"180\"},{\"group_id\":\"6\",\"group_translation\":\"Services\",\"id\":\"18\",\"operation\":\"+\",\"price\":\"25\",\"price_by\":\"period\",\"price_type\":\"fixed\",\"translation\":\"Lodge Cleaning\",\"price_total\":\"25\"},{\"group_id\":\"6\",\"group_translation\":\"Services\",\"id\":\"17\",\"operation\":\"+\",\"price\":\"25\",\"price_by\":\"period\",\"price_type\":\"fixed\",\"translation\":\"Room Cleaning\",\"price_total\":\"25\"},{\"group_id\":\"6\",\"group_translation\":\"Services\",\"id\":\"16\",\"operation\":\"+\",\"price\":\"25\",\"price_by\":\"once\",\"price_type\":\"fixed\",\"translation\":\"Gas Braai Hire\",\"price_total\":\"25\"}]', 330, '{\"id\":\"1\",\"rule_id\":\"0\",\"operation\":\"-\",\"price\":\"85\",\"price_type\":\"fixed\",\"price_by\":\"period\",\"start_date\":\"\",\"end_date\":\"\",\"start_hour\":\"\",\"end_hour\":\"\",\"translation\":\"On-Line Special\"}', -85, '{\"id\":\"0\",\"code\":\"\",\"operation\":\"-\",\"price\":\"0\",\"price_type\":\"percent\",\"price_by\":\"once\",\"translation\":\"\"}', 0, '[{\"id\":\"1\",\"user_id\":\"1\",\"name\":\"VAT\",\"operation\":\"+\",\"price\":\"14\",\"price_type\":\"percent\",\"price_by\":\"once\",\"included\":\"true\",\"extras\":\"true\",\"cart\":\"true\",\"translation\":\"VAT\",\"price_total\":\"0\"}]', 0, '{\"price\":\"100\",\"price_type\":\"percent\"}', 825, '{\"2016-10-22\":{\"available\":\"10\",\"bind\":\"0\",\"price\":\"580\",\"promo\":\"0\",\"status\":\"available\"}}', '[{\"id\":\"1\",\"is_email\":\"false\",\"add_to_day_hour_info\":\"false\",\"add_to_day_hour_body\":\"false\",\"translation\":\"First name\",\"value\":\"l\"},{\"id\":\"2\",\"is_email\":\"false\",\"add_to_day_hour_info\":\"false\",\"add_to_day_hour_body\":\"false\",\"translation\":\"Last name\",\"value\":\"a\"},{\"id\":\"3\",\"is_email\":\"true\",\"add_to_day_hour_info\":\"false\",\"add_to_day_hour_body\":\"false\",\"translation\":\"Email\",\"value\":\"chemnet@msla.co.za\"},{\"id\":\"4\",\"is_email\":\"false\",\"add_to_day_hour_info\":\"false\",\"add_to_day_hour_body\":\"false\",\"translation\":\"Phone\",\"value\":\"9087654444\"},{\"id\":\"5\",\"is_email\":\"false\",\"add_to_day_hour_info\":\"false\",\"add_to_day_hour_body\":\"false\",\"translation\":\"Message\",\"value\":\"hi4\"}]', '', '', 'chemnet@msla.co.za', 'expired', 'none', 'pending', '', '', '2016-10-22 11:07:40', '', '', 'pinpoint', 'ZzTe53o3DyOdgFIhQ3AXC3wICQL4Eyoa@msla.co.za/lodge', ''),
(8, 1, 'en', '&#82;', 'ZAR', '2016-10-22', '2016-10-23', '', '', 1, 580, 595, 0, '[{\"group_id\":\"5\",\"group_translation\":\"Meals\",\"id\":\"12\",\"operation\":\"+\",\"price\":\"75\",\"price_by\":\"period\",\"price_type\":\"fixed\",\"translation\":\"Breakfast\",\"price_total\":\"75\"},{\"group_id\":\"6\",\"group_translation\":\"Services\",\"id\":\"18\",\"operation\":\"+\",\"price\":\"25\",\"price_by\":\"period\",\"price_type\":\"fixed\",\"translation\":\"Lodge Cleaning\",\"price_total\":\"25\"}]', 100, '{\"id\":\"1\",\"rule_id\":\"0\",\"operation\":\"-\",\"price\":\"85\",\"price_type\":\"fixed\",\"price_by\":\"period\",\"start_date\":\"\",\"end_date\":\"\",\"start_hour\":\"\",\"end_hour\":\"\",\"translation\":\"On-Line Special\"}', -85, '{\"id\":\"0\",\"code\":\"\",\"operation\":\"-\",\"price\":\"0\",\"price_type\":\"percent\",\"price_by\":\"once\",\"translation\":\"\"}', 0, '[{\"id\":\"1\",\"user_id\":\"1\",\"name\":\"VAT\",\"operation\":\"+\",\"price\":\"14\",\"price_type\":\"percent\",\"price_by\":\"once\",\"included\":\"true\",\"extras\":\"true\",\"cart\":\"true\",\"translation\":\"VAT\",\"price_total\":\"0\"}]', 0, '{\"price\":\"100\",\"price_type\":\"percent\"}', 595, '{\"2016-10-22\":{\"available\":\"10\",\"bind\":\"0\",\"price\":\"580\",\"promo\":\"0\",\"status\":\"available\"}}', '[{\"id\":\"1\",\"is_email\":\"false\",\"add_to_day_hour_info\":\"false\",\"add_to_day_hour_body\":\"false\",\"translation\":\"First name\",\"value\":\"l\"},{\"id\":\"2\",\"is_email\":\"false\",\"add_to_day_hour_info\":\"false\",\"add_to_day_hour_body\":\"false\",\"translation\":\"Last name\",\"value\":\"a\"},{\"id\":\"3\",\"is_email\":\"true\",\"add_to_day_hour_info\":\"false\",\"add_to_day_hour_body\":\"false\",\"translation\":\"Email\",\"value\":\"chemnet@msla.co.za\"},{\"id\":\"4\",\"is_email\":\"false\",\"add_to_day_hour_info\":\"false\",\"add_to_day_hour_body\":\"false\",\"translation\":\"Phone\",\"value\":\"0\"},{\"id\":\"5\",\"is_email\":\"false\",\"add_to_day_hour_info\":\"false\",\"add_to_day_hour_body\":\"false\",\"translation\":\"Message\",\"value\":\"hi4\"}]', '', '', 'chemnet@msla.co.za', 'expired', 'none', 'pending', '', '', '2016-10-22 11:16:55', '', '', 'pinpoint', 'AB6Ll1O2qfxAAersTBuvx4z3VLwfl20t@msla.co.za/lodge', ''),
(9, 1, 'en', '&#82;', 'ZAR', '2016-10-22', '2016-10-23', '', '', 1, 580, 595, 0, '[{\"group_id\":\"5\",\"group_translation\":\"Meals\",\"id\":\"12\",\"operation\":\"+\",\"price\":\"75\",\"price_by\":\"period\",\"price_type\":\"fixed\",\"translation\":\"Breakfast\",\"price_total\":\"75\"},{\"group_id\":\"6\",\"group_translation\":\"Services\",\"id\":\"18\",\"operation\":\"+\",\"price\":\"25\",\"price_by\":\"period\",\"price_type\":\"fixed\",\"translation\":\"Lodge Cleaning\",\"price_total\":\"25\"}]', 100, '{\"id\":\"1\",\"rule_id\":\"0\",\"operation\":\"-\",\"price\":\"85\",\"price_type\":\"fixed\",\"price_by\":\"period\",\"start_date\":\"\",\"end_date\":\"\",\"start_hour\":\"\",\"end_hour\":\"\",\"translation\":\"On-Line Special\"}', -85, '{\"id\":\"0\",\"code\":\"\",\"operation\":\"-\",\"price\":\"0\",\"price_type\":\"percent\",\"price_by\":\"once\",\"translation\":\"\"}', 0, '[{\"id\":\"1\",\"user_id\":\"1\",\"name\":\"VAT\",\"operation\":\"+\",\"price\":\"14\",\"price_type\":\"percent\",\"price_by\":\"once\",\"included\":\"true\",\"extras\":\"true\",\"cart\":\"true\",\"translation\":\"VAT\",\"price_total\":\"0\"}]', 0, '{\"price\":\"100\",\"price_type\":\"percent\"}', 595, '{\"2016-10-22\":{\"available\":\"10\",\"bind\":\"0\",\"price\":\"580\",\"promo\":\"0\",\"status\":\"available\"}}', '[{\"id\":\"1\",\"is_email\":\"false\",\"add_to_day_hour_info\":\"false\",\"add_to_day_hour_body\":\"false\",\"translation\":\"First name\",\"value\":\"l\"},{\"id\":\"2\",\"is_email\":\"false\",\"add_to_day_hour_info\":\"false\",\"add_to_day_hour_body\":\"false\",\"translation\":\"Last name\",\"value\":\"a\"},{\"id\":\"3\",\"is_email\":\"true\",\"add_to_day_hour_info\":\"false\",\"add_to_day_hour_body\":\"false\",\"translation\":\"Email\",\"value\":\"chemnet@msla.co.za\"},{\"id\":\"4\",\"is_email\":\"false\",\"add_to_day_hour_info\":\"false\",\"add_to_day_hour_body\":\"false\",\"translation\":\"Phone\",\"value\":\"0\"},{\"id\":\"5\",\"is_email\":\"false\",\"add_to_day_hour_info\":\"false\",\"add_to_day_hour_body\":\"false\",\"translation\":\"Message\",\"value\":\"hi5\"}]', '', '', 'chemnet@msla.co.za', 'expired', 'none', 'pending', '', '', '2016-10-22 11:21:10', '', '', 'pinpoint', '3Xal9ThJEAx9P41mDlsvSN93Qm4sZ6L1@msla.co.za/lodge', ''),
(10, 1, 'en', '&#82;', 'ZAR', '2016-10-22', '2016-10-23', '', '', 1, 580, 570, 0, '[{\"group_id\":\"5\",\"group_translation\":\"Meals\",\"id\":\"12\",\"operation\":\"+\",\"price\":\"75\",\"price_by\":\"period\",\"price_type\":\"fixed\",\"translation\":\"Breakfast\",\"price_total\":\"75\"}]', 75, '{\"id\":\"1\",\"rule_id\":\"0\",\"operation\":\"-\",\"price\":\"85\",\"price_type\":\"fixed\",\"price_by\":\"period\",\"start_date\":\"\",\"end_date\":\"\",\"start_hour\":\"\",\"end_hour\":\"\",\"translation\":\"On-Line Special\"}', -85, '{\"id\":\"0\",\"code\":\"\",\"operation\":\"-\",\"price\":\"0\",\"price_type\":\"percent\",\"price_by\":\"once\",\"translation\":\"\"}', 0, '[{\"id\":\"1\",\"user_id\":\"1\",\"name\":\"VAT\",\"operation\":\"+\",\"price\":\"14\",\"price_type\":\"percent\",\"price_by\":\"once\",\"included\":\"true\",\"extras\":\"true\",\"cart\":\"true\",\"translation\":\"VAT\",\"price_total\":\"0\"}]', 0, '{\"price\":\"100\",\"price_type\":\"percent\"}', 570, '{\"2016-10-22\":{\"available\":\"10\",\"bind\":\"0\",\"price\":\"580\",\"promo\":\"0\",\"status\":\"available\"}}', '[{\"id\":\"1\",\"is_email\":\"false\",\"add_to_day_hour_info\":\"false\",\"add_to_day_hour_body\":\"false\",\"translation\":\"First name\",\"value\":\"l\"},{\"id\":\"2\",\"is_email\":\"false\",\"add_to_day_hour_info\":\"false\",\"add_to_day_hour_body\":\"false\",\"translation\":\"Last name\",\"value\":\"a\"},{\"id\":\"3\",\"is_email\":\"true\",\"add_to_day_hour_info\":\"false\",\"add_to_day_hour_body\":\"false\",\"translation\":\"Email\",\"value\":\"chemnet@msla.co.za\"},{\"id\":\"4\",\"is_email\":\"false\",\"add_to_day_hour_info\":\"false\",\"add_to_day_hour_body\":\"false\",\"translation\":\"Phone\",\"value\":\"0\"},{\"id\":\"5\",\"is_email\":\"false\",\"add_to_day_hour_info\":\"false\",\"add_to_day_hour_body\":\"false\",\"translation\":\"Message\",\"value\":\"hi6\"}]', '', '', 'chemnet@msla.co.za', 'expired', 'none', 'pending', '', '', '2016-10-22 11:31:33', '', '', 'pinpoint', 'wb6G2GenSvtgayfB4xQBk4MWMJ8WKpZv@msla.co.za/lodge', ''),
(11, 1, 'en', '&#82;', 'ZAR', '2016-10-22', '2016-10-23', '', '', 1, 580, 595, 0, '[{\"group_id\":\"5\",\"group_translation\":\"Meals\",\"id\":\"12\",\"operation\":\"+\",\"price\":\"75\",\"price_by\":\"period\",\"price_type\":\"fixed\",\"translation\":\"Breakfast\",\"price_total\":\"75\"},{\"group_id\":\"6\",\"group_translation\":\"Services\",\"id\":\"18\",\"operation\":\"+\",\"price\":\"25\",\"price_by\":\"period\",\"price_type\":\"fixed\",\"translation\":\"Lodge Cleaning\",\"price_total\":\"25\"}]', 100, '{\"id\":\"1\",\"rule_id\":\"0\",\"operation\":\"-\",\"price\":\"85\",\"price_type\":\"fixed\",\"price_by\":\"period\",\"start_date\":\"\",\"end_date\":\"\",\"start_hour\":\"\",\"end_hour\":\"\",\"translation\":\"On-Line Special\"}', -85, '{\"id\":\"0\",\"code\":\"\",\"operation\":\"-\",\"price\":\"0\",\"price_type\":\"percent\",\"price_by\":\"once\",\"translation\":\"\"}', 0, '[{\"id\":\"1\",\"user_id\":\"1\",\"name\":\"VAT\",\"operation\":\"+\",\"price\":\"14\",\"price_type\":\"percent\",\"price_by\":\"once\",\"included\":\"true\",\"extras\":\"true\",\"cart\":\"true\",\"translation\":\"VAT\",\"price_total\":\"0\"}]', 0, '{\"price\":\"100\",\"price_type\":\"percent\"}', 595, '{\"2016-10-22\":{\"available\":\"10\",\"bind\":\"0\",\"price\":\"580\",\"promo\":\"0\",\"status\":\"available\"}}', '[{\"id\":\"1\",\"is_email\":\"false\",\"add_to_day_hour_info\":\"false\",\"add_to_day_hour_body\":\"false\",\"translation\":\"First name\",\"value\":\"l\"},{\"id\":\"2\",\"is_email\":\"false\",\"add_to_day_hour_info\":\"false\",\"add_to_day_hour_body\":\"false\",\"translation\":\"Last name\",\"value\":\"a\"},{\"id\":\"3\",\"is_email\":\"true\",\"add_to_day_hour_info\":\"false\",\"add_to_day_hour_body\":\"false\",\"translation\":\"Email\",\"value\":\"chemnet@msla.co.za\"},{\"id\":\"4\",\"is_email\":\"false\",\"add_to_day_hour_info\":\"false\",\"add_to_day_hour_body\":\"false\",\"translation\":\"Phone\",\"value\":\"0\"},{\"id\":\"5\",\"is_email\":\"false\",\"add_to_day_hour_info\":\"false\",\"add_to_day_hour_body\":\"false\",\"translation\":\"Message\",\"value\":\"hi6\"}]', '', '', 'chemnet@msla.co.za', 'expired', 'none', 'pending', '', '', '2016-10-22 11:35:47', '', '', 'pinpoint', 'pGkdA3SWCadCxI03s2k21vmrJXi66sal@msla.co.za/lodge', ''),
(12, 1, 'en', '&#82;', 'ZAR', '2016-10-22', '2016-10-23', '', '', 1, 580, 595, 0, '[{\"group_id\":\"5\",\"group_translation\":\"Meals\",\"id\":\"12\",\"operation\":\"+\",\"price\":\"75\",\"price_by\":\"period\",\"price_type\":\"fixed\",\"translation\":\"Breakfast\",\"price_total\":\"75\"},{\"group_id\":\"6\",\"group_translation\":\"Services\",\"id\":\"18\",\"operation\":\"+\",\"price\":\"25\",\"price_by\":\"period\",\"price_type\":\"fixed\",\"translation\":\"Lodge Cleaning\",\"price_total\":\"25\"}]', 100, '{\"id\":\"1\",\"rule_id\":\"0\",\"operation\":\"-\",\"price\":\"85\",\"price_type\":\"fixed\",\"price_by\":\"period\",\"start_date\":\"\",\"end_date\":\"\",\"start_hour\":\"\",\"end_hour\":\"\",\"translation\":\"On-Line Special\"}', -85, '{\"id\":\"0\",\"code\":\"\",\"operation\":\"-\",\"price\":\"0\",\"price_type\":\"percent\",\"price_by\":\"once\",\"translation\":\"\"}', 0, '[{\"id\":\"1\",\"user_id\":\"1\",\"name\":\"VAT\",\"operation\":\"+\",\"price\":\"14\",\"price_type\":\"percent\",\"price_by\":\"once\",\"included\":\"true\",\"extras\":\"true\",\"cart\":\"true\",\"translation\":\"VAT\",\"price_total\":\"0\"}]', 0, '{\"price\":\"100\",\"price_type\":\"percent\"}', 595, '{\"2016-10-22\":{\"available\":\"10\",\"bind\":\"0\",\"price\":\"580\",\"promo\":\"0\",\"status\":\"available\"}}', '[{\"id\":\"1\",\"is_email\":\"false\",\"add_to_day_hour_info\":\"false\",\"add_to_day_hour_body\":\"false\",\"translation\":\"First name\",\"value\":\"l\"},{\"id\":\"2\",\"is_email\":\"false\",\"add_to_day_hour_info\":\"false\",\"add_to_day_hour_body\":\"false\",\"translation\":\"Last name\",\"value\":\"a\"},{\"id\":\"3\",\"is_email\":\"true\",\"add_to_day_hour_info\":\"false\",\"add_to_day_hour_body\":\"false\",\"translation\":\"Email\",\"value\":\"chemnet@msla.co.za\"},{\"id\":\"4\",\"is_email\":\"false\",\"add_to_day_hour_info\":\"false\",\"add_to_day_hour_body\":\"false\",\"translation\":\"Phone\",\"value\":\"0\"},{\"id\":\"5\",\"is_email\":\"false\",\"add_to_day_hour_info\":\"false\",\"add_to_day_hour_body\":\"false\",\"translation\":\"Message\",\"value\":\"hi7\"}]', '', '', 'chemnet@msla.co.za', 'expired', 'none', 'pending', '', '', '2016-10-22 11:37:32', '', '', 'pinpoint', 'oZewrZwE4ZlcvxZoTBekQLIHTPOOWr0H@msla.co.za/lodge', ''),
(13, 1, 'en', '&#82;', 'ZAR', '2016-10-22', '2016-10-23', '', '', 1, 580, 570, 0, '[{\"group_id\":\"5\",\"group_translation\":\"Meals\",\"id\":\"12\",\"operation\":\"+\",\"price\":\"75\",\"price_by\":\"period\",\"price_type\":\"fixed\",\"translation\":\"Breakfast\",\"price_total\":\"75\"}]', 75, '{\"id\":\"1\",\"rule_id\":\"0\",\"operation\":\"-\",\"price\":\"85\",\"price_type\":\"fixed\",\"price_by\":\"period\",\"start_date\":\"\",\"end_date\":\"\",\"start_hour\":\"\",\"end_hour\":\"\",\"translation\":\"On-Line Special\"}', -85, '{\"id\":\"0\",\"code\":\"\",\"operation\":\"-\",\"price\":\"0\",\"price_type\":\"percent\",\"price_by\":\"once\",\"translation\":\"\"}', 0, '[{\"id\":\"1\",\"user_id\":\"1\",\"name\":\"VAT\",\"operation\":\"+\",\"price\":\"14\",\"price_type\":\"percent\",\"price_by\":\"once\",\"included\":\"true\",\"extras\":\"true\",\"cart\":\"true\",\"translation\":\"VAT\",\"price_total\":\"0\"}]', 0, '{\"price\":\"100\",\"price_type\":\"percent\"}', 570, '{\"2016-10-22\":{\"available\":\"10\",\"bind\":\"0\",\"price\":\"580\",\"promo\":\"0\",\"status\":\"available\"}}', '[{\"id\":\"1\",\"is_email\":\"false\",\"add_to_day_hour_info\":\"false\",\"add_to_day_hour_body\":\"false\",\"translation\":\"First name\",\"value\":\"l\"},{\"id\":\"2\",\"is_email\":\"false\",\"add_to_day_hour_info\":\"false\",\"add_to_day_hour_body\":\"false\",\"translation\":\"Last name\",\"value\":\"a\"},{\"id\":\"3\",\"is_email\":\"true\",\"add_to_day_hour_info\":\"false\",\"add_to_day_hour_body\":\"false\",\"translation\":\"Email\",\"value\":\"chemnet@msla.co.za\"},{\"id\":\"4\",\"is_email\":\"false\",\"add_to_day_hour_info\":\"false\",\"add_to_day_hour_body\":\"false\",\"translation\":\"Phone\",\"value\":\"0\"},{\"id\":\"5\",\"is_email\":\"false\",\"add_to_day_hour_info\":\"false\",\"add_to_day_hour_body\":\"false\",\"translation\":\"Message\",\"value\":\"hi8\"}]', '', '', 'chemnet@msla.co.za', 'expired', 'none', 'pending', '', '', '2016-10-22 12:47:16', '', '', 'pinpoint', 'a3d22Oam2TNFWeMIUQiAGCCQc9OaCy8T@msla.co.za/lodge', ''),
(14, 1, 'en', '&#82;', 'ZAR', '2016-10-22', '2016-10-23', '', '', 1, 580, 570, 0, '[{\"group_id\":\"5\",\"group_translation\":\"Meals\",\"id\":\"12\",\"operation\":\"+\",\"price\":\"75\",\"price_by\":\"period\",\"price_type\":\"fixed\",\"translation\":\"Breakfast\",\"price_total\":\"75\"}]', 75, '{\"id\":\"1\",\"rule_id\":\"0\",\"operation\":\"-\",\"price\":\"85\",\"price_type\":\"fixed\",\"price_by\":\"period\",\"start_date\":\"\",\"end_date\":\"\",\"start_hour\":\"\",\"end_hour\":\"\",\"translation\":\"On-Line Special\"}', -85, '{\"id\":\"0\",\"code\":\"\",\"operation\":\"-\",\"price\":\"0\",\"price_type\":\"percent\",\"price_by\":\"once\",\"translation\":\"\"}', 0, '[{\"id\":\"1\",\"user_id\":\"1\",\"name\":\"VAT\",\"operation\":\"+\",\"price\":\"14\",\"price_type\":\"percent\",\"price_by\":\"once\",\"included\":\"true\",\"extras\":\"true\",\"cart\":\"true\",\"translation\":\"VAT\",\"price_total\":\"0\"}]', 0, '{\"price\":\"100\",\"price_type\":\"percent\"}', 570, '{\"2016-10-22\":{\"available\":\"10\",\"bind\":\"0\",\"price\":\"580\",\"promo\":\"0\",\"status\":\"available\"}}', '[{\"id\":\"1\",\"is_email\":\"false\",\"add_to_day_hour_info\":\"false\",\"add_to_day_hour_body\":\"false\",\"translation\":\"First name\",\"value\":\"l\"},{\"id\":\"2\",\"is_email\":\"false\",\"add_to_day_hour_info\":\"false\",\"add_to_day_hour_body\":\"false\",\"translation\":\"Last name\",\"value\":\"a\"},{\"id\":\"3\",\"is_email\":\"true\",\"add_to_day_hour_info\":\"false\",\"add_to_day_hour_body\":\"false\",\"translation\":\"Email\",\"value\":\"chemnet@msla.co.za\"},{\"id\":\"4\",\"is_email\":\"false\",\"add_to_day_hour_info\":\"false\",\"add_to_day_hour_body\":\"false\",\"translation\":\"Phone\",\"value\":\"0\"},{\"id\":\"5\",\"is_email\":\"false\",\"add_to_day_hour_info\":\"false\",\"add_to_day_hour_body\":\"false\",\"translation\":\"Message\",\"value\":\"\"}]', '', '', 'chemnet@msla.co.za', 'expired', 'none', 'pending', '', '', '2016-10-22 13:00:28', '', '', 'pinpoint', '5NGUluDLEUqJWayXpD2oAm6Frbv4eDrt@msla.co.za/lodge', ''),
(15, 0, 'en', '$', 'USD', '2016-10-22', '2016-10-23', '', '', 1, 580, 570, 0, '[{\"group_id\":\"5\",\"group_translation\":\"Meals\",\"id\":\"12\",\"operation\":\"+\",\"price\":\"75\",\"price_by\":\"period\",\"price_type\":\"fixed\",\"translation\":\"Breakfast\",\"price_total\":\"75\"}]', 75, '{\"id\":\"1\",\"rule_id\":\"0\",\"operation\":\"-\",\"price\":\"85\",\"price_type\":\"fixed\",\"price_by\":\"period\",\"start_date\":\"\",\"end_date\":\"\",\"start_hour\":\"\",\"end_hour\":\"\",\"translation\":\"On-Line Special\"}', -85, '{\"id\":\"0\",\"code\":\"\",\"operation\":\"-\",\"price\":\"0\",\"price_type\":\"percent\",\"price_by\":\"once\",\"translation\":\"\"}', 0, '[{\"id\":\"1\",\"user_id\":\"1\",\"name\":\"VAT\",\"operation\":\"+\",\"price\":\"14\",\"price_type\":\"percent\",\"price_by\":\"once\",\"included\":\"true\",\"extras\":\"true\",\"cart\":\"true\",\"translation\":\"VAT\",\"price_total\":\"0\"}]', 0, '{\"price\":\"100\",\"price_type\":\"percent\"}', 570, '{\"2016-10-22\":{\"available\":\"10\",\"bind\":\"0\",\"price\":\"580\",\"promo\":\"0\",\"status\":\"available\"}}', '[{\"id\":\"1\",\"is_email\":\"false\",\"add_to_day_hour_info\":\"false\",\"add_to_day_hour_body\":\"false\",\"translation\":\"First name\",\"value\":\"l\"},{\"id\":\"2\",\"is_email\":\"false\",\"add_to_day_hour_info\":\"false\",\"add_to_day_hour_body\":\"false\",\"translation\":\"Last name\",\"value\":\"a\"},{\"id\":\"3\",\"is_email\":\"true\",\"add_to_day_hour_info\":\"false\",\"add_to_day_hour_body\":\"false\",\"translation\":\"Email\",\"value\":\"chemnet@msla.co.za\"},{\"id\":\"4\",\"is_email\":\"false\",\"add_to_day_hour_info\":\"false\",\"add_to_day_hour_body\":\"false\",\"translation\":\"Phone\",\"value\":\"9\"},{\"id\":\"5\",\"is_email\":\"false\",\"add_to_day_hour_info\":\"false\",\"add_to_day_hour_body\":\"false\",\"translation\":\"Message\",\"value\":\"\"}]', '', '', 'chemnet@msla.co.za', 'expired', 'none', 'pending', '', '', '2016-10-22 13:02:56', '', '', 'pinpoint', 'Za1MmaiXNpsFigvmNXBxd8tvalCT0kR8@msla.co.za/lodge', ''),
(16, 1, 'en', '&#82;', 'ZAR', '2016-10-22', '2016-10-23', '', '', 1, 580, 570, 0, '[{\"group_id\":\"5\",\"group_translation\":\"Meals\",\"id\":\"12\",\"operation\":\"+\",\"price\":\"75\",\"price_by\":\"period\",\"price_type\":\"fixed\",\"translation\":\"Breakfast\",\"price_total\":\"75\"}]', 75, '{\"id\":\"1\",\"rule_id\":\"0\",\"operation\":\"-\",\"price\":\"85\",\"price_type\":\"fixed\",\"price_by\":\"period\",\"start_date\":\"\",\"end_date\":\"\",\"start_hour\":\"\",\"end_hour\":\"\",\"translation\":\"On-Line Special\"}', -85, '{\"id\":\"0\",\"code\":\"\",\"operation\":\"-\",\"price\":\"0\",\"price_type\":\"percent\",\"price_by\":\"once\",\"translation\":\"\"}', 0, '[{\"id\":\"1\",\"user_id\":\"1\",\"name\":\"VAT\",\"operation\":\"+\",\"price\":\"14\",\"price_type\":\"percent\",\"price_by\":\"once\",\"included\":\"true\",\"extras\":\"true\",\"cart\":\"true\",\"translation\":\"VAT\",\"price_total\":\"0\"}]', 0, '{\"price\":\"100\",\"price_type\":\"percent\"}', 570, '{\"2016-10-22\":{\"available\":\"10\",\"bind\":\"0\",\"price\":\"580\",\"promo\":\"0\",\"status\":\"available\"}}', '[{\"id\":\"1\",\"is_email\":\"false\",\"add_to_day_hour_info\":\"false\",\"add_to_day_hour_body\":\"false\",\"translation\":\"First name\",\"value\":\"a\"},{\"id\":\"2\",\"is_email\":\"false\",\"add_to_day_hour_info\":\"false\",\"add_to_day_hour_body\":\"false\",\"translation\":\"Last name\",\"value\":\"m\"},{\"id\":\"3\",\"is_email\":\"true\",\"add_to_day_hour_info\":\"false\",\"add_to_day_hour_body\":\"false\",\"translation\":\"Email\",\"value\":\"chemnet@msla.co.za\"},{\"id\":\"4\",\"is_email\":\"false\",\"add_to_day_hour_info\":\"false\",\"add_to_day_hour_body\":\"false\",\"translation\":\"Phone\",\"value\":\"0\"},{\"id\":\"5\",\"is_email\":\"false\",\"add_to_day_hour_info\":\"false\",\"add_to_day_hour_body\":\"false\",\"translation\":\"Message\",\"value\":\"\"}]', '', '', 'chemnet@msla.co.za', 'expired', 'none', 'pending', '', '', '2016-10-22 14:56:34', '', '', 'pinpoint', '6HmA9CQAIQ6tk1dbNc7UlLANt42BQ1SZ@msla.co.za/lodge', ''),
(17, 1, 'en', '&#82;', 'ZAR', '2016-10-22', '2016-10-24', '', '', 1, 1160, 1140, 0, '[{\"group_id\":\"5\",\"group_translation\":\"Meals\",\"id\":\"12\",\"operation\":\"+\",\"price\":\"75\",\"price_by\":\"period\",\"price_type\":\"fixed\",\"translation\":\"Breakfast\",\"price_total\":\"150\"}]', 150, '{\"id\":\"1\",\"rule_id\":\"0\",\"operation\":\"-\",\"price\":\"85\",\"price_type\":\"fixed\",\"price_by\":\"period\",\"start_date\":\"\",\"end_date\":\"\",\"start_hour\":\"\",\"end_hour\":\"\",\"translation\":\"On-Line Special\"}', -170, '{\"id\":\"0\",\"code\":\"\",\"operation\":\"-\",\"price\":\"0\",\"price_type\":\"percent\",\"price_by\":\"once\",\"translation\":\"\"}', 0, '[{\"id\":\"1\",\"user_id\":\"1\",\"name\":\"VAT\",\"operation\":\"+\",\"price\":\"14\",\"price_type\":\"percent\",\"price_by\":\"once\",\"included\":\"true\",\"extras\":\"true\",\"cart\":\"true\",\"translation\":\"VAT\",\"price_total\":\"0\"}]', 0, '{\"price\":\"100\",\"price_type\":\"percent\"}', 1140, '{\"2016-10-22\":{\"available\":\"10\",\"bind\":\"0\",\"price\":\"580\",\"promo\":\"0\",\"status\":\"available\"},\"2016-10-23\":{\"available\":\"10\",\"bind\":\"0\",\"price\":\"580\",\"promo\":\"0\",\"status\":\"available\"}}', '[{\"id\":\"1\",\"is_email\":\"false\",\"add_to_day_hour_info\":\"false\",\"add_to_day_hour_body\":\"false\",\"translation\":\"First name\",\"value\":\"a\"},{\"id\":\"2\",\"is_email\":\"false\",\"add_to_day_hour_info\":\"false\",\"add_to_day_hour_body\":\"false\",\"translation\":\"Last name\",\"value\":\"s\"},{\"id\":\"3\",\"is_email\":\"true\",\"add_to_day_hour_info\":\"false\",\"add_to_day_hour_body\":\"false\",\"translation\":\"Email\",\"value\":\"chemnet@msla.co.za\"},{\"id\":\"4\",\"is_email\":\"false\",\"add_to_day_hour_info\":\"false\",\"add_to_day_hour_body\":\"false\",\"translation\":\"Phone\",\"value\":\"0\"},{\"id\":\"5\",\"is_email\":\"false\",\"add_to_day_hour_info\":\"false\",\"add_to_day_hour_body\":\"false\",\"translation\":\"Message\",\"value\":\"\"}]', '', '', 'chemnet@msla.co.za', 'expired', 'none', 'pending', '', '', '2016-10-22 15:01:23', '', '', 'pinpoint', 'uRPyguevRCNI2V9Rhxo8fWGw3JvvusGK@msla.co.za/lodge', ''),
(18, 1, 'en', '&#82;', 'ZAR', '2016-10-22', '2016-10-23', '', '', 1, 580, 570, 0, '[{\"group_id\":\"5\",\"group_translation\":\"Meals\",\"id\":\"12\",\"operation\":\"+\",\"price\":\"75\",\"price_by\":\"period\",\"price_type\":\"fixed\",\"translation\":\"Breakfast\",\"price_total\":\"75\"}]', 75, '{\"id\":\"1\",\"rule_id\":\"0\",\"operation\":\"-\",\"price\":\"85\",\"price_type\":\"fixed\",\"price_by\":\"period\",\"start_date\":\"\",\"end_date\":\"\",\"start_hour\":\"\",\"end_hour\":\"\",\"translation\":\"On-Line Special\"}', -85, '{\"id\":\"0\",\"code\":\"\",\"operation\":\"-\",\"price\":\"0\",\"price_type\":\"percent\",\"price_by\":\"once\",\"translation\":\"\"}', 0, '[{\"id\":\"1\",\"user_id\":\"1\",\"name\":\"VAT\",\"operation\":\"+\",\"price\":\"14\",\"price_type\":\"percent\",\"price_by\":\"once\",\"included\":\"true\",\"extras\":\"true\",\"cart\":\"true\",\"translation\":\"VAT\",\"price_total\":\"0\"}]', 0, '{\"price\":\"100\",\"price_type\":\"percent\"}', 570, '{\"2016-10-22\":{\"available\":\"10\",\"bind\":\"0\",\"price\":\"580\",\"promo\":\"0\",\"status\":\"available\"}}', '[{\"id\":\"1\",\"is_email\":\"false\",\"add_to_day_hour_info\":\"false\",\"add_to_day_hour_body\":\"false\",\"translation\":\"First name\",\"value\":\"a\"},{\"id\":\"2\",\"is_email\":\"false\",\"add_to_day_hour_info\":\"false\",\"add_to_day_hour_body\":\"false\",\"translation\":\"Last name\",\"value\":\"a\"},{\"id\":\"3\",\"is_email\":\"true\",\"add_to_day_hour_info\":\"false\",\"add_to_day_hour_body\":\"false\",\"translation\":\"Email\",\"value\":\"chemnet@msla.co.za\"},{\"id\":\"4\",\"is_email\":\"false\",\"add_to_day_hour_info\":\"false\",\"add_to_day_hour_body\":\"false\",\"translation\":\"Phone\",\"value\":\"0\"},{\"id\":\"5\",\"is_email\":\"false\",\"add_to_day_hour_info\":\"false\",\"add_to_day_hour_body\":\"false\",\"translation\":\"Message\",\"value\":\"\"}]', '', '', 'chemnet@msla.co.za', 'expired', 'none', 'pending', '', '', '2016-10-22 15:07:48', '', '', 'pinpoint', '2TJW0ZwXJ9a6us9LbNIvTNZqCevnu6UL@msla.co.za/lodge', ''),
(19, 1, 'en', '&#82;', 'ZAR', '2016-10-22', '2016-10-23', '', '', 1, 580, 595, 0, '[{\"group_id\":\"5\",\"group_translation\":\"Meals\",\"id\":\"12\",\"operation\":\"+\",\"price\":\"75\",\"price_by\":\"period\",\"price_type\":\"fixed\",\"translation\":\"Breakfast\",\"price_total\":\"75\"},{\"group_id\":\"6\",\"group_translation\":\"Services\",\"id\":\"18\",\"operation\":\"+\",\"price\":\"25\",\"price_by\":\"period\",\"price_type\":\"fixed\",\"translation\":\"Lodge Cleaning\",\"price_total\":\"25\"}]', 100, '{\"id\":\"1\",\"rule_id\":\"0\",\"operation\":\"-\",\"price\":\"85\",\"price_type\":\"fixed\",\"price_by\":\"period\",\"start_date\":\"\",\"end_date\":\"\",\"start_hour\":\"\",\"end_hour\":\"\",\"translation\":\"On-Line Special\"}', -85, '{\"id\":\"0\",\"code\":\"\",\"operation\":\"-\",\"price\":\"0\",\"price_type\":\"percent\",\"price_by\":\"once\",\"translation\":\"\"}', 0, '[{\"id\":\"1\",\"user_id\":\"1\",\"name\":\"VAT\",\"operation\":\"+\",\"price\":\"14\",\"price_type\":\"percent\",\"price_by\":\"once\",\"included\":\"true\",\"extras\":\"true\",\"cart\":\"true\",\"translation\":\"VAT\",\"price_total\":\"0\"}]', 0, '{\"price\":\"100\",\"price_type\":\"percent\"}', 595, '{\"2016-10-22\":{\"available\":\"10\",\"bind\":\"0\",\"price\":\"580\",\"promo\":\"0\",\"status\":\"available\"}}', '[{\"id\":\"1\",\"is_email\":\"false\",\"add_to_day_hour_info\":\"false\",\"add_to_day_hour_body\":\"false\",\"translation\":\"First name\",\"value\":\"a\"},{\"id\":\"2\",\"is_email\":\"false\",\"add_to_day_hour_info\":\"false\",\"add_to_day_hour_body\":\"false\",\"translation\":\"Last name\",\"value\":\"a\"},{\"id\":\"3\",\"is_email\":\"true\",\"add_to_day_hour_info\":\"false\",\"add_to_day_hour_body\":\"false\",\"translation\":\"Email\",\"value\":\"chemnet@msla.co.za\"},{\"id\":\"4\",\"is_email\":\"false\",\"add_to_day_hour_info\":\"false\",\"add_to_day_hour_body\":\"false\",\"translation\":\"Phone\",\"value\":\"0\"},{\"id\":\"5\",\"is_email\":\"false\",\"add_to_day_hour_info\":\"false\",\"add_to_day_hour_body\":\"false\",\"translation\":\"Message\",\"value\":\"\"}]', '', '', 'chemnet@msla.co.za', 'expired', 'none', 'pending', '', '', '2016-10-22 15:13:50', '', '', 'pinpoint', 'DV65CsxiAXVcv58iVp0cHXg6bKGgDz62@msla.co.za/lodge', ''),
(20, 1, 'en', '&#82;', 'ZAR', '2016-10-22', '2016-10-23', '', '', 1, 580, 595, 0, '[{\"group_id\":\"5\",\"group_translation\":\"Meals\",\"id\":\"12\",\"operation\":\"+\",\"price\":\"75\",\"price_by\":\"period\",\"price_type\":\"fixed\",\"translation\":\"Breakfast\",\"price_total\":\"75\"},{\"group_id\":\"6\",\"group_translation\":\"Services\",\"id\":\"18\",\"operation\":\"+\",\"price\":\"25\",\"price_by\":\"period\",\"price_type\":\"fixed\",\"translation\":\"Lodge Cleaning\",\"price_total\":\"25\"}]', 100, '{\"id\":\"1\",\"rule_id\":\"0\",\"operation\":\"-\",\"price\":\"85\",\"price_type\":\"fixed\",\"price_by\":\"period\",\"start_date\":\"\",\"end_date\":\"\",\"start_hour\":\"\",\"end_hour\":\"\",\"translation\":\"On-Line Special\"}', -85, '{\"id\":\"0\",\"code\":\"\",\"operation\":\"-\",\"price\":\"0\",\"price_type\":\"percent\",\"price_by\":\"once\",\"translation\":\"\"}', 0, '[{\"id\":\"1\",\"user_id\":\"1\",\"name\":\"VAT\",\"operation\":\"+\",\"price\":\"14\",\"price_type\":\"percent\",\"price_by\":\"once\",\"included\":\"true\",\"extras\":\"true\",\"cart\":\"true\",\"translation\":\"VAT\",\"price_total\":\"0\"}]', 0, '{\"price\":\"100\",\"price_type\":\"percent\"}', 595, '{\"2016-10-22\":{\"available\":\"10\",\"bind\":\"0\",\"price\":\"580\",\"promo\":\"0\",\"status\":\"available\"}}', '[{\"id\":\"1\",\"is_email\":\"false\",\"add_to_day_hour_info\":\"false\",\"add_to_day_hour_body\":\"false\",\"translation\":\"First name\",\"value\":\"a\"},{\"id\":\"2\",\"is_email\":\"false\",\"add_to_day_hour_info\":\"false\",\"add_to_day_hour_body\":\"false\",\"translation\":\"Last name\",\"value\":\"s\"},{\"id\":\"3\",\"is_email\":\"true\",\"add_to_day_hour_info\":\"false\",\"add_to_day_hour_body\":\"false\",\"translation\":\"Email\",\"value\":\"chemnet@msla.co.za\"},{\"id\":\"4\",\"is_email\":\"false\",\"add_to_day_hour_info\":\"false\",\"add_to_day_hour_body\":\"false\",\"translation\":\"Phone\",\"value\":\"0\"},{\"id\":\"5\",\"is_email\":\"false\",\"add_to_day_hour_info\":\"false\",\"add_to_day_hour_body\":\"false\",\"translation\":\"Message\",\"value\":\"\"}]', '', '', 'chemnet@msla.co.za', 'expired', 'none', 'pending', '', '', '2016-10-22 15:16:37', '', '', 'pinpoint', 'QiuoaG7wh7xbiAakz1F0IwlNrnANJCAq@msla.co.za/lodge', ''),
(22, 1, 'en', '&#82;', 'ZAR', '2016-10-27', '2016-10-28', '', '', 1, 580, 556.75, 0, '[{\"group_id\":\"5\",\"group_translation\":\"Meals\",\"id\":\"12\",\"operation\":\"+\",\"price\":\"75\",\"price_by\":\"period\",\"price_type\":\"fixed\",\"translation\":\"Breakfast\",\"price_total\":\"75\"}]', 75, '{\"id\":\"1\",\"rule_id\":\"0\",\"operation\":\"-\",\"price\":\"15\",\"price_type\":\"percent\",\"price_by\":\"once\",\"start_date\":\"\",\"end_date\":\"\",\"start_hour\":\"\",\"end_hour\":\"\",\"translation\":\"Book Now! Special\"}', -98.25, '{\"id\":\"0\",\"code\":\"\",\"operation\":\"-\",\"price\":\"0\",\"price_type\":\"percent\",\"price_by\":\"once\",\"translation\":\"\"}', 0, '[{\"id\":\"1\",\"user_id\":\"1\",\"name\":\"VAT\",\"operation\":\"+\",\"price\":\"14\",\"price_type\":\"percent\",\"price_by\":\"once\",\"included\":\"true\",\"extras\":\"true\",\"cart\":\"true\",\"translation\":\"VAT\",\"price_total\":\"0\"}]', 0, '{\"price\":\"50\",\"price_type\":\"percent\"}', 278.375, '{\"2016-10-27\":{\"available\":\"10\",\"bind\":\"0\",\"price\":\"580\",\"promo\":\"0\",\"status\":\"available\"}}', '[{\"id\":\"1\",\"is_email\":\"false\",\"add_to_day_hour_info\":\"false\",\"add_to_day_hour_body\":\"false\",\"translation\":\"First name\",\"value\":\"A\"},{\"id\":\"2\",\"is_email\":\"false\",\"add_to_day_hour_info\":\"false\",\"add_to_day_hour_body\":\"false\",\"translation\":\"Last name\",\"value\":\"S\"},{\"id\":\"3\",\"is_email\":\"true\",\"add_to_day_hour_info\":\"false\",\"add_to_day_hour_body\":\"false\",\"translation\":\"Email\",\"value\":\"CHEMNET@MSLA.CO.ZA\"},{\"id\":\"4\",\"is_email\":\"false\",\"add_to_day_hour_info\":\"false\",\"add_to_day_hour_body\":\"false\",\"translation\":\"Phone\",\"value\":\"0\"},{\"id\":\"5\",\"is_email\":\"false\",\"add_to_day_hour_info\":\"false\",\"add_to_day_hour_body\":\"false\",\"translation\":\"Message\",\"value\":\"\"}]', '', '', 'CHEMNET@MSLA.CO.ZA', 'expired', 'none', 'pending', '', '', '2016-10-23 15:58:09', '', '', 'pinpoint', 'tfqx7ROlFNToqiBmU0iVMz37TD9pFG74@msla.co.za/lodge', '');
INSERT INTO `wp_dopbsp_reservations` (`id`, `calendar_id`, `language`, `currency`, `currency_code`, `check_in`, `check_out`, `start_hour`, `end_hour`, `no_items`, `price`, `price_total`, `refund`, `extras`, `extras_price`, `discount`, `discount_price`, `coupon`, `coupon_price`, `fees`, `fees_price`, `deposit`, `deposit_price`, `days_hours_history`, `form`, `address_billing`, `address_shipping`, `email`, `status`, `payment_method`, `payment_status`, `transaction_id`, `token`, `date_created`, `phone`, `ip`, `reservation_from`, `uid`, `stripe_user`) VALUES
(23, 1, 'en', '&#82;', 'ZAR', '2016-10-25', '2016-10-30', '', '', 1, 2900, 2456.25, 0, '[{\"group_id\":\"5\",\"group_translation\":\"Meals\",\"id\":\"12\",\"operation\":\"+\",\"price\":\"75\",\"price_by\":\"period\",\"price_type\":\"fixed\",\"translation\":\"Breakfast\",\"price_total\":\"375\"}]', 375, '{\"id\":\"2\",\"rule_id\":\"0\",\"operation\":\"-\",\"price\":\"25\",\"price_type\":\"percent\",\"price_by\":\"once\",\"start_date\":\"\",\"end_date\":\"\",\"start_hour\":\"\",\"end_hour\":\"\",\"translation\":\"Long Stay Special\"}', -818.75, '{\"id\":\"0\",\"code\":\"\",\"operation\":\"-\",\"price\":\"0\",\"price_type\":\"percent\",\"price_by\":\"once\",\"translation\":\"\"}', 0, '[{\"id\":\"1\",\"user_id\":\"1\",\"name\":\"VAT\",\"operation\":\"+\",\"price\":\"14\",\"price_type\":\"percent\",\"price_by\":\"once\",\"included\":\"true\",\"extras\":\"true\",\"cart\":\"true\",\"translation\":\"VAT\",\"price_total\":\"0\"}]', 0, '{\"price\":\"50\",\"price_type\":\"percent\"}', 1228.12, '{\"2016-10-25\":{\"available\":\"10\",\"bind\":\"0\",\"price\":\"580\",\"promo\":\"0\",\"status\":\"available\"},\"2016-10-26\":{\"available\":\"10\",\"bind\":\"0\",\"price\":\"580\",\"promo\":\"0\",\"status\":\"available\"},\"2016-10-27\":{\"available\":\"10\",\"bind\":\"0\",\"price\":\"580\",\"promo\":\"0\",\"status\":\"available\"},\"2016-10-28\":{\"available\":\"10\",\"bind\":\"0\",\"price\":\"580\",\"promo\":\"0\",\"status\":\"available\"},\"2016-10-29\":{\"available\":\"10\",\"bind\":\"0\",\"price\":\"580\",\"promo\":\"0\",\"status\":\"available\"}}', '[{\"id\":\"1\",\"is_email\":\"false\",\"add_to_day_hour_info\":\"false\",\"add_to_day_hour_body\":\"false\",\"translation\":\"First name\",\"value\":\"A\"},{\"id\":\"2\",\"is_email\":\"false\",\"add_to_day_hour_info\":\"false\",\"add_to_day_hour_body\":\"false\",\"translation\":\"Last name\",\"value\":\"S\"},{\"id\":\"3\",\"is_email\":\"true\",\"add_to_day_hour_info\":\"false\",\"add_to_day_hour_body\":\"false\",\"translation\":\"Email\",\"value\":\"chemnet@msla.co.za\"},{\"id\":\"4\",\"is_email\":\"false\",\"add_to_day_hour_info\":\"false\",\"add_to_day_hour_body\":\"false\",\"translation\":\"Phone\",\"value\":\"0\"},{\"id\":\"5\",\"is_email\":\"false\",\"add_to_day_hour_info\":\"false\",\"add_to_day_hour_body\":\"false\",\"translation\":\"Message\",\"value\":\"\"}]', '', '', 'chemnet@msla.co.za', 'expired', 'none', 'pending', '', '', '2016-10-23 15:59:54', '', '', 'pinpoint', 'oXNB3wXMl4x86JT0LQdIwoxTZEsZK8J6@msla.co.za/lodge', ''),
(24, 1, 'en', '&#82;', 'ZAR', '2016-11-03', '2016-11-04', '', '', 1, 580, 493, 0, '', 0, '{\"id\":\"1\",\"rule_id\":\"0\",\"operation\":\"-\",\"price\":\"87\",\"price_type\":\"fixed\",\"price_by\":\"period\",\"start_date\":\"\",\"end_date\":\"\",\"start_hour\":\"\",\"end_hour\":\"\",\"translation\":\"Book Now! Special\"}', -87, '{\"id\":\"0\",\"code\":\"\",\"operation\":\"-\",\"price\":\"0\",\"price_type\":\"percent\",\"price_by\":\"once\",\"translation\":\"\"}', 0, '[{\"id\":\"1\",\"user_id\":\"1\",\"name\":\"VAT\",\"operation\":\"+\",\"price\":\"14\",\"price_type\":\"percent\",\"price_by\":\"once\",\"included\":\"true\",\"extras\":\"true\",\"cart\":\"true\",\"translation\":\"VAT\",\"price_total\":\"0\"}]', 0, '{\"price\":\"50\",\"price_type\":\"percent\"}', 246.5, '{\"2016-11-03\":{\"available\":\"10\",\"bind\":\"0\",\"price\":\"580\",\"promo\":\"0\",\"status\":\"available\"}}', '[{\"id\":\"1\",\"is_email\":\"false\",\"add_to_day_hour_info\":\"false\",\"add_to_day_hour_body\":\"false\",\"translation\":\"First name\",\"value\":\"sdf\"},{\"id\":\"2\",\"is_email\":\"false\",\"add_to_day_hour_info\":\"false\",\"add_to_day_hour_body\":\"false\",\"translation\":\"Last name\",\"value\":\"dfsf\"},{\"id\":\"3\",\"is_email\":\"true\",\"add_to_day_hour_info\":\"false\",\"add_to_day_hour_body\":\"false\",\"translation\":\"Email\",\"value\":\"chemnet@msla.co.za\"},{\"id\":\"4\",\"is_email\":\"false\",\"add_to_day_hour_info\":\"false\",\"add_to_day_hour_body\":\"false\",\"translation\":\"Phone\",\"value\":\"456546\"},{\"id\":\"5\",\"is_email\":\"false\",\"add_to_day_hour_info\":\"false\",\"add_to_day_hour_body\":\"false\",\"translation\":\"Message\",\"value\":\"\"}]', '', '', 'chemnet@msla.co.za', 'expired', 'none', 'pending', '', '', '2016-10-28 08:27:21', '', '', 'pinpoint', 'uPlzkV9uUDtLp8iDshTebzzS8IdpTLmP@msla.co.za/lodge', ''),
(25, 1, 'en', '&#82;', 'ZAR', '2016-11-03', '2016-11-04', '', '', 1, 580, 493, 0, '[{\"group_id\":\"8\",\"group_translation\":\"Child Under 2yrs\",\"id\":\"22\",\"operation\":\"+\",\"price\":\"0\",\"price_by\":\"once\",\"price_type\":\"fixed\",\"translation\":\"Own Cot & Bedding - Free\",\"price_total\":\"0\"}]', 0, '{\"id\":\"1\",\"rule_id\":\"0\",\"operation\":\"-\",\"price\":\"87\",\"price_type\":\"fixed\",\"price_by\":\"period\",\"start_date\":\"\",\"end_date\":\"\",\"start_hour\":\"\",\"end_hour\":\"\",\"translation\":\"Book Now! Special\"}', -87, '{\"id\":\"0\",\"code\":\"\",\"operation\":\"-\",\"price\":\"0\",\"price_type\":\"percent\",\"price_by\":\"once\",\"translation\":\"\"}', 0, '[{\"id\":\"1\",\"user_id\":\"1\",\"name\":\"VAT\",\"operation\":\"+\",\"price\":\"14\",\"price_type\":\"percent\",\"price_by\":\"once\",\"included\":\"true\",\"extras\":\"true\",\"cart\":\"true\",\"translation\":\"VAT\",\"price_total\":\"0\"}]', 0, '{\"price\":\"50\",\"price_type\":\"percent\"}', 246.5, '{\"2016-11-03\":{\"available\":\"10\",\"bind\":\"0\",\"price\":\"580\",\"promo\":\"0\",\"status\":\"available\"}}', '[{\"id\":\"1\",\"is_email\":\"false\",\"add_to_day_hour_info\":\"false\",\"add_to_day_hour_body\":\"false\",\"translation\":\"First name\",\"value\":\"a\"},{\"id\":\"2\",\"is_email\":\"false\",\"add_to_day_hour_info\":\"false\",\"add_to_day_hour_body\":\"false\",\"translation\":\"Last name\",\"value\":\"a\"},{\"id\":\"3\",\"is_email\":\"true\",\"add_to_day_hour_info\":\"false\",\"add_to_day_hour_body\":\"false\",\"translation\":\"Email\",\"value\":\"chemnet@msla.co.za\"},{\"id\":\"4\",\"is_email\":\"false\",\"add_to_day_hour_info\":\"false\",\"add_to_day_hour_body\":\"false\",\"translation\":\"Phone\",\"value\":\"0\"},{\"id\":\"5\",\"is_email\":\"false\",\"add_to_day_hour_info\":\"false\",\"add_to_day_hour_body\":\"false\",\"translation\":\"Message\",\"value\":\"\"}]', '', '', 'chemnet@msla.co.za', 'expired', 'none', 'pending', '', '', '2016-10-28 12:50:55', '', '', 'pinpoint', 'OR7eM7BKXr9LrPMLSGwwBixdyKCG1cm0@msla.co.za/lodge', ''),
(26, 1, 'en', '&#82;', 'ZAR', '2016-11-30', '2016-12-05', '', '', 2, 5800, 4350, 0, '', 0, '{\"id\":\"2\",\"rule_id\":\"0\",\"operation\":\"-\",\"price\":\"145\",\"price_type\":\"fixed\",\"price_by\":\"period\",\"start_date\":\"\",\"end_date\":\"\",\"start_hour\":\"\",\"end_hour\":\"\",\"translation\":\"Long Stay Special\"}', -1450, '{\"id\":\"0\",\"code\":\"\",\"operation\":\"-\",\"price\":\"0\",\"price_type\":\"percent\",\"price_by\":\"once\",\"translation\":\"\"}', 0, '[{\"id\":\"1\",\"user_id\":\"1\",\"name\":\"VAT\",\"operation\":\"+\",\"price\":\"14\",\"price_type\":\"percent\",\"price_by\":\"once\",\"included\":\"true\",\"extras\":\"true\",\"cart\":\"true\",\"translation\":\"VAT\",\"price_total\":\"0\"}]', 0, '{\"price\":\"50\",\"price_type\":\"percent\"}', 2175, '{\"2016-11-30\":{\"available\":\"10\",\"bind\":\"0\",\"price\":\"580\",\"promo\":\"0\",\"status\":\"available\"},\"2016-12-01\":{\"available\":\"10\",\"bind\":\"0\",\"price\":\"580\",\"promo\":\"0\",\"status\":\"available\"},\"2016-12-02\":{\"available\":\"10\",\"bind\":\"0\",\"price\":\"580\",\"promo\":\"0\",\"status\":\"available\"},\"2016-12-03\":{\"available\":\"10\",\"bind\":\"0\",\"price\":\"580\",\"promo\":\"0\",\"status\":\"available\"},\"2016-12-04\":{\"available\":\"10\",\"bind\":\"0\",\"price\":\"580\",\"promo\":\"0\",\"status\":\"available\"}}', '[{\"id\":\"1\",\"is_email\":\"false\",\"add_to_day_hour_info\":\"false\",\"add_to_day_hour_body\":\"false\",\"translation\":\"First name\",\"value\":\"Kimberley\"},{\"id\":\"2\",\"is_email\":\"false\",\"add_to_day_hour_info\":\"false\",\"add_to_day_hour_body\":\"false\",\"translation\":\"Last name\",\"value\":\"Stuart\"},{\"id\":\"3\",\"is_email\":\"true\",\"add_to_day_hour_info\":\"false\",\"add_to_day_hour_body\":\"false\",\"translation\":\"Email\",\"value\":\"kimberleystuart0@gmail.com\"},{\"id\":\"4\",\"is_email\":\"false\",\"add_to_day_hour_info\":\"false\",\"add_to_day_hour_body\":\"false\",\"translation\":\"Phone\",\"value\":\"0815664333\"},{\"id\":\"5\",\"is_email\":\"false\",\"add_to_day_hour_info\":\"false\",\"add_to_day_hour_body\":\"false\",\"translation\":\"Message\",\"value\":\"\"}]', '', '', 'kimberleystuart0@gmail.com', 'expired', 'none', 'pending', '', '', '2016-10-31 13:28:38', '', '', 'pinpoint', 'RUgMLAowctSqHM2cSXDZlsNNpA5bxNdt@msla.co.za/lodge', ''),
(28, 1, 'en', '&#82;', 'ZAR', '2016-11-18', '2016-11-19', '', '', 10, 5800, 5680, 0, '[{\"group_id\":\"5\",\"group_translation\":\"Meals\",\"id\":\"12\",\"operation\":\"+\",\"price\":\"75\",\"price_by\":\"period\",\"price_type\":\"fixed\",\"no_items_multiply\":\"true\",\"translation\":\"Breakfast\",\"price_total\":\"750\"}]', 750, '{\"id\":\"1\",\"rule_id\":\"0\",\"operation\":\"-\",\"price\":\"87\",\"price_type\":\"fixed\",\"price_by\":\"period\",\"start_date\":\"\",\"end_date\":\"\",\"start_hour\":\"\",\"end_hour\":\"\",\"translation\":\"Book Now! Special\"}', -870, '{\"id\":\"0\",\"code\":\"\",\"operation\":\"-\",\"price\":\"0\",\"price_type\":\"percent\",\"price_by\":\"once\",\"translation\":\"\"}', 0, '[{\"id\":\"1\",\"user_id\":\"1\",\"name\":\"VAT\",\"operation\":\"+\",\"price\":\"14\",\"price_type\":\"percent\",\"price_by\":\"once\",\"included\":\"true\",\"extras\":\"true\",\"cart\":\"true\",\"translation\":\"VAT\",\"price_total\":\"0\"}]', 0, '{\"price\":\"50\",\"price_type\":\"percent\"}', 2840, '{\"2016-11-18\":{\"available\":\"10\",\"bind\":\"0\",\"price\":\"580\",\"promo\":\"0\",\"status\":\"available\"}}', '[{\"id\":\"1\",\"is_email\":\"false\",\"add_to_day_hour_info\":\"false\",\"add_to_day_hour_body\":\"false\",\"translation\":\"First name\",\"value\":\"Brian\"},{\"id\":\"2\",\"is_email\":\"false\",\"add_to_day_hour_info\":\"false\",\"add_to_day_hour_body\":\"false\",\"translation\":\"Last name\",\"value\":\"McMillan\"},{\"id\":\"3\",\"is_email\":\"true\",\"add_to_day_hour_info\":\"false\",\"add_to_day_hour_body\":\"false\",\"translation\":\"Email\",\"value\":\"bmcmillan@investec.co.za\"},{\"id\":\"4\",\"is_email\":\"false\",\"add_to_day_hour_info\":\"false\",\"add_to_day_hour_body\":\"false\",\"translation\":\"Phone\",\"value\":\"0834080888\"},{\"id\":\"5\",\"is_email\":\"false\",\"add_to_day_hour_info\":\"false\",\"add_to_day_hour_body\":\"false\",\"translation\":\"Message\",\"value\":\"\"}]', '', '', 'bmcmillan@investec.co.za', 'expired', 'none', 'pending', '', '', '2016-11-14 11:05:28', '', '', 'pinpoint', 'vQvO7CmkmdANzOM2He0EQ703x1tUJdxV@msla.co.za/lodge', ''),
(29, 1, 'en', '&#82;', 'ZAR', '2017-03-25', '2017-03-26', '', '', 2, 1160, 986, 0, '', 0, '{\"id\":\"1\",\"rule_id\":\"0\",\"operation\":\"-\",\"price\":\"87\",\"price_type\":\"fixed\",\"price_by\":\"period\",\"start_date\":\"\",\"end_date\":\"\",\"start_hour\":\"\",\"end_hour\":\"\",\"translation\":\"Book Now! Special\"}', -174, '{\"id\":\"0\",\"code\":\"\",\"operation\":\"-\",\"price\":\"0\",\"price_type\":\"percent\",\"price_by\":\"once\",\"translation\":\"\"}', 0, '[{\"id\":\"1\",\"user_id\":\"1\",\"name\":\"VAT\",\"operation\":\"+\",\"price\":\"14\",\"price_type\":\"percent\",\"price_by\":\"once\",\"included\":\"true\",\"extras\":\"true\",\"cart\":\"true\",\"translation\":\"VAT\",\"price_total\":\"0\"}]', 0, '{\"price\":\"0\",\"price_type\":\"percent\"}', 0, '{\"2017-03-25\":{\"available\":\"10\",\"bind\":\"0\",\"price\":\"580\",\"promo\":\"0\",\"status\":\"available\"}}', '[{\"id\":\"1\",\"is_email\":\"false\",\"is_phone\":\"false\",\"add_to_day_hour_info\":\"false\",\"add_to_day_hour_body\":\"false\",\"translation\":\"First name\",\"value\":\"Thomas\"},{\"id\":\"2\",\"is_email\":\"false\",\"is_phone\":\"false\",\"add_to_day_hour_info\":\"false\",\"add_to_day_hour_body\":\"false\",\"translation\":\"Last name\",\"value\":\"Louw\"},{\"id\":\"3\",\"is_email\":\"true\",\"is_phone\":\"false\",\"add_to_day_hour_info\":\"false\",\"add_to_day_hour_body\":\"false\",\"translation\":\"Email\",\"value\":\"barefeetvideo@gmail.com\"},{\"id\":\"4\",\"is_email\":\"false\",\"is_phone\":\"false\",\"add_to_day_hour_info\":\"false\",\"add_to_day_hour_body\":\"false\",\"translation\":\"Phone\",\"value\":\"0823027590\"},{\"id\":\"5\",\"is_email\":\"false\",\"is_phone\":\"false\",\"add_to_day_hour_info\":\"false\",\"add_to_day_hour_body\":\"false\",\"translation\":\"Message\",\"value\":\"Hi there, please could I request a room with two single beds\"}]', '', '', 'barefeetvideo@gmail.com', 'expired', 'none', 'pending', '', '', '2017-03-20 09:20:41', '', '169.255.219.165', 'pinpoint', 'm2OJVSVEZG4xVZFCZZxL6sPDSF4OZMcg@msla.co.za/lodge', ''),
(30, 1, 'en', '&#82;', 'ZAR', '2017-06-14', '2017-06-18', '', '', 3, 6960, 5220, 0, '', 0, '{\"id\":\"2\",\"rule_id\":\"0\",\"operation\":\"-\",\"price\":\"145\",\"price_type\":\"fixed\",\"price_by\":\"period\",\"start_date\":\"\",\"end_date\":\"\",\"start_hour\":\"\",\"end_hour\":\"\",\"translation\":\"Long Stay Special\"}', -1740, '{\"id\":\"0\",\"code\":\"\",\"operation\":\"-\",\"price\":\"0\",\"price_type\":\"percent\",\"price_by\":\"once\",\"translation\":\"\"}', 0, '[{\"id\":\"1\",\"user_id\":\"1\",\"name\":\"VAT\",\"operation\":\"+\",\"price\":\"14\",\"price_type\":\"percent\",\"price_by\":\"once\",\"included\":\"true\",\"extras\":\"true\",\"cart\":\"true\",\"translation\":\"VAT\",\"price_total\":\"0\"}]', 0, '{\"price\":\"50\",\"price_type\":\"percent\"}', 2610, '{\"2017-06-14\":{\"available\":\"10\",\"bind\":\"0\",\"price\":\"580\",\"promo\":\"0\",\"status\":\"available\"},\"2017-06-15\":{\"available\":\"10\",\"bind\":\"0\",\"price\":\"580\",\"promo\":\"0\",\"status\":\"available\"},\"2017-06-16\":{\"available\":\"10\",\"bind\":\"0\",\"price\":\"580\",\"promo\":\"0\",\"status\":\"available\"},\"2017-06-17\":{\"available\":\"10\",\"bind\":\"0\",\"price\":\"580\",\"promo\":\"0\",\"status\":\"available\"}}', '[{\"id\":\"1\",\"is_email\":\"false\",\"is_phone\":\"false\",\"add_to_day_hour_info\":\"false\",\"add_to_day_hour_body\":\"false\",\"translation\":\"First name\",\"value\":\"Paul \"},{\"id\":\"2\",\"is_email\":\"false\",\"is_phone\":\"false\",\"add_to_day_hour_info\":\"false\",\"add_to_day_hour_body\":\"false\",\"translation\":\"Last name\",\"value\":\"Kent\"},{\"id\":\"3\",\"is_email\":\"true\",\"is_phone\":\"false\",\"add_to_day_hour_info\":\"false\",\"add_to_day_hour_body\":\"false\",\"translation\":\"Email\",\"value\":\"paul@sureswipe.co.za\"},{\"id\":\"4\",\"is_email\":\"false\",\"is_phone\":\"false\",\"add_to_day_hour_info\":\"false\",\"add_to_day_hour_body\":\"false\",\"translation\":\"Phone\",\"value\":\"0829080222\"},{\"id\":\"5\",\"is_email\":\"false\",\"is_phone\":\"false\",\"add_to_day_hour_info\":\"false\",\"add_to_day_hour_body\":\"false\",\"translation\":\"Message\",\"value\":\"Please confirm availability of full lodge. we will be traveling with 3 adults and 2 kids (1 year old and 4 year old). Regards\\n\"}]', '', '', 'paul@sureswipe.co.za', 'expired', 'none', 'pending', '', '', '2017-05-30 19:32:07', '', '154.0.6.86', 'pinpoint', 'WcBi0NKhqSHuyfe3clrKlQXxsWfpR7fR@msla.co.za/lodge', ''),
(31, 1, 'en', '&#82;', 'ZAR', '2017-08-08', '2017-08-14', '', '', 5, 17400, 13050, 0, '[{\"group_id\":\"8\",\"group_translation\":\"Child Under 2yrs\",\"id\":\"22\",\"operation\":\"+\",\"price\":\"0\",\"price_by\":\"once\",\"price_type\":\"fixed\",\"no_items_multiply\":\"true\",\"translation\":\"Own Cot & Bedding - Free\",\"price_total\":\"0\"}]', 0, '{\"id\":\"2\",\"rule_id\":\"0\",\"operation\":\"-\",\"price\":\"145\",\"price_type\":\"fixed\",\"price_by\":\"period\",\"start_date\":\"\",\"end_date\":\"\",\"start_hour\":\"\",\"end_hour\":\"\",\"translation\":\"Long Stay Special\"}', -4350, '{\"id\":\"0\",\"code\":\"\",\"operation\":\"-\",\"price\":\"0\",\"price_type\":\"percent\",\"price_by\":\"once\",\"translation\":\"\"}', 0, '[{\"id\":\"1\",\"user_id\":\"1\",\"name\":\"VAT\",\"operation\":\"+\",\"price\":\"14\",\"price_type\":\"percent\",\"price_by\":\"once\",\"included\":\"true\",\"extras\":\"true\",\"cart\":\"true\",\"translation\":\"VAT\",\"price_total\":\"0\"}]', 0, '{\"price\":\"0\",\"price_type\":\"percent\"}', 0, '{\"2017-08-08\":{\"available\":\"10\",\"bind\":\"0\",\"price\":\"580\",\"promo\":\"0\",\"status\":\"available\"},\"2017-08-09\":{\"available\":\"10\",\"bind\":\"0\",\"price\":\"580\",\"promo\":\"0\",\"status\":\"available\"},\"2017-08-10\":{\"available\":\"10\",\"bind\":\"0\",\"price\":\"580\",\"promo\":\"0\",\"status\":\"available\"},\"2017-08-11\":{\"available\":\"10\",\"bind\":\"0\",\"price\":\"580\",\"promo\":\"0\",\"status\":\"available\"},\"2017-08-12\":{\"available\":\"10\",\"bind\":\"0\",\"price\":\"580\",\"promo\":\"0\",\"status\":\"available\"},\"2017-08-13\":{\"available\":\"10\",\"bind\":\"0\",\"price\":\"580\",\"promo\":\"0\",\"status\":\"available\"}}', '[{\"id\":\"1\",\"is_email\":\"false\",\"is_phone\":\"false\",\"add_to_day_hour_info\":\"false\",\"add_to_day_hour_body\":\"false\",\"translation\":\"First name\",\"value\":\"Tamar\"},{\"id\":\"2\",\"is_email\":\"false\",\"is_phone\":\"false\",\"add_to_day_hour_info\":\"false\",\"add_to_day_hour_body\":\"false\",\"translation\":\"Last name\",\"value\":\"Gliksman\"},{\"id\":\"3\",\"is_email\":\"true\",\"is_phone\":\"false\",\"add_to_day_hour_info\":\"false\",\"add_to_day_hour_body\":\"false\",\"translation\":\"Email\",\"value\":\"riley.marais@gmail.com\"},{\"id\":\"4\",\"is_email\":\"false\",\"is_phone\":\"false\",\"add_to_day_hour_info\":\"false\",\"add_to_day_hour_body\":\"false\",\"translation\":\"Phone\",\"value\":\"0718764111\"},{\"id\":\"5\",\"is_email\":\"false\",\"is_phone\":\"false\",\"add_to_day_hour_info\":\"false\",\"add_to_day_hour_body\":\"false\",\"translation\":\"Message\",\"value\":\"Hi there, i would like to make this booking for 5 people and 2 infants. \\\\n\\\\n\"}]', '', '', 'riley.marais@gmail.com', 'expired', 'none', 'pending', '', '', '2017-06-26 12:10:57', '', '196.212.61.168', 'pinpoint', 'v1wTx9BVVClLCL6p9pIXcLPgTNUNJ4KN@msla.co.za/lodge', ''),
(32, 1, 'en', '&#82;', 'ZAR', '2017-08-08', '2017-08-14', '', '', 4, 13920, 11640, 0, '[{\"group_id\":\"6\",\"group_translation\":\"Services\",\"id\":\"18\",\"operation\":\"+\",\"price\":\"25\",\"price_by\":\"period\",\"price_type\":\"fixed\",\"no_items_multiply\":\"true\",\"translation\":\"Lodge Cleaning\",\"price_total\":\"600\"},{\"group_id\":\"6\",\"group_translation\":\"Services\",\"id\":\"17\",\"operation\":\"+\",\"price\":\"25\",\"price_by\":\"period\",\"price_type\":\"fixed\",\"no_items_multiply\":\"true\",\"translation\":\"Room Cleaning\",\"price_total\":\"600\"},{\"group_id\":\"8\",\"group_translation\":\"Child Under 2yrs\",\"id\":\"22\",\"operation\":\"+\",\"price\":\"0\",\"price_by\":\"once\",\"price_type\":\"fixed\",\"no_items_multiply\":\"true\",\"translation\":\"Own Cot & Bedding - Free\",\"price_total\":\"0\"}]', 1200, '{\"id\":\"2\",\"rule_id\":\"0\",\"operation\":\"-\",\"price\":\"145\",\"price_type\":\"fixed\",\"price_by\":\"period\",\"start_date\":\"\",\"end_date\":\"\",\"start_hour\":\"\",\"end_hour\":\"\",\"translation\":\"Long Stay Special\"}', -3480, '{\"id\":\"0\",\"code\":\"\",\"operation\":\"-\",\"price\":\"0\",\"price_type\":\"percent\",\"price_by\":\"once\",\"translation\":\"\"}', 0, '[{\"id\":\"1\",\"user_id\":\"1\",\"name\":\"VAT\",\"operation\":\"+\",\"price\":\"14\",\"price_type\":\"percent\",\"price_by\":\"once\",\"included\":\"true\",\"extras\":\"true\",\"cart\":\"true\",\"translation\":\"VAT\",\"price_total\":\"0\"}]', 0, '{\"price\":\"0\",\"price_type\":\"percent\"}', 0, '{\"2017-08-08\":{\"available\":\"10\",\"bind\":\"0\",\"price\":\"580\",\"promo\":\"0\",\"status\":\"available\"},\"2017-08-09\":{\"available\":\"10\",\"bind\":\"0\",\"price\":\"580\",\"promo\":\"0\",\"status\":\"available\"},\"2017-08-10\":{\"available\":\"10\",\"bind\":\"0\",\"price\":\"580\",\"promo\":\"0\",\"status\":\"available\"},\"2017-08-11\":{\"available\":\"10\",\"bind\":\"0\",\"price\":\"580\",\"promo\":\"0\",\"status\":\"available\"},\"2017-08-12\":{\"available\":\"10\",\"bind\":\"0\",\"price\":\"580\",\"promo\":\"0\",\"status\":\"available\"},\"2017-08-13\":{\"available\":\"10\",\"bind\":\"0\",\"price\":\"580\",\"promo\":\"0\",\"status\":\"available\"}}', '[{\"id\":\"1\",\"is_email\":\"false\",\"is_phone\":\"false\",\"add_to_day_hour_info\":\"false\",\"add_to_day_hour_body\":\"false\",\"translation\":\"First name\",\"value\":\"Tamar\"},{\"id\":\"2\",\"is_email\":\"false\",\"is_phone\":\"false\",\"add_to_day_hour_info\":\"false\",\"add_to_day_hour_body\":\"false\",\"translation\":\"Last name\",\"value\":\"Gliksman\"},{\"id\":\"3\",\"is_email\":\"true\",\"is_phone\":\"false\",\"add_to_day_hour_info\":\"false\",\"add_to_day_hour_body\":\"false\",\"translation\":\"Email\",\"value\":\"riley.marais@gmail.com\"},{\"id\":\"4\",\"is_email\":\"false\",\"is_phone\":\"false\",\"add_to_day_hour_info\":\"false\",\"add_to_day_hour_body\":\"false\",\"translation\":\"Phone\",\"value\":\"0718764111\"},{\"id\":\"5\",\"is_email\":\"false\",\"is_phone\":\"false\",\"add_to_day_hour_info\":\"false\",\"add_to_day_hour_body\":\"false\",\"translation\":\"Message\",\"value\":\"Hi there, i would like to make this booking for 4 people and 2 infants. \\n \\nAn extra person may be added, would that be ok?\\n\"}]', '', '', 'riley.marais@gmail.com', 'expired', 'none', 'pending', '', '', '2017-06-26 12:22:30', '', '196.212.61.168', 'pinpoint', 'HLL0vvxGDJPwwz9CSb63XrOaHTTI7o3T@msla.co.za/lodge', ''),
(33, 1, 'en', '&#82;', 'ZAR', '2017-07-06', '2017-07-12', '', '', 1, 3480, 2610, 0, '', 0, '{\"id\":\"2\",\"rule_id\":\"0\",\"operation\":\"-\",\"price\":\"145\",\"price_type\":\"fixed\",\"price_by\":\"period\",\"start_date\":\"\",\"end_date\":\"\",\"start_hour\":\"\",\"end_hour\":\"\",\"translation\":\"Long Stay Special\"}', -870, '{\"id\":\"0\",\"code\":\"\",\"operation\":\"-\",\"price\":\"0\",\"price_type\":\"percent\",\"price_by\":\"once\",\"translation\":\"\"}', 0, '[{\"id\":\"1\",\"user_id\":\"1\",\"name\":\"VAT\",\"operation\":\"+\",\"price\":\"14\",\"price_type\":\"percent\",\"price_by\":\"once\",\"included\":\"true\",\"extras\":\"true\",\"cart\":\"true\",\"translation\":\"VAT\",\"price_total\":\"0\"}]', 0, '{\"price\":\"0\",\"price_type\":\"percent\"}', 0, '{\"2017-07-06\":{\"available\":\"10\",\"bind\":\"0\",\"price\":\"580\",\"promo\":\"0\",\"status\":\"available\"},\"2017-07-07\":{\"available\":\"10\",\"bind\":\"0\",\"price\":\"580\",\"promo\":\"0\",\"status\":\"available\"},\"2017-07-08\":{\"available\":\"10\",\"bind\":\"0\",\"price\":\"580\",\"promo\":\"0\",\"status\":\"available\"},\"2017-07-09\":{\"available\":\"10\",\"bind\":\"0\",\"price\":\"580\",\"promo\":\"0\",\"status\":\"available\"},\"2017-07-10\":{\"available\":\"10\",\"bind\":\"0\",\"price\":\"580\",\"promo\":\"0\",\"status\":\"available\"},\"2017-07-11\":{\"available\":\"10\",\"bind\":\"0\",\"price\":\"580\",\"promo\":\"0\",\"status\":\"available\"}}', '[{\"id\":\"1\",\"is_email\":\"false\",\"is_phone\":\"false\",\"add_to_day_hour_info\":\"false\",\"add_to_day_hour_body\":\"false\",\"translation\":\"First name\",\"value\":\"Cecily\"},{\"id\":\"2\",\"is_email\":\"false\",\"is_phone\":\"false\",\"add_to_day_hour_info\":\"false\",\"add_to_day_hour_body\":\"false\",\"translation\":\"Last name\",\"value\":\"Madison\"},{\"id\":\"3\",\"is_email\":\"true\",\"is_phone\":\"false\",\"add_to_day_hour_info\":\"false\",\"add_to_day_hour_body\":\"false\",\"translation\":\"Email\",\"value\":\"cecily.madison@gmail.com\"},{\"id\":\"4\",\"is_email\":\"false\",\"is_phone\":\"false\",\"add_to_day_hour_info\":\"false\",\"add_to_day_hour_body\":\"false\",\"translation\":\"Phone\",\"value\":\"0827853956\"},{\"id\":\"5\",\"is_email\":\"false\",\"is_phone\":\"false\",\"add_to_day_hour_info\":\"false\",\"add_to_day_hour_body\":\"false\",\"translation\":\"Message\",\"value\":\"Hi Lance.  My husband, Shaun has stayed at your lodge before and has highly recommended it\"}]', '', '', 'cecily.madison@gmail.com', 'expired', 'none', 'pending', '', '', '2017-06-30 16:27:21', '', '197.88.64.187', 'pinpoint', 'yn5MZ7PSJ9zzuypNiozwQsJftxzgITTH@msla.co.za/lodge', ''),
(34, 1, 'en', '&#82;', 'ZAR', '2017-07-13', '2017-07-15', '', '', 1, 1160, 986, 0, '', 0, '{\"id\":\"1\",\"rule_id\":\"0\",\"operation\":\"-\",\"price\":\"87\",\"price_type\":\"fixed\",\"price_by\":\"period\",\"start_date\":\"\",\"end_date\":\"\",\"start_hour\":\"\",\"end_hour\":\"\",\"translation\":\"Book Now! Special\"}', -174, '{\"id\":\"0\",\"code\":\"\",\"operation\":\"-\",\"price\":\"0\",\"price_type\":\"percent\",\"price_by\":\"once\",\"translation\":\"\"}', 0, '[{\"id\":\"1\",\"user_id\":\"1\",\"name\":\"VAT\",\"operation\":\"+\",\"price\":\"14\",\"price_type\":\"percent\",\"price_by\":\"once\",\"included\":\"true\",\"extras\":\"true\",\"cart\":\"true\",\"translation\":\"VAT\",\"price_total\":\"0\"}]', 0, '{\"price\":\"0\",\"price_type\":\"percent\"}', 0, '{\"2017-07-13\":{\"available\":\"10\",\"bind\":\"0\",\"price\":\"580\",\"promo\":\"0\",\"status\":\"available\"},\"2017-07-14\":{\"available\":\"10\",\"bind\":\"0\",\"price\":\"580\",\"promo\":\"0\",\"status\":\"available\"}}', '[{\"id\":\"1\",\"is_email\":\"false\",\"is_phone\":\"false\",\"add_to_day_hour_info\":\"false\",\"add_to_day_hour_body\":\"false\",\"translation\":\"First name\",\"value\":\"lasd\"},{\"id\":\"2\",\"is_email\":\"false\",\"is_phone\":\"false\",\"add_to_day_hour_info\":\"false\",\"add_to_day_hour_body\":\"false\",\"translation\":\"Last name\",\"value\":\"sadfasd\"},{\"id\":\"3\",\"is_email\":\"true\",\"is_phone\":\"false\",\"add_to_day_hour_info\":\"false\",\"add_to_day_hour_body\":\"false\",\"translation\":\"Email\",\"value\":\"sda@dfsdf.com\"},{\"id\":\"4\",\"is_email\":\"false\",\"is_phone\":\"false\",\"add_to_day_hour_info\":\"false\",\"add_to_day_hour_body\":\"false\",\"translation\":\"Phone\",\"value\":\"34534553454\"},{\"id\":\"5\",\"is_email\":\"false\",\"is_phone\":\"false\",\"add_to_day_hour_info\":\"false\",\"add_to_day_hour_body\":\"false\",\"translation\":\"Message\",\"value\":\"rewwer\"}]', '', '', 'sda@dfsdf.com', 'expired', 'none', 'pending', '', '', '2017-07-04 12:52:57', '', '197.89.98.160', 'pinpoint', 'VP9XO7RW7mq0Z5yWkoUyxFeTwq4aZdxG@msla.co.za/lodge', ''),
(35, 1, 'en', '&#82;', 'ZAR', '2017-08-07', '2017-08-09', '', '', 4, 4640, 3944, 0, '', 0, '{\"id\":\"1\",\"rule_id\":\"0\",\"operation\":\"-\",\"price\":\"87\",\"price_type\":\"fixed\",\"price_by\":\"period\",\"start_date\":\"\",\"end_date\":\"\",\"start_hour\":\"\",\"end_hour\":\"\",\"translation\":\"Book Now! Special\"}', -696, '{\"id\":\"0\",\"code\":\"\",\"operation\":\"-\",\"price\":\"0\",\"price_type\":\"percent\",\"price_by\":\"once\",\"translation\":\"\"}', 0, '[{\"id\":\"1\",\"user_id\":\"1\",\"name\":\"VAT\",\"operation\":\"+\",\"price\":\"14\",\"price_type\":\"percent\",\"price_by\":\"once\",\"included\":\"true\",\"extras\":\"true\",\"cart\":\"true\",\"translation\":\"VAT\",\"price_total\":\"0\"}]', 0, '{\"price\":\"50\",\"price_type\":\"percent\"}', 1972, '{\"2017-08-07\":{\"available\":\"10\",\"bind\":\"0\",\"price\":\"580\",\"promo\":\"0\",\"status\":\"available\"},\"2017-08-08\":{\"available\":\"10\",\"bind\":\"0\",\"price\":\"580\",\"promo\":\"0\",\"status\":\"available\"}}', '[{\"id\":\"1\",\"is_email\":\"false\",\"is_phone\":\"false\",\"add_to_day_hour_info\":\"false\",\"add_to_day_hour_body\":\"false\",\"translation\":\"First name\",\"value\":\"Coralie\"},{\"id\":\"2\",\"is_email\":\"false\",\"is_phone\":\"false\",\"add_to_day_hour_info\":\"false\",\"add_to_day_hour_body\":\"false\",\"translation\":\"Last name\",\"value\":\"Robert\"},{\"id\":\"3\",\"is_email\":\"true\",\"is_phone\":\"false\",\"add_to_day_hour_info\":\"false\",\"add_to_day_hour_body\":\"false\",\"translation\":\"Email\",\"value\":\"coraliemonique@gmail.com\"},{\"id\":\"4\",\"is_email\":\"false\",\"is_phone\":\"false\",\"add_to_day_hour_info\":\"false\",\"add_to_day_hour_body\":\"false\",\"translation\":\"Phone\",\"value\":\"0837768102\"},{\"id\":\"5\",\"is_email\":\"false\",\"is_phone\":\"false\",\"add_to_day_hour_info\":\"false\",\"add_to_day_hour_body\":\"false\",\"translation\":\"Message\",\"value\":\"Hi, looking for 3 rooms for 7th August - 2 singles & 1 couple.\\nAnd we\\\\\'re needing 4 rooms for 8th August please. 2 x singles & 2 x couples. Thanks!\"}]', '', '', 'coraliemonique@gmail.com', 'expired', 'none', 'pending', '', '', '2017-07-06 04:55:04', '', '105.253.116.5', 'pinpoint', 'qndu7BPITvJF6wyV3vKxDmkxO8enis33@msla.co.za/lodge', ''),
(36, 1, 'en', '&#82;', 'ZAR', '2017-10-17', '2017-10-22', '', '', 6, 17400, 13050, 0, '', 0, '{\"id\":\"2\",\"rule_id\":\"0\",\"operation\":\"-\",\"price\":\"145\",\"price_type\":\"fixed\",\"price_by\":\"period\",\"start_date\":\"\",\"end_date\":\"\",\"start_hour\":\"\",\"end_hour\":\"\",\"translation\":\"Long Stay Special\"}', -4350, '{\"id\":\"0\",\"code\":\"\",\"operation\":\"-\",\"price\":\"0\",\"price_type\":\"percent\",\"price_by\":\"once\",\"translation\":\"\"}', 0, '[{\"id\":\"1\",\"user_id\":\"1\",\"name\":\"VAT\",\"operation\":\"+\",\"price\":\"14\",\"price_type\":\"percent\",\"price_by\":\"once\",\"included\":\"true\",\"extras\":\"true\",\"cart\":\"true\",\"translation\":\"VAT\",\"price_total\":\"0\"}]', 0, '{\"price\":\"0\",\"price_type\":\"percent\"}', 0, '{\"2017-10-17\":{\"available\":\"10\",\"bind\":\"0\",\"price\":\"580\",\"promo\":\"0\",\"status\":\"available\"},\"2017-10-18\":{\"available\":\"10\",\"bind\":\"0\",\"price\":\"580\",\"promo\":\"0\",\"status\":\"available\"},\"2017-10-19\":{\"available\":\"10\",\"bind\":\"0\",\"price\":\"580\",\"promo\":\"0\",\"status\":\"available\"},\"2017-10-20\":{\"available\":\"10\",\"bind\":\"0\",\"price\":\"580\",\"promo\":\"0\",\"status\":\"available\"},\"2017-10-21\":{\"available\":\"10\",\"bind\":\"0\",\"price\":\"580\",\"promo\":\"0\",\"status\":\"available\"}}', '[{\"id\":\"1\",\"is_email\":\"false\",\"is_phone\":\"false\",\"add_to_day_hour_info\":\"false\",\"add_to_day_hour_body\":\"false\",\"translation\":\"First name\",\"value\":\"Colin\"},{\"id\":\"2\",\"is_email\":\"false\",\"is_phone\":\"false\",\"add_to_day_hour_info\":\"false\",\"add_to_day_hour_body\":\"false\",\"translation\":\"Last name\",\"value\":\"Forrest\"},{\"id\":\"3\",\"is_email\":\"true\",\"is_phone\":\"false\",\"add_to_day_hour_info\":\"false\",\"add_to_day_hour_body\":\"false\",\"translation\":\"Email\",\"value\":\"info@msla.co.za\"},{\"id\":\"4\",\"is_email\":\"false\",\"is_phone\":\"false\",\"add_to_day_hour_info\":\"false\",\"add_to_day_hour_body\":\"false\",\"translation\":\"Phone\",\"value\":\"0828779900\"},{\"id\":\"5\",\"is_email\":\"false\",\"is_phone\":\"false\",\"add_to_day_hour_info\":\"false\",\"add_to_day_hour_body\":\"false\",\"translation\":\"Message\",\"value\":\"\"}]', '', '', 'info@msla.co.za', 'expired', 'none', 'pending', '', '', '2017-09-18 08:32:54', '', '197.89.204.152', 'pinpoint', 'T7WRX76ax1up8pVsBQ0BvUQShcceRR35@msla.co.za/lodge', ''),
(37, 1, 'en', '&#82;', 'ZAR', '2017-12-16', '2017-12-18', '', '', 4, 4640, 3944, 0, '', 0, '{\"id\":\"1\",\"rule_id\":\"0\",\"operation\":\"-\",\"price\":\"87\",\"price_type\":\"fixed\",\"price_by\":\"period\",\"start_date\":\"\",\"end_date\":\"\",\"start_hour\":\"\",\"end_hour\":\"\",\"translation\":\"Book Now! Special\"}', -696, '{\"id\":\"0\",\"code\":\"\",\"operation\":\"-\",\"price\":\"0\",\"price_type\":\"percent\",\"price_by\":\"once\",\"translation\":\"\"}', 0, '[{\"id\":\"1\",\"user_id\":\"1\",\"name\":\"VAT\",\"operation\":\"+\",\"price\":\"14\",\"price_type\":\"percent\",\"price_by\":\"once\",\"included\":\"true\",\"extras\":\"true\",\"cart\":\"true\",\"translation\":\"VAT\",\"price_total\":\"0\"}]', 0, '{\"price\":\"100\",\"price_type\":\"percent\"}', 3944, '{\"2017-12-16\":{\"available\":\"10\",\"bind\":\"0\",\"price\":\"580\",\"promo\":\"0\",\"status\":\"available\"},\"2017-12-17\":{\"available\":\"10\",\"bind\":\"0\",\"price\":\"580\",\"promo\":\"0\",\"status\":\"available\"}}', '[{\"id\":\"1\",\"is_email\":\"false\",\"is_phone\":\"false\",\"add_to_day_hour_info\":\"false\",\"add_to_day_hour_body\":\"false\",\"translation\":\"First name\",\"value\":\"Brendon\"},{\"id\":\"2\",\"is_email\":\"false\",\"is_phone\":\"false\",\"add_to_day_hour_info\":\"false\",\"add_to_day_hour_body\":\"false\",\"translation\":\"Last name\",\"value\":\"Warr\"},{\"id\":\"3\",\"is_email\":\"true\",\"is_phone\":\"false\",\"add_to_day_hour_info\":\"false\",\"add_to_day_hour_body\":\"false\",\"translation\":\"Email\",\"value\":\"bd.warr@me.com\"},{\"id\":\"4\",\"is_email\":\"false\",\"is_phone\":\"false\",\"add_to_day_hour_info\":\"false\",\"add_to_day_hour_body\":\"false\",\"translation\":\"Phone\",\"value\":\"26824161070\"},{\"id\":\"5\",\"is_email\":\"false\",\"is_phone\":\"false\",\"add_to_day_hour_info\":\"false\",\"add_to_day_hour_body\":\"false\",\"translation\":\"Message\",\"value\":\"\"}]', '', '', 'bd.warr@me.com', 'expired', 'none', 'pending', '', '', '2017-12-12 18:45:02', '', '41.84.241.27', 'pinpoint', 'Al4ccceANycsrEOVrO2pG0ILGRWpiZCP@msla.co.za/lodge', ''),
(38, 1, 'en', '&#82;', 'ZAR', '2018-02-02', '2018-02-03', '', '', 2, 1160, 986, 0, '', 0, '{\"id\":\"1\",\"rule_id\":\"0\",\"operation\":\"-\",\"price\":\"87\",\"price_type\":\"fixed\",\"price_by\":\"period\",\"start_date\":\"\",\"end_date\":\"\",\"start_hour\":\"\",\"end_hour\":\"\",\"translation\":\"Book Now! Special\"}', -174, '{\"id\":\"0\",\"code\":\"\",\"operation\":\"-\",\"price\":\"0\",\"price_type\":\"percent\",\"price_by\":\"once\",\"translation\":\"\"}', 0, '[{\"id\":\"1\",\"user_id\":\"1\",\"name\":\"VAT\",\"operation\":\"+\",\"price\":\"14\",\"price_type\":\"percent\",\"price_by\":\"once\",\"included\":\"true\",\"extras\":\"true\",\"cart\":\"true\",\"translation\":\"VAT\",\"price_total\":\"0\"}]', 0, '{\"price\":\"100\",\"price_type\":\"percent\"}', 986, '{\"2018-02-02\":{\"available\":\"10\",\"bind\":\"0\",\"price\":\"580\",\"promo\":\"0\",\"status\":\"available\"}}', '[{\"id\":\"1\",\"is_email\":\"false\",\"is_phone\":\"false\",\"add_to_day_hour_info\":\"false\",\"add_to_day_hour_body\":\"false\",\"translation\":\"First name\",\"value\":\"martin\"},{\"id\":\"2\",\"is_email\":\"false\",\"is_phone\":\"false\",\"add_to_day_hour_info\":\"false\",\"add_to_day_hour_body\":\"false\",\"translation\":\"Last name\",\"value\":\"beard\"},{\"id\":\"3\",\"is_email\":\"true\",\"is_phone\":\"false\",\"add_to_day_hour_info\":\"false\",\"add_to_day_hour_body\":\"false\",\"translation\":\"Email\",\"value\":\"martinbeard786@gmail.com\"},{\"id\":\"4\",\"is_email\":\"false\",\"is_phone\":\"false\",\"add_to_day_hour_info\":\"false\",\"add_to_day_hour_body\":\"false\",\"translation\":\"Phone\",\"value\":\"0628989799\"},{\"id\":\"5\",\"is_email\":\"false\",\"is_phone\":\"false\",\"add_to_day_hour_info\":\"false\",\"add_to_day_hour_body\":\"false\",\"translation\":\"Message\",\"value\":\"2 pax \"}]', '', '', 'martinbeard786@gmail.com', 'expired', 'none', 'pending', '', '', '2018-01-27 08:03:07', '', '105.229.161.51', 'pinpoint', 'PiASmPHSa7MRTD7EvFUqeRG1cmH4MJBo@msla.co.za/lodge', ''),
(39, 1, 'en', '&#82;', 'ZAR', '2018-03-14', '2018-03-16', '', '', 2, 2320, 1972, 0, '', 0, '{\"id\":\"1\",\"rule_id\":\"0\",\"operation\":\"-\",\"price\":\"87\",\"price_type\":\"fixed\",\"price_by\":\"period\",\"start_date\":\"\",\"end_date\":\"\",\"start_hour\":\"\",\"end_hour\":\"\",\"translation\":\"Book Now! Special\"}', -348, '{\"id\":\"0\",\"code\":\"\",\"operation\":\"-\",\"price\":\"0\",\"price_type\":\"percent\",\"price_by\":\"once\",\"translation\":\"\"}', 0, '[{\"id\":\"1\",\"user_id\":\"1\",\"name\":\"VAT\",\"operation\":\"+\",\"price\":\"14\",\"price_type\":\"percent\",\"price_by\":\"once\",\"included\":\"true\",\"extras\":\"true\",\"cart\":\"true\",\"translation\":\"VAT\",\"price_total\":\"0\"}]', 0, '{\"price\":\"100\",\"price_type\":\"percent\"}', 1972, '{\"2018-03-14\":{\"available\":\"10\",\"bind\":\"0\",\"price\":\"580\",\"promo\":\"0\",\"status\":\"available\"},\"2018-03-15\":{\"available\":\"10\",\"bind\":\"0\",\"price\":\"580\",\"promo\":\"0\",\"status\":\"available\"}}', '[{\"id\":\"1\",\"is_email\":\"false\",\"is_phone\":\"false\",\"add_to_day_hour_info\":\"false\",\"add_to_day_hour_body\":\"false\",\"translation\":\"First name\",\"value\":\"Mihla\"},{\"id\":\"2\",\"is_email\":\"false\",\"is_phone\":\"false\",\"add_to_day_hour_info\":\"false\",\"add_to_day_hour_body\":\"false\",\"translation\":\"Last name\",\"value\":\"Shabangu\"},{\"id\":\"3\",\"is_email\":\"true\",\"is_phone\":\"false\",\"add_to_day_hour_info\":\"false\",\"add_to_day_hour_body\":\"false\",\"translation\":\"Email\",\"value\":\"mihla@sacap.edu.za\"},{\"id\":\"4\",\"is_email\":\"false\",\"is_phone\":\"false\",\"add_to_day_hour_info\":\"false\",\"add_to_day_hour_body\":\"false\",\"translation\":\"Phone\",\"value\":\"0730658131\"},{\"id\":\"5\",\"is_email\":\"false\",\"is_phone\":\"false\",\"add_to_day_hour_info\":\"false\",\"add_to_day_hour_body\":\"false\",\"translation\":\"Message\",\"value\":\"I am making a booking for 2 Sacap staff members named Merilyn & Danielle\"}]', '', '', 'mihla@sacap.edu.za', 'expired', 'none', 'pending', '', '', '2018-03-06 07:10:52', '', '105.247.240.202', 'pinpoint', 'HXIiJX3BeTfpPQofKTlnEL3f73mASvgT@msla.co.za/lodge', ''),
(40, 1, 'en', '&#82;', 'ZAR', '2018-04-27', '2018-04-29', '', '', 3, 3480, 2958, 0, '', 0, '{\"id\":\"1\",\"rule_id\":\"0\",\"operation\":\"-\",\"price\":\"87\",\"price_type\":\"fixed\",\"price_by\":\"period\",\"start_date\":\"\",\"end_date\":\"\",\"start_hour\":\"\",\"end_hour\":\"\",\"translation\":\"Book Now! Special\"}', -522, '{\"id\":\"0\",\"code\":\"\",\"operation\":\"-\",\"price\":\"0\",\"price_type\":\"percent\",\"price_by\":\"once\",\"translation\":\"\"}', 0, '[{\"id\":\"1\",\"user_id\":\"1\",\"name\":\"VAT\",\"operation\":\"+\",\"price\":\"14\",\"price_type\":\"percent\",\"price_by\":\"once\",\"included\":\"true\",\"extras\":\"true\",\"cart\":\"true\",\"translation\":\"VAT\",\"price_total\":\"0\"}]', 0, '{\"price\":\"100\",\"price_type\":\"percent\"}', 2958, '{\"2018-04-27\":{\"available\":\"10\",\"bind\":\"0\",\"price\":\"580\",\"promo\":\"0\",\"status\":\"available\"},\"2018-04-28\":{\"available\":\"10\",\"bind\":\"0\",\"price\":\"580\",\"promo\":\"0\",\"status\":\"available\"}}', '[{\"id\":\"1\",\"is_email\":\"false\",\"is_phone\":\"false\",\"add_to_day_hour_info\":\"false\",\"add_to_day_hour_body\":\"false\",\"translation\":\"First name\",\"value\":\"Justine\"},{\"id\":\"2\",\"is_email\":\"false\",\"is_phone\":\"false\",\"add_to_day_hour_info\":\"false\",\"add_to_day_hour_body\":\"false\",\"translation\":\"Last name\",\"value\":\"Smith\"},{\"id\":\"3\",\"is_email\":\"true\",\"is_phone\":\"false\",\"add_to_day_hour_info\":\"false\",\"add_to_day_hour_body\":\"false\",\"translation\":\"Email\",\"value\":\"justine.smith015@gmail.com\"},{\"id\":\"4\",\"is_email\":\"false\",\"is_phone\":\"false\",\"add_to_day_hour_info\":\"false\",\"add_to_day_hour_body\":\"false\",\"translation\":\"Phone\",\"value\":\"845229923\"},{\"id\":\"5\",\"is_email\":\"false\",\"is_phone\":\"false\",\"add_to_day_hour_info\":\"false\",\"add_to_day_hour_body\":\"false\",\"translation\":\"Message\",\"value\":\"Hi there. Please can you quote me on 2 self catering units. One family of 3 and one family of 4.\"}]', '', '', 'justine.smith015@gmail.com', 'expired', 'none', 'pending', '', '', '2018-04-21 05:25:13', '', '105.8.7.217', 'pinpoint', 'TUfppuVqKfGdmwiTnJQWaFDtEL8F1MLl@msla.co.za/lodge', ''),
(41, 1, 'en', '&#82;', 'ZAR', '2018-09-05', '2018-09-06', '', '', 1, 0, -87, 0, '', 0, '{\"id\":\"1\",\"rule_id\":\"0\",\"operation\":\"-\",\"price\":\"87\",\"price_type\":\"fixed\",\"price_by\":\"period\",\"start_date\":\"\",\"end_date\":\"\",\"start_hour\":\"\",\"end_hour\":\"\",\"translation\":\"Book Now! Special\"}', -87, '{\"id\":\"0\",\"code\":\"\",\"operation\":\"-\",\"price\":\"0\",\"price_type\":\"percent\",\"price_by\":\"once\",\"translation\":\"\"}', 0, '[{\"id\":\"1\",\"user_id\":\"1\",\"name\":\"VAT\",\"operation\":\"+\",\"price\":\"14\",\"price_type\":\"percent\",\"price_by\":\"once\",\"included\":\"true\",\"extras\":\"true\",\"cart\":\"true\",\"translation\":\"VAT\",\"price_total\":\"0\"}]', 0, '{\"price\":\"100\",\"price_type\":\"percent\"}', -87, '{\"2018-09-05\":{\"available\":\"1\",\"bind\":\"0\",\"price\":\"0\",\"promo\":\"0\",\"status\":\"unavailable\"}}', '[{\"id\":\"1\",\"is_email\":\"false\",\"is_phone\":\"false\",\"add_to_day_hour_info\":\"false\",\"add_to_day_hour_body\":\"false\",\"translation\":\"First name\",\"value\":\"Lance\"},{\"id\":\"2\",\"is_email\":\"false\",\"is_phone\":\"false\",\"add_to_day_hour_info\":\"false\",\"add_to_day_hour_body\":\"false\",\"translation\":\"Last name\",\"value\":\"Mc Neil\"},{\"id\":\"3\",\"is_email\":\"true\",\"is_phone\":\"false\",\"add_to_day_hour_info\":\"false\",\"add_to_day_hour_body\":\"false\",\"translation\":\"Email\",\"value\":\"info@msla.co.za\"},{\"id\":\"4\",\"is_email\":\"false\",\"is_phone\":\"false\",\"add_to_day_hour_info\":\"false\",\"add_to_day_hour_body\":\"false\",\"translation\":\"Phone\",\"value\":\"0317656046\"},{\"id\":\"5\",\"is_email\":\"false\",\"is_phone\":\"false\",\"add_to_day_hour_info\":\"false\",\"add_to_day_hour_body\":\"false\",\"translation\":\"Message\",\"value\":\"\"}]', '', '', 'info@msla.co.za', 'expired', 'none', 'pending', '', '', '2018-09-04 07:34:57', '', '', 'pinpoint', '41@msla.co.za/lodge', ''),
(42, 1, 'en', '&#82;', 'ZAR', '2018-12-25', '2019-01-01', '', '', 10, 40600, 32200, 0, '[{\"group_id\":\"6\",\"group_translation\":\"Services\",\"id\":\"18\",\"operation\":\"+\",\"price\":\"25\",\"price_by\":\"period\",\"price_type\":\"fixed\",\"no_items_multiply\":\"true\",\"translation\":\"Lodge Cleaning\",\"price_total\":\"1750\"}]', 1750, '{\"id\":\"2\",\"rule_id\":\"0\",\"operation\":\"-\",\"price\":\"145\",\"price_type\":\"fixed\",\"price_by\":\"period\",\"start_date\":\"\",\"end_date\":\"\",\"start_hour\":\"\",\"end_hour\":\"\",\"translation\":\"3+ Night Discount\"}', -10150, '{\"id\":\"0\",\"code\":\"\",\"operation\":\"-\",\"price\":\"0\",\"price_type\":\"percent\",\"price_by\":\"once\",\"translation\":\"\"}', 0, '[{\"id\":\"1\",\"user_id\":\"1\",\"name\":\"VAT\",\"operation\":\"+\",\"price\":\"15\",\"price_type\":\"percent\",\"price_by\":\"once\",\"included\":\"true\",\"extras\":\"true\",\"cart\":\"true\",\"translation\":\"VAT\",\"price_total\":\"0\"}]', 0, '{\"price\":\"100\",\"price_type\":\"percent\"}', 32200, '{\"2018-12-25\":{\"available\":\"10\",\"bind\":\"0\",\"price\":\"580\",\"promo\":\"0\",\"status\":\"available\"},\"2018-12-26\":{\"available\":\"10\",\"bind\":\"0\",\"price\":\"580\",\"promo\":\"0\",\"status\":\"available\"},\"2018-12-27\":{\"available\":\"10\",\"bind\":\"0\",\"price\":\"580\",\"promo\":\"0\",\"status\":\"available\"},\"2018-12-28\":{\"available\":\"10\",\"bind\":\"0\",\"price\":\"580\",\"promo\":\"0\",\"status\":\"available\"},\"2018-12-29\":{\"available\":\"10\",\"bind\":\"0\",\"price\":\"580\",\"promo\":\"0\",\"status\":\"available\"},\"2018-12-30\":{\"available\":\"10\",\"bind\":\"0\",\"price\":\"580\",\"promo\":\"0\",\"status\":\"available\"},\"2018-12-31\":{\"available\":\"10\",\"bind\":\"0\",\"price\":\"580\",\"promo\":\"0\",\"status\":\"available\"}}', '[{\"id\":\"1\",\"is_email\":\"false\",\"is_phone\":\"false\",\"add_to_day_hour_info\":\"false\",\"add_to_day_hour_body\":\"false\",\"translation\":\"First name\",\"value\":\"Arifah\"},{\"id\":\"2\",\"is_email\":\"false\",\"is_phone\":\"false\",\"add_to_day_hour_info\":\"false\",\"add_to_day_hour_body\":\"false\",\"translation\":\"Last name\",\"value\":\"Ahmed\"},{\"id\":\"3\",\"is_email\":\"true\",\"is_phone\":\"false\",\"add_to_day_hour_info\":\"false\",\"add_to_day_hour_body\":\"false\",\"translation\":\"Email\",\"value\":\"arifahahmed@ymail.com\"},{\"id\":\"4\",\"is_email\":\"false\",\"is_phone\":\"false\",\"add_to_day_hour_info\":\"false\",\"add_to_day_hour_body\":\"false\",\"translation\":\"Phone\",\"value\":\"0715490362\"},{\"id\":\"5\",\"is_email\":\"false\",\"is_phone\":\"false\",\"add_to_day_hour_info\":\"false\",\"add_to_day_hour_body\":\"false\",\"translation\":\"Message\",\"value\":\"Hi there, I would like to book the above accomodation.. however I would first like to know how far is the beach from the place? Thanks\"}]', '', '', 'arifahahmed@ymail.com', 'expired', 'none', 'pending', '', '', '2018-10-23 18:18:54', '', '', 'pinpoint', '42@msla.co.za/lodge', ''),
(43, 1, 'en', '&#82;', 'ZAR', '2018-12-14', '2018-12-16', '', '', 1, 1160, 1180, 0, '[{\"group_id\":\"5\",\"group_translation\":\"Meals\",\"id\":\"12\",\"operation\":\"+\",\"price\":\"95\",\"price_by\":\"period\",\"price_type\":\"fixed\",\"no_items_multiply\":\"true\",\"translation\":\"Breakfast\",\"price_total\":\"190\"}]', 190, '{\"id\":\"1\",\"rule_id\":\"0\",\"operation\":\"-\",\"price\":\"85\",\"price_type\":\"fixed\",\"price_by\":\"period\",\"start_date\":\"\",\"end_date\":\"\",\"start_hour\":\"\",\"end_hour\":\"\",\"translation\":\"On-Line Discount\"}', -170, '{\"id\":\"0\",\"code\":\"\",\"operation\":\"-\",\"price\":\"0\",\"price_type\":\"percent\",\"price_by\":\"once\",\"translation\":\"\"}', 0, '[{\"id\":\"1\",\"user_id\":\"1\",\"name\":\"VAT\",\"operation\":\"+\",\"price\":\"15\",\"price_type\":\"percent\",\"price_by\":\"once\",\"included\":\"true\",\"extras\":\"true\",\"cart\":\"true\",\"translation\":\"VAT\",\"price_total\":\"0\"}]', 0, '{\"price\":\"100\",\"price_type\":\"percent\"}', 1180, '{\"2018-12-14\":{\"available\":\"10\",\"bind\":\"0\",\"price\":\"580\",\"promo\":\"0\",\"status\":\"available\"},\"2018-12-15\":{\"available\":\"10\",\"bind\":\"0\",\"price\":\"580\",\"promo\":\"0\",\"status\":\"available\"}}', '[{\"id\":\"1\",\"is_email\":\"false\",\"is_phone\":\"false\",\"add_to_day_hour_info\":\"false\",\"add_to_day_hour_body\":\"false\",\"translation\":\"First name\",\"value\":\"Kaelo\"},{\"id\":\"2\",\"is_email\":\"false\",\"is_phone\":\"false\",\"add_to_day_hour_info\":\"false\",\"add_to_day_hour_body\":\"false\",\"translation\":\"Last name\",\"value\":\"Molefe\"},{\"id\":\"3\",\"is_email\":\"true\",\"is_phone\":\"false\",\"add_to_day_hour_info\":\"false\",\"add_to_day_hour_body\":\"false\",\"translation\":\"Email\",\"value\":\"kaelo.molefe@gmail.com\"},{\"id\":\"4\",\"is_email\":\"false\",\"is_phone\":\"false\",\"add_to_day_hour_info\":\"false\",\"add_to_day_hour_body\":\"false\",\"translation\":\"Phone\",\"value\":\"0723290658\"},{\"id\":\"5\",\"is_email\":\"false\",\"is_phone\":\"false\",\"add_to_day_hour_info\":\"false\",\"add_to_day_hour_body\":\"false\",\"translation\":\"Message\",\"value\":\"Hello, I will be attending a wedding in Botha\\\\\'s Hill on Saturday 15 December and am in search of suitable accommodation.\"}]', '', '', 'kaelo.molefe@gmail.com', 'expired', 'none', 'pending', '', '', '2018-11-11 22:11:12', '', '', 'pinpoint', '43@msla.co.za/lodge', '');
INSERT INTO `wp_dopbsp_reservations` (`id`, `calendar_id`, `language`, `currency`, `currency_code`, `check_in`, `check_out`, `start_hour`, `end_hour`, `no_items`, `price`, `price_total`, `refund`, `extras`, `extras_price`, `discount`, `discount_price`, `coupon`, `coupon_price`, `fees`, `fees_price`, `deposit`, `deposit_price`, `days_hours_history`, `form`, `address_billing`, `address_shipping`, `email`, `status`, `payment_method`, `payment_status`, `transaction_id`, `token`, `date_created`, `phone`, `ip`, `reservation_from`, `uid`, `stripe_user`) VALUES
(44, 1, 'en', '&#82;', 'ZAR', '2018-12-10', '2018-12-19', '', '', 5, 26100, 21825, 0, '[{\"group_id\":\"6\",\"group_translation\":\"Services\",\"id\":\"18\",\"operation\":\"+\",\"price\":\"25\",\"price_by\":\"period\",\"price_type\":\"fixed\",\"no_items_multiply\":\"true\",\"translation\":\"Lodge Cleaning\",\"price_total\":\"1125\"},{\"group_id\":\"6\",\"group_translation\":\"Services\",\"id\":\"17\",\"operation\":\"+\",\"price\":\"25\",\"price_by\":\"period\",\"price_type\":\"fixed\",\"no_items_multiply\":\"true\",\"translation\":\"Room Cleaning\",\"price_total\":\"1125\"}]', 2250, '{\"id\":\"2\",\"rule_id\":\"0\",\"operation\":\"-\",\"price\":\"145\",\"price_type\":\"fixed\",\"price_by\":\"period\",\"start_date\":\"\",\"end_date\":\"\",\"start_hour\":\"\",\"end_hour\":\"\",\"translation\":\"3+ Night Discount\"}', -6525, '{\"id\":\"0\",\"code\":\"\",\"operation\":\"-\",\"price\":\"0\",\"price_type\":\"percent\",\"price_by\":\"once\",\"translation\":\"\"}', 0, '[{\"id\":\"1\",\"user_id\":\"1\",\"name\":\"VAT\",\"operation\":\"+\",\"price\":\"15\",\"price_type\":\"percent\",\"price_by\":\"once\",\"included\":\"true\",\"extras\":\"true\",\"cart\":\"true\",\"translation\":\"VAT\",\"price_total\":\"0\"}]', 0, '{\"price\":\"100\",\"price_type\":\"percent\"}', 21825, '{\"2018-12-10\":{\"available\":\"10\",\"bind\":\"0\",\"price\":\"580\",\"promo\":\"0\",\"status\":\"available\"},\"2018-12-11\":{\"available\":\"10\",\"bind\":\"0\",\"price\":\"580\",\"promo\":\"0\",\"status\":\"available\"},\"2018-12-12\":{\"available\":\"10\",\"bind\":\"0\",\"price\":\"580\",\"promo\":\"0\",\"status\":\"available\"},\"2018-12-13\":{\"available\":\"10\",\"bind\":\"0\",\"price\":\"580\",\"promo\":\"0\",\"status\":\"available\"},\"2018-12-14\":{\"available\":\"10\",\"bind\":\"0\",\"price\":\"580\",\"promo\":\"0\",\"status\":\"available\"},\"2018-12-15\":{\"available\":\"10\",\"bind\":\"0\",\"price\":\"580\",\"promo\":\"0\",\"status\":\"available\"},\"2018-12-16\":{\"available\":\"10\",\"bind\":\"0\",\"price\":\"580\",\"promo\":\"0\",\"status\":\"available\"},\"2018-12-17\":{\"available\":\"10\",\"bind\":\"0\",\"price\":\"580\",\"promo\":\"0\",\"status\":\"available\"},\"2018-12-18\":{\"available\":\"10\",\"bind\":\"0\",\"price\":\"580\",\"promo\":\"0\",\"status\":\"available\"}}', '[{\"id\":\"1\",\"is_email\":\"false\",\"is_phone\":\"false\",\"add_to_day_hour_info\":\"false\",\"add_to_day_hour_body\":\"false\",\"translation\":\"First name\",\"value\":\"Raymond\"},{\"id\":\"2\",\"is_email\":\"false\",\"is_phone\":\"false\",\"add_to_day_hour_info\":\"false\",\"add_to_day_hour_body\":\"false\",\"translation\":\"Last name\",\"value\":\"Dick\"},{\"id\":\"3\",\"is_email\":\"true\",\"is_phone\":\"false\",\"add_to_day_hour_info\":\"false\",\"add_to_day_hour_body\":\"false\",\"translation\":\"Email\",\"value\":\"Raymond.Dick@capetown.gov.za\"},{\"id\":\"4\",\"is_email\":\"false\",\"is_phone\":\"false\",\"add_to_day_hour_info\":\"false\",\"add_to_day_hour_body\":\"false\",\"translation\":\"Phone\",\"value\":\"0631458290\"},{\"id\":\"5\",\"is_email\":\"false\",\"is_phone\":\"false\",\"add_to_day_hour_info\":\"false\",\"add_to_day_hour_body\":\"false\",\"translation\":\"Message\",\"value\":\"Can dinner be ordered for specific days? (with suitable notice)\"}]', '', '', 'Raymond.Dick@capetown.gov.za', 'expired', 'none', 'pending', '', '', '2018-11-28 16:22:30', '', '', 'pinpoint', '44@msla.co.za/lodge', ''),
(45, 1, 'en', '&#82;', 'ZAR', '2019-04-27', '2019-04-28', '', '', 1, 0, -85, 0, '', 0, '{\"id\":\"1\",\"rule_id\":\"0\",\"operation\":\"-\",\"price\":\"85\",\"price_type\":\"fixed\",\"price_by\":\"period\",\"start_date\":\"\",\"end_date\":\"\",\"start_hour\":\"\",\"end_hour\":\"\",\"translation\":\"On-Line Discount\"}', -85, '{\"id\":\"0\",\"code\":\"\",\"operation\":\"-\",\"price\":\"0\",\"price_type\":\"percent\",\"price_by\":\"once\",\"translation\":\"\"}', 0, '[{\"id\":\"1\",\"user_id\":\"1\",\"name\":\"VAT\",\"operation\":\"+\",\"price\":\"15\",\"price_type\":\"percent\",\"price_by\":\"once\",\"included\":\"true\",\"extras\":\"true\",\"cart\":\"true\",\"translation\":\"VAT\",\"price_total\":\"0\"}]', 0, '{\"price\":\"100\",\"price_type\":\"percent\"}', -85, '{\"2019-04-27\":{\"available\":\"1\",\"bind\":\"0\",\"price\":\"0\",\"promo\":\"0\",\"status\":\"unavailable\"}}', '[{\"id\":\"1\",\"is_email\":\"false\",\"is_phone\":\"false\",\"add_to_day_hour_info\":\"false\",\"add_to_day_hour_body\":\"false\",\"translation\":\"First name\",\"value\":\"Natasha\"},{\"id\":\"2\",\"is_email\":\"false\",\"is_phone\":\"false\",\"add_to_day_hour_info\":\"false\",\"add_to_day_hour_body\":\"false\",\"translation\":\"Last name\",\"value\":\"Lindsay\"},{\"id\":\"3\",\"is_email\":\"true\",\"is_phone\":\"false\",\"add_to_day_hour_info\":\"false\",\"add_to_day_hour_body\":\"false\",\"translation\":\"Email\",\"value\":\"tashfayce87@gmail.com\"},{\"id\":\"4\",\"is_email\":\"false\",\"is_phone\":\"false\",\"add_to_day_hour_info\":\"false\",\"add_to_day_hour_body\":\"false\",\"translation\":\"Phone\",\"value\":\"837871220\"},{\"id\":\"5\",\"is_email\":\"false\",\"is_phone\":\"false\",\"add_to_day_hour_info\":\"false\",\"add_to_day_hour_body\":\"false\",\"translation\":\"Message\",\"value\":\"It\\\\\'s not letting me select the option of 2 guests. I am looking for accommodation for 2 of us.\"}]', '', '', 'tashfayce87@gmail.com', 'expired', 'none', 'pending', '', '', '2019-01-26 05:57:54', '', '', 'pinpoint', '45@msla.co.za/lodge', ''),
(46, 1, 'en', '&#82;', 'ZAR', '2019-04-27', '2019-04-28', '', '', 1, 0, -85, 0, '', 0, '{\"id\":\"1\",\"rule_id\":\"0\",\"operation\":\"-\",\"price\":\"85\",\"price_type\":\"fixed\",\"price_by\":\"period\",\"start_date\":\"\",\"end_date\":\"\",\"start_hour\":\"\",\"end_hour\":\"\",\"translation\":\"On-Line Discount\"}', -85, '{\"id\":\"0\",\"code\":\"\",\"operation\":\"-\",\"price\":\"0\",\"price_type\":\"percent\",\"price_by\":\"once\",\"translation\":\"\"}', 0, '[{\"id\":\"1\",\"user_id\":\"1\",\"name\":\"VAT\",\"operation\":\"+\",\"price\":\"15\",\"price_type\":\"percent\",\"price_by\":\"once\",\"included\":\"true\",\"extras\":\"true\",\"cart\":\"true\",\"translation\":\"VAT\",\"price_total\":\"0\"}]', 0, '{\"price\":\"100\",\"price_type\":\"percent\"}', -85, '{\"2019-04-27\":{\"available\":\"1\",\"bind\":\"0\",\"price\":\"0\",\"promo\":\"0\",\"status\":\"unavailable\"}}', '[{\"id\":\"1\",\"is_email\":\"false\",\"is_phone\":\"false\",\"add_to_day_hour_info\":\"false\",\"add_to_day_hour_body\":\"false\",\"translation\":\"First name\",\"value\":\"Emily\"},{\"id\":\"2\",\"is_email\":\"false\",\"is_phone\":\"false\",\"add_to_day_hour_info\":\"false\",\"add_to_day_hour_body\":\"false\",\"translation\":\"Last name\",\"value\":\"Sumner\"},{\"id\":\"3\",\"is_email\":\"true\",\"is_phone\":\"false\",\"add_to_day_hour_info\":\"false\",\"add_to_day_hour_body\":\"false\",\"translation\":\"Email\",\"value\":\"emilybeasumner@gmail.com\"},{\"id\":\"4\",\"is_email\":\"false\",\"is_phone\":\"false\",\"add_to_day_hour_info\":\"false\",\"add_to_day_hour_body\":\"false\",\"translation\":\"Phone\",\"value\":\"0713449770\"},{\"id\":\"5\",\"is_email\":\"false\",\"is_phone\":\"false\",\"add_to_day_hour_info\":\"false\",\"add_to_day_hour_body\":\"false\",\"translation\":\"Message\",\"value\":\"Can we check in and drop bags at 1pm please\"}]', '', '', 'emilybeasumner@gmail.com', 'expired', 'none', 'pending', '', '', '2019-03-24 04:41:54', '', '', 'pinpoint', '46@msla.co.za/lodge', ''),
(47, 1, 'en', '&#82;', 'ZAR', '2019-06-11', '2019-06-17', '', '', 3, 10440, 7830, 0, '', 0, '{\"id\":\"2\",\"rule_id\":\"0\",\"operation\":\"-\",\"price\":\"145\",\"price_type\":\"fixed\",\"price_by\":\"period\",\"start_date\":\"\",\"end_date\":\"\",\"start_hour\":\"\",\"end_hour\":\"\",\"translation\":\"3+ Night Discount\"}', -2610, '{\"id\":\"0\",\"code\":\"\",\"operation\":\"-\",\"price\":\"0\",\"price_type\":\"percent\",\"price_by\":\"once\",\"translation\":\"\"}', 0, '[{\"id\":\"1\",\"user_id\":\"1\",\"name\":\"VAT\",\"operation\":\"+\",\"price\":\"15\",\"price_type\":\"percent\",\"price_by\":\"once\",\"included\":\"true\",\"extras\":\"true\",\"cart\":\"true\",\"translation\":\"VAT\",\"price_total\":\"0\"}]', 0, '{\"price\":\"100\",\"price_type\":\"percent\"}', 7830, '{\"2019-06-11\":{\"available\":\"10\",\"bind\":\"0\",\"price\":\"580\",\"promo\":\"0\",\"status\":\"available\"},\"2019-06-12\":{\"available\":\"10\",\"bind\":\"0\",\"price\":\"580\",\"promo\":\"0\",\"status\":\"available\"},\"2019-06-13\":{\"available\":\"10\",\"bind\":\"0\",\"price\":\"580\",\"promo\":\"0\",\"status\":\"available\"},\"2019-06-14\":{\"available\":\"10\",\"bind\":\"0\",\"price\":\"580\",\"promo\":\"0\",\"status\":\"available\"},\"2019-06-15\":{\"available\":\"10\",\"bind\":\"0\",\"price\":\"580\",\"promo\":\"0\",\"status\":\"available\"},\"2019-06-16\":{\"available\":\"10\",\"bind\":\"0\",\"price\":\"580\",\"promo\":\"0\",\"status\":\"available\"}}', '[{\"id\":\"1\",\"is_email\":\"false\",\"is_phone\":\"false\",\"add_to_day_hour_info\":\"false\",\"add_to_day_hour_body\":\"false\",\"translation\":\"First name\",\"value\":\"Chelsea\"},{\"id\":\"2\",\"is_email\":\"false\",\"is_phone\":\"false\",\"add_to_day_hour_info\":\"false\",\"add_to_day_hour_body\":\"false\",\"translation\":\"Last name\",\"value\":\"Duffield\"},{\"id\":\"3\",\"is_email\":\"true\",\"is_phone\":\"false\",\"add_to_day_hour_info\":\"false\",\"add_to_day_hour_body\":\"false\",\"translation\":\"Email\",\"value\":\"cjduffield93@gmail.com\"},{\"id\":\"4\",\"is_email\":\"false\",\"is_phone\":\"false\",\"add_to_day_hour_info\":\"false\",\"add_to_day_hour_body\":\"false\",\"translation\":\"Phone\",\"value\":\"0833008414\"},{\"id\":\"5\",\"is_email\":\"false\",\"is_phone\":\"false\",\"add_to_day_hour_info\":\"false\",\"add_to_day_hour_body\":\"false\",\"translation\":\"Message\",\"value\":\"Hi there, Please may I book 3 rooms for check in 11 June (Tuesday) and check out 17 June (Monday). Kindly advise on the deposit required to reserve these rooms. Thanks, Chelsea\"}]', '', '', 'cjduffield93@gmail.com', 'expired', 'none', 'pending', '', '', '2019-04-24 08:10:32', '', '', 'pinpoint', '47@msla.co.za/lodge', ''),
(48, 1, 'en', '&#82;', 'ZAR', '2019-06-28', '2019-06-30', '', '', 5, 5800, 4950, 0, '', 0, '{\"id\":\"1\",\"rule_id\":\"0\",\"operation\":\"-\",\"price\":\"85\",\"price_type\":\"fixed\",\"price_by\":\"period\",\"start_date\":\"\",\"end_date\":\"\",\"start_hour\":\"\",\"end_hour\":\"\",\"translation\":\"On-Line Discount\"}', -850, '{\"id\":\"0\",\"code\":\"\",\"operation\":\"-\",\"price\":\"0\",\"price_type\":\"percent\",\"price_by\":\"once\",\"translation\":\"\"}', 0, '[{\"id\":\"1\",\"user_id\":\"1\",\"name\":\"VAT\",\"operation\":\"+\",\"price\":\"15\",\"price_type\":\"percent\",\"price_by\":\"once\",\"included\":\"true\",\"extras\":\"true\",\"cart\":\"true\",\"translation\":\"VAT\",\"price_total\":\"0\"}]', 0, '{\"price\":\"100\",\"price_type\":\"percent\"}', 4950, '{\"2019-06-28\":{\"available\":\"10\",\"bind\":\"0\",\"price\":\"580\",\"promo\":\"0\",\"status\":\"available\"},\"2019-06-29\":{\"available\":\"10\",\"bind\":\"0\",\"price\":\"580\",\"promo\":\"0\",\"status\":\"available\"}}', '[{\"id\":\"1\",\"is_email\":\"false\",\"is_phone\":\"false\",\"add_to_day_hour_info\":\"false\",\"add_to_day_hour_body\":\"false\",\"translation\":\"First name\",\"value\":\"Joanne\"},{\"id\":\"2\",\"is_email\":\"false\",\"is_phone\":\"false\",\"add_to_day_hour_info\":\"false\",\"add_to_day_hour_body\":\"false\",\"translation\":\"Last name\",\"value\":\"Van achterbergh\"},{\"id\":\"3\",\"is_email\":\"true\",\"is_phone\":\"false\",\"add_to_day_hour_info\":\"false\",\"add_to_day_hour_body\":\"false\",\"translation\":\"Email\",\"value\":\"kincardineequestrian@gmail.com\"},{\"id\":\"4\",\"is_email\":\"false\",\"is_phone\":\"false\",\"add_to_day_hour_info\":\"false\",\"add_to_day_hour_body\":\"false\",\"translation\":\"Phone\",\"value\":\"0825591481\"},{\"id\":\"5\",\"is_email\":\"false\",\"is_phone\":\"false\",\"add_to_day_hour_info\":\"false\",\"add_to_day_hour_body\":\"false\",\"translation\":\"Message\",\"value\":\"Can\\u2019t wait to come stay again. Love your guest house.\"}]', '', '', 'kincardineequestrian@gmail.com', 'expired', 'none', 'pending', '', '', '2019-04-25 11:15:20', '', '', 'pinpoint', '48@msla.co.za/lodge', ''),
(49, 1, 'en', '&#82;', 'ZAR', '2019-08-24', '2019-08-25', '', '', 2, 1160, 1180, 0, '[{\"group_id\":\"5\",\"group_translation\":\"Meals\",\"id\":\"12\",\"operation\":\"+\",\"price\":\"95\",\"price_by\":\"period\",\"price_type\":\"fixed\",\"no_items_multiply\":\"true\",\"translation\":\"Breakfast\",\"price_total\":\"190\"}]', 190, '{\"id\":\"1\",\"rule_id\":\"0\",\"operation\":\"-\",\"price\":\"85\",\"price_type\":\"fixed\",\"price_by\":\"period\",\"start_date\":\"\",\"end_date\":\"\",\"start_hour\":\"\",\"end_hour\":\"\",\"translation\":\"On-Line Discount\"}', -170, '{\"id\":\"0\",\"code\":\"\",\"operation\":\"-\",\"price\":\"0\",\"price_type\":\"percent\",\"price_by\":\"once\",\"translation\":\"\"}', 0, '[{\"id\":\"1\",\"user_id\":\"1\",\"name\":\"VAT\",\"operation\":\"+\",\"price\":\"15\",\"price_type\":\"percent\",\"price_by\":\"once\",\"included\":\"true\",\"extras\":\"true\",\"cart\":\"true\",\"translation\":\"VAT\",\"price_total\":\"0\"}]', 0, '{\"price\":\"100\",\"price_type\":\"percent\"}', 1180, '{\"2019-08-24\":{\"available\":\"10\",\"bind\":\"0\",\"price\":\"580\",\"promo\":\"0\",\"status\":\"available\"}}', '[{\"id\":\"1\",\"is_email\":\"false\",\"is_phone\":\"false\",\"add_to_day_hour_info\":\"false\",\"add_to_day_hour_body\":\"false\",\"translation\":\"First name\",\"value\":\"COLIN\"},{\"id\":\"2\",\"is_email\":\"false\",\"is_phone\":\"false\",\"add_to_day_hour_info\":\"false\",\"add_to_day_hour_body\":\"false\",\"translation\":\"Last name\",\"value\":\"MCMILLAN\"},{\"id\":\"3\",\"is_email\":\"true\",\"is_phone\":\"false\",\"add_to_day_hour_info\":\"false\",\"add_to_day_hour_body\":\"false\",\"translation\":\"Email\",\"value\":\"colinm176@gmail.com\"},{\"id\":\"4\",\"is_email\":\"false\",\"is_phone\":\"false\",\"add_to_day_hour_info\":\"false\",\"add_to_day_hour_body\":\"false\",\"translation\":\"Phone\",\"value\":\"0765916705\"},{\"id\":\"5\",\"is_email\":\"false\",\"is_phone\":\"false\",\"add_to_day_hour_info\":\"false\",\"add_to_day_hour_body\":\"false\",\"translation\":\"Message\",\"value\":\"I would like reserve a room for me and my wife for the above date as we will be attending a wedding at Macnut Farm\"}]', '', '', 'colinm176@gmail.com', 'expired', 'none', 'pending', '', '', '2019-06-12 08:39:25', '', '', 'pinpoint', '49@msla.co.za/lodge', ''),
(50, 1, 'en', '&#82;', 'ZAR', '2019-08-07', '2019-08-12', '', '', 3, 8700, 6525, 0, '', 0, '{\"id\":\"2\",\"rule_id\":\"0\",\"operation\":\"-\",\"price\":\"145\",\"price_type\":\"fixed\",\"price_by\":\"period\",\"start_date\":\"\",\"end_date\":\"\",\"start_hour\":\"\",\"end_hour\":\"\",\"translation\":\"3+ Night Discount\"}', -2175, '{\"id\":\"0\",\"code\":\"\",\"operation\":\"-\",\"price\":\"0\",\"price_type\":\"percent\",\"price_by\":\"once\",\"translation\":\"\"}', 0, '[{\"id\":\"1\",\"user_id\":\"1\",\"name\":\"VAT\",\"operation\":\"+\",\"price\":\"15\",\"price_type\":\"percent\",\"price_by\":\"once\",\"included\":\"true\",\"extras\":\"true\",\"cart\":\"true\",\"translation\":\"VAT\",\"price_total\":\"0\"}]', 0, '{\"price\":\"100\",\"price_type\":\"percent\"}', 6525, '{\"2019-08-07\":{\"available\":\"10\",\"bind\":\"0\",\"price\":\"580\",\"promo\":\"0\",\"status\":\"available\"},\"2019-08-08\":{\"available\":\"10\",\"bind\":\"0\",\"price\":\"580\",\"promo\":\"0\",\"status\":\"available\"},\"2019-08-09\":{\"available\":\"10\",\"bind\":\"0\",\"price\":\"580\",\"promo\":\"0\",\"status\":\"available\"},\"2019-08-10\":{\"available\":\"10\",\"bind\":\"0\",\"price\":\"580\",\"promo\":\"0\",\"status\":\"available\"},\"2019-08-11\":{\"available\":\"10\",\"bind\":\"0\",\"price\":\"580\",\"promo\":\"0\",\"status\":\"available\"}}', '[{\"id\":\"1\",\"is_email\":\"false\",\"is_phone\":\"false\",\"add_to_day_hour_info\":\"false\",\"add_to_day_hour_body\":\"false\",\"translation\":\"First name\",\"value\":\"James\"},{\"id\":\"2\",\"is_email\":\"false\",\"is_phone\":\"false\",\"add_to_day_hour_info\":\"false\",\"add_to_day_hour_body\":\"false\",\"translation\":\"Last name\",\"value\":\"Lowe\"},{\"id\":\"3\",\"is_email\":\"true\",\"is_phone\":\"false\",\"add_to_day_hour_info\":\"false\",\"add_to_day_hour_body\":\"false\",\"translation\":\"Email\",\"value\":\"jdlowe91@gmail.com\"},{\"id\":\"4\",\"is_email\":\"false\",\"is_phone\":\"false\",\"add_to_day_hour_info\":\"false\",\"add_to_day_hour_body\":\"false\",\"translation\":\"Phone\",\"value\":\"0828150570\"},{\"id\":\"5\",\"is_email\":\"false\",\"is_phone\":\"false\",\"add_to_day_hour_info\":\"false\",\"add_to_day_hour_body\":\"false\",\"translation\":\"Message\",\"value\":\"\"}]', '', '', 'jdlowe91@gmail.com', 'expired', 'none', 'pending', '', '', '2019-06-20 09:43:43', '', '', 'pinpoint', '50@msla.co.za/lodge', ''),
(51, 1, 'en', '&#82;', 'ZAR', '2019-08-07', '2019-08-12', '', '', 7, 20300, 16100, 0, '[{\"group_id\":\"6\",\"group_translation\":\"Services\",\"id\":\"18\",\"operation\":\"+\",\"price\":\"25\",\"price_by\":\"period\",\"price_type\":\"fixed\",\"no_items_multiply\":\"true\",\"translation\":\"Lodge Cleaning\",\"price_total\":\"875\"}]', 875, '{\"id\":\"2\",\"rule_id\":\"0\",\"operation\":\"-\",\"price\":\"145\",\"price_type\":\"fixed\",\"price_by\":\"period\",\"start_date\":\"\",\"end_date\":\"\",\"start_hour\":\"\",\"end_hour\":\"\",\"translation\":\"3+ Night Discount\"}', -5075, '{\"id\":\"0\",\"code\":\"\",\"operation\":\"-\",\"price\":\"0\",\"price_type\":\"percent\",\"price_by\":\"once\",\"translation\":\"\"}', 0, '[{\"id\":\"1\",\"user_id\":\"1\",\"name\":\"VAT\",\"operation\":\"+\",\"price\":\"15\",\"price_type\":\"percent\",\"price_by\":\"once\",\"included\":\"true\",\"extras\":\"true\",\"cart\":\"true\",\"translation\":\"VAT\",\"price_total\":\"0\"}]', 0, '{\"price\":\"100\",\"price_type\":\"percent\"}', 16100, '{\"2019-08-07\":{\"available\":\"10\",\"bind\":\"0\",\"price\":\"580\",\"promo\":\"0\",\"status\":\"available\"},\"2019-08-08\":{\"available\":\"10\",\"bind\":\"0\",\"price\":\"580\",\"promo\":\"0\",\"status\":\"available\"},\"2019-08-09\":{\"available\":\"10\",\"bind\":\"0\",\"price\":\"580\",\"promo\":\"0\",\"status\":\"available\"},\"2019-08-10\":{\"available\":\"10\",\"bind\":\"0\",\"price\":\"580\",\"promo\":\"0\",\"status\":\"available\"},\"2019-08-11\":{\"available\":\"10\",\"bind\":\"0\",\"price\":\"580\",\"promo\":\"0\",\"status\":\"available\"}}', '[{\"id\":\"1\",\"is_email\":\"false\",\"is_phone\":\"false\",\"add_to_day_hour_info\":\"false\",\"add_to_day_hour_body\":\"false\",\"translation\":\"First name\",\"value\":\"Lauren\"},{\"id\":\"2\",\"is_email\":\"false\",\"is_phone\":\"false\",\"add_to_day_hour_info\":\"false\",\"add_to_day_hour_body\":\"false\",\"translation\":\"Last name\",\"value\":\"Pretorius\"},{\"id\":\"3\",\"is_email\":\"true\",\"is_phone\":\"false\",\"add_to_day_hour_info\":\"false\",\"add_to_day_hour_body\":\"false\",\"translation\":\"Email\",\"value\":\"Lauren.pretorius00@gmail.com\"},{\"id\":\"4\",\"is_email\":\"false\",\"is_phone\":\"false\",\"add_to_day_hour_info\":\"false\",\"add_to_day_hour_body\":\"false\",\"translation\":\"Phone\",\"value\":\"0824533945\"},{\"id\":\"5\",\"is_email\":\"false\",\"is_phone\":\"false\",\"add_to_day_hour_info\":\"false\",\"add_to_day_hour_body\":\"false\",\"translation\":\"Message\",\"value\":\"\"}]', '', '', 'Lauren.pretorius00@gmail.com', 'expired', 'none', 'pending', '', '', '2019-06-30 06:12:38', '', '', 'pinpoint', '51@msla.co.za/lodge', ''),
(52, 1, 'en', '&#82;', 'ZAR', '2019-07-10', '2019-07-18', '', '', 1, 4640, 4240, 0, '[{\"group_id\":\"5\",\"group_translation\":\"Meals\",\"id\":\"12\",\"operation\":\"+\",\"price\":\"95\",\"price_by\":\"period\",\"price_type\":\"fixed\",\"no_items_multiply\":\"true\",\"translation\":\"Breakfast\",\"price_total\":\"760\"}]', 760, '{\"id\":\"2\",\"rule_id\":\"0\",\"operation\":\"-\",\"price\":\"145\",\"price_type\":\"fixed\",\"price_by\":\"period\",\"start_date\":\"\",\"end_date\":\"\",\"start_hour\":\"\",\"end_hour\":\"\",\"translation\":\"3+ Night Discount\"}', -1160, '{\"id\":\"0\",\"code\":\"\",\"operation\":\"-\",\"price\":\"0\",\"price_type\":\"percent\",\"price_by\":\"once\",\"translation\":\"\"}', 0, '[{\"id\":\"1\",\"user_id\":\"1\",\"name\":\"VAT\",\"operation\":\"+\",\"price\":\"15\",\"price_type\":\"percent\",\"price_by\":\"once\",\"included\":\"true\",\"extras\":\"true\",\"cart\":\"true\",\"translation\":\"VAT\",\"price_total\":\"0\"}]', 0, '{\"price\":\"100\",\"price_type\":\"percent\"}', 4240, '{\"2019-07-10\":{\"available\":\"10\",\"bind\":\"0\",\"price\":\"580\",\"promo\":\"0\",\"status\":\"available\"},\"2019-07-11\":{\"available\":\"10\",\"bind\":\"0\",\"price\":\"580\",\"promo\":\"0\",\"status\":\"available\"},\"2019-07-12\":{\"available\":\"10\",\"bind\":\"0\",\"price\":\"580\",\"promo\":\"0\",\"status\":\"available\"},\"2019-07-13\":{\"available\":\"10\",\"bind\":\"0\",\"price\":\"580\",\"promo\":\"0\",\"status\":\"available\"},\"2019-07-14\":{\"available\":\"10\",\"bind\":\"0\",\"price\":\"580\",\"promo\":\"0\",\"status\":\"available\"},\"2019-07-15\":{\"available\":\"10\",\"bind\":\"0\",\"price\":\"580\",\"promo\":\"0\",\"status\":\"available\"},\"2019-07-16\":{\"available\":\"10\",\"bind\":\"0\",\"price\":\"580\",\"promo\":\"0\",\"status\":\"available\"},\"2019-07-17\":{\"available\":\"10\",\"bind\":\"0\",\"price\":\"580\",\"promo\":\"0\",\"status\":\"available\"}}', '[{\"id\":\"1\",\"is_email\":\"false\",\"is_phone\":\"false\",\"add_to_day_hour_info\":\"false\",\"add_to_day_hour_body\":\"false\",\"translation\":\"First name\",\"value\":\"asdasd\"},{\"id\":\"2\",\"is_email\":\"false\",\"is_phone\":\"false\",\"add_to_day_hour_info\":\"false\",\"add_to_day_hour_body\":\"false\",\"translation\":\"Last name\",\"value\":\"asdasd\"},{\"id\":\"3\",\"is_email\":\"true\",\"is_phone\":\"false\",\"add_to_day_hour_info\":\"false\",\"add_to_day_hour_body\":\"false\",\"translation\":\"Email\",\"value\":\"info@theclevergoose.co.za\"},{\"id\":\"4\",\"is_email\":\"false\",\"is_phone\":\"false\",\"add_to_day_hour_info\":\"false\",\"add_to_day_hour_body\":\"false\",\"translation\":\"Phone\",\"value\":\"0843629918\"},{\"id\":\"5\",\"is_email\":\"false\",\"is_phone\":\"false\",\"add_to_day_hour_info\":\"false\",\"add_to_day_hour_body\":\"false\",\"translation\":\"Message\",\"value\":\"sdsdfsdf\"}]', '', '', 'info@theclevergoose.co.za', 'expired', 'none', 'pending', '', '', '2019-07-01 07:13:55', '', '', 'pinpoint', '52@msla.co.za/lodge', ''),
(53, 1, 'en', '&#82;', 'ZAR', '2019-08-09', '2019-08-11', '', '', 1, 1160, 1540, 0, '[{\"group_id\":\"5\",\"group_translation\":\"Meals\",\"id\":\"12\",\"operation\":\"+\",\"price\":\"95\",\"price_by\":\"period\",\"price_type\":\"fixed\",\"no_items_multiply\":\"true\",\"translation\":\"Breakfast\",\"price_total\":\"190\"},{\"group_id\":\"5\",\"group_translation\":\"Meals\",\"id\":\"13\",\"operation\":\"+\",\"price\":\"180\",\"price_by\":\"period\",\"price_type\":\"fixed\",\"no_items_multiply\":\"true\",\"translation\":\"Dinner\",\"price_total\":\"360\"}]', 550, '{\"id\":\"1\",\"rule_id\":\"0\",\"operation\":\"-\",\"price\":\"85\",\"price_type\":\"fixed\",\"price_by\":\"period\",\"start_date\":\"\",\"end_date\":\"\",\"start_hour\":\"\",\"end_hour\":\"\",\"translation\":\"On-Line Discount\"}', -170, '{\"id\":\"0\",\"code\":\"\",\"operation\":\"-\",\"price\":\"0\",\"price_type\":\"percent\",\"price_by\":\"once\",\"translation\":\"\"}', 0, '[{\"id\":\"1\",\"user_id\":\"1\",\"name\":\"VAT\",\"operation\":\"+\",\"price\":\"15\",\"price_type\":\"percent\",\"price_by\":\"once\",\"included\":\"true\",\"extras\":\"true\",\"cart\":\"true\",\"translation\":\"VAT\",\"price_total\":\"0\"}]', 0, '{\"price\":\"100\",\"price_type\":\"percent\"}', 1540, '{\"2019-08-09\":{\"available\":\"10\",\"bind\":\"0\",\"price\":\"580\",\"promo\":\"0\",\"status\":\"available\"},\"2019-08-10\":{\"available\":\"10\",\"bind\":\"0\",\"price\":\"580\",\"promo\":\"0\",\"status\":\"available\"}}', '[{\"id\":\"1\",\"is_email\":\"false\",\"is_phone\":\"false\",\"add_to_day_hour_info\":\"false\",\"add_to_day_hour_body\":\"false\",\"translation\":\"First name\",\"value\":\"Lance\"},{\"id\":\"2\",\"is_email\":\"false\",\"is_phone\":\"false\",\"add_to_day_hour_info\":\"false\",\"add_to_day_hour_body\":\"false\",\"translation\":\"Last name\",\"value\":\"Mc Neil\"},{\"id\":\"3\",\"is_email\":\"true\",\"is_phone\":\"false\",\"add_to_day_hour_info\":\"false\",\"add_to_day_hour_body\":\"false\",\"translation\":\"Email\",\"value\":\"info@theclevergoose.co.za\"},{\"id\":\"4\",\"is_email\":\"false\",\"is_phone\":\"false\",\"add_to_day_hour_info\":\"false\",\"add_to_day_hour_body\":\"false\",\"translation\":\"Phone\",\"value\":\"0843629918\"},{\"id\":\"5\",\"is_email\":\"false\",\"is_phone\":\"false\",\"add_to_day_hour_info\":\"false\",\"add_to_day_hour_body\":\"false\",\"translation\":\"Message\",\"value\":\"DFGGFDSG\"}]', '', '', 'info@theclevergoose.co.za', 'expired', 'none', 'pending', '', '', '2019-07-01 07:26:54', '', '', 'pinpoint', '53@msla.co.za/lodge', ''),
(54, 1, 'en', '&#82;', 'ZAR', '2019-08-23', '2019-08-25', '', '', 3, 3480, 3120, 0, '[{\"group_id\":\"6\",\"group_translation\":\"Services\",\"id\":\"18\",\"operation\":\"+\",\"price\":\"25\",\"price_by\":\"period\",\"price_type\":\"fixed\",\"no_items_multiply\":\"true\",\"translation\":\"Lodge Cleaning\",\"price_total\":\"150\"}]', 150, '{\"id\":\"1\",\"rule_id\":\"0\",\"operation\":\"-\",\"price\":\"85\",\"price_type\":\"fixed\",\"price_by\":\"period\",\"start_date\":\"\",\"end_date\":\"\",\"start_hour\":\"\",\"end_hour\":\"\",\"translation\":\"On-Line Discount\"}', -510, '{\"id\":\"0\",\"code\":\"\",\"operation\":\"-\",\"price\":\"0\",\"price_type\":\"percent\",\"price_by\":\"once\",\"translation\":\"\"}', 0, '[{\"id\":\"1\",\"user_id\":\"1\",\"name\":\"VAT\",\"operation\":\"+\",\"price\":\"15\",\"price_type\":\"percent\",\"price_by\":\"once\",\"included\":\"true\",\"extras\":\"true\",\"cart\":\"true\",\"translation\":\"VAT\",\"price_total\":\"0\"}]', 0, '{\"price\":\"100\",\"price_type\":\"percent\"}', 3120, '{\"2019-08-23\":{\"available\":\"10\",\"bind\":\"0\",\"price\":\"580\",\"promo\":\"0\",\"status\":\"available\"},\"2019-08-24\":{\"available\":\"10\",\"bind\":\"0\",\"price\":\"580\",\"promo\":\"0\",\"status\":\"available\"}}', '[{\"id\":\"1\",\"is_email\":\"false\",\"is_phone\":\"false\",\"add_to_day_hour_info\":\"false\",\"add_to_day_hour_body\":\"false\",\"translation\":\"First name\",\"value\":\"Maxine\"},{\"id\":\"2\",\"is_email\":\"false\",\"is_phone\":\"false\",\"add_to_day_hour_info\":\"false\",\"add_to_day_hour_body\":\"false\",\"translation\":\"Last name\",\"value\":\"Walker\"},{\"id\":\"3\",\"is_email\":\"true\",\"is_phone\":\"false\",\"add_to_day_hour_info\":\"false\",\"add_to_day_hour_body\":\"false\",\"translation\":\"Email\",\"value\":\"maxinewalker88@gmail.com\"},{\"id\":\"4\",\"is_email\":\"false\",\"is_phone\":\"false\",\"add_to_day_hour_info\":\"false\",\"add_to_day_hour_body\":\"false\",\"translation\":\"Phone\",\"value\":\"0615889572\"},{\"id\":\"5\",\"is_email\":\"false\",\"is_phone\":\"false\",\"add_to_day_hour_info\":\"false\",\"add_to_day_hour_body\":\"false\",\"translation\":\"Message\",\"value\":\"Hi Lance , I have stayed in your beautiful space a couple of times before , would love to add another stay to our calendar\"}]', '', '', 'maxinewalker88@gmail.com', 'expired', 'none', 'pending', '', '', '2019-07-22 10:17:58', '', '', 'pinpoint', '54@msla.co.za/lodge', ''),
(55, 1, 'en', '&#82;', 'ZAR', '2019-11-08', '2019-11-10', '', '', 4, 4640, 3960, 0, '', 0, '{\"id\":\"1\",\"rule_id\":\"0\",\"operation\":\"-\",\"price\":\"85\",\"price_type\":\"fixed\",\"price_by\":\"period\",\"start_date\":\"\",\"end_date\":\"\",\"start_hour\":\"\",\"end_hour\":\"\",\"translation\":\"On-Line Discount\"}', -680, '{\"id\":\"0\",\"code\":\"\",\"operation\":\"-\",\"price\":\"0\",\"price_type\":\"percent\",\"price_by\":\"once\",\"translation\":\"\"}', 0, '[{\"id\":\"1\",\"user_id\":\"1\",\"name\":\"VAT\",\"operation\":\"+\",\"price\":\"15\",\"price_type\":\"percent\",\"price_by\":\"once\",\"included\":\"true\",\"extras\":\"true\",\"cart\":\"true\",\"translation\":\"VAT\",\"price_total\":\"0\"}]', 0, '{\"price\":\"100\",\"price_type\":\"percent\"}', 3960, '{\"2019-11-08\":{\"available\":\"10\",\"bind\":\"0\",\"price\":\"580\",\"promo\":\"0\",\"status\":\"available\"},\"2019-11-09\":{\"available\":\"10\",\"bind\":\"0\",\"price\":\"580\",\"promo\":\"0\",\"status\":\"available\"}}', '[{\"id\":\"1\",\"is_email\":\"false\",\"is_phone\":\"false\",\"add_to_day_hour_info\":\"false\",\"add_to_day_hour_body\":\"false\",\"translation\":\"First name\",\"value\":\"Cindy\"},{\"id\":\"2\",\"is_email\":\"false\",\"is_phone\":\"false\",\"add_to_day_hour_info\":\"false\",\"add_to_day_hour_body\":\"false\",\"translation\":\"Last name\",\"value\":\"Cloete\"},{\"id\":\"3\",\"is_email\":\"true\",\"is_phone\":\"false\",\"add_to_day_hour_info\":\"false\",\"add_to_day_hour_body\":\"false\",\"translation\":\"Email\",\"value\":\"cindy@mto.group\"},{\"id\":\"4\",\"is_email\":\"false\",\"is_phone\":\"false\",\"add_to_day_hour_info\":\"false\",\"add_to_day_hour_body\":\"false\",\"translation\":\"Phone\",\"value\":\"0823197123\"},{\"id\":\"5\",\"is_email\":\"false\",\"is_phone\":\"false\",\"add_to_day_hour_info\":\"false\",\"add_to_day_hour_body\":\"false\",\"translation\":\"Message\",\"value\":\"\"}]', '', '', 'cindy@mto.group', 'expired', 'none', 'pending', '', '', '2019-07-24 11:21:26', '', '', 'pinpoint', '55@msla.co.za/lodge', ''),
(56, 1, 'en', '&#82;', 'ZAR', '2019-10-19', '2019-10-20', '', '', 2, 1160, 990, 0, '', 0, '{\"id\":\"1\",\"rule_id\":\"0\",\"operation\":\"-\",\"price\":\"85\",\"price_type\":\"fixed\",\"price_by\":\"period\",\"start_date\":\"\",\"end_date\":\"\",\"start_hour\":\"\",\"end_hour\":\"\",\"translation\":\"On-Line Discount\"}', -170, '{\"id\":\"0\",\"code\":\"\",\"operation\":\"-\",\"price\":\"0\",\"price_type\":\"percent\",\"price_by\":\"once\",\"translation\":\"\"}', 0, '[{\"id\":\"1\",\"user_id\":\"1\",\"name\":\"VAT\",\"operation\":\"+\",\"price\":\"15\",\"price_type\":\"percent\",\"price_by\":\"once\",\"included\":\"true\",\"extras\":\"true\",\"cart\":\"true\",\"translation\":\"VAT\",\"price_total\":\"0\"}]', 0, '{\"price\":\"100\",\"price_type\":\"percent\"}', 990, '{\"2019-10-19\":{\"available\":\"10\",\"bind\":\"0\",\"price\":\"580\",\"promo\":\"0\",\"status\":\"available\"}}', '[{\"id\":\"1\",\"is_email\":\"false\",\"is_phone\":\"false\",\"add_to_day_hour_info\":\"false\",\"add_to_day_hour_body\":\"false\",\"translation\":\"First name\",\"value\":\"danielle\"},{\"id\":\"2\",\"is_email\":\"false\",\"is_phone\":\"false\",\"add_to_day_hour_info\":\"false\",\"add_to_day_hour_body\":\"false\",\"translation\":\"Last name\",\"value\":\"wright\"},{\"id\":\"3\",\"is_email\":\"true\",\"is_phone\":\"false\",\"add_to_day_hour_info\":\"false\",\"add_to_day_hour_body\":\"false\",\"translation\":\"Email\",\"value\":\"montis@mtkwikspar.co.za\"},{\"id\":\"4\",\"is_email\":\"false\",\"is_phone\":\"false\",\"add_to_day_hour_info\":\"false\",\"add_to_day_hour_body\":\"false\",\"translation\":\"Phone\",\"value\":\"0718609688\"},{\"id\":\"5\",\"is_email\":\"false\",\"is_phone\":\"false\",\"add_to_day_hour_info\":\"false\",\"add_to_day_hour_body\":\"false\",\"translation\":\"Message\",\"value\":\"\"}]', '', '', 'montis@mtkwikspar.co.za', 'expired', 'none', 'pending', '', '', '2019-09-18 09:18:58', '', '', 'pinpoint', '56@msla.co.za/lodge', ''),
(57, 1, 'en', '&#82;', 'ZAR', '2019-12-01', '2019-12-02', '', '', 6, 3480, 2970, 0, '', 0, '{\"id\":\"1\",\"rule_id\":\"0\",\"operation\":\"-\",\"price\":\"85\",\"price_type\":\"fixed\",\"price_by\":\"period\",\"start_date\":\"\",\"end_date\":\"\",\"start_hour\":\"\",\"end_hour\":\"\",\"translation\":\"On-Line Discount\"}', -510, '{\"id\":\"0\",\"code\":\"\",\"operation\":\"-\",\"price\":\"0\",\"price_type\":\"percent\",\"price_by\":\"once\",\"translation\":\"\"}', 0, '[{\"id\":\"1\",\"user_id\":\"1\",\"name\":\"VAT\",\"operation\":\"+\",\"price\":\"15\",\"price_type\":\"percent\",\"price_by\":\"once\",\"included\":\"true\",\"extras\":\"true\",\"cart\":\"true\",\"translation\":\"VAT\",\"price_total\":\"0\"}]', 0, '{\"price\":\"100\",\"price_type\":\"percent\"}', 2970, '{\"2019-12-01\":{\"available\":\"10\",\"bind\":\"0\",\"price\":\"580\",\"promo\":\"0\",\"status\":\"available\"}}', '[{\"id\":\"1\",\"is_email\":\"false\",\"is_phone\":\"false\",\"add_to_day_hour_info\":\"false\",\"add_to_day_hour_body\":\"false\",\"translation\":\"First name\",\"value\":\"Gary\"},{\"id\":\"2\",\"is_email\":\"false\",\"is_phone\":\"false\",\"add_to_day_hour_info\":\"false\",\"add_to_day_hour_body\":\"false\",\"translation\":\"Last name\",\"value\":\"Combrink\"},{\"id\":\"3\",\"is_email\":\"true\",\"is_phone\":\"false\",\"add_to_day_hour_info\":\"false\",\"add_to_day_hour_body\":\"false\",\"translation\":\"Email\",\"value\":\"gary@combrink.com\"},{\"id\":\"4\",\"is_email\":\"false\",\"is_phone\":\"false\",\"add_to_day_hour_info\":\"false\",\"add_to_day_hour_body\":\"false\",\"translation\":\"Phone\",\"value\":\"0832120416\"},{\"id\":\"5\",\"is_email\":\"false\",\"is_phone\":\"false\",\"add_to_day_hour_info\":\"false\",\"add_to_day_hour_body\":\"false\",\"translation\":\"Message\",\"value\":\"4 adults and 2 children (2 and 3)\"}]', '', '', 'gary@combrink.com', 'expired', 'none', 'pending', '', '', '2019-11-30 09:58:51', '', '', 'pinpoint', '57@msla.co.za/lodge', ''),
(58, 1, 'en', '&#82;', 'ZAR', '2020-05-02', '2020-05-03', '', '', 1, 0, 10, 0, '[{\"group_id\":\"5\",\"group_translation\":\"Meals\",\"id\":\"12\",\"operation\":\"+\",\"price\":\"95\",\"price_by\":\"period\",\"price_type\":\"fixed\",\"no_items_multiply\":\"true\",\"translation\":\"Breakfast\",\"price_total\":\"95\"}]', 95, '{\"id\":\"1\",\"rule_id\":\"0\",\"operation\":\"-\",\"price\":\"85\",\"price_type\":\"fixed\",\"price_by\":\"period\",\"start_date\":\"\",\"end_date\":\"\",\"start_hour\":\"\",\"end_hour\":\"\",\"translation\":\"On-Line Discount\"}', -85, '{\"id\":\"0\",\"code\":\"\",\"operation\":\"-\",\"price\":\"0\",\"price_type\":\"percent\",\"price_by\":\"once\",\"translation\":\"\"}', 0, '[{\"id\":\"1\",\"user_id\":\"1\",\"name\":\"VAT\",\"operation\":\"+\",\"price\":\"15\",\"price_type\":\"percent\",\"price_by\":\"once\",\"included\":\"true\",\"extras\":\"true\",\"cart\":\"true\",\"translation\":\"VAT\",\"price_total\":\"0\"}]', 0, '{\"price\":\"100\",\"price_type\":\"percent\"}', 10, '{\"2020-05-02\":{\"available\":\"1\",\"bind\":\"0\",\"price\":\"0\",\"promo\":\"0\",\"status\":\"unavailable\"}}', '[{\"id\":\"1\",\"is_email\":\"false\",\"is_phone\":\"false\",\"add_to_day_hour_info\":\"false\",\"add_to_day_hour_body\":\"false\",\"translation\":\"First name\",\"value\":\"Danielle\"},{\"id\":\"2\",\"is_email\":\"false\",\"is_phone\":\"false\",\"add_to_day_hour_info\":\"false\",\"add_to_day_hour_body\":\"false\",\"translation\":\"Last name\",\"value\":\"Harel\"},{\"id\":\"3\",\"is_email\":\"true\",\"is_phone\":\"false\",\"add_to_day_hour_info\":\"false\",\"add_to_day_hour_body\":\"false\",\"translation\":\"Email\",\"value\":\"dhharel@intnet.mu\"},{\"id\":\"4\",\"is_email\":\"false\",\"is_phone\":\"false\",\"add_to_day_hour_info\":\"false\",\"add_to_day_hour_body\":\"false\",\"translation\":\"Phone\",\"value\":\"+23052528862\"},{\"id\":\"5\",\"is_email\":\"false\",\"is_phone\":\"false\",\"add_to_day_hour_info\":\"false\",\"add_to_day_hour_body\":\"false\",\"translation\":\"Message\",\"value\":\"Price please\"}]', '', '', 'dhharel@intnet.mu', 'expired', 'none', 'pending', '', '', '2020-01-04 07:59:52', '', '', 'pinpoint', '58@msla.co.za/lodge', ''),
(59, 1, 'en', '&#82;', 'ZAR', '2020-07-17', '2020-07-19', '', '', 1, 0, 70, 0, '[{\"group_id\":\"5\",\"group_translation\":\"Meals\",\"id\":\"12\",\"operation\":\"+\",\"price\":\"95\",\"price_by\":\"period\",\"price_type\":\"fixed\",\"no_items_multiply\":\"true\",\"translation\":\"Breakfast\",\"price_total\":\"190\"},{\"group_id\":\"6\",\"group_translation\":\"Services\",\"id\":\"17\",\"operation\":\"+\",\"price\":\"25\",\"price_by\":\"period\",\"price_type\":\"fixed\",\"no_items_multiply\":\"true\",\"translation\":\"Room Cleaning\",\"price_total\":\"50\"}]', 240, '{\"id\":\"1\",\"rule_id\":\"0\",\"operation\":\"-\",\"price\":\"85\",\"price_type\":\"fixed\",\"price_by\":\"period\",\"start_date\":\"\",\"end_date\":\"\",\"start_hour\":\"\",\"end_hour\":\"\",\"translation\":\"On-Line Discount\"}', -170, '{\"id\":\"0\",\"code\":\"\",\"operation\":\"-\",\"price\":\"0\",\"price_type\":\"percent\",\"price_by\":\"once\",\"translation\":\"\"}', 0, '[{\"id\":\"1\",\"user_id\":\"1\",\"name\":\"VAT\",\"operation\":\"+\",\"price\":\"15\",\"price_type\":\"percent\",\"price_by\":\"once\",\"included\":\"true\",\"extras\":\"true\",\"cart\":\"true\",\"translation\":\"VAT\",\"price_total\":\"0\"}]', 0, '{\"price\":\"100\",\"price_type\":\"percent\"}', 70, '{\"2020-07-17\":{\"available\":\"1\",\"bind\":\"0\",\"price\":\"0\",\"promo\":\"0\",\"status\":\"unavailable\"},\"2020-07-18\":{\"available\":\"1\",\"bind\":\"0\",\"price\":\"0\",\"promo\":\"0\",\"status\":\"unavailable\"}}', '[{\"id\":\"1\",\"is_email\":\"false\",\"is_phone\":\"false\",\"add_to_day_hour_info\":\"false\",\"add_to_day_hour_body\":\"false\",\"translation\":\"First name\",\"value\":\"Roxana\"},{\"id\":\"2\",\"is_email\":\"false\",\"is_phone\":\"false\",\"add_to_day_hour_info\":\"false\",\"add_to_day_hour_body\":\"false\",\"translation\":\"Last name\",\"value\":\"Linderboom\"},{\"id\":\"3\",\"is_email\":\"true\",\"is_phone\":\"false\",\"add_to_day_hour_info\":\"false\",\"add_to_day_hour_body\":\"false\",\"translation\":\"Email\",\"value\":\"roxanalinderboom@gmail.com\"},{\"id\":\"4\",\"is_email\":\"false\",\"is_phone\":\"false\",\"add_to_day_hour_info\":\"false\",\"add_to_day_hour_body\":\"false\",\"translation\":\"Phone\",\"value\":\"0739513048\"},{\"id\":\"5\",\"is_email\":\"false\",\"is_phone\":\"false\",\"add_to_day_hour_info\":\"false\",\"add_to_day_hour_body\":\"false\",\"translation\":\"Message\",\"value\":\"Is the house available for 10 adults on this weekend. We attending a wedding\"}]', '', '', 'roxanalinderboom@gmail.com', 'expired', 'none', 'pending', '', '', '2020-01-28 07:24:18', '', '', 'pinpoint', '59@msla.co.za/lodge', ''),
(60, 1, 'en', '&#82;', 'ZAR', '2020-02-14', '2020-02-15', '', '', 1, 580, 520, 0, '[{\"group_id\":\"6\",\"group_translation\":\"Services\",\"id\":\"17\",\"operation\":\"+\",\"price\":\"25\",\"price_by\":\"period\",\"price_type\":\"fixed\",\"no_items_multiply\":\"true\",\"translation\":\"Room Cleaning\",\"price_total\":\"25\"}]', 25, '{\"id\":\"1\",\"rule_id\":\"0\",\"operation\":\"-\",\"price\":\"85\",\"price_type\":\"fixed\",\"price_by\":\"period\",\"start_date\":\"\",\"end_date\":\"\",\"start_hour\":\"\",\"end_hour\":\"\",\"translation\":\"On-Line Discount\"}', -85, '{\"id\":\"0\",\"code\":\"\",\"operation\":\"-\",\"price\":\"0\",\"price_type\":\"percent\",\"price_by\":\"once\",\"translation\":\"\"}', 0, '[{\"id\":\"1\",\"user_id\":\"1\",\"name\":\"VAT\",\"operation\":\"+\",\"price\":\"15\",\"price_type\":\"percent\",\"price_by\":\"once\",\"included\":\"true\",\"extras\":\"true\",\"cart\":\"true\",\"translation\":\"VAT\",\"price_total\":\"0\"}]', 0, '{\"price\":\"100\",\"price_type\":\"percent\"}', 520, '{\"2020-02-14\":{\"available\":\"10\",\"bind\":\"0\",\"price\":\"580\",\"promo\":\"0\",\"status\":\"available\"}}', '[{\"id\":\"1\",\"is_email\":\"false\",\"is_phone\":\"false\",\"add_to_day_hour_info\":\"false\",\"add_to_day_hour_body\":\"false\",\"translation\":\"First name\",\"value\":\"Jane\"},{\"id\":\"2\",\"is_email\":\"false\",\"is_phone\":\"false\",\"add_to_day_hour_info\":\"false\",\"add_to_day_hour_body\":\"false\",\"translation\":\"Last name\",\"value\":\"Duminy\"},{\"id\":\"3\",\"is_email\":\"true\",\"is_phone\":\"false\",\"add_to_day_hour_info\":\"false\",\"add_to_day_hour_body\":\"false\",\"translation\":\"Email\",\"value\":\"dubinox@gmail.com\"},{\"id\":\"4\",\"is_email\":\"false\",\"is_phone\":\"false\",\"add_to_day_hour_info\":\"false\",\"add_to_day_hour_body\":\"false\",\"translation\":\"Phone\",\"value\":\"0610541035\"},{\"id\":\"5\",\"is_email\":\"false\",\"is_phone\":\"false\",\"add_to_day_hour_info\":\"false\",\"add_to_day_hour_body\":\"false\",\"translation\":\"Message\",\"value\":\"Please call me I need to talk to you tha ks\"}]', '', '', 'dubinox@gmail.com', 'expired', 'none', 'pending', '', '', '2020-02-13 17:17:10', '', '', 'pinpoint', '60@msla.co.za/lodge', ''),
(61, 1, 'en', '&#82;', 'ZAR', '2020-03-14', '2020-03-15', '', '', 1, 580, 495, 0, '', 0, '{\"id\":\"1\",\"rule_id\":\"0\",\"operation\":\"-\",\"price\":\"85\",\"price_type\":\"fixed\",\"price_by\":\"period\",\"start_date\":\"\",\"end_date\":\"\",\"start_hour\":\"\",\"end_hour\":\"\",\"translation\":\"On-Line Discount\"}', -85, '{\"id\":\"0\",\"code\":\"\",\"operation\":\"-\",\"price\":\"0\",\"price_type\":\"percent\",\"price_by\":\"once\",\"translation\":\"\"}', 0, '[{\"id\":\"1\",\"user_id\":\"1\",\"name\":\"VAT\",\"operation\":\"+\",\"price\":\"15\",\"price_type\":\"percent\",\"price_by\":\"once\",\"included\":\"true\",\"extras\":\"true\",\"cart\":\"true\",\"translation\":\"VAT\",\"price_total\":\"0\"}]', 0, '{\"price\":\"100\",\"price_type\":\"percent\"}', 495, '{\"2020-03-14\":{\"available\":\"10\",\"bind\":\"0\",\"price\":\"580\",\"promo\":\"0\",\"status\":\"available\"}}', '[{\"id\":\"1\",\"is_email\":\"false\",\"is_phone\":\"false\",\"add_to_day_hour_info\":\"false\",\"add_to_day_hour_body\":\"false\",\"translation\":\"First name\",\"value\":\"CHALKIE\"},{\"id\":\"2\",\"is_email\":\"false\",\"is_phone\":\"false\",\"add_to_day_hour_info\":\"false\",\"add_to_day_hour_body\":\"false\",\"translation\":\"Last name\",\"value\":\"GOVENDER\"},{\"id\":\"3\",\"is_email\":\"true\",\"is_phone\":\"false\",\"add_to_day_hour_info\":\"false\",\"add_to_day_hour_body\":\"false\",\"translation\":\"Email\",\"value\":\"premie.govender@crownfood.co.za\"},{\"id\":\"4\",\"is_email\":\"false\",\"is_phone\":\"false\",\"add_to_day_hour_info\":\"false\",\"add_to_day_hour_body\":\"false\",\"translation\":\"Phone\",\"value\":\"0833888461\"},{\"id\":\"5\",\"is_email\":\"false\",\"is_phone\":\"false\",\"add_to_day_hour_info\":\"false\",\"add_to_day_hour_body\":\"false\",\"translation\":\"Message\",\"value\":\"single rate.\"}]', '', '', 'premie.govender@crownfood.co.za', 'expired', 'none', 'pending', '', '', '2020-03-02 11:35:59', '', '', 'pinpoint', '61@msla.co.za/lodge', ''),
(62, 1, 'en', '&#82;', 'ZAR', '2020-11-21', '2020-11-22', '', '', 5, 2900, 2475, 0, '', 0, '{\"id\":\"1\",\"rule_id\":\"0\",\"operation\":\"-\",\"price\":\"85\",\"price_type\":\"fixed\",\"price_by\":\"period\",\"start_date\":\"\",\"end_date\":\"\",\"start_hour\":\"\",\"end_hour\":\"\",\"translation\":\"On-Line Discount\"}', -425, '{\"id\":\"0\",\"code\":\"\",\"operation\":\"-\",\"price\":\"0\",\"price_type\":\"percent\",\"price_by\":\"once\",\"translation\":\"\"}', 0, '[{\"id\":\"1\",\"user_id\":\"1\",\"name\":\"VAT\",\"operation\":\"+\",\"price\":\"15\",\"price_type\":\"percent\",\"price_by\":\"once\",\"included\":\"true\",\"extras\":\"true\",\"cart\":\"true\",\"translation\":\"VAT\",\"price_total\":\"0\"}]', 0, '{\"price\":\"100\",\"price_type\":\"percent\"}', 2475, '{\"2020-11-21\":{\"available\":\"10\",\"bind\":\"0\",\"price\":\"580\",\"promo\":\"0\",\"status\":\"available\"}}', '[{\"id\":\"1\",\"is_email\":\"false\",\"is_phone\":\"false\",\"add_to_day_hour_info\":\"false\",\"add_to_day_hour_body\":\"false\",\"translation\":\"First name\",\"value\":\"Liza\"},{\"id\":\"2\",\"is_email\":\"false\",\"is_phone\":\"false\",\"add_to_day_hour_info\":\"false\",\"add_to_day_hour_body\":\"false\",\"translation\":\"Last name\",\"value\":\"Kimble\"},{\"id\":\"3\",\"is_email\":\"true\",\"is_phone\":\"false\",\"add_to_day_hour_info\":\"false\",\"add_to_day_hour_body\":\"false\",\"translation\":\"Email\",\"value\":\"Lizasimonekimble@gmail.com\"},{\"id\":\"4\",\"is_email\":\"false\",\"is_phone\":\"false\",\"add_to_day_hour_info\":\"false\",\"add_to_day_hour_body\":\"false\",\"translation\":\"Phone\",\"value\":\"0823086609\"},{\"id\":\"5\",\"is_email\":\"false\",\"is_phone\":\"false\",\"add_to_day_hour_info\":\"false\",\"add_to_day_hour_body\":\"false\",\"translation\":\"Message\",\"value\":\"Hello we are 2 adults and 3 children ranging in ages from 12 to 16. We are attending a wedding on Saturday the 21st.\"}]', '', '', 'Lizasimonekimble@gmail.com', 'expired', 'none', 'pending', '', '', '2020-10-29 04:41:42', '', '', 'pinpoint', '62@msla.co.za/lodge', ''),
(63, 1, 'en', '&#82;', 'ZAR', '2020-12-04', '2020-12-06', '', '', 1, 1160, 990, 0, '', 0, '{\"id\":\"1\",\"rule_id\":\"0\",\"operation\":\"-\",\"price\":\"85\",\"price_type\":\"fixed\",\"price_by\":\"period\",\"start_date\":\"\",\"end_date\":\"\",\"start_hour\":\"\",\"end_hour\":\"\",\"translation\":\"On-Line Discount\"}', -170, '{\"id\":\"0\",\"code\":\"\",\"operation\":\"-\",\"price\":\"0\",\"price_type\":\"percent\",\"price_by\":\"once\",\"translation\":\"\"}', 0, '[{\"id\":\"1\",\"user_id\":\"1\",\"name\":\"VAT\",\"operation\":\"+\",\"price\":\"15\",\"price_type\":\"percent\",\"price_by\":\"once\",\"included\":\"true\",\"extras\":\"true\",\"cart\":\"true\",\"translation\":\"VAT\",\"price_total\":\"0\"}]', 0, '{\"price\":\"100\",\"price_type\":\"percent\"}', 990, '{\"2020-12-04\":{\"available\":\"10\",\"bind\":\"0\",\"price\":\"580\",\"promo\":\"0\",\"status\":\"available\"},\"2020-12-05\":{\"available\":\"10\",\"bind\":\"0\",\"price\":\"580\",\"promo\":\"0\",\"status\":\"available\"}}', '[{\"id\":\"1\",\"is_email\":\"false\",\"is_phone\":\"false\",\"add_to_day_hour_info\":\"false\",\"add_to_day_hour_body\":\"false\",\"translation\":\"First name\",\"value\":\"Vusi\"},{\"id\":\"2\",\"is_email\":\"false\",\"is_phone\":\"false\",\"add_to_day_hour_info\":\"false\",\"add_to_day_hour_body\":\"false\",\"translation\":\"Last name\",\"value\":\"Sibanyoni\"},{\"id\":\"3\",\"is_email\":\"true\",\"is_phone\":\"false\",\"add_to_day_hour_info\":\"false\",\"add_to_day_hour_body\":\"false\",\"translation\":\"Email\",\"value\":\"malambulevusi@gmail.com\"},{\"id\":\"4\",\"is_email\":\"false\",\"is_phone\":\"false\",\"add_to_day_hour_info\":\"false\",\"add_to_day_hour_body\":\"false\",\"translation\":\"Phone\",\"value\":\"+27614380367\"},{\"id\":\"5\",\"is_email\":\"false\",\"is_phone\":\"false\",\"add_to_day_hour_info\":\"false\",\"add_to_day_hour_body\":\"false\",\"translation\":\"Message\",\"value\":\"I need accommodation from the 4th to the 6th of December\"}]', '', '', 'malambulevusi@gmail.com', 'expired', 'none', 'pending', '', '', '2020-10-30 23:32:52', '', '', 'pinpoint', '63@msla.co.za/lodge', '');
INSERT INTO `wp_dopbsp_reservations` (`id`, `calendar_id`, `language`, `currency`, `currency_code`, `check_in`, `check_out`, `start_hour`, `end_hour`, `no_items`, `price`, `price_total`, `refund`, `extras`, `extras_price`, `discount`, `discount_price`, `coupon`, `coupon_price`, `fees`, `fees_price`, `deposit`, `deposit_price`, `days_hours_history`, `form`, `address_billing`, `address_shipping`, `email`, `status`, `payment_method`, `payment_status`, `transaction_id`, `token`, `date_created`, `phone`, `ip`, `reservation_from`, `uid`, `stripe_user`) VALUES
(64, 1, 'en', '&#82;', 'ZAR', '2020-12-29', '2021-01-02', '', '', 1, 1740, 1260, 0, '[{\"group_id\":\"6\",\"group_translation\":\"Services\",\"id\":\"18\",\"operation\":\"+\",\"price\":\"25\",\"price_by\":\"period\",\"price_type\":\"fixed\",\"no_items_multiply\":\"true\",\"translation\":\"Lodge Cleaning\",\"price_total\":\"100\"}]', 100, '{\"id\":\"2\",\"rule_id\":\"0\",\"operation\":\"-\",\"price\":\"145\",\"price_type\":\"fixed\",\"price_by\":\"period\",\"start_date\":\"\",\"end_date\":\"\",\"start_hour\":\"\",\"end_hour\":\"\",\"translation\":\"3+ Night Discount\"}', -580, '{\"id\":\"0\",\"code\":\"\",\"operation\":\"-\",\"price\":\"0\",\"price_type\":\"percent\",\"price_by\":\"once\",\"translation\":\"\"}', 0, '[{\"id\":\"1\",\"user_id\":\"1\",\"name\":\"VAT\",\"operation\":\"+\",\"price\":\"15\",\"price_type\":\"percent\",\"price_by\":\"once\",\"included\":\"true\",\"extras\":\"true\",\"cart\":\"true\",\"translation\":\"VAT\",\"price_total\":\"0\"}]', 0, '{\"price\":\"100\",\"price_type\":\"percent\"}', 1260, '{\"2020-12-29\":{\"available\":\"10\",\"bind\":\"0\",\"price\":\"580\",\"promo\":\"0\",\"status\":\"available\"},\"2020-12-30\":{\"available\":\"10\",\"bind\":\"0\",\"price\":\"580\",\"promo\":\"0\",\"status\":\"available\"},\"2020-12-31\":{\"available\":\"10\",\"bind\":\"0\",\"price\":\"580\",\"promo\":\"0\",\"status\":\"available\"},\"2021-01-01\":{\"available\":\"1\",\"bind\":\"0\",\"price\":\"0\",\"promo\":\"0\",\"status\":\"unavailable\"}}', '[{\"id\":\"1\",\"is_email\":\"false\",\"is_phone\":\"false\",\"add_to_day_hour_info\":\"false\",\"add_to_day_hour_body\":\"false\",\"translation\":\"First name\",\"value\":\"Neelam\"},{\"id\":\"2\",\"is_email\":\"false\",\"is_phone\":\"false\",\"add_to_day_hour_info\":\"false\",\"add_to_day_hour_body\":\"false\",\"translation\":\"Last name\",\"value\":\"Appanna\"},{\"id\":\"3\",\"is_email\":\"true\",\"is_phone\":\"false\",\"add_to_day_hour_info\":\"false\",\"add_to_day_hour_body\":\"false\",\"translation\":\"Email\",\"value\":\"neelam.appanna@outlook.com\"},{\"id\":\"4\",\"is_email\":\"false\",\"is_phone\":\"false\",\"add_to_day_hour_info\":\"false\",\"add_to_day_hour_body\":\"false\",\"translation\":\"Phone\",\"value\":\"0824952306\"},{\"id\":\"5\",\"is_email\":\"false\",\"is_phone\":\"false\",\"add_to_day_hour_info\":\"false\",\"add_to_day_hour_body\":\"false\",\"translation\":\"Message\",\"value\":\"Good day Kindly advise rates and availability for 29 Dec till 2nd Jan for 7 adults and 3 children. Thanks Neelam\"}]', '', '', 'neelam.appanna@outlook.com', 'expired', 'none', 'pending', '', '', '2020-11-15 16:40:03', '', '', 'pinpoint', '64@msla.co.za/lodge', ''),
(65, 1, 'en', '&#82;', 'ZAR', '2021-02-12', '2021-02-14', '', '', 1, 0, -170, 0, '', 0, '{\"id\":\"1\",\"rule_id\":\"0\",\"operation\":\"-\",\"price\":\"85\",\"price_type\":\"fixed\",\"price_by\":\"period\",\"start_date\":\"\",\"end_date\":\"\",\"start_hour\":\"\",\"end_hour\":\"\",\"translation\":\"On-Line Discount\"}', -170, '{\"id\":\"0\",\"code\":\"\",\"operation\":\"-\",\"price\":\"0\",\"price_type\":\"percent\",\"price_by\":\"once\",\"translation\":\"\"}', 0, '[{\"id\":\"1\",\"user_id\":\"1\",\"name\":\"VAT\",\"operation\":\"+\",\"price\":\"15\",\"price_type\":\"percent\",\"price_by\":\"once\",\"included\":\"true\",\"extras\":\"true\",\"cart\":\"true\",\"translation\":\"VAT\",\"price_total\":\"0\"}]', 0, '{\"price\":\"100\",\"price_type\":\"percent\"}', -170, '{\"2021-02-12\":{\"available\":\"1\",\"bind\":\"0\",\"price\":\"0\",\"promo\":\"0\",\"status\":\"unavailable\"},\"2021-02-13\":{\"available\":\"1\",\"bind\":\"0\",\"price\":\"0\",\"promo\":\"0\",\"status\":\"unavailable\"}}', '[{\"id\":\"1\",\"is_email\":\"false\",\"is_phone\":\"false\",\"add_to_day_hour_info\":\"false\",\"add_to_day_hour_body\":\"false\",\"translation\":\"First name\",\"value\":\"Vusi\"},{\"id\":\"2\",\"is_email\":\"false\",\"is_phone\":\"false\",\"add_to_day_hour_info\":\"false\",\"add_to_day_hour_body\":\"false\",\"translation\":\"Last name\",\"value\":\"Sibanyoni\"},{\"id\":\"3\",\"is_email\":\"true\",\"is_phone\":\"false\",\"add_to_day_hour_info\":\"false\",\"add_to_day_hour_body\":\"false\",\"translation\":\"Email\",\"value\":\"malambulevusi@gmail.com\"},{\"id\":\"4\",\"is_email\":\"false\",\"is_phone\":\"false\",\"add_to_day_hour_info\":\"false\",\"add_to_day_hour_body\":\"false\",\"translation\":\"Phone\",\"value\":\"+27614380367\"},{\"id\":\"5\",\"is_email\":\"false\",\"is_phone\":\"false\",\"add_to_day_hour_info\":\"false\",\"add_to_day_hour_body\":\"false\",\"translation\":\"Message\",\"value\":\"\"}]', '', '', 'malambulevusi@gmail.com', 'expired', 'none', 'pending', '', '', '2021-01-08 19:00:37', '', '', 'pinpoint', '65@msla.co.za/lodge', ''),
(66, 1, 'en', '&#82;', 'ZAR', '2021-03-05', '2021-03-07', '', '', 1, 0, 20, 0, '[{\"group_id\":\"5\",\"group_translation\":\"Meals\",\"id\":\"12\",\"operation\":\"+\",\"price\":\"95\",\"price_by\":\"period\",\"price_type\":\"fixed\",\"no_items_multiply\":\"true\",\"translation\":\"Breakfast\",\"price_total\":\"190\"}]', 190, '{\"id\":\"1\",\"rule_id\":\"0\",\"operation\":\"-\",\"price\":\"85\",\"price_type\":\"fixed\",\"price_by\":\"period\",\"start_date\":\"\",\"end_date\":\"\",\"start_hour\":\"\",\"end_hour\":\"\",\"translation\":\"On-Line Discount\"}', -170, '{\"id\":\"0\",\"code\":\"\",\"operation\":\"-\",\"price\":\"0\",\"price_type\":\"percent\",\"price_by\":\"once\",\"translation\":\"\"}', 0, '[{\"id\":\"1\",\"user_id\":\"1\",\"name\":\"VAT\",\"operation\":\"+\",\"price\":\"15\",\"price_type\":\"percent\",\"price_by\":\"once\",\"included\":\"true\",\"extras\":\"true\",\"cart\":\"true\",\"translation\":\"VAT\",\"price_total\":\"0\"}]', 0, '{\"price\":\"100\",\"price_type\":\"percent\"}', 20, '{\"2021-03-05\":{\"available\":\"1\",\"bind\":\"0\",\"price\":\"0\",\"promo\":\"0\",\"status\":\"unavailable\"},\"2021-03-06\":{\"available\":\"1\",\"bind\":\"0\",\"price\":\"0\",\"promo\":\"0\",\"status\":\"unavailable\"}}', '[{\"id\":\"1\",\"is_email\":\"false\",\"is_phone\":\"false\",\"add_to_day_hour_info\":\"false\",\"add_to_day_hour_body\":\"false\",\"translation\":\"First name\",\"value\":\"Vusi Collen\"},{\"id\":\"2\",\"is_email\":\"false\",\"is_phone\":\"false\",\"add_to_day_hour_info\":\"false\",\"add_to_day_hour_body\":\"false\",\"translation\":\"Last name\",\"value\":\"Sibanyoni\"},{\"id\":\"3\",\"is_email\":\"true\",\"is_phone\":\"false\",\"add_to_day_hour_info\":\"false\",\"add_to_day_hour_body\":\"false\",\"translation\":\"Email\",\"value\":\"malambulevusi@gmail.com\"},{\"id\":\"4\",\"is_email\":\"false\",\"is_phone\":\"false\",\"add_to_day_hour_info\":\"false\",\"add_to_day_hour_body\":\"false\",\"translation\":\"Phone\",\"value\":\"+27614380367\"},{\"id\":\"5\",\"is_email\":\"false\",\"is_phone\":\"false\",\"add_to_day_hour_info\":\"false\",\"add_to_day_hour_body\":\"false\",\"translation\":\"Message\",\"value\":\"\"}]', '', '', 'malambulevusi@gmail.com', 'expired', 'none', 'pending', '', '', '2021-03-01 18:21:52', '', '', 'pinpoint', '66@msla.co.za/lodge', ''),
(67, 1, 'en', '&#82;', 'ZAR', '2021-03-05', '2021-03-07', '', '', 1, 0, 20, 0, '[{\"group_id\":\"5\",\"group_translation\":\"Meals\",\"id\":\"12\",\"operation\":\"+\",\"price\":\"95\",\"price_by\":\"period\",\"price_type\":\"fixed\",\"no_items_multiply\":\"true\",\"translation\":\"Breakfast\",\"price_total\":\"190\"}]', 190, '{\"id\":\"1\",\"rule_id\":\"0\",\"operation\":\"-\",\"price\":\"85\",\"price_type\":\"fixed\",\"price_by\":\"period\",\"start_date\":\"\",\"end_date\":\"\",\"start_hour\":\"\",\"end_hour\":\"\",\"translation\":\"On-Line Discount\"}', -170, '{\"id\":\"0\",\"code\":\"\",\"operation\":\"-\",\"price\":\"0\",\"price_type\":\"percent\",\"price_by\":\"once\",\"translation\":\"\"}', 0, '[{\"id\":\"1\",\"user_id\":\"1\",\"name\":\"VAT\",\"operation\":\"+\",\"price\":\"15\",\"price_type\":\"percent\",\"price_by\":\"once\",\"included\":\"true\",\"extras\":\"true\",\"cart\":\"true\",\"translation\":\"VAT\",\"price_total\":\"0\"}]', 0, '{\"price\":\"100\",\"price_type\":\"percent\"}', 20, '{\"2021-03-05\":{\"available\":\"1\",\"bind\":\"0\",\"price\":\"0\",\"promo\":\"0\",\"status\":\"unavailable\"},\"2021-03-06\":{\"available\":\"1\",\"bind\":\"0\",\"price\":\"0\",\"promo\":\"0\",\"status\":\"unavailable\"}}', '[{\"id\":\"1\",\"is_email\":\"false\",\"is_phone\":\"false\",\"add_to_day_hour_info\":\"false\",\"add_to_day_hour_body\":\"false\",\"translation\":\"First name\",\"value\":\"Vusi Collen\"},{\"id\":\"2\",\"is_email\":\"false\",\"is_phone\":\"false\",\"add_to_day_hour_info\":\"false\",\"add_to_day_hour_body\":\"false\",\"translation\":\"Last name\",\"value\":\"Sibanyoni\"},{\"id\":\"3\",\"is_email\":\"true\",\"is_phone\":\"false\",\"add_to_day_hour_info\":\"false\",\"add_to_day_hour_body\":\"false\",\"translation\":\"Email\",\"value\":\"malambulevusi@gmail.com\"},{\"id\":\"4\",\"is_email\":\"false\",\"is_phone\":\"false\",\"add_to_day_hour_info\":\"false\",\"add_to_day_hour_body\":\"false\",\"translation\":\"Phone\",\"value\":\"+27614380367\"},{\"id\":\"5\",\"is_email\":\"false\",\"is_phone\":\"false\",\"add_to_day_hour_info\":\"false\",\"add_to_day_hour_body\":\"false\",\"translation\":\"Message\",\"value\":\"\"}]', '', '', 'malambulevusi@gmail.com', 'expired', 'none', 'pending', '', '', '2021-03-01 18:22:37', '', '', 'pinpoint', '67@msla.co.za/lodge', ''),
(68, 1, 'en', '&#82;', 'ZAR', '2021-04-17', '2021-04-18', '', '', 2, 1160, 1180, 0, '[{\"group_id\":\"5\",\"group_translation\":\"Meals\",\"id\":\"12\",\"operation\":\"+\",\"price\":\"95\",\"price_by\":\"period\",\"price_type\":\"fixed\",\"no_items_multiply\":\"true\",\"translation\":\"Breakfast\",\"price_total\":\"190\"}]', 190, '{\"id\":\"1\",\"rule_id\":\"0\",\"operation\":\"-\",\"price\":\"85\",\"price_type\":\"fixed\",\"price_by\":\"period\",\"start_date\":\"\",\"end_date\":\"\",\"start_hour\":\"\",\"end_hour\":\"\",\"translation\":\"On-Line Discount\"}', -170, '{\"id\":\"0\",\"code\":\"\",\"operation\":\"-\",\"price\":\"0\",\"price_type\":\"percent\",\"price_by\":\"once\",\"translation\":\"\"}', 0, '[{\"id\":\"1\",\"user_id\":\"1\",\"name\":\"VAT\",\"operation\":\"+\",\"price\":\"15\",\"price_type\":\"percent\",\"price_by\":\"once\",\"included\":\"true\",\"extras\":\"true\",\"cart\":\"true\",\"translation\":\"VAT\",\"price_total\":\"0\"}]', 0, '{\"price\":\"100\",\"price_type\":\"percent\"}', 1180, '{\"2021-04-17\":{\"available\":\"10\",\"bind\":\"0\",\"price\":\"580\",\"promo\":\"0\",\"status\":\"available\"}}', '[{\"id\":\"1\",\"is_email\":\"false\",\"is_phone\":\"false\",\"add_to_day_hour_info\":\"false\",\"add_to_day_hour_body\":\"false\",\"translation\":\"First name\",\"value\":\"Lloyd\"},{\"id\":\"2\",\"is_email\":\"false\",\"is_phone\":\"false\",\"add_to_day_hour_info\":\"false\",\"add_to_day_hour_body\":\"false\",\"translation\":\"Last name\",\"value\":\"Wheatley\"},{\"id\":\"3\",\"is_email\":\"true\",\"is_phone\":\"false\",\"add_to_day_hour_info\":\"false\",\"add_to_day_hour_body\":\"false\",\"translation\":\"Email\",\"value\":\"73whiski@gmail.com\"},{\"id\":\"4\",\"is_email\":\"false\",\"is_phone\":\"false\",\"add_to_day_hour_info\":\"false\",\"add_to_day_hour_body\":\"false\",\"translation\":\"Phone\",\"value\":\"+27828945123\"},{\"id\":\"5\",\"is_email\":\"false\",\"is_phone\":\"false\",\"add_to_day_hour_info\":\"false\",\"add_to_day_hour_body\":\"false\",\"translation\":\"Message\",\"value\":\"\"}]', '', '', '73whiski@gmail.com', 'expired', 'none', 'pending', '', '', '2021-04-04 12:35:59', '', '', 'pinpoint', '68@msla.co.za/lodge', ''),
(69, 1, 'en', '&#82;', 'ZAR', '2021-04-17', '2021-04-18', '', '', 2, 1160, 1180, 0, '[{\"group_id\":\"5\",\"group_translation\":\"Meals\",\"id\":\"12\",\"operation\":\"+\",\"price\":\"95\",\"price_by\":\"period\",\"price_type\":\"fixed\",\"no_items_multiply\":\"true\",\"translation\":\"Breakfast\",\"price_total\":\"190\"}]', 190, '{\"id\":\"1\",\"rule_id\":\"0\",\"operation\":\"-\",\"price\":\"85\",\"price_type\":\"fixed\",\"price_by\":\"period\",\"start_date\":\"\",\"end_date\":\"\",\"start_hour\":\"\",\"end_hour\":\"\",\"translation\":\"On-Line Discount\"}', -170, '{\"id\":\"0\",\"code\":\"\",\"operation\":\"-\",\"price\":\"0\",\"price_type\":\"percent\",\"price_by\":\"once\",\"translation\":\"\"}', 0, '[{\"id\":\"1\",\"user_id\":\"1\",\"name\":\"VAT\",\"operation\":\"+\",\"price\":\"15\",\"price_type\":\"percent\",\"price_by\":\"once\",\"included\":\"true\",\"extras\":\"true\",\"cart\":\"true\",\"translation\":\"VAT\",\"price_total\":\"0\"}]', 0, '{\"price\":\"100\",\"price_type\":\"percent\"}', 1180, '{\"2021-04-17\":{\"available\":\"10\",\"bind\":\"0\",\"price\":\"580\",\"promo\":\"0\",\"status\":\"available\"}}', '[{\"id\":\"1\",\"is_email\":\"false\",\"is_phone\":\"false\",\"add_to_day_hour_info\":\"false\",\"add_to_day_hour_body\":\"false\",\"translation\":\"First name\",\"value\":\"Marcheta\"},{\"id\":\"2\",\"is_email\":\"false\",\"is_phone\":\"false\",\"add_to_day_hour_info\":\"false\",\"add_to_day_hour_body\":\"false\",\"translation\":\"Last name\",\"value\":\"Walters\"},{\"id\":\"3\",\"is_email\":\"true\",\"is_phone\":\"false\",\"add_to_day_hour_info\":\"false\",\"add_to_day_hour_body\":\"false\",\"translation\":\"Email\",\"value\":\"marcheta@telkomsa.net\"},{\"id\":\"4\",\"is_email\":\"false\",\"is_phone\":\"false\",\"add_to_day_hour_info\":\"false\",\"add_to_day_hour_body\":\"false\",\"translation\":\"Phone\",\"value\":\"0824758518\"},{\"id\":\"5\",\"is_email\":\"false\",\"is_phone\":\"false\",\"add_to_day_hour_info\":\"false\",\"add_to_day_hour_body\":\"false\",\"translation\":\"Message\",\"value\":\"\"}]', '', '', 'marcheta@telkomsa.net', 'expired', 'none', 'pending', '', '', '2021-04-05 17:40:27', '', '', 'pinpoint', '69@msla.co.za/lodge', ''),
(70, 1, 'en', '&#82;', 'ZAR', '2021-04-17', '2021-04-18', '', '', 2, 1160, 1180, 0, '[{\"group_id\":\"5\",\"group_translation\":\"Meals\",\"id\":\"12\",\"operation\":\"+\",\"price\":\"95\",\"price_by\":\"period\",\"price_type\":\"fixed\",\"no_items_multiply\":\"true\",\"translation\":\"Breakfast\",\"price_total\":\"190\"}]', 190, '{\"id\":\"1\",\"rule_id\":\"0\",\"operation\":\"-\",\"price\":\"85\",\"price_type\":\"fixed\",\"price_by\":\"period\",\"start_date\":\"\",\"end_date\":\"\",\"start_hour\":\"\",\"end_hour\":\"\",\"translation\":\"On-Line Discount\"}', -170, '{\"id\":\"0\",\"code\":\"\",\"operation\":\"-\",\"price\":\"0\",\"price_type\":\"percent\",\"price_by\":\"once\",\"translation\":\"\"}', 0, '[{\"id\":\"1\",\"user_id\":\"1\",\"name\":\"VAT\",\"operation\":\"+\",\"price\":\"15\",\"price_type\":\"percent\",\"price_by\":\"once\",\"included\":\"true\",\"extras\":\"true\",\"cart\":\"true\",\"translation\":\"VAT\",\"price_total\":\"0\"}]', 0, '{\"price\":\"100\",\"price_type\":\"percent\"}', 1180, '{\"2021-04-17\":{\"available\":\"10\",\"bind\":\"0\",\"price\":\"580\",\"promo\":\"0\",\"status\":\"available\"}}', '[{\"id\":\"1\",\"is_email\":\"false\",\"is_phone\":\"false\",\"add_to_day_hour_info\":\"false\",\"add_to_day_hour_body\":\"false\",\"translation\":\"First name\",\"value\":\"Andrea\"},{\"id\":\"2\",\"is_email\":\"false\",\"is_phone\":\"false\",\"add_to_day_hour_info\":\"false\",\"add_to_day_hour_body\":\"false\",\"translation\":\"Last name\",\"value\":\"Wheatley\"},{\"id\":\"3\",\"is_email\":\"true\",\"is_phone\":\"false\",\"add_to_day_hour_info\":\"false\",\"add_to_day_hour_body\":\"false\",\"translation\":\"Email\",\"value\":\"andrea@andreawheatley.co.za\"},{\"id\":\"4\",\"is_email\":\"false\",\"is_phone\":\"false\",\"add_to_day_hour_info\":\"false\",\"add_to_day_hour_body\":\"false\",\"translation\":\"Phone\",\"value\":\"+27828945123\"},{\"id\":\"5\",\"is_email\":\"false\",\"is_phone\":\"false\",\"add_to_day_hour_info\":\"false\",\"add_to_day_hour_body\":\"false\",\"translation\":\"Message\",\"value\":\"\"}]', '', '', 'andrea@andreawheatley.co.za', 'expired', 'none', 'pending', '', '', '2021-04-08 12:31:32', '', '', 'pinpoint', '70@msla.co.za/lodge', ''),
(71, 1, 'en', '&#82;', 'ZAR', '2021-04-30', '2021-05-01', '', '', 2, 1160, 990, 0, '', 0, '{\"id\":\"1\",\"rule_id\":\"0\",\"operation\":\"-\",\"price\":\"85\",\"price_type\":\"fixed\",\"price_by\":\"period\",\"start_date\":\"\",\"end_date\":\"\",\"start_hour\":\"\",\"end_hour\":\"\",\"translation\":\"On-Line Discount\"}', -170, '{\"id\":\"0\",\"code\":\"\",\"operation\":\"-\",\"price\":\"0\",\"price_type\":\"percent\",\"price_by\":\"once\",\"translation\":\"\"}', 0, '[{\"id\":\"1\",\"user_id\":\"1\",\"name\":\"VAT\",\"operation\":\"+\",\"price\":\"15\",\"price_type\":\"percent\",\"price_by\":\"once\",\"included\":\"true\",\"extras\":\"true\",\"cart\":\"true\",\"translation\":\"VAT\",\"price_total\":\"0\"}]', 0, '{\"price\":\"100\",\"price_type\":\"percent\"}', 990, '{\"2021-04-30\":{\"available\":\"10\",\"bind\":\"0\",\"price\":\"580\",\"promo\":\"0\",\"status\":\"available\"}}', '[{\"id\":\"1\",\"is_email\":\"false\",\"is_phone\":\"false\",\"add_to_day_hour_info\":\"false\",\"add_to_day_hour_body\":\"false\",\"translation\":\"First name\",\"value\":\"Steven\"},{\"id\":\"2\",\"is_email\":\"false\",\"is_phone\":\"false\",\"add_to_day_hour_info\":\"false\",\"add_to_day_hour_body\":\"false\",\"translation\":\"Last name\",\"value\":\"Stewart\"},{\"id\":\"3\",\"is_email\":\"true\",\"is_phone\":\"false\",\"add_to_day_hour_info\":\"false\",\"add_to_day_hour_body\":\"false\",\"translation\":\"Email\",\"value\":\"scubasteve1019@yahoo.com\"},{\"id\":\"4\",\"is_email\":\"false\",\"is_phone\":\"false\",\"add_to_day_hour_info\":\"false\",\"add_to_day_hour_body\":\"false\",\"translation\":\"Phone\",\"value\":\"0837955809\"},{\"id\":\"5\",\"is_email\":\"false\",\"is_phone\":\"false\",\"add_to_day_hour_info\":\"false\",\"add_to_day_hour_body\":\"false\",\"translation\":\"Message\",\"value\":\"What time is checkout on Saturday?\"}]', '', '', 'scubasteve1019@yahoo.com', 'expired', 'none', 'pending', '', '', '2021-04-28 10:04:30', '', '', 'pinpoint', '71@msla.co.za/lodge', ''),
(72, 1, 'en', '&#82;', 'ZAR', '2021-04-30', '2021-05-01', '', '', 2, 1160, 990, 0, '', 0, '{\"id\":\"1\",\"rule_id\":\"0\",\"operation\":\"-\",\"price\":\"85\",\"price_type\":\"fixed\",\"price_by\":\"period\",\"start_date\":\"\",\"end_date\":\"\",\"start_hour\":\"\",\"end_hour\":\"\",\"translation\":\"On-Line Discount\"}', -170, '{\"id\":\"0\",\"code\":\"\",\"operation\":\"-\",\"price\":\"0\",\"price_type\":\"percent\",\"price_by\":\"once\",\"translation\":\"\"}', 0, '[{\"id\":\"1\",\"user_id\":\"1\",\"name\":\"VAT\",\"operation\":\"+\",\"price\":\"15\",\"price_type\":\"percent\",\"price_by\":\"once\",\"included\":\"true\",\"extras\":\"true\",\"cart\":\"true\",\"translation\":\"VAT\",\"price_total\":\"0\"}]', 0, '{\"price\":\"100\",\"price_type\":\"percent\"}', 990, '{\"2021-04-30\":{\"available\":\"10\",\"bind\":\"0\",\"price\":\"580\",\"promo\":\"0\",\"status\":\"available\"}}', '[{\"id\":\"1\",\"is_email\":\"false\",\"is_phone\":\"false\",\"add_to_day_hour_info\":\"false\",\"add_to_day_hour_body\":\"false\",\"translation\":\"First name\",\"value\":\"Steven\"},{\"id\":\"2\",\"is_email\":\"false\",\"is_phone\":\"false\",\"add_to_day_hour_info\":\"false\",\"add_to_day_hour_body\":\"false\",\"translation\":\"Last name\",\"value\":\"Stewart\"},{\"id\":\"3\",\"is_email\":\"true\",\"is_phone\":\"false\",\"add_to_day_hour_info\":\"false\",\"add_to_day_hour_body\":\"false\",\"translation\":\"Email\",\"value\":\"scubasteve1019@yahoo.com\"},{\"id\":\"4\",\"is_email\":\"false\",\"is_phone\":\"false\",\"add_to_day_hour_info\":\"false\",\"add_to_day_hour_body\":\"false\",\"translation\":\"Phone\",\"value\":\"0837955809\"},{\"id\":\"5\",\"is_email\":\"false\",\"is_phone\":\"false\",\"add_to_day_hour_info\":\"false\",\"add_to_day_hour_body\":\"false\",\"translation\":\"Message\",\"value\":\"What time is check out on Saturday?\"}]', '', '', 'scubasteve1019@yahoo.com', 'expired', 'none', 'pending', '', '', '2021-04-28 10:08:55', '', '', 'pinpoint', '72@msla.co.za/lodge', ''),
(73, 1, 'en', '&#82;', 'ZAR', '2021-05-26', '2021-05-28', '', '', 1, 1160, 990, 0, '', 0, '{\"id\":\"1\",\"rule_id\":\"0\",\"operation\":\"-\",\"price\":\"85\",\"price_type\":\"fixed\",\"price_by\":\"period\",\"start_date\":\"\",\"end_date\":\"\",\"start_hour\":\"\",\"end_hour\":\"\",\"translation\":\"On-Line Discount\"}', -170, '{\"id\":\"0\",\"code\":\"\",\"operation\":\"-\",\"price\":\"0\",\"price_type\":\"percent\",\"price_by\":\"once\",\"translation\":\"\"}', 0, '[{\"id\":\"1\",\"user_id\":\"1\",\"name\":\"VAT\",\"operation\":\"+\",\"price\":\"15\",\"price_type\":\"percent\",\"price_by\":\"once\",\"included\":\"true\",\"extras\":\"true\",\"cart\":\"true\",\"translation\":\"VAT\",\"price_total\":\"0\"}]', 0, '{\"price\":\"100\",\"price_type\":\"percent\"}', 990, '{\"2021-05-26\":{\"available\":\"10\",\"bind\":\"0\",\"price\":\"580\",\"promo\":\"0\",\"status\":\"available\"},\"2021-05-27\":{\"available\":\"10\",\"bind\":\"0\",\"price\":\"580\",\"promo\":\"0\",\"status\":\"available\"}}', '[{\"id\":\"1\",\"is_email\":\"false\",\"is_phone\":\"false\",\"add_to_day_hour_info\":\"false\",\"add_to_day_hour_body\":\"false\",\"translation\":\"First name\",\"value\":\"Jade\"},{\"id\":\"2\",\"is_email\":\"false\",\"is_phone\":\"false\",\"add_to_day_hour_info\":\"false\",\"add_to_day_hour_body\":\"false\",\"translation\":\"Last name\",\"value\":\"Perkins\"},{\"id\":\"3\",\"is_email\":\"true\",\"is_phone\":\"false\",\"add_to_day_hour_info\":\"false\",\"add_to_day_hour_body\":\"false\",\"translation\":\"Email\",\"value\":\"jadieeperkins@gmail.com\"},{\"id\":\"4\",\"is_email\":\"false\",\"is_phone\":\"false\",\"add_to_day_hour_info\":\"false\",\"add_to_day_hour_body\":\"false\",\"translation\":\"Phone\",\"value\":\"0744449294\"},{\"id\":\"5\",\"is_email\":\"false\",\"is_phone\":\"false\",\"add_to_day_hour_info\":\"false\",\"add_to_day_hour_body\":\"false\",\"translation\":\"Message\",\"value\":\"\"}]', '', '', 'jadieeperkins@gmail.com', 'expired', 'none', 'pending', '', '', '2021-05-25 18:29:59', '', '', 'pinpoint', '73@msla.co.za/lodge', ''),
(74, 1, 'en', '&#82;', 'ZAR', '2021-05-28', '2021-05-29', '', '', 1, 580, 495, 0, '', 0, '{\"id\":\"1\",\"rule_id\":\"0\",\"operation\":\"-\",\"price\":\"85\",\"price_type\":\"fixed\",\"price_by\":\"period\",\"start_date\":\"\",\"end_date\":\"\",\"start_hour\":\"\",\"end_hour\":\"\",\"translation\":\"On-Line Discount\"}', -85, '{\"id\":\"0\",\"code\":\"\",\"operation\":\"-\",\"price\":\"0\",\"price_type\":\"percent\",\"price_by\":\"once\",\"translation\":\"\"}', 0, '[{\"id\":\"1\",\"user_id\":\"1\",\"name\":\"VAT\",\"operation\":\"+\",\"price\":\"15\",\"price_type\":\"percent\",\"price_by\":\"once\",\"included\":\"true\",\"extras\":\"true\",\"cart\":\"true\",\"translation\":\"VAT\",\"price_total\":\"0\"}]', 0, '{\"price\":\"100\",\"price_type\":\"percent\"}', 495, '{\"2021-05-28\":{\"available\":\"10\",\"bind\":\"0\",\"price\":\"580\",\"promo\":\"0\",\"status\":\"available\"}}', '[{\"id\":\"1\",\"is_email\":\"false\",\"is_phone\":\"false\",\"add_to_day_hour_info\":\"false\",\"add_to_day_hour_body\":\"false\",\"translation\":\"First name\",\"value\":\"Jamie-Lee\"},{\"id\":\"2\",\"is_email\":\"false\",\"is_phone\":\"false\",\"add_to_day_hour_info\":\"false\",\"add_to_day_hour_body\":\"false\",\"translation\":\"Last name\",\"value\":\"Basel\"},{\"id\":\"3\",\"is_email\":\"true\",\"is_phone\":\"false\",\"add_to_day_hour_info\":\"false\",\"add_to_day_hour_body\":\"false\",\"translation\":\"Email\",\"value\":\"jamiebearbasel@gmail.com\"},{\"id\":\"4\",\"is_email\":\"false\",\"is_phone\":\"false\",\"add_to_day_hour_info\":\"false\",\"add_to_day_hour_body\":\"false\",\"translation\":\"Phone\",\"value\":\"0791740483\"},{\"id\":\"5\",\"is_email\":\"false\",\"is_phone\":\"false\",\"add_to_day_hour_info\":\"false\",\"add_to_day_hour_body\":\"false\",\"translation\":\"Message\",\"value\":\"\"}]', '', '', 'jamiebearbasel@gmail.com', 'expired', 'none', 'pending', '', '', '2021-05-27 17:12:17', '', '', 'pinpoint', '74@msla.co.za/lodge', ''),
(75, 1, 'en', '&#82;', 'ZAR', '2021-05-28', '2021-05-29', '', '', 1, 580, 495, 0, '', 0, '{\"id\":\"1\",\"rule_id\":\"0\",\"operation\":\"-\",\"price\":\"85\",\"price_type\":\"fixed\",\"price_by\":\"period\",\"start_date\":\"\",\"end_date\":\"\",\"start_hour\":\"\",\"end_hour\":\"\",\"translation\":\"On-Line Discount\"}', -85, '{\"id\":\"0\",\"code\":\"\",\"operation\":\"-\",\"price\":\"0\",\"price_type\":\"percent\",\"price_by\":\"once\",\"translation\":\"\"}', 0, '[{\"id\":\"1\",\"user_id\":\"1\",\"name\":\"VAT\",\"operation\":\"+\",\"price\":\"15\",\"price_type\":\"percent\",\"price_by\":\"once\",\"included\":\"true\",\"extras\":\"true\",\"cart\":\"true\",\"translation\":\"VAT\",\"price_total\":\"0\"}]', 0, '{\"price\":\"100\",\"price_type\":\"percent\"}', 495, '{\"2021-05-28\":{\"available\":\"10\",\"bind\":\"0\",\"price\":\"580\",\"promo\":\"0\",\"status\":\"available\"}}', '[{\"id\":\"1\",\"is_email\":\"false\",\"is_phone\":\"false\",\"add_to_day_hour_info\":\"false\",\"add_to_day_hour_body\":\"false\",\"translation\":\"First name\",\"value\":\"Jamie-Lee\"},{\"id\":\"2\",\"is_email\":\"false\",\"is_phone\":\"false\",\"add_to_day_hour_info\":\"false\",\"add_to_day_hour_body\":\"false\",\"translation\":\"Last name\",\"value\":\"Basel\"},{\"id\":\"3\",\"is_email\":\"true\",\"is_phone\":\"false\",\"add_to_day_hour_info\":\"false\",\"add_to_day_hour_body\":\"false\",\"translation\":\"Email\",\"value\":\"jamiebearbasel@gmail.com\"},{\"id\":\"4\",\"is_email\":\"false\",\"is_phone\":\"false\",\"add_to_day_hour_info\":\"false\",\"add_to_day_hour_body\":\"false\",\"translation\":\"Phone\",\"value\":\"0791740483\"},{\"id\":\"5\",\"is_email\":\"false\",\"is_phone\":\"false\",\"add_to_day_hour_info\":\"false\",\"add_to_day_hour_body\":\"false\",\"translation\":\"Message\",\"value\":\"\"}]', '', '', 'jamiebearbasel@gmail.com', 'expired', 'none', 'pending', '', '', '2021-05-27 17:51:34', '', '', 'pinpoint', '75@msla.co.za/lodge', ''),
(76, 1, 'en', '&#82;', 'ZAR', '2021-06-15', '2021-06-20', '', '', 3, 8700, 7200, 0, '[{\"group_id\":\"6\",\"group_translation\":\"Services\",\"id\":\"17\",\"operation\":\"+\",\"price\":\"45\",\"price_by\":\"period\",\"price_type\":\"fixed\",\"no_items_multiply\":\"true\",\"translation\":\"Room Cleaning\",\"price_total\":\"675\"}]', 675, '{\"id\":\"2\",\"rule_id\":\"0\",\"operation\":\"-\",\"price\":\"145\",\"price_type\":\"fixed\",\"price_by\":\"period\",\"start_date\":\"\",\"end_date\":\"\",\"start_hour\":\"\",\"end_hour\":\"\",\"translation\":\"3+ Night Discount\"}', -2175, '{\"id\":\"0\",\"code\":\"\",\"operation\":\"-\",\"price\":\"0\",\"price_type\":\"percent\",\"price_by\":\"once\",\"translation\":\"\"}', 0, '[{\"id\":\"1\",\"user_id\":\"1\",\"name\":\"VAT\",\"operation\":\"+\",\"price\":\"15\",\"price_type\":\"percent\",\"price_by\":\"once\",\"included\":\"true\",\"extras\":\"true\",\"cart\":\"true\",\"translation\":\"VAT\",\"price_total\":\"0\"}]', 0, '{\"price\":\"100\",\"price_type\":\"percent\"}', 7200, '{\"2021-06-15\":{\"available\":\"10\",\"bind\":\"0\",\"price\":\"580\",\"promo\":\"0\",\"status\":\"available\"},\"2021-06-16\":{\"available\":\"10\",\"bind\":\"0\",\"price\":\"580\",\"promo\":\"0\",\"status\":\"available\"},\"2021-06-17\":{\"available\":\"10\",\"bind\":\"0\",\"price\":\"580\",\"promo\":\"0\",\"status\":\"available\"},\"2021-06-18\":{\"available\":\"10\",\"bind\":\"0\",\"price\":\"580\",\"promo\":\"0\",\"status\":\"available\"},\"2021-06-19\":{\"available\":\"10\",\"bind\":\"0\",\"price\":\"580\",\"promo\":\"0\",\"status\":\"available\"}}', '[{\"id\":\"1\",\"is_email\":\"false\",\"is_phone\":\"false\",\"add_to_day_hour_info\":\"false\",\"add_to_day_hour_body\":\"false\",\"translation\":\"First name\",\"value\":\"Leigh-Ann\"},{\"id\":\"2\",\"is_email\":\"false\",\"is_phone\":\"false\",\"add_to_day_hour_info\":\"false\",\"add_to_day_hour_body\":\"false\",\"translation\":\"Last name\",\"value\":\"Hammond\"},{\"id\":\"3\",\"is_email\":\"true\",\"is_phone\":\"false\",\"add_to_day_hour_info\":\"false\",\"add_to_day_hour_body\":\"false\",\"translation\":\"Email\",\"value\":\"leigh@reboss.co.za\"},{\"id\":\"4\",\"is_email\":\"false\",\"is_phone\":\"false\",\"add_to_day_hour_info\":\"false\",\"add_to_day_hour_body\":\"false\",\"translation\":\"Phone\",\"value\":\"0798814500\"},{\"id\":\"5\",\"is_email\":\"false\",\"is_phone\":\"false\",\"add_to_day_hour_info\":\"false\",\"add_to_day_hour_body\":\"false\",\"translation\":\"Message\",\"value\":\"How far is the lodge from the Durban shongweni club?\"}]', '', '', 'leigh@reboss.co.za', 'expired', 'none', 'pending', '', '', '2021-06-02 14:20:00', '', '', 'pinpoint', '76@msla.co.za/lodge', ''),
(77, 1, 'en', '&#82;', 'ZAR', '2021-09-09', '2021-09-12', '', '', 5, 10200, 8160, 0, '', 0, '{\"id\":\"2\",\"rule_id\":\"0\",\"operation\":\"-\",\"price\":\"136\",\"price_type\":\"fixed\",\"price_by\":\"period\",\"start_date\":\"\",\"end_date\":\"\",\"start_hour\":\"\",\"end_hour\":\"\",\"translation\":\"3+ Night Discount\"}', -2040, '{\"id\":\"0\",\"code\":\"\",\"operation\":\"-\",\"price\":\"0\",\"price_type\":\"percent\",\"price_by\":\"once\",\"translation\":\"\"}', 0, '[{\"id\":\"1\",\"user_id\":\"1\",\"name\":\"VAT\",\"operation\":\"+\",\"price\":\"15\",\"price_type\":\"percent\",\"price_by\":\"once\",\"included\":\"true\",\"extras\":\"true\",\"cart\":\"true\",\"translation\":\"VAT\",\"price_total\":\"0\"}]', 0, '{\"price\":\"100\",\"price_type\":\"percent\"}', 8160, '{\"2021-09-09\":{\"available\":\"10\",\"bind\":\"0\",\"price\":\"680\",\"promo\":\"0\",\"status\":\"available\"},\"2021-09-10\":{\"available\":\"10\",\"bind\":\"0\",\"price\":\"680\",\"promo\":\"0\",\"status\":\"available\"},\"2021-09-11\":{\"available\":\"10\",\"bind\":\"0\",\"price\":\"680\",\"promo\":\"0\",\"status\":\"available\"}}', '[{\"id\":\"1\",\"is_email\":\"false\",\"is_phone\":\"false\",\"add_to_day_hour_info\":\"false\",\"add_to_day_hour_body\":\"false\",\"translation\":\"First name\",\"value\":\"Jackie\"},{\"id\":\"2\",\"is_email\":\"false\",\"is_phone\":\"false\",\"add_to_day_hour_info\":\"false\",\"add_to_day_hour_body\":\"false\",\"translation\":\"Last name\",\"value\":\"Dewey\"},{\"id\":\"3\",\"is_email\":\"true\",\"is_phone\":\"false\",\"add_to_day_hour_info\":\"false\",\"add_to_day_hour_body\":\"false\",\"translation\":\"Email\",\"value\":\"sjdewey@iafrica.com\"},{\"id\":\"4\",\"is_email\":\"false\",\"is_phone\":\"false\",\"add_to_day_hour_info\":\"false\",\"add_to_day_hour_body\":\"false\",\"translation\":\"Phone\",\"value\":\"0826019533\"},{\"id\":\"5\",\"is_email\":\"false\",\"is_phone\":\"false\",\"add_to_day_hour_info\":\"false\",\"add_to_day_hour_body\":\"false\",\"translation\":\"Message\",\"value\":\"Please could you tell me how far away you are from The Shongweni Polo Club? Many thanks Jackie\"}]', '', '', 'sjdewey@iafrica.com', 'expired', 'none', 'pending', '', '', '2021-09-02 11:33:02', '', '', 'pinpoint', '77@msla.co.za/lodge', ''),
(78, 1, 'en', '&#82;', 'ZAR', '2021-09-24', '2021-09-25', '', '', 2, 1360, 1774, 0, '[{\"group_id\":\"5\",\"group_translation\":\"Meals\",\"id\":\"12\",\"operation\":\"+\",\"price\":\"95\",\"price_by\":\"period\",\"price_type\":\"fixed\",\"no_items_multiply\":\"true\",\"translation\":\"Breakfast\",\"price_total\":\"190\"},{\"group_id\":\"5\",\"group_translation\":\"Meals\",\"id\":\"13\",\"operation\":\"+\",\"price\":\"180\",\"price_by\":\"period\",\"price_type\":\"fixed\",\"no_items_multiply\":\"true\",\"translation\":\"Dinner\",\"price_total\":\"360\"}]', 550, '{\"id\":\"1\",\"rule_id\":\"0\",\"operation\":\"-\",\"price\":\"68\",\"price_type\":\"fixed\",\"price_by\":\"period\",\"start_date\":\"\",\"end_date\":\"\",\"start_hour\":\"\",\"end_hour\":\"\",\"translation\":\"On-Line Discount\"}', -136, '{\"id\":\"0\",\"code\":\"\",\"operation\":\"-\",\"price\":\"0\",\"price_type\":\"percent\",\"price_by\":\"once\",\"translation\":\"\"}', 0, '[{\"id\":\"1\",\"user_id\":\"1\",\"name\":\"VAT\",\"operation\":\"+\",\"price\":\"15\",\"price_type\":\"percent\",\"price_by\":\"once\",\"included\":\"true\",\"extras\":\"true\",\"cart\":\"true\",\"translation\":\"VAT\",\"price_total\":\"0\"}]', 0, '{\"price\":\"100\",\"price_type\":\"percent\"}', 1774, '{\"2021-09-24\":{\"available\":\"10\",\"bind\":\"0\",\"price\":\"680\",\"promo\":\"0\",\"status\":\"available\"}}', '[{\"id\":\"1\",\"is_email\":\"false\",\"is_phone\":\"false\",\"add_to_day_hour_info\":\"false\",\"add_to_day_hour_body\":\"false\",\"translation\":\"First name\",\"value\":\"Samantha\"},{\"id\":\"2\",\"is_email\":\"false\",\"is_phone\":\"false\",\"add_to_day_hour_info\":\"false\",\"add_to_day_hour_body\":\"false\",\"translation\":\"Last name\",\"value\":\"Joubert\"},{\"id\":\"3\",\"is_email\":\"true\",\"is_phone\":\"false\",\"add_to_day_hour_info\":\"false\",\"add_to_day_hour_body\":\"false\",\"translation\":\"Email\",\"value\":\"samantha.joubert@me.com\"},{\"id\":\"4\",\"is_email\":\"false\",\"is_phone\":\"false\",\"add_to_day_hour_info\":\"false\",\"add_to_day_hour_body\":\"false\",\"translation\":\"Phone\",\"value\":\"0795553179\"},{\"id\":\"5\",\"is_email\":\"false\",\"is_phone\":\"false\",\"add_to_day_hour_info\":\"false\",\"add_to_day_hour_body\":\"false\",\"translation\":\"Message\",\"value\":\"\"}]', '', '', 'samantha.joubert@me.com', 'expired', 'none', 'pending', '', '', '2021-09-24 07:19:33', '', '', 'pinpoint', '78@msla.co.za/lodge', ''),
(79, 1, 'en', '&#82;', 'ZAR', '2021-12-12', '2021-12-14', '', '', 1, 0, -136, 0, '', 0, '{\"id\":\"1\",\"rule_id\":\"0\",\"operation\":\"-\",\"price\":\"68\",\"price_type\":\"fixed\",\"price_by\":\"period\",\"start_date\":\"\",\"end_date\":\"\",\"start_hour\":\"\",\"end_hour\":\"\",\"translation\":\"On-Line Discount\"}', -136, '{\"id\":\"0\",\"code\":\"\",\"operation\":\"-\",\"price\":\"0\",\"price_type\":\"percent\",\"price_by\":\"once\",\"translation\":\"\"}', 0, '[{\"id\":\"1\",\"user_id\":\"1\",\"name\":\"VAT\",\"operation\":\"+\",\"price\":\"15\",\"price_type\":\"percent\",\"price_by\":\"once\",\"included\":\"true\",\"extras\":\"true\",\"cart\":\"true\",\"translation\":\"VAT\",\"price_total\":\"0\"}]', 0, '{\"price\":\"100\",\"price_type\":\"percent\"}', -136, '{\"2021-12-12\":{\"available\":\"1\",\"bind\":\"0\",\"price\":\"0\",\"promo\":\"0\",\"status\":\"unavailable\"},\"2021-12-13\":{\"available\":\"1\",\"bind\":\"0\",\"price\":\"0\",\"promo\":\"0\",\"status\":\"unavailable\"}}', '[{\"id\":\"1\",\"is_email\":\"false\",\"is_phone\":\"false\",\"add_to_day_hour_info\":\"false\",\"add_to_day_hour_body\":\"false\",\"translation\":\"First name\",\"value\":\"Claire\"},{\"id\":\"2\",\"is_email\":\"false\",\"is_phone\":\"false\",\"add_to_day_hour_info\":\"false\",\"add_to_day_hour_body\":\"false\",\"translation\":\"Last name\",\"value\":\"Gibson\"},{\"id\":\"3\",\"is_email\":\"true\",\"is_phone\":\"false\",\"add_to_day_hour_info\":\"false\",\"add_to_day_hour_body\":\"false\",\"translation\":\"Email\",\"value\":\"illuminatedteaching@gmail.com\"},{\"id\":\"4\",\"is_email\":\"false\",\"is_phone\":\"false\",\"add_to_day_hour_info\":\"false\",\"add_to_day_hour_body\":\"false\",\"translation\":\"Phone\",\"value\":\"+27799934284\"},{\"id\":\"5\",\"is_email\":\"false\",\"is_phone\":\"false\",\"add_to_day_hour_info\":\"false\",\"add_to_day_hour_body\":\"false\",\"translation\":\"Message\",\"value\":\"\"}]', '', '', 'illuminatedteaching@gmail.com', 'expired', 'none', 'pending', '', '', '2021-12-06 17:29:34', '', '', 'pinpoint', '79@msla.co.za/lodge', ''),
(80, 1, 'en', '&#82;', 'ZAR', '2022-06-10', '2022-06-12', '', '', 1, 0, -136, 0, '', 0, '{\"id\":\"1\",\"rule_id\":\"0\",\"operation\":\"-\",\"price\":\"68\",\"price_type\":\"fixed\",\"price_by\":\"period\",\"start_date\":\"\",\"end_date\":\"\",\"start_hour\":\"\",\"end_hour\":\"\",\"translation\":\"On-Line Discount\"}', -136, '{\"id\":\"0\",\"code\":\"\",\"operation\":\"-\",\"price\":\"0\",\"price_type\":\"percent\",\"price_by\":\"once\",\"translation\":\"\"}', 0, '[{\"id\":\"1\",\"user_id\":\"1\",\"name\":\"VAT\",\"operation\":\"+\",\"price\":\"15\",\"price_type\":\"percent\",\"price_by\":\"once\",\"included\":\"true\",\"extras\":\"true\",\"cart\":\"true\",\"translation\":\"VAT\",\"price_total\":\"0\"}]', 0, '{\"price\":\"100\",\"price_type\":\"percent\"}', -136, '{\"2022-06-10\":{\"available\":\"1\",\"bind\":\"0\",\"price\":\"0\",\"promo\":\"0\",\"status\":\"unavailable\"},\"2022-06-11\":{\"available\":\"1\",\"bind\":\"0\",\"price\":\"0\",\"promo\":\"0\",\"status\":\"unavailable\"}}', '[{\"id\":\"1\",\"is_email\":\"false\",\"is_phone\":\"false\",\"add_to_day_hour_info\":\"false\",\"add_to_day_hour_body\":\"false\",\"translation\":\"First name\",\"value\":\"Ninette\"},{\"id\":\"2\",\"is_email\":\"false\",\"is_phone\":\"false\",\"add_to_day_hour_info\":\"false\",\"add_to_day_hour_body\":\"false\",\"translation\":\"Last name\",\"value\":\"Smith\"},{\"id\":\"3\",\"is_email\":\"true\",\"is_phone\":\"false\",\"add_to_day_hour_info\":\"false\",\"add_to_day_hour_body\":\"false\",\"translation\":\"Email\",\"value\":\"ninette.smith@gmail.com\"},{\"id\":\"4\",\"is_email\":\"false\",\"is_phone\":\"false\",\"add_to_day_hour_info\":\"false\",\"add_to_day_hour_body\":\"false\",\"translation\":\"Phone\",\"value\":\"0833487287\"},{\"id\":\"5\",\"is_email\":\"false\",\"is_phone\":\"false\",\"add_to_day_hour_info\":\"false\",\"add_to_day_hour_body\":\"false\",\"translation\":\"Message\",\"value\":\"\"}]', '', '', 'ninette.smith@gmail.com', 'expired', 'none', 'pending', '', '', '2022-04-05 07:05:02', '', '', 'pinpoint', '80@msla.co.za/lodge', ''),
(81, 1, 'en', '&#82;', 'ZAR', '2022-05-20', '2022-05-22', '', '', 1, 0, -136, 0, '', 0, '{\"id\":\"1\",\"rule_id\":\"0\",\"operation\":\"-\",\"price\":\"68\",\"price_type\":\"fixed\",\"price_by\":\"period\",\"start_date\":\"\",\"end_date\":\"\",\"start_hour\":\"\",\"end_hour\":\"\",\"translation\":\"On-Line Discount\"}', -136, '{\"id\":\"0\",\"code\":\"\",\"operation\":\"-\",\"price\":\"0\",\"price_type\":\"percent\",\"price_by\":\"once\",\"translation\":\"\"}', 0, '[{\"id\":\"1\",\"user_id\":\"1\",\"name\":\"VAT\",\"operation\":\"+\",\"price\":\"15\",\"price_type\":\"percent\",\"price_by\":\"once\",\"included\":\"true\",\"extras\":\"true\",\"cart\":\"true\",\"translation\":\"VAT\",\"price_total\":\"0\"}]', 0, '{\"price\":\"100\",\"price_type\":\"percent\"}', -136, '{\"2022-05-20\":{\"available\":\"1\",\"bind\":\"0\",\"price\":\"0\",\"promo\":\"0\",\"status\":\"unavailable\"},\"2022-05-21\":{\"available\":\"1\",\"bind\":\"0\",\"price\":\"0\",\"promo\":\"0\",\"status\":\"unavailable\"}}', '[{\"id\":\"1\",\"is_email\":\"false\",\"is_phone\":\"false\",\"add_to_day_hour_info\":\"false\",\"add_to_day_hour_body\":\"false\",\"translation\":\"First name\",\"value\":\"Russell\"},{\"id\":\"2\",\"is_email\":\"false\",\"is_phone\":\"false\",\"add_to_day_hour_info\":\"false\",\"add_to_day_hour_body\":\"false\",\"translation\":\"Last name\",\"value\":\"Wedton\"},{\"id\":\"3\",\"is_email\":\"true\",\"is_phone\":\"false\",\"add_to_day_hour_info\":\"false\",\"add_to_day_hour_body\":\"false\",\"translation\":\"Email\",\"value\":\"safariruss@gmail.com\"},{\"id\":\"4\",\"is_email\":\"false\",\"is_phone\":\"false\",\"add_to_day_hour_info\":\"false\",\"add_to_day_hour_body\":\"false\",\"translation\":\"Phone\",\"value\":\"0824448345\"},{\"id\":\"5\",\"is_email\":\"false\",\"is_phone\":\"false\",\"add_to_day_hour_info\":\"false\",\"add_to_day_hour_body\":\"false\",\"translation\":\"Message\",\"value\":\"My wife and I have just sold our place in Assagay. Do you have a local special rate for us please?\"}]', '', '', 'safariruss@gmail.com', 'expired', 'none', 'pending', '', '', '2022-05-16 19:00:50', '', '', 'pinpoint', '81@msla.co.za/lodge', ''),
(82, 1, 'en', '&#82;', 'ZAR', '2022-06-11', '2022-06-13', '', '', 1, 0, -116, 0, '', 0, '{\"id\":\"1\",\"rule_id\":\"0\",\"operation\":\"-\",\"price\":\"58\",\"price_type\":\"fixed\",\"price_by\":\"period\",\"start_date\":\"\",\"end_date\":\"\",\"start_hour\":\"\",\"end_hour\":\"\",\"translation\":\"On-Line Discount\"}', -116, '{\"id\":\"0\",\"code\":\"\",\"operation\":\"-\",\"price\":\"0\",\"price_type\":\"percent\",\"price_by\":\"once\",\"translation\":\"\"}', 0, '[{\"id\":\"1\",\"user_id\":\"1\",\"name\":\"VAT\",\"operation\":\"+\",\"price\":\"15\",\"price_type\":\"percent\",\"price_by\":\"once\",\"included\":\"true\",\"extras\":\"true\",\"cart\":\"true\",\"translation\":\"VAT\",\"price_total\":\"0\"}]', 0, '{\"price\":\"100\",\"price_type\":\"percent\"}', -116, '{\"2022-06-11\":{\"available\":\"1\",\"bind\":\"0\",\"price\":\"0\",\"promo\":\"0\",\"status\":\"unavailable\"},\"2022-06-12\":{\"available\":\"1\",\"bind\":\"0\",\"price\":\"0\",\"promo\":\"0\",\"status\":\"unavailable\"}}', '[{\"id\":\"1\",\"is_email\":\"false\",\"is_phone\":\"false\",\"add_to_day_hour_info\":\"false\",\"add_to_day_hour_body\":\"false\",\"translation\":\"First name\",\"value\":\"Linda\"},{\"id\":\"2\",\"is_email\":\"false\",\"is_phone\":\"false\",\"add_to_day_hour_info\":\"false\",\"add_to_day_hour_body\":\"false\",\"translation\":\"Last name\",\"value\":\"Pollock\"},{\"id\":\"3\",\"is_email\":\"true\",\"is_phone\":\"false\",\"add_to_day_hour_info\":\"false\",\"add_to_day_hour_body\":\"false\",\"translation\":\"Email\",\"value\":\"Linda.pollock@sage.com\"},{\"id\":\"4\",\"is_email\":\"false\",\"is_phone\":\"false\",\"add_to_day_hour_info\":\"false\",\"add_to_day_hour_body\":\"false\",\"translation\":\"Phone\",\"value\":\"0832686380\"},{\"id\":\"5\",\"is_email\":\"false\",\"is_phone\":\"false\",\"add_to_day_hour_info\":\"false\",\"add_to_day_hour_body\":\"false\",\"translation\":\"Message\",\"value\":\"Can I please get a quote\"}]', '', '', 'Linda.pollock@sage.com', 'expired', 'none', 'pending', '', '', '2022-06-02 19:40:33', '', '', 'pinpoint', '82@msla.co.za/lodge', ''),
(83, 1, 'en', '&#82;', 'ZAR', '2022-08-05', '2022-08-10', '', '', 1, 3525, 3525, 0, '', 0, '{\"id\":\"0\",\"rule_id\":\"0\",\"operation\":\"-\",\"price\":\"0\",\"price_type\":\"percent\",\"price_by\":\"once\",\"start_date\":\"\",\"end_date\":\"\",\"start_hour\":\"\",\"end_hour\":\"\",\"translation\":\"\"}', 0, '{\"id\":\"0\",\"code\":\"\",\"operation\":\"-\",\"price\":\"0\",\"price_type\":\"percent\",\"price_by\":\"once\",\"translation\":\"\"}', 0, '[{\"id\":\"1\",\"user_id\":\"1\",\"name\":\"VAT\",\"operation\":\"+\",\"price\":\"15\",\"price_type\":\"percent\",\"price_by\":\"once\",\"included\":\"true\",\"extras\":\"true\",\"cart\":\"true\",\"translation\":\"VAT\",\"price_total\":\"0\"}]', 0, '{\"price\":\"100\",\"price_type\":\"percent\"}', 3525, '{\"2022-08-05\":{\"available\":\"10\",\"bind\":\"0\",\"price\":\"705\",\"promo\":\"0\",\"status\":\"available\"},\"2022-08-06\":{\"available\":\"10\",\"bind\":\"0\",\"price\":\"705\",\"promo\":\"0\",\"status\":\"available\"},\"2022-08-07\":{\"available\":\"10\",\"bind\":\"0\",\"price\":\"705\",\"promo\":\"0\",\"status\":\"available\"},\"2022-08-08\":{\"available\":\"10\",\"bind\":\"0\",\"price\":\"705\",\"promo\":\"0\",\"status\":\"available\"},\"2022-08-09\":{\"available\":\"10\",\"bind\":\"0\",\"price\":\"705\",\"promo\":\"0\",\"status\":\"available\"}}', '[{\"id\":\"1\",\"is_email\":\"false\",\"is_phone\":\"false\",\"add_to_day_hour_info\":\"false\",\"add_to_day_hour_body\":\"false\",\"translation\":\"First name\",\"value\":\"Michaela\"},{\"id\":\"2\",\"is_email\":\"false\",\"is_phone\":\"false\",\"add_to_day_hour_info\":\"false\",\"add_to_day_hour_body\":\"false\",\"translation\":\"Last name\",\"value\":\"Thonger\"},{\"id\":\"3\",\"is_email\":\"true\",\"is_phone\":\"false\",\"add_to_day_hour_info\":\"false\",\"add_to_day_hour_body\":\"false\",\"translation\":\"Email\",\"value\":\"Kaylet@gmail.com\"},{\"id\":\"4\",\"is_email\":\"false\",\"is_phone\":\"false\",\"add_to_day_hour_info\":\"false\",\"add_to_day_hour_body\":\"false\",\"translation\":\"Phone\",\"value\":\"0791749451\"},{\"id\":\"5\",\"is_email\":\"false\",\"is_phone\":\"false\",\"add_to_day_hour_info\":\"false\",\"add_to_day_hour_body\":\"false\",\"translation\":\"Message\",\"value\":\"Hi there, desperately looking for last minute accommodation for tonight. Please let me know if you can assist me.\"}]', '', '', 'Kaylet@gmail.com', 'expired', 'none', 'pending', '', '', '2022-08-05 14:04:37', '', '', 'pinpoint', '83@msla.co.za/lodge', ''),
(84, 1, 'en', '&#82;', 'ZAR', '2022-10-28', '2022-10-30', '', '', 1, 0, 0, 0, '', 0, '{\"id\":\"0\",\"rule_id\":\"0\",\"operation\":\"-\",\"price\":\"0\",\"price_type\":\"percent\",\"price_by\":\"once\",\"start_date\":\"\",\"end_date\":\"\",\"start_hour\":\"\",\"end_hour\":\"\",\"translation\":\"\"}', 0, '{\"id\":\"0\",\"code\":\"\",\"operation\":\"-\",\"price\":\"0\",\"price_type\":\"percent\",\"price_by\":\"once\",\"translation\":\"\"}', 0, '[{\"id\":\"1\",\"user_id\":\"1\",\"name\":\"VAT\",\"operation\":\"+\",\"price\":\"15\",\"price_type\":\"percent\",\"price_by\":\"once\",\"included\":\"true\",\"extras\":\"true\",\"cart\":\"true\",\"translation\":\"VAT\",\"price_total\":\"0\"}]', 0, '{\"price\":\"100\",\"price_type\":\"percent\"}', 0, '{\"2022-10-28\":{\"available\":\"1\",\"bind\":\"0\",\"price\":\"0\",\"promo\":\"0\",\"status\":\"unavailable\"},\"2022-10-29\":{\"available\":\"1\",\"bind\":\"0\",\"price\":\"0\",\"promo\":\"0\",\"status\":\"unavailable\"}}', '[{\"id\":\"1\",\"is_email\":\"false\",\"is_phone\":\"false\",\"add_to_day_hour_info\":\"false\",\"add_to_day_hour_body\":\"false\",\"translation\":\"First name\",\"value\":\"Michael\"},{\"id\":\"2\",\"is_email\":\"false\",\"is_phone\":\"false\",\"add_to_day_hour_info\":\"false\",\"add_to_day_hour_body\":\"false\",\"translation\":\"Last name\",\"value\":\"Grantham\"},{\"id\":\"3\",\"is_email\":\"true\",\"is_phone\":\"false\",\"add_to_day_hour_info\":\"false\",\"add_to_day_hour_body\":\"false\",\"translation\":\"Email\",\"value\":\"design@workspacesolutions.co.za\"},{\"id\":\"4\",\"is_email\":\"false\",\"is_phone\":\"false\",\"add_to_day_hour_info\":\"false\",\"add_to_day_hour_body\":\"false\",\"translation\":\"Phone\",\"value\":\"0824657207\"},{\"id\":\"5\",\"is_email\":\"false\",\"is_phone\":\"false\",\"add_to_day_hour_info\":\"false\",\"add_to_day_hour_body\":\"false\",\"translation\":\"Message\",\"value\":\"Looking for two double rooms on the dates indicated 4 adults Attending wedding 4 Willow\"}]', '', '', 'design@workspacesolutions.co.za', 'expired', 'none', 'pending', '', '', '2022-08-15 08:58:11', '', '', 'pinpoint', '84@msla.co.za/lodge', ''),
(85, 1, 'en', '&#82;', 'ZAR', '2022-09-16', '2022-09-17', '', '', 1, 0, 0, 0, '', 0, '{\"id\":\"0\",\"rule_id\":\"0\",\"operation\":\"-\",\"price\":\"0\",\"price_type\":\"percent\",\"price_by\":\"once\",\"start_date\":\"\",\"end_date\":\"\",\"start_hour\":\"\",\"end_hour\":\"\",\"translation\":\"\"}', 0, '{\"id\":\"0\",\"code\":\"\",\"operation\":\"-\",\"price\":\"0\",\"price_type\":\"percent\",\"price_by\":\"once\",\"translation\":\"\"}', 0, '[{\"id\":\"1\",\"user_id\":\"1\",\"name\":\"VAT\",\"operation\":\"+\",\"price\":\"15\",\"price_type\":\"percent\",\"price_by\":\"once\",\"included\":\"true\",\"extras\":\"true\",\"cart\":\"true\",\"translation\":\"VAT\",\"price_total\":\"0\"}]', 0, '{\"price\":\"100\",\"price_type\":\"percent\"}', 0, '{\"2022-09-16\":{\"available\":\"1\",\"bind\":\"0\",\"price\":\"0\",\"promo\":\"0\",\"status\":\"unavailable\"}}', '[{\"id\":\"1\",\"is_email\":\"false\",\"is_phone\":\"false\",\"add_to_day_hour_info\":\"false\",\"add_to_day_hour_body\":\"false\",\"translation\":\"First name\",\"value\":\"Chantelle\"},{\"id\":\"2\",\"is_email\":\"false\",\"is_phone\":\"false\",\"add_to_day_hour_info\":\"false\",\"add_to_day_hour_body\":\"false\",\"translation\":\"Last name\",\"value\":\"White\"},{\"id\":\"3\",\"is_email\":\"true\",\"is_phone\":\"false\",\"add_to_day_hour_info\":\"false\",\"add_to_day_hour_body\":\"false\",\"translation\":\"Email\",\"value\":\"Esselkzn@gmail.com\"},{\"id\":\"4\",\"is_email\":\"false\",\"is_phone\":\"false\",\"add_to_day_hour_info\":\"false\",\"add_to_day_hour_body\":\"false\",\"translation\":\"Phone\",\"value\":\"0712042965\"},{\"id\":\"5\",\"is_email\":\"false\",\"is_phone\":\"false\",\"add_to_day_hour_info\":\"false\",\"add_to_day_hour_body\":\"false\",\"translation\":\"Message\",\"value\":\"We\'ll be 2 adults and 1 child 11 years old. Your site won\'t allow me to add in more than 1 guest\"}]', '', '', 'Esselkzn@gmail.com', 'expired', 'none', 'pending', '', '', '2022-08-18 13:12:17', '', '', 'pinpoint', '85@msla.co.za/lodge', '');
INSERT INTO `wp_dopbsp_reservations` (`id`, `calendar_id`, `language`, `currency`, `currency_code`, `check_in`, `check_out`, `start_hour`, `end_hour`, `no_items`, `price`, `price_total`, `refund`, `extras`, `extras_price`, `discount`, `discount_price`, `coupon`, `coupon_price`, `fees`, `fees_price`, `deposit`, `deposit_price`, `days_hours_history`, `form`, `address_billing`, `address_shipping`, `email`, `status`, `payment_method`, `payment_status`, `transaction_id`, `token`, `date_created`, `phone`, `ip`, `reservation_from`, `uid`, `stripe_user`) VALUES
(86, 1, 'en', '&#82;', 'ZAR', '2023-08-11', '2023-08-13', '', '', 1, 0, 0, 0, '', 0, '{\"id\":\"0\",\"rule_id\":\"0\",\"operation\":\"-\",\"price\":\"0\",\"price_type\":\"percent\",\"price_by\":\"once\",\"start_date\":\"\",\"end_date\":\"\",\"start_hour\":\"\",\"end_hour\":\"\",\"translation\":\"\"}', 0, '{\"id\":\"0\",\"code\":\"\",\"operation\":\"-\",\"price\":\"0\",\"price_type\":\"percent\",\"price_by\":\"once\",\"translation\":\"\"}', 0, '[{\"id\":\"1\",\"user_id\":\"1\",\"name\":\"VAT\",\"operation\":\"+\",\"price\":\"15\",\"price_type\":\"percent\",\"price_by\":\"once\",\"included\":\"true\",\"extras\":\"true\",\"cart\":\"true\",\"translation\":\"VAT\",\"price_total\":\"0\"}]', 0, '{\"price\":\"100\",\"price_type\":\"percent\"}', 0, '{\"2023-08-11\":{\"available\":\"1\",\"bind\":\"0\",\"price\":\"0\",\"promo\":\"0\",\"status\":\"unavailable\"},\"2023-08-12\":{\"available\":\"1\",\"bind\":\"0\",\"price\":\"0\",\"promo\":\"0\",\"status\":\"unavailable\"}}', '[{\"id\":\"1\",\"is_email\":\"false\",\"is_phone\":\"false\",\"add_to_day_hour_info\":\"false\",\"add_to_day_hour_body\":\"false\",\"translation\":\"First name\",\"value\":\"Barbara\"},{\"id\":\"2\",\"is_email\":\"false\",\"is_phone\":\"false\",\"add_to_day_hour_info\":\"false\",\"add_to_day_hour_body\":\"false\",\"translation\":\"Last name\",\"value\":\"Robarts\"},{\"id\":\"3\",\"is_email\":\"true\",\"is_phone\":\"false\",\"add_to_day_hour_info\":\"false\",\"add_to_day_hour_body\":\"false\",\"translation\":\"Email\",\"value\":\"robarts@zulucom.net\"},{\"id\":\"4\",\"is_email\":\"false\",\"is_phone\":\"false\",\"add_to_day_hour_info\":\"false\",\"add_to_day_hour_body\":\"false\",\"translation\":\"Phone\",\"value\":\"0824635870\"},{\"id\":\"5\",\"is_email\":\"false\",\"is_phone\":\"false\",\"add_to_day_hour_info\":\"false\",\"add_to_day_hour_body\":\"false\",\"translation\":\"Message\",\"value\":\"For 3 adults in 2 rooms please\"}]', '', '', 'robarts@zulucom.net', 'expired', 'none', 'pending', '', '', '2023-07-14 16:09:03', '', '', 'pinpoint', '86@msla.co.za/lodge', ''),
(87, 1, 'en', '&#82;', 'ZAR', '2023-08-24', '2023-08-27', '', '', 1, 0, 0, 0, '', 0, '{\"id\":\"0\",\"rule_id\":\"0\",\"operation\":\"-\",\"price\":\"0\",\"price_type\":\"percent\",\"price_by\":\"once\",\"start_date\":\"\",\"end_date\":\"\",\"start_hour\":\"\",\"end_hour\":\"\",\"translation\":\"\"}', 0, '{\"id\":\"0\",\"code\":\"\",\"operation\":\"-\",\"price\":\"0\",\"price_type\":\"percent\",\"price_by\":\"once\",\"translation\":\"\"}', 0, '[{\"id\":\"1\",\"user_id\":\"1\",\"name\":\"VAT\",\"operation\":\"+\",\"price\":\"15\",\"price_type\":\"percent\",\"price_by\":\"once\",\"included\":\"true\",\"extras\":\"true\",\"cart\":\"true\",\"translation\":\"VAT\",\"price_total\":\"0\"}]', 0, '{\"price\":\"100\",\"price_type\":\"percent\"}', 0, '{\"2023-08-24\":{\"available\":\"1\",\"bind\":\"0\",\"price\":\"0\",\"promo\":\"0\",\"status\":\"unavailable\"},\"2023-08-25\":{\"available\":\"1\",\"bind\":\"0\",\"price\":\"0\",\"promo\":\"0\",\"status\":\"unavailable\"},\"2023-08-26\":{\"available\":\"1\",\"bind\":\"0\",\"price\":\"0\",\"promo\":\"0\",\"status\":\"unavailable\"}}', '[{\"id\":\"1\",\"is_email\":\"false\",\"is_phone\":\"false\",\"add_to_day_hour_info\":\"false\",\"add_to_day_hour_body\":\"false\",\"translation\":\"First name\",\"value\":\"Alton\"},{\"id\":\"2\",\"is_email\":\"false\",\"is_phone\":\"false\",\"add_to_day_hour_info\":\"false\",\"add_to_day_hour_body\":\"false\",\"translation\":\"Last name\",\"value\":\"Rudd\"},{\"id\":\"3\",\"is_email\":\"true\",\"is_phone\":\"false\",\"add_to_day_hour_info\":\"false\",\"add_to_day_hour_body\":\"false\",\"translation\":\"Email\",\"value\":\"altonrudd@yahoo.com\"},{\"id\":\"4\",\"is_email\":\"false\",\"is_phone\":\"false\",\"add_to_day_hour_info\":\"false\",\"add_to_day_hour_body\":\"false\",\"translation\":\"Phone\",\"value\":\"0836729860\"},{\"id\":\"5\",\"is_email\":\"false\",\"is_phone\":\"false\",\"add_to_day_hour_info\":\"false\",\"add_to_day_hour_body\":\"false\",\"translation\":\"Message\",\"value\":\"I wanted a bit more information on your accommodation and availability. My dates in mind are 18\\/8 to 21\\/8 or 25\\/8 to 28\\/8. Depending on availability it could be up to 6 adults and 3 kids (and not necessarily all in the same room). Please can you let me know your rates and availability when you get some time. I look forward to hearing from you.\"}]', '', '', 'altonrudd@yahoo.com', 'expired', 'none', 'pending', '', '', '2023-08-05 12:39:28', '', '', 'pinpoint', '87@msla.co.za/lodge', ''),
(88, 1, 'en', '&#82;', 'ZAR', '2023-12-26', '2023-12-29', '', '', 1, 0, 0, 0, '', 0, '{\"id\":\"0\",\"rule_id\":\"0\",\"operation\":\"-\",\"price\":\"0\",\"price_type\":\"percent\",\"price_by\":\"once\",\"start_date\":\"\",\"end_date\":\"\",\"start_hour\":\"\",\"end_hour\":\"\",\"translation\":\"\"}', 0, '{\"id\":\"0\",\"code\":\"\",\"operation\":\"-\",\"price\":\"0\",\"price_type\":\"percent\",\"price_by\":\"once\",\"translation\":\"\"}', 0, '[{\"id\":\"1\",\"user_id\":\"1\",\"name\":\"VAT\",\"operation\":\"+\",\"price\":\"15\",\"price_type\":\"percent\",\"price_by\":\"once\",\"included\":\"true\",\"extras\":\"true\",\"cart\":\"true\",\"translation\":\"VAT\",\"price_total\":\"0\"}]', 0, '{\"price\":\"100\",\"price_type\":\"percent\"}', 0, '{\"2023-12-26\":{\"available\":\"1\",\"bind\":\"0\",\"price\":\"0\",\"promo\":\"0\",\"status\":\"unavailable\"},\"2023-12-27\":{\"available\":\"1\",\"bind\":\"0\",\"price\":\"0\",\"promo\":\"0\",\"status\":\"unavailable\"},\"2023-12-28\":{\"available\":\"1\",\"bind\":\"0\",\"price\":\"0\",\"promo\":\"0\",\"status\":\"unavailable\"}}', '[{\"id\":\"1\",\"is_email\":\"false\",\"is_phone\":\"false\",\"add_to_day_hour_info\":\"false\",\"add_to_day_hour_body\":\"false\",\"translation\":\"First name\",\"value\":\"Alistair\"},{\"id\":\"2\",\"is_email\":\"false\",\"is_phone\":\"false\",\"add_to_day_hour_info\":\"false\",\"add_to_day_hour_body\":\"false\",\"translation\":\"Last name\",\"value\":\"Clarivette\"},{\"id\":\"3\",\"is_email\":\"true\",\"is_phone\":\"false\",\"add_to_day_hour_info\":\"false\",\"add_to_day_hour_body\":\"false\",\"translation\":\"Email\",\"value\":\"aclarivette13@gmail.com\"},{\"id\":\"4\",\"is_email\":\"false\",\"is_phone\":\"false\",\"add_to_day_hour_info\":\"false\",\"add_to_day_hour_body\":\"false\",\"translation\":\"Phone\",\"value\":\"0837841554\"},{\"id\":\"5\",\"is_email\":\"false\",\"is_phone\":\"false\",\"add_to_day_hour_info\":\"false\",\"add_to_day_hour_body\":\"false\",\"translation\":\"Message\",\"value\":\"I would like to check availability from 26-29 December 2023 for 4 adults & 1 child (9yrs).\"}]', '', '', 'aclarivette13@gmail.com', 'expired', 'none', 'pending', '', '', '2023-11-17 08:08:05', '', '', 'pinpoint', '88@msla.co.za/lodge', '');

-- --------------------------------------------------------

--
-- Table structure for table `wp_dopbsp_rules`
--

CREATE TABLE `wp_dopbsp_rules` (
  `id` bigint(20) UNSIGNED NOT NULL,
  `user_id` bigint(20) UNSIGNED NOT NULL DEFAULT 0,
  `name` varchar(128) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
  `time_lapse_min` float NOT NULL DEFAULT 0,
  `time_lapse_max` float NOT NULL DEFAULT 0
) ENGINE=InnoDB DEFAULT CHARSET=latin1 COLLATE=latin1_swedish_ci;

--
-- Dumping data for table `wp_dopbsp_rules`
--

INSERT INTO `wp_dopbsp_rules` (`id`, `user_id`, `name`, `time_lapse_min`, `time_lapse_max`) VALUES
(1, 1, 'Minimum Stay', 1, 0);

-- --------------------------------------------------------

--
-- Table structure for table `wp_dopbsp_searches`
--

CREATE TABLE `wp_dopbsp_searches` (
  `id` bigint(20) UNSIGNED NOT NULL,
  `user_id` bigint(20) UNSIGNED NOT NULL DEFAULT 0,
  `name` varchar(128) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
  `calendars_excluded` text CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL,
  `currency` varchar(128) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'USD',
  `currency_position` varchar(32) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'before',
  `hours_enabled` varchar(6) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'false'
) ENGINE=InnoDB DEFAULT CHARSET=latin1 COLLATE=latin1_swedish_ci;

-- --------------------------------------------------------

--
-- Table structure for table `wp_dopbsp_settings`
--

CREATE TABLE `wp_dopbsp_settings` (
  `id` bigint(20) UNSIGNED NOT NULL,
  `name` varchar(128) DEFAULT NULL,
  `value` varchar(128) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT ''
) ENGINE=InnoDB DEFAULT CHARSET=latin1 COLLATE=latin1_swedish_ci;

-- --------------------------------------------------------

--
-- Table structure for table `wp_dopbsp_settings_calendar`
--

CREATE TABLE `wp_dopbsp_settings_calendar` (
  `id` bigint(20) UNSIGNED NOT NULL,
  `calendar_id` bigint(20) UNSIGNED NOT NULL DEFAULT 0,
  `name` varchar(128) DEFAULT NULL,
  `value` text CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL
) ENGINE=InnoDB DEFAULT CHARSET=latin1 COLLATE=latin1_swedish_ci;

--
-- Dumping data for table `wp_dopbsp_settings_calendar`
--

INSERT INTO `wp_dopbsp_settings_calendar` (`id`, `calendar_id`, `name`, `value`) VALUES
(1, 1, 'date_type', '2'),
(2, 1, 'months_no', '0'),
(3, 1, 'days_morning_check_out', 'true'),
(4, 1, 'days_details_from_hours', 'false'),
(5, 1, 'hours_info_enabled', 'false'),
(6, 1, 'hours_add_last_hour_to_total_price', 'false'),
(7, 1, 'deposit', '100'),
(8, 1, 'terms_and_conditions_enabled', 'true'),
(9, 1, 'extra', '1'),
(10, 1, 'currency', 'ZAR'),
(11, 1, 'view_only', 'false'),
(12, 1, 'sidebar_no_items_enabled', 'true'),
(13, 1, 'discount', '1'),
(14, 1, 'sidebar_style', '1'),
(15, 1, 'rule', '0'),
(16, 1, 'fees', '1'),
(17, 1, 'terms_and_conditions_link', 'http://msla.co.za/lodge/tcs/'),
(18, 1, 'deposit_pay_full_amount', 'false'),
(19, 1, 'airbnb_enabled', 'false'),
(20, 1, 'timezone', 'Africa/Harare'),
(21, 1, 'hide_no_available', 'true'),
(22, 1, 'hide_price', 'true');

-- --------------------------------------------------------

--
-- Table structure for table `wp_dopbsp_settings_notifications`
--

CREATE TABLE `wp_dopbsp_settings_notifications` (
  `id` bigint(20) UNSIGNED NOT NULL,
  `calendar_id` bigint(20) UNSIGNED NOT NULL DEFAULT 0,
  `name` varchar(128) DEFAULT NULL,
  `value` text CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL
) ENGINE=InnoDB DEFAULT CHARSET=latin1 COLLATE=latin1_swedish_ci;

--
-- Dumping data for table `wp_dopbsp_settings_notifications`
--

INSERT INTO `wp_dopbsp_settings_notifications` (`id`, `calendar_id`, `name`, `value`) VALUES
(1, 1, 'send_paypal_admin', 'false'),
(2, 1, 'send_paypal_user', 'false'),
(3, 1, 'send_book_with_approval_admin', 'false'),
(4, 1, 'email', 'assagaylodge@msla.co.za'),
(5, 1, 'email_reply', 'assagaylodge@msla.co.za'),
(6, 1, 'email_name', 'Assagay Forest Lodge'),
(7, 1, 'method_user', 'smtp'),
(8, 1, 'smtp_host_name', 'sh02-pta.za-dns.com'),
(9, 1, 'smtp_user', 'assagaylodge@msla.co.za'),
(10, 1, 'smtp_user2', 'assagaylodge@msla.co.za'),
(11, 1, 'smtp_password2', ''),
(12, 1, 'smtp_host_name2', ''),
(13, 1, 'smtp_password', 'light'),
(14, 1, 'smtp_ssl', 'true'),
(15, 1, 'smtp_tls', 'false'),
(16, 1, 'smtp_host_port2', '25'),
(17, 1, 'smtp_host_port', '465');

-- --------------------------------------------------------

--
-- Table structure for table `wp_dopbsp_settings_payment`
--

CREATE TABLE `wp_dopbsp_settings_payment` (
  `id` bigint(20) UNSIGNED NOT NULL,
  `calendar_id` bigint(20) UNSIGNED NOT NULL DEFAULT 0,
  `name` varchar(128) DEFAULT NULL,
  `value` text CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL
) ENGINE=InnoDB DEFAULT CHARSET=latin1 COLLATE=latin1_swedish_ci;

--
-- Dumping data for table `wp_dopbsp_settings_payment`
--

INSERT INTO `wp_dopbsp_settings_payment` (`id`, `calendar_id`, `name`, `value`) VALUES
(1, 1, 'paypal_enabled', 'false'),
(2, 1, 'arrival_enabled', 'false'),
(3, 1, 'arrival_with_approval_enabled', 'false'),
(4, 1, 'redirect', 'http://msla.co.za/lodge/thank-you/');

-- --------------------------------------------------------

--
-- Table structure for table `wp_dopbsp_settings_search`
--

CREATE TABLE `wp_dopbsp_settings_search` (
  `id` bigint(20) UNSIGNED NOT NULL,
  `search_id` bigint(20) UNSIGNED NOT NULL DEFAULT 0,
  `name` varchar(128) DEFAULT NULL,
  `value` text CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL
) ENGINE=InnoDB DEFAULT CHARSET=latin1 COLLATE=latin1_swedish_ci;

-- --------------------------------------------------------

--
-- Table structure for table `wp_dopbsp_smses`
--

CREATE TABLE `wp_dopbsp_smses` (
  `id` bigint(20) UNSIGNED NOT NULL,
  `user_id` bigint(20) UNSIGNED NOT NULL DEFAULT 0,
  `name` varchar(128) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT ''
) ENGINE=InnoDB DEFAULT CHARSET=latin1 COLLATE=latin1_swedish_ci;

--
-- Dumping data for table `wp_dopbsp_smses`
--

INSERT INTO `wp_dopbsp_smses` (`id`, `user_id`, `name`) VALUES
(1, 0, 'Default SMS templates');

-- --------------------------------------------------------

--
-- Table structure for table `wp_dopbsp_smses_translation`
--

CREATE TABLE `wp_dopbsp_smses_translation` (
  `id` bigint(20) UNSIGNED NOT NULL,
  `sms_id` bigint(20) UNSIGNED NOT NULL DEFAULT 0,
  `template` varchar(64) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '',
  `message` longtext CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_520_ci NOT NULL
) ENGINE=InnoDB DEFAULT CHARSET=latin1 COLLATE=latin1_swedish_ci;

--
-- Dumping data for table `wp_dopbsp_smses_translation`
--

INSERT INTO `wp_dopbsp_smses_translation` (`id`, `sms_id`, `template`, `message`) VALUES
(1, 1, 'book_admin', '{\"en\": \"You received a booking request.|DETAILS|\"}'),
(2, 1, 'book_user', '{\"en\": \"Your booking request has been sent.|DETAILS|\"}'),
(3, 1, 'book_with_approval_admin', '{\"en\": \"You received a booking request.|DETAILS|\"}'),
(4, 1, 'book_with_approval_user', '{\"en\": \"Your booking request has been sent.Please wait for approval.|DETAILS|\"}'),
(5, 1, 'approved', '{\"en\": \"Your booking request has been approved.|DETAILS|\"}'),
(6, 1, 'canceled', '{\"en\": \"Your booking request has been canceled.|DETAILS|\"}'),
(7, 1, 'rejected', '{\"en\": \"Your booking request has been rejected.|DETAILS|\"}');

-- --------------------------------------------------------

--
-- Table structure for table `wp_dopbsp_translation_en`
--

CREATE TABLE `wp_dopbsp_translation_en` (
  `id` bigint(20) UNSIGNED NOT NULL,
  `key_data` varchar(128) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '',
  `parent_key` varchar(128) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '',
  `text_data` text CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_520_ci NOT NULL,
  `translation` text CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_520_ci NOT NULL,
  `location` varchar(32) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT 'backend'
) ENGINE=InnoDB DEFAULT CHARSET=latin1 COLLATE=latin1_swedish_ci;

--
-- Dumping data for table `wp_dopbsp_translation_en`
--

INSERT INTO `wp_dopbsp_translation_en` (`id`, `key_data`, `parent_key`, `text_data`, `translation`, `location`) VALUES
(1, 'PARENT_SETTINGS_PAYMENT_GATEWAYS_PAYPAL', '', 'Settings - PayPal', 'Settings - PayPal', 'backend'),
(2, 'SETTINGS_PAYMENT_GATEWAYS_PAYPAL', 'PARENT_SETTINGS_PAYMENT_GATEWAYS_PAYPAL', 'PayPal', 'PayPal', 'backend'),
(3, 'SETTINGS_PAYMENT_GATEWAYS_PAYPAL_ENABLED', 'PARENT_SETTINGS_PAYMENT_GATEWAYS_PAYPAL', 'Enable PayPal payment', 'Enable PayPal payment', 'backend'),
(4, 'SETTINGS_PAYMENT_GATEWAYS_PAYPAL_CREDIT_CARD', 'PARENT_SETTINGS_PAYMENT_GATEWAYS_PAYPAL', 'Enable PayPal credit card payment', 'Enable PayPal credit card payment', 'backend'),
(5, 'SETTINGS_PAYMENT_GATEWAYS_PAYPAL_USERNAME', 'PARENT_SETTINGS_PAYMENT_GATEWAYS_PAYPAL', 'PayPal API user name', 'PayPal API user name', 'backend'),
(6, 'SETTINGS_PAYMENT_GATEWAYS_PAYPAL_PASSWORD', 'PARENT_SETTINGS_PAYMENT_GATEWAYS_PAYPAL', 'PayPal API password', 'PayPal API password', 'backend'),
(7, 'SETTINGS_PAYMENT_GATEWAYS_PAYPAL_SIGNATURE', 'PARENT_SETTINGS_PAYMENT_GATEWAYS_PAYPAL', 'PayPal API signature', 'PayPal API signature', 'backend'),
(8, 'SETTINGS_PAYMENT_GATEWAYS_PAYPAL_SANDBOX_ENABLED', 'PARENT_SETTINGS_PAYMENT_GATEWAYS_PAYPAL', 'Enable PayPal sandbox', 'Enable PayPal sandbox', 'backend'),
(9, 'SETTINGS_PAYMENT_GATEWAYS_PAYPAL_SANDBOX_USERNAME', 'PARENT_SETTINGS_PAYMENT_GATEWAYS_PAYPAL', 'PayPal API sandbox user name', 'PayPal API sandbox user name', 'backend'),
(10, 'SETTINGS_PAYMENT_GATEWAYS_PAYPAL_SANDBOX_PASSWORD', 'PARENT_SETTINGS_PAYMENT_GATEWAYS_PAYPAL', 'PayPal API sandbox password', 'PayPal API sandbox password', 'backend'),
(11, 'SETTINGS_PAYMENT_GATEWAYS_PAYPAL_SANDBOX_SIGNATURE', 'PARENT_SETTINGS_PAYMENT_GATEWAYS_PAYPAL', 'PayPal API sandbox signature', 'PayPal API sandbox signature', 'backend'),
(12, 'SETTINGS_PAYMENT_GATEWAYS_PAYPAL_REFUND_ENABLED', 'PARENT_SETTINGS_PAYMENT_GATEWAYS_PAYPAL', 'Enable refunds', 'Enable refunds', 'backend'),
(13, 'SETTINGS_PAYMENT_GATEWAYS_PAYPAL_REFUND_VALUE', 'PARENT_SETTINGS_PAYMENT_GATEWAYS_PAYPAL', 'Refund value', 'Refund value', 'backend'),
(14, 'SETTINGS_PAYMENT_GATEWAYS_PAYPAL_REFUND_TYPE', 'PARENT_SETTINGS_PAYMENT_GATEWAYS_PAYPAL', 'Refund type', 'Refund type', 'backend'),
(15, 'SETTINGS_PAYMENT_GATEWAYS_PAYPAL_REFUND_TYPE_FIXED', 'PARENT_SETTINGS_PAYMENT_GATEWAYS_PAYPAL', 'Fixed', 'Fixed', 'backend'),
(16, 'SETTINGS_PAYMENT_GATEWAYS_PAYPAL_REFUND_TYPE_PERCENT', 'PARENT_SETTINGS_PAYMENT_GATEWAYS_PAYPAL', 'Percent', 'Percent', 'backend'),
(17, 'SETTINGS_PAYMENT_GATEWAYS_PAYPAL_REDIRECT', 'PARENT_SETTINGS_PAYMENT_GATEWAYS_PAYPAL', 'Redirect after payment', 'Redirect after payment', 'backend'),
(18, 'SETTINGS_PAYMENT_GATEWAYS_PAYPAL_SEND_ADMIN', 'PARENT_SETTINGS_PAYMENT_GATEWAYS_PAYPAL', 'PayPal - Notify admin', 'PayPal - Notify admin', 'backend'),
(19, 'SETTINGS_PAYMENT_GATEWAYS_PAYPAL_SEND_USER', 'PARENT_SETTINGS_PAYMENT_GATEWAYS_PAYPAL', 'PayPal - Notify user', 'PayPal - Notify user', 'backend'),
(20, 'PARENT_SETTINGS_PAYMENT_GATEWAYS_PAYPAL_HELP', '', 'Settings - PayPal - Help', 'Settings - PayPal - Help', 'backend'),
(21, 'SETTINGS_PAYMENT_GATEWAYS_PAYPAL_ENABLED_HELP', 'PARENT_SETTINGS_PAYMENT_GATEWAYS_PAYPAL_HELP', 'Default value: Disabled. Allow users to pay with PayPal. The period is instantly booked.', 'Default value: Disabled. Allow users to pay with PayPal. The period is instantly booked.', 'backend'),
(22, 'SETTINGS_PAYMENT_GATEWAYS_PAYPAL_CREDIT_CARD_HELP', 'PARENT_SETTINGS_PAYMENT_GATEWAYS_PAYPAL_HELP', 'Default value: Disabled. Enable so that users can pay directly with their credit card.', 'Default value: Disabled. Enable so that users can pay directly with their credit card.', 'backend'),
(23, 'SETTINGS_PAYMENT_GATEWAYS_PAYPAL_USERNAME_HELP', 'PARENT_SETTINGS_PAYMENT_GATEWAYS_PAYPAL_HELP', 'Enter PayPal API credentials user name. View documentation to see from were you can get them.', 'Enter PayPal API credentials user name. View documentation to see from were you can get them.', 'backend'),
(24, 'SETTINGS_PAYMENT_GATEWAYS_PAYPAL_PASSWORD_HELP', 'PARENT_SETTINGS_PAYMENT_GATEWAYS_PAYPAL_HELP', 'Enter PayPal API credentials password. View documentation to see from were you can get them.', 'Enter PayPal API credentials password. View documentation to see from were you can get them.', 'backend'),
(25, 'SETTINGS_PAYMENT_GATEWAYS_PAYPAL_SIGNATURE_HELP', 'PARENT_SETTINGS_PAYMENT_GATEWAYS_PAYPAL_HELP', 'Enter PayPal API credentials signature. View documentation to see from were you can get them.', 'Enter PayPal API credentials signature. View documentation to see from were you can get them.', 'backend'),
(26, 'SETTINGS_PAYMENT_GATEWAYS_PAYPAL_SANDBOX_ENABLED_HELP', 'PARENT_SETTINGS_PAYMENT_GATEWAYS_PAYPAL_HELP', 'Default value: Disabled. Enable to use PayPal sandbox features.', 'Default value: Disabled. Enable to use PayPal sandbox features.', 'backend'),
(27, 'SETTINGS_PAYMENT_GATEWAYS_PAYPAL_SANDBOX_USERNAME_HELP', 'PARENT_SETTINGS_PAYMENT_GATEWAYS_PAYPAL_HELP', 'Enter PayPal API sandbox credentials user name.', 'Enter PayPal API sandbox credentials user name.', 'backend'),
(28, 'SETTINGS_PAYMENT_GATEWAYS_PAYPAL_SANDBOX_PASSWORD_HELP', 'PARENT_SETTINGS_PAYMENT_GATEWAYS_PAYPAL_HELP', 'Enter PayPal API sandbox credentials password.', 'Enter PayPal API sandbox credentials password.', 'backend'),
(29, 'SETTINGS_PAYMENT_GATEWAYS_PAYPAL_SANDBOX_SIGNATURE_HELP', 'PARENT_SETTINGS_PAYMENT_GATEWAYS_PAYPAL_HELP', 'Enter PayPal API sandbox credentials signature.', 'Enter PayPal API sandbox credentials signature.', 'backend'),
(30, 'SETTINGS_PAYMENT_GATEWAYS_PAYPAL_REFUND_ENABLED_HELP', 'PARENT_SETTINGS_PAYMENT_GATEWAYS_PAYPAL_HELP', 'Default value: Disabled. Users that paid with PayPal will be refunded automatically if a reservation is canceled.', 'Default value: Disabled. Users that paid with PayPal will be refunded automatically if a reservation is canceled.', 'backend'),
(31, 'SETTINGS_PAYMENT_GATEWAYS_PAYPAL_REFUND_VALUE_HELP', 'PARENT_SETTINGS_PAYMENT_GATEWAYS_PAYPAL_HELP', 'Default value: 100. Enter the refund value from reservation total price.', 'Default value: 100. Enter the refund value from reservation total price.', 'backend'),
(32, 'SETTINGS_PAYMENT_GATEWAYS_PAYPAL_REFUND_TYPE_HELP', 'PARENT_SETTINGS_PAYMENT_GATEWAYS_PAYPAL_HELP', 'Default value: Percent. Select refund value type. It can be a fixed value or a percent from reservation price.', 'Default value: Percent. Select refund value type. It can be a fixed value or a percent from reservation price.', 'backend'),
(33, 'SETTINGS_PAYMENT_GATEWAYS_PAYPAL_REDIRECT_HELP', 'PARENT_SETTINGS_PAYMENT_GATEWAYS_PAYPAL_HELP', 'Enter the URL where to redirect after the payment has been completed. Leave it blank to redirect back to the calendar.', 'Enter the URL where to redirect after the payment has been completed. Leave it blank to redirect back to the calendar.', 'backend'),
(34, 'SETTINGS_PAYMENT_GATEWAYS_PAYPAL_SEND_ADMIN_HELP', 'PARENT_SETTINGS_PAYMENT_GATEWAYS_PAYPAL_HELP', 'Enable to send an email notification to admin on book request payed with PayPal.', 'Enable to send an email notification to admin on book request payed with PayPal.', 'backend'),
(35, 'SETTINGS_PAYMENT_GATEWAYS_PAYPAL_SEND_USER_HELP', 'PARENT_SETTINGS_PAYMENT_GATEWAYS_PAYPAL_HELP', 'Enable to send an email notification to user on book request payed with PayPal.', 'Enable to send an email notification to user on book request payed with PayPal.', 'backend'),
(36, 'PARENT_ORDER_PAYMENT_GATEWAYS_PAYPAL', '', 'Order - PayPal', 'Order - PayPal', 'backend'),
(37, 'ORDER_PAYMENT_METHOD_PAYPAL', 'PARENT_RESERVATIONS_RESERVATION', 'PayPal', 'PayPal', 'all'),
(38, 'ORDER_PAYMENT_GATEWAYS_PAYPAL', 'PARENT_ORDER_PAYMENT_GATEWAYS_PAYPAL', 'Pay on PayPal (instant booking)', 'Pay on PayPal (instant booking)', 'all'),
(39, 'ORDER_PAYMENT_GATEWAYS_PAYPAL_SUCCESS', 'PARENT_ORDER_PAYMENT_GATEWAYS_PAYPAL', 'Your payment was approved and services are booked.', 'Your payment was approved and services are booked.', 'all'),
(40, 'ORDER_PAYMENT_GATEWAYS_PAYPAL_CANCEL', 'PARENT_ORDER_PAYMENT_GATEWAYS_PAYPAL', 'You canceled your payment with PayPal. Please try again.', 'You canceled your payment with PayPal. Please try again.', 'all'),
(41, 'ORDER_PAYMENT_GATEWAYS_PAYPAL_ERROR', 'PARENT_ORDER_PAYMENT_GATEWAYS_PAYPAL', 'There was an error while processing PayPal payment. Please try again.', 'There was an error while processing PayPal payment. Please try again.', 'all'),
(42, 'PARENT_EMAILS_DEFAULT_PAYPAL', '', 'Email templates - PayPal default messages', 'Email templates - PayPal default messages', 'backend'),
(43, 'EMAILS_EMAIL_TEMPLATE_SELECT_PAYPAL_ADMIN', 'PARENT_EMAILS_DEFAULT_PAYPAL', 'PayPal admin notification', 'PayPal admin notification', 'backend'),
(44, 'EMAILS_DEFAULT_PAYPAL_ADMIN_SUBJECT', 'PARENT_EMAILS_DEFAULT_PAYPAL', 'You received a booking request.', 'You received a booking request.', 'backend'),
(45, 'EMAILS_DEFAULT_PAYPAL_ADMIN', 'PARENT_EMAILS_DEFAULT_PAYPAL', 'Below are the details. Payment has been done via PayPal and the period has been booked.', 'Below are the details. Payment has been done via PayPal and the period has been booked.', 'backend'),
(46, 'EMAILS_EMAIL_TEMPLATE_SELECT_PAYPAL_USER', 'PARENT_EMAILS_DEFAULT_PAYPAL', 'PayPal user notification', 'PayPal user notification', 'backend'),
(47, 'EMAILS_DEFAULT_PAYPAL_USER_SUBJECT', 'PARENT_EMAILS_DEFAULT_PAYPAL', 'Your booking request has been sent.', 'Your booking request has been sent.', 'backend'),
(48, 'EMAILS_DEFAULT_PAYPAL_USER', 'PARENT_EMAILS_DEFAULT_PAYPAL', 'The period has been book. Below are the details.', 'The period has been book. Below are the details.', 'backend'),
(49, 'PARENT_ADDONS', '', 'Add-ons', 'Add-ons', 'backend'),
(50, 'ADDONS_TITLE', 'PARENT_ADDONS', 'Add-ons', 'Add-ons', 'backend'),
(51, 'ADDONS_HELP', 'PARENT_ADDONS', 'Increase and improve booking system functionalities with one of the following addons.', 'Increase and improve booking system functionalities with one of the following addons.', 'backend'),
(52, 'ADDONS_LOAD_SUCCESS', 'PARENT_ADDONS', 'Add-ons list loaded.', 'Add-ons list loaded.', 'backend'),
(53, 'ADDONS_LOAD_ERROR', 'PARENT_ADDONS', 'Add-ons list failed to load. Please refresh the page to try again.', 'Add-ons list failed to load. Please refresh the page to try again.', 'backend'),
(54, 'ADDONS_FILTERS_SEARCH', 'PARENT_ADDONS', 'Search', 'Search', 'backend'),
(55, 'ADDONS_FILTERS_SEARCH_TERMS', 'PARENT_ADDONS', 'Enter search terms', 'Enter search terms', 'backend'),
(56, 'ADDONS_FILTERS_CATEGORIES', 'PARENT_ADDONS', 'Categories', 'Categories', 'backend'),
(57, 'ADDONS_FILTERS_CATEGORIES_ALL', 'PARENT_ADDONS', 'All', 'All', 'backend'),
(58, 'ADDONS_ADDON_PRICE', 'PARENT_ADDONS', 'Price:', 'Price:', 'backend'),
(59, 'ADDONS_ADDON_GET_IT_NOW', 'PARENT_ADDONS', 'Get it now', 'Get it now', 'backend'),
(60, 'PARENT_AMENITIES', '', 'Amenities', 'Amenities', 'backend'),
(61, 'AMENITIES_TITLE', 'PARENT_AMENITIES', 'Amenities', 'Amenities', 'backend'),
(62, 'PARENT_CALENDARS', '', 'Calendars', 'Calendars', 'backend'),
(63, 'CALENDARS_TITLE', 'PARENT_CALENDARS', 'Calendars', 'Calendars', 'backend'),
(64, 'CALENDARS_CREATED_BY', 'PARENT_CALENDARS', 'Created by', 'Created by', 'backend'),
(65, 'CALENDARS_NO_PENDING_RESERVATIONS', 'PARENT_CALENDARS', 'pending reservations', 'pending reservations', 'backend'),
(66, 'CALENDARS_NO_APPROVED_RESERVATIONS', 'PARENT_CALENDARS', 'approved reservations', 'approved reservations', 'backend'),
(67, 'CALENDARS_NO_REJECTED_RESERVATIONS', 'PARENT_CALENDARS', 'rejected reservations', 'rejected reservations', 'backend'),
(68, 'CALENDARS_NO_CANCELED_RESERVATIONS', 'PARENT_CALENDARS', 'canceled reservations', 'canceled reservations', 'backend'),
(69, 'CALENDARS_LOAD_SUCCESS', 'PARENT_CALENDARS', 'Calendars list loaded.', 'Calendars list loaded.', 'backend'),
(70, 'CALENDARS_NO_CALENDARS', 'PARENT_CALENDARS', 'No calendars. Click the above \"plus\" icon to add a new one.', 'No calendars. Click the above \"plus\" icon to add a new one.', 'backend'),
(71, 'PARENT_CALENDARS_CALENDAR', '', 'Calendars - Calendar', 'Calendars - Calendar', 'backend'),
(72, 'CALENDARS_CALENDAR_LOAD_SUCCESS', 'PARENT_CALENDARS_CALENDAR', 'Calendar loaded.', 'Calendar loaded.', 'backend'),
(73, 'CALENDARS_CALENDAR_SAVING_SUCCESS', 'PARENT_CALENDARS_CALENDAR', 'Schedule saved.', 'Schedule saved.', 'backend'),
(74, 'CALENDARS_CALENDAR_ADD_MONTH_VIEW', 'PARENT_CALENDARS_CALENDAR', 'Add month view', 'Add month view', 'all'),
(75, 'CALENDARS_CALENDAR_REMOVE_MONTH_VIEW', 'PARENT_CALENDARS_CALENDAR', 'Remove month view', 'Remove month view', 'all'),
(76, 'CALENDARS_CALENDAR_PREVIOUS_MONTH', 'PARENT_CALENDARS_CALENDAR', 'Previous month', 'Previous month', 'all'),
(77, 'CALENDARS_CALENDAR_NEXT_MONTH', 'PARENT_CALENDARS_CALENDAR', 'Next month', 'Next month', 'all'),
(78, 'CALENDARS_CALENDAR_AVAILABLE_ONE_TEXT', 'PARENT_CALENDARS_CALENDAR', 'available', 'Available', 'all'),
(79, 'CALENDARS_CALENDAR_AVAILABLE_TEXT', 'PARENT_CALENDARS_CALENDAR', 'available', 'Available', 'all'),
(80, 'CALENDARS_CALENDAR_BOOKED_TEXT', 'PARENT_CALENDARS_CALENDAR', 'booked', 'Booked', 'all'),
(81, 'CALENDARS_CALENDAR_UNAVAILABLE_TEXT', 'PARENT_CALENDARS_CALENDAR', 'unavailable', 'Unavailable', 'all'),
(82, 'PARENT_CALENDARS_CALENDAR_FORM', '', 'Calendars - Calendar form', 'Calendars - Calendar form', 'backend'),
(83, 'CALENDARS_CALENDAR_FORM_DATE_START_LABEL', 'PARENT_CALENDARS_CALENDAR_FORM', 'Start date', 'Start date', 'backend'),
(84, 'CALENDARS_CALENDAR_FORM_DATE_END_LABEL', 'PARENT_CALENDARS_CALENDAR_FORM', 'End date', 'End date', 'backend'),
(85, 'CALENDARS_CALENDAR_FORM_HOURS_START_LABEL', 'PARENT_CALENDARS_CALENDAR_FORM', 'Start hour', 'Start hour', 'backend'),
(86, 'CALENDARS_CALENDAR_FORM_HOURS_END_LABEL', 'PARENT_CALENDARS_CALENDAR_FORM', 'End hour', 'End hour', 'backend'),
(87, 'CALENDARS_CALENDAR_FORM_SET_DAYS_AVAILABILITY_LABEL', 'PARENT_CALENDARS_CALENDAR_FORM', 'Set days availability', 'Set days availability', 'backend'),
(88, 'CALENDARS_CALENDAR_FORM_SET_HOURS_DEFINITIONS_LABEL', 'PARENT_CALENDARS_CALENDAR_FORM', 'Set hours definitions', 'Set hours definitions', 'backend'),
(89, 'CALENDARS_CALENDAR_FORM_SET_HOURS_AVAILABILITY_LABEL', 'PARENT_CALENDARS_CALENDAR_FORM', 'Set hours availability', 'Set hours availability', 'backend'),
(90, 'CALENDARS_CALENDAR_FORM_STATUS_LABEL', 'PARENT_CALENDARS_CALENDAR_FORM', 'Status', 'Status', 'backend'),
(91, 'CALENDARS_CALENDAR_FORM_STATUS_AVAILABLE_TEXT', 'PARENT_CALENDARS_CALENDAR_FORM', 'Available', 'Available', 'backend'),
(92, 'CALENDARS_CALENDAR_FORM_STATUS_BOOKED_TEXT', 'PARENT_CALENDARS_CALENDAR_FORM', 'Booked', 'Booked', 'backend'),
(93, 'CALENDARS_CALENDAR_FORM_STATUS_SPECIAL_TEXT', 'PARENT_CALENDARS_CALENDAR_FORM', 'Special', 'Special', 'backend'),
(94, 'CALENDARS_CALENDAR_FORM_STATUS_UNAVAILABLE_TEXT', 'PARENT_CALENDARS_CALENDAR_FORM', 'Unavailable', 'Unavailable', 'backend'),
(95, 'CALENDARS_CALENDAR_FORM_PRICE_LABEL', 'PARENT_CALENDARS_CALENDAR_FORM', 'Price', 'Price', 'backend'),
(96, 'CALENDARS_CALENDAR_FORM_PROMO_LABEL', 'PARENT_CALENDARS_CALENDAR_FORM', 'Promo price', 'Promo price', 'backend'),
(97, 'CALENDARS_CALENDAR_FORM_AVAILABLE_LABEL', 'PARENT_CALENDARS_CALENDAR_FORM', 'Number available', 'Number available', 'backend'),
(98, 'CALENDARS_CALENDAR_FORM_HOURS_DEFINITIONS_CHANGE_LABEL', 'PARENT_CALENDARS_CALENDAR_FORM', 'Change hours definitions (changing the definitions will overwrite any previous hours data)', 'Change hours definitions (changing the definitions will overwrite any previous hours data)', 'backend'),
(99, 'CALENDARS_CALENDAR_FORM_HOURS_DEFINITIONS_LABEL', 'PARENT_CALENDARS_CALENDAR_FORM', 'Hours definitions (hh:mm add one per line). Use only 24 hours format.', 'Hours definitions (hh:mm add one per line). Use only 24 hours format.', 'backend'),
(100, 'CALENDARS_CALENDAR_FORM_HOURS_SET_DEFAULT_DATA_LABEL', 'PARENT_CALENDARS_CALENDAR_FORM', 'Set default hours values for this day(s). This will overwrite any existing data.', 'Set default hours values for this day(s). This will overwrite any existing data.', 'backend'),
(101, 'CALENDARS_CALENDAR_FORM_HOURS_INFO_LABEL', 'PARENT_CALENDARS_CALENDAR_FORM', 'Information (users will see this message)', 'Information (users will see this message)', 'backend'),
(102, 'CALENDARS_CALENDAR_FORM_HOURS_NOTES_LABEL', 'PARENT_CALENDARS_CALENDAR_FORM', 'Notes (only administrators will see this message)', 'Notes (only administrators will see this message)', 'backend'),
(103, 'CALENDARS_CALENDAR_FORM_GROUP_DAYS_LABEL', 'PARENT_CALENDARS_CALENDAR_FORM', 'Group days', 'Group days', 'backend'),
(104, 'CALENDARS_CALENDAR_FORM_GROUP_HOURS_LABEL', 'PARENT_CALENDARS_CALENDAR_FORM', 'Group hours', 'Group hours', 'backend'),
(105, 'CALENDARS_CALENDAR_FORM_RESET_CONFIRMATION', 'PARENT_CALENDARS_CALENDAR_FORM', 'Are you sure you want to reset the data? If you reset the days, hours data from those days will reset to.', 'Are you sure you want to reset the data? If you reset the days, hours data from those days will reset to.', 'backend'),
(106, 'PARENT_CALENDARS_ADD_CALENDAR', '', 'Calendars - Add calendar', 'Calendars - Add calendar', 'backend'),
(107, 'CALENDARS_ADD_CALENDAR_NAME', 'PARENT_CALENDARS_ADD_CALENDAR', 'New calendar', 'New calendar', 'backend'),
(108, 'CALENDARS_ADD_CALENDAR_SUBMIT', 'PARENT_CALENDARS_ADD_CALENDAR', 'Add calendar', 'Add calendar', 'backend'),
(109, 'CALENDARS_DUPLICATE_CALENDAR_SUBMIT', 'PARENT_CALENDARS_ADD_CALENDAR', 'Duplicate calendar', 'Duplicate calendar', 'backend'),
(110, 'CALENDARS_ADD_CALENDAR_ADDING', 'PARENT_CALENDARS_ADD_CALENDAR', 'Adding a new calendar ...', 'Adding a new calendar ...', 'backend'),
(111, 'CALENDARS_ADD_CALENDAR_SUCCESS', 'PARENT_CALENDARS_ADD_CALENDAR', 'You have succesfully added a new calendar.', 'You have succesfully added a new calendar.', 'backend'),
(112, 'PARENT_CALENDARS_EDIT_CALENDAR', '', 'Calendars - Edit calendar', 'Calendars - Edit calendar', 'backend'),
(113, 'CALENDARS_EDIT_CALENDAR', 'PARENT_CALENDARS_EDIT_CALENDAR', 'Edit calendar availability', 'Edit calendar availability', 'backend'),
(114, 'CALENDARS_EDIT_CALENDAR_SETTINGS', 'PARENT_CALENDARS_EDIT_CALENDAR', 'Edit calendar settings', 'Edit calendar settings', 'backend'),
(115, 'CALENDARS_EDIT_CALENDAR_NOTIFICATIONS', 'PARENT_CALENDARS_EDIT_CALENDAR', 'Edit calendar notifications', 'Edit calendar notifications', 'backend'),
(116, 'CALENDARS_EDIT_CALENDAR_PAYMENT_GATEWAYS', 'PARENT_CALENDARS_EDIT_CALENDAR', 'Edit calendar payment gateways', 'Edit calendar payment gateways', 'backend'),
(117, 'CALENDARS_EDIT_CALENDAR_USERS_PERMISSIONS', 'PARENT_CALENDARS_EDIT_CALENDAR', 'Edit users permissions', 'Edit users permissions', 'backend'),
(118, 'CALENDARS_EDIT_CALENDAR_NEW_RESERVATIONS', 'PARENT_CALENDARS_EDIT_CALENDAR', 'new reservations', 'new reservations', 'backend'),
(119, 'CALENDARS_EDIT_CALENDAR_DELETE', 'PARENT_CALENDARS_EDIT_CALENDAR', 'Delete calendar', 'Delete calendar', 'backend'),
(120, 'PARENT_CALENDARS_DELETE_CALENDAR', '', 'Calendars - Delete calendar', 'Calendars - Delete calendar', 'backend'),
(121, 'CALENDARS_DELETE_CALENDAR_CONFIRMATION', 'PARENT_CALENDARS_DELETE_CALENDAR', 'Are you sure you want to delete this calendar?', 'Are you sure you want to delete this calendar?', 'backend'),
(122, 'CALENDARS_DELETE_CALENDAR_DELETING', 'PARENT_CALENDARS_DELETE_CALENDAR', 'Deleting calendar ...', 'Deleting calendar ...', 'backend'),
(123, 'CALENDARS_DELETE_CALENDAR_SUCCESS', 'PARENT_CALENDARS_DELETE_CALENDAR', 'You have succesfully deleted the calendar.', 'You have succesfully deleted the calendar.', 'backend'),
(124, 'PARENT_CALENDARS_HELP', '', 'Calendars - Help', 'Calendars - Help', 'backend'),
(125, 'CALENDARS_HELP', 'PARENT_CALENDARS_HELP', 'Click on a calendar item to open the editing area.', 'Click on a calendar item to open the editing area.', 'backend'),
(126, 'CALENDARS_ADD_CALENDAR_HELP', 'PARENT_CALENDARS_HELP', 'Click on the \"plus\" icon to add a calendar.', 'Click on the \"plus\" icon to add a calendar.', 'backend'),
(127, 'CALENDARS_EDIT_CALENDAR_HELP', 'PARENT_CALENDARS_HELP', 'Click on the \"calendar\" icon to edit calendar availability. Select the days and hours to edit them.', 'Click on the \"calendar\" icon to edit calendar availability. Select the days and hours to edit them.', 'backend'),
(128, 'CALENDARS_EDIT_CALENDAR_SETTINGS_HELP', 'PARENT_CALENDARS_HELP', 'Click on the \"gear\" icon to edit calendar settings.', 'Click on the \"gear\" icon to edit calendar settings.', 'backend'),
(129, 'CALENDARS_EDIT_CALENDAR_EMAILS_HELP', 'PARENT_CALENDARS_HELP', 'Click on the \"email\" icon to set emails/notifications options.', 'Click on the \"email\" icon to set emails/notifications options.', 'backend'),
(130, 'CALENDARS_EDIT_CALENDAR_PAYMENT_GATEWAYS_HELP', 'PARENT_CALENDARS_HELP', 'Click on the \"wallet\" icon to set payment options.', 'Click on the \"wallet\" icon to set payment options.', 'backend'),
(131, 'CALENDARS_EDIT_CALENDAR_USERS_HELP', 'PARENT_CALENDARS_HELP', 'Click on the \"users\" icon to set users permissions.', 'Click on the \"users\" icon to set users permissions.', 'backend'),
(132, 'CALENDARS_CALENDAR_NOTIFICATIONS_HELP', 'PARENT_CALENDARS_HELP', 'The \"bulb\" icon notifies you if you have new reserservations.', 'The \"bulb\" icon notifies you if you have new reserservations.', 'backend'),
(133, 'PARENT_CART', '', 'Cart', 'Cart', 'backend'),
(134, 'CART_TITLE', 'PARENT_CART', 'Cart', 'Cart', 'all'),
(135, 'CART_IS_EMPTY', 'PARENT_CART', 'Cart is empty.', 'Cart is empty.', 'all'),
(136, 'CART_ERROR', 'PARENT_CART', 'Error', 'Error', 'all'),
(137, 'CART_UNAVAILABLE', 'PARENT_CART', 'The period you selected is not available anymore. Please review your reservations.', 'The period you selected is not available anymore. Please review your reservations.', 'all'),
(138, 'CART_OVERLAP', 'PARENT_CART', 'The period you selected will overlap with the ones you already added to cart. Please select another one.', 'The period you selected will overlap with the ones you already added to cart. Please select another one.', 'all'),
(139, 'PARENT_COUPONS', '', 'Coupons', 'Coupons', 'backend'),
(140, 'COUPONS_TITLE', 'PARENT_COUPONS', 'Coupons', 'Coupons', 'backend'),
(141, 'COUPONS_CREATED_BY', 'PARENT_COUPONS', 'Created by', 'Created by', 'backend'),
(142, 'COUPONS_LOAD_SUCCESS', 'PARENT_COUPONS', 'Coupons list loaded.', 'Coupons list loaded.', 'backend'),
(143, 'COUPONS_NO_COUPONS', 'PARENT_COUPONS', 'No coupons. Click the above \"plus\" icon to add a new one.', 'No coupons. Click the above \"plus\" icon to add a new one.', 'backend'),
(144, 'PARENT_COUPONS_COUPON', '', 'Coupons - Coupon', 'Coupons - Coupon', 'backend'),
(145, 'COUPONS_COUPON_NAME', 'PARENT_COUPONS_COUPON', 'Name', 'Name', 'backend'),
(146, 'COUPONS_COUPON_LANGUAGE', 'PARENT_COUPONS_COUPON', 'Language', 'Language', 'backend'),
(147, 'COUPONS_COUPON_LABEL', 'PARENT_COUPONS_COUPON', 'Label', 'Label', 'backend'),
(148, 'COUPONS_COUPON_CODE', 'PARENT_COUPONS_COUPON', 'Code', 'Code', 'backend'),
(149, 'COUPONS_COUPON_CODE_GENERATE', 'PARENT_COUPONS_COUPON', 'Generate a random code', 'Generate a random code', 'backend'),
(150, 'COUPONS_COUPON_START_DATE', 'PARENT_COUPONS_COUPON', 'Start date', 'Start date', 'backend'),
(151, 'COUPONS_COUPON_END_DATE', 'PARENT_COUPONS_COUPON', 'End date', 'End date', 'backend'),
(152, 'COUPONS_COUPON_START_HOUR', 'PARENT_COUPONS_COUPON', 'Start hour', 'Start hour', 'backend'),
(153, 'COUPONS_COUPON_END_HOUR', 'PARENT_COUPONS_COUPON', 'End hour', 'End hour', 'backend'),
(154, 'COUPONS_COUPON_NO_COUPONS', 'PARENT_COUPONS_COUPON', 'Number of coupons', 'Number of coupons', 'backend'),
(155, 'COUPONS_COUPON_OPERATION', 'PARENT_COUPONS_COUPON', 'Operation', 'Operation', 'backend'),
(156, 'COUPONS_COUPON_PRICE', 'PARENT_COUPONS_COUPON', 'Price/Percent', 'Price/Percent', 'backend'),
(157, 'COUPONS_COUPON_PRICE_TYPE', 'PARENT_COUPONS_COUPON', 'Price type', 'Price type', 'backend'),
(158, 'COUPONS_COUPON_PRICE_TYPE_FIXED', 'PARENT_COUPONS_COUPON', 'Fixed', 'Fixed', 'backend'),
(159, 'COUPONS_COUPON_PRICE_TYPE_PERCENT', 'PARENT_COUPONS_COUPON', 'Percent', 'Percent', 'backend'),
(160, 'COUPONS_COUPON_PRICE_BY', 'PARENT_COUPONS_COUPON', 'Price by', 'Price by', 'backend'),
(161, 'COUPONS_COUPON_PRICE_BY_ONCE', 'PARENT_COUPONS_COUPON', 'Once', 'Once', 'backend'),
(162, 'COUPONS_COUPON_PRICE_BY_PERIOD', 'PARENT_COUPONS_COUPON', 'day/hour', 'day/hour', 'backend'),
(163, 'COUPONS_COUPON_LOADED', 'PARENT_COUPONS_COUPON', 'Coupon loaded.', 'Coupon loaded.', 'backend'),
(164, 'PARENT_COUPONS_ADD_COUPON', '', 'Coupons - Add coupon', 'Coupons - Add coupon', 'backend'),
(165, 'COUPONS_ADD_COUPON_NAME', 'PARENT_COUPONS_ADD_COUPON', 'New coupon', 'New coupon', 'backend'),
(166, 'COUPONS_ADD_COUPON_LABEL', 'PARENT_COUPONS_ADD_COUPON', 'Coupon', 'Coupon', 'backend'),
(167, 'COUPONS_ADD_COUPON_SUBMIT', 'PARENT_COUPONS_ADD_COUPON', 'Add coupon', 'Add coupon', 'backend'),
(168, 'COUPONS_ADD_COUPON_ADDING', 'PARENT_COUPONS_ADD_COUPON', 'Adding a new coupon ...', 'Adding a new coupon ...', 'backend'),
(169, 'COUPONS_ADD_COUPON_SUCCESS', 'PARENT_COUPONS_ADD_COUPON', 'You have succesfully added a new coupon.', 'You have succesfully added a new coupon.', 'backend'),
(170, 'PARENT_COUPONS_DELETE_COUPON', '', 'Coupons - Delete coupon', 'Coupons - Delete coupon', 'backend'),
(171, 'COUPONS_DELETE_COUPON_CONFIRMATION', 'PARENT_COUPONS_DELETE_COUPON', 'Are you sure you want to delete this coupon?', 'Are you sure you want to delete this coupon?', 'backend'),
(172, 'COUPONS_DELETE_COUPON_SUBMIT', 'PARENT_COUPONS_DELETE_COUPON', 'Delete coupon', 'Delete coupon', 'backend'),
(173, 'COUPONS_DELETE_COUPON_DELETING', 'PARENT_COUPONS_DELETE_COUPON', 'Deleting coupon ...', 'Deleting coupon ...', 'backend'),
(174, 'COUPONS_DELETE_COUPON_SUCCESS', 'PARENT_COUPONS_DELETE_COUPON', 'You have succesfully deleted the coupon.', 'You have succesfully deleted the coupon.', 'backend'),
(175, 'PARENT_COUPONS_HELP', '', 'Coupons - Help', 'Coupons - Help', 'backend'),
(176, 'COUPONS_HELP', 'PARENT_COUPONS_HELP', 'Click on a coupon item to open the editing area.', 'Click on a coupon item to open the editing area.', 'backend'),
(177, 'COUPONS_ADD_COUPON_HELP', 'PARENT_COUPONS_HELP', 'Click on the \"plus\" icon to add a coupon.', 'Click on the \"plus\" icon to add a coupon.', 'backend'),
(178, 'COUPONS_COUPON_HELP', 'PARENT_COUPONS_HELP', 'Click the group \"trash\" icon to delete the coupon.', 'Click the group \"trash\" icon to delete the coupon.', 'backend'),
(179, 'COUPONS_COUPON_NAME_HELP', 'PARENT_COUPONS_HELP', 'Change coupon name.', 'Change coupon name.', 'backend'),
(180, 'COUPONS_COUPON_LANGUAGE_HELP', 'PARENT_COUPONS_HELP', 'Change to the language you want to edit the coupon.', 'Change to the language you want to edit the coupon.', 'backend'),
(181, 'COUPONS_COUPON_LABEL_HELP', 'PARENT_COUPONS_HELP', 'Enter coupon label.', 'Enter coupon label.', 'backend'),
(182, 'COUPONS_COUPON_CODE_HELP', 'PARENT_COUPONS_HELP', 'Enter coupon code.', 'Enter coupon code.', 'backend'),
(183, 'COUPONS_COUPON_START_DATE_HELP', 'PARENT_COUPONS_HELP', 'Enter coupon start date, when the coupon will start being used.. Leave it blank to start today.', 'Enter coupon start date, when the coupon will start being used.. Leave it blank to start today.', 'backend'),
(184, 'COUPONS_COUPON_END_DATE_HELP', 'PARENT_COUPONS_HELP', 'Enter coupon end date, when the coupon will stop being used. Leave it blank for the coupons to have an unlimited time lapse.', 'Enter coupon end date, when the coupon will stop being used. Leave it blank for the coupons to have an unlimited time lapse.', 'backend'),
(185, 'COUPONS_COUPON_START_HOUR_HELP', 'PARENT_COUPONS_HELP', 'Enter coupon start hour, when the coupon will start being used. Leave it blank so you can use the coupons from the start of the day.', 'Enter coupon start hour, when the coupon will start being used. Leave it blank so you can use the coupons from the start of the day.', 'backend'),
(186, 'COUPONS_COUPON_END_HOUR_HELP', 'PARENT_COUPONS_HELP', 'Enter coupon end hour, when the coupon will end being used. Leave it blank so you can use the coupons until the end of the day.', 'Enter coupon end hour, when the coupon will end being used. Leave it blank so you can use the coupons until the end of the day.', 'backend'),
(187, 'COUPONS_COUPON_NO_COUPONS_HELP', 'PARENT_COUPONS_HELP', 'Enter the number of coupons available. Leave it blank for unlimited number of coupons.', 'Enter the number of coupons available. Leave it blank for unlimited number of coupons.', 'backend'),
(188, 'COUPONS_COUPON_OPERATION_HELP', 'PARENT_COUPONS_HELP', 'Select coupon price operation. You can add or subtract a value.', 'Select coupon price operation. You can add or subtract a value.', 'backend'),
(189, 'COUPONS_COUPON_PRICE_HELP', 'PARENT_COUPONS_HELP', 'Enter coupon price.', 'Enter coupon price.', 'backend'),
(190, 'COUPONS_COUPON_PRICE_TYPE_HELP', 'PARENT_COUPONS_HELP', 'Select coupon price type. It can be a fixed value or a percent from price.', 'Select coupon price type. It can be a fixed value or a percent from price.', 'backend'),
(191, 'COUPONS_COUPON_PRICE_BY_HELP', 'PARENT_COUPONS_HELP', 'Select coupon price by. The price can be calculated once or by day/hour.', 'Select coupon price by. The price can be calculated once or by day/hour.', 'backend'),
(192, 'PARENT_COUPONS_FRONT_END', '', 'Coupons - Front end', 'Coupons - Front end', 'backend'),
(193, 'COUPONS_FRONT_END_TITLE', 'PARENT_COUPONS_FRONT_END', 'Coupons', 'Coupons', 'all'),
(194, 'COUPONS_FRONT_END_CODE', 'PARENT_COUPONS_FRONT_END', 'Enter code', 'Enter code', 'all'),
(195, 'COUPONS_FRONT_END_VERIFY', 'PARENT_COUPONS_FRONT_END', 'Verify code', 'Verify code', 'all'),
(196, 'COUPONS_FRONT_END_VERIFY_SUCCESS', 'PARENT_COUPONS_FRONT_END', 'The coupon code is valid.', 'The coupon code is valid.', 'all'),
(197, 'COUPONS_FRONT_END_VERIFY_ERROR', 'PARENT_COUPONS_FRONT_END', 'The coupon code is invalid. Please enter another one.', 'The coupon code is invalid. Please enter another one.', 'all'),
(198, 'COUPONS_FRONT_END_USE', 'PARENT_COUPONS_FRONT_END', 'Use coupon', 'Use coupon', 'all'),
(199, 'COUPONS_FRONT_END_BY_DAY', 'PARENT_COUPONS_FRONT_END', 'day', 'day', 'all'),
(200, 'COUPONS_FRONT_END_BY_HOUR', 'PARENT_COUPONS_FRONT_END', 'hour', 'hour', 'all'),
(207, 'PARENT_DASHBOARD', '', 'Dashboard', 'Dashboard', 'backend'),
(208, 'DASHBOARD_TITLE', 'PARENT_DASHBOARD', 'Dashboard', 'Dashboard', 'backend'),
(209, 'DASHBOARD_SUBTITLE', 'PARENT_DASHBOARD', 'Welcome to Pinpoint Booking System!', 'Welcome to Pinpoint Booking System!', 'backend'),
(210, 'DASHBOARD_TEXT', 'PARENT_DASHBOARD', 'This plugin will help you to easily create a booking/reservation system on your WordPress website or blog. This is intended to book, anything, anywhere, anytime ... so if you have any suggestions please tell us.', 'This plugin will help you to easily create a booking/reservation system on your WordPress website or blog. This is intended to book, anything, anywhere, anytime ... so if you have any suggestions please tell us.', 'backend'),
(211, 'DASHBOARD_GET_STARTED', 'PARENT_DASHBOARD', 'Get started', 'Get started', 'backend'),
(212, 'DASHBOARD_GET_STARTED_CALENDARS', 'PARENT_DASHBOARD', 'Add a new calendar', 'Add a new calendar', 'backend'),
(213, 'DASHBOARD_GET_STARTED_EVENTS', 'PARENT_DASHBOARD', 'Add a new event', 'Add a new event', 'backend'),
(214, 'DASHBOARD_GET_STARTED_STAFF', 'PARENT_DASHBOARD', 'Add a staff member', 'Add a staff member', 'backend'),
(215, 'DASHBOARD_GET_STARTED_LOCATIONS', 'PARENT_DASHBOARD', 'Add a new location', 'Add a new location', 'backend'),
(216, 'DASHBOARD_GET_STARTED_RESERVATIONS', 'PARENT_DASHBOARD', 'View reservations', 'View reservations', 'backend'),
(217, 'DASHBOARD_GET_STARTED_REVIEWS', 'PARENT_DASHBOARD', 'View reviews', 'View reviews', 'backend'),
(218, 'DASHBOARD_MORE_ACTIONS', 'PARENT_DASHBOARD', 'More actions', 'More actions', 'backend'),
(219, 'DASHBOARD_MORE_ACTIONS_ADDONS', 'PARENT_DASHBOARD', 'Get add-ons!', 'Get add-ons!', 'backend'),
(220, 'DASHBOARD_MORE_ACTIONS_COUPONS', 'PARENT_DASHBOARD', 'Add coupons', 'Add coupons', 'backend'),
(221, 'DASHBOARD_MORE_ACTIONS_DISCOUNTS', 'PARENT_DASHBOARD', 'Add discounts', 'Add discounts', 'backend'),
(222, 'DASHBOARD_MORE_ACTIONS_EMAILS', 'PARENT_DASHBOARD', 'Add email templates', 'Add email templates', 'backend'),
(223, 'DASHBOARD_MORE_ACTIONS_EXTRAS', 'PARENT_DASHBOARD', 'Add extras', 'Add extras', 'backend'),
(224, 'DASHBOARD_MORE_ACTIONS_FEES', 'PARENT_DASHBOARD', 'Add taxes & fees', 'Add taxes & fees', 'backend'),
(225, 'DASHBOARD_MORE_ACTIONS_FORMS', 'PARENT_DASHBOARD', 'Add forms', 'Add forms', 'backend'),
(226, 'DASHBOARD_MORE_ACTIONS_RULES', 'PARENT_DASHBOARD', 'Add rules', 'Add rules', 'backend'),
(227, 'DASHBOARD_MORE_ACTIONS_SEARCH', 'PARENT_DASHBOARD', 'Add search', 'Add search', 'backend'),
(228, 'DASHBOARD_MORE_ACTIONS_SETTINGS', 'PARENT_DASHBOARD', 'Change settings', 'Change settings', 'backend'),
(229, 'DASHBOARD_MORE_ACTIONS_TEMPLATES', 'PARENT_DASHBOARD', 'Add templates', 'Add templates', 'backend'),
(230, 'DASHBOARD_MORE_ACTIONS_THEMES', 'PARENT_DASHBOARD', 'Get themes!', 'Get themes!', 'backend'),
(231, 'DASHBOARD_MORE_ACTIONS_TOOLS', 'PARENT_DASHBOARD', 'Tools', 'Tools', 'backend'),
(232, 'DASHBOARD_MORE_ACTIONS_TRANSLATION', 'PARENT_DASHBOARD', 'Change translation', 'Change translation', 'backend'),
(233, 'DASHBOARD_API_TITLE', 'PARENT_DASHBOARD', 'API key', 'API key', 'backend'),
(234, 'DASHBOARD_API_RESET', 'PARENT_DASHBOARD', 'Reset API key', 'Reset API key', 'backend'),
(235, 'DASHBOARD_API_RESET_SUCCESS', 'PARENT_DASHBOARD', 'API key was reset successfully!', 'API key was reset successfully!', 'backend'),
(236, 'DASHBOARD_API_HELP', 'PARENT_DASHBOARD', 'This is the key you need to use the API to access data from Pinpoint booking system. Each user has their own unique key, which can be reset using the adjacent button.', 'This is the key you need to use the API to access data from Pinpoint booking system. Each user has their own unique key, which can be reset using the adjacent button.', 'backend'),
(237, 'DASHBOARD_SERVER_TITLE', 'PARENT_DASHBOARD', 'Server environment', 'Server environment', 'backend'),
(238, 'DASHBOARD_SERVER_REQUIRED', 'PARENT_DASHBOARD', 'Required', 'Required', 'backend'),
(239, 'DASHBOARD_SERVER_AVAILABLE', 'PARENT_DASHBOARD', 'Available', 'Available', 'backend'),
(240, 'DASHBOARD_SERVER_STATUS', 'PARENT_DASHBOARD', 'Status', 'Status', 'backend'),
(241, 'DASHBOARD_SERVER_NO', 'PARENT_DASHBOARD', 'No', 'No', 'backend'),
(242, 'DASHBOARD_SERVER_YES', 'PARENT_DASHBOARD', 'Yes', 'Yes', 'backend'),
(243, 'DASHBOARD_SERVER_VERSION', 'PARENT_DASHBOARD', 'Pinpoint Booking System version', 'Pinpoint Booking System version', 'backend'),
(244, 'DASHBOARD_SERVER_WORDPRESS_VERSION', 'PARENT_DASHBOARD', 'WordPress version', 'WordPress version', 'backend'),
(245, 'DASHBOARD_SERVER_WORDPRESS_MULTISITE', 'PARENT_DASHBOARD', 'WordPress multisite', 'WordPress multisite', 'backend'),
(246, 'DASHBOARD_SERVER_WOOCOMMERCE_VERSION', 'PARENT_DASHBOARD', 'WooCommerce version', 'WooCommerce version', 'backend'),
(247, 'DASHBOARD_SERVER_WOOCOMMERCE_ENABLE_CODE', 'PARENT_DASHBOARD', 'code is enabled even if WooCommerce plugin is not detected', 'code is enabled even if WooCommerce plugin is not detected', 'backend'),
(248, 'DASHBOARD_SERVER_PHP_VERSION', 'PARENT_DASHBOARD', 'PHP version', 'PHP version', 'backend'),
(249, 'DASHBOARD_SERVER_MYSQL_VERSION', 'PARENT_DASHBOARD', 'MySQL version', 'MySQL version', 'backend'),
(250, 'DASHBOARD_SERVER_MEMORY_LIMIT', 'PARENT_DASHBOARD', 'Memory limit', 'Memory limit', 'backend'),
(251, 'DASHBOARD_SERVER_MEMORY_LIMIT_WP', 'PARENT_DASHBOARD', 'WordPress memory limit', 'WordPress memory limit', 'backend'),
(252, 'DASHBOARD_SERVER_MEMORY_LIMIT_WP_MAX', 'PARENT_DASHBOARD', 'WordPress maximum memory limit', 'WordPress maximum memory limit', 'backend'),
(253, 'DASHBOARD_SERVER_MEMORY_LIMIT_WOOCOMMERCE', 'PARENT_DASHBOARD', 'WooCommerce memory limit', 'WooCommerce memory limit', 'backend'),
(254, 'DASHBOARD_SERVER_CURL_VERSION', 'PARENT_DASHBOARD', 'cURL version - necessary for TLS security protocol', 'cURL version - necessary for TLS security protocol', 'backend'),
(255, 'PARENT_DISCOUNTS', '', 'Discounts', 'Discounts', 'backend'),
(256, 'DISCOUNTS_TITLE', 'PARENT_DISCOUNTS', 'Discounts', 'Discounts', 'backend'),
(257, 'DISCOUNTS_CREATED_BY', 'PARENT_DISCOUNTS', 'Created by', 'Created by', 'backend'),
(258, 'DISCOUNTS_LOAD_SUCCESS', 'PARENT_DISCOUNTS', 'Discounts list loaded.', 'Discounts list loaded.', 'backend'),
(259, 'DISCOUNTS_NO_DISCOUNTS', 'PARENT_DISCOUNTS', 'No discounts. Click the above \"plus\" icon to add a new one.', 'No discounts. Click the above \"plus\" icon to add a new one.', 'backend'),
(260, 'PARENT_DISCOUNTS_DISCOUNT', '', 'Discounts - Discount', 'Discounts - Discount', 'backend'),
(261, 'DISCOUNTS_DISCOUNT_NAME', 'PARENT_DISCOUNTS_DISCOUNT', 'Name', 'Name', 'backend'),
(262, 'DISCOUNTS_DISCOUNT_LANGUAGE', 'PARENT_DISCOUNTS_DISCOUNT_ITEM', 'Language', 'Language', 'backend'),
(263, 'DISCOUNTS_DISCOUNT_EXTRAS', 'PARENT_DISCOUNTS_DISCOUNT_ITEM', 'Add the extra<<single-quote>>s price in the calculations', 'Add the extra<<single-quote>>s price in the calculations', 'backend'),
(264, 'DISCOUNTS_DISCOUNT_LOADED', 'PARENT_DISCOUNTS_DISCOUNT', 'Discount loaded.', 'Discount loaded.', 'backend'),
(265, 'PARENT_DISCOUNTS_ADD_DISCOUNT', '', 'Discounts - Add discount', 'Discounts - Add discount', 'backend'),
(266, 'DISCOUNTS_ADD_DISCOUNT_NAME', 'PARENT_DISCOUNTS_ADD_DISCOUNT', 'New discount', 'New discount', 'backend'),
(267, 'DISCOUNTS_ADD_DISCOUNT_SUBMIT', 'PARENT_DISCOUNTS_ADD_DISCOUNT', 'Add discount', 'Add discount', 'backend'),
(268, 'DISCOUNTS_ADD_DISCOUNT_ADDING', 'PARENT_DISCOUNTS_ADD_DISCOUNT', 'Adding a new discount ...', 'Adding a new discount ...', 'backend'),
(269, 'DISCOUNTS_ADD_DISCOUNT_SUCCESS', 'PARENT_DISCOUNTS_ADD_DISCOUNT', 'You have succesfully added a new discount.', 'You have succesfully added a new discount.', 'backend'),
(270, 'PARENT_DISCOUNTS_DELETE_DISCOUNT', '', 'Discounts - Delete discount', 'Discounts - Delete discount', 'backend'),
(271, 'DISCOUNTS_DELETE_DISCOUNT_CONFIRMATION', 'PARENT_DISCOUNTS_DELETE_DISCOUNT', 'Are you sure you want to delete this discount?', 'Are you sure you want to delete this discount?', 'backend'),
(272, 'DISCOUNTS_DELETE_DISCOUNT_SUBMIT', 'PARENT_DISCOUNTS_DELETE_DISCOUNT', 'Delete discount', 'Delete discount', 'backend'),
(273, 'DISCOUNTS_DELETE_DISCOUNT_DELETING', 'PARENT_DISCOUNTS_DELETE_DISCOUNT', 'Deleting discount ...', 'Deleting discount ...', 'backend'),
(274, 'DISCOUNTS_DELETE_DISCOUNT_SUCCESS', 'PARENT_DISCOUNTS_DELETE_DISCOUNT', 'You have succesfully deleted the discount.', 'You have succesfully deleted the discount.', 'backend'),
(275, 'PARENT_DISCOUNTS_DISCOUNT_ITEMS', '', 'Discounts - Discount items', 'Discounts - Discount items', 'backend'),
(276, 'DISCOUNTS_DISCOUNT_ITEMS', 'PARENT_DISCOUNTS_DISCOUNT_ITEMS', 'Discount items', 'Discount items', 'backend'),
(277, 'PARENT_DISCOUNTS_DISCOUNT_ITEM', '', 'Discounts - Discount item', 'Discounts - Discount item', 'backend'),
(278, 'DISCOUNTS_DISCOUNT_ITEM_SHOW_SETTINGS', 'PARENT_DISCOUNTS_DISCOUNT_ITEM', 'Show settings', 'Show settings', 'backend'),
(279, 'DISCOUNTS_DISCOUNT_ITEM_HIDE_SETTINGS', 'PARENT_DISCOUNTS_DISCOUNT_ITEM', 'Hide settings', 'Hide settings', 'backend'),
(280, 'DISCOUNTS_DISCOUNT_ITEM_SORT', 'PARENT_DISCOUNTS_DISCOUNT_ITEM', 'Sort', 'Sort', 'backend'),
(281, 'DISCOUNTS_DISCOUNT_ITEM_LABEL_LABEL', 'PARENT_DISCOUNTS_DISCOUNT_ITEM', 'Label', 'Label', 'backend'),
(282, 'DISCOUNTS_DISCOUNT_ITEM_START_TIME_LAPSE_LABEL', 'PARENT_DISCOUNTS_DISCOUNT_ITEM', 'Start time lapse (days/hours)', 'Start time lapse (days/hours)', 'backend'),
(283, 'DISCOUNTS_DISCOUNT_ITEM_END_TIME_LAPSE_LABEL', 'PARENT_DISCOUNTS_DISCOUNT_ITEM', 'End time lapse (days/hours)', 'End time lapse (days/hours)', 'backend'),
(284, 'DISCOUNTS_DISCOUNT_ITEM_OPERATION_LABEL', 'PARENT_DISCOUNTS_DISCOUNT_ITEM', 'Operation', 'Operation', 'backend'),
(285, 'DISCOUNTS_DISCOUNT_ITEM_PRICE_LABEL', 'PARENT_DISCOUNTS_DISCOUNT_ITEM', 'Price/Percent', 'Price/Percent', 'backend'),
(286, 'DISCOUNTS_DISCOUNT_ITEM_PRICE_TYPE_LABEL', 'PARENT_DISCOUNTS_DISCOUNT_ITEM', 'Price type', 'Price type', 'backend'),
(287, 'DISCOUNTS_DISCOUNT_ITEM_PRICE_BY_LABEL', 'PARENT_DISCOUNTS_DISCOUNT_ITEM', 'Price by', 'Price by', 'backend'),
(288, 'PARENT_DISCOUNTS_DISCOUNT_ADD_ITEM', '', 'Discounts - Add discount item', 'Discounts - Add discount item', 'backend'),
(289, 'DISCOUNTS_DISCOUNT_ADD_ITEM_SUBMIT', 'PARENT_DISCOUNTS_DISCOUNT_ADD_ITEM', 'Add item', 'Add item', 'backend'),
(290, 'DISCOUNTS_DISCOUNT_ADD_ITEM_LABEL', 'PARENT_DISCOUNTS_DISCOUNT_ADD_ITEM', 'New item', 'New item', 'backend'),
(291, 'DISCOUNTS_DISCOUNT_ADD_ITEM_ADDING', 'PARENT_DISCOUNTS_DISCOUNT_ADD_ITEM', 'Adding a new discount item ...', 'Adding a new discount item ...', 'backend'),
(292, 'DISCOUNTS_DISCOUNT_ADD_ITEM_SUCCESS', 'PARENT_DISCOUNTS_DISCOUNT_ADD_ITEM', 'You have succesfully added a new discount item.', 'You have succesfully added a new discount item.', 'backend'),
(293, 'PARENT_DISCOUNTS_DISCOUNT_DELETE_ITEM', '', 'Discounts - Delete discount item', 'Discounts - Delete discount item', 'backend'),
(294, 'DISCOUNTS_DISCOUNT_DELETE_ITEM_CONFIRMATION', 'PARENT_DISCOUNTS_DISCOUNT_DELETE_ITEM', 'Are you sure you want to delete this discount item?', 'Are you sure you want to delete this discount item?', 'backend'),
(295, 'DISCOUNTS_DISCOUNT_DELETE_ITEM_SUBMIT', 'PARENT_DISCOUNTS_DISCOUNT_DELETE_ITEM', 'Delete', 'Delete', 'backend'),
(296, 'DISCOUNTS_DISCOUNT_DELETE_ITEM_DELETING', 'PARENT_DISCOUNTS_DISCOUNT_DELETE_ITEM', 'Deleting discount item ...', 'Deleting discount item ...', 'backend'),
(297, 'DISCOUNTS_DISCOUNT_DELETE_ITEM_SUCCESS', 'PARENT_DISCOUNTS_DISCOUNT_DELETE_ITEM', 'You have succesfully deleted the discount item.', 'You have succesfully deleted the discount item.', 'backend'),
(298, 'PARENT_DISCOUNTS_DISCOUNT_ITEM_RULES', '', 'Discounts - Discount item - Rules', 'Discounts - Discount item - Rules', 'backend'),
(299, 'DISCOUNTS_DISCOUNT_ITEM_RULES_LABEL', 'PARENT_DISCOUNTS_DISCOUNT_ITEM_RULES', 'Rules', 'Rules', 'backend'),
(300, 'DISCOUNTS_DISCOUNT_ITEM_RULES_LABELS_OPERATION', 'PARENT_DISCOUNTS_DISCOUNT_ITEM_RULES', 'Operation', 'Operation', 'backend'),
(301, 'DISCOUNTS_DISCOUNT_ITEM_RULES_LABELS_PRICE', 'PARENT_DISCOUNTS_DISCOUNT_ITEM_RULES', 'Price/Percent', 'Price/Percent', 'backend'),
(302, 'DISCOUNTS_DISCOUNT_ITEM_RULES_LABELS_PRICE_TYPE', 'PARENT_DISCOUNTS_DISCOUNT_ITEM_RULES', 'Price type', 'Price type', 'backend'),
(303, 'DISCOUNTS_DISCOUNT_ITEM_RULES_LABELS_PRICE_BY', 'PARENT_DISCOUNTS_DISCOUNT_ITEM_RULES', 'Price by', 'Price by', 'backend'),
(304, 'PARENT_DISCOUNTS_DISCOUNT_ITEM_RULE', '', 'Discounts - Discount item - Rule', 'Discounts - Discount item - Rule', 'backend'),
(305, 'DISCOUNTS_DISCOUNT_ITEM_RULES_PRICE_TYPE_FIXED', 'PARENT_DISCOUNTS_DISCOUNT_ITEM_RULE', 'Fixed', 'Fixed', 'backend'),
(306, 'DISCOUNTS_DISCOUNT_ITEM_RULES_PRICE_TYPE_PERCENT', 'PARENT_DISCOUNTS_DISCOUNT_ITEM_RULE', 'Percent', 'Percent', 'backend'),
(307, 'DISCOUNTS_DISCOUNT_ITEM_RULES_PRICE_BY_ONCE', 'PARENT_DISCOUNTS_DISCOUNT_ITEM_RULE', 'Once', 'Once', 'backend'),
(308, 'DISCOUNTS_DISCOUNT_ITEM_RULES_PRICE_BY_PERIOD', 'PARENT_DISCOUNTS_DISCOUNT_ITEM_RULE', 'day/hour', 'day/hour', 'backend'),
(309, 'DISCOUNTS_DISCOUNT_ITEM_RULE_SORT', 'PARENT_DISCOUNTS_DISCOUNT_ITEM_RULE', 'Sort', 'Sort', 'backend'),
(310, 'PARENT_DISCOUNTS_DISCOUNT_ITEM_ADD_RULE', '', 'Discounts - Discount item - Add rule', 'Discounts - Discount item - Add rule', 'backend'),
(311, 'DISCOUNTS_DISCOUNT_ITEM_ADD_RULE_SUBMIT', 'PARENT_DISCOUNTS_DISCOUNT_ITEM_ADD_RULE', 'Add rule', 'Add rule', 'backend'),
(312, 'DISCOUNTS_DISCOUNT_ITEM_ADD_RULE_ADDING', 'PARENT_DISCOUNTS_DISCOUNT_ITEM_ADD_RULE', 'Adding a new rule ...', 'Adding a new rule ...', 'backend'),
(313, 'DISCOUNTS_DISCOUNT_ITEM_ADD_RULE_SUCCESS', 'PARENT_DISCOUNTS_DISCOUNT_ITEM_ADD_RULE', 'You have succesfully added a new rule.', 'You have succesfully added a new rule.', 'backend'),
(314, 'PARENT_DISCOUNTS_DISCOUNT_ITEM_DELETE_RULE', '', 'Discounts - Discount item - Delete rule', 'Discounts - Discount item - Delete rule', 'backend'),
(315, 'DISCOUNTS_DISCOUNT_ITEM_DELETE_RULE_CONFIRMATION', 'PARENT_DISCOUNTS_DISCOUNT_ITEM_DELETE_RULE', 'Are you sure you want to delete this  rule?', 'Are you sure you want to delete this  rule?', 'backend'),
(316, 'DISCOUNTS_DISCOUNT_ITEM_DELETE_RULE_SUBMIT', 'PARENT_DISCOUNTS_DISCOUNT_ITEM_DELETE_RULE', 'Delete', 'Delete', 'backend'),
(317, 'DISCOUNTS_DISCOUNT_ITEM_DELETE_RULE_DELETING', 'PARENT_DISCOUNTS_DISCOUNT_ITEM_DELETE_RULE', 'Deleting  rule ...', 'Deleting  rule ...', 'backend'),
(318, 'DISCOUNTS_DISCOUNT_ITEM_DELETE_RULE_SUCCESS', 'PARENT_DISCOUNTS_DISCOUNT_ITEM_DELETE_RULE', 'You have succesfully deleted the  rule.', 'You have succesfully deleted the  rule.', 'backend'),
(319, 'PARENT_DISCOUNTS_HELP', '', 'Discounts - Help', 'Discounts - Help', 'backend'),
(320, 'DISCOUNTS_HELP', 'PARENT_DISCOUNTS_HELP', 'Click on a discount rule to open the editing area.', 'Click on a discount rule to open the editing area.', 'backend'),
(321, 'DISCOUNTS_ADD_DISCOUNT_HELP', 'PARENT_DISCOUNTS_HELP', 'Click on the \"plus\" icon to add a discount.', 'Click on the \"plus\" icon to add a discount.', 'backend'),
(322, 'DISCOUNTS_DISCOUNT_NAME_HELP', 'PARENT_DISCOUNTS_HELP', 'Change discount name.', 'Change discount name.', 'backend'),
(323, 'DISCOUNTS_DISCOUNT_LANGUAGE_HELP', 'PARENT_DISCOUNTS_HELP', 'Change to the language you want to edit the discount.', 'Change to the language you want to edit the discount.', 'backend'),
(324, 'DISCOUNTS_DISCOUNT_EXTRAS_HELP', 'PARENT_DISCOUNTS_HELP', 'Calculate reservation discounts including extras price, if used.', 'Calculate reservation discounts including extras price, if used.', 'backend'),
(325, 'DISCOUNTS_DISCOUNT_ADD_ITEM_HELP', 'PARENT_DISCOUNTS_HELP', 'Click on the bellow \"plus\" icon to add a new discount item.', 'Click on the bellow \"plus\" icon to add a new discount item.', 'backend'),
(326, 'DISCOUNTS_DISCOUNT_EDIT_ITEM_HELP', 'PARENT_DISCOUNTS_HELP', 'Click the item \"expand\" icon to display/hide the settings.', 'Click the item \"expand\" icon to display/hide the settings.', 'backend'),
(327, 'DISCOUNTS_DISCOUNT_DELETE_ITEM_HELP', 'PARENT_DISCOUNTS_HELP', 'Click the item \"trash\" icon to delete it.', 'Click the item \"trash\" icon to delete it.', 'backend'),
(328, 'DISCOUNTS_DISCOUNT_SORT_ITEM_HELP', 'PARENT_DISCOUNTS_HELP', 'Drag the item \"arrows\" icon to sort it.', 'Drag the item \"arrows\" icon to sort it.', 'backend'),
(329, 'DISCOUNTS_DISCOUNT_ITEM_LABEL_HELP', 'PARENT_DISCOUNTS_HELP', 'Enter item label.', 'Enter item label.', 'backend'),
(330, 'DISCOUNTS_DISCOUNT_ITEM_START_TIME_LAPSE_HELP', 'PARENT_DISCOUNTS_HELP', 'Enter the number of days/hours for the begining of the time lapse. Leave it blank for it to start from 1 day/hour.', 'Enter the number of days/hours for the begining of the time lapse. Leave it blank for it to start from 1 day/hour.', 'backend'),
(331, 'DISCOUNTS_DISCOUNT_ITEM_END_TIME_LAPSE_HELP', 'PARENT_DISCOUNTS_HELP', 'Enter the number of days/hours for the ending of the time lapse. Leave it blank to be unlimited.', 'Enter the number of days/hours for the ending of the time lapse. Leave it blank to be unlimited.', 'backend'),
(332, 'DISCOUNTS_DISCOUNT_ITEM_OPERATION_HELP', 'PARENT_DISCOUNTS_HELP', 'Select item price operation. You can add or subtract a value.', 'Select item price operation. You can add or subtract a value.', 'backend'),
(333, 'DISCOUNTS_DISCOUNT_ITEM_PRICE_HELP', 'PARENT_DISCOUNTS_HELP', 'Enter item price.', 'Enter item price.', 'backend'),
(334, 'DISCOUNTS_DISCOUNT_ITEM_PRICE_TYPE_HELP', 'PARENT_DISCOUNTS_HELP', 'Select item price type. It can be a fixed value or a percent from price.', 'Select item price type. It can be a fixed value or a percent from price.', 'backend'),
(335, 'DISCOUNTS_DISCOUNT_ITEM_PRICE_BY_HELP', 'PARENT_DISCOUNTS_HELP', 'Select item price by. The price can be calculated once or by day/hour.', 'Select item price by. The price can be calculated once or by day/hour.', 'backend'),
(336, 'DISCOUNTS_DISCOUNT_ITEM_RULES_HELP', 'PARENT_DISCOUNTS_HELP', 'Click the \"plus\" icon to add another rule and enter the name and price conditions. Click on the \"delete\" icon to remove the rule. Add dates and hours intervals for which you want the rule to apply.', 'Click the \"plus\" icon to add another rule and enter the name and price conditions. Click on the \"delete\" icon to remove the rule. Add dates and hours intervals for which you want the rule to apply.', 'backend'),
(337, 'PARENT_DISCOUNTS_FRONT_END', '', 'Discounts - Front end', 'Discounts - Front end', 'backend'),
(338, 'DISCOUNTS_FRONT_END_TITLE', 'PARENT_DISCOUNTS_FRONT_END', 'Discount', 'Discount', 'all'),
(339, 'DISCOUNTS_FRONT_END_BY_DAY', 'PARENT_DISCOUNTS_FRONT_END', 'day', 'day', 'all'),
(340, 'DISCOUNTS_FRONT_END_BY_HOUR', 'PARENT_DISCOUNTS_FRONT_END', 'hour', 'hour', 'all'),
(341, 'PARENT_EMAILS', '', 'Email templates', 'Email templates', 'backend'),
(342, 'EMAILS_TITLE', 'PARENT_EMAILS', 'Email templates', 'Email templates', 'backend'),
(343, 'EMAILS_CREATED_BY', 'PARENT_EMAILS', 'Created by', 'Created by', 'backend'),
(344, 'EMAILS_LOAD_SUCCESS', 'PARENT_EMAILS', 'Email templates  list loaded.', 'Email templates  list loaded.', 'backend'),
(345, 'EMAILS_NO_EMAILS', 'PARENT_EMAILS', 'No email templates. Click the above \"plus\" icon to add new ones.', 'No email templates. Click the above \"plus\" icon to add new ones.', 'backend'),
(346, 'PARENT_EMAILS_DEFAULT', '', 'Email templates - Default messages', 'Email templates - Default messages', 'backend'),
(347, 'EMAILS_DEFAULT_NAME', 'PARENT_EMAILS_DEFAULT', 'Default email templates', 'Default email templates', 'backend'),
(348, 'EMAILS_DEFAULT_BOOK_ADMIN_SUBJECT', 'PARENT_EMAILS_DEFAULT', 'You received a booking request.', 'You received a booking request.', 'backend'),
(349, 'EMAILS_DEFAULT_BOOK_ADMIN', 'PARENT_EMAILS_DEFAULT', 'Below are the details. Go to admin to approve or reject the request.', 'Below are the details. Go to admin to approve or reject the request.', 'backend'),
(350, 'EMAILS_DEFAULT_BOOK_USER_SUBJECT', 'PARENT_EMAILS_DEFAULT', 'Your booking request has been sent.', 'Your booking request has been sent.', 'backend');
INSERT INTO `wp_dopbsp_translation_en` (`id`, `key_data`, `parent_key`, `text_data`, `translation`, `location`) VALUES
(351, 'EMAILS_DEFAULT_BOOK_USER', 'PARENT_EMAILS_DEFAULT', 'Please wait for approval. Below are the details.', 'Please wait for approval. Below are the details.', 'backend'),
(352, 'EMAILS_DEFAULT_BOOK_WITH_APPROVAL_ADMIN_SUBJECT', 'PARENT_EMAILS_DEFAULT', 'You received a booking request.', 'You received a booking request.', 'backend'),
(353, 'EMAILS_DEFAULT_BOOK_WITH_APPROVAL_ADMIN', 'PARENT_EMAILS_DEFAULT', 'Below are the details. Go to admin to cancel the request.', 'Below are the details. Go to admin to cancel the request.', 'backend'),
(354, 'EMAILS_DEFAULT_BOOK_WITH_APPROVAL_USER_SUBJECT', 'PARENT_EMAILS_DEFAULT', 'Your booking request has been sent.', 'Your booking request has been sent.', 'backend'),
(355, 'EMAILS_DEFAULT_BOOK_WITH_APPROVAL_USER', 'PARENT_EMAILS_DEFAULT', 'Below are the details.', 'Below are the details.', 'backend'),
(356, 'EMAILS_DEFAULT_APPROVED_SUBJECT', 'PARENT_EMAILS_DEFAULT', 'Your booking request has been approved.', 'Your booking request has been approved.', 'backend'),
(357, 'EMAILS_DEFAULT_APPROVED', 'PARENT_EMAILS_DEFAULT', 'Congratulations! Your booking request has been approved. Details about your request are below.', 'Congratulations! Your booking request has been approved. Details about your request are below.', 'backend'),
(358, 'EMAILS_DEFAULT_CANCELED_SUBJECT', 'PARENT_EMAILS_DEFAULT', 'Your booking request has been canceled.', 'Your booking request has been canceled.', 'backend'),
(359, 'EMAILS_DEFAULT_CANCELED', 'PARENT_EMAILS_DEFAULT', 'I<<single-quote>>m sorry but your booking request has been canceled. Details about your request are below.', 'I<<single-quote>>m sorry but your booking request has been canceled. Details about your request are below.', 'backend'),
(360, 'EMAILS_DEFAULT_REJECTED_SUBJECT', 'PARENT_EMAILS_DEFAULT', 'Your booking request has been rejected.', 'Your booking request has been rejected.', 'backend'),
(361, 'EMAILS_DEFAULT_REJECTED', 'PARENT_EMAILS_DEFAULT', 'I<<single-quote>>m sorry but your booking request has been rejected. Details about your request are below.', 'I<<single-quote>>m sorry but your booking request has been rejected. Details about your request are below.', 'backend'),
(362, 'PARENT_EMAILS_EMAIL', '', 'Email templates - Templates', 'Email templates - Templates', 'backend'),
(363, 'EMAILS_EMAIL_NAME', 'PARENT_EMAILS_EMAIL', 'Name', 'Name', 'backend'),
(364, 'EMAILS_EMAIL_LANGUAGE', 'PARENT_EMAILS_EMAIL', 'Language', 'Language', 'backend'),
(365, 'EMAILS_EMAIL_TEMPLATE_SELECT', 'PARENT_EMAILS_EMAIL', 'Select template', 'Select template', 'backend'),
(366, 'EMAILS_EMAIL_TEMPLATE_SELECT_BOOK_ADMIN', 'PARENT_EMAILS_EMAIL', 'Admin notification', 'Admin notification', 'backend'),
(367, 'EMAILS_EMAIL_TEMPLATE_SELECT_BOOK_USER', 'PARENT_EMAILS_EMAIL', 'User notification', 'User notification', 'backend'),
(368, 'EMAILS_EMAIL_TEMPLATE_SELECT_BOOK_WITH_APPROVAL_ADMIN', 'PARENT_EMAILS_EMAIL', 'Instant approval admin notification', 'Instant approval admin notification', 'backend'),
(369, 'EMAILS_EMAIL_TEMPLATE_SELECT_BOOK_WITH_APPROVAL_USER', 'PARENT_EMAILS_EMAIL', 'Instant approval user notification', 'Instant approval user notification', 'backend'),
(370, 'EMAILS_EMAIL_TEMPLATE_SELECT_APPROVED', 'PARENT_EMAILS_EMAIL', 'Approve resevation', 'Approve resevation', 'backend'),
(371, 'EMAILS_EMAIL_TEMPLATE_SELECT_CANCELED', 'PARENT_EMAILS_EMAIL', 'Cancel resevation', 'Cancel resevation', 'backend'),
(372, 'EMAILS_EMAIL_TEMPLATE_SELECT_REJECTED', 'PARENT_EMAILS_EMAIL', 'Reject resevation', 'Reject resevation', 'backend'),
(373, 'EMAILS_EMAIL_SUBJECT', 'PARENT_EMAILS_EMAIL', 'Subject', 'Subject', 'backend'),
(374, 'EMAILS_EMAIL_MESSAGE', 'PARENT_EMAILS_EMAIL', 'Message', 'Message', 'backend'),
(375, 'EMAILS_EMAIL_LOADED', 'PARENT_EMAILS_EMAIL', 'Email templates loaded.', 'Email templates loaded.', 'backend'),
(376, 'PARENT_EMAILS_ADD_EMAIL', '', 'Email templates - Add templates', 'Email templates - Add templates', 'backend'),
(377, 'EMAILS_ADD_EMAIL_NAME', 'PARENT_EMAILS_ADD_EMAIL', 'New email templates', 'New email templates', 'backend'),
(378, 'EMAILS_ADD_EMAIL_SUBMIT', 'PARENT_EMAILS_ADD_EMAIL', 'Add email templates', 'Add email templates', 'backend'),
(379, 'EMAILS_ADD_EMAIL_ADDING', 'PARENT_EMAILS_ADD_EMAIL', 'Adding new email templates ...', 'Adding new email templates ...', 'backend'),
(380, 'EMAILS_ADD_EMAIL_SUCCESS', 'PARENT_EMAILS_ADD_EMAIL', 'You have succesfully added new email templates.', 'You have succesfully added new email templates.', 'backend'),
(381, 'PARENT_EMAILS_DELETE_EMAIL', '', 'Email templates - Delete templates', 'Email templates - Delete templates', 'backend'),
(382, 'EMAILS_DELETE_EMAIL_CONFIRMATION', 'PARENT_EMAILS_DELETE_EMAIL', 'Are you sure you want to delete the email templates?', 'Are you sure you want to delete the email templates?', 'backend'),
(383, 'EMAILS_DELETE_EMAIL_SUBMIT', 'PARENT_EMAILS_DELETE_EMAIL', 'Delete email templates', 'Delete email templates', 'backend'),
(384, 'EMAILS_DELETE_EMAIL_DELETING', 'PARENT_EMAILS_DELETE_EMAIL', 'Deleting email templates ...', 'Deleting email templates ...', 'backend'),
(385, 'EMAILS_DELETE_EMAIL_SUCCESS', 'PARENT_EMAILS_DELETE_EMAIL', 'You have succesfully deleted the email templates.', 'You have succesfully deleted the email templates.', 'backend'),
(386, 'PARENT_EMAILS_HELP', '', 'Email templates - Help', 'Email templates - Help', 'backend'),
(387, 'EMAILS_HELP', 'PARENT_EMAILS_HELP', 'Click on a templates item to open the editing area.', 'Click on a templates item to open the editing area.', 'backend'),
(388, 'EMAILS_ADD_EMAIL_HELP', 'PARENT_EMAILS_HELP', 'Click on the \"plus\" icon to add email templates.', 'Click on the \"plus\" icon to add email templates.', 'backend'),
(389, 'EMAILS_EMAIL_HELP', 'PARENT_EMAILS_HELP', 'Click the \"trash\" icon to delete the email.', 'Click the \"trash\" icon to delete the email.', 'backend'),
(390, 'EMAILS_EMAIL_NAME_HELP', 'PARENT_EMAILS_HELP', 'Change email templates name.', 'Change email templates name.', 'backend'),
(391, 'EMAILS_EMAIL_LANGUAGE_HELP', 'PARENT_EMAILS_HELP', 'Change to the language you want to edit the email templates.', 'Change to the language you want to edit the email templates.', 'backend'),
(392, 'EMAILS_EMAIL_TEMPLATE_SELECT_HELP', 'PARENT_EMAILS_HELP', 'Select the template you want to edit and modify the subject and message.', 'Select the template you want to edit and modify the subject and message.', 'backend'),
(395, 'PARENT_EXTRAS', '', 'Extras', 'Extras', 'backend'),
(396, 'EXTRAS_TITLE', 'PARENT_EXTRAS', 'Extras', 'Extras', 'backend'),
(397, 'EXTRAS_CREATED_BY', 'PARENT_EXTRAS', 'Created by', 'Created by', 'backend'),
(398, 'EXTRAS_LOAD_SUCCESS', 'PARENT_EXTRAS', 'Extras list loaded.', 'Extras list loaded.', 'backend'),
(399, 'EXTRAS_NO_EXTRAS', 'PARENT_EXTRAS', 'No extras. Click the above \"plus\" icon to add a new one.', 'No extras. Click the above \"plus\" icon to add a new one.', 'backend'),
(400, 'PARENT_EXTRAS_DEFAULT', '', 'Extras - Default data', 'Extras - Default data', 'backend'),
(401, 'EXTRAS_DEFAULT_PEOPLE', 'PARENT_EXTRAS_DEFAULT', 'People', 'People', 'backend'),
(402, 'EXTRAS_DEFAULT_ADULTS', 'PARENT_EXTRAS_DEFAULT', 'Adults', 'Adults', 'backend'),
(403, 'EXTRAS_DEFAULT_CHILDREN', 'PARENT_EXTRAS_DEFAULT', 'Children', 'Children', 'backend'),
(404, 'PARENT_EXTRAS_EXTRA', '', 'Extras - Extra', 'Extras - Extra', 'backend'),
(405, 'EXTRAS_EXTRA_NAME', 'PARENT_EXTRAS_EXTRA', 'Name', 'Name', 'backend'),
(406, 'EXTRAS_EXTRA_LANGUAGE', 'PARENT_EXTRAS_EXTRA_GROUP', 'Language', 'Language', 'backend'),
(407, 'EXTRAS_EXTRA_LOADED', 'PARENT_EXTRAS_EXTRA', 'Extra loaded.', 'Extra loaded.', 'backend'),
(408, 'PARENT_EXTRAS_ADD_EXTRA', '', 'Extras - Add extra', 'Extras - Add extra', 'backend'),
(409, 'EXTRAS_ADD_EXTRA_NAME', 'PARENT_EXTRAS_ADD_EXTRA', 'New extra', 'New extra', 'backend'),
(410, 'EXTRAS_ADD_EXTRA_SUBMIT', 'PARENT_EXTRAS_ADD_EXTRA', 'Add extra', 'Add extra', 'backend'),
(411, 'EXTRAS_ADD_EXTRA_ADDING', 'PARENT_EXTRAS_ADD_EXTRA', 'Adding a new extra ...', 'Adding a new extra ...', 'backend'),
(412, 'EXTRAS_ADD_EXTRA_SUCCESS', 'PARENT_EXTRAS_ADD_EXTRA', 'You have succesfully added a new extra.', 'You have succesfully added a new extra.', 'backend'),
(413, 'PARENT_EXTRAS_DELETE_EXTRA', '', 'Extras - Delete extra', 'Extras - Delete extra', 'backend'),
(414, 'EXTRAS_DELETE_EXTRA_CONFIRMATION', 'PARENT_EXTRAS_DELETE_EXTRA', 'Are you sure you want to delete this extra?', 'Are you sure you want to delete this extra?', 'backend'),
(415, 'EXTRAS_DELETE_EXTRA_SUBMIT', 'PARENT_EXTRAS_DELETE_EXTRA', 'Delete extra', 'Delete extra', 'backend'),
(416, 'EXTRAS_DELETE_EXTRA_DELETING', 'PARENT_EXTRAS_DELETE_EXTRA', 'Deleting extra ...', 'Deleting extra ...', 'backend'),
(417, 'EXTRAS_DELETE_EXTRA_SUCCESS', 'PARENT_EXTRAS_DELETE_EXTRA', 'You have succesfully deleted the extra.', 'You have succesfully deleted the extra.', 'backend'),
(418, 'PARENT_EXTRAS_EXTRA_GROUPS', '', 'Extras - Extra groups', 'Extras - Extra groups', 'backend'),
(419, 'EXTRAS_EXTRA_GROUPS', 'PARENT_EXTRAS_EXTRA_GROUPS', 'Extra fields', 'Extra fields', 'backend'),
(420, 'PARENT_EXTRAS_EXTRA_GROUP', '', 'Extras - Extra group', 'Extras - Extra group', 'backend'),
(421, 'EXTRAS_EXTRA_GROUP_SHOW_SETTINGS', 'PARENT_EXTRAS_EXTRA_GROUP', 'Show settings', 'Show settings', 'backend'),
(422, 'EXTRAS_EXTRA_GROUP_HIDE_SETTINGS', 'PARENT_EXTRAS_EXTRA_GROUP', 'Hide settings', 'Hide settings', 'backend'),
(423, 'EXTRAS_EXTRA_GROUP_SORT', 'PARENT_EXTRAS_EXTRA_GROUP', 'Sort', 'Sort', 'backend'),
(424, 'EXTRAS_EXTRA_GROUP_LABEL_LABEL', 'PARENT_EXTRAS_EXTRA_GROUP', 'Label', 'Label', 'backend'),
(425, 'EXTRAS_EXTRA_GROUP_REQUIRED_LABEL', 'PARENT_EXTRAS_EXTRA_GROUP', 'Required', 'Required', 'backend'),
(426, 'EXTRAS_EXTRA_GROUP_MULTIPLE_SELECT_LABEL', 'PARENT_EXTRAS_EXTRA_GROUP', 'Multiple select', 'Multiple select', 'backend'),
(427, 'PARENT_EXTRAS_EXTRA_ADD_GROUP', '', 'Extras - Add extra group', 'Extras - Add extra group', 'backend'),
(428, 'EXTRAS_EXTRA_ADD_GROUP_SUBMIT', 'PARENT_EXTRAS_EXTRA_ADD_GROUP', 'Add group', 'Add group', 'backend'),
(429, 'EXTRAS_EXTRA_ADD_GROUP_LABEL', 'PARENT_EXTRAS_EXTRA_ADD_GROUP', 'New group', 'New group', 'backend'),
(430, 'EXTRAS_EXTRA_ADD_GROUP_ADDING', 'PARENT_EXTRAS_EXTRA_ADD_GROUP', 'Adding a new extra group ...', 'Adding a new extra group ...', 'backend'),
(431, 'EXTRAS_EXTRA_ADD_GROUP_SUCCESS', 'PARENT_EXTRAS_EXTRA_ADD_GROUP', 'You have succesfully added a new extra group.', 'You have succesfully added a new extra group.', 'backend'),
(432, 'PARENT_EXTRAS_EXTRA_DELETE_GROUP', '', 'Extras - Delete extra group', 'Extras - Delete extra group', 'backend'),
(433, 'EXTRAS_EXTRA_DELETE_GROUP_CONFIRMATION', 'PARENT_EXTRAS_EXTRA_DELETE_GROUP', 'Are you sure you want to delete this extra group?', 'Are you sure you want to delete this extra group?', 'backend'),
(434, 'EXTRAS_EXTRA_DELETE_GROUP_SUBMIT', 'PARENT_EXTRAS_EXTRA_DELETE_GROUP', 'Delete', 'Delete', 'backend'),
(435, 'EXTRAS_EXTRA_DELETE_GROUP_DELETING', 'PARENT_EXTRAS_EXTRA_DELETE_GROUP', 'Deleting extra group ...', 'Deleting extra group ...', 'backend'),
(436, 'EXTRAS_EXTRA_DELETE_GROUP_SUCCESS', 'PARENT_EXTRAS_EXTRA_DELETE_GROUP', 'You have succesfully deleted the extra group.', 'You have succesfully deleted the extra group.', 'backend'),
(437, 'PARENT_EXTRAS_EXTRA_GROUP_ITEMS', '', 'Extras - Extra group - Items', 'Extras - Extra group - Items', 'backend'),
(438, 'EXTRAS_EXTRA_GROUP_ITEMS_LABEL', 'PARENT_EXTRAS_EXTRA_GROUP_ITEMS', 'Items', 'Items', 'backend'),
(439, 'EXTRAS_EXTRA_GROUP_ITEMS_LABELS_LABEL', 'PARENT_EXTRAS_EXTRA_GROUP_ITEMS', 'Label', 'Label', 'backend'),
(440, 'EXTRAS_EXTRA_GROUP_ITEMS_LABELS_OPERATION', 'PARENT_EXTRAS_EXTRA_GROUP_ITEMS', 'Operation', 'Operation', 'backend'),
(441, 'EXTRAS_EXTRA_GROUP_ITEMS_LABELS_PRICE', 'PARENT_EXTRAS_EXTRA_GROUP_ITEMS', 'Price/Percent', 'Price/Percent', 'backend'),
(442, 'EXTRAS_EXTRA_GROUP_ITEMS_LABELS_PRICE_TYPE', 'PARENT_EXTRAS_EXTRA_GROUP_ITEMS', 'Price type', 'Price type', 'backend'),
(443, 'EXTRAS_EXTRA_GROUP_ITEMS_LABELS_PRICE_BY', 'PARENT_EXTRAS_EXTRA_GROUP_ITEMS', 'Price by', 'Price by', 'backend'),
(444, 'PARENT_EXTRAS_EXTRA_GROUP_ITEM', '', 'Extras - Extra group - Item', 'Extras - Extra group - Item', 'backend'),
(445, 'EXTRAS_EXTRA_GROUP_ITEMS_PRICE_TYPE_FIXED', 'PARENT_EXTRAS_EXTRA_GROUP_ITEM', 'Fixed', 'Fixed', 'backend'),
(446, 'EXTRAS_EXTRA_GROUP_ITEMS_PRICE_TYPE_PERCENT', 'PARENT_EXTRAS_EXTRA_GROUP_ITEM', 'Percent', 'Percent', 'backend'),
(447, 'EXTRAS_EXTRA_GROUP_ITEMS_PRICE_BY_ONCE', 'PARENT_EXTRAS_EXTRA_GROUP_ITEM', 'Once', 'Once', 'backend'),
(448, 'EXTRAS_EXTRA_GROUP_ITEMS_PRICE_BY_PERIOD', 'PARENT_EXTRAS_EXTRA_GROUP_ITEM', 'day/hour', 'day/hour', 'backend'),
(449, 'EXTRAS_EXTRA_GROUP_ITEM_SORT', 'PARENT_EXTRAS_EXTRA_GROUP_ITEM', 'Sort', 'Sort', 'backend'),
(450, 'PARENT_EXTRAS_EXTRA_GROUP_ADD_ITEM', '', 'Extras - Extra group - Add item', 'Extras - Extra group - Add item', 'backend'),
(451, 'EXTRAS_EXTRA_GROUP_ADD_ITEM_LABEL', 'PARENT_EXTRAS_EXTRA_GROUP_ADD_ITEM', 'New item', 'New item', 'backend'),
(452, 'EXTRAS_EXTRA_GROUP_ADD_ITEM_SUBMIT', 'PARENT_EXTRAS_EXTRA_GROUP_ADD_ITEM', 'Add item', 'Add item', 'backend'),
(453, 'EXTRAS_EXTRA_GROUP_ADD_ITEM_ADDING', 'PARENT_EXTRAS_EXTRA_GROUP_ADD_ITEM', 'Adding a new item ...', 'Adding a new item ...', 'backend'),
(454, 'EXTRAS_EXTRA_GROUP_ADD_ITEM_SUCCESS', 'PARENT_EXTRAS_EXTRA_GROUP_ADD_ITEM', 'You have succesfully added a new item.', 'You have succesfully added a new item.', 'backend'),
(455, 'PARENT_EXTRAS_EXTRA_GROUP_DELETE_ITEM', '', 'Extras - Extra group - Delete item', 'Extras - Extra group - Delete item', 'backend'),
(456, 'EXTRAS_EXTRA_GROUP_DELETE_ITEM_CONFIRMATION', 'PARENT_EXTRAS_EXTRA_GROUP_DELETE_ITEM', 'Are you sure you want to delete this  item?', 'Are you sure you want to delete this  item?', 'backend'),
(457, 'EXTRAS_EXTRA_GROUP_DELETE_ITEM_SUBMIT', 'PARENT_EXTRAS_EXTRA_GROUP_DELETE_ITEM', 'Delete', 'Delete', 'backend'),
(458, 'EXTRAS_EXTRA_GROUP_DELETE_ITEM_DELETING', 'PARENT_EXTRAS_EXTRA_GROUP_DELETE_ITEM', 'Deleting  item ...', 'Deleting  item ...', 'backend'),
(459, 'EXTRAS_EXTRA_GROUP_DELETE_ITEM_SUCCESS', 'PARENT_EXTRAS_EXTRA_GROUP_DELETE_ITEM', 'You have succesfully deleted the  item.', 'You have succesfully deleted the  item.', 'backend'),
(460, 'PARENT_EXTRAS_HELP', '', 'Extras - Help', 'Extras - Help', 'backend'),
(461, 'EXTRAS_HELP', 'PARENT_EXTRAS_HELP', 'Click on a extra item to open the editing area.', 'Click on a extra item to open the editing area.', 'backend'),
(462, 'EXTRAS_ADD_EXTRA_HELP', 'PARENT_EXTRAS_HELP', 'Click on the \"plus\" icon to add a extra.', 'Click on the \"plus\" icon to add a extra.', 'backend'),
(463, 'EXTRAS_EXTRA_NAME_HELP', 'PARENT_EXTRAS_HELP', 'Change extra name.', 'Change extra name.', 'backend'),
(464, 'EXTRAS_EXTRA_LANGUAGE_HELP', 'PARENT_EXTRAS_HELP', 'Change to the language you want to edit the extra.', 'Change to the language you want to edit the extra.', 'backend'),
(465, 'EXTRAS_EXTRA_ADD_GROUP_HELP', 'PARENT_EXTRAS_HELP', 'Click on the bellow \"plus\" icon to add a new extra group.', 'Click on the bellow \"plus\" icon to add a new extra group.', 'backend'),
(466, 'EXTRAS_EXTRA_EDIT_GROUP_HELP', 'PARENT_EXTRAS_HELP', 'Click the group \"expand\" icon to display/hide the settings.', 'Click the group \"expand\" icon to display/hide the settings.', 'backend'),
(467, 'EXTRAS_EXTRA_DELETE_GROUP_HELP', 'PARENT_EXTRAS_HELP', 'Click the group \"trash\" icon to delete it.', 'Click the group \"trash\" icon to delete it.', 'backend'),
(468, 'EXTRAS_EXTRA_SORT_GROUP_HELP', 'PARENT_EXTRAS_HELP', 'Drag the group \"arrows\" icon to sort it.', 'Drag the group \"arrows\" icon to sort it.', 'backend'),
(469, 'EXTRAS_EXTRA_GROUP_LABEL_HELP', 'PARENT_EXTRAS_HELP', 'Enter group label.', 'Enter group label.', 'backend'),
(470, 'EXTRAS_EXTRA_GROUP_REQUIRED_HELP', 'PARENT_EXTRAS_HELP', 'Enable it if you want the group to be mandatory.', 'Enable it if you want the group to be mandatory.', 'backend'),
(471, 'EXTRAS_EXTRA_GROUP_MULTIPLE_SELECT_HELP', 'PARENT_EXTRAS_HELP', 'Enable it if you want multiple selection.', 'Enable it if you want multiple selection.', 'backend'),
(472, 'EXTRAS_EXTRA_GROUP_ITEMS_HELP', 'PARENT_EXTRAS_HELP', 'Click the \"plus\" icon to add another item and enter the name and price conditions. Click on the \"delete\" icon to remove the item.', 'Click the \"plus\" icon to add another item and enter the name and price conditions. Click on the \"delete\" icon to remove the item.', 'backend'),
(473, 'PARENT_EXTRAS_FRONT_END', '', 'Extras - Front end', 'Extras - Front end', 'backend'),
(474, 'EXTRAS_FRONT_END_TITLE', 'PARENT_EXTRAS_FRONT_END', 'Extras', 'Extras', 'all'),
(475, 'EXTRAS_FRONT_END_BY_DAY', 'PARENT_EXTRAS_FRONT_END', 'day', 'day', 'all'),
(476, 'EXTRAS_FRONT_END_BY_HOUR', 'PARENT_EXTRAS_FRONT_END', 'hour', 'hour', 'all'),
(477, 'EXTRAS_FRONT_END_INVALID', 'PARENT_EXTRAS_FRONT_END', 'Select an option from', 'Select an option from', 'all'),
(478, 'PARENT_FEES', '', 'Taxes & fees', 'Taxes & fees', 'backend'),
(479, 'FEES_TITLE', 'PARENT_FEES', 'Taxes & fees', 'Taxes & fees', 'backend'),
(480, 'FEES_CREATED_BY', 'PARENT_FEES', 'Created by', 'Created by', 'backend'),
(481, 'FEES_LOAD_SUCCESS', 'PARENT_FEES', 'Taxes & fees list loaded.', 'Taxes & fees list loaded.', 'backend'),
(482, 'FEES_NO_FEES', 'PARENT_FEES', 'No taxes or fees. Click the above \"plus\" icon to add a new one.', 'No taxes or fees. Click the above \"plus\" icon to add a new one.', 'backend'),
(483, 'PARENT_FEES_FEE', '', 'Taxes & fees - Tax or fee', 'Taxes & fees - Tax or fee', 'backend'),
(484, 'FEES_FEE_NAME', 'PARENT_FEES_FEE', 'Name', 'Name', 'backend'),
(485, 'FEES_FEE_LANGUAGE', 'PARENT_FEES_FEE', 'Language', 'Language', 'backend'),
(486, 'FEES_FEE_LABEL', 'PARENT_FEES_FEE', 'Label', 'Label', 'backend'),
(487, 'FEES_FEE_OPERATION', 'PARENT_FEES_FEE', 'Operation', 'Operation', 'backend'),
(488, 'FEES_FEE_PRICE', 'PARENT_FEES_FEE', 'Price/Percent', 'Price/Percent', 'backend'),
(489, 'FEES_FEE_PRICE_TYPE', 'PARENT_FEES_FEE', 'Price type', 'Price type', 'backend'),
(490, 'FEES_FEE_PRICE_TYPE_FIXED', 'PARENT_FEES_FEE', 'Fixed', 'Fixed', 'backend'),
(491, 'FEES_FEE_PRICE_TYPE_PERCENT', 'PARENT_FEES_FEE', 'Percent', 'Percent', 'backend'),
(492, 'FEES_FEE_PRICE_BY', 'PARENT_FEES_FEE', 'Price by', 'Price by', 'backend'),
(493, 'FEES_FEE_PRICE_BY_ONCE', 'PARENT_FEES_FEE', 'Once', 'Once', 'backend'),
(494, 'FEES_FEE_PRICE_BY_PERIOD', 'PARENT_FEES_FEE', 'day/hour', 'day/hour', 'backend'),
(495, 'FEES_FEE_INCLUDED', 'PARENT_FEES_FEE', 'Included', 'Included', 'backend'),
(496, 'FEES_FEE_EXTRAS', 'PARENT_FEES_FEE', 'Add the extra<<single-quote>>s price in the calculations', 'Add the extra<<single-quote>>s price in the calculations', 'backend'),
(497, 'FEES_FEE_CART', 'PARENT_FEES_FEE', 'Display fees in cart<<single-quote>>s total', 'Display fees in cart<<single-quote>>s total', 'backend'),
(498, 'FEES_FEE_LOADED', 'PARENT_FEES_FEE', 'Tax or fee loaded.', 'Tax or fee loaded.', 'backend'),
(499, 'PARENT_FEES_ADD_FEE', '', 'Taxes & fees - Add tax or fee', 'Taxes & fees - Add tax or fee', 'backend'),
(500, 'FEES_ADD_FEE_NAME', 'PARENT_FEES_ADD_FEE', 'New tax / fee', 'New tax / fee', 'backend'),
(501, 'FEES_ADD_FEE_LABEL', 'PARENT_FEES_ADD_FEE', 'New tax / fee label', 'New tax / fee label', 'backend'),
(502, 'FEES_ADD_FEE_SUBMIT', 'PARENT_FEES_ADD_FEE', 'Add tax or fee', 'Add tax or fee', 'backend'),
(503, 'FEES_ADD_FEE_ADDING', 'PARENT_FEES_ADD_FEE', 'Adding a new tax or fee ...', 'Adding a new tax or fee ...', 'backend'),
(504, 'FEES_ADD_FEE_SUCCESS', 'PARENT_FEES_ADD_FEE', 'You have succesfully added a new tax or fee.', 'You have succesfully added a new tax or fee.', 'backend'),
(505, 'PARENT_FEES_DELETE_FEE', '', 'Taxes & fees - Delete tax or fee', 'Taxes & fees - Delete tax or fee', 'backend'),
(506, 'FEES_DELETE_FEE_CONFIRMATION', 'PARENT_FEES_DELETE_FEE', 'Are you sure you want to delete this tax / fee?', 'Are you sure you want to delete this tax / fee?', 'backend'),
(507, 'FEES_DELETE_FEE_SUBMIT', 'PARENT_FEES_DELETE_FEE', 'Delete tax / fee', 'Delete tax / fee', 'backend'),
(508, 'FEES_DELETE_FEE_DELETING', 'PARENT_FEES_DELETE_FEE', 'Deleting tax / fee ...', 'Deleting tax / fee ...', 'backend'),
(509, 'FEES_DELETE_FEE_SUCCESS', 'PARENT_FEES_DELETE_FEE', 'You have succesfully deleted the tax / fee.', 'You have succesfully deleted the tax / fee.', 'backend'),
(510, 'PARENT_FEES_HELP', '', 'Taxes & fees - Help', 'Taxes & fees - Help', 'backend'),
(511, 'FEES_HELP', 'PARENT_FEES_HELP', 'Click on a tax / fee item to open the editing area.', 'Click on a tax / fee item to open the editing area.', 'backend'),
(512, 'FEES_ADD_FEE_HELP', 'PARENT_FEES_HELP', 'Click on the \"plus\" icon to add a tax or fee.', 'Click on the \"plus\" icon to add a tax or fee.', 'backend'),
(513, 'FEES_FEE_HELP', 'PARENT_FEES_HELP', 'Click the group \"trash\" icon to delete the tax / fee.', 'Click the group \"trash\" icon to delete the tax / fee.', 'backend'),
(514, 'FEES_FEE_NAME_HELP', 'PARENT_FEES_HELP', 'Change tax / fee name.', 'Change tax / fee name.', 'backend'),
(515, 'FEES_FEE_LANGUAGE_HELP', 'PARENT_FEES_HELP', 'Change to the language you want to edit the tax / fee.', 'Change to the language you want to edit the tax / fee.', 'backend'),
(516, 'FEES_FEE_LABEL_HELP', 'PARENT_FEES_HELP', 'Enter tax / fee label.', 'Enter tax / fee label.', 'backend'),
(517, 'FEES_FEE_OPERATION_HELP', 'PARENT_FEES_FEE', 'Select tax / fee price operation.', 'Select tax / fee price operation.', 'backend'),
(518, 'FEES_FEE_PRICE_HELP', 'PARENT_FEES_FEE', 'Enter tax / fee price.', 'Enter tax / fee price.', 'backend'),
(519, 'FEES_FEE_PRICE_TYPE_HELP', 'PARENT_FEES_FEE', 'Select tax / fee price type.', 'Select tax / fee price type.', 'backend'),
(520, 'FEES_FEE_PRICE_BY_HELP', 'PARENT_FEES_FEE', 'Select tax / fee price by.', 'Select tax / fee price by.', 'backend'),
(521, 'FEES_FEE_INCLUDED_HELP', 'PARENT_FEES_FEE', 'Tax / fee is included in reservation prices.', 'Tax / fee is included in reservation prices.', 'backend'),
(522, 'FEES_FEE_EXTRAS_HELP', 'PARENT_FEES_FEE', 'Calculate reservation tax / fee including extras price, if used.', 'Calculate reservation tax / fee including extras price, if used.', 'backend'),
(523, 'FEES_FEE_CART_HELP', 'PARENT_FEES_FEE', 'If you use the cart option, you can choose to display the tax to total price or to each reservation.', 'If you use the cart option, you can choose to display the tax to total price or to each reservation.', 'backend'),
(524, 'PARENT_FEES_FRONT_END', '', 'Fees - Front end', 'Fees - Front end', 'backend'),
(525, 'FEES_FRONT_END_TITLE', 'PARENT_FEES_FRONT_END', 'Taxes & fees', 'Taxes & fees', 'all'),
(526, 'FEES_FRONT_END_BY_DAY', 'PARENT_FEES_FRONT_END', 'day', 'day', 'all'),
(527, 'FEES_FRONT_END_BY_HOUR', 'PARENT_FEES_FRONT_END', 'hour', 'hour', 'all'),
(528, 'FEES_FRONT_END_INCLUDED', 'PARENT_FEES_FRONT_END', 'Included in price', 'Included in price', 'all'),
(529, 'PARENT_FORMS', '', 'Forms', 'Forms', 'backend'),
(530, 'FORMS_TITLE', 'PARENT_FORMS', 'Forms', 'Forms', 'backend'),
(531, 'FORMS_CREATED_BY', 'PARENT_FORMS', 'Created by', 'Created by', 'backend'),
(532, 'FORMS_LOAD_SUCCESS', 'PARENT_FORMS', 'Forms list loaded.', 'Forms list loaded.', 'backend'),
(533, 'FORMS_NO_FORMS', 'PARENT_FORMS', 'No forms. Click the above \"plus\" icon to add a new one.', 'No forms. Click the above \"plus\" icon to add a new one.', 'backend'),
(534, 'PARENT_FORMS_DEFAULT', '', 'Forms - Default data', 'Forms - Default data', 'backend'),
(535, 'FORMS_DEFAULT_NAME', 'PARENT_FORMS_DEFAULT', 'Contact information', 'Contact information', 'all'),
(536, 'FORMS_DEFAULT_FIRST_NAME', 'PARENT_FORMS_DEFAULT', 'First name', 'First name', 'all'),
(537, 'FORMS_DEFAULT_LAST_NAME', 'PARENT_FORMS_DEFAULT', 'Last name', 'Last name', 'all'),
(538, 'FORMS_DEFAULT_EMAIL', 'PARENT_FORMS_DEFAULT', 'Email', 'Email', 'all'),
(539, 'FORMS_DEFAULT_PHONE', 'PARENT_FORMS_DEFAULT', 'Phone', 'Phone', 'all'),
(540, 'FORMS_DEFAULT_MESSAGE', 'PARENT_FORMS_DEFAULT', 'Message', 'Message', 'all'),
(541, 'PARENT_FORMS_FORM', '', 'Forms - Form', 'Forms - Form', 'backend'),
(542, 'FORMS_FORM_NAME', 'PARENT_FORMS_FORM', 'Name', 'Name', 'backend'),
(543, 'FORMS_FORM_LANGUAGE', 'PARENT_FORMS_FORM_FIELD', 'Language', 'Language', 'backend'),
(544, 'FORMS_FORM_LOADED', 'PARENT_FORMS_FORM', 'Form loaded.', 'Form loaded.', 'backend'),
(545, 'PARENT_FORMS_ADD_FORM', '', 'Forms - Add form', 'Forms - Add form', 'backend'),
(546, 'FORMS_ADD_FORM_NAME', 'PARENT_FORMS_ADD_FORM', 'New form', 'New form', 'backend'),
(547, 'FORMS_ADD_FORM_SUBMIT', 'PARENT_FORMS_ADD_FORM', 'Add form', 'Add form', 'backend'),
(548, 'FORMS_ADD_FORM_ADDING', 'PARENT_FORMS_ADD_FORM', 'Adding a new form ...', 'Adding a new form ...', 'backend'),
(549, 'FORMS_ADD_FORM_SUCCESS', 'PARENT_FORMS_ADD_FORM', 'You have succesfully added a new form.', 'You have succesfully added a new form.', 'backend'),
(550, 'PARENT_FORMS_DELETE_FORM', '', 'Forms - Delete form', 'Forms - Delete form', 'backend'),
(551, 'FORMS_DELETE_FORM_CONFIRMATION', 'PARENT_FORMS_DELETE_FORM', 'Are you sure you want to delete this form?', 'Are you sure you want to delete this form?', 'backend'),
(552, 'FORMS_DELETE_FORM_SUBMIT', 'PARENT_FORMS_DELETE_FORM', 'Delete form', 'Delete form', 'backend'),
(553, 'FORMS_DELETE_FORM_DELETING', 'PARENT_FORMS_DELETE_FORM', 'Deleting form ...', 'Deleting form ...', 'backend'),
(554, 'FORMS_DELETE_FORM_SUCCESS', 'PARENT_FORMS_DELETE_FORM', 'You have succesfully deleted the form.', 'You have succesfully deleted the form.', 'backend'),
(555, 'PARENT_FORMS_FORM_FIELDS', '', 'Forms - Form fields', 'Forms - Form fields', 'backend'),
(556, 'FORMS_FORM_FIELDS', 'PARENT_FORMS_FORM_FIELDS', 'Form fiels', 'Form fiels', 'backend'),
(557, 'PARENT_FORMS_FORM_FIELD', '', 'Forms - Form field', 'Forms - Form field', 'backend'),
(558, 'FORMS_FORM_FIELD_SHOW_SETTINGS', 'PARENT_FORMS_FORM_FIELD', 'Show settings', 'Show settings', 'backend'),
(559, 'FORMS_FORM_FIELD_HIDE_SETTINGS', 'PARENT_FORMS_FORM_FIELD', 'Hide settings', 'Hide settings', 'backend'),
(560, 'FORMS_FORM_FIELD_SORT', 'PARENT_FORMS_FORM_FIELD', 'Sort', 'Sort', 'backend'),
(561, 'FORMS_FORM_FIELD_TYPE_TEXT_LABEL', 'PARENT_FORMS_FORM_FIELD', 'Text', 'Text', 'backend'),
(562, 'FORMS_FORM_FIELD_TYPE_TEXTAREA_LABEL', 'PARENT_FORMS_FORM_FIELD', 'Textarea', 'Textarea', 'backend'),
(563, 'FORMS_FORM_FIELD_TYPE_CHECKBOX_LABEL', 'PARENT_FORMS_FORM_FIELD', 'Checkbox', 'Checkbox', 'backend'),
(564, 'FORMS_FORM_FIELD_TYPE_CHECKBOX_CHECKED_LABEL', 'PARENT_FORMS_FORM_FIELD', 'Checked', 'Checked', 'backend'),
(565, 'FORMS_FORM_FIELD_TYPE_CHECKBOX_UNCHECKED_LABEL', 'PARENT_FORMS_FORM_FIELD', 'Unchecked', 'Unchecked', 'backend'),
(566, 'FORMS_FORM_FIELD_TYPE_SELECT_LABEL', 'PARENT_FORMS_FORM_FIELD', 'Drop down', 'Drop down', 'backend'),
(567, 'FORMS_FORM_FIELD_LABEL_LABEL', 'PARENT_FORMS_FORM_FIELD', 'Label', 'Label', 'backend'),
(568, 'FORMS_FORM_FIELD_ALLOWED_CHARACTERS_LABEL', 'PARENT_FORMS_FORM_FIELD', 'Allowed Characters', 'Allowed Characters', 'backend'),
(569, 'FORMS_FORM_FIELD_SIZE_LABEL', 'PARENT_FORMS_FORM_FIELD', 'Size', 'Size', 'backend'),
(570, 'FORMS_FORM_FIELD_EMAIL_LABEL', 'PARENT_FORMS_FORM_FIELD', 'Is email', 'Is email', 'backend'),
(571, 'FORMS_FORM_FIELD_REQUIRED_LABEL', 'PARENT_FORMS_FORM_FIELD', 'Required', 'Required', 'backend'),
(572, 'FORMS_FORM_FIELD_MULTIPLE_SELECT_LABEL', 'PARENT_FORMS_FORM_FIELD', 'Multiple select', 'Multiple select', 'backend'),
(573, 'FORMS_FORM_FIELD_ADD_TO_DAY_HOUR_INFO_LABEL', 'PARENT_FORMS_FORM_FIELD', 'Add field to day/hour info', 'Add field to day/hour info', 'backend'),
(574, 'FORMS_FORM_FIELD_ADD_TO_DAY_HOUR_BODY_LABEL', 'PARENT_FORMS_FORM_FIELD', 'Add field to day/hour body', 'Add field to day/hour body', 'backend'),
(575, 'PARENT_FORMS_FORM_ADD_FIELD', '', 'Forms - Add form field', 'Forms - Add form field', 'backend'),
(576, 'FORMS_FORM_ADD_FIELD_TEXT_LABEL', 'PARENT_FORMS_FORM_ADD_FIELD', 'New text field', 'New text field', 'backend'),
(577, 'FORMS_FORM_ADD_FIELD_TEXTAREA_LABEL', 'PARENT_FORMS_FORM_ADD_FIELD', 'New textarea field', 'New textarea field', 'backend'),
(578, 'FORMS_FORM_ADD_FIELD_CHECKBOX_LABEL', 'PARENT_FORMS_FORM_ADD_FIELD', 'New checkbox field', 'New checkbox field', 'backend'),
(579, 'FORMS_FORM_ADD_FIELD_SELECT_LABEL', 'PARENT_FORMS_FORM_ADD_FIELD', 'New drop down field', 'New drop down field', 'backend'),
(580, 'FORMS_FORM_ADD_FIELD_ADDING', 'PARENT_FORMS_FORM_ADD_FIELD', 'Adding a new form field ...', 'Adding a new form field ...', 'backend'),
(581, 'FORMS_FORM_ADD_FIELD_SUCCESS', 'PARENT_FORMS_FORM_ADD_FIELD', 'You have succesfully added a new form field.', 'You have succesfully added a new form field.', 'backend'),
(582, 'PARENT_FORMS_FORM_DELETE_FIELD', '', 'Forms - Delete form field', 'Forms - Delete form field', 'backend'),
(583, 'FORMS_FORM_DELETE_FIELD_CONFIRMATION', 'PARENT_FORMS_FORM_DELETE_FIELD', 'Are you sure you want to delete this form field?', 'Are you sure you want to delete this form field?', 'backend'),
(584, 'FORMS_FORM_DELETE_FIELD_SUBMIT', 'PARENT_FORMS_FORM_DELETE_FIELD', 'Delete', 'Delete', 'backend'),
(585, 'FORMS_FORM_DELETE_FIELD_DELETING', 'PARENT_FORMS_FORM_DELETE_FIELD', 'Deleting form field ...', 'Deleting form field ...', 'backend'),
(586, 'FORMS_FORM_DELETE_FIELD_SUCCESS', 'PARENT_FORMS_FORM_DELETE_FIELD', 'You have succesfully deleted the form field.', 'You have succesfully deleted the form field.', 'backend'),
(587, 'PARENT_FORMS_FORM_FIELD_SELECT_OPTIONS', '', 'Forms - Form field - Select options', 'Forms - Form field - Select options', 'backend'),
(588, 'FORMS_FORM_FIELD_SELECT_OPTIONS_LABEL', 'PARENT_FORMS_FORM_FIELD_SELECT_OPTIONS', 'Options', 'Options', 'backend'),
(589, 'PARENT_FORMS_FORM_FIELD_SELECT_OPTION', '', 'Forms - Form field - Select option', 'Forms - Form field - Select option', 'backend'),
(590, 'FORMS_FORM_FIELD_SELECT_OPTION_SORT', 'PARENT_FORMS_FORM_FIELD_SELECT_OPTION', 'Sort', 'Sort', 'backend'),
(591, 'PARENT_FORMS_FORM_FIELD_SELECT_ADD_OPTION', '', 'Forms - Form field - Add select option', 'Forms - Form field - Add select option', 'backend'),
(592, 'FORMS_FORM_FIELD_SELECT_ADD_OPTION_LABEL', 'PARENT_FORMS_FORM_FIELD_SELECT_ADD_OPTION', 'New option', 'New option', 'backend'),
(593, 'FORMS_FORM_FIELD_SELECT_ADD_OPTION_SUBMIT', 'PARENT_FORMS_FORM_FIELD_SELECT_ADD_OPTION', 'Add select option', 'Add select option', 'backend'),
(594, 'FORMS_FORM_FIELD_SELECT_ADD_OPTION_ADDING', 'PARENT_FORMS_FORM_FIELD_SELECT_ADD_OPTION', 'Adding a new select option ...', 'Adding a new select option ...', 'backend'),
(595, 'FORMS_FORM_FIELD_SELECT_ADD_OPTION_SUCCESS', 'PARENT_FORMS_FORM_FIELD_SELECT_ADD_OPTION', 'You have succesfully added a new select option.', 'You have succesfully added a new select option.', 'backend'),
(596, 'PARENT_FORMS_FORM_FIELD_SELECT_DELETE_OPTION', '', 'Forms - Form field - Delete select option', 'Forms - Form field - Delete select option', 'backend'),
(597, 'FORMS_FORM_FIELD_SELECT_DELETE_OPTION_CONFIRMATION', 'PARENT_FORMS_FORM_FIELD_SELECT_DELETE_OPTION', 'Are you sure you want to delete this select option?', 'Are you sure you want to delete this select option?', 'backend'),
(598, 'FORMS_FORM_FIELD_SELECT_DELETE_OPTION_SUBMIT', 'PARENT_FORMS_FORM_FIELD_SELECT_DELETE_OPTION', 'Delete', 'Delete', 'backend'),
(599, 'FORMS_FORM_FIELD_SELECT_DELETE_OPTION_DELETING', 'PARENT_FORMS_FORM_FIELD_SELECT_DELETE_OPTION', 'Deleting select option ...', 'Deleting select option ...', 'backend'),
(600, 'FORMS_FORM_FIELD_SELECT_DELETE_OPTION_SUCCESS', 'PARENT_FORMS_FORM_FIELD_SELECT_DELETE_OPTION', 'You have succesfully deleted the select option.', 'You have succesfully deleted the select option.', 'backend'),
(601, 'PARENT_FORMS_HELP', '', 'Forms - Help', 'Forms - Help', 'backend'),
(602, 'FORMS_HELP', 'PARENT_FORMS_HELP', 'Click on a form item to open the editing area.', 'Click on a form item to open the editing area.', 'backend'),
(603, 'FORMS_ADD_FORM_HELP', 'PARENT_FORMS_HELP', 'Click on the \"plus\" icon to add a form.', 'Click on the \"plus\" icon to add a form.', 'backend'),
(604, 'FORMS_FORM_NAME_HELP', 'PARENT_FORMS_HELP', 'Change form name.', 'Change form name.', 'backend'),
(605, 'FORMS_FORM_LANGUAGE_HELP', 'PARENT_FORMS_HELP', 'Change to the language you want to edit the form.', 'Change to the language you want to edit the form.', 'backend'),
(606, 'FORMS_FORM_ADD_FIELD_HELP', 'PARENT_FORMS_HELP', 'Click on the bellow \"plus\" icon to add a form field.', 'Click on the bellow \"plus\" icon to add a form field.', 'backend'),
(607, 'FORMS_FORM_EDIT_FIELD_HELP', 'PARENT_FORMS_HELP', 'Click the field \"expand\" icon to display/hide the settings.', 'Click the field \"expand\" icon to display/hide the settings.', 'backend'),
(608, 'FORMS_FORM_DELETE_FIELD_HELP', 'PARENT_FORMS_HELP', 'Click the field \"trash\" icon to delete it.', 'Click the field \"trash\" icon to delete it.', 'backend'),
(609, 'FORMS_FORM_SORT_FIELD_HELP', 'PARENT_FORMS_HELP', 'Drag the field \"arrows\" icon to sort it.', 'Drag the field \"arrows\" icon to sort it.', 'backend'),
(610, 'FORMS_FORM_FIELD_LABEL_HELP', 'PARENT_FORMS_HELP', 'Enter field label.', 'Enter field label.', 'backend'),
(611, 'FORMS_FORM_FIELD_ALLOWED_CHARACTERS_HELP', 'PARENT_FORMS_HELP', 'Enter the caracters allowed in this field. Leave it blank if all characters are allowed.', 'Enter the caracters allowed in this field. Leave it blank if all characters are allowed.', 'backend'),
(612, 'FORMS_FORM_FIELD_SIZE_HELP', 'PARENT_FORMS_HELP', 'Enter the maximum number of characters allowed. Leave it blank for unlimited.', 'Enter the maximum number of characters allowed. Leave it blank for unlimited.', 'backend'),
(613, 'FORMS_FORM_FIELD_EMAIL_HELP', 'PARENT_FORMS_HELP', 'Enable it if you want this field to be verified if an email has been added or not.', 'Enable it if you want this field to be verified if an email has been added or not.', 'backend'),
(614, 'FORMS_FORM_FIELD_REQUIRED_HELP', 'PARENT_FORMS_HELP', 'Enable it if you want the field to be mandatory.', 'Enable it if you want the field to be mandatory.', 'backend'),
(615, 'FORMS_FORM_FIELD_MULTIPLE_SELECT_HELP', 'PARENT_FORMS_HELP', 'Enable it if you want a multiple select drop down.', 'Enable it if you want a multiple select drop down.', 'backend'),
(616, 'FORMS_FORM_FIELD_ADD_TO_DAY_HOUR_INFO_HELP', 'PARENT_FORMS_FORM_FIELD', 'Enable it if you want to display the field in a reservations list, in the info tooltip, in calendars days/hours.', 'Enable it if you want to display the field in a reservations list, in the info tooltip, in calendars days/hours.', 'backend'),
(617, 'FORMS_FORM_FIELD_ADD_TO_DAY_HOUR_BODY_HELP', 'PARENT_FORMS_FORM_FIELD', 'Enable it if you want to display the field in a reservations list, in the days/hours boby (under availability), in calendars.', 'Enable it if you want to display the field in a reservations list, in the days/hours boby (under availability), in calendars.', 'backend'),
(618, 'FORMS_FORM_FIELD_SELECT_OPTIONS_HELP', 'PARENT_FORMS_HELP', 'Click the \"plus\" icon to add another option and enter the name. Click on the \"delete\" icon to remove the option.', 'Click the \"plus\" icon to add another option and enter the name. Click on the \"delete\" icon to remove the option.', 'backend'),
(619, 'PARENT_FORMS_FRONT_END', '', 'Forms - Front end', 'Forms - Front end', 'backend'),
(620, 'FORMS_FRONT_END_TITLE', 'PARENT_FORMS_FRONT_END', 'Contact information', 'Contact information', 'all'),
(621, 'FORMS_FRONT_END_REQUIRED', 'PARENT_FORMS_FRONT_END', 'is required.', 'is required.', 'all'),
(622, 'FORMS_FRONT_END_INVALID_EMAIL', 'PARENT_FORMS_FRONT_END', 'is invalid. Please enter a valid email.', 'is invalid. Please enter a valid email.', 'all'),
(623, 'TITLE', 'none', 'Pinpoint Booking System', 'Pinpoint Booking System', 'backend'),
(624, 'PARENT_MESSAGES', '', 'Messages', 'Messages', 'backend'),
(625, 'MESSAGES_LOADING', 'PARENT_MESSAGES', 'Loading data ...', 'Loading data ...', 'backend'),
(626, 'MESSAGES_LOADING_SUCCESS', 'PARENT_MESSAGES', 'Data has been loaded.', 'Data has been loaded.', 'backend'),
(627, 'MESSAGES_SAVING', 'PARENT_MESSAGES', 'Saving data ...', 'Saving data ...', 'backend'),
(628, 'MESSAGES_SAVING_SUCCESS', 'PARENT_MESSAGES', 'Data has been saved.', 'Data has been saved.', 'backend'),
(629, 'MESSAGES_CONFIRMATION_YES', 'PARENT_MESSAGES', 'Yes', 'Yes', 'backend'),
(630, 'MESSAGES_CONFIRMATION_NO', 'PARENT_MESSAGES', 'No', 'No', 'backend'),
(631, 'PARENT_MONTHS_WEEK_DAYS', '', 'Months & Week Days', 'Months & Week Days', 'backend'),
(632, 'MONTH_JANUARY', 'PARENT_MONTHS_WEEK_DAYS', 'January', 'January', 'calendar'),
(633, 'MONTH_FEBRUARY', 'PARENT_MONTHS_WEEK_DAYS', 'February', 'February', 'calendar'),
(634, 'MONTH_MARCH', 'PARENT_MONTHS_WEEK_DAYS', 'March', 'March', 'calendar'),
(635, 'MONTH_APRIL', 'PARENT_MONTHS_WEEK_DAYS', 'April', 'April', 'calendar'),
(636, 'MONTH_MAY', 'PARENT_MONTHS_WEEK_DAYS', 'May', 'May', 'calendar'),
(637, 'MONTH_JUNE', 'PARENT_MONTHS_WEEK_DAYS', 'June', 'June', 'calendar'),
(638, 'MONTH_JULY', 'PARENT_MONTHS_WEEK_DAYS', 'July', 'July', 'calendar'),
(639, 'MONTH_AUGUST', 'PARENT_MONTHS_WEEK_DAYS', 'August', 'August', 'calendar'),
(640, 'MONTH_SEPTEMBER', 'PARENT_MONTHS_WEEK_DAYS', 'September', 'September', 'calendar'),
(641, 'MONTH_OCTOBER', 'PARENT_MONTHS_WEEK_DAYS', 'October', 'October', 'calendar'),
(642, 'MONTH_NOVEMBER', 'PARENT_MONTHS_WEEK_DAYS', 'November', 'November', 'calendar'),
(643, 'MONTH_DECEMBER', 'PARENT_MONTHS_WEEK_DAYS', 'December', 'December', 'calendar'),
(644, 'SHORT_MONTH_JANUARY', 'PARENT_MONTHS_WEEK_DAYS', 'Jan', 'Jan', 'calendar'),
(645, 'SHORT_MONTH_FEBRUARY', 'PARENT_MONTHS_WEEK_DAYS', 'Feb', 'Feb', 'calendar'),
(646, 'SHORT_MONTH_MARCH', 'PARENT_MONTHS_WEEK_DAYS', 'Mar', 'Mar', 'calendar'),
(647, 'SHORT_MONTH_APRIL', 'PARENT_MONTHS_WEEK_DAYS', 'Apr', 'Apr', 'calendar'),
(648, 'SHORT_MONTH_MAY', 'PARENT_MONTHS_WEEK_DAYS', 'May', 'May', 'calendar'),
(649, 'SHORT_MONTH_JUNE', 'PARENT_MONTHS_WEEK_DAYS', 'Jun', 'Jun', 'calendar'),
(650, 'SHORT_MONTH_JULY', 'PARENT_MONTHS_WEEK_DAYS', 'Jul', 'Jul', 'calendar'),
(651, 'SHORT_MONTH_AUGUST', 'PARENT_MONTHS_WEEK_DAYS', 'Aug', 'Aug', 'calendar'),
(652, 'SHORT_MONTH_SEPTEMBER', 'PARENT_MONTHS_WEEK_DAYS', 'Sep', 'Sep', 'calendar'),
(653, 'SHORT_MONTH_OCTOBER', 'PARENT_MONTHS_WEEK_DAYS', 'Oct', 'Oct', 'calendar'),
(654, 'SHORT_MONTH_NOVEMBER', 'PARENT_MONTHS_WEEK_DAYS', 'Nov', 'Nov', 'calendar'),
(655, 'SHORT_MONTH_DECEMBER', 'PARENT_MONTHS_WEEK_DAYS', 'Dec', 'Dec', 'calendar'),
(656, 'DAY_MONDAY', 'PARENT_MONTHS_WEEK_DAYS', 'Monday', 'Monday', 'calendar'),
(657, 'DAY_TUESDAY', 'PARENT_MONTHS_WEEK_DAYS', 'Tuesday', 'Tuesday', 'calendar'),
(658, 'DAY_WEDNESDAY', 'PARENT_MONTHS_WEEK_DAYS', 'Wednesday', 'Wednesday', 'calendar'),
(659, 'DAY_THURSDAY', 'PARENT_MONTHS_WEEK_DAYS', 'Thursday', 'Thursday', 'calendar'),
(660, 'DAY_FRIDAY', 'PARENT_MONTHS_WEEK_DAYS', 'Friday', 'Friday', 'calendar'),
(661, 'DAY_SATURDAY', 'PARENT_MONTHS_WEEK_DAYS', 'Saturday', 'Saturday', 'calendar'),
(662, 'DAY_SUNDAY', 'PARENT_MONTHS_WEEK_DAYS', 'Sunday', 'Sunday', 'calendar'),
(663, 'SHORT_DAY_MONDAY', 'PARENT_MONTHS_WEEK_DAYS', 'Mo', 'Mo', 'calendar'),
(664, 'SHORT_DAY_TUESDAY', 'PARENT_MONTHS_WEEK_DAYS', 'Tu', 'Tu', 'calendar'),
(665, 'SHORT_DAY_WEDNESDAY', 'PARENT_MONTHS_WEEK_DAYS', 'We', 'We', 'calendar'),
(666, 'SHORT_DAY_THURSDAY', 'PARENT_MONTHS_WEEK_DAYS', 'Th', 'Th', 'calendar'),
(667, 'SHORT_DAY_FRIDAY', 'PARENT_MONTHS_WEEK_DAYS', 'Fr', 'Fr', 'calendar'),
(668, 'SHORT_DAY_SATURDAY', 'PARENT_MONTHS_WEEK_DAYS', 'Sa', 'Sa', 'calendar'),
(669, 'SHORT_DAY_SUNDAY', 'PARENT_MONTHS_WEEK_DAYS', 'Su', 'Su', 'calendar'),
(670, 'PARENT_TINYMCE', '', 'TinyMCE', 'TinyMCE', 'backend'),
(671, 'TINYMCE_ADD', 'PARENT_TINYMCE', 'Add Calendar', 'Add Calendar', 'backend'),
(672, 'PARENT_DOCUMENTATION', '', 'Documentation', 'Documentation', 'backend'),
(673, 'HELP_DOCUMENTATION', 'PARENT_DOCUMENTATION', 'Documentation', 'Documentation', 'backend'),
(674, 'HELP_VIEW_DOCUMENTATION', 'PARENT_DOCUMENTATION', 'Click this to view the documentation for more informations.', 'Click this to view the documentation for more informations.', 'backend'),
(675, 'BETA', 'none', 'beta', 'beta', 'backend'),
(676, 'BETA_TITLE', 'none', 'Beta', 'Beta', 'backend'),
(677, 'SOON', 'none', 'soon', 'soon', 'backend'),
(678, 'SOON_TITLE', 'none', 'Comming soon', 'Comming soon', 'backend'),
(679, 'PARENT_LANGUAGES', '', 'Languages', 'Languages', 'backend'),
(680, 'LANGUAGES_MANAGE', 'PARENT_LANGUAGES', 'Manage languages', 'Manage languages', 'backend'),
(681, 'LANGUAGES_LOADED', 'PARENT_LANGUAGES', 'Languages have been loaded.', 'Languages have been loaded.', 'backend'),
(682, 'LANGUAGES_SETTING', 'PARENT_LANGUAGES', 'The language is being configured ...', 'The language is being configured ...', 'backend'),
(683, 'LANGUAGES_SET_SUCCESS', 'PARENT_LANGUAGES', 'The language has been added. The page will refresh shortly.', 'The language has been added. The page will refresh shortly.', 'backend'),
(684, 'LANGUAGES_REMOVE_CONFIGURATION', 'PARENT_LANGUAGES', 'Are you sure you want to remove this language? Data will be deleted only when you reset the translation!', 'Are you sure you want to remove this language? Data will be deleted only when you reset the translation!', 'backend'),
(685, 'LANGUAGES_REMOVING', 'PARENT_LANGUAGES', 'The language is being removed ...', 'The language is being removed ...', 'backend'),
(686, 'LANGUAGES_REMOVE_SUCCESS', 'PARENT_LANGUAGES', 'The language has been removed. The page will refresh shortly.', 'The language has been removed. The page will refresh shortly.', 'backend'),
(687, 'PARENT_LANGUAGES_HELP', '', 'Languages - Help', 'Languages - Help', 'backend'),
(688, 'LANGUAGES_HELP', 'PARENT_LANGUAGES_HELP', 'If you need to use more language with the plugin go to \"Manage langauges\" section and enable them.', 'If you need to use more language with the plugin go to \"Manage langauges\" section and enable them.', 'backend'),
(689, 'PARENT_LOCATIONS', '', 'Locations', 'Locations', 'backend'),
(690, 'LOCATIONS_TITLE', 'PARENT_LOCATIONS', 'Locations', 'Locations', 'backend'),
(691, 'LOCATIONS_CREATED_BY', 'PARENT_LOCATIONS', 'Created by', 'Created by', 'backend'),
(692, 'LOCATIONS_LOAD_SUCCESS', 'PARENT_LOCATIONS', 'Locations list loaded.', 'Locations list loaded.', 'backend'),
(693, 'LOCATIONS_NO_LOCATIONS', 'PARENT_LOCATIONS', 'No locations. Click the above \"plus\" icon to add a new one.', 'No locations. Click the above \"plus\" icon to add a new one.', 'backend'),
(694, 'PARENT_LOCATIONS_LOCATION', '', 'Locations - Location', 'Locations - Location', 'backend'),
(695, 'LOCATIONS_LOCATION_NAME', 'PARENT_LOCATIONS_LOCATION', 'Name', 'Name', 'backend'),
(696, 'LOCATIONS_LOCATION_MAP', 'PARENT_LOCATIONS_LOCATION', 'Enter the address', 'Enter the address', 'backend'),
(697, 'LOCATIONS_LOCATION_ADDRESS', 'PARENT_LOCATIONS_LOCATION', 'Address', 'Address', 'backend'),
(698, 'LOCATIONS_LOCATION_ALT_ADDRESS', 'PARENT_LOCATIONS_LOCATION', 'Alternative address', 'Alternative address', 'backend'),
(699, 'LOCATIONS_LOCATION_CALENDARS', 'PARENT_LOCATIONS_LOCATION', 'Add calendars to location', 'Add calendars to location', 'backend'),
(700, 'LOCATIONS_LOCATION_NO_CALENDARS', 'PARENT_LOCATIONS_LOCATION', 'There are no calendars created. Go to <a href=\"%s\">calendars</a> page to create one.', 'There are no calendars created. Go to <a href=\"%s\">calendars</a> page to create one.', 'backend'),
(701, 'LOCATIONS_LOCATION_LOADED', 'PARENT_LOCATIONS_LOCATION', 'Location loaded.', 'Location loaded.', 'backend'),
(702, 'LOCATIONS_LOCATION_NO_GOOGLE_MAPS', 'PARENT_LOCATIONS_LOCATION', 'Google maps did not load. Please refresh the page to try again.', 'Google maps did not load. Please refresh the page to try again.', 'backend'),
(703, 'PARENT_LOCATIONS_ADD_LOCATION', '', 'Locations - Add location', 'Locations - Add location', 'backend'),
(704, 'LOCATIONS_ADD_LOCATION_NAME', 'PARENT_LOCATIONS_ADD_LOCATION', 'New location', 'New location', 'backend'),
(705, 'LOCATIONS_ADD_LOCATION_SUBMIT', 'PARENT_LOCATIONS_ADD_LOCATION', 'Add location', 'Add location', 'backend'),
(706, 'LOCATIONS_ADD_LOCATION_ADDING', 'PARENT_LOCATIONS_ADD_LOCATION', 'Adding a new location ...', 'Adding a new location ...', 'backend'),
(707, 'LOCATIONS_ADD_LOCATION_SUCCESS', 'PARENT_LOCATIONS_ADD_LOCATION', 'You have succesfully added a new location.', 'You have succesfully added a new location.', 'backend'),
(708, 'PARENT_LOCATIONS_DELETE_LOCATION', '', 'Locations - Delete location', 'Locations - Delete location', 'backend'),
(709, 'LOCATIONS_DELETE_LOCATION_CONFIRMATION', 'PARENT_LOCATIONS_DELETE_LOCATION', 'Are you sure you want to delete this location?', 'Are you sure you want to delete this location?', 'backend'),
(710, 'LOCATIONS_DELETE_LOCATION_SUBMIT', 'PARENT_LOCATIONS_DELETE_LOCATION', 'Delete location', 'Delete location', 'backend'),
(711, 'LOCATIONS_DELETE_LOCATION_DELETING', 'PARENT_LOCATIONS_DELETE_LOCATION', 'Deleting location ...', 'Deleting location ...', 'backend'),
(712, 'LOCATIONS_DELETE_LOCATION_SUCCESS', 'PARENT_LOCATIONS_DELETE_LOCATION', 'You have succesfully deleted the location.', 'You have succesfully deleted the location.', 'backend'),
(713, 'PARENT_LOCATIONS_HELP', '', 'Locations - Help', 'Locations - Help', 'backend'),
(714, 'LOCATIONS_HELP', 'PARENT_LOCATIONS_HELP', 'Click on a location item to open the editing area.', 'Click on a location item to open the editing area.', 'backend'),
(715, 'LOCATIONS_ADD_LOCATION_HELP', 'PARENT_LOCATIONS_HELP', 'Click on the \"plus\" icon to add a location.', 'Click on the \"plus\" icon to add a location.', 'backend'),
(716, 'LOCATIONS_LOCATION_HELP', 'PARENT_LOCATIONS_HELP', 'Click the \"trash\" icon to delete the location.', 'Click the \"trash\" icon to delete the location.', 'backend'),
(717, 'LOCATIONS_LOCATION_NAME_HELP', 'PARENT_LOCATIONS_HELP', 'Change location name.', 'Change location name.', 'backend'),
(718, 'LOCATIONS_LOCATION_ADDRESS_HELP', 'PARENT_LOCATIONS_HELP', 'Enter location address or drag the marker on the map to select it.', 'Enter location address or drag the marker on the map to select it.', 'backend'),
(719, 'LOCATIONS_LOCATION_ALT_ADDRESS_HELP', 'PARENT_LOCATIONS_HELP', 'Enter an alternative address if the marker is in the correct position but the address is not right.', 'Enter an alternative address if the marker is in the correct position but the address is not right.', 'backend'),
(720, 'PARENT_ORDER', '', 'Order', 'Order', 'backend'),
(721, 'ORDER_TITLE', 'PARENT_ORDER', 'Order', 'Order', 'all'),
(722, 'ORDER_UNAVAILABLE', 'PARENT_ORDER', 'The period you selected is not available anymore. The calendar will refresh to update the schedule.', 'The period you selected is not available anymore. The calendar will refresh to update the schedule.', 'all'),
(723, 'ORDER_UNAVAILABLE_COUPON', 'PARENT_ORDER', 'The coupon you entered is not available anymore.', 'The coupon you entered is not available anymore.', 'all'),
(724, 'ORDER_PAYMENT_METHOD', 'PARENT_RESERVATIONS_RESERVATION', 'Payment method', 'Payment method', 'all'),
(725, 'ORDER_PAYMENT_METHOD_NONE', 'PARENT_RESERVATIONS_RESERVATION', 'None', 'None', 'all'),
(726, 'ORDER_PAYMENT_METHOD_ARRIVAL', 'PARENT_RESERVATIONS_RESERVATION', 'On arrival', 'On arrival', 'backend'),
(727, 'ORDER_PAYMENT_METHOD_WOOCOMMERCE', 'PARENT_RESERVATIONS_RESERVATION', 'WooCommerce', 'WooCommerce', 'all'),
(728, 'ORDER_PAYMENT_METHOD_WOOCOMMERCE_ORDER_ID', 'PARENT_RESERVATIONS_RESERVATION', 'Order ID', 'Order ID', 'all'),
(729, 'ORDER_PAYMENT_METHOD_TRANSACTION_ID', 'PARENT_RESERVATIONS_RESERVATION', 'Transaction ID', 'Transaction ID', 'all'),
(730, 'ORDER_PAYMENT_ARRIVAL', 'PARENT_ORDER', 'Pay on arrival (need to be approved)', 'Pay on arrival (need to be approved)', 'all'),
(731, 'ORDER_PAYMENT_ARRIVAL_WITH_APPROVAL', 'PARENT_ORDER', 'Pay on arrival (instant booking)', 'Pay on arrival (instant booking)', 'all'),
(732, 'ORDER_PAYMENT_ARRIVAL_SUCCESS', 'PARENT_ORDER', 'Your request has been successfully sent. Please wait for approval.', 'Your request has been successfully sent. Please wait for approval.', 'all'),
(733, 'ORDER_PAYMENT_ARRIVAL_WITH_APPROVAL_SUCCESS', 'PARENT_ORDER', 'Your request has been successfully received. We are waiting you!', 'Your request has been successfully received. We are waiting you!', 'all'),
(734, 'ORDER_TERMS_AND_CONDITIONS', 'PARENT_ORDER', 'I accept to agree to the Terms & Conditions.', 'I accept to agree to the Terms & Conditions.', 'all'),
(735, 'ORDER_TERMS_AND_CONDITIONS_INVALID', 'PARENT_ORDER', 'You must agree with our Terms & Conditions to continue.', 'You must agree with our Terms & Conditions to continue.', 'all'),
(736, 'ORDER_BOOK', 'PARENT_ORDER', 'Book now', 'Submit', 'all'),
(737, 'PARENT_ORDER_ADDRESS', '', 'Order - Billing/shipping address', 'Order - Billing/shipping address', 'backend'),
(738, 'ORDER_ADDRESS_SELECT_PAYMENT_METHOD', 'PARENT_ORDER_ADDRESS', 'Select payment method.', 'Select payment method.', 'all'),
(739, 'ORDER_ADDRESS_BILLING', 'PARENT_ORDER_ADDRESS', 'Billing address', 'Billing address', 'all'),
(740, 'ORDER_ADDRESS_BILLING_DISABLED', 'PARENT_ORDER_ADDRESS', 'Billing address is not enabled.', 'Billing address is not enabled.', 'all'),
(741, 'ORDER_ADDRESS_SHIPPING', 'PARENT_ORDER_ADDRESS', 'Shipping address', 'Shipping address', 'all'),
(742, 'ORDER_ADDRESS_SHIPPING_DISABLED', 'PARENT_ORDER_ADDRESS', 'Shipping address is not enabled.', 'Shipping address is not enabled.', 'all'),
(743, 'ORDER_ADDRESS_SHIPPING_COPY', 'PARENT_ORDER_ADDRESS', 'Use billing address', 'Use billing address', 'all'),
(744, 'ORDER_ADDRESS_FIRST_NAME', 'PARENT_ORDER_ADDRESS', 'First name', 'First name', 'all'),
(745, 'ORDER_ADDRESS_LAST_NAME', 'PARENT_ORDER_ADDRESS', 'Last name', 'Last name', 'all'),
(746, 'ORDER_ADDRESS_COMPANY', 'PARENT_ORDER_ADDRESS', 'Company', 'Company', 'all'),
(747, 'ORDER_ADDRESS_EMAIL', 'PARENT_ORDER_ADDRESS', 'Email', 'Email', 'all'),
(748, 'ORDER_ADDRESS_PHONE', 'PARENT_ORDER_ADDRESS', 'Phone number', 'Phone number', 'all'),
(749, 'ORDER_ADDRESS_COUNTRY', 'PARENT_ORDER_ADDRESS', 'Country', 'Country', 'all'),
(750, 'ORDER_ADDRESS_ADDRESS_FIRST', 'PARENT_ORDER_ADDRESS', 'Address line 1', 'Address line 1', 'all'),
(751, 'ORDER_ADDRESS_ADDRESS_SECOND', 'PARENT_ORDER_ADDRESS', 'Address line 2', 'Address line 2', 'all'),
(752, 'ORDER_ADDRESS_CITY', 'PARENT_ORDER_ADDRESS', 'City', 'City', 'all'),
(753, 'ORDER_ADDRESS_STATE', 'PARENT_ORDER_ADDRESS', 'State/Province', 'State/Province', 'all');
INSERT INTO `wp_dopbsp_translation_en` (`id`, `key_data`, `parent_key`, `text_data`, `translation`, `location`) VALUES
(754, 'ORDER_ADDRESS_ZIP_CODE', 'PARENT_ORDER_ADDRESS', 'Zip code', 'Zip code', 'all'),
(755, 'PARENT_RESERVATIONS', '', 'Reservations', 'Reservations', 'backend'),
(756, 'RESERVATIONS_TITLE', 'PARENT_RESERVATIONS', 'Reservations', 'Reservations', 'backend'),
(757, 'RESERVATIONS_DISPLAY_NEW_RESERVATIONS', 'PARENT_RESERVATIONS', 'Display new reservations', 'Display new reservations', 'backend'),
(758, 'RESERVATIONS_NO_RESERVATIONS', 'PARENT_RESERVATIONS', 'There are no reservations.', 'There are no reservations.', 'backend'),
(759, 'PARENT_RESERVATIONS_FILTERS', '', 'Reservations - Filters', 'Reservations - Filters', 'backend'),
(760, 'RESERVATIONS_FILTERS_CALENDAR', 'PARENT_RESERVATIONS_FILTERS', 'Calendar', 'Calendar', 'backend'),
(761, 'RESERVATIONS_FILTERS_CALENDAR_ALL', 'PARENT_RESERVATIONS_FILTERS', 'All', 'All', 'backend'),
(762, 'RESERVATIONS_FILTERS_VIEW_CALENDAR', 'PARENT_RESERVATIONS_FILTERS', 'View calendar', 'View calendar', 'backend'),
(763, 'RESERVATIONS_FILTERS_VIEW_LIST', 'PARENT_RESERVATIONS_FILTERS', 'View list', 'View list', 'backend'),
(764, 'RESERVATIONS_FILTERS_PERIOD', 'PARENT_RESERVATIONS_FILTERS', 'Period', 'Period', 'backend'),
(765, 'RESERVATIONS_FILTERS_START_DAY', 'PARENT_RESERVATIONS_FILTERS', 'Start day', 'Start day', 'backend'),
(766, 'RESERVATIONS_FILTERS_END_DAY', 'PARENT_RESERVATIONS_FILTERS', 'End day', 'End day', 'backend'),
(767, 'RESERVATIONS_FILTERS_START_HOUR', 'PARENT_RESERVATIONS_FILTERS', 'Start hour', 'Start hour', 'backend'),
(768, 'RESERVATIONS_FILTERS_END_HOUR', 'PARENT_RESERVATIONS_FILTERS', 'End hour', 'End hour', 'backend'),
(769, 'RESERVATIONS_FILTERS_STATUS', 'PARENT_RESERVATIONS_FILTERS', 'Status', 'Status', 'backend'),
(770, 'RESERVATIONS_FILTERS_STATUS_LABEL', 'PARENT_RESERVATIONS_FILTERS', 'Select statuses', 'Select statuses', 'backend'),
(771, 'RESERVATIONS_FILTERS_STATUS_PENDING', 'PARENT_RESERVATIONS_FILTERS', 'Pending', 'Pending', 'backend'),
(772, 'RESERVATIONS_FILTERS_STATUS_APPROVED', 'PARENT_RESERVATIONS_FILTERS', 'Approved', 'Approved', 'backend'),
(773, 'RESERVATIONS_FILTERS_STATUS_REJECTED', 'PARENT_RESERVATIONS_FILTERS', 'Rejected', 'Rejected', 'backend'),
(774, 'RESERVATIONS_FILTERS_STATUS_CANCELED', 'PARENT_RESERVATIONS_FILTERS', 'Canceled', 'Canceled', 'backend'),
(775, 'RESERVATIONS_FILTERS_STATUS_EXPIRED', 'PARENT_RESERVATIONS_FILTERS', 'Expired', 'Expired', 'backend'),
(776, 'RESERVATIONS_FILTERS_PAYMENT_LABEL', 'PARENT_RESERVATIONS_FILTERS', 'Select payment methods', 'Select payment methods', 'backend'),
(777, 'RESERVATIONS_FILTERS_SEARCH', 'PARENT_RESERVATIONS_FILTERS', 'Search', 'Search', 'backend'),
(778, 'RESERVATIONS_FILTERS_PAGE', 'PARENT_RESERVATIONS_FILTERS', 'Page', 'Page', 'backend'),
(779, 'RESERVATIONS_FILTERS_PER_PAGE', 'PARENT_RESERVATIONS_FILTERS', 'Reservations per page', 'Reservations per page', 'backend'),
(780, 'RESERVATIONS_FILTERS_ORDER', 'PARENT_RESERVATIONS_FILTERS', 'Order', 'Order', 'backend'),
(781, 'RESERVATIONS_FILTERS_ORDER_ASCENDING', 'PARENT_RESERVATIONS_FILTERS', 'Ascending', 'Ascending', 'backend'),
(782, 'RESERVATIONS_FILTERS_ORDER_DESCENDING', 'PARENT_RESERVATIONS_FILTERS', 'Descending', 'Descending', 'backend'),
(783, 'RESERVATIONS_FILTERS_ORDER_BY', 'PARENT_RESERVATIONS_FILTERS', 'Order by', 'Order by', 'backend'),
(784, 'PARENT_RESERVATIONS_RESERVATION', '', 'Reservations - Reservation', 'Reservations - Reservation', 'backend'),
(785, 'RESERVATIONS_RESERVATION_ADD', 'PARENT_RESERVATIONS_RESERVATION', 'Add reservation', 'Add reservation', 'backend'),
(786, 'RESERVATIONS_RESERVATION_ADD_SUCCESS', 'PARENT_RESERVATIONS_RESERVATION', 'Add reservation', 'Add reservation', 'backend'),
(787, 'RESERVATIONS_RESERVATION_DETAILS_TITLE', 'PARENT_RESERVATIONS_RESERVATION', 'Details', 'Details', 'all'),
(788, 'RESERVATIONS_RESERVATION_ID', 'PARENT_RESERVATIONS_RESERVATION', 'Reservation ID', 'Reservation ID', 'all'),
(789, 'RESERVATIONS_RESERVATION_DATE_CREATED', 'PARENT_RESERVATIONS_RESERVATION', 'Date created', 'Date created', 'backend'),
(790, 'RESERVATIONS_RESERVATION_CALENDAR_ID', 'PARENT_RESERVATIONS_RESERVATION', 'Calendar ID', 'Calendar ID', 'backend'),
(791, 'RESERVATIONS_RESERVATION_CALENDAR_NAME', 'PARENT_RESERVATIONS_RESERVATION', 'Calendar name', 'Calendar name', 'backend'),
(792, 'RESERVATIONS_RESERVATION_LANGUAGE', 'PARENT_RESERVATIONS_RESERVATION', 'Selected language', 'Selected language', 'backend'),
(793, 'RESERVATIONS_RESERVATION_STATUS', 'PARENT_RESERVATIONS_RESERVATION', 'Status', 'Status', 'backend'),
(794, 'RESERVATIONS_RESERVATION_STATUS_PENDING', 'PARENT_RESERVATIONS_RESERVATION', 'Pending', 'Pending', 'backend'),
(795, 'RESERVATIONS_RESERVATION_STATUS_APPROVED', 'PARENT_RESERVATIONS_RESERVATION', 'Approved', 'Approved', 'backend'),
(796, 'RESERVATIONS_RESERVATION_STATUS_REJECTED', 'PARENT_RESERVATIONS_RESERVATION', 'Rejected', 'Rejected', 'backend'),
(797, 'RESERVATIONS_RESERVATION_STATUS_CANCELED', 'PARENT_RESERVATIONS_RESERVATION', 'Canceled', 'Canceled', 'backend'),
(798, 'RESERVATIONS_RESERVATION_STATUS_EXPIRED', 'PARENT_RESERVATIONS_RESERVATION', 'Expired', 'Expired', 'backend'),
(799, 'RESERVATIONS_RESERVATION_PAYMENT_PRICE_CHANGE', 'PARENT_RESERVATIONS_RESERVATION', 'Price change', 'Price change', 'all'),
(800, 'RESERVATIONS_RESERVATION_NO_EXTRAS', 'PARENT_RESERVATIONS_RESERVATION', 'No extras.', 'No extras.', 'all'),
(801, 'RESERVATIONS_RESERVATION_NO_DISCOUNT', 'PARENT_RESERVATIONS_RESERVATION', 'No discount.', 'No discount.', 'all'),
(802, 'RESERVATIONS_RESERVATION_NO_COUPON', 'PARENT_RESERVATIONS_RESERVATION', 'No coupon.', 'No coupon.', 'all'),
(803, 'RESERVATIONS_RESERVATION_NO_FEES', 'PARENT_RESERVATIONS_RESERVATION', 'No taxes or fees.', 'No taxes or fees.', 'all'),
(804, 'RESERVATIONS_RESERVATION_NO_ADDRESS_BILLING', 'PARENT_RESERVATIONS_RESERVATION', 'No billing address.', 'No billing address.', 'all'),
(805, 'RESERVATIONS_RESERVATION_NO_ADDRESS_SHIPPING', 'PARENT_RESERVATIONS_RESERVATION', 'No shipping address.', 'No shipping address.', 'all'),
(806, 'RESERVATIONS_RESERVATION_NO_FORM', 'PARENT_RESERVATIONS_RESERVATION', 'Form was not completed.', 'Form was not completed.', 'all'),
(807, 'RESERVATIONS_RESERVATION_NO_FORM_FIELD', 'PARENT_RESERVATIONS_RESERVATION', 'Form field was not completed.', 'Form field was not completed.', 'all'),
(808, 'RESERVATIONS_RESERVATION_ADDRESS_SHIPPING_COPY', 'PARENT_RESERVATIONS_RESERVATION', 'Same as billing address.', 'Same as billing address.', 'all'),
(809, 'RESERVATIONS_RESERVATION_INSTRUCTIONS', 'PARENT_RESERVATIONS_RESERVATION', 'Click to edit the reservation.', 'Click to edit the reservation.', 'all'),
(810, 'RESERVATIONS_RESERVATION_APPROVE', 'PARENT_RESERVATIONS_RESERVATION', 'Approve', 'Approve', 'backend'),
(811, 'RESERVATIONS_RESERVATION_APPROVE_CONFIRMATION', 'PARENT_RESERVATIONS_RESERVATION', 'Are you sure you want to approve this reservation?', 'Are you sure you want to approve this reservation?', 'backend'),
(812, 'RESERVATIONS_RESERVATION_APPROVE_SUCCESS', 'PARENT_RESERVATIONS_RESERVATION', 'The reservation has been approved.', 'The reservation has been approved.', 'backend'),
(813, 'RESERVATIONS_RESERVATION_CANCEL', 'PARENT_RESERVATIONS_RESERVATION', 'Cancel', 'Cancel', 'backend'),
(814, 'RESERVATIONS_RESERVATION_CANCEL_CONFIRMATION', 'PARENT_RESERVATIONS_RESERVATION', 'Are you sure you want to cancel this reservation?', 'Are you sure you want to cancel this reservation?', 'backend'),
(815, 'RESERVATIONS_RESERVATION_CANCEL_CONFIRMATION_REFUND', 'PARENT_RESERVATIONS_RESERVATION', 'Are you sure you want to cancel this reservation? A refund will be issued automatically.', 'Are you sure you want to cancel this reservation? A refund will be issued automatically.', 'backend'),
(816, 'RESERVATIONS_RESERVATION_CANCEL_SUCCESS', 'PARENT_RESERVATIONS_RESERVATION', 'The reservation has been canceled.', 'The reservation has been canceled.', 'backend'),
(817, 'RESERVATIONS_RESERVATION_CANCEL_SUCCESS_REFUND', 'PARENT_RESERVATIONS_RESERVATION', 'A refund of %s has been made.', 'A refund of %s has been made.', 'backend'),
(818, 'RESERVATIONS_RESERVATION_CANCEL_SUCCESS_REFUND_WARNING', 'PARENT_RESERVATIONS_RESERVATION', 'A refund or a partial refund has already been made.', 'A refund or a partial refund has already been made.', 'backend'),
(819, 'RESERVATIONS_RESERVATION_DELETE', 'PARENT_RESERVATIONS_RESERVATION', 'Delete', 'Delete', 'backend'),
(820, 'RESERVATIONS_RESERVATION_DELETE_CONFIRMATION', 'PARENT_RESERVATIONS_RESERVATION', 'Are you sure you want to delete this reservation?', 'Are you sure you want to delete this reservation?', 'backend'),
(821, 'RESERVATIONS_RESERVATION_DELETE_SUCCESS', 'PARENT_RESERVATIONS_RESERVATION', 'The reservation has been deleted.', 'The reservation has been deleted.', 'backend'),
(822, 'RESERVATIONS_RESERVATION_REJECT', 'PARENT_RESERVATIONS_RESERVATION', 'Reject', 'Reject', 'backend'),
(823, 'RESERVATIONS_RESERVATION_REJECT_CONFIRMATION', 'PARENT_RESERVATIONS_RESERVATION', 'Are you sure you want to reject this reservation?', 'Are you sure you want to reject this reservation?', 'backend'),
(824, 'RESERVATIONS_RESERVATION_REJECT_SUCCESS', 'PARENT_RESERVATIONS_RESERVATION', 'The reservation has been rejected.', 'The reservation has been rejected.', 'backend'),
(825, 'RESERVATIONS_RESERVATION_CLOSE', 'PARENT_RESERVATIONS_RESERVATION', 'Close', 'Close', 'backend'),
(826, 'PARENT_RESERVATIONS_HELP', '', 'Reservations - Help', 'Reservations - Help', 'backend'),
(827, 'RESERVATIONS_FILTERS_CALENDAR_HELP', 'PARENT_RESERVATIONS_HELP', 'Select the calendar for which you want to see reservations, or display all reservations.', 'Select the calendar for which you want to see reservations, or display all reservations.', 'backend'),
(828, 'RESERVATIONS_FILTERS_VIEW_CALENDAR_HELP', 'PARENT_RESERVATIONS_HELP', 'Selecting \"Calendar view\" will display the reservations in a calendar. Only possible when you select one calendar.', 'Selecting \"Calendar view\" will display the reservations in a calendar. Only possible when you select one calendar.', 'backend'),
(829, 'RESERVATIONS_FILTERS_VIEW_LIST_HELP', 'PARENT_RESERVATIONS_HELP', 'Selecting \"List view\" will display the reservations in a list.', 'Selecting \"List view\" will display the reservations in a list.', 'backend'),
(830, 'RESERVATIONS_FILTERS_START_DAY_HELP', 'PARENT_RESERVATIONS_HELP', 'Select the day from where displayed reservations start.', 'Select the day from where displayed reservations start.', 'backend'),
(831, 'RESERVATIONS_FILTERS_END_DAY_HELP', 'PARENT_RESERVATIONS_HELP', 'Select the day where displayed reservations end.', 'Select the day where displayed reservations end.', 'backend'),
(832, 'RESERVATIONS_FILTERS_START_HOUR_HELP', 'PARENT_RESERVATIONS_HELP', 'Select the hour from where displayed reservations start.', 'Select the hour from where displayed reservations start.', 'backend'),
(833, 'RESERVATIONS_FILTERS_END_HOUR_HELP', 'PARENT_RESERVATIONS_HELP', 'Select the hour where displayed reservations end.', 'Select the hour where displayed reservations end.', 'backend'),
(834, 'RESERVATIONS_FILTERS_STATUS_HELP', 'PARENT_RESERVATIONS_HELP', 'Display reservations with selected status.', 'Display reservations with selected status.', 'backend'),
(835, 'RESERVATIONS_FILTERS_PAYMENT_HELP', 'PARENT_RESERVATIONS_HELP', 'Display reservations with selected payment methods.', 'Display reservations with selected payment methods.', 'backend'),
(836, 'RESERVATIONS_FILTERS_SEARCH_HELP', 'PARENT_RESERVATIONS_HELP', 'Enter the search value.', 'Enter the search value.', 'backend'),
(837, 'RESERVATIONS_FILTERS_PAGE_HELP', 'PARENT_RESERVATIONS_HELP', 'Select page.', 'Select page.', 'backend'),
(838, 'RESERVATIONS_FILTERS_PER_PAGE_HELP', 'PARENT_RESERVATIONS_HELP', 'Select the number of reservations which will be displayed on page.', 'Select the number of reservations which will be displayed on page.', 'backend'),
(839, 'RESERVATIONS_FILTERS_ORDER_HELP', 'PARENT_RESERVATIONS_HELP', 'Order the reservations ascending or descending.', 'Order the reservations ascending or descending.', 'backend'),
(840, 'RESERVATIONS_FILTERS_ORDER_BY_HELP', 'PARENT_RESERVATIONS_HELP', 'Select the field after which the reservations will be sorted.', 'Select the field after which the reservations will be sorted.', 'backend'),
(841, 'PARENT_RESERVATIONS_RESERVATION_FRONT_END', '', 'Reservations - Reservation front end', 'Reservations - Reservation front end', 'backend'),
(842, 'RESERVATIONS_RESERVATION_FRONT_END_TITLE', 'PARENT_RESERVATIONS_RESERVATION_FRONT_END', 'Reservation', 'Reservation', 'all'),
(843, 'RESERVATIONS_RESERVATION_FRONT_END_SELECT_DAYS', 'PARENT_RESERVATIONS_RESERVATION_FRONT_END', 'Please select the days from calendar.', 'Please select the days from calendar.', 'all'),
(844, 'RESERVATIONS_RESERVATION_FRONT_END_SELECT_HOURS', 'PARENT_RESERVATIONS_RESERVATION_FRONT_END', 'Please select the days and hours from calendar.', 'Please select the days and hours from calendar.', 'all'),
(845, 'RESERVATIONS_RESERVATION_FRONT_END_PRICE', 'PARENT_RESERVATIONS_RESERVATION_FRONT_END', 'Price', 'Price', 'all'),
(846, 'RESERVATIONS_RESERVATION_FRONT_END_TOTAL_PRICE', 'PARENT_RESERVATIONS_RESERVATION_FRONT_END', 'Total', 'Total', 'all'),
(847, 'RESERVATIONS_RESERVATION_FRONT_END_DEPOSIT', 'PARENT_RESERVATIONS_RESERVATION_FRONT_END', 'Deposit', 'Deposit', 'all'),
(848, 'RESERVATIONS_RESERVATION_FRONT_END_DEPOSIT_LEFT', 'PARENT_RESERVATIONS_RESERVATION_FRONT_END', 'Left to pay', 'Left to pay', 'all'),
(849, 'PARENT_REVIEWS', '', 'Reviews', 'Reviews', 'backend'),
(850, 'REVIEWS_TITLE', 'PARENT_REVIEWS', 'Reviews', 'Reviews', 'backend'),
(851, 'PARENT_RULES', '', 'Rules', 'Rules', 'backend'),
(852, 'RULES_TITLE', 'PARENT_RULES', 'Rules', 'Rules', 'backend'),
(853, 'RULES_CREATED_BY', 'PARENT_RULES', 'Created by', 'Created by', 'backend'),
(854, 'RULES_LOAD_SUCCESS', 'PARENT_RULES', 'Rules list loaded.', 'Rules list loaded.', 'backend'),
(855, 'RULES_NO_RULES', 'PARENT_RULES', 'No rules. Click the above \"plus\" icon to add a new one.', 'No rules. Click the above \"plus\" icon to add a new one.', 'backend'),
(856, 'PARENT_RULES_RULE', '', 'Rules - Rule', 'Rules - Rule', 'backend'),
(857, 'RULES_RULE_NAME', 'PARENT_RULES_RULE', 'Name', 'Name', 'backend'),
(858, 'RULES_RULE_TIME_LAPSE_MIN', 'PARENT_RULES_RULE', 'Minimum time lapse', 'Minimum time lapse', 'backend'),
(859, 'RULES_RULE_TIME_LAPSE_MAX', 'PARENT_RULES_RULE', 'Maximum time lapse', 'Maximum time lapse', 'backend'),
(860, 'RULES_RULE_LOADED', 'PARENT_RULES_RULE', 'Rule loaded.', 'Rule loaded.', 'backend'),
(861, 'PARENT_RULES_ADD_RULE', '', 'Rules - Add rule', 'Rules - Add rule', 'backend'),
(862, 'RULES_ADD_RULE_NAME', 'PARENT_RULES_ADD_RULE', 'New rule', 'New rule', 'backend'),
(863, 'RULES_ADD_RULE_SUBMIT', 'PARENT_RULES_ADD_RULE', 'Add rule', 'Add rule', 'backend'),
(864, 'RULES_ADD_RULE_ADDING', 'PARENT_RULES_ADD_RULE', 'Adding a new rule ...', 'Adding a new rule ...', 'backend'),
(865, 'RULES_ADD_RULE_SUCCESS', 'PARENT_RULES_ADD_RULE', 'You have succesfully added a new rule.', 'You have succesfully added a new rule.', 'backend'),
(866, 'PARENT_RULES_DELETE_RULE', '', 'Rules - Delete rule', 'Rules - Delete rule', 'backend'),
(867, 'RULES_DELETE_RULE_CONFIRMATION', 'PARENT_RULES_DELETE_RULE', 'Are you sure you want to delete this rule?', 'Are you sure you want to delete this rule?', 'backend'),
(868, 'RULES_DELETE_RULE_SUBMIT', 'PARENT_RULES_DELETE_RULE', 'Delete rule', 'Delete rule', 'backend'),
(869, 'RULES_DELETE_RULE_DELETING', 'PARENT_RULES_DELETE_RULE', 'Deleting rule ...', 'Deleting rule ...', 'backend'),
(870, 'RULES_DELETE_RULE_SUCCESS', 'PARENT_RULES_DELETE_RULE', 'You have succesfully deleted the rule.', 'You have succesfully deleted the rule.', 'backend'),
(871, 'PARENT_RULES_HELP', '', 'Rules - Help', 'Rules - Help', 'backend'),
(872, 'RULES_HELP', 'PARENT_RULES_HELP', 'Click on a rule item to open the editing area.', 'Click on a rule item to open the editing area.', 'backend'),
(873, 'RULES_ADD_RULE_HELP', 'PARENT_RULES_HELP', 'Click on the \"plus\" icon to add a rule.', 'Click on the \"plus\" icon to add a rule.', 'backend'),
(874, 'RULES_RULE_TIME_LAPSE_MIN_HELP', 'PARENT_RULES_RULE', 'Enter minimum booking time lapse. Default value is 1.', 'Enter minimum booking time lapse. Default value is 1.', 'backend'),
(875, 'RULES_RULE_TIME_LAPSE_MAX_HELP', 'PARENT_RULES_RULE', 'Enter maximum booking time lapse. Add 0 for unlimited period.', 'Enter maximum booking time lapse. Add 0 for unlimited period.', 'backend'),
(876, 'PARENT_RULES_FRONT_END', '', 'Rules - Front end', 'Rules - Front end', 'backend'),
(877, 'RULES_FRONT_END_MIN_TIME_LAPSE_DAYS_WARNING', 'PARENT_RULES_FRONT_END', 'You need to book a minimum number of %d days.', 'You need to book a minimum number of %d days.', 'backend'),
(878, 'RULES_FRONT_END_MAX_TIME_LAPSE_DAYS_WARNING', 'PARENT_RULES_FRONT_END', 'You can book only a maximum number of %d days.', 'You can book only a maximum number of %d days.', 'backend'),
(879, 'RULES_FRONT_END_MIN_TIME_LAPSE_HOURS_WARNING', 'PARENT_RULES_FRONT_END', 'You need to book a minimum number of %d hours.', 'You need to book a minimum number of %d hours.', 'backend'),
(880, 'RULES_FRONT_END_MAX_TIME_LAPSE_HOURS_WARNING', 'PARENT_RULES_FRONT_END', 'You can book only a maximum number of %d hours.', 'You can book only a maximum number of %d hours.', 'backend'),
(881, 'PARENT_SEARCHES', '', 'Search', 'Search', 'backend'),
(882, 'SEARCHES_TITLE', 'PARENT_SEARCHES', 'Search', 'Search', 'backend'),
(883, 'SEARCHES_CREATED_BY', 'PARENT_SEARCHES', 'Created by', 'Created by', 'backend'),
(884, 'SEARCHES_LOAD_SUCCESS', 'PARENT_SEARCHES', 'Search list loaded.', 'Search list loaded.', 'backend'),
(885, 'SEARCHES_NO_SEARCHES', 'PARENT_SEARCHES', 'No searches. Click the above \"plus\" icon to add a new one.', 'No searches. Click the above \"plus\" icon to add a new one.', 'backend'),
(886, 'PARENT_SEARCHES_SEARCH', '', 'Search', 'Search', 'backend'),
(887, 'SEARCHES_SEARCH_NAME', 'PARENT_SEARCHES_SEARCH', 'Name', 'Name', 'backend'),
(888, 'SEARCHES_SEARCH_LOADED', 'PARENT_SEARCHES_SEARCH', 'Search loaded.', 'Search loaded.', 'backend'),
(889, 'PARENT_SEARCHES_ADD_SEARCH', '', 'Search - Add search', 'Search - Add search', 'backend'),
(890, 'SEARCHES_ADD_SEARCH_NAME', 'PARENT_SEARCHES_ADD_SEARCH', 'New search', 'New search', 'backend'),
(891, 'SEARCHES_ADD_SEARCH_SUBMIT', 'PARENT_SEARCHES_ADD_SEARCH', 'Add search', 'Add search', 'backend'),
(892, 'SEARCHES_ADD_SEARCH_ADDING', 'PARENT_SEARCHES_ADD_SEARCH', 'Adding a new search ...', 'Adding a new search ...', 'backend'),
(893, 'SEARCHES_ADD_SEARCH_SUCCESS', 'PARENT_SEARCHES_ADD_SEARCH', 'You have succesfully added a new search.', 'You have succesfully added a new search.', 'backend'),
(894, 'PARENT_SEARCHES_EDIT_SEARCH', '', 'Search - Edit search', 'Search - Edit search', 'backend'),
(895, 'SEARCHES_EDIT_SEARCH', 'PARENT_SEARCHES_EDIT_SEARCH', 'Edit search details', 'Edit search details', 'backend'),
(896, 'SEARCHES_EDIT_SEARCH_SETTINGS', 'PARENT_SEARCHES_EDIT_SEARCH', 'Edit search settings', 'Edit search settings', 'backend'),
(897, 'SEARCHES_EDIT_SEARCH_EXCLUDED_CALENDARS_DAYS', 'PARENT_SEARCHES_EDIT_SEARCH', 'Exclude calendars from search [hours filters disabled]', 'Exclude calendars from search [hours filters disabled]', 'backend'),
(898, 'SEARCHES_EDIT_SEARCH_EXCLUDED_CALENDARS_HOURS', 'PARENT_SEARCHES_EDIT_SEARCH', 'Exclude calendars from search [hours filters enabled]', 'Exclude calendars from search [hours filters enabled]', 'backend'),
(899, 'SEARCHES_EDIT_SEARCH_NO_CALENDARS', 'PARENT_SEARCHES_EDIT_SEARCH', 'There are no calendars created. Go to <a href=\"%s\">calendars</a> page to create one.', 'There are no calendars created. Go to <a href=\"%s\">calendars</a> page to create one.', 'backend'),
(900, 'PARENT_SEARCHES_DELETE_SEARCH', '', 'Search - Delete search', 'Search - Delete search', 'backend'),
(901, 'SEARCHES_DELETE_SEARCH_CONFIRMATION', 'PARENT_SEARCHES_DELETE_SEARCH', 'Are you sure you want to delete this search?', 'Are you sure you want to delete this search?', 'backend'),
(902, 'SEARCHES_DELETE_SEARCH_SUBMIT', 'PARENT_SEARCHES_DELETE_SEARCH', 'Delete search', 'Delete search', 'backend'),
(903, 'SEARCHES_DELETE_SEARCH_DELETING', 'PARENT_SEARCHES_DELETE_SEARCH', 'Deleting search ...', 'Deleting search ...', 'backend'),
(904, 'SEARCHES_DELETE_SEARCH_SUCCESS', 'PARENT_SEARCHES_DELETE_SEARCH', 'You have succesfully deleted the search.', 'You have succesfully deleted the search.', 'backend'),
(905, 'PARENT_SEARCHES_HELP', '', 'Search - Help', 'Search - Help', 'backend'),
(906, 'SEARCHES_HELP', 'PARENT_SEARCHES_HELP', 'Click on a search item to open the editing area.', 'Click on a search item to open the editing area.', 'backend'),
(907, 'SEARCHES_ADD_SEARCH_HELP', 'PARENT_SEARCHES_HELP', 'Click on the \"plus\" icon to add a search.', 'Click on the \"plus\" icon to add a search.', 'backend'),
(908, 'SEARCHES_EDIT_SEARCH_HELP', 'PARENT_SEARCHES_HELP', 'Click on the \"search\" icon to edit search details.', 'Click on the \"search\" icon to edit search details.', 'backend'),
(909, 'SEARCHES_EDIT_SEARCH_SETTINGS_HELP', 'PARENT_SEARCHES_HELP', 'Click on the \"gear\" icon to edit search settings.', 'Click on the \"gear\" icon to edit search settings.', 'backend'),
(910, 'SEARCHES_EDIT_SEARCH_DELETE_HELP', 'PARENT_SEARCHES_HELP', 'Click the \"trash\" icon to delete the search.', 'Click the \"trash\" icon to delete the search.', 'backend'),
(911, 'SEARCHES_EDIT_SEARCH_EXCLUDED_CALENDARS_HELP', 'PARENT_SEARCHES_HELP', 'If hours filters are enabled only calendars that have availability set for hours are included in search, else only calendar that have availability set for days are included.', 'If hours filters are enabled only calendars that have availability set for hours are included in search, else only calendar that have availability set for days are included.', 'backend'),
(912, 'SEARCHES_SEARCH_NAME_HELP', 'PARENT_SEARCHES_HELP', 'Change search name.', 'Change search name.', 'backend'),
(913, 'PARENT_SEARCH_FRONT_END', '', 'Search - Front end', 'Search - Front end', 'backend'),
(914, 'SEARCH_FRONT_END_TITLE', 'PARENT_SEARCH_FRONT_END', 'Search', 'Search', 'all'),
(915, 'SEARCH_FRONT_END_CHECK_IN', 'PARENT_SEARCH_FRONT_END', 'Check in', 'Check in', 'all'),
(916, 'SEARCH_FRONT_END_CHECK_OUT', 'PARENT_SEARCH_FRONT_END', 'Check out', 'Check out', 'all'),
(917, 'SEARCH_FRONT_END_START_HOUR', 'PARENT_SEARCH_FRONT_END', 'Start at', 'Start at', 'all'),
(918, 'SEARCH_FRONT_END_END_HOUR', 'PARENT_SEARCH_FRONT_END', 'Finish at', 'Finish at', 'all'),
(919, 'SEARCH_FRONT_END_NO_ITEMS', 'PARENT_SEARCH_FRONT_END', 'No book items', 'Number of Guests', 'all'),
(920, 'SEARCH_FRONT_END_NO_AVAILABILITY', 'PARENT_SEARCH_FRONT_END', 'Nothing available.', 'Nothing available.', 'all'),
(921, 'SEARCH_FRONT_END_NO_SERVICES_AVAILABLE', 'PARENT_SEARCH_FRONT_END', 'There are no services available for the period you selected.', 'There are no services available for the period you selected.', 'all'),
(922, 'SEARCH_FRONT_END_NO_SERVICES_AVAILABLE_SPLIT_GROUP', 'PARENT_SEARCH_FRONT_END', 'You cannot add divided groups to a reservation.', 'You cannot add divided groups to a reservation.', 'all'),
(923, 'SEARCH_FRONT_END_SORT_TITLE', 'PARENT_SEARCH_FRONT_END', 'Sort by', 'Sort by', 'all'),
(924, 'SEARCH_FRONT_END_SORT_NAME', 'PARENT_SEARCH_FRONT_END', 'Name', 'Name', 'all'),
(925, 'SEARCH_FRONT_END_SORT_PRICE', 'PARENT_SEARCH_FRONT_END', 'Price', 'Price', 'all'),
(926, 'SEARCH_FRONT_END_SORT_ASC', 'PARENT_SEARCH_FRONT_END', 'Ascending', 'Ascending', 'all'),
(927, 'SEARCH_FRONT_END_SORT_DESC', 'PARENT_SEARCH_FRONT_END', 'Descending', 'Descending', 'all'),
(928, 'SEARCH_FRONT_END_VIEW_GRID', 'PARENT_SEARCH_FRONT_END', 'Grid view', 'Grid view', 'all'),
(929, 'SEARCH_FRONT_END_VIEW_LIST', 'PARENT_SEARCH_FRONT_END', 'List view', 'List view', 'all'),
(930, 'SEARCH_FRONT_END_VIEW_MAP', 'PARENT_SEARCH_FRONT_END', 'Map view', 'Map view', 'all'),
(931, 'SEARCH_FRONT_END_RESULTS_PRICE', 'PARENT_SEARCH_FRONT_END', 'Start at %s', 'Start at %s', 'all'),
(932, 'SEARCH_FRONT_END_RESULTS_VIEW', 'PARENT_SEARCH_FRONT_END', 'View', 'View', 'all'),
(933, 'PARENT_SETTINGS', '', 'Settings', 'Settings', 'backend'),
(934, 'SETTINGS_TITLE', 'PARENT_SETTINGS', 'Settings', 'Settings', 'backend'),
(935, 'SETTINGS_ENABLED', 'PARENT_SETTINGS', 'Enabled', 'Enabled', 'backend'),
(936, 'SETTINGS_DISABLED', 'PARENT_SETTINGS', 'Disabled', 'Disabled', 'backend'),
(937, 'SETTINGS_GENERAL_TITLE', 'PARENT_SETTINGS', 'General settings', 'General settings', 'backend'),
(938, 'PARENT_SETTINGS_HELP', '', 'Settings - Help', 'Settings - Help', 'backend'),
(939, 'SETTINGS_HELP', 'PARENT_SETTINGS_HELP', 'Edit booking system settings.', 'Edit booking system settings.', 'backend'),
(940, 'PARENT_SETTINGS_CALENDAR', '', 'Settings - Calendar', 'Settings - Calendar', 'backend'),
(941, 'SETTINGS_CALENDAR_TITLE', 'PARENT_SETTINGS_CALENDAR', 'Calendar settings', 'Calendar settings', 'backend'),
(942, 'SETTINGS_CALENDAR_NAME', 'PARENT_SETTINGS_CALENDAR', 'Name', 'Name', 'backend'),
(943, 'SETTINGS_CALENDAR_GENERAL_SETTINGS', 'PARENT_SETTINGS_CALENDAR', 'General settings', 'General settings', 'backend'),
(944, 'SETTINGS_CALENDAR_GENERAL_DATE_TYPE', 'PARENT_SETTINGS_CALENDAR', 'Date type', 'Date type', 'backend'),
(945, 'SETTINGS_CALENDAR_GENERAL_DATE_TYPE_AMERICAN', 'PARENT_SETTINGS_CALENDAR', 'American (mm dd, yyyy)', 'American (mm dd, yyyy)', 'backend'),
(946, 'SETTINGS_CALENDAR_GENERAL_DATE_TYPE_EUROPEAN', 'PARENT_SETTINGS_CALENDAR', 'European (dd mm yyyy)', 'European (dd mm yyyy)', 'backend'),
(947, 'SETTINGS_CALENDAR_GENERAL_TEMPLATE', 'PARENT_SETTINGS_CALENDAR', 'Style template', 'Style template', 'backend'),
(948, 'SETTINGS_CALENDAR_GENERAL_BOOKING_STOP', 'PARENT_SETTINGS_CALENDAR', 'Stop booking x minutes in advance', 'Stop booking x minutes in advance', 'backend'),
(949, 'SETTINGS_CALENDAR_GENERAL_MONTHS_NO', 'PARENT_SETTINGS_CALENDAR', 'Number of months displayed', 'Number of months displayed', 'backend'),
(950, 'SETTINGS_CALENDAR_GENERAL_VIEW_ONLY', 'PARENT_SETTINGS_CALENDAR', 'View only info', 'View only info', 'backend'),
(951, 'SETTINGS_CALENDAR_GENERAL_POST_ID', 'PARENT_SETTINGS_CALENDAR', 'Post ID', 'Post ID', 'backend'),
(952, 'SETTINGS_CALENDAR_CURRENCY_SETTINGS', 'PARENT_SETTINGS_CALENDAR', 'Currency settings', 'Currency settings', 'backend'),
(953, 'SETTINGS_CALENDAR_CURRENCY', 'PARENT_SETTINGS_CALENDAR', 'Currency', 'Currency', 'backend'),
(954, 'SETTINGS_CALENDAR_CURRENCY_POSITION', 'PARENT_SETTINGS_CALENDAR', 'Currency position', 'Currency position', 'backend'),
(955, 'SETTINGS_CALENDAR_CURRENCY_POSITION_BEFORE', 'PARENT_SETTINGS_CALENDAR', 'Before', 'Before', 'backend'),
(956, 'SETTINGS_CALENDAR_CURRENCY_POSITION_BEFORE_WITH_SPACE', 'PARENT_SETTINGS_CALENDAR', 'Before with space', 'Before with space', 'backend'),
(957, 'SETTINGS_CALENDAR_CURRENCY_POSITION_AFTER', 'PARENT_SETTINGS_CALENDAR', 'After', 'After', 'backend'),
(958, 'SETTINGS_CALENDAR_CURRENCY_POSITION_AFTER_WITH_SPACE', 'PARENT_SETTINGS_CALENDAR', 'After with space', 'After with space', 'backend'),
(959, 'SETTINGS_CALENDAR_DAYS_SETTINGS', 'PARENT_SETTINGS_CALENDAR', 'Days settings', 'Days settings', 'backend'),
(960, 'SETTINGS_CALENDAR_DAYS_AVAILABLE', 'PARENT_SETTINGS_CALENDAR', 'Available days', 'Available days', 'backend'),
(961, 'SETTINGS_CALENDAR_DAYS_FIRST', 'PARENT_SETTINGS_CALENDAR', 'First weekday', 'First weekday', 'backend'),
(962, 'SETTINGS_CALENDAR_DAYS_FIRST_DISPLAYED', 'PARENT_SETTINGS_CALENDAR', 'First day displayed', 'First day displayed', 'backend'),
(963, 'SETTINGS_CALENDAR_DAYS_MULTIPLE_SELECT', 'PARENT_SETTINGS_CALENDAR', 'Use Check in/Check out', 'Use Check in/Check out', 'backend'),
(964, 'SETTINGS_CALENDAR_DAYS_MORNING_CHECK_OUT', 'PARENT_SETTINGS_CALENDAR', 'Morning check out', 'Morning check out', 'backend'),
(965, 'SETTINGS_CALENDAR_DAYS_DETAILS_FROM_HOURS', 'PARENT_SETTINGS_CALENDAR', 'Use hours details to set day details', 'Use hours details to set day details', 'backend'),
(966, 'SETTINGS_CALENDAR_HOURS_SETTINGS', 'PARENT_SETTINGS_CALENDAR', 'Hours settings', 'Hours settings', 'backend'),
(967, 'SETTINGS_CALENDAR_HOURS_ENABLED', 'PARENT_SETTINGS_CALENDAR', 'Use hours', 'Use hours', 'backend'),
(968, 'SETTINGS_CALENDAR_HOURS_INFO_ENABLED', 'PARENT_SETTINGS_CALENDAR', 'Enable hours info', 'Enable hours info', 'backend'),
(969, 'SETTINGS_CALENDAR_HOURS_DEFINITIONS', 'PARENT_SETTINGS_CALENDAR', 'Define hours', 'Define hours', 'backend'),
(970, 'SETTINGS_CALENDAR_HOURS_MULTIPLE_SELECT', 'PARENT_SETTINGS_CALENDAR', 'Use start/finish hours', 'Use start/finish hours', 'backend'),
(971, 'SETTINGS_CALENDAR_HOURS_AMPM', 'PARENT_SETTINGS_CALENDAR', 'Enable AM/PM format', 'Enable AM/PM format', 'backend'),
(972, 'SETTINGS_CALENDAR_HOURS_ADD_LAST_HOUR_TO_TOTAL_PRICE', 'PARENT_SETTINGS_CALENDAR', 'Add last selected hour price to total price', 'Add last selected hour price to total price', 'backend'),
(973, 'SETTINGS_CALENDAR_HOURS_INTERVAL_ENABLED', 'PARENT_SETTINGS_CALENDAR', 'Enable hours interval', 'Enable hours interval', 'backend'),
(974, 'SETTINGS_CALENDAR_SIDEBAR_SETTINGS', 'PARENT_SETTINGS_CALENDAR', 'Sidebar settings', 'Sidebar settings', 'backend'),
(975, 'SETTINGS_CALENDAR_SIDEBAR_STYLE', 'PARENT_SETTINGS_CALENDAR', 'Sidebar style', 'Sidebar style', 'backend'),
(976, 'SETTINGS_CALENDAR_SIDEBAR_NO_ITEMS_ENABLED', 'PARENT_SETTINGS_CALENDAR', 'Enable number of items select', 'Enable number of items select', 'backend'),
(977, 'SETTINGS_CALENDAR_RULES_SETTINGS', 'PARENT_SETTINGS_CALENDAR', 'Rules settings', 'Rules settings', 'backend'),
(978, 'SETTINGS_CALENDAR_RULES', 'PARENT_SETTINGS_CALENDAR', 'Select rule', 'Select rule', 'backend'),
(979, 'SETTINGS_CALENDAR_RULES_NONE', 'PARENT_SETTINGS_CALENDAR', 'None', 'None', 'backend'),
(980, 'SETTINGS_CALENDAR_EXTRAS_SETTINGS', 'PARENT_SETTINGS_CALENDAR', 'Extras settings', 'Extras settings', 'backend'),
(981, 'SETTINGS_CALENDAR_EXTRAS', 'PARENT_SETTINGS_CALENDAR', 'Select extra', 'Select extra', 'backend'),
(982, 'SETTINGS_CALENDAR_EXTRAS_NONE', 'PARENT_SETTINGS_CALENDAR', 'None', 'None', 'backend'),
(983, 'SETTINGS_CALENDAR_CART_SETTINGS', 'PARENT_SETTINGS_CALENDAR', 'Cart settings', 'Cart settings', 'backend'),
(984, 'SETTINGS_CALENDAR_CART_ENABLED', 'PARENT_SETTINGS_CALENDAR', 'Enable cart', 'Enable cart', 'backend'),
(985, 'SETTINGS_CALENDAR_DISCOUNTS_SETTINGS', 'PARENT_SETTINGS_CALENDAR', 'Discounts settings', 'Discounts settings', 'backend'),
(986, 'SETTINGS_CALENDAR_DISCOUNTS', 'PARENT_SETTINGS_CALENDAR', 'Select discount', 'Select discount', 'backend'),
(987, 'SETTINGS_CALENDAR_DISCOUNTS_NONE', 'PARENT_SETTINGS_CALENDAR', 'None', 'None', 'backend'),
(988, 'SETTINGS_CALENDAR_FEES_SETTINGS', 'PARENT_SETTINGS_CALENDAR', 'Taxes & fees settings', 'Taxes & fees settings', 'backend'),
(989, 'SETTINGS_CALENDAR_FEES', 'PARENT_SETTINGS_CALENDAR', 'Select taxes and/or fees', 'Select taxes and/or fees', 'backend'),
(990, 'SETTINGS_CALENDAR_COUPONS_SETTINGS', 'PARENT_SETTINGS_CALENDAR', 'Coupons settings', 'Coupons settings', 'backend'),
(991, 'SETTINGS_CALENDAR_COUPONS', 'PARENT_SETTINGS_CALENDAR', 'Select coupons', 'Select coupons', 'backend'),
(992, 'SETTINGS_CALENDAR_COUPONS_NONE', 'PARENT_SETTINGS_CALENDAR', 'None', 'None', 'backend'),
(993, 'SETTINGS_CALENDAR_DEPOSIT_SETTINGS', 'PARENT_SETTINGS_CALENDAR', 'Deposit settings', 'Deposit settings', 'backend'),
(994, 'SETTINGS_CALENDAR_DEPOSIT', 'PARENT_SETTINGS_CALENDAR', 'Deposit value', 'Deposit value', 'backend'),
(995, 'SETTINGS_CALENDAR_DEPOSIT_TYPE', 'PARENT_SETTINGS_CALENDAR', 'Deposit type', 'Deposit type', 'backend'),
(996, 'SETTINGS_CALENDAR_DEPOSIT_TYPE_FIXED', 'PARENT_SETTINGS_CALENDAR', 'Fixed', 'Fixed', 'backend'),
(997, 'SETTINGS_CALENDAR_DEPOSIT_TYPE_PERCENT', 'PARENT_SETTINGS_CALENDAR', 'Percent', 'Percent', 'backend'),
(998, 'SETTINGS_CALENDAR_FORMS_SETTINGS', 'PARENT_SETTINGS_CALENDAR', 'Forms settings', 'Forms settings', 'backend'),
(999, 'SETTINGS_CALENDAR_FORMS', 'PARENT_SETTINGS_CALENDAR', 'Select form', 'Select form', 'backend'),
(1000, 'SETTINGS_CALENDAR_ORDER_SETTINGS', 'PARENT_SETTINGS_CALENDAR', 'Order settings', 'Order settings', 'backend'),
(1001, 'SETTINGS_CALENDAR_ORDER_TERMS_AND_CONDITIONS_ENABLED', 'PARENT_SETTINGS_CALENDAR', 'Enable Terms & Conditions', 'Enable Terms & Conditions', 'backend'),
(1002, 'SETTINGS_CALENDAR_ORDER_TERMS_AND_CONDITIONS_LINK', 'PARENT_SETTINGS_CALENDAR', 'Terms & Conditions link', 'Terms & Conditions link', 'backend'),
(1003, 'PARENT_SETTINGS_CALENDAR_HELP', '', 'Settings - Calendar - Help', 'Settings - Calendar - Help', 'backend'),
(1004, 'SETTINGS_CALENDAR_NAME_HELP', 'PARENT_SETTINGS_CALENDAR_HELP', 'Change calendar name.', 'Change calendar name.', 'backend'),
(1005, 'SETTINGS_CALENDAR_GENERAL_DATE_TYPE_HELP', 'PARENT_SETTINGS_CALENDAR_HELP', 'Default value: American. Select date format: American (mm dd, yyyy) or European (dd mm yyyy).', 'Default value: American. Select date format: American (mm dd, yyyy) or European (dd mm yyyy).', 'backend'),
(1006, 'SETTINGS_CALENDAR_GENERAL_TEMPLATE_HELP', 'PARENT_SETTINGS_CALENDAR_HELP', 'Default value: default. Select styles template.', 'Default value: default. Select styles template.', 'backend'),
(1007, 'SETTINGS_CALENDAR_GENERAL_BOOKING_STOP_HELP', 'PARENT_SETTINGS_CALENDAR', 'Default value: 0. Set the number of minutes before the booking is stopped in advance. For 1 hour you have 60 minutes, for 1 day you have 1440 minutes.', 'Default value: 0. Set the number of minutes before the booking is stopped in advance. For 1 hour you have 60 minutes, for 1 day you have 1440 minutes.', 'backend'),
(1008, 'SETTINGS_CALENDAR_GENERAL_MONTHS_NO_HELP', 'PARENT_SETTINGS_CALENDAR_HELP', 'Default value: 1. Set the number of months initialy displayed. Maximum number allowed is 6.', 'Default value: 1. Set the number of months initialy displayed. Maximum number allowed is 6.', 'backend'),
(1009, 'SETTINGS_CALENDAR_GENERAL_VIEW_ONLY_HELP', 'PARENT_SETTINGS_CALENDAR_HELP', 'Default value: Enabled. Set to display only booking information in front end.', 'Default value: Enabled. Set to display only booking information in front end.', 'backend'),
(1010, 'SETTINGS_CALENDAR_GENERAL_POST_ID_HELP', 'PARENT_SETTINGS_CALENDAR_HELP', 'Set post ID were the calendar will be added. It is mandatory if you create a searching system through some calendars.', 'Set post ID were the calendar will be added. It is mandatory if you create a searching system through some calendars.', 'backend'),
(1011, 'SETTINGS_CALENDAR_CURRENCY_HELP', 'PARENT_SETTINGS_CALENDAR_HELP', 'Default value: United States Dollar ($, USD). Select calendar currency.', 'Default value: United States Dollar ($, USD). Select calendar currency.', 'backend'),
(1012, 'SETTINGS_CALENDAR_CURRENCY_POSITION_HELP', 'PARENT_SETTINGS_CALENDAR_HELP', 'Default value: Before. Select currency position.', 'Default value: Before. Select currency position.', 'backend'),
(1013, 'SETTINGS_CALENDAR_DAYS_MULTIPLE_SELECT_HELP', 'PARENT_SETTINGS_CALENDAR_HELP', 'Default value: Enabled. Use Check in/Check out or select only one day.', 'Default value: Enabled. Use Check in/Check out or select only one day.', 'backend'),
(1014, 'SETTINGS_CALENDAR_DAYS_AVAILABLE_HELP', 'PARENT_SETTINGS_CALENDAR_HELP', 'Default value: all available. Select available weekdays.', 'Default value: all available. Select available weekdays.', 'backend'),
(1015, 'SETTINGS_CALENDAR_DAYS_FIRST_HELP', 'PARENT_SETTINGS_CALENDAR_HELP', 'Default value: Monday. Select calendar first weekday.', 'Default value: Monday. Select calendar first weekday.', 'backend'),
(1016, 'SETTINGS_CALENDAR_DAYS_FIRST_DISPLAYED_HELP', 'PARENT_SETTINGS_CALENDAR_HELP', 'Format: YYYY-MM-DD. Default value: today. Select the day to be first displayed when the calendar calendar is loaded.', 'Format: YYYY-MM-DD. Default value: today. Select the day to be first displayed when the calendar calendar is loaded.', 'backend'),
(1017, 'SETTINGS_CALENDAR_DAYS_MORNING_CHECK_OUT_HELP', 'PARENT_SETTINGS_CALENDAR_HELP', 'Default value: Disabled. This option enables \"Check in\" in the afternoon of first day and \"Check out\" in the morning of the day after last day.', 'Default value: Disabled. This option enables \"Check in\" in the afternoon of first day and \"Check out\" in the morning of the day after last day.', 'backend'),
(1018, 'SETTINGS_CALENDAR_DAYS_DETAILS_FROM_HOURS_HELP', 'PARENT_SETTINGS_CALENDAR_HELP', 'Default value: Enabled. Check this option, when hours are enabled, if you want for days details to be updated (calculated) from hours details or disable it if you want to have complete control of day derails.', 'Default value: Enabled. Check this option, when hours are enabled, if you want for days details to be updated (calculated) from hours details or disable it if you want to have complete control of day derails.', 'backend'),
(1019, 'SETTINGS_CALENDAR_HOURS_ENABLED_HELP', 'PARENT_SETTINGS_CALENDAR_HELP', 'Default value: Disabled. Enable hours for the calendar.', 'Default value: Disabled. Enable hours for the calendar.', 'backend'),
(1020, 'SETTINGS_CALENDAR_HOURS_INFO_ENABLED_HELP', 'PARENT_SETTINGS_CALENDAR_HELP', 'Default value: Enabled. Display hours info when you hover a day in calendar.', 'Default value: Enabled. Display hours info when you hover a day in calendar.', 'backend'),
(1021, 'SETTINGS_CALENDAR_HOURS_DEFINITIONS_HELP', 'PARENT_SETTINGS_CALENDAR_HELP', 'Enter hh:mm ... add one per line. Changing the definitions will overwrite any previous hours data. Use only 24 hours format.', 'Enter hh:mm ... add one per line. Changing the definitions will overwrite any previous hours data. Use only 24 hours format.', 'backend'),
(1022, 'SETTINGS_CALENDAR_HOURS_MULTIPLE_SELECT_HELP', 'PARENT_SETTINGS_CALENDAR_HELP', 'Default value: Enabled. Use Start/Finish Hours or select only one hour.', 'Default value: Enabled. Use Start/Finish Hours or select only one hour.', 'backend'),
(1023, 'SETTINGS_CALENDAR_HOURS_AMPM_HELP', 'PARENT_SETTINGS_CALENDAR_HELP', 'Default value: Disabled. Display hours in AM/PM format. NOTE: Hours definitions still need to be in 24 hours format.', 'Default value: Disabled. Display hours in AM/PM format. NOTE: Hours definitions still need to be in 24 hours format.', 'backend'),
(1024, 'SETTINGS_CALENDAR_HOURS_ADD_LAST_HOUR_TO_TOTAL_PRICE_HELP', 'PARENT_SETTINGS_CALENDAR_HELP', 'Default value: Enabled. It calculates the total price before the last hours selected if Disabled. It calculates the total price including the last hour selected if Enabled. <br /><br /><strong>Warning: </strong> In administration area the last hours from your definitions list will not be displayed.', 'Default value: Enabled. It calculates the total price before the last hours selected if Disabled. It calculates the total price including the last hour selected if Enabled. <br /><br /><strong>Warning: </strong> In administration area the last hours from your definitions list will not be displayed.', 'backend'),
(1025, 'SETTINGS_CALENDAR_HOURS_INTERVAL_ENABLED_HELP', 'PARENT_SETTINGS_CALENDAR_HELP', 'Default value: Disabled. Show hours interval from the current hour to the next one.', 'Default value: Disabled. Show hours interval from the current hour to the next one.', 'backend'),
(1026, 'SETTINGS_CALENDAR_SIDEBAR_STYLE_HELP', 'PARENT_SETTINGS_CALENDAR_HELP', 'Set sidebar position and number of columns.', 'Set sidebar position and number of columns.', 'backend'),
(1027, 'SETTINGS_CALENDAR_SIDEBAR_NO_ITEMS_ENABLED_HELP', 'PARENT_SETTINGS_CALENDAR_HELP', 'Default value: Enabled. Set to display number of items you want to book in front end.', 'Default value: Enabled. Set to display number of items you want to book in front end.', 'backend'),
(1028, 'SETTINGS_CALENDAR_RULES_HELP', 'PARENT_SETTINGS_CALENDAR_HELP', 'Select calendar rules.', 'Select calendar rules.', 'backend'),
(1029, 'SETTINGS_CALENDAR_EXTRAS_HELP', 'PARENT_SETTINGS_CALENDAR_HELP', 'Select calendar extras.', 'Select calendar extras.', 'backend'),
(1030, 'SETTINGS_CALENDAR_CART_ENABLED_HELP', 'PARENT_SETTINGS_CALENDAR_HELP', 'Default value: Disabled. Use a shopping cart in calendar.', 'Default value: Disabled. Use a shopping cart in calendar.', 'backend'),
(1031, 'SETTINGS_CALENDAR_DISCOUNTS_HELP', 'PARENT_SETTINGS_CALENDAR_HELP', 'Select calendar discount.', 'Select calendar discount.', 'backend'),
(1032, 'SETTINGS_CALENDAR_FEES_HELP', 'PARENT_SETTINGS_CALENDAR_HELP', 'Select calendar taxes and/or fees.', 'Select calendar taxes and/or fees.', 'backend'),
(1033, 'SETTINGS_CALENDAR_COUPONS_HELP', 'PARENT_SETTINGS_CALENDAR_HELP', 'Select calendar coupons.', 'Select calendar coupons.', 'backend'),
(1034, 'SETTINGS_CALENDAR_DEPOSIT_HELP', 'PARENT_SETTINGS_CALENDAR_HELP', 'Default value: 0. Set calendar deposit value.', 'Default value: 0. Set calendar deposit value.', 'backend'),
(1035, 'SETTINGS_CALENDAR_DEPOSIT_TYPE_HELP', 'PARENT_SETTINGS_CALENDAR_HELP', 'Default value: Percent. Set deposit value type.', 'Default value: Percent. Set deposit value type.', 'backend'),
(1036, 'SETTINGS_CALENDAR_FORMS_HELP', 'PARENT_SETTINGS_CALENDAR_HELP', 'Select calendar form.', 'Select calendar form.', 'backend'),
(1037, 'SETTINGS_CALENDAR_ORDER_TERMS_AND_CONDITIONS_ENABLED_HELP', 'PARENT_SETTINGS_CALENDAR_HELP', 'Default value: Disabled. Enable Terms & Conditions check box.', 'Default value: Disabled. Enable Terms & Conditions check box.', 'backend'),
(1038, 'SETTINGS_CALENDAR_ORDER_TERMS_AND_CONDITIONS_LINK_HELP', 'PARENT_SETTINGS_CALENDAR_HELP', 'Enter the link to Terms & Conditions page.', 'Enter the link to Terms & Conditions page.', 'backend'),
(1039, 'PARENT_SETTINGS_NOTIFICATIONS', '', 'Settings - Notifications', 'Settings - Notifications', 'backend'),
(1040, 'SETTINGS_NOTIFICATIONS_TITLE', 'PARENT_SETTINGS_NOTIFICATIONS', 'Notifications', 'Notifications', 'backend'),
(1041, 'SETTINGS_NOTIFICATIONS_TEMPLATES', 'PARENT_SETTINGS_NOTIFICATIONS', 'Email templates', 'Email templates', 'backend'),
(1042, 'SETTINGS_NOTIFICATIONS_METHOD_ADMIN', 'PARENT_SETTINGS_NOTIFICATIONS', 'Admin notifications method', 'Admin notifications method', 'backend'),
(1043, 'SETTINGS_NOTIFICATIONS_METHOD_USER', 'PARENT_SETTINGS_NOTIFICATIONS', 'User notifications method', 'User notifications method', 'backend'),
(1044, 'SETTINGS_NOTIFICATIONS_EMAIL', 'PARENT_SETTINGS_NOTIFICATIONS', 'Notifications email', 'Notifications email', 'backend'),
(1045, 'SETTINGS_NOTIFICATIONS_EMAIL_REPLY', 'PARENT_SETTINGS_NOTIFICATIONS', 'Reply email', 'Reply email', 'backend'),
(1046, 'SETTINGS_NOTIFICATIONS_EMAIL_NAME', 'PARENT_SETTINGS_NOTIFICATIONS', 'Email name', 'Email name', 'backend'),
(1047, 'SETTINGS_NOTIFICATIONS_EMAIL_CC', 'PARENT_SETTINGS_NOTIFICATIONS', 'Notifications Cc email(s)', 'Notifications Cc email(s)', 'backend'),
(1048, 'SETTINGS_NOTIFICATIONS_EMAIL_CC_NAME', 'PARENT_SETTINGS_NOTIFICATIONS', 'Notifications Cc name(s)', 'Notifications Cc name(s)', 'backend'),
(1049, 'SETTINGS_NOTIFICATIONS_EMAIL_BCC', 'PARENT_SETTINGS_NOTIFICATIONS', 'Notifications Bcc email(s)', 'Notifications Bcc email(s)', 'backend'),
(1050, 'SETTINGS_NOTIFICATIONS_EMAIL_BCC_NAME', 'PARENT_SETTINGS_NOTIFICATIONS', 'Notifications Bcc name(s)', 'Notifications Bcc name(s)', 'backend'),
(1051, 'SETTINGS_NOTIFICATIONS_SEND_TITLE', 'PARENT_SETTINGS_NOTIFICATIONS', 'Enable notifications', 'Enable notifications', 'backend'),
(1052, 'SETTINGS_NOTIFICATIONS_SEND_BOOK_ADMIN', 'PARENT_SETTINGS_NOTIFICATIONS', 'Notify admin on book request', 'Notify admin on book request', 'backend'),
(1053, 'SETTINGS_NOTIFICATIONS_SEND_BOOK_USER', 'PARENT_SETTINGS_NOTIFICATIONS', 'Notify user on book request', 'Notify user on book request', 'backend'),
(1054, 'SETTINGS_NOTIFICATIONS_SEND_BOOK_WITH_APPROVAL_ADMIN', 'PARENT_SETTINGS_NOTIFICATIONS', 'Notify admin on approved book request', 'Notify admin on approved book request', 'backend'),
(1055, 'SETTINGS_NOTIFICATIONS_SEND_BOOK_WITH_APPROVAL_USER', 'PARENT_SETTINGS_NOTIFICATIONS', 'Notify user on approved book request', 'Notify user on approved book request', 'backend'),
(1056, 'SETTINGS_NOTIFICATIONS_SEND_APPROVED', 'PARENT_SETTINGS_NOTIFICATIONS', 'Notify user when reservation is approved', 'Notify user when reservation is approved', 'backend'),
(1057, 'SETTINGS_NOTIFICATIONS_SEND_CANCELED', 'PARENT_SETTINGS_NOTIFICATIONS', 'Notify user when reservation is canceled', 'Notify user when reservation is canceled', 'backend'),
(1058, 'SETTINGS_NOTIFICATIONS_SEND_REJECTED', 'PARENT_SETTINGS_NOTIFICATIONS', 'Notify user when reservation is rejected', 'Notify user when reservation is rejected', 'backend'),
(1059, 'SETTINGS_NOTIFICATIONS_SMTP_TITLE', 'PARENT_SETTINGS_NOTIFICATIONS', 'SMTP settings', 'SMTP settings', 'backend'),
(1060, 'SETTINGS_NOTIFICATIONS_SMTP_SECOND_TITLE', 'PARENT_SETTINGS_NOTIFICATIONS', 'Second SMTP settings', 'Second SMTP settings', 'backend'),
(1061, 'SETTINGS_NOTIFICATIONS_SMTP_HOST_NAME', 'PARENT_SETTINGS_NOTIFICATIONS', 'SMTP host name', 'SMTP host name', 'backend'),
(1062, 'SETTINGS_NOTIFICATIONS_SMTP_HOST_PORT', 'PARENT_SETTINGS_NOTIFICATIONS', 'SMTP host port', 'SMTP host port', 'backend'),
(1063, 'SETTINGS_NOTIFICATIONS_SMTP_SSL', 'PARENT_SETTINGS_NOTIFICATIONS', 'SMTP SSL conection', 'SMTP SSL conection', 'backend'),
(1064, 'SETTINGS_NOTIFICATIONS_SMTP_TLS', 'PARENT_SETTINGS_NOTIFICATIONS', 'SMTP TLS conection', 'SMTP TLS conection', 'backend'),
(1065, 'SETTINGS_NOTIFICATIONS_SMTP_USER', 'PARENT_SETTINGS_NOTIFICATIONS', 'SMTP host user', 'SMTP host user', 'backend'),
(1066, 'SETTINGS_NOTIFICATIONS_SMTP_PASSWORD', 'PARENT_SETTINGS_NOTIFICATIONS', 'SMTP host password', 'SMTP host password', 'backend'),
(1067, 'SETTINGS_NOTIFICATIONS_TEST_TITLE', 'PARENT_SETTINGS_NOTIFICATIONS', 'Test notification methods', 'Test notification methods', 'backend'),
(1068, 'SETTINGS_NOTIFICATIONS_TEST_METHOD', 'PARENT_SETTINGS_NOTIFICATIONS', 'Select notifications method', 'Select notifications method', 'backend'),
(1069, 'SETTINGS_NOTIFICATIONS_TEST_EMAIL', 'PARENT_SETTINGS_NOTIFICATIONS', 'Test email', 'Test email', 'backend'),
(1070, 'SETTINGS_NOTIFICATIONS_TEST_SUBMIT', 'PARENT_SETTINGS_NOTIFICATIONS', 'Send test', 'Send test', 'backend'),
(1071, 'SETTINGS_NOTIFICATIONS_TEST_SENDING', 'PARENT_SETTINGS_NOTIFICATIONS', 'Sending notification test email ...', 'Sending notification test email ...', 'backend'),
(1072, 'SETTINGS_NOTIFICATIONS_TEST_SUCCESS', 'PARENT_SETTINGS_NOTIFICATIONS', 'Notification test email has been sent.', 'Notification test email has been sent.', 'backend'),
(1073, 'SETTINGS_NOTIFICATIONS_TEST_ERROR', 'PARENT_SETTINGS_NOTIFICATIONS', 'Notification test email could not be sent.', 'Notification test email could not be sent.', 'backend'),
(1074, 'SETTINGS_NOTIFICATIONS_TEST_MAIL_SUBJECT', 'PARENT_SETTINGS_NOTIFICATIONS', 'Pinpoint Booking System - PHP mail notification test', 'Pinpoint Booking System - PHP mail notification test', 'backend'),
(1075, 'SETTINGS_NOTIFICATIONS_TEST_MAIL_MESSAGE', 'PARENT_SETTINGS_NOTIFICATIONS', 'Pinpoint Booking System notification test sent with PHP mail function.', 'Pinpoint Booking System notification test sent with PHP mail function.', 'backend'),
(1076, 'SETTINGS_NOTIFICATIONS_TEST_MAILER_SUBJECT', 'PARENT_SETTINGS_NOTIFICATIONS', 'Pinpoint Booking System - PHPMailer notification test', 'Pinpoint Booking System - PHPMailer notification test', 'backend'),
(1077, 'SETTINGS_NOTIFICATIONS_TEST_MAILER_MESSAGE', 'PARENT_SETTINGS_NOTIFICATIONS', 'Pinpoint Booking System notification test sent with PHPMailer class.', 'Pinpoint Booking System notification test sent with PHPMailer class.', 'backend'),
(1078, 'SETTINGS_NOTIFICATIONS_TEST_SMTP_SUBJECT', 'PARENT_SETTINGS_NOTIFICATIONS', 'Pinpoint Booking System - SMTP notification test', 'Pinpoint Booking System - SMTP notification test', 'backend'),
(1079, 'SETTINGS_NOTIFICATIONS_TEST_SMTP_MESSAGE', 'PARENT_SETTINGS_NOTIFICATIONS', 'Pinpoint Booking System notification test sent with PHPMailer SMTP.', 'Pinpoint Booking System notification test sent with PHPMailer SMTP.', 'backend'),
(1080, 'SETTINGS_NOTIFICATIONS_TEST_SMTP2_SUBJECT', 'PARENT_SETTINGS_NOTIFICATIONS', 'Pinpoint Booking System - Second SMTP notification test', 'Pinpoint Booking System - Second SMTP notification test', 'backend'),
(1081, 'SETTINGS_NOTIFICATIONS_TEST_SMTP2_MESSAGE', 'PARENT_SETTINGS_NOTIFICATIONS', 'Pinpoint Booking System notification test sent with second SMTP.', 'Pinpoint Booking System notification test sent with second SMTP.', 'backend'),
(1082, 'SETTINGS_NOTIFICATIONS_TEST_WP_SUBJECT', 'PARENT_SETTINGS_NOTIFICATIONS', 'Pinpoint Booking System - WordPress mail notification test', 'Pinpoint Booking System - WordPress mail notification test', 'backend'),
(1083, 'SETTINGS_NOTIFICATIONS_TEST_WP_MESSAGE', 'PARENT_SETTINGS_NOTIFICATIONS', 'Pinpoint Booking System notification test sent with WordPress mail function.', 'Pinpoint Booking System notification test sent with WordPress mail function.', 'backend'),
(1084, 'PARENT_SETTINGS_NOTIFICATIONS_HELP', '', 'Settings - Notifications - Help', 'Settings - Notifications - Help', 'backend'),
(1085, 'SETTINGS_NOTIFICATIONS_TEMPLATES_HELP', 'PARENT_SETTINGS_NOTIFICATIONS_HELP', 'Select email templates.', 'Select email templates.', 'backend'),
(1086, 'SETTINGS_NOTIFICATIONS_METHOD_ADMIN_HELP', 'PARENT_SETTINGS_NOTIFICATIONS', 'Select notifications method used to send emails to admins. You can use PHP mail function, PHPMailer class, SMTP, second SMTP or WordPress wp_mail function.', 'Select notifications method used to send emails to admins. You can use PHP mail function, PHPMailer class, SMTP, second SMTP or WordPress wp_mail function.', 'backend'),
(1087, 'SETTINGS_NOTIFICATIONS_METHOD_USER_HELP', 'PARENT_SETTINGS_NOTIFICATIONS', 'Select notifications method used to send emails to users. You can use PHP mail function, PHPMailer class, SMTP, second SMTP or WordPress wp_mail function.', 'Select notifications method used to send emails to users. You can use PHP mail function, PHPMailer class, SMTP, second SMTP or WordPress wp_mail function.', 'backend');
INSERT INTO `wp_dopbsp_translation_en` (`id`, `key_data`, `parent_key`, `text_data`, `translation`, `location`) VALUES
(1088, 'SETTINGS_NOTIFICATIONS_EMAIL_HELP', 'PARENT_SETTINGS_NOTIFICATIONS_HELP', 'Enter the email were you will be notified about booking requests or you will use to notify users. Enter other emails that will be notified in Cc & Bcc fields.', 'Enter the email were you will be notified about booking requests or you will use to notify users. Enter other emails that will be notified in Cc & Bcc fields.', 'backend'),
(1089, 'SETTINGS_NOTIFICATIONS_EMAIL_REPLY_HELP', 'PARENT_SETTINGS_NOTIFICATIONS_HELP', 'Enter the reply email that will appear in the email the user will receive.', 'Enter the reply email that will appear in the email the user will receive.', 'backend'),
(1090, 'SETTINGS_NOTIFICATIONS_EMAIL_NAME_HELP', 'PARENT_SETTINGS_NOTIFICATIONS_HELP', 'Enter the name that will appear in the email the user will receive.', 'Enter the name that will appear in the email the user will receive.', 'backend'),
(1091, 'SETTINGS_NOTIFICATIONS_EMAIL_CC_HELP', 'PARENT_SETTINGS_NOTIFICATIONS_HELP', 'Enter the email(s) for Cc field, were others be notified about booking requests or they will use to notify users. Add an email per line.', 'Enter the email(s) for Cc field, were others be notified about booking requests or they will use to notify users. Add an email per line.', 'backend'),
(1092, 'SETTINGS_NOTIFICATIONS_EMAIL_CC_NAME_HELP', 'PARENT_SETTINGS_NOTIFICATIONS_HELP', 'Enter the name(s) for Cc field, equivalent to Cc email(s). Add a name per line, like emails.', 'Enter the name(s) for Cc field, equivalent to Cc email(s). Add a name per line, like emails.', 'backend'),
(1093, 'SETTINGS_NOTIFICATIONS_EMAIL_BCC_HELP', 'PARENT_SETTINGS_NOTIFICATIONS_HELP', 'Enter the email(s) for Bcc field, were others be notified about booking requests or they will use to notify users. Add an email per line.', 'Enter the email(s) for Bcc field, were others be notified about booking requests or they will use to notify users. Add an email per line.', 'backend'),
(1094, 'SETTINGS_NOTIFICATIONS_EMAIL_BCC_NAME_HELP', 'PARENT_SETTINGS_NOTIFICATIONS_HELP', 'Enter the name(s) for Bcc field, equivalent to Bcc email(s). Add a name per line, like emails.', 'Enter the name(s) for Bcc field, equivalent to Bcc email(s). Add a name per line, like emails.', 'backend'),
(1095, 'SETTINGS_NOTIFICATIONS_SEND_BOOK_ADMIN_HELP', 'PARENT_SETTINGS_NOTIFICATIONS_HELP', 'Enable to send an email notification to admin on book request.', 'Enable to send an email notification to admin on book request.', 'backend'),
(1096, 'SETTINGS_NOTIFICATIONS_SEND_BOOK_USER_HELP', 'PARENT_SETTINGS_NOTIFICATIONS_HELP', 'Enable to send an email notification to user on book request.', 'Enable to send an email notification to user on book request.', 'backend'),
(1097, 'SETTINGS_NOTIFICATIONS_SEND_BOOK_WITH_APPROVAL_ADMIN_HELP', 'PARENT_SETTINGS_NOTIFICATIONS_HELP', 'Enable to send an email notification to admin on book request and reservation is approved.', 'Enable to send an email notification to admin on book request and reservation is approved.', 'backend'),
(1098, 'SETTINGS_NOTIFICATIONS_SEND_BOOK_WITH_APPROVAL_USER_HELP', 'PARENT_SETTINGS_NOTIFICATIONS_HELP', 'Enable to send an email notification to user on book request and reservation is approved.', 'Enable to send an email notification to user on book request and reservation is approved.', 'backend'),
(1099, 'SETTINGS_NOTIFICATIONS_SEND_APPROVED_HELP', 'PARENT_SETTINGS_NOTIFICATIONS_HELP', 'Enable to send an email notification to user when reservation is approved.', 'Enable to send an email notification to user when reservation is approved.', 'backend'),
(1100, 'SETTINGS_NOTIFICATIONS_SEND_CANCELED_HELP', 'PARENT_SETTINGS_NOTIFICATIONS_HELP', 'Enable to send an email notification to user when reservation is canceled.', 'Enable to send an email notification to user when reservation is canceled.', 'backend'),
(1101, 'SETTINGS_NOTIFICATIONS_SEND_REJECTED_HELP', 'PARENT_SETTINGS_NOTIFICATIONS_HELP', 'Enable to send an email notification to user when reservation is rejected.', 'Enable to send an email notification to user when reservation is rejected.', 'backend'),
(1102, 'SETTINGS_NOTIFICATIONS_SMTP_HOST_NAME_HELP', 'PARENT_SETTINGS_NOTIFICATIONS_HELP', 'Enter SMTP host name.', 'Enter SMTP host name.', 'backend'),
(1103, 'SETTINGS_NOTIFICATIONS_SMTP_HOST_PORT_HELP', 'PARENT_SETTINGS_NOTIFICATIONS_HELP', 'Enter SMTP host port.', 'Enter SMTP host port.', 'backend'),
(1104, 'SETTINGS_NOTIFICATIONS_SMTP_SSL_HELP', 'PARENT_SETTINGS_NOTIFICATIONS_HELP', 'Use a  SSL conection.', 'Use a  SSL conection.', 'backend'),
(1105, 'SETTINGS_NOTIFICATIONS_SMTP_TLS_HELP', 'PARENT_SETTINGS_NOTIFICATIONS_HELP', 'Use a TLS conection.', 'Use a TLS conection.', 'backend'),
(1106, 'SETTINGS_NOTIFICATIONS_SMTP_USER_HELP', 'PARENT_SETTINGS_NOTIFICATIONS_HELP', 'Enter SMTP host username.', 'Enter SMTP host username.', 'backend'),
(1107, 'SETTINGS_NOTIFICATIONS_SMTP_PASSWORD_HELP', 'PARENT_SETTINGS_NOTIFICATIONS_HELP', 'Enter SMTP host password.', 'Enter SMTP host password.', 'backend'),
(1108, 'SETTINGS_NOTIFICATIONS_TEST_METHOD_HELP', 'PARENT_SETTINGS_NOTIFICATIONS', 'Select the notifications method for which the test will be performed.', 'Select the notifications method for which the test will be performed.', 'backend'),
(1109, 'SETTINGS_NOTIFICATIONS_TEST_EMAIL_HELP', 'PARENT_SETTINGS_NOTIFICATIONS', 'Enter the email to which the test notification will be sent.', 'Enter the email to which the test notification will be sent.', 'backend'),
(1110, 'PARENT_SETTINGS_PAYMENT_GATEWAYS', '', 'Settings - Payment gateways', 'Settings - Payment gateways', 'backend'),
(1111, 'SETTINGS_PAYMENT_GATEWAYS_TITLE', 'PARENT_SETTINGS_PAYMENT_GATEWAYS', 'Payment gateways', 'Payment gateways', 'backend'),
(1112, 'SETTINGS_PAYMENT_GATEWAYS_PAYMENT_ARRIVAL_ENABLED', 'PARENT_SETTINGS_PAYMENT_GATEWAYS', 'Enable payment on arrival', 'Enable payment on arrival', 'backend'),
(1113, 'SETTINGS_PAYMENT_GATEWAYS_PAYMENT_ARRIVAL_WITH_APPROVAL_ENABLED', 'PARENT_SETTINGS_PAYMENT_GATEWAYS', 'Enable instant approval', 'Enable instant approval', 'backend'),
(1114, 'SETTINGS_PAYMENT_GATEWAYS_PAYMENT_REDIRECT', 'PARENT_SETTINGS_PAYMENT_GATEWAYS', 'Redirect after book', 'Redirect after book', 'backend'),
(1115, 'SETTINGS_PAYMENT_GATEWAYS_ADDRESS_BILLING', 'PARENT_SETTINGS_PAYMENT_GATEWAYS', 'Billing address', 'Billing address', 'backend'),
(1116, 'SETTINGS_PAYMENT_GATEWAYS_ADDRESS_BILLING_ENABLED', 'PARENT_SETTINGS_PAYMENT_GATEWAYS', 'Enable billing address', 'Enable billing address', 'backend'),
(1117, 'SETTINGS_PAYMENT_GATEWAYS_ADDRESS_BILLING_FIRST_NAME_ENABLED', 'PARENT_SETTINGS_PAYMENT_GATEWAYS', 'First name (enable)', 'First name (enable)', 'backend'),
(1118, 'SETTINGS_PAYMENT_GATEWAYS_ADDRESS_BILLING_FIRST_NAME_REQUIRED', 'PARENT_SETTINGS_PAYMENT_GATEWAYS', 'First name (required)', 'First name (required)', 'backend'),
(1119, 'SETTINGS_PAYMENT_GATEWAYS_ADDRESS_BILLING_LAST_NAME_ENABLED', 'PARENT_SETTINGS_PAYMENT_GATEWAYS', 'Last name (enable)', 'Last name (enable)', 'backend'),
(1120, 'SETTINGS_PAYMENT_GATEWAYS_ADDRESS_BILLING_LAST_NAME_REQUIRED', 'PARENT_SETTINGS_PAYMENT_GATEWAYS', 'Last name (required)', 'Last name (required)', 'backend'),
(1121, 'SETTINGS_PAYMENT_GATEWAYS_ADDRESS_BILLING_COMPANY_ENABLED', 'PARENT_SETTINGS_PAYMENT_GATEWAYS', 'Company (enable)', 'Company (enable)', 'backend'),
(1122, 'SETTINGS_PAYMENT_GATEWAYS_ADDRESS_BILLING_COMPANY_REQUIRED', 'PARENT_SETTINGS_PAYMENT_GATEWAYS', 'Company (required)', 'Company (required)', 'backend'),
(1123, 'SETTINGS_PAYMENT_GATEWAYS_ADDRESS_BILLING_EMAIL_ENABLED', 'PARENT_SETTINGS_PAYMENT_GATEWAYS', 'Email (enable)', 'Email (enable)', 'backend'),
(1124, 'SETTINGS_PAYMENT_GATEWAYS_ADDRESS_BILLING_EMAIL_REQUIRED', 'PARENT_SETTINGS_PAYMENT_GATEWAYS', 'Email (required)', 'Email (required)', 'backend'),
(1125, 'SETTINGS_PAYMENT_GATEWAYS_ADDRESS_BILLING_PHONE_ENABLED', 'PARENT_SETTINGS_PAYMENT_GATEWAYS', 'Phone number (enable)', 'Phone number (enable)', 'backend'),
(1126, 'SETTINGS_PAYMENT_GATEWAYS_ADDRESS_BILLING_PHONE_REQUIRED', 'PARENT_SETTINGS_PAYMENT_GATEWAYS', 'Phone number (required)', 'Phone number (required)', 'backend'),
(1127, 'SETTINGS_PAYMENT_GATEWAYS_ADDRESS_BILLING_COUNTRY_ENABLED', 'PARENT_SETTINGS_PAYMENT_GATEWAYS', 'Country (enable)', 'Country (enable)', 'backend'),
(1128, 'SETTINGS_PAYMENT_GATEWAYS_ADDRESS_BILLING_COUNTRY_REQUIRED', 'PARENT_SETTINGS_PAYMENT_GATEWAYS', 'Country (required)', 'Country (required)', 'backend'),
(1129, 'SETTINGS_PAYMENT_GATEWAYS_ADDRESS_BILLING_ADDRESS_FIRST_ENABLED', 'PARENT_SETTINGS_PAYMENT_GATEWAYS', 'Address line 1 (enable)', 'Address line 1 (enable)', 'backend'),
(1130, 'SETTINGS_PAYMENT_GATEWAYS_ADDRESS_BILLING_ADDRESS_FIRST_REQUIRED', 'PARENT_SETTINGS_PAYMENT_GATEWAYS', 'Address line 1 (required)', 'Address line 1 (required)', 'backend'),
(1131, 'SETTINGS_PAYMENT_GATEWAYS_ADDRESS_BILLING_ADDRESS_SECOND_ENABLED', 'PARENT_SETTINGS_PAYMENT_GATEWAYS', 'Address line 2 (enable)', 'Address line 2 (enable)', 'backend'),
(1132, 'SETTINGS_PAYMENT_GATEWAYS_ADDRESS_BILLING_ADDRESS_SECOND_REQUIRED', 'PARENT_SETTINGS_PAYMENT_GATEWAYS', 'Address line 2 (required)', 'Address line 2 (required)', 'backend'),
(1133, 'SETTINGS_PAYMENT_GATEWAYS_ADDRESS_BILLING_CITY_ENABLED', 'PARENT_SETTINGS_PAYMENT_GATEWAYS', 'City (enable)', 'City (enable)', 'backend'),
(1134, 'SETTINGS_PAYMENT_GATEWAYS_ADDRESS_BILLING_CITY_REQUIRED', 'PARENT_SETTINGS_PAYMENT_GATEWAYS', 'City (required)', 'City (required)', 'backend'),
(1135, 'SETTINGS_PAYMENT_GATEWAYS_ADDRESS_BILLING_STATE_ENABLED', 'PARENT_SETTINGS_PAYMENT_GATEWAYS', 'State (enable)', 'State (enable)', 'backend'),
(1136, 'SETTINGS_PAYMENT_GATEWAYS_ADDRESS_BILLING_STATE_REQUIRED', 'PARENT_SETTINGS_PAYMENT_GATEWAYS', 'State (required)', 'State (required)', 'backend'),
(1137, 'SETTINGS_PAYMENT_GATEWAYS_ADDRESS_BILLING_ZIP_CODE_ENABLED', 'PARENT_SETTINGS_PAYMENT_GATEWAYS', 'Zip code (enable)', 'Zip code (enable)', 'backend'),
(1138, 'SETTINGS_PAYMENT_GATEWAYS_ADDRESS_BILLING_ZIP_CODE_REQUIRED', 'PARENT_SETTINGS_PAYMENT_GATEWAYS', 'Zip code (required)', 'Zip code (required)', 'backend'),
(1139, 'SETTINGS_PAYMENT_GATEWAYS_ADDRESS_SHIPPING', 'PARENT_SETTINGS_PAYMENT_GATEWAYS', 'Shipping address', 'Shipping address', 'backend'),
(1140, 'SETTINGS_PAYMENT_GATEWAYS_ADDRESS_SHIPPING_ENABLED', 'PARENT_SETTINGS_PAYMENT_GATEWAYS', 'Enable shipping address', 'Enable shipping address', 'backend'),
(1141, 'SETTINGS_PAYMENT_GATEWAYS_ADDRESS_SHIPPING_FIRST_NAME_ENABLED', 'PARENT_SETTINGS_PAYMENT_GATEWAYS', 'First name (enable)', 'First name (enable)', 'backend'),
(1142, 'SETTINGS_PAYMENT_GATEWAYS_ADDRESS_SHIPPING_FIRST_NAME_REQUIRED', 'PARENT_SETTINGS_PAYMENT_GATEWAYS', 'First name (required)', 'First name (required)', 'backend'),
(1143, 'SETTINGS_PAYMENT_GATEWAYS_ADDRESS_SHIPPING_LAST_NAME_ENABLED', 'PARENT_SETTINGS_PAYMENT_GATEWAYS', 'Last name (enable)', 'Last name (enable)', 'backend'),
(1144, 'SETTINGS_PAYMENT_GATEWAYS_ADDRESS_SHIPPING_LAST_NAME_REQUIRED', 'PARENT_SETTINGS_PAYMENT_GATEWAYS', 'Last name (required)', 'Last name (required)', 'backend'),
(1145, 'SETTINGS_PAYMENT_GATEWAYS_ADDRESS_SHIPPING_COMPANY_ENABLED', 'PARENT_SETTINGS_PAYMENT_GATEWAYS', 'Company (enable)', 'Company (enable)', 'backend'),
(1146, 'SETTINGS_PAYMENT_GATEWAYS_ADDRESS_SHIPPING_COMPANY_REQUIRED', 'PARENT_SETTINGS_PAYMENT_GATEWAYS', 'Company (required)', 'Company (required)', 'backend'),
(1147, 'SETTINGS_PAYMENT_GATEWAYS_ADDRESS_SHIPPING_EMAIL_ENABLED', 'PARENT_SETTINGS_PAYMENT_GATEWAYS', 'Email (enable)', 'Email (enable)', 'backend'),
(1148, 'SETTINGS_PAYMENT_GATEWAYS_ADDRESS_SHIPPING_EMAIL_REQUIRED', 'PARENT_SETTINGS_PAYMENT_GATEWAYS', 'Email (required)', 'Email (required)', 'backend'),
(1149, 'SETTINGS_PAYMENT_GATEWAYS_ADDRESS_SHIPPING_PHONE_ENABLED', 'PARENT_SETTINGS_PAYMENT_GATEWAYS', 'Phone number (enable)', 'Phone number (enable)', 'backend'),
(1150, 'SETTINGS_PAYMENT_GATEWAYS_ADDRESS_SHIPPING_PHONE_REQUIRED', 'PARENT_SETTINGS_PAYMENT_GATEWAYS', 'Phone number (required)', 'Phone number (required)', 'backend'),
(1151, 'SETTINGS_PAYMENT_GATEWAYS_ADDRESS_SHIPPING_COUNTRY_ENABLED', 'PARENT_SETTINGS_PAYMENT_GATEWAYS', 'Country (enable)', 'Country (enable)', 'backend'),
(1152, 'SETTINGS_PAYMENT_GATEWAYS_ADDRESS_SHIPPING_COUNTRY_REQUIRED', 'PARENT_SETTINGS_PAYMENT_GATEWAYS', 'Country (required)', 'Country (required)', 'backend'),
(1153, 'SETTINGS_PAYMENT_GATEWAYS_ADDRESS_SHIPPING_ADDRESS_FIRST_ENABLED', 'PARENT_SETTINGS_PAYMENT_GATEWAYS', 'Address line 1 (enable)', 'Address line 1 (enable)', 'backend'),
(1154, 'SETTINGS_PAYMENT_GATEWAYS_ADDRESS_SHIPPING_ADDRESS_FIRST_REQUIRED', 'PARENT_SETTINGS_PAYMENT_GATEWAYS', 'Address line 1 (required)', 'Address line 1 (required)', 'backend'),
(1155, 'SETTINGS_PAYMENT_GATEWAYS_ADDRESS_SHIPPING_ADDRESS_SECOND_ENABLED', 'PARENT_SETTINGS_PAYMENT_GATEWAYS', 'Address line 2 (enable)', 'Address line 2 (enable)', 'backend'),
(1156, 'SETTINGS_PAYMENT_GATEWAYS_ADDRESS_SHIPPING_ADDRESS_SECOND_REQUIRED', 'PARENT_SETTINGS_PAYMENT_GATEWAYS', 'Address line 2 (required)', 'Address line 2 (required)', 'backend'),
(1157, 'SETTINGS_PAYMENT_GATEWAYS_ADDRESS_SHIPPING_CITY_ENABLED', 'PARENT_SETTINGS_PAYMENT_GATEWAYS', 'City (enable)', 'City (enable)', 'backend'),
(1158, 'SETTINGS_PAYMENT_GATEWAYS_ADDRESS_SHIPPING_CITY_REQUIRED', 'PARENT_SETTINGS_PAYMENT_GATEWAYS', 'City (required)', 'City (required)', 'backend'),
(1159, 'SETTINGS_PAYMENT_GATEWAYS_ADDRESS_SHIPPING_STATE_ENABLED', 'PARENT_SETTINGS_PAYMENT_GATEWAYS', 'State (enable)', 'State (enable)', 'backend'),
(1160, 'SETTINGS_PAYMENT_GATEWAYS_ADDRESS_SHIPPING_STATE_REQUIRED', 'PARENT_SETTINGS_PAYMENT_GATEWAYS', 'State (required)', 'State (required)', 'backend'),
(1161, 'SETTINGS_PAYMENT_GATEWAYS_ADDRESS_SHIPPING_ZIP_CODE_ENABLED', 'PARENT_SETTINGS_PAYMENT_GATEWAYS', 'Zip code (enable)', 'Zip code (enable)', 'backend'),
(1162, 'SETTINGS_PAYMENT_GATEWAYS_ADDRESS_SHIPPING_ZIP_CODE_REQUIRED', 'PARENT_SETTINGS_PAYMENT_GATEWAYS', 'Zip code (required)', 'Zip code (required)', 'backend'),
(1163, 'PARENT_SETTINGS_PAYMENT_GATEWAYS_HELP', '', 'Settings - Payment gateways - Help', 'Settings - Payment gateways - Help', 'backend'),
(1164, 'SETTINGS_PAYMENT_GATEWAYS_PAYMENT_ARRIVAL_ENABLED_HELP', 'PARENT_SETTINGS_PAYMENT_GATEWAYS_HELP', 'Default value: Enabled. Allow user to pay on arrival. Need approval.', 'Default value: Enabled. Allow user to pay on arrival. Need approval.', 'backend'),
(1165, 'SETTINGS_PAYMENT_GATEWAYS_PAYMENT_ARRIVAL_WITH_APPROVAL_ENABLED_HELP', 'PARENT_SETTINGS_PAYMENT_GATEWAYS_HELP', 'Default value: Disabled. Instantly approve the reservation once the request to pay on arrival has been submitted.', 'Default value: Disabled. Instantly approve the reservation once the request to pay on arrival has been submitted.', 'backend'),
(1166, 'SETTINGS_PAYMENT_GATEWAYS_PAYMENT_REDIRECT_HELP', 'PARENT_SETTINGS_PAYMENT_GATEWAYS_HELP', 'Enter the URL where to redirect after the booking request has been sent. Leave it blank to not redirect.', 'Enter the URL where to redirect after the booking request has been sent. Leave it blank to not redirect.', 'backend'),
(1167, 'SETTINGS_PAYMENT_GATEWAYS_ADDRESS_BILLING_ENABLED_HELP', 'PARENT_SETTINGS_PAYMENT_GATEWAYS_HELP', 'Default value: Disabled. Enable it if you want the billing address form to be visible.', 'Default value: Disabled. Enable it if you want the billing address form to be visible.', 'backend'),
(1168, 'SETTINGS_PAYMENT_GATEWAYS_ADDRESS_BILLING_FIRST_NAME_ENABLED_HELP', 'PARENT_SETTINGS_PAYMENT_GATEWAYS_HELP', 'Default value: Enabled. Enable it if you want the \"First name\" field to be visible in billing address form.', 'Default value: Enabled. Enable it if you want the \"First name\" field to be visible in billing address form.', 'backend'),
(1169, 'SETTINGS_PAYMENT_GATEWAYS_ADDRESS_BILLING_FIRST_NAME_REQUIRED_HELP', 'PARENT_SETTINGS_PAYMENT_GATEWAYS_HELP', 'Default value: Enabled. Enable it if you want the \"First name\" field to be mandatory in billing address form.', 'Default value: Enabled. Enable it if you want the \"First name\" field to be mandatory in billing address form.', 'backend'),
(1170, 'SETTINGS_PAYMENT_GATEWAYS_ADDRESS_BILLING_LAST_NAME_ENABLED_HELP', 'PARENT_SETTINGS_PAYMENT_GATEWAYS_HELP', 'Default value: Enabled. Enable it if you want the \"Last name\" field to be visible in billing address form.', 'Default value: Enabled. Enable it if you want the \"Last name\" field to be visible in billing address form.', 'backend'),
(1171, 'SETTINGS_PAYMENT_GATEWAYS_ADDRESS_BILLING_LAST_NAME_REQUIRED_HELP', 'PARENT_SETTINGS_PAYMENT_GATEWAYS_HELP', 'Default value: Enabled. Enable it if you want the \"Last name\" field to be mandatory in billing address form.', 'Default value: Enabled. Enable it if you want the \"Last name\" field to be mandatory in billing address form.', 'backend'),
(1172, 'SETTINGS_PAYMENT_GATEWAYS_ADDRESS_BILLING_COMPANY_ENABLED_HELP', 'PARENT_SETTINGS_PAYMENT_GATEWAYS_HELP', 'Default value: Enabled. Enable it if you want the \"Company\" field to be visible in billing address form.', 'Default value: Enabled. Enable it if you want the \"Company\" field to be visible in billing address form.', 'backend'),
(1173, 'SETTINGS_PAYMENT_GATEWAYS_ADDRESS_BILLING_COMPANY_REQUIRED_HELP', 'PARENT_SETTINGS_PAYMENT_GATEWAYS_HELP', 'Default value: Disabled. Enable it if you want the \"Company\" field to be mandatory in billing address form.', 'Default value: Disabled. Enable it if you want the \"Company\" field to be mandatory in billing address form.', 'backend'),
(1174, 'SETTINGS_PAYMENT_GATEWAYS_ADDRESS_BILLING_EMAIL_ENABLED_HELP', 'PARENT_SETTINGS_PAYMENT_GATEWAYS_HELP', 'Default value: Enabled. Enable it if you want the \"Email\" field to be visible in billing address form.', 'Default value: Enabled. Enable it if you want the \"Email\" field to be visible in billing address form.', 'backend'),
(1175, 'SETTINGS_PAYMENT_GATEWAYS_ADDRESS_BILLING_EMAIL_REQUIRED_HELP', 'PARENT_SETTINGS_PAYMENT_GATEWAYS_HELP', 'Default value: Enabled. Enable it if you want the \"Email\" field to be mandatory in billing address form.', 'Default value: Enabled. Enable it if you want the \"Email\" field to be mandatory in billing address form.', 'backend'),
(1176, 'SETTINGS_PAYMENT_GATEWAYS_ADDRESS_BILLING_PHONE_ENABLED_HELP', 'PARENT_SETTINGS_PAYMENT_GATEWAYS_HELP', 'Default value: Enabled. Enable it if you want the \"Phone number\" field to be visible in billing address form.', 'Default value: Enabled. Enable it if you want the \"Phone number\" field to be visible in billing address form.', 'backend'),
(1177, 'SETTINGS_PAYMENT_GATEWAYS_ADDRESS_BILLING_PHONE_REQUIRED_HELP', 'PARENT_SETTINGS_PAYMENT_GATEWAYS_HELP', 'Default value: Enabled. Enable it if you want the \"Phone number\" field to be mandatory in billing address form.', 'Default value: Enabled. Enable it if you want the \"Phone number\" field to be mandatory in billing address form.', 'backend'),
(1178, 'SETTINGS_PAYMENT_GATEWAYS_ADDRESS_BILLING_COUNTRY_ENABLED_HELP', 'PARENT_SETTINGS_PAYMENT_GATEWAYS_HELP', 'Default value: Enabled. Enable it if you want the \"Country\" field to be visible in billing address form.', 'Default value: Enabled. Enable it if you want the \"Country\" field to be visible in billing address form.', 'backend'),
(1179, 'SETTINGS_PAYMENT_GATEWAYS_ADDRESS_BILLING_COUNTRY_REQUIRED_HELP', 'PARENT_SETTINGS_PAYMENT_GATEWAYS_HELP', 'Default value: Enabled. Enable it if you want the \"Country\" field to be mandatory in billing address form.', 'Default value: Enabled. Enable it if you want the \"Country\" field to be mandatory in billing address form.', 'backend'),
(1180, 'SETTINGS_PAYMENT_GATEWAYS_ADDRESS_BILLING_ADDRESS_FIRST_ENABLED_HELP', 'PARENT_SETTINGS_PAYMENT_GATEWAYS_HELP', 'Default value: Enabled. Enable it if you want the \"Address line 1\" field to be visible in billing address form.', 'Default value: Enabled. Enable it if you want the \"Address line 1\" field to be visible in billing address form.', 'backend'),
(1181, 'SETTINGS_PAYMENT_GATEWAYS_ADDRESS_BILLING_ADDRESS_FIRST_REQUIRED_HELP', 'PARENT_SETTINGS_PAYMENT_GATEWAYS_HELP', 'Default value: Enabled. Enable it if you want the \"Address line 1\" field to be mandatory in billing address form.', 'Default value: Enabled. Enable it if you want the \"Address line 1\" field to be mandatory in billing address form.', 'backend'),
(1182, 'SETTINGS_PAYMENT_GATEWAYS_ADDRESS_BILLING_ADDRESS_SECOND_ENABLED_HELP', 'PARENT_SETTINGS_PAYMENT_GATEWAYS_HELP', 'Default value: Enabled. Enable it if you want the \"Address line 2\" field to be visible in billing address form.', 'Default value: Enabled. Enable it if you want the \"Address line 2\" field to be visible in billing address form.', 'backend'),
(1183, 'SETTINGS_PAYMENT_GATEWAYS_ADDRESS_BILLING_ADDRESS_SECOND_REQUIRED_HELP', 'PARENT_SETTINGS_PAYMENT_GATEWAYS_HELP', 'Default value: Disabled. Enable it if you want the \"Address line 2\" field to be mandatory in billing address form.', 'Default value: Disabled. Enable it if you want the \"Address line 2\" field to be mandatory in billing address form.', 'backend'),
(1184, 'SETTINGS_PAYMENT_GATEWAYS_ADDRESS_BILLING_CITY_ENABLED_HELP', 'PARENT_SETTINGS_PAYMENT_GATEWAYS_HELP', 'Default value: Enabled. Enable it if you want the \"City\" field to be visible in billing address form.', 'Default value: Enabled. Enable it if you want the \"City\" field to be visible in billing address form.', 'backend'),
(1185, 'SETTINGS_PAYMENT_GATEWAYS_ADDRESS_BILLING_CITY_REQUIRED_HELP', 'PARENT_SETTINGS_PAYMENT_GATEWAYS_HELP', 'Default value: Enabled. Enable it if you want the \"City\" field to be mandatory in billing address form.', 'Default value: Enabled. Enable it if you want the \"City\" field to be mandatory in billing address form.', 'backend'),
(1186, 'SETTINGS_PAYMENT_GATEWAYS_ADDRESS_BILLING_STATE_ENABLED_HELP', 'PARENT_SETTINGS_PAYMENT_GATEWAYS_HELP', 'Default value: Enabled. Enable it if you want the \"State\" field to be visible in billing address form.', 'Default value: Enabled. Enable it if you want the \"State\" field to be visible in billing address form.', 'backend'),
(1187, 'SETTINGS_PAYMENT_GATEWAYS_ADDRESS_BILLING_STATE_REQUIRED_HELP', 'PARENT_SETTINGS_PAYMENT_GATEWAYS_HELP', 'Default value: Enabled. Enable it if you want the \"State\" field to be mandatory in billing address form.', 'Default value: Enabled. Enable it if you want the \"State\" field to be mandatory in billing address form.', 'backend'),
(1188, 'SETTINGS_PAYMENT_GATEWAYS_ADDRESS_BILLING_ZIP_CODE_ENABLED_HELP', 'PARENT_SETTINGS_PAYMENT_GATEWAYS_HELP', 'Default value: Enabled. Enable it if you want the \"Zip code\" field to be visible in billing address form.', 'Default value: Enabled. Enable it if you want the \"Zip code\" field to be visible in billing address form.', 'backend'),
(1189, 'SETTINGS_PAYMENT_GATEWAYS_ADDRESS_BILLING_ZIP_CODE_REQUIRED_HELP', 'PARENT_SETTINGS_PAYMENT_GATEWAYS_HELP', 'Default value: Enabled. Enable it if you want the \"Zip code\" field to be mandatory in billing address form.', 'Default value: Enabled. Enable it if you want the \"Zip code\" field to be mandatory in billing address form.', 'backend'),
(1190, 'SETTINGS_PAYMENT_GATEWAYS_ADDRESS_SHIPPING_ENABLED_HELP', 'PARENT_SETTINGS_PAYMENT_GATEWAYS_HELP', 'Default value: Disabled. Enable it if you want the shipping address form to be visible.', 'Default value: Disabled. Enable it if you want the shipping address form to be visible.', 'backend'),
(1191, 'SETTINGS_PAYMENT_GATEWAYS_ADDRESS_SHIPPING_FIRST_NAME_ENABLED_HELP', 'PARENT_SETTINGS_PAYMENT_GATEWAYS_HELP', 'Default value: Enabled. Enable it if you want the \"First name\" field to be visible in shipping address form.', 'Default value: Enabled. Enable it if you want the \"First name\" field to be visible in shipping address form.', 'backend'),
(1192, 'SETTINGS_PAYMENT_GATEWAYS_ADDRESS_SHIPPING_FIRST_NAME_REQUIRED_HELP', 'PARENT_SETTINGS_PAYMENT_GATEWAYS_HELP', 'Default value: Enabled. Enable it if you want the \"First name\" field to be mandatory in shipping address form.', 'Default value: Enabled. Enable it if you want the \"First name\" field to be mandatory in shipping address form.', 'backend'),
(1193, 'SETTINGS_PAYMENT_GATEWAYS_ADDRESS_SHIPPING_LAST_NAME_ENABLED_HELP', 'PARENT_SETTINGS_PAYMENT_GATEWAYS_HELP', 'Default value: Enabled. Enable it if you want the \"Last name\" field to be visible in shipping address form.', 'Default value: Enabled. Enable it if you want the \"Last name\" field to be visible in shipping address form.', 'backend'),
(1194, 'SETTINGS_PAYMENT_GATEWAYS_ADDRESS_SHIPPING_LAST_NAME_REQUIRED_HELP', 'PARENT_SETTINGS_PAYMENT_GATEWAYS_HELP', 'Default value: Enabled. Enable it if you want the \"Last name\" field to be mandatory in shipping address form.', 'Default value: Enabled. Enable it if you want the \"Last name\" field to be mandatory in shipping address form.', 'backend'),
(1195, 'SETTINGS_PAYMENT_GATEWAYS_ADDRESS_SHIPPING_COMPANY_ENABLED_HELP', 'PARENT_SETTINGS_PAYMENT_GATEWAYS_HELP', 'Default value: Enabled. Enable it if you want the \"Company\" field to be visible in shipping address form.', 'Default value: Enabled. Enable it if you want the \"Company\" field to be visible in shipping address form.', 'backend'),
(1196, 'SETTINGS_PAYMENT_GATEWAYS_ADDRESS_SHIPPING_COMPANY_REQUIRED_HELP', 'PARENT_SETTINGS_PAYMENT_GATEWAYS_HELP', 'Default value: Disabled. Enable it if you want the \"Company\" field to be mandatory in shipping address form.', 'Default value: Disabled. Enable it if you want the \"Company\" field to be mandatory in shipping address form.', 'backend'),
(1197, 'SETTINGS_PAYMENT_GATEWAYS_ADDRESS_SHIPPING_EMAIL_ENABLED_HELP', 'PARENT_SETTINGS_PAYMENT_GATEWAYS_HELP', 'Default value: Enabled. Enable it if you want the \"Email\" field to be visible in shipping address form.', 'Default value: Enabled. Enable it if you want the \"Email\" field to be visible in shipping address form.', 'backend'),
(1198, 'SETTINGS_PAYMENT_GATEWAYS_ADDRESS_SHIPPING_EMAIL_REQUIRED_HELP', 'PARENT_SETTINGS_PAYMENT_GATEWAYS_HELP', 'Default value: Enabled. Enable it if you want the \"Email\" field to be mandatory in shipping address form.', 'Default value: Enabled. Enable it if you want the \"Email\" field to be mandatory in shipping address form.', 'backend'),
(1199, 'SETTINGS_PAYMENT_GATEWAYS_ADDRESS_SHIPPING_PHONE_ENABLED_HELP', 'PARENT_SETTINGS_PAYMENT_GATEWAYS_HELP', 'Default value: Enabled. Enable it if you want the \"Phone number\" field to be visible in shipping address form.', 'Default value: Enabled. Enable it if you want the \"Phone number\" field to be visible in shipping address form.', 'backend'),
(1200, 'SETTINGS_PAYMENT_GATEWAYS_ADDRESS_SHIPPING_PHONE_REQUIRED_HELP', 'PARENT_SETTINGS_PAYMENT_GATEWAYS_HELP', 'Default value: Enabled. Enable it if you want the \"Phone number\" field to be mandatory in shipping address form.', 'Default value: Enabled. Enable it if you want the \"Phone number\" field to be mandatory in shipping address form.', 'backend'),
(1201, 'SETTINGS_PAYMENT_GATEWAYS_ADDRESS_SHIPPING_COUNTRY_ENABLED_HELP', 'PARENT_SETTINGS_PAYMENT_GATEWAYS_HELP', 'Default value: Enabled. Enable it if you want the \"Country\" field to be visible in shipping address form.', 'Default value: Enabled. Enable it if you want the \"Country\" field to be visible in shipping address form.', 'backend'),
(1202, 'SETTINGS_PAYMENT_GATEWAYS_ADDRESS_SHIPPING_COUNTRY_REQUIRED_HELP', 'PARENT_SETTINGS_PAYMENT_GATEWAYS_HELP', 'Default value: Enabled. Enable it if you want the \"Country\" field to be mandatory in shipping address form.', 'Default value: Enabled. Enable it if you want the \"Country\" field to be mandatory in shipping address form.', 'backend'),
(1203, 'SETTINGS_PAYMENT_GATEWAYS_ADDRESS_SHIPPING_ADDRESS_FIRST_ENABLED_HELP', 'PARENT_SETTINGS_PAYMENT_GATEWAYS_HELP', 'Default value: Enabled. Enable it if you want the \"Address line 1\" field to be visible in shipping address form.', 'Default value: Enabled. Enable it if you want the \"Address line 1\" field to be visible in shipping address form.', 'backend'),
(1204, 'SETTINGS_PAYMENT_GATEWAYS_ADDRESS_SHIPPING_ADDRESS_FIRST_REQUIRED_HELP', 'PARENT_SETTINGS_PAYMENT_GATEWAYS_HELP', 'Default value: Enabled. Enable it if you want the \"Address line 1\" field to be mandatory in shipping address form.', 'Default value: Enabled. Enable it if you want the \"Address line 1\" field to be mandatory in shipping address form.', 'backend'),
(1205, 'SETTINGS_PAYMENT_GATEWAYS_ADDRESS_SHIPPING_ADDRESS_SECOND_ENABLED_HELP', 'PARENT_SETTINGS_PAYMENT_GATEWAYS_HELP', 'Default value: Enabled. Enable it if you want the \"Address line 2\" field to be visible in shipping address form.', 'Default value: Enabled. Enable it if you want the \"Address line 2\" field to be visible in shipping address form.', 'backend'),
(1206, 'SETTINGS_PAYMENT_GATEWAYS_ADDRESS_SHIPPING_ADDRESS_SECOND_REQUIRED_HELP', 'PARENT_SETTINGS_PAYMENT_GATEWAYS_HELP', 'Default value: Disabled. Enable it if you want the \"Address line 2\" field to be mandatory in shipping address form.', 'Default value: Disabled. Enable it if you want the \"Address line 2\" field to be mandatory in shipping address form.', 'backend'),
(1207, 'SETTINGS_PAYMENT_GATEWAYS_ADDRESS_SHIPPING_CITY_ENABLED_HELP', 'PARENT_SETTINGS_PAYMENT_GATEWAYS_HELP', 'Default value: Enabled. Enable it if you want the \"City\" field to be visible in shipping address form.', 'Default value: Enabled. Enable it if you want the \"City\" field to be visible in shipping address form.', 'backend'),
(1208, 'SETTINGS_PAYMENT_GATEWAYS_ADDRESS_SHIPPING_CITY_REQUIRED_HELP', 'PARENT_SETTINGS_PAYMENT_GATEWAYS_HELP', 'Default value: Enabled. Enable it if you want the \"City\" field to be mandatory in shipping address form.', 'Default value: Enabled. Enable it if you want the \"City\" field to be mandatory in shipping address form.', 'backend'),
(1209, 'SETTINGS_PAYMENT_GATEWAYS_ADDRESS_SHIPPING_STATE_ENABLED_HELP', 'PARENT_SETTINGS_PAYMENT_GATEWAYS_HELP', 'Default value: Enabled. Enable it if you want the \"State\" field to be visible in shipping address form.', 'Default value: Enabled. Enable it if you want the \"State\" field to be visible in shipping address form.', 'backend'),
(1210, 'SETTINGS_PAYMENT_GATEWAYS_ADDRESS_SHIPPING_STATE_REQUIRED_HELP', 'PARENT_SETTINGS_PAYMENT_GATEWAYS_HELP', 'Default value: Enabled. Enable it if you want the \"State\" field to be mandatory in shipping address form.', 'Default value: Enabled. Enable it if you want the \"State\" field to be mandatory in shipping address form.', 'backend'),
(1211, 'SETTINGS_PAYMENT_GATEWAYS_ADDRESS_SHIPPING_ZIP_CODE_ENABLED_HELP', 'PARENT_SETTINGS_PAYMENT_GATEWAYS_HELP', 'Default value: Enabled. Enable it if you want the \"Zip code\" field to be visible in shipping address form.', 'Default value: Enabled. Enable it if you want the \"Zip code\" field to be visible in shipping address form.', 'backend'),
(1212, 'SETTINGS_PAYMENT_GATEWAYS_ADDRESS_SHIPPING_ZIP_CODE_REQUIRED_HELP', 'PARENT_SETTINGS_PAYMENT_GATEWAYS_HELP', 'Default value: Enabled. Enable it if you want the \"Zip code\" field to be mandatory in shipping address form.', 'Default value: Enabled. Enable it if you want the \"Zip code\" field to be mandatory in shipping address form.', 'backend'),
(1213, 'PARENT_SETTINGS_SEARCH', '', 'Settings - Search', 'Settings - Search', 'backend'),
(1214, 'SETTINGS_SEARCH_TITLE', 'PARENT_SETTINGS_SEARCH', 'Search settings', 'Search settings', 'backend'),
(1215, 'SETTINGS_SEARCH_GENERAL_SETTINGS', 'PARENT_SETTINGS_SEARCH', 'General settings', 'General settings', 'backend'),
(1216, 'SETTINGS_SEARCH_GENERAL_DATE_TYPE', 'PARENT_SETTINGS_SEARCH', 'Date type', 'Date type', 'backend'),
(1217, 'SETTINGS_SEARCH_GENERAL_DATE_TYPE_AMERICAN', 'PARENT_SETTINGS_SEARCH', 'American (mm dd, yyyy)', 'American (mm dd, yyyy)', 'backend'),
(1218, 'SETTINGS_SEARCH_GENERAL_DATE_TYPE_EUROPEAN', 'PARENT_SETTINGS_SEARCH', 'European (dd mm yyyy)', 'European (dd mm yyyy)', 'backend'),
(1219, 'SETTINGS_SEARCH_GENERAL_TEMPLATE', 'PARENT_SETTINGS_SEARCH', 'Style template', 'Style template', 'backend'),
(1220, 'SETTINGS_SEARCH_GENERAL_SEARCH_ENABLED', 'PARENT_SETTINGS_SEARCH', 'Enable search input', 'Enable search input', 'backend'),
(1221, 'SETTINGS_SEARCH_GENERAL_PRICE_ENABLED', 'PARENT_SETTINGS_SEARCH', 'Filter results by price', 'Filter results by price', 'backend'),
(1222, 'SETTINGS_SEARCH_VIEW_SETTINGS', 'PARENT_SETTINGS_SEARCH', 'View settings', 'View settings', 'backend'),
(1223, 'SETTINGS_SEARCH_VIEW_DEFAULT', 'PARENT_SETTINGS_SEARCH', 'Defaul view', 'Defaul view', 'backend'),
(1224, 'SETTINGS_SEARCH_VIEW_DEFAULT_LIST', 'PARENT_SETTINGS_SEARCH', 'List', 'List', 'backend'),
(1225, 'SETTINGS_SEARCH_VIEW_DEFAULT_GRID', 'PARENT_SETTINGS_SEARCH', 'Grid', 'Grid', 'backend'),
(1226, 'SETTINGS_SEARCH_VIEW_DEFAULT_MAP', 'PARENT_SETTINGS_SEARCH', 'Map', 'Map', 'backend'),
(1227, 'SETTINGS_SEARCH_VIEW_LIST_VIEW_ENABLED', 'PARENT_SETTINGS_SEARCH', 'List view', 'List view', 'backend'),
(1228, 'SETTINGS_SEARCH_VIEW_GRID_VIEW_ENABLED', 'PARENT_SETTINGS_SEARCH', 'Grid view', 'Grid view', 'backend'),
(1229, 'SETTINGS_SEARCH_VIEW_MAP_VIEW_ENABLED', 'PARENT_SETTINGS_SEARCH', 'Map view', 'Map view', 'backend'),
(1230, 'SETTINGS_SEARCH_VIEW_RESULTS_PAGE', 'PARENT_SETTINGS_SEARCH', 'Results per page', 'Results per page', 'backend'),
(1231, 'SETTINGS_SEARCH_VIEW_SIDEBAR_POSITION', 'PARENT_SETTINGS_SEARCH', 'Sidebar position', 'Sidebar position', 'backend'),
(1232, 'SETTINGS_SEARCH_VIEW_SIDEBAR_POSITION_LEFT', 'PARENT_SETTINGS_SEARCH', 'Left', 'Left', 'backend'),
(1233, 'SETTINGS_SEARCH_VIEW_SIDEBAR_POSITION_RIGHT', 'PARENT_SETTINGS_SEARCH', 'Right', 'Right', 'backend'),
(1234, 'SETTINGS_SEARCH_VIEW_SIDEBAR_POSITION_TOP', 'PARENT_SETTINGS_SEARCH', 'Top', 'Top', 'backend'),
(1235, 'SETTINGS_SEARCH_CURRENCY_SETTINGS', 'PARENT_SETTINGS_SEARCH', 'Currency settings', 'Currency settings', 'backend'),
(1236, 'SETTINGS_SEARCH_CURRENCY', 'PARENT_SETTINGS_SEARCH', 'Currency', 'Currency', 'backend'),
(1237, 'SETTINGS_SEARCH_CURRENCY_POSITION', 'PARENT_SETTINGS_SEARCH', 'Currency position', 'Currency position', 'backend'),
(1238, 'SETTINGS_SEARCH_CURRENCY_POSITION_BEFORE', 'PARENT_SETTINGS_SEARCH', 'Before', 'Before', 'backend'),
(1239, 'SETTINGS_SEARCH_CURRENCY_POSITION_BEFORE_WITH_SPACE', 'PARENT_SETTINGS_SEARCH', 'Before with space', 'Before with space', 'backend'),
(1240, 'SETTINGS_SEARCH_CURRENCY_POSITION_AFTER', 'PARENT_SETTINGS_SEARCH', 'After', 'After', 'backend'),
(1241, 'SETTINGS_SEARCH_CURRENCY_POSITION_AFTER_WITH_SPACE', 'PARENT_SETTINGS_SEARCH', 'After with space', 'After with space', 'backend'),
(1242, 'SETTINGS_SEARCH_DAYS_SETTINGS', 'PARENT_SETTINGS_SEARCH', 'Days settings', 'Days settings', 'backend'),
(1243, 'SETTINGS_SEARCH_DAYS_FIRST', 'PARENT_SETTINGS_SEARCH', 'First weekday', 'First weekday', 'backend'),
(1244, 'SETTINGS_SEARCH_DAYS_MULTIPLE_SELECT', 'PARENT_SETTINGS_SEARCH', 'Search start/end days', 'Search start/end days', 'backend'),
(1245, 'SETTINGS_SEARCH_HOURS_SETTINGS', 'PARENT_SETTINGS_SEARCH', 'Hours settings', 'Hours settings', 'backend'),
(1246, 'SETTINGS_SEARCH_HOURS_ENABLED', 'PARENT_SETTINGS_SEARCH', 'Search hours', 'Search hours', 'backend'),
(1247, 'SETTINGS_SEARCH_HOURS_DEFINITIONS', 'PARENT_SETTINGS_SEARCH', 'Define hours', 'Define hours', 'backend'),
(1248, 'SETTINGS_SEARCH_HOURS_MULTIPLE_SELECT', 'PARENT_SETTINGS_SEARCH', 'Search start/end hours', 'Search start/end hours', 'backend'),
(1249, 'SETTINGS_SEARCH_HOURS_AMPM', 'PARENT_SETTINGS_SEARCH', 'Enable AM/PM format', 'Enable AM/PM format', 'backend'),
(1250, 'SETTINGS_SEARCH_AVAILABILITY_SETTINGS', 'PARENT_SETTINGS_SEARCH', 'Availability settings', 'Availability settings', 'backend'),
(1251, 'SETTINGS_SEARCH_AVAILABILITY_ENABLED', 'PARENT_SETTINGS_SEARCH', 'Filter results by no of items available', 'Filter results by no of items available', 'backend'),
(1252, 'SETTINGS_SEARCH_AVAILABILITY_MIN', 'PARENT_SETTINGS_SEARCH', 'Minimum availability value', 'Minimum availability value', 'backend'),
(1253, 'SETTINGS_SEARCH_AVAILABILITY_MAX', 'PARENT_SETTINGS_SEARCH', 'Maximum availability value', 'Maximum availability value', 'backend'),
(1254, 'PARENT_SETTINGS_SEARCH_HELP', '', 'Settings - Search - Help', 'Settings - Search - Help', 'backend'),
(1255, 'SETTINGS_SEARCH_GENERAL_DATE_TYPE_HELP', 'PARENT_SETTINGS_SEARCH_HELP', 'Default value: American. Select date format: American (mm dd, yyyy) or European (dd mm yyyy).', 'Default value: American. Select date format: American (mm dd, yyyy) or European (dd mm yyyy).', 'backend'),
(1256, 'SETTINGS_SEARCH_GENERAL_TEMPLATE_HELP', 'PARENT_SETTINGS_SEARCH_HELP', 'Default value: default. Select styles template.', 'Default value: default. Select styles template.', 'backend'),
(1257, 'SETTINGS_SEARCH_GENERAL_SEARCH_ENABLED_HELP', 'PARENT_SETTINGS_SEARCH_HELP', 'Default value: Disabled. Enable the option to search by name or location (a location needs to be created).', 'Default value: Disabled. Enable the option to search by name or location (a location needs to be created).', 'backend'),
(1258, 'SETTINGS_SEARCH_GENERAL_PRICE_ENABLED_HELP', 'PARENT_SETTINGS_SEARCH_HELP', 'Default value: Disabled. Enable the option to filter results by price.', 'Default value: Disabled. Enable the option to filter results by price.', 'backend'),
(1259, 'SETTINGS_SEARCH_VIEW_DEFAULT_HELP', 'PARENT_SETTINGS_SEARCH_HELP', 'Default value: List. Select the default view that the search results will first display.', 'Default value: List. Select the default view that the search results will first display.', 'backend'),
(1260, 'SETTINGS_SEARCH_VIEW_LIST_VIEW_ENABLED_HELP', 'PARENT_SETTINGS_SEARCH_HELP', 'Default value: Enabled. Enable to display results in list view.', 'Default value: Enabled. Enable to display results in list view.', 'backend'),
(1261, 'SETTINGS_SEARCH_VIEW_GRID_VIEW_ENABLED_HELP', 'PARENT_SETTINGS_SEARCH_HELP', 'Default value: Disabled. Enable to display results in grid view.', 'Default value: Disabled. Enable to display results in grid view.', 'backend'),
(1262, 'SETTINGS_SEARCH_VIEW_MAP_VIEW_ENABLED_HELP', 'PARENT_SETTINGS_SEARCH_HELP', 'Default value: Disabled. Enable to display results on a google map.', 'Default value: Disabled. Enable to display results on a google map.', 'backend'),
(1263, 'SETTINGS_SEARCH_VIEW_RESULTS_PAGE_HELP', 'PARENT_SETTINGS_SEARCH_HELP', 'Default value: 10. Set the number of results to display on a page.', 'Default value: 10. Set the number of results to display on a page.', 'backend'),
(1264, 'SETTINGS_SEARCH_VIEW_SIDEBAR_POSITION_HELP', 'PARENT_SETTINGS_SEARCH_HELP', 'Default value: Left. Set filters sidebar position: Left, Right & Top.', 'Default value: Left. Set filters sidebar position: Left, Right & Top.', 'backend'),
(1265, 'SETTINGS_SEARCH_CURRENCY_HELP', 'PARENT_SETTINGS_SEARCH_HELP', 'Default value: United States Dollar ($, USD). Select search default currency.', 'Default value: United States Dollar ($, USD). Select search default currency.', 'backend'),
(1266, 'SETTINGS_SEARCH_CURRENCY_POSITION_HELP', 'PARENT_SETTINGS_SEARCH_HELP', 'Default value: Before. Select currency position.', 'Default value: Before. Select currency position.', 'backend'),
(1267, 'SETTINGS_SEARCH_DAYS_MULTIPLE_SELECT_HELP', 'PARENT_SETTINGS_SEARCH_HELP', 'Default value: Enabled. Use start/end days or select only one day to filter results.', 'Default value: Enabled. Use start/end days or select only one day to filter results.', 'backend'),
(1268, 'SETTINGS_SEARCH_DAYS_FIRST_HELP', 'PARENT_SETTINGS_SEARCH_HELP', 'Default value: Monday. Select search first weekday.', 'Default value: Monday. Select search first weekday.', 'backend'),
(1269, 'SETTINGS_SEARCH_HOURS_ENABLED_HELP', 'PARENT_SETTINGS_SEARCH_HELP', 'Default value: Disabled. Enable hours to use them to filter results.', 'Default value: Disabled. Enable hours to use them to filter results.', 'backend'),
(1270, 'SETTINGS_SEARCH_HOURS_DEFINITIONS_HELP', 'PARENT_SETTINGS_SEARCH_HELP', 'Enter hh:mm ... add one per line.', 'Enter hh:mm ... add one per line.', 'backend'),
(1271, 'SETTINGS_SEARCH_HOURS_MULTIPLE_SELECT_HELP', 'PARENT_SETTINGS_SEARCH_HELP', 'Default value: Enabled. Use start/end hours or select only one hour to filter results.', 'Default value: Enabled. Use start/end hours or select only one hour to filter results.', 'backend'),
(1272, 'SETTINGS_SEARCH_HOURS_AMPM_HELP', 'PARENT_SETTINGS_SEARCH_HELP', 'Default value: Disabled. Display hours in AM/PM format. NOTE: Hours definitions still need to be in 24 hours format.', 'Default value: Disabled. Display hours in AM/PM format. NOTE: Hours definitions still need to be in 24 hours format.', 'backend'),
(1273, 'SETTINGS_SEARCH_AVAILABILITY_ENABLED_HELP', 'PARENT_SETTINGS_SEARCH_HELP', 'Default value: Disabled. Enable the option to filter results by the number of items available to book.', 'Default value: Disabled. Enable the option to filter results by the number of items available to book.', 'backend'),
(1274, 'SETTINGS_SEARCH_AVAILABILITY_MIN_HELP', 'PARENT_SETTINGS_SEARCH_HELP', 'Default value: 1. Set minimum availability value to filter results.', 'Default value: 1. Set minimum availability value to filter results.', 'backend'),
(1275, 'SETTINGS_SEARCH_AVAILABILITY_MAX_HELP', 'PARENT_SETTINGS_SEARCH_HELP', 'Default value: 10. Set maximum availability value to filter results.', 'Default value: 10. Set maximum availability value to filter results.', 'backend'),
(1276, 'PARENT_SETTINGS_USERS', '', 'Settings - Users permissions', 'Settings - Users permissions', 'backend'),
(1277, 'SETTINGS_USERS_TITLE', 'PARENT_SETTINGS_USERS', 'Users permissions', 'Users permissions', 'backend'),
(1278, 'SETTINGS_USERS_PERMISSIONS', 'PARENT_SETTINGS_USERS', 'Set users permissions to use the booking system.', 'Set users permissions to use the booking system.', 'backend'),
(1279, 'SETTINGS_USERS_PERMISSIONS_ADMINISTRATORS_LABEL', 'PARENT_SETTINGS_USERS', 'Allow %s users to view all the calendars from all the users and/or individually add/edit them.', 'Allow %s users to view all the calendars from all the users and/or individually add/edit them.', 'backend'),
(1280, 'SETTINGS_USERS_PERMISSIONS_LABEL', 'PARENT_SETTINGS_USERS', 'Allow %s users to view the plugin and individually edit only their own calendars.', 'Allow %s users to view the plugin and individually edit only their own calendars.', 'backend'),
(1281, 'SETTINGS_USERS_PERMISSIONS_CUSTOM_POSTS', 'PARENT_SETTINGS_USERS', 'Set users permissions to use custom posts', 'Set users permissions to use custom posts', 'backend'),
(1282, 'SETTINGS_USERS_PERMISSIONS_CUSTOM_POSTS_LABEL', 'PARENT_SETTINGS_USERS', 'Allow %s users to use custom posts.', 'Allow %s users to use custom posts.', 'backend'),
(1283, 'SETTINGS_USERS_PERMISSIONS_INDIVIDUAL', 'PARENT_SETTINGS_USERS', 'Set permissions on individual users', 'Set permissions on individual users', 'backend'),
(1284, 'SETTINGS_USERS_PERMISSIONS_FILTERS_ROLE', 'PARENT_SETTINGS_USERS', 'Change role to', 'Change role to', 'backend'),
(1285, 'SETTINGS_USERS_PERMISSIONS_FILTERS_ROLE_ALL', 'PARENT_SETTINGS_USERS', 'All', 'All', 'backend'),
(1286, 'SETTINGS_USERS_PERMISSIONS_FILTERS_ORDER_BY', 'PARENT_SETTINGS_USERS', 'Order by', 'Order by', 'backend'),
(1287, 'SETTINGS_USERS_PERMISSIONS_FILTERS_ORDER_BY_EMAIL', 'PARENT_SETTINGS_USERS', 'Email', 'Email', 'backend'),
(1288, 'SETTINGS_USERS_PERMISSIONS_FILTERS_ORDER_BY_ID', 'PARENT_SETTINGS_USERS', 'ID', 'ID', 'backend'),
(1289, 'SETTINGS_USERS_PERMISSIONS_FILTERS_ORDER_BY_USERNAME', 'PARENT_SETTINGS_USERS', 'Username', 'Username', 'backend'),
(1290, 'SETTINGS_USERS_PERMISSIONS_FILTERS_ORDER', 'PARENT_SETTINGS_USERS', 'Order', 'Order', 'backend'),
(1291, 'SETTINGS_USERS_PERMISSIONS_FILTERS_ORDER_ASCENDING', 'PARENT_SETTINGS_USERS', 'Ascending', 'Ascending', 'backend'),
(1292, 'SETTINGS_USERS_PERMISSIONS_FILTERS_ORDER_DESCENDING', 'PARENT_SETTINGS_USERS', 'Descending', 'Descending', 'backend'),
(1293, 'SETTINGS_USERS_PERMISSIONS_FILTERS_SEARCH', 'PARENT_SETTINGS_USERS', 'Search', 'Search', 'backend'),
(1294, 'SETTINGS_USERS_PERMISSIONS_LIST_ID', 'PARENT_SETTINGS_USERS', 'ID', 'ID', 'backend'),
(1295, 'SETTINGS_USERS_PERMISSIONS_USERNAME', 'PARENT_SETTINGS_USERS', 'Username', 'Username', 'backend'),
(1296, 'SETTINGS_USERS_PERMISSIONS_EMAIL', 'PARENT_SETTINGS_USERS', 'Email', 'Email', 'backend'),
(1297, 'SETTINGS_USERS_PERMISSIONS_ROLE', 'PARENT_SETTINGS_USERS', 'Role', 'Role', 'backend'),
(1298, 'SETTINGS_USERS_PERMISSIONS_VIEW', 'PARENT_SETTINGS_USERS', 'View all calendars', 'View all calendars', 'backend'),
(1299, 'SETTINGS_USERS_PERMISSIONS_USE', 'PARENT_SETTINGS_USERS', 'Use booking system', 'Use booking system', 'backend'),
(1300, 'SETTINGS_USERS_PERMISSIONS_USE_CUSTOM_POSTS', 'PARENT_SETTINGS_USERS', 'Use custom posts', 'Use custom posts', 'backend'),
(1301, 'SETTINGS_USERS_PERMISSIONS_USE_CALENDAR', 'PARENT_SETTINGS_USERS', 'Use calendar', 'Use calendar', 'backend'),
(1302, 'PARENT_SETTINGS_USERS_HELP', '', 'Settings - Users Permissions - Help', 'Settings - Users Permissions - Help', 'backend'),
(1303, 'SETTINGS_USERS_PERMISSIONS_HELP', 'PARENT_SETTINGS_USERS_HELP', 'Allow administrators to edit/view all calendars and other users to use the plugin.', 'Allow administrators to edit/view all calendars and other users to use the plugin.', 'backend'),
(1304, 'SETTINGS_USERS_CUSTOM_POSTS_PERMISSIONS_HELP', 'PARENT_SETTINGS_USERS_HELP', 'Allow users to use custom posts.', 'Allow users to use custom posts.', 'backend'),
(1305, 'PARENT_SETTINGS_LICENCES', '', 'Settings - Licences', 'Settings - Licences', 'backend'),
(1306, 'SETTINGS_LICENCES_TITLE', 'PARENT_SETTINGS_LICENCES', 'Licences', 'Licences', 'backend'),
(1307, 'SETTINGS_LICENCES_TITLE_PRO', 'PARENT_SETTINGS_LICENCES', 'Pinpoint Booking System PRO licence', 'Pinpoint Booking System PRO licence', 'backend'),
(1308, 'SETTINGS_LICENCES_STATUS', 'PARENT_SETTINGS_LICENCES', 'Status', 'Status', 'backend'),
(1309, 'SETTINGS_LICENCES_STATUS_ACTIVATE', 'PARENT_SETTINGS_LICENCES', 'Activate', 'Activate', 'backend'),
(1310, 'SETTINGS_LICENCES_STATUS_DEACTIVATE', 'PARENT_SETTINGS_LICENCES', 'Deactivate', 'Deactivate', 'backend'),
(1311, 'SETTINGS_LICENCES_STATUS_ACTIVATED', 'PARENT_SETTINGS_LICENCES', 'Activated', 'Activated', 'backend'),
(1312, 'SETTINGS_LICENCES_STATUS_ACTIVATED_SUCCESS', 'PARENT_SETTINGS_LICENCES', 'The item was successfully activated.', 'The item was successfully activated.', 'backend'),
(1313, 'SETTINGS_LICENCES_STATUS_ACTIVATED_ERROR', 'PARENT_SETTINGS_LICENCES', 'There is an error when trying to activate the item. Please try again.', 'There is an error when trying to activate the item. Please try again.', 'backend'),
(1314, 'SETTINGS_LICENCES_STATUS_DEACTIVATED', 'PARENT_SETTINGS_LICENCES', 'Deactivated', 'Deactivated', 'backend'),
(1315, 'SETTINGS_LICENCES_STATUS_DEACTIVATED_SUCCESS', 'PARENT_SETTINGS_LICENCES', 'The item was successfully deactivated.', 'The item was successfully deactivated.', 'backend'),
(1316, 'SETTINGS_LICENCES_STATUS_DEACTIVATED_ERROR', 'PARENT_SETTINGS_LICENCES', 'There is an error when trying to deactivate the item. Please try again.', 'There is an error when trying to deactivate the item. Please try again.', 'backend'),
(1317, 'SETTINGS_LICENCES_KEY', 'PARENT_SETTINGS_LICENCES', 'Licence key', 'Licence key', 'backend'),
(1318, 'SETTINGS_LICENCES_EMAIL', 'PARENT_SETTINGS_LICENCES', 'Licence email', 'Licence email', 'backend'),
(1319, 'PARENT_SETTINGS_LICENCES_HELP', '', 'Settings - Licences - Help', 'Settings - Licences - Help', 'backend'),
(1320, 'SETTINGS_LICENCES_HELP', 'PARENT_SETTINGS_LICENCES_HELP', 'Activate the plugin and add-ons to check and receive automatic updates. Activation is not required to use the items.', 'Activate the plugin and add-ons to check and receive automatic updates. Activation is not required to use the items.', 'backend'),
(1321, 'SETTINGS_LICENCES_KEY_HELP', 'PARENT_SETTINGS_LICENCES_HELP', 'Enter the licence key which you received with your order confirmation email. You can also find it in %s', 'Enter the licence key which you received with your order confirmation email. You can also find it in %s', 'backend'),
(1322, 'SETTINGS_LICENCES_EMAIL_HELP', 'PARENT_SETTINGS_LICENCES_HELP', 'Enter the email you are using on %s', 'Enter the email you are using on %s', 'backend'),
(1325, 'PARENT_TEMPLATES', '', 'Templates', 'Templates', 'backend'),
(1326, 'TEMPLATES_TITLE', 'PARENT_TEMPLATES', 'Templates', 'Templates', 'backend'),
(1327, 'PARENT_THEMES', '', 'Themes', 'Themes', 'backend'),
(1328, 'THEMES_TITLE', 'PARENT_THEMES', 'Themes', 'Themes', 'backend'),
(1329, 'THEMES_HELP', 'PARENT_THEMES', 'A collection of themes specially created to be used with the Pinpoint Booking System. PRO version is included with each.', 'A collection of themes specially created to be used with the Pinpoint Booking System. PRO version is included with each.', 'backend'),
(1330, 'THEMES_LOAD_SUCCESS', 'PARENT_THEMES', 'Themes list loaded.', 'Themes list loaded.', 'backend'),
(1331, 'THEMES_LOAD_ERROR', 'PARENT_THEMES', 'Themes list failed to load. Please refresh the page to try again.', 'Themes list failed to load. Please refresh the page to try again.', 'backend'),
(1332, 'THEMES_FILTERS_SEARCH', 'PARENT_THEMES', 'Search', 'Search', 'backend'),
(1333, 'THEMES_FILTERS_SEARCH_TERMS', 'PARENT_THEMES', 'Enter search terms', 'Enter search terms', 'backend'),
(1334, 'THEMES_FILTERS_TAGS', 'PARENT_THEMES', 'Tags', 'Tags', 'backend'),
(1335, 'THEMES_FILTERS_TAGS_ALL', 'PARENT_THEMES', 'All', 'All', 'backend'),
(1336, 'THEMES_THEME_PRICE', 'PARENT_THEMES', 'Price:', 'Price:', 'backend'),
(1337, 'THEMES_THEME_GET_IT_NOW', 'PARENT_THEMES', 'Get it now', 'Get it now', 'backend'),
(1338, 'THEMES_THEME_VIEW_DEMO', 'PARENT_THEMES', 'View demo', 'View demo', 'backend'),
(1339, 'PARENT_TOOLS', '', 'Tools', 'Tools', 'backend'),
(1340, 'TOOLS_TITLE', 'PARENT_TOOLS', 'Tools', 'Tools', 'backend'),
(1341, 'PARENT_TOOLS_HELP', '', 'Tools - Help', 'Tools - Help', 'backend'),
(1342, 'TOOLS_HELP', 'PARENT_TOOLS_HELP', 'Tools to help you with some of the booking system needs.', 'Tools to help you with some of the booking system needs.', 'backend'),
(1343, 'PARENT_TOOLS_REPAIR_CALENDARS_SETTINGS', '', 'Tools - Repair calendars settings', 'Tools - Repair calendars settings', 'backend');
INSERT INTO `wp_dopbsp_translation_en` (`id`, `key_data`, `parent_key`, `text_data`, `translation`, `location`) VALUES
(1344, 'TOOLS_REPAIR_CALENDARS_SETTINGS_TITLE', 'PARENT_TOOLS_REPAIR_CALENDARS_SETTINGS', 'Repair calendars settings', 'Repair calendars settings', 'backend'),
(1345, 'TOOLS_REPAIR_CALENDARS_SETTINGS_CONFIRMATION', 'PARENT_TOOLS_REPAIR_CALENDARS_SETTINGS', 'Are you sure you want to start calendars settings repairs?', 'Are you sure you want to start calendars settings repairs?', 'backend'),
(1346, 'TOOLS_REPAIR_CALENDARS_SETTINGS_REPAIRING', 'PARENT_TOOLS_REPAIR_CALENDARS_SETTINGS', 'Repairing calendars settings ...', 'Repairing calendars settings ...', 'backend'),
(1347, 'TOOLS_REPAIR_CALENDARS_SETTINGS_SUCCESS', 'PARENT_TOOLS_REPAIR_CALENDARS_SETTINGS', 'The settings have been repaired.', 'The settings have been repaired.', 'backend'),
(1348, 'TOOLS_REPAIR_CALENDARS_SETTINGS_CALENDARS', 'PARENT_TOOLS_REPAIR_CALENDARS_SETTINGS', 'Calendars', 'Calendars', 'backend'),
(1349, 'TOOLS_REPAIR_CALENDARS_SETTINGS_SETTINGS_DATABASE', 'PARENT_TOOLS_REPAIR_CALENDARS_SETTINGS', 'Settings database', 'Settings database', 'backend'),
(1350, 'TOOLS_REPAIR_CALENDARS_SETTINGS_NOTIFICATIONS_DATABASE', 'PARENT_TOOLS_REPAIR_CALENDARS_SETTINGS', 'Notifications database', 'Notifications database', 'backend'),
(1351, 'TOOLS_REPAIR_CALENDARS_SETTINGS_PAYMENT_DATABASE', 'PARENT_TOOLS_REPAIR_CALENDARS_SETTINGS', 'Payment database', 'Payment database', 'backend'),
(1352, 'TOOLS_REPAIR_CALENDARS_SETTINGS_UNCHANGED', 'PARENT_TOOLS_REPAIR_CALENDARS_SETTINGS', 'Unchanged', 'Unchanged', 'backend'),
(1353, 'TOOLS_REPAIR_CALENDARS_SETTINGS_REPAIRED', 'PARENT_TOOLS_REPAIR_CALENDARS_SETTINGS', 'Repaired', 'Repaired', 'backend'),
(1354, 'PARENT_TOOLS_REPAIR_DATABASE_TEXT', '', 'Tools - Repair database & text', 'Tools - Repair database & text', 'backend'),
(1355, 'TOOLS_REPAIR_DATABASE_TEXT_TITLE', 'PARENT_TOOLS_REPAIR_DATABASE_TEXT', 'Repair database & text', 'Repair database & text', 'backend'),
(1356, 'TOOLS_REPAIR_DATABASE_TEXT_CONFIRMATION', 'PARENT_TOOLS_REPAIR_DATABASE_TEXT', 'Are you sure you want to verify the database & the text and repair them if needed?', 'Are you sure you want to verify the database & the text and repair them if needed?', 'backend'),
(1357, 'TOOLS_REPAIR_DATABASE_TEXT_REPAIRING', 'PARENT_TOOLS_REPAIR_DATABASE_TEXT', 'Verifying and repairing the database & the text ...', 'Verifying and repairing the database & the text ...', 'backend'),
(1358, 'TOOLS_REPAIR_DATABASE_TEXT_SUCCESS', 'PARENT_TOOLS_REPAIR_DATABASE_TEXT', 'The database & the text have been verified and repaired. The page will redirect shortly to Dashboard.', 'The database & the text have been verified and repaired. The page will redirect shortly to Dashboard.', 'backend'),
(1359, 'PARENT_TOOLS_REPAIR_SEARCH_SETTINGS', '', 'Tools - Repair search settings', 'Tools - Repair search settings', 'backend'),
(1360, 'TOOLS_REPAIR_SEARCH_SETTINGS_TITLE', 'PARENT_TOOLS_REPAIR_SEARCH_SETTINGS', 'Repair search settings', 'Repair search settings', 'backend'),
(1361, 'TOOLS_REPAIR_SEARCH_SETTINGS_CONFIRMATION', 'PARENT_TOOLS_REPAIR_SEARCH_SETTINGS', 'Are you sure you want to start search settings repairs?', 'Are you sure you want to start search settings repairs?', 'backend'),
(1362, 'TOOLS_REPAIR_SEARCH_SETTINGS_REPAIRING', 'PARENT_TOOLS_REPAIR_SEARCH_SETTINGS', 'Repairing search settings ...', 'Repairing search settings ...', 'backend'),
(1363, 'TOOLS_REPAIR_SEARCH_SETTINGS_SUCCESS', 'PARENT_TOOLS_REPAIR_SEARCH_SETTINGS', 'The settings have been repaired.', 'The settings have been repaired.', 'backend'),
(1364, 'TOOLS_REPAIR_SEARCH_SETTINGS_SEARCHES', 'PARENT_TOOLS_REPAIR_SEARCH_SETTINGS', 'Searches', 'Searches', 'backend'),
(1365, 'TOOLS_REPAIR_SEARCH_SETTINGS_SETTINGS_DATABASE', 'PARENT_TOOLS_REPAIR_SEARCH_SETTINGS', 'Settings database', 'Settings database', 'backend'),
(1366, 'TOOLS_REPAIR_SEARCH_SETTINGS_UNCHANGED', 'PARENT_TOOLS_REPAIR_SEARCH_SETTINGS', 'Unchanged', 'Unchanged', 'backend'),
(1367, 'TOOLS_REPAIR_SEARCH_SETTINGS_REPAIRED', 'PARENT_TOOLS_REPAIR_SEARCH_SETTINGS', 'Repaired', 'Repaired', 'backend'),
(1368, 'PARENT_TRANSLATION', '', 'Translation', 'Translation', 'backend'),
(1369, 'TRANSLATION_TITLE', 'PARENT_TRANSLATION', 'Translation', 'Translation', 'backend'),
(1370, 'TRANSLATION_SUBMIT', 'PARENT_TRANSLATION', 'Manage translation', 'Manage translation', 'backend'),
(1371, 'TRANSLATION_LOADED', 'PARENT_TRANSLATION', 'Translation has been loaded.', 'Translation has been loaded.', 'backend'),
(1372, 'TRANSLATION_LANGUAGE', 'PARENT_TRANSLATION', 'Select language', 'Select language', 'backend'),
(1373, 'TRANSLATION_TEXT_GROUP', 'PARENT_TRANSLATION', 'Select text group', 'Select text group', 'backend'),
(1374, 'TRANSLATION_TEXT_GROUP_ALL', 'PARENT_TRANSLATION', 'All', 'All', 'backend'),
(1375, 'TRANSLATION_SEARCH', 'PARENT_TRANSLATION', 'Search', 'Search', 'backend'),
(1376, 'TRANSLATION_RESET', 'PARENT_TRANSLATION', 'Reset translation', 'Reset translation', 'backend'),
(1377, 'TRANSLATION_RESET_CONFIRMATION', 'PARENT_TRANSLATION', 'Are you sure you want to reset all translation data? All your modifications are going to be overwritten.', 'Are you sure you want to reset all translation data? All your modifications are going to be overwritten.', 'backend'),
(1378, 'TRANSLATION_RESETING', 'PARENT_TRANSLATION', 'Translation is resetting ...', 'Translation is resetting ...', 'backend'),
(1379, 'TRANSLATION_RESET_SUCCESS', 'PARENT_TRANSLATION', 'The translation has reset. The page will refresh shortly.', 'The translation has reset. The page will refresh shortly.', 'backend'),
(1380, 'PARENT_TRANSLATION_HELP', '', 'Translation - Help', 'Translation - Help', 'backend'),
(1381, 'TRANSLATION_HELP', 'PARENT_TRANSLATION_HELP', 'Select the language & text group you want to translate.', 'Select the language & text group you want to translate.', 'backend'),
(1382, 'TRANSLATION_SEARCH_HELP', 'PARENT_TRANSLATION_HELP', 'Use the search field to look & display the text you want.', 'Use the search field to look & display the text you want.', 'backend'),
(1383, 'TRANSLATION_RESET_HELP', 'PARENT_TRANSLATION_HELP', 'If you want to use the translation that came with the plugin click \"Reset translation\" button. Note that all your modifications will be overwritten.', 'If you want to use the translation that came with the plugin click \"Reset translation\" button. Note that all your modifications will be overwritten.', 'backend'),
(1384, 'PARENT_WIDGET', '', 'Widget', 'Widget', 'backend'),
(1385, 'WIDGET_TITLE', 'PARENT_WIDGET', 'Pinpoint Booking System', 'Pinpoint Booking System', 'backend'),
(1386, 'WIDGET_DESCRIPTION', 'PARENT_WIDGET', 'Select option you want to appear in the widget and ID(s) of the calendar(s).', 'Select option you want to appear in the widget and ID(s) of the calendar(s).', 'backend'),
(1387, 'WIDGET_TITLE_LABEL', 'PARENT_WIDGET', 'Title:', 'Title:', 'backend'),
(1388, 'WIDGET_SELECTION_LABEL', 'PARENT_WIDGET', 'Select action:', 'Select action:', 'backend'),
(1389, 'WIDGET_SELECTION_ADD_CALENDAR', 'PARENT_WIDGET', 'Add calendar', 'Add calendar', 'backend'),
(1390, 'WIDGET_SELECTION_ADD_SIDEBAR', 'PARENT_WIDGET', 'Add calendar sidebar', 'Add calendar sidebar', 'backend'),
(1391, 'WIDGET_ID_LABEL', 'PARENT_WIDGET', 'Select calendar ID:', 'Select calendar ID:', 'backend'),
(1392, 'WIDGET_NO_CALENDARS', 'PARENT_WIDGET', 'No calendars.', 'No calendars.', 'backend'),
(1393, 'WIDGET_LANGUAGE_LABEL', 'PARENT_WIDGET', 'Select language:', 'Select language:', 'backend'),
(1519, 'DASHBOARD_GET_STARTED_CALENDARS_VIEW', 'PARENT_DASHBOARD', 'View calendars', 'View calendars', 'backend'),
(1520, 'MESSAGES_PRO_TITLE', 'PARENT_MESSAGES', 'PRO', 'PRO', 'backend'),
(1521, 'MESSAGES_PRO_INFO', 'PARENT_PRO_VERSION', 'only in PRO', 'only in PRO', 'backend'),
(1522, 'MESSAGES_PRO_TEXT', 'PARENT_PRO_VERSION', 'This feature is only available in PRO version.', 'This feature is only available in PRO version.', 'backend'),
(1523, 'MESSAGES_PRO_REMOVE_TEXT1', 'PARENT_PRO_VERSION', 'Permanently remove any reference to Pinpoint Booking System PRO version by clicking the close button. This action cannot be undone.', 'Permanently remove any reference to Pinpoint Booking System PRO version by clicking the close button. This action cannot be undone.', 'backend'),
(1524, 'MESSAGES_PRO_REMOVE_TEXT2', 'PARENT_PRO_VERSION', 'You can also remove any information about PRO version if you set the constant %s value to %s in file %s.', 'You can also remove any information about PRO version if you set the constant %s value to %s in file %s.', 'backend'),
(1525, 'LOCATIONS_LOCATION_SHARE', 'PARENT_LOCATIONS_LOCATION', 'Share your location with ', 'Share your location with ', 'backend'),
(1526, 'LOCATIONS_LOCATION_LINK', 'PARENT_LOCATIONS_LOCATION', 'Enter the link of your site', 'Enter the link of your site', 'backend'),
(1527, 'LOCATIONS_LOCATION_IMAGE', 'PARENT_LOCATIONS_LOCATION', 'Enter a link with an image', 'Enter a link with an image', 'backend'),
(1528, 'LOCATIONS_LOCATION_BUSINESSES', 'PARENT_LOCATIONS_LOCATION', 'Select what kind of businesses you have at this location', 'Select what kind of businesses you have at this location', 'backend'),
(1529, 'LOCATIONS_LOCATION_BUSINESSES_OTHER', 'PARENT_LOCATIONS_LOCATION', 'Enter businesses that are not in the list', 'Enter businesses that are not in the list', 'backend'),
(1530, 'LOCATIONS_LOCATION_LANGUAGES', 'PARENT_LOCATIONS_LOCATION', 'Enter the languages that are spoken in your business', 'Enter the languages that are spoken in your business', 'backend'),
(1531, 'LOCATIONS_LOCATION_EMAIL', 'PARENT_LOCATIONS_LOCATION', 'Your email', 'Your email', 'backend'),
(1532, 'LOCATIONS_LOCATION_SHARE_SUBMIT', 'PARENT_LOCATIONS_LOCATION', 'Share to PINPOINT.WORLD', 'Share to PINPOINT.WORLD', 'backend'),
(1533, 'LOCATIONS_LOCATION_SHARE_SUBMIT_SUCCESS', 'PARENT_LOCATIONS_LOCATION', 'Your location has been sent to PINPOINT.WORLD', 'Your location has been sent to PINPOINT.WORLD', 'backend'),
(1534, 'LOCATIONS_LOCATION_SHARE_SUBMIT_ERROR', 'PARENT_LOCATIONS_LOCATION', 'Please complete all location data. Only alternative address is mandatory and you need to select a businness or enter another business.', 'Please complete all location data. Only alternative address is mandatory and you need to select a businness or enter another business.', 'backend'),
(1535, 'LOCATIONS_LOCATION_SHARE_SUBMIT_ERROR_DUPLICATE', 'PARENT_LOCATIONS_LOCATION', 'The location has already been submitted to PINPOINT.WORLD', 'The location has already been submitted to PINPOINT.WORLD', 'backend'),
(1536, 'LOCATIONS_LOCATION_BUSINESS_APARTMENT', 'PARENT_LOCATIONS_LOCATION', 'Appartment', 'Appartment', 'backend'),
(1537, 'LOCATIONS_LOCATION_BUSINESS_BABY_SITTER', 'PARENT_LOCATIONS_LOCATION', 'Baby sitter', 'Baby sitter', 'backend'),
(1538, 'LOCATIONS_LOCATION_BUSINESS_BAR', 'PARENT_LOCATIONS_LOCATION', 'Bar', 'Bar', 'backend'),
(1539, 'LOCATIONS_LOCATION_BUSINESS_BASKETBALL_COURT', 'PARENT_LOCATIONS_LOCATION', 'Basketball court(s)', 'Basketball court(s)', 'backend'),
(1540, 'LOCATIONS_LOCATION_BUSINESS_BEAUTY_SALON', 'PARENT_LOCATIONS_LOCATION', 'Beauty salon', 'Beauty salon', 'backend'),
(1541, 'LOCATIONS_LOCATION_BUSINESS_BIKES', 'PARENT_LOCATIONS_LOCATION', 'Bikes', 'Bikes', 'backend'),
(1542, 'LOCATIONS_LOCATION_BUSINESS_BOAT', 'PARENT_LOCATIONS_LOCATION', 'Boat', 'Boat', 'backend'),
(1543, 'LOCATIONS_LOCATION_BUSINESS_BUSINESS', 'PARENT_LOCATIONS_LOCATION', 'Business', 'Business', 'backend'),
(1544, 'LOCATIONS_LOCATION_BUSINESS_CAMPING', 'PARENT_LOCATIONS_LOCATION', 'Camping', 'Camping', 'backend'),
(1545, 'LOCATIONS_LOCATION_BUSINESS_CAMPING_GEAR', 'PARENT_LOCATIONS_LOCATION', 'Camping gear', 'Camping gear', 'backend'),
(1546, 'LOCATIONS_LOCATION_BUSINESS_CARS', 'PARENT_LOCATIONS_LOCATION', 'Cars', 'Cars', 'backend'),
(1547, 'LOCATIONS_LOCATION_BUSINESS_CHEF', 'PARENT_LOCATIONS_LOCATION', 'Chef', 'Chef', 'backend'),
(1548, 'LOCATIONS_LOCATION_BUSINESS_CINEMA', 'PARENT_LOCATIONS_LOCATION', 'Cinema', 'Cinema', 'backend'),
(1549, 'LOCATIONS_LOCATION_BUSINESS_CLOTHES', 'PARENT_LOCATIONS_LOCATION', 'Clothes', 'Clothes', 'backend'),
(1550, 'LOCATIONS_LOCATION_BUSINESS_COSTUMES', 'PARENT_LOCATIONS_LOCATION', 'Costumes', 'Costumes', 'backend'),
(1551, 'LOCATIONS_LOCATION_BUSINESS_CLUB', 'PARENT_LOCATIONS_LOCATION', 'Club', 'Club', 'backend'),
(1552, 'LOCATIONS_LOCATION_BUSINESS_DANCE_INSTRUCTOR', 'PARENT_LOCATIONS_LOCATION', 'Dance instructor', 'Dance instructor', 'backend'),
(1553, 'LOCATIONS_LOCATION_BUSINESS_DENTIST', 'PARENT_LOCATIONS_LOCATION', 'Dentist', 'Dentist', 'backend'),
(1554, 'LOCATIONS_LOCATION_BUSINESS_DESIGNER_HANDBAGS', 'PARENT_LOCATIONS_LOCATION', 'Designer handbags', 'Designer handbags', 'backend'),
(1555, 'LOCATIONS_LOCATION_BUSINESS_DOCTOR', 'PARENT_LOCATIONS_LOCATION', 'Doctor', 'Doctor', 'backend'),
(1556, 'LOCATIONS_LOCATION_BUSINESS_ESTHETICIAN', 'PARENT_LOCATIONS_LOCATION', 'Esthetician', 'Esthetician', 'backend'),
(1557, 'LOCATIONS_LOCATION_BUSINESS_FOOTBALL_COURT', 'PARENT_LOCATIONS_LOCATION', 'Football court(s)', 'Football court(s)', 'backend'),
(1558, 'LOCATIONS_LOCATION_BUSINESS_FISHING', 'PARENT_LOCATIONS_LOCATION', 'Fishing', 'Fishing', 'backend'),
(1559, 'LOCATIONS_LOCATION_BUSINESS_GADGETS', 'PARENT_LOCATIONS_LOCATION', 'Gadgets', 'Gadgets', 'backend'),
(1560, 'LOCATIONS_LOCATION_BUSINESS_GAMES', 'PARENT_LOCATIONS_LOCATION', 'Games', 'Games', 'backend'),
(1561, 'LOCATIONS_LOCATION_BUSINESS_GOLF', 'PARENT_LOCATIONS_LOCATION', 'Golf', 'Golf', 'backend'),
(1562, 'LOCATIONS_LOCATION_BUSINESS_HAIRDRESSER', 'PARENT_LOCATIONS_LOCATION', 'Hairdresser', 'Hairdresser', 'backend'),
(1563, 'LOCATIONS_LOCATION_BUSINESS_HEALTH_CLUB', 'PARENT_LOCATIONS_LOCATION', 'Health club', 'Health club', 'backend'),
(1564, 'LOCATIONS_LOCATION_BUSINESS_HOSPITAL', 'PARENT_LOCATIONS_LOCATION', 'Hospital', 'Hospital', 'backend'),
(1565, 'LOCATIONS_LOCATION_BUSINESS_HOTEL', 'PARENT_LOCATIONS_LOCATION', 'Hotel', 'Hotel', 'backend'),
(1566, 'LOCATIONS_LOCATION_BUSINESS_HUNTING', 'PARENT_LOCATIONS_LOCATION', 'Hunting', 'Hunting', 'backend'),
(1567, 'LOCATIONS_LOCATION_BUSINESS_LAWYER', 'PARENT_LOCATIONS_LOCATION', 'Lawyer', 'Lawyer', 'backend'),
(1568, 'LOCATIONS_LOCATION_BUSINESS_LIBRARY', 'PARENT_LOCATIONS_LOCATION', 'Library', 'Library', 'backend'),
(1569, 'LOCATIONS_LOCATION_BUSINESS_MASSAGE', 'PARENT_LOCATIONS_LOCATION', 'Massage', 'Massage', 'backend'),
(1570, 'LOCATIONS_LOCATION_BUSINESS_MUSIC_BAND', 'PARENT_LOCATIONS_LOCATION', 'Music band', 'Music band', 'backend'),
(1571, 'LOCATIONS_LOCATION_BUSINESS_NAILS_SALON', 'PARENT_LOCATIONS_LOCATION', 'Nails salon', 'Nails salon', 'backend'),
(1572, 'LOCATIONS_LOCATION_BUSINESS_PARTY_SUPPLIES', 'PARENT_LOCATIONS_LOCATION', 'Party supplies', 'Party supplies', 'backend'),
(1573, 'LOCATIONS_LOCATION_BUSINESS_PERSONAL_TRAINER', 'PARENT_LOCATIONS_LOCATION', 'Personal trainer', 'Personal trainer', 'backend'),
(1574, 'LOCATIONS_LOCATION_BUSINESS_PET_CARE', 'PARENT_LOCATIONS_LOCATION', 'Pet care', 'Pet care', 'backend'),
(1575, 'LOCATIONS_LOCATION_BUSINESS_PHOTO_EQUIPMENT', 'PARENT_LOCATIONS_LOCATION', 'Photo equipment', 'Photo equipment', 'backend'),
(1576, 'LOCATIONS_LOCATION_BUSINESS_PHOTOGRAPHER', 'PARENT_LOCATIONS_LOCATION', 'Photographer', 'Photographer', 'backend'),
(1577, 'LOCATIONS_LOCATION_BUSINESS_PILLATES_INSTRUCTOR', 'PARENT_LOCATIONS_LOCATION', 'Pillates instructor', 'Pillates instructor', 'backend'),
(1578, 'LOCATIONS_LOCATION_BUSINESS_PLANE_TICKETS', 'PARENT_LOCATIONS_LOCATION', 'Plane tickets', 'Plane tickets', 'backend'),
(1579, 'LOCATIONS_LOCATION_BUSINESS_PLANES', 'PARENT_LOCATIONS_LOCATION', 'Plane(s)', 'Plane(s)', 'backend'),
(1580, 'LOCATIONS_LOCATION_BUSINESS_RESTAURANT', 'PARENT_LOCATIONS_LOCATION', 'Restaurant', 'Restaurant', 'backend'),
(1581, 'LOCATIONS_LOCATION_BUSINESS_SHOES', 'PARENT_LOCATIONS_LOCATION', 'Shoes', 'Shoes', 'backend'),
(1582, 'LOCATIONS_LOCATION_BUSINESS_SNOW_EQUIPMENT', 'PARENT_LOCATIONS_LOCATION', 'Snow equipment', 'Snow equipment', 'backend'),
(1583, 'LOCATIONS_LOCATION_BUSINESS_SPA', 'PARENT_LOCATIONS_LOCATION', 'Spa', 'Spa', 'backend'),
(1584, 'LOCATIONS_LOCATION_BUSINESS_SPORTS_COACH', 'PARENT_LOCATIONS_LOCATION', 'Sports coach', 'Sports coach', 'backend'),
(1585, 'LOCATIONS_LOCATION_BUSINESS_TAXIES', 'PARENT_LOCATIONS_LOCATION', 'Taxies', 'Taxies', 'backend'),
(1586, 'LOCATIONS_LOCATION_BUSINESS_TENIS_COURT', 'PARENT_LOCATIONS_LOCATION', 'Tenis court(s)', 'Tenis court(s)', 'backend'),
(1587, 'LOCATIONS_LOCATION_BUSINESS_THEATRE', 'PARENT_LOCATIONS_LOCATION', 'Theatre', 'Theatre', 'backend'),
(1588, 'LOCATIONS_LOCATION_BUSINESS_VILLA', 'PARENT_LOCATIONS_LOCATION', 'Villa', 'Villa', 'backend'),
(1589, 'LOCATIONS_LOCATION_BUSINESS_WEAPONS', 'PARENT_LOCATIONS_LOCATION', 'Weapons', 'Weapons', 'backend'),
(1590, 'LOCATIONS_LOCATION_BUSINESS_WORKING_TOOLS', 'PARENT_LOCATIONS_LOCATION', 'Working tools', 'Working tools', 'backend'),
(1591, 'LOCATIONS_LOCATION_LINK_HELP', 'PARENT_LOCATIONS_HELP', 'Enter the link of your site. Make sure it redirects to a page where people can make a booking or can view relevant content.', 'Enter the link of your site. Make sure it redirects to a page where people can make a booking or can view relevant content.', 'backend'),
(1592, 'LOCATIONS_LOCATION_IMAGE_HELP', 'PARENT_LOCATIONS_HELP', 'Make sure the image is relevant to your business.', 'Make sure the image is relevant to your business.', 'backend'),
(1593, 'LOCATIONS_LOCATION_BUSINESSES_HELP', 'PARENT_LOCATIONS_HELP', 'Select what kind of businesses you have at this location. You can select multiple businesses.', 'Select what kind of businesses you have at this location. You can select multiple businesses.', 'backend'),
(1594, 'LOCATIONS_LOCATION_BUSINESSES_OTHER_HELP', 'PARENT_LOCATIONS_HELP', 'We will add them in the list as soon as possible.', 'We will add them in the list as soon as possible.', 'backend'),
(1595, 'LOCATIONS_LOCATION_LANGUAGES_HELP', 'PARENT_LOCATIONS_HELP', 'Enter the languages that are spoken in your business. You can select multiple languages.', 'Enter the languages that are spoken in your business. You can select multiple languages.', 'backend'),
(1596, 'LOCATIONS_LOCATION_EMAIL_HELP', 'PARENT_LOCATIONS_HELP', 'Enter the email where we can contact you if there are problems with your submission', 'Enter the email where we can contact you if there are problems with your submission', 'backend'),
(1597, 'PARENT_MODELS', '', 'Business models', 'Business models', 'backend'),
(1598, 'MODELS_TITLE', 'PARENT_MODELS', 'Business models', 'Business models', 'backend'),
(1599, 'MODELS_CREATED_BY', 'PARENT_MODELS', 'Created by', 'Created by', 'backend'),
(1600, 'MODELS_LOAD_SUCCESS', 'PARENT_MODELS', 'Business models list loaded.', 'Business models list loaded.', 'backend'),
(1601, 'MODELS_NO_MODELS', 'PARENT_MODELS', 'No business models. Click the above \"plus\" icon to add a new one.', 'No business models. Click the above \"plus\" icon to add a new one.', 'backend'),
(1602, 'PARENT_MODELS_MODEL', '', 'Business models - Model', 'Business models - Model', 'backend'),
(1603, 'MODELS_MODEL_NAME', 'PARENT_MODELS_MODEL', 'Name', 'Name', 'backend'),
(1604, 'MODELS_MODEL_LANGUAGE', 'PARENT_MODELS_MODEL', 'Language', 'Language', 'backend'),
(1605, 'MODELS_MODEL_ENABLED', 'PARENT_MODELS_MODEL', 'Use this business model', 'Use this business model', 'backend'),
(1606, 'MODELS_MODEL_LABEL', 'PARENT_MODELS_MODEL', 'Label', 'Label', 'backend'),
(1607, 'MODELS_MODEL_MULTIPLE_CALENDARS', 'PARENT_MODELS_MODEL', 'Use multiple calendars', 'Use multiple calendars', 'backend'),
(1608, 'MODELS_MODEL_CALENDAR_LABEL', 'PARENT_MODELS_MODEL', 'Calendar label', 'Calendar label', 'backend'),
(1609, 'MODELS_MODEL_LOADED', 'PARENT_MODELS_MODEL', 'Business model loaded.', 'Business model loaded.', 'backend'),
(1610, 'PARENT_MODELS_ADD_MODEL', '', 'Business models - Add business model', 'Business models - Add business model', 'backend'),
(1611, 'MODELS_ADD_MODEL_NAME', 'PARENT_MODELS_ADD_MODEL', 'New business model', 'New business model', 'backend'),
(1612, 'MODELS_ADD_MODEL_LABEL', 'PARENT_MODELS_ADD_MODEL', 'New business model label', 'New business model label', 'backend'),
(1613, 'MODELS_ADD_MODEL_LABEL_CALENDAR', 'PARENT_MODELS_ADD_MODEL', 'Calendar label', 'Calendar label', 'backend'),
(1614, 'MODELS_ADD_MODEL_SUBMIT', 'PARENT_MODELS_ADD_MODEL', 'Add business model', 'Add business model', 'backend'),
(1615, 'MODELS_ADD_MODEL_ADDING', 'PARENT_MODELS_ADD_MODEL', 'Adding a business model ...', 'Adding a business model ...', 'backend'),
(1616, 'MODELS_ADD_MODEL_SUCCESS', 'PARENT_MODELS_ADD_MODEL', 'You have succesfully added a new business model.', 'You have succesfully added a new business model.', 'backend'),
(1617, 'PARENT_MODELS_DELETE_MODEL', '', 'Business models - Delete business model', 'Business models - Delete business model', 'backend'),
(1618, 'MODELS_DELETE_MODEL_CONFIRMATION', 'PARENT_MODELS_DELETE_MODEL', 'Are you sure you want to delete this business model?', 'Are you sure you want to delete this business model?', 'backend'),
(1619, 'MODELS_DELETE_MODEL_SUBMIT', 'PARENT_MODELS_DELETE_MODEL', 'Delete business model', 'Delete business model', 'backend'),
(1620, 'MODELS_DELETE_MODEL_DELETING', 'PARENT_MODELS_DELETE_MODEL', 'Deleting business model ...', 'Deleting business model ...', 'backend'),
(1621, 'MODELS_DELETE_MODEL_SUCCESS', 'PARENT_MODELS_DELETE_MODEL', 'You have succesfully deleted the business model.', 'You have succesfully deleted the business model.', 'backend'),
(1622, 'PARENT_MODELS_HELP', '', 'Business models - Help', 'Business models - Help', 'backend'),
(1623, 'MODELS_HELP', 'PARENT_MODELS_HELP', 'Click on a business model item to open the editing area.', 'Click on a business model item to open the editing area.', 'backend'),
(1624, 'MODELS_ADD_MODEL_HELP', 'PARENT_MODELS_HELP', 'Click on the \"plus\" icon to add a business model.', 'Click on the \"plus\" icon to add a business model.', 'backend'),
(1625, 'MODELS_MODEL_HELP', 'PARENT_MODELS_HELP', 'Click the \"trash\" icon to delete the business model.', 'Click the \"trash\" icon to delete the business model.', 'backend'),
(1626, 'MODELS_MODEL_NAME_HELP', 'PARENT_MODELS_HELP', 'Change business model name.', 'Change business model name.', 'backend'),
(1627, 'MODELS_MODEL_LANGUAGE_HELP', 'PARENT_MODELS_HELP', 'Change to the language you want to edit the business models.', 'Change to the language you want to edit the business models.', 'backend'),
(1628, 'MODELS_MODEL_ENABLED_HELP', 'PARENT_MODELS_HELP', 'Enable this to use the business model.', 'Enable this to use the business model.', 'backend'),
(1629, 'MODELS_MODEL_LABEL_HELP', 'PARENT_MODELS_HELP', 'Enter business model label.', 'Enter business model label.', 'backend'),
(1630, 'MODELS_MODEL_MULTIPLE_CALENDARS_HELP', 'PARENT_MODELS_HELP', 'Enable this option to add more than one calendar to your business model.', 'Enable this option to add more than one calendar to your business model.', 'backend'),
(1631, 'MODELS_MODEL_CALENDAR_LABEL_HELP', 'PARENT_MODELS_HELP', 'Set how the calendars should be called. Examples: Room, Staff, ...', 'Set how the calendars should be called. Examples: Room, Staff, ...', 'backend'),
(1632, 'RULES_DEFAULT_NAME', 'PARENT_RULES', 'New rule', 'New rule', 'backend'),
(1633, 'SETTINGS_LICENCES_STATUS_TIMEOUT_ERROR', 'PARENT_SETTINGS_LICENCES', 'The connection to the server timed out. Please try again later.', 'The connection to the server timed out. Please try again later.', 'backend'),
(1634, 'EXTRAS_EXTRA_GROUP_NO_ITEMS_MULTIPLY_LABEL', 'PARENT_EXTRAS_EXTRA_GROUP', 'Multiply with No. Items', 'Multiply with No. Items', 'backend'),
(1635, 'EXTRAS_EXTRA_GROUP_NO_ITEMS_MULTIPLY_HELP', 'PARENT_EXTRAS_HELP', 'Enable it if you want the extras price to be multiplied with the number of items.', 'Enable it if you want the extras price to be multiplied with the number of items.', 'backend'),
(1636, 'EXTRAS_EXTRA_GROUP_ITEMS_LABELS_DEFAULT', 'PARENT_EXTRAS_EXTRA_GROUP_ITEMS', 'Set as default', 'Set as default', 'backend'),
(1637, 'EXTRAS_EXTRA_GROUP_ITEMS_DEFAULT_NO', 'PARENT_EXTRAS_EXTRA_GROUP_ITEM', 'No', 'No', 'backend'),
(1638, 'EXTRAS_EXTRA_GROUP_ITEMS_DEFAULT_YES', 'PARENT_EXTRAS_EXTRA_GROUP_ITEM', 'Yes', 'Yes', 'backend'),
(1639, 'SETTINGS_NOTIFICATIONS_SMS_CLICKATELL_TITLE', 'PARENT_SETTINGS_NOTIFICATIONS', 'SMS notifications - Clickatell.com', 'SMS notifications - Clickatell.com', 'backend'),
(1640, 'SETTINGS_NOTIFICATIONS_SMS_CLICKATELL_USERNAME', 'PARENT_SETTINGS_NOTIFICATIONS', 'Username', 'Username', 'backend'),
(1641, 'SETTINGS_NOTIFICATIONS_SMS_CLICKATELL_PASSWORD', 'PARENT_SETTINGS_NOTIFICATIONS', 'Password', 'Password', 'backend'),
(1642, 'SETTINGS_NOTIFICATIONS_SMS_CLICKATELL_API_ID', 'PARENT_SETTINGS_NOTIFICATIONS', 'API ID', 'API ID', 'backend'),
(1643, 'SETTINGS_NOTIFICATIONS_SMS_CLICKATELL_FROM', 'PARENT_SETTINGS_NOTIFICATIONS', 'From', 'From', 'backend'),
(1644, 'SETTINGS_NOTIFICATIONS_SMS_CLICKATELL_ADMIN_PHONE', 'PARENT_SETTINGS_NOTIFICATIONS', 'Notifications phone', 'Notifications phone', 'backend'),
(1645, 'SETTINGS_NOTIFICATIONS_SMS_CLICKATELL_USERNAME_HELP', 'PARENT_SETTINGS_NOTIFICATIONS', 'Enter the username from clickatell.com.', 'Enter the username from clickatell.com.', 'backend'),
(1646, 'SETTINGS_NOTIFICATIONS_SMS_CLICKATELL_PASSWORD_HELP', 'PARENT_SETTINGS_NOTIFICATIONS', 'Enter the password from clickatell.com.', 'Enter the password from clickatell.com.', 'backend'),
(1647, 'SETTINGS_NOTIFICATIONS_SMS_CLICKATELL_API_ID_HELP', 'PARENT_SETTINGS_NOTIFICATIONS', 'Enter the API ID from clickatell.com.', 'Enter the API ID from clickatell.com.', 'backend'),
(1648, 'SETTINGS_NOTIFICATIONS_SMS_CLICKATELL_FROM_HELP', 'PARENT_SETTINGS_NOTIFICATIONS', 'Enter the text from message header.', 'Enter the text from message header.', 'backend'),
(1649, 'SETTINGS_NOTIFICATIONS_SMS_CLICKATELL_ADMIN_PHONE_HELP', 'PARENT_SETTINGS_NOTIFICATIONS', 'Enter the admin phone.', 'Enter the admin phone.', 'backend'),
(1650, 'SETTINGS_NOTIFICATIONS_SMS_CLICKATELL_ADMIN_PHONE_ADD_HELP', 'PARENT_SETTINGS_NOTIFICATIONS', 'Add phone number.', 'Add phone number.', 'backend'),
(1658, 'SETTINGS_NOTIFICATIONS_SMS_SEND_BOOK_ADMIN_HELP', 'PARENT_SETTINGS_NOTIFICATIONS_HELP', 'Enable to send an SMS notification to admin on book request.', 'Enable to send an SMS notification to admin on book request.', 'backend'),
(1659, 'SETTINGS_NOTIFICATIONS_SMS_SEND_BOOK_USER_HELP', 'PARENT_SETTINGS_NOTIFICATIONS_HELP', 'Enable to send an SMS notification to user on book request.', 'Enable to send an SMS notification to user on book request.', 'backend'),
(1660, 'SETTINGS_NOTIFICATIONS_SMS_SEND_BOOK_WITH_APPROVAL_ADMIN_HELP', 'PARENT_SETTINGS_NOTIFICATIONS_HELP', 'Enable to send an SMS notification to admin on book request and reservation is approved.', 'Enable to send an SMS notification to admin on book request and reservation is approved.', 'backend'),
(1661, 'SETTINGS_NOTIFICATIONS_SMS_SEND_BOOK_WITH_APPROVAL_USER_HELP', 'PARENT_SETTINGS_NOTIFICATIONS_HELP', 'Enable to send an SMS notification to user on book request and reservation is approved.', 'Enable to send an SMS notification to user on book request and reservation is approved.', 'backend'),
(1662, 'SETTINGS_NOTIFICATIONS_SMS_SEND_APPROVED_HELP', 'PARENT_SETTINGS_NOTIFICATIONS_HELP', 'Enable to send an SMS notification to user when reservation is approved.', 'Enable to send an SMS notification to user when reservation is approved.', 'backend'),
(1663, 'SETTINGS_NOTIFICATIONS_SMS_SEND_CANCELED_HELP', 'PARENT_SETTINGS_NOTIFICATIONS_HELP', 'Enable to send an SMS notification to user when reservation is canceled.', 'Enable to send an SMS notification to user when reservation is canceled.', 'backend'),
(1664, 'SETTINGS_NOTIFICATIONS_SMS_SEND_REJECTED_HELP', 'PARENT_SETTINGS_NOTIFICATIONS_HELP', 'Enable to send an SMS notification to user when reservation is rejected.', 'Enable to send an SMS notification to user when reservation is rejected.', 'backend'),
(1665, 'RESERVATIONS_RESERVATION_IP_ADDRESS', 'PARENT_RESERVATIONS_RESERVATION', 'IP address', 'IP address', 'backend'),
(1666, 'ORDER_PAYMENT_FULL_AMOUNT', 'PARENT_RESERVATIONS_RESERVATION', 'Pay full amount', 'Pay full amount', 'all'),
(1667, 'SETTINGS_CALENDAR_GENERAL_SERVER_TIME', 'PARENT_SETTINGS_CALENDAR', 'Enable server time', 'Enable server time', 'backend'),
(1668, 'SETTINGS_CALENDAR_GENERAL_TIMEZONE', 'PARENT_SETTINGS_CALENDAR', 'Timezone', 'Timezone', 'backend'),
(1669, 'SETTINGS_CALENDAR_GENERAL_HIDE_PRICE', 'PARENT_SETTINGS_CALENDAR', 'Hide price', 'Hide price', 'backend'),
(1670, 'SETTINGS_CALENDAR_DEPOSIT_PAY_FULL_AMOUNT', 'PARENT_SETTINGS_CALENDAR', 'Enable Pay full amount.', 'Enable Pay full amount.', 'backend'),
(1671, 'SETTINGS_CALENDAR_GOOGLE_SYNC_SETTINGS', 'PARENT_SETTINGS_CALENDAR', 'Google Calendar Sync settings', 'Google Calendar Sync settings', 'backend'),
(1672, 'SETTINGS_CALENDAR_GOOGLE_ENABLED', 'PARENT_SETTINGS_CALENDAR', 'Enable Google Calendar Sync', 'Enable Google Calendar Sync', 'backend'),
(1673, 'SETTINGS_CALENDAR_GOOGLE_CLIENT_ID', 'PARENT_SETTINGS_CALENDAR', 'Client ID', 'Client ID', 'backend'),
(1674, 'SETTINGS_CALENDAR_GOOGLE_CLIENT_SECRET', 'PARENT_SETTINGS_CALENDAR', 'Client secret', 'Client secret', 'backend'),
(1675, 'SETTINGS_CALENDAR_GOOGLE_CALENDAR_ID', 'PARENT_SETTINGS_CALENDAR', 'Calendar ID', 'Calendar ID', 'backend'),
(1676, 'SETTINGS_CALENDAR_GOOGLE_FEED_URL', 'PARENT_SETTINGS_CALENDAR', 'Feed URL', 'Feed URL', 'backend'),
(1677, 'SETTINGS_CALENDAR_SYNC_SETTINGS', 'PARENT_SETTINGS_CALENDAR_HELP', 'iCalendar - Synchronization', 'iCalendar - Synchronization', 'backend'),
(1678, 'SETTINGS_CALENDAR_ICAL_URL', 'PARENT_SETTINGS_CALENDAR_HELP', 'iCalendar URL', 'iCalendar URL', 'backend'),
(1679, 'SETTINGS_CALENDAR_AIRBNB_SYNC_SETTINGS', 'PARENT_SETTINGS_CALENDAR', 'Airbnb Sync settings', 'Airbnb Sync settings', 'backend'),
(1680, 'SETTINGS_CALENDAR_AIRBNB_ENABLED', 'PARENT_SETTINGS_CALENDAR', 'Enable Airbnb Sync', 'Enable Airbnb Sync', 'backend'),
(1681, 'SETTINGS_CALENDAR_AIRBNB_FEED_URL', 'PARENT_SETTINGS_CALENDAR', 'Feed URL', 'Feed URL', 'backend'),
(1682, 'SETTINGS_CALENDAR_GENERAL_SERVER_TIME_HELP', 'PARENT_SETTINGS_CALENDAR_HELP', 'Default value: Disabled. Use server time.', 'Default value: Disabled. Use server time.', 'backend'),
(1683, 'SETTINGS_CALENDAR_GENERAL_TIMEZONE_HELP', 'PARENT_SETTINGS_CALENDAR_HELP', 'Select your timezone.', 'Select your timezone.', 'backend'),
(1684, 'SETTINGS_CALENDAR_GENERAL_HIDE_PRICE_HELP', 'PARENT_SETTINGS_CALENDAR_HELP', 'Default value: false. Enable to hide price from calendar ( frontend ).', 'Default value: false. Enable to hide price from calendar ( frontend ).', 'backend'),
(1686, 'SETTINGS_CALENDAR_GOOGLE_ENABLED_HELP', 'PARENT_SETTINGS_CALENDAR_HELP', 'Default value: Disabled. Enable Google Calendar Sync.', 'Default value: Disabled. Enable Google Calendar Sync.', 'backend'),
(1687, 'SETTINGS_CALENDAR_GOOGLE_CLIENT_ID_HELP', 'PARENT_SETTINGS_CALENDAR_HELP', 'Enter Google Client ID.', 'Enter Google Client ID.', 'backend'),
(1688, 'SETTINGS_CALENDAR_GOOGLE_CLIENT_SECRET_HELP', 'PARENT_SETTINGS_CALENDAR_HELP', 'Enter Google Client secret.', 'Enter Google Client secret.', 'backend'),
(1689, 'SETTINGS_CALENDAR_GOOGLE_CALENDAR_ID_HELP', 'PARENT_SETTINGS_CALENDAR_HELP', 'Enter Google Calendar ID.', 'Enter Google Calendar ID.', 'backend'),
(1690, 'SETTINGS_CALENDAR_GOOGLE_FEED_URL_HELP', 'PARENT_SETTINGS_CALENDAR_HELP', 'Enter Google iCalendar feed URL.', 'Enter Google iCalendar feed URL.', 'backend'),
(1691, 'SETTINGS_CALENDAR_GOOGLE_CALENDAR_SYNC_HELP', 'PARENT_SETTINGS_CALENDAR_HELP', 'Synchronize', 'Synchronize', 'backend'),
(1692, 'SETTINGS_CALENDAR_ICAL_URL_HELP', 'PARENT_SETTINGS_CALENDAR_HELP', 'Copy the iCalendar URL and paste it in the import URL field.', 'Copy the iCalendar URL and paste it in the import URL field.', 'backend'),
(1693, 'SETTINGS_CALENDAR_AIRBNB_ENABLED_HELP', 'PARENT_SETTINGS_CALENDAR_HELP', 'Default value: Disabled. Enable Airbnb Sync.', 'Default value: Disabled. Enable Airbnb Sync.', 'backend'),
(1694, 'SETTINGS_CALENDAR_AIRBNB_FEED_URL_HELP', 'PARENT_SETTINGS_CALENDAR_HELP', 'Enter Airbnb ICAL feed URL.', 'Enter Airbnb ICAL feed URL.', 'backend'),
(2972, 'SETTINGS_CALENDAR_HOURS_INTERVAL_AUTOBREAK_ENABLED', 'PARENT_SETTINGS_CALENDAR', 'Enable breaks for hours interval', 'Enable breaks for hours interval', 'backend'),
(2973, 'SETTINGS_CALENDAR_HOURS_INTERVAL_AUTOBREAK_ENABLED_HELP', 'PARENT_SETTINGS_CALENDAR_HELP', 'Default value: Disabled. Put a break before each interval.', 'Default value: Disabled. Put a break before each interval.', 'backend'),
(2980, 'SETTINGS_CALENDAR_GENERAL_HIDE_NO_AVAILABLE', 'PARENT_SETTINGS_CALENDAR', 'Hide No available', 'Hide No available', 'backend'),
(2981, 'SETTINGS_CALENDAR_GENERAL_MINIMUM_NO_AVAILABLE', 'PARENT_SETTINGS_CALENDAR', 'Minimum no available', 'Minimum no available', 'backend'),
(2982, 'SETTINGS_CALENDAR_GENERAL_HIDE_NO_AVAILABLE_HELP', 'PARENT_SETTINGS_CALENDAR_HELP', 'Default value: false. Enable to hide number of days/hours available from calendar ( frontend ).', 'Default value: false. Enable to hide number of days/hours available from calendar ( frontend ).', 'backend'),
(2983, 'SETTINGS_CALENDAR_GENERAL_MINIMUM_NO_AVAILABLE_HELP', 'PARENT_SETTINGS_CALENDAR_HELP', 'Default value: 1. Set minimum no available from sidebar ( frontend ).', 'Default value: 1. Set minimum no available from sidebar ( frontend ).', 'backend'),
(3459, 'RESERVATIONS_RESERVATION_SYNC', 'PARENT_RESERVATIONS_RESERVATION', 'Synced with', 'Synced with', 'all'),
(3460, 'RESERVATIONS_APPROVE_UNAVAILABLE', 'PARENT_RESERVATIONS_RESERVATION', 'Another approved reservation already exists for this period.', 'Another approved reservation already exists for this period.', 'all'),
(3461, 'SETTINGS_CALENDAR_GOOGLE_SYNC_TIME', 'PARENT_SETTINGS_CALENDAR', 'Sync time', 'Sync time', 'backend'),
(3462, 'SETTINGS_CALENDAR_GOOGLE_SYNC_TIMEOUT', 'PARENT_SETTINGS_CALENDAR', 'Sync timeout', 'Sync timeout', 'backend'),
(3463, 'SETTINGS_CALENDAR_AIRBNB_SYNC_TIME', 'PARENT_SETTINGS_CALENDAR', 'Sync time', 'Sync time', 'backend'),
(3464, 'SETTINGS_CALENDAR_AIRBNB_SYNC_TIMEOUT', 'PARENT_SETTINGS_CALENDAR', 'Sync timeout', 'Sync timeout', 'backend'),
(3466, 'SETTINGS_CALENDAR_GOOGLE_SYNC_TIME_HELP', 'PARENT_SETTINGS_CALENDAR_HELP', 'Sync calendar at every x seconds.', 'Sync calendar at every x seconds.', 'backend'),
(3467, 'SETTINGS_CALENDAR_GOOGLE_SYNC_TIMEOUT_HELP', 'PARENT_SETTINGS_CALENDAR_HELP', 'Stop sync after x seconds if is not finished.', 'Stop sync after x seconds if is not finished.', 'backend'),
(3468, 'SETTINGS_CALENDAR_AIRBNB_SYNC_TIME_HELP', 'PARENT_SETTINGS_CALENDAR_HELP', 'Sync calendar at every x seconds.', 'Sync calendar at every x seconds.', 'backend'),
(3469, 'SETTINGS_CALENDAR_AIRBNB_SYNC_TIMEOUT_HELP', 'PARENT_SETTINGS_CALENDAR_HELP', 'Stop sync after x seconds if is not finished.', 'Stop sync after x seconds if is not finished.', 'backend'),
(3470, 'PARENT_SMSES_DEFAULT_PAYPAL', '', 'SMS templates - PayPal default messages', 'SMS templates - PayPal default messages', 'backend'),
(3471, 'SMSES_SMS_TEMPLATE_SELECT_PAYPAL_ADMIN', 'PARENT_SMSES_DEFAULT_PAYPAL', 'PayPal admin notification', 'PayPal admin notification', 'backend'),
(3472, 'SMSES_DEFAULT_PAYPAL_ADMIN_SUBJECT', 'PARENT_SMSES_DEFAULT_PAYPAL', 'You received a booking request.', 'You received a booking request.', 'backend'),
(3473, 'SMSES_DEFAULT_PAYPAL_ADMIN', 'PARENT_SMSES_DEFAULT_PAYPAL', 'Payment has been done via PayPal and the period has been booked.', 'Payment has been done via PayPal and the period has been booked.', 'backend'),
(3474, 'SMSES_SMS_TEMPLATE_SELECT_PAYPAL_USER', 'PARENT_SMSES_DEFAULT_PAYPAL', 'PayPal user notification', 'PayPal user notification', 'backend'),
(3475, 'SMSES_DEFAULT_PAYPAL_USER_SUBJECT', 'PARENT_SMSES_DEFAULT_PAYPAL', 'Your booking request has been sent.', 'Your booking request has been sent.', 'backend'),
(3476, 'SMSES_DEFAULT_PAYPAL_USER', 'PARENT_SMS_DEFAULT_PAYPAL', 'The period has been book. Below are the details.', 'The period has been book. Below are the details.', 'backend'),
(3477, 'FORMS_FORM_FIELD_PHONE_LABEL', 'PARENT_FORMS_FORM_FIELD', 'Is phone', 'Is phone', 'backend'),
(3478, 'FORMS_FORM_FIELD_DEFAULT_COUNTRY_LABEL', 'PARENT_FORMS_FORM_FIELD', 'Default country', 'Default country', 'backend'),
(3479, 'FORMS_FORM_FIELD_PHONE_HELP', 'PARENT_FORMS_HELP', 'Enable it if you want this field to be verified if a phone number has been added or not.', 'Enable it if you want this field to be verified if a phone number has been added or not.', 'backend'),
(3480, 'FORMS_FORM_FIELD_DEFAULT_COUNTRY', 'PARENT_FORMS_HELP', 'Select the default country for the phone number prefix.', 'Select the default country for the phone number prefix.', 'backend'),
(3482, 'SETTINGS_NOTIFICATIONS_SMS_CLICKATELL_ACCOUNT_TYPE', 'PARENT_SETTINGS_NOTIFICATIONS', 'Account type', 'Account type', 'backend'),
(3483, 'SETTINGS_NOTIFICATIONS_SMS_CLICKATELL_ACCOUNT_TYPE_HELP', 'PARENT_SETTINGS_NOTIFICATIONS', 'Select the type of account you own on clickatell.com.', 'Select the type of account you own on clickatell.com.', 'backend'),
(3484, 'PARENT_SMSES', '', 'SMS templates', 'SMS templates', 'backend'),
(3485, 'SMSES_TITLE', 'PARENT_SMSES', 'SMS templates', 'SMS templates', 'backend'),
(3486, 'SMSES_CREATED_BY', 'PARENT_SMSES', 'Created by', 'Created by', 'backend'),
(3487, 'SMSES_LOAD_SUCCESS', 'PARENT_SMSES', 'SMS templates  list loaded.', 'SMS templates  list loaded.', 'backend'),
(3488, 'SMSES_NO_SMSES', 'PARENT_SMSES', 'No SMS templates. Click the above \"plus\" icon to add new ones.', 'No SMS templates. Click the above \"plus\" icon to add new ones.', 'backend'),
(3489, 'PARENT_SMSES_DEFAULT', '', 'SMS templates - Default messages', 'SMS templates - Default messages', 'backend'),
(3490, 'SMSES_DEFAULT_NAME', 'PARENT_SMSES_DEFAULT', 'Default SMS templates', 'Default SMS templates', 'backend'),
(3491, 'SMSES_DEFAULT_BOOK_ADMIN', 'PARENT_SMSES_DEFAULT', 'You received a booking request.', 'You received a booking request.', 'backend'),
(3492, 'SMSES_DEFAULT_BOOK_USER', 'PARENT_SMSES_DEFAULT', 'Your booking request has been sent.', 'Your booking request has been sent.', 'backend'),
(3493, 'SMSES_DEFAULT_BOOK_WITH_APPROVAL_ADMIN', 'PARENT_SMSES_DEFAULT', 'You received a booking request.', 'You received a booking request.', 'backend'),
(3494, 'SMSES_DEFAULT_BOOK_WITH_APPROVAL_USER', 'PARENT_SMSES_DEFAULT', 'Your booking request has been sent.Please wait for approval.', 'Your booking request has been sent.Please wait for approval.', 'backend'),
(3495, 'SMSES_DEFAULT_APPROVED', 'PARENT_SMSES_DEFAULT', 'Your booking request has been approved.', 'Your booking request has been approved.', 'backend'),
(3496, 'SMSES_DEFAULT_CANCELED', 'PARENT_SMSES_DEFAULT', 'Your booking request has been canceled.', 'Your booking request has been canceled.', 'backend'),
(3497, 'SMSES_DEFAULT_REJECTED', 'PARENT_SMSES_DEFAULT', 'Your booking request has been rejected.', 'Your booking request has been rejected.', 'backend'),
(3498, 'PARENT_SMSES_SMS', '', 'SMS templates - Templates', 'SMS templates - Templates', 'backend'),
(3499, 'SMSES_SMS_NAME', 'PARENT_SMSES_SMS', 'Name', 'Name', 'backend'),
(3500, 'SMSES_SMS_LANGUAGE', 'PARENT_SMSES_SMS', 'Language', 'Language', 'backend'),
(3501, 'SMSES_SMS_TEMPLATE_SELECT', 'PARENT_SMSES_SMS', 'Select template', 'Select template', 'backend'),
(3502, 'SMSES_SMS_TEMPLATE_SELECT_BOOK_ADMIN', 'PARENT_SMSES_SMS', 'Admin notification', 'Admin notification', 'backend'),
(3503, 'SMSES_SMS_TEMPLATE_SELECT_BOOK_USER', 'PARENT_SMSES_SMS', 'User notification', 'User notification', 'backend'),
(3504, 'SMSES_SMS_TEMPLATE_SELECT_BOOK_WITH_APPROVAL_ADMIN', 'PARENT_SMSES_SMS', 'Instant approval admin notification', 'Instant approval admin notification', 'backend'),
(3505, 'SMSES_SMS_TEMPLATE_SELECT_BOOK_WITH_APPROVAL_USER', 'PARENT_SMSES_SMS', 'Instant approval user notification', 'Instant approval user notification', 'backend'),
(3506, 'SMSES_SMS_TEMPLATE_SELECT_APPROVED', 'PARENT_SMSES_SMS', 'Approve resevation', 'Approve resevation', 'backend'),
(3507, 'SMSES_SMS_TEMPLATE_SELECT_CANCELED', 'PARENT_SMSES_SMS', 'Cancel resevation', 'Cancel resevation', 'backend'),
(3508, 'SMSES_SMS_TEMPLATE_SELECT_REJECTED', 'PARENT_SMSES_SMS', 'Reject resevation', 'Reject resevation', 'backend'),
(3509, 'SMSES_SMS_MESSAGE', 'PARENT_SMSES_SMS', 'Message', 'Message', 'backend'),
(3510, 'SMSES_SMS_LOADED', 'PARENT_SMSES_SMS', 'SMS templates loaded.', 'SMS templates loaded.', 'backend'),
(3511, 'PARENT_SMSES_ADD_SMS', '', 'SMS templates - Add templates', 'SMS templates - Add templates', 'backend'),
(3512, 'SMSES_ADD_SMS_NAME', 'PARENT_SMSES_ADD_SMS', 'New SMS templates', 'New SMS templates', 'backend'),
(3513, 'SMSES_ADD_SMS_SUBMIT', 'PARENT_SMSES_ADD_SMS', 'Add SMS templates', 'Add SMS templates', 'backend'),
(3514, 'SMSES_ADD_SMS_ADDING', 'PARENT_SMSES_ADD_SMS', 'Adding new SMS templates ...', 'Adding new SMS templates ...', 'backend'),
(3515, 'SMSES_ADD_SMS_SUCCESS', 'PARENT_SMSES_ADD_SMS', 'You have succesfully added new SMS templates.', 'You have succesfully added new SMS templates.', 'backend'),
(3516, 'PARENT_SMSES_DELETE_SMS', '', 'SMS templates - Delete templates', 'SMS templates - Delete templates', 'backend'),
(3517, 'SMSES_DELETE_SMS_CONFIRMATION', 'PARENT_SMSES_DELETE_SMS', 'Are you sure you want to delete the SMS templates?', 'Are you sure you want to delete the SMS templates?', 'backend'),
(3518, 'SMSES_DELETE_SMS_SUBMIT', 'PARENT_SMSES_DELETE_SMS', 'Delete SMS templates', 'Delete SMS templates', 'backend'),
(3519, 'SMSES_DELETE_SMS_DELETING', 'PARENT_SMSES_DELETE_SMS', 'Deleting SMS templates ...', 'Deleting SMS templates ...', 'backend'),
(3520, 'SMSES_DELETE_SMS_SUCCESS', 'PARENT_SMSES_DELETE_SMS', 'You have succesfully deleted the SMS templates.', 'You have succesfully deleted the SMS templates.', 'backend'),
(3521, 'PARENT_SMSES_HELP', '', 'SMS templates - Help', 'SMS templates - Help', 'backend'),
(3522, 'SMSES_HELP', 'PARENT_SMSES_HELP', 'Click on a templates item to open the editing area.', 'Click on a templates item to open the editing area.', 'backend'),
(3523, 'SMSES_ADD_SMS_HELP', 'PARENT_SMSES_HELP', 'Click on the \"plus\" icon to add SMS templates.', 'Click on the \"plus\" icon to add SMS templates.', 'backend'),
(3524, 'SMSES_SMS_HELP', 'PARENT_SMSES_HELP', 'Click the \"trash\" icon to delete the SMS.', 'Click the \"trash\" icon to delete the SMS.', 'backend'),
(3525, 'SMSES_SMS_NAME_HELP', 'PARENT_SMSES_HELP', 'Change SMS templates name.', 'Change SMS templates name.', 'backend'),
(3526, 'SMSES_SMS_LANGUAGE_HELP', 'PARENT_SMSES_HELP', 'Change to the language you want to edit the SMS templates.', 'Change to the language you want to edit the SMS templates.', 'backend'),
(3527, 'SMSES_SMS_TEMPLATE_SELECT_HELP', 'PARENT_SMSES_HELP', 'Select the template you want to edit and modify the message.', 'Select the template you want to edit and modify the message.', 'backend'),
(3528, 'SETTINGS_GENERAL_REFERRAL_ID', 'PARENT_SETTINGS', 'Referral ID', 'Referral ID', 'backend'),
(3529, 'SETTINGS_GENERAL_REFERRAL_DISPLAY', 'PARENT_SETTINGS', 'Referral display', 'Referral display', 'backend'),
(3530, 'SETTINGS_GENERAL_REFERRAL_ID_HELP', 'PARENT_SETTINGS_HELP', 'Enter your referral ID.', 'Enter your referral ID.', 'backend'),
(3531, 'SETTINGS_GENERAL_REFERRAL_DISPLAY_HELP', 'PARENT_SETTINGS_HELP', 'Enable if you want to display a link with the referral code in front-end.', 'Enable if you want to display a link with the referral code in front-end.', 'backend'),
(3533, 'SETTINGS_NOTIFICATIONS_ADMIN_EMAIL_SENDER', 'PARENT_SETTINGS_NOTIFICATIONS', 'Admin email sender', 'Admin email sender', 'backend'),
(3534, 'SETTINGS_NOTIFICATIONS_ADMIN_EMAIL_SENDER_HELP', 'PARENT_SETTINGS_NOTIFICATIONS_HELP', 'Add the same email (or a different one) as for admin in order to create a filter in your webclient. Recommended if your notifications end up in the spam folder.', 'Add the same email (or a different one) as for admin in order to create a filter in your webclient. Recommended if your notifications end up in the spam folder.', 'backend'),
(3535, 'CALENDARS_CALENDAR_FORM_SUBMIT', 'PARENT_CALENDARS_CALENDAR_FORM', 'Submit', 'Submit', 'backend'),
(3536, 'CALENDARS_CALENDAR_FORM_RESET', 'PARENT_CALENDARS_CALENDAR_FORM', 'Reset', 'Reset', 'backend'),
(3537, 'CALENDARS_CALENDAR_FORM_CANCEL', 'PARENT_CALENDARS_CALENDAR_FORM', 'Cancel', 'Cancel', 'backend'),
(3539, 'PARENT_PRO', '', 'Pro', 'Pro', 'backend'),
(3540, 'WORDPRESS_BOOKING_FEATURES_TITLE', 'PARENT_PRO', 'Features', 'Features', 'backend'),
(3541, 'WORDPRESS_BOOKING_FEATURES_MAIN_TITLE', 'PARENT_PRO', 'Why choose PRO?', 'Why choose PRO?', 'backend'),
(3542, 'WORDPRESS_BOOKING_FEATURES_DESCRIPTION', 'PARENT_PRO', 'The booking system comes with a huge set of amazing features. View the list, compare FREE and PRO versions, and decide which is best suited for your needs.', 'The booking system comes with a huge set of amazing features. View the list, compare FREE and PRO versions, and decide which is best suited for your needs.', 'backend'),
(3543, 'WORDPRESS_BOOKING_FEATURES_FREE', 'PARENT_PRO', 'Free', 'Free', 'backend'),
(3544, 'WORDPRESS_BOOKING_FEATURES_DOWNLOAD', 'PARENT_PRO', 'Download', 'Download', 'backend'),
(3545, 'WORDPRESS_BOOKING_FEATURES_STANDARD', 'PARENT_PRO', 'Standard', 'Standard', 'backend'),
(3546, 'WORDPRESS_BOOKING_FEATURES_PRICING', 'PARENT_PRO', 'Pricing', 'Pricing', 'backend'),
(3547, 'WORDPRESS_BOOKING_FEATURES_FROM', 'PARENT_PRO', 'from', 'from', 'backend'),
(3548, 'WORDPRESS_BOOKING_FEATURES_GET', 'PARENT_PRO', 'Get', 'Get', 'backend'),
(3549, 'WORDPRESS_BOOKING_FEATURES_SHOW', 'PARENT_PRO', 'Show More', 'Show More', 'backend'),
(3550, 'WORDPRESS_BOOKING_FEATURES_HIDE', 'PARENT_PRO', 'Hide', 'Hide', 'backend'),
(3551, 'WORDPRESS_BOOKING_FEATURES_BUY', 'PARENT_PRO', 'Buy now', 'Buy now', 'backend'),
(3552, 'WORDPRESS_BOOKING_FEATURES_CALENDARS_TITLE', 'PARENT_PRO', 'Booking calendar', 'Booking calendar', 'backend'),
(3553, 'WORDPRESS_BOOKING_FEATURES_CALENDARS_TEXT1', 'PARENT_PRO', 'A booking calendar is displayed in the front-end, where clients can view availability and can make reservations & appointments.', 'A booking calendar is displayed in the front-end, where clients can view availability and can make reservations & appointments.', 'backend'),
(3554, 'WORDPRESS_BOOKING_FEATURES_CALENDARS_TEXT2', 'PARENT_PRO', 'All administrators & users can create an unlimited number of booking calendars with PRO version.', 'All administrators & users can create an unlimited number of booking calendars with PRO version.', 'backend'),
(3555, 'WORDPRESS_BOOKING_FEATURES_CALENDARS_TEXT3', 'PARENT_PRO', 'Booking calendars can be duplicated with all current data and settings.', 'Booking calendars can be duplicated with all current data and settings.', 'backend'),
(3556, 'WORDPRESS_BOOKING_FEATURES_CALENDARS_TEXT4', 'PARENT_PRO', 'Booking can be stopped x minutes/hours/days in advance.', 'Booking can be stopped x minutes/hours/days in advance.', 'backend'),
(3557, 'WORDPRESS_BOOKING_FEATURES_CALENDARS_TEXT5', 'PARENT_PRO', 'Calendars will display the data depending on users time zones.', 'Calendars will display the data depending on users time zones.', 'backend'),
(3558, 'WORDPRESS_BOOKING_FEATURES_CALENDARS_TEXT6', 'PARENT_PRO', 'Clients can click on the calendar’s days and/or hours to select the booking period they want.', 'Clients can click on the calendar’s days and/or hours to select the booking period they want.', 'backend'),
(3559, 'WORDPRESS_BOOKING_FEATURES_CALENDARS_TEXT7', 'PARENT_PRO', 'Clients can select to display multiple or fewer months for better visualization. The number of months to be initially displayed can be set from calendar settings.', 'Clients can select to display multiple or fewer months for better visualization. The number of months to be initially displayed can be set from calendar settings.', 'backend'),
(3560, 'WORDPRESS_BOOKING_FEATURES_CALENDARS_TEXT8', 'PARENT_PRO', 'Front end booking calendar is responsive and can be viewed on all browsers and devices.', 'Front end booking calendar is responsive and can be viewed on all browsers and devices.', 'backend'),
(3561, 'WORDPRESS_BOOKING_FEATURES_CALENDARS_TEXT9', 'PARENT_PRO', 'Only the calendar can be displayed so that your users can check only availability.', 'Only the calendar can be displayed so that your users can check only availability.', 'backend'),
(3562, 'WORDPRESS_BOOKING_FEATURES_CALENDARS_TEXT10', 'PARENT_PRO', 'Price can be hidden in front end calendar.', 'Price can be hidden in front end calendar.', 'backend'),
(3563, 'WORDPRESS_BOOKING_FEATURES_CALENDARS_TEXT11', 'PARENT_PRO', 'Support for Terms & Conditions.', 'Support for Terms & Conditions.', 'backend'),
(3564, 'WORDPRESS_BOOKING_FEATURES_CALENDARS_TEXT12', 'PARENT_PRO', 'The booking calendar is AJAX powered, so there is no need to refresh the page to make a reservation, update schedule ...', 'The booking calendar is AJAX powered, so there is no need to refresh the page to make a reservation, update schedule ...', 'backend'),
(3565, 'WORDPRESS_BOOKING_FEATURES_CALENDARS_TEXT13', 'PARENT_PRO', 'The booking calendar contains a sidebar where clients can search availability, they can select the number of rooms/items they want, can select extras & services, can use coupons/vouchers, can view reservation summary with discounts & taxes/fees and can enter their details in a customizable form.', 'The booking calendar contains a sidebar where clients can search availability, they can select the number of rooms/items they want, can select extras & services, can use coupons/vouchers, can view reservation summary with discounts & taxes/fees and can enter their details in a customizable form.', 'backend'),
(3566, 'WORDPRESS_BOOKING_FEATURES_CALENDARS_TEXT14', 'PARENT_PRO', 'The calendar’s sidebar view is customizable.', 'The calendar’s sidebar view is customizable.', 'backend'),
(3567, 'WORDPRESS_BOOKING_FEATURES_CALENDARS_TEXT15', 'PARENT_PRO', 'The check in/out dates can be in American (MM DD, YYYY) or European (DD MM YYYY) format.', 'The check in/out dates can be in American (MM DD, YYYY) or European (DD MM YYYY) format.', 'backend');
INSERT INTO `wp_dopbsp_translation_en` (`id`, `key_data`, `parent_key`, `text_data`, `translation`, `location`) VALUES
(3568, 'WORDPRESS_BOOKING_FEATURES_CALENDARS_TEXT16', 'PARENT_PRO', 'The back end booking calendar is similar to the front end version so that administrators can have a very familiar way to add information ... what they see the clients see.', 'The back end booking calendar is similar to the front end version so that administrators can have a very familiar way to add information ... what they see the clients see.', 'backend'),
(3569, 'WORDPRESS_BOOKING_FEATURES_CALENDARS_TEXT17', 'PARENT_PRO', 'You can set the first day from which the calendar will start.', 'You can set the first day from which the calendar will start.', 'backend'),
(3570, 'WORDPRESS_BOOKING_FEATURES_COUPONS_TITLE', 'PARENT_PRO', 'Coupons & vouchers', 'Coupons & vouchers', 'backend'),
(3571, 'WORDPRESS_BOOKING_FEATURES_COUPONS_TEXT1', 'PARENT_PRO', 'Create coupon/voucher codes for your clients.', 'Create coupon/voucher codes for your clients.', 'backend'),
(3572, 'WORDPRESS_BOOKING_FEATURES_COUPONS_TEXT2', 'PARENT_PRO', 'The value for coupons can be negative or positive, fixed or percent, once or by day/hour.', 'The value for coupons can be negative or positive, fixed or percent, once or by day/hour.', 'backend'),
(3573, 'WORDPRESS_BOOKING_FEATURES_COUPONS_TEXT3', 'PARENT_PRO', 'You can set date/time when the coupons can be used.', 'You can set date/time when the coupons can be used.', 'backend'),
(3574, 'WORDPRESS_BOOKING_FEATURES_COUPONS_TEXT4', 'PARENT_PRO', 'You can create unlimited number of coupons, to use with one or multiple calendars or you can use multiple coupons in one calendar.', 'You can create unlimited number of coupons, to use with one or multiple calendars or you can use multiple coupons in one calendar.', 'backend'),
(3575, 'WORDPRESS_BOOKING_FEATURES_CSS_TEMPLATES_TITLE', 'PARENT_PRO', 'Support of multiple CSS Templates', 'Support of multiple CSS Templates', 'backend'),
(3576, 'WORDPRESS_BOOKING_FEATURES_CSS_TEMPLATES_TEXT1', 'PARENT_PRO', 'You have the possibility to create an unlimited number of CSS Templates to customize your front-end booking calendars.', 'You have the possibility to create an unlimited number of CSS Templates to customize your front-end booking calendars.', 'backend'),
(3577, 'WORDPRESS_BOOKING_FEATURES_CURRENCIES_TITLE', 'PARENT_PRO', 'Multi-currency support', 'Multi-currency support', 'backend'),
(3578, 'WORDPRESS_BOOKING_FEATURES_CURRENCIES_TEXT1', 'PARENT_PRO', 'Any currency can be used with your booking calendar.', 'Any currency can be used with your booking calendar.', 'backend'),
(3579, 'WORDPRESS_BOOKING_FEATURES_CURRENCIES_TEXT2', 'PARENT_PRO', 'Currency display can customize to show before or after price.', 'Currency display can customize to show before or after price.', 'backend'),
(3580, 'WORDPRESS_BOOKING_FEATURES_CURRENCIES_TEXT3', 'PARENT_PRO', 'You can add your own currency using hooks.', 'You can add your own currency using hooks.', 'backend'),
(3581, 'WORDPRESS_BOOKING_FEATURES_CUSTOM_POSTS_TITLE', 'PARENT_PRO', 'Support for custom post type', 'Support for custom post type', 'backend'),
(3582, 'WORDPRESS_BOOKING_FEATURES_CUSTOM_POSTS_TEXT1', 'PARENT_PRO', 'Users have the possibility to create a post with a booking calendar attached.', 'Users have the possibility to create a post with a booking calendar attached.', 'backend'),
(3583, 'WORDPRESS_BOOKING_FEATURES_CUSTOM_POSTS_TEXT2', 'PARENT_PRO', 'The booking calendar availability, reservations & settings can be managed from the post.', 'The booking calendar availability, reservations & settings can be managed from the post.', 'backend'),
(3584, 'WORDPRESS_BOOKING_FEATURES_DAYS_TITLE', 'PARENT_PRO', 'Book days', 'Book days', 'backend'),
(3585, 'WORDPRESS_BOOKING_FEATURES_DAYS_TEXT1', 'PARENT_PRO', 'Add price, promo price, number of items available and information for each day in the front-end booking calendar. In the back end booking calendar administrators can add notes to themselves or other administrators.', 'Add price, promo price, number of items available and information for each day in the front-end booking calendar. In the back end booking calendar administrators can add notes to themselves or other administrators.', 'backend'),
(3586, 'WORDPRESS_BOOKING_FEATURES_DAYS_TEXT2', 'PARENT_PRO', 'Days are displayed in the booking calendar with the following statuses: None, Available, Booked, Special, Unavailable.', 'Days are displayed in the booking calendar with the following statuses: None, Available, Booked, Special, Unavailable.', 'backend'),
(3587, 'WORDPRESS_BOOKING_FEATURES_DAYS_TEXT3', 'PARENT_PRO', 'Days color can be changed from CSS depending on the period.', 'Days color can be changed from CSS depending on the period.', 'backend'),
(3588, 'WORDPRESS_BOOKING_FEATURES_DAYS_TEXT4', 'PARENT_PRO', 'One or more days can be selected.', 'One or more days can be selected.', 'backend'),
(3589, 'WORDPRESS_BOOKING_FEATURES_DAYS_TEXT5', 'PARENT_PRO', 'Set price & status for groups of days. Multiple groups can be booked together.', 'Set price & status for groups of days. Multiple groups can be booked together.', 'backend'),
(3590, 'WORDPRESS_BOOKING_FEATURES_DAYS_TEXT6', 'PARENT_PRO', 'Set the first day of the week that will appear in the booking calendar.', 'Set the first day of the week that will appear in the booking calendar.', 'backend'),
(3591, 'WORDPRESS_BOOKING_FEATURES_DAYS_TEXT7', 'PARENT_PRO', 'Set general available/unavailable weekdays.', 'Set general available/unavailable weekdays.', 'backend'),
(3592, 'WORDPRESS_BOOKING_FEATURES_DAYS_TEXT8', 'PARENT_PRO', 'Support for morning check-out. It will display information in the Booking Calendar if you need to check-in in the afternoon and check-out in the morning. This option is very useful for hotels.', 'Support for morning check-out. It will display information in the Booking Calendar if you need to check-in in the afternoon and check-out in the morning. This option is very useful for hotels.', 'backend'),
(3593, 'WORDPRESS_BOOKING_FEATURES_DAYS_TEXT9', 'PARENT_PRO', 'You can limit the minimum and/or maximum number of days that can be booked.', 'You can limit the minimum and/or maximum number of days that can be booked.', 'backend'),
(3594, 'WORDPRESS_BOOKING_FEATURES_DISCOUNTS_TITLE', 'PARENT_PRO', 'Booking discounts', 'Booking discounts', 'backend'),
(3595, 'WORDPRESS_BOOKING_FEATURES_DISCOUNTS_TEXT1', 'PARENT_PRO', 'Set discounts depending on the number of days/hours/minutes that are in a booking request (reservation).', 'Set discounts depending on the number of days/hours/minutes that are in a booking request (reservation).', 'backend'),
(3596, 'WORDPRESS_BOOKING_FEATURES_DISCOUNTS_TEXT2', 'PARENT_PRO', 'The value for discounts can be negative or positive, fixed or percent, once or by day/hour.', 'The value for discounts can be negative or positive, fixed or percent, once or by day/hour.', 'backend'),
(3597, 'WORDPRESS_BOOKING_FEATURES_DISCOUNTS_TEXT3', 'PARENT_PRO', 'You can create unlimited number of different discounts, to use with one or multiple calendars.', 'You can create unlimited number of different discounts, to use with one or multiple calendars.', 'backend'),
(3598, 'WORDPRESS_BOOKING_FEATURES_DISCOUNTS_TEXT4', 'PARENT_PRO', 'You can set specific discounts for the date/time for which the booking request (reservation) is made.', 'You can set specific discounts for the date/time for which the booking request (reservation) is made.', 'backend'),
(3599, 'WORDPRESS_BOOKING_FEATURES_EMAILS_TITLE', 'PARENT_PRO', 'Email templates & notifications', 'Email templates & notifications', 'backend'),
(3600, 'WORDPRESS_BOOKING_FEATURES_EMAILS_TEXT1', 'PARENT_PRO', 'Create email templates for all possible notifications and languages.', 'Create email templates for all possible notifications and languages.', 'backend'),
(3601, 'WORDPRESS_BOOKING_FEATURES_EMAILS_TEXT2', 'PARENT_PRO', 'Email notifications can be sent with SMTP, PHPMailer class or with PHP mail function.', 'Email notifications can be sent with SMTP, PHPMailer class or with PHP mail function.', 'backend'),
(3602, 'WORDPRESS_BOOKING_FEATURES_EMAILS_TEXT3', 'PARENT_PRO', 'Enable/disable which notifications should be sent.', 'Enable/disable which notifications should be sent.', 'backend'),
(3603, 'WORDPRESS_BOOKING_FEATURES_EMAILS_TEXT4', 'PARENT_PRO', 'Notifications can be sent to multiple admins.', 'Notifications can be sent to multiple admins.', 'backend'),
(3604, 'WORDPRESS_BOOKING_FEATURES_EMAILS_TEXT5', 'PARENT_PRO', 'You can add reply email & name.', 'You can add reply email & name.', 'backend'),
(3605, 'WORDPRESS_BOOKING_FEATURES_EMAILS_TEXT6', 'PARENT_PRO', 'You can create unlimited number of email templates, to use with one or multiple calendars.', 'You can create unlimited number of email templates, to use with one or multiple calendars.', 'backend'),
(3606, 'WORDPRESS_BOOKING_FEATURES_EMAILS_TEXT7', 'PARENT_PRO', 'You can set what information should be included in notifications regarding the booking request (reservation) by using shortcodes in the email templates.', 'You can set what information should be included in notifications regarding the booking request (reservation) by using shortcodes in the email templates.', 'backend'),
(3607, 'WORDPRESS_BOOKING_FEATURES_EXTRAS_TITLE', 'PARENT_PRO', 'Extras (amenities, services & other stuff)', 'Extras (amenities, services & other stuff)', 'backend'),
(3608, 'WORDPRESS_BOOKING_FEATURES_EXTRAS_TEXT1', 'PARENT_PRO', 'Add amenities, services & other stuff, with price or not, to a booking request (reservation).', 'Add amenities, services & other stuff, with price or not, to a booking request (reservation).', 'backend'),
(3609, 'WORDPRESS_BOOKING_FEATURES_EXTRAS_TEXT2', 'PARENT_PRO', 'Extras can have default values.', 'Extras can have default values.', 'backend'),
(3610, 'WORDPRESS_BOOKING_FEATURES_EXTRAS_TEXT3', 'PARENT_PRO', 'Extras groups can be mandatory or not and a client can select a single or multiple items.', 'Extras groups can be mandatory or not and a client can select a single or multiple items.', 'backend'),
(3611, 'WORDPRESS_BOOKING_FEATURES_EXTRAS_TEXT4', 'PARENT_PRO', 'The value for extras can be negative or positive, fixed or percent, once or by day/hour, or 0.', 'The value for extras can be negative or positive, fixed or percent, once or by day/hour, or 0.', 'backend'),
(3612, 'WORDPRESS_BOOKING_FEATURES_EXTRAS_TEXT5', 'PARENT_PRO', 'You can create unlimited number of different extras groups, to use with one or multiple calendars.', 'You can create unlimited number of different extras groups, to use with one or multiple calendars.', 'backend'),
(3613, 'WORDPRESS_BOOKING_FEATURES_FEES_TITLE', 'PARENT_PRO', 'Taxes & Fees', 'Taxes & Fees', 'backend'),
(3614, 'WORDPRESS_BOOKING_FEATURES_FEES_TEXT1', 'PARENT_PRO', 'Add taxes & fees that need to be paid with a booking request (reservation).', 'Add taxes & fees that need to be paid with a booking request (reservation).', 'backend'),
(3615, 'WORDPRESS_BOOKING_FEATURES_FEES_TEXT2', 'PARENT_PRO', 'Taxes & fees included or not in booking request (reservation) price.', 'Taxes & fees included or not in booking request (reservation) price.', 'backend'),
(3616, 'WORDPRESS_BOOKING_FEATURES_FEES_TEXT3', 'PARENT_PRO', 'The value for taxes & fees can be negative or positive, fixed or percent, once or by day/hour.', 'The value for taxes & fees can be negative or positive, fixed or percent, once or by day/hour.', 'backend'),
(3617, 'WORDPRESS_BOOKING_FEATURES_FEES_TEXT4', 'PARENT_PRO', 'You can choose to include or not extras in the calculation of taxes & fees.', 'You can choose to include or not extras in the calculation of taxes & fees.', 'backend'),
(3618, 'WORDPRESS_BOOKING_FEATURES_FEES_TEXT5', 'PARENT_PRO', 'You can create unlimited number of taxes & fees, to use with one or multiple calendars.', 'You can create unlimited number of taxes & fees, to use with one or multiple calendars.', 'backend'),
(3619, 'WORDPRESS_BOOKING_FEATURES_FORMS_TITLE', 'PARENT_PRO', 'Booking forms', 'Booking forms', 'backend'),
(3620, 'WORDPRESS_BOOKING_FEATURES_FORMS_TEXT1', 'PARENT_PRO', 'Create your own custom booking forms to get what information you want from your clients.', 'Create your own custom booking forms to get what information you want from your clients.', 'backend'),
(3621, 'WORDPRESS_BOOKING_FEATURES_FORMS_TEXT2', 'PARENT_PRO', 'The booking form supports Text fields (email, phone, name etc), Text areas, Checkboxes & Dropdowns.', 'The booking form supports Text fields (email, phone, name etc), Text areas, Checkboxes & Dropdowns.', 'backend'),
(3622, 'WORDPRESS_BOOKING_FEATURES_FORMS_TEXT3', 'PARENT_PRO', 'You can create unlimited number of booking forms, to use with one or multiple calendars.', 'You can create unlimited number of booking forms, to use with one or multiple calendars.', 'backend'),
(3623, 'WORDPRESS_BOOKING_FEATURES_HOURS_TITLE', 'PARENT_PRO', 'Book hours/minutes', 'Book hours/minutes', 'backend'),
(3624, 'WORDPRESS_BOOKING_FEATURES_HOURS_TEXT1', 'PARENT_PRO', 'Add price, promo price, number of items available and information for each hour in the front-end booking calendar. In the back end booking calendar administrators can add notes to themselves or other administrators.', 'Add price, promo price, number of items available and information for each hour in the front-end booking calendar. In the back end booking calendar administrators can add notes to themselves or other administrators.', 'backend'),
(3625, 'WORDPRESS_BOOKING_FEATURES_HOURS_TEXT2', 'PARENT_PRO', 'One or more hours can be selected.', 'One or more hours can be selected.', 'backend'),
(3626, 'WORDPRESS_BOOKING_FEATURES_HOURS_TEXT3', 'PARENT_PRO', 'Hours can be in AM/PM or 24 hours format.', 'Hours can be in AM/PM or 24 hours format.', 'backend'),
(3627, 'WORDPRESS_BOOKING_FEATURES_HOURS_TEXT4', 'PARENT_PRO', 'Hours intervals are supported.', 'Hours intervals are supported.', 'backend'),
(3628, 'WORDPRESS_BOOKING_FEATURES_HOURS_TEXT5', 'PARENT_PRO', 'Set price & status for groups of hours. Multiple groups can be booked together.', 'Set price & status for groups of hours. Multiple groups can be booked together.', 'backend'),
(3629, 'WORDPRESS_BOOKING_FEATURES_HOURS_TEXT6', 'PARENT_PRO', 'The hours are displayed in the Booking Calendar with the following statuses: None, Available, Booked, Special, Unavailable.', 'The hours are displayed in the Booking Calendar with the following statuses: None, Available, Booked, Special, Unavailable.', 'backend'),
(3630, 'WORDPRESS_BOOKING_FEATURES_HOURS_TEXT7', 'PARENT_PRO', 'You can limit the minimum and/or maximum number of minutes that can be booked.', 'You can limit the minimum and/or maximum number of minutes that can be booked.', 'backend'),
(3631, 'WORDPRESS_BOOKING_FEATURES_HOURS_TEXT8', 'PARENT_PRO', 'You have complete control over what hours you are using in your booking calendar. You can set same hours by the minute for the whole calendar or you can set different hours for different days.', 'You have complete control over what hours you are using in your booking calendar. You can set same hours by the minute for the whole calendar or you can set different hours for different days.', 'backend'),
(3632, 'WORDPRESS_BOOKING_FEATURES_LANGUAGES_TITLE', 'PARENT_PRO', 'Multilingual support for front-end & back-end', 'Multilingual support for front-end & back-end', 'backend'),
(3633, 'WORDPRESS_BOOKING_FEATURES_LANGUAGES_TEXT1', 'PARENT_PRO', 'All booking system text is changeable (calendars, extras, form fields, taxes ...).', 'All booking system text is changeable (calendars, extras, form fields, taxes ...).', 'backend'),
(3634, 'WORDPRESS_BOOKING_FEATURES_LANGUAGES_TEXT2', 'PARENT_PRO', 'Change translation or text in back-end with an easy “to do” translation tool.', 'Change translation or text in back-end with an easy “to do” translation tool.', 'backend'),
(3635, 'WORDPRESS_BOOKING_FEATURES_LANGUAGES_TEXT3', 'PARENT_PRO', 'Enable/disable languages.', 'Enable/disable languages.', 'backend'),
(3636, 'WORDPRESS_BOOKING_FEATURES_LANGUAGES_TEXT4', 'PARENT_PRO', 'You can add your own language using hooks.', 'You can add your own language using hooks.', 'backend'),
(3637, 'WORDPRESS_BOOKING_FEATURES_LANGUAGES_TEXT5', 'PARENT_PRO', 'WPML plugin is compatible and supported by Pinpoint Booking System.', 'WPML plugin is compatible and supported by Pinpoint Booking System.', 'backend'),
(3638, 'WORDPRESS_BOOKING_FEATURES_LANGUAGES_TEXT6', 'PARENT_PRO', 'Note: Not all languages are translated.', 'Note: Not all languages are translated.', 'backend'),
(3639, 'WORDPRESS_BOOKING_FEATURES_LOCATIONS_TITLE', 'PARENT_PRO', 'Locations', 'Locations', 'backend'),
(3640, 'WORDPRESS_BOOKING_FEATURES_LOCATIONS_TEXT1', 'PARENT_PRO', 'Locations can be added on a Google map, and it can have multiple calendars attached to it.', 'Locations can be added on a Google map, and it can have multiple calendars attached to it.', 'backend'),
(3641, 'WORDPRESS_BOOKING_FEATURES_LOCATIONS_TEXT2', 'PARENT_PRO', 'The locations will display on search results when you view the map.', 'The locations will display on search results when you view the map.', 'backend'),
(3642, 'WORDPRESS_BOOKING_FEATURES_LOCATIONS_TEXT3', 'PARENT_PRO', 'Your business location can be shared on PINPOINT.WORLD', 'Your business location can be shared on PINPOINT.WORLD', 'backend'),
(3643, 'WORDPRESS_BOOKING_FEATURES_MULTI_SITES_USERS_TITLE', 'PARENT_PRO', 'Support for Multi-Sites/Multi-Users', 'Support for Multi-Sites/Multi-Users', 'backend'),
(3644, 'WORDPRESS_BOOKING_FEATURES_MULTI_SITES_USERS_TEXT1', 'PARENT_PRO', 'Allow administrators to access all calendars.', 'Allow administrators to access all calendars.', 'backend'),
(3645, 'WORDPRESS_BOOKING_FEATURES_MULTI_SITES_USERS_TEXT2', 'PARENT_PRO', 'Allow users access to the booking system.', 'Allow users access to the booking system.', 'backend'),
(3646, 'WORDPRESS_BOOKING_FEATURES_MULTI_SITES_USERS_TEXT3', 'PARENT_PRO', 'Allow users access to booking system custom post types.', 'Allow users access to booking system custom post types.', 'backend'),
(3647, 'WORDPRESS_BOOKING_FEATURES_MULTI_SITES_USERS_TEXT4', 'PARENT_PRO', 'Allow administrators to create booking calendars and give access to different users.', 'Allow administrators to create booking calendars and give access to different users.', 'backend'),
(3648, 'WORDPRESS_BOOKING_FEATURES_PAYMENTS_TITLE', 'PARENT_PRO', 'Payment systems', 'Payment systems', 'backend'),
(3649, 'WORDPRESS_BOOKING_FEATURES_PAYMENTS_TEXT1', 'PARENT_PRO', 'Payment cannot be mandatory when a client creates a booking request (reservation).', 'Payment cannot be mandatory when a client creates a booking request (reservation).', 'backend'),
(3650, 'WORDPRESS_BOOKING_FEATURES_PAYMENTS_TEXT2', 'PARENT_PRO', 'Payment can be made when a client arrives at the location he/she booked.', 'Payment can be made when a client arrives at the location he/she booked.', 'backend'),
(3651, 'WORDPRESS_BOOKING_FEATURES_PAYMENTS_TEXT3', 'PARENT_PRO', 'PayPal (credit card supported) is included.', 'PayPal (credit card supported) is included.', 'backend'),
(3652, 'WORDPRESS_BOOKING_FEATURES_PAYMENTS_TEXT4', 'PARENT_PRO', 'Add-ons can be used to add other payment gateways like 2Checkout, Authorize.Net, Braintree, ICEPAY, Mollie, Stripe, and WePay.', 'Add-ons can be used to add other payment gateways like 2Checkout, Authorize.Net, Braintree, ICEPAY, Mollie, Stripe, and WePay.', 'backend'),
(3653, 'WORDPRESS_BOOKING_FEATURES_PAYMENTS_TEXT5', 'PARENT_PRO', 'Billing and shipping addresses can be added to payment systems.', 'Billing and shipping addresses can be added to payment systems.', 'backend'),
(3654, 'WORDPRESS_BOOKING_FEATURES_PAYMENTS_TEXT6', 'PARENT_PRO', 'Deposits can also be used with all payment gateways, and clients can pay only a percent or fixed amount of the sum or the full value of their booking.', 'Deposits can also be used with all payment gateways, and clients can pay only a percent or fixed amount of the sum or the full value of their booking.', 'backend'),
(3655, 'WORDPRESS_BOOKING_FEATURES_PAYMENTS_TEXT7', 'PARENT_PRO', 'Each payment system has a refund function included.', 'Each payment system has a refund function included.', 'backend'),
(3656, 'WORDPRESS_BOOKING_FEATURES_RESERVATIONS_TITLE', 'PARENT_PRO', 'Reservations', 'Reservations', 'backend'),
(3657, 'WORDPRESS_BOOKING_FEATURES_RESERVATIONS_TEXT1', 'PARENT_PRO', 'Administrators have the possibility to add, approve, reject, edit, cancel or delete a booking request (reservation).', 'Administrators have the possibility to add, approve, reject, edit, cancel or delete a booking request (reservation).', 'backend'),
(3658, 'WORDPRESS_BOOKING_FEATURES_RESERVATIONS_TEXT2', 'PARENT_PRO', 'Administrators have the possibility to filter and/or search throw booking requests (reservations).', 'Administrators have the possibility to filter and/or search throw booking requests (reservations).', 'backend'),
(3659, 'WORDPRESS_BOOKING_FEATURES_RESERVATIONS_TEXT3', 'PARENT_PRO', 'Booking requests (reservations) can be instantly approved or can be approved/rejected by administrators. The booking calendar will be changed accordingly.', 'Booking requests (reservations) can be instantly approved or can be approved/rejected by administrators. The booking calendar will be changed accordingly.', 'backend'),
(3660, 'WORDPRESS_BOOKING_FEATURES_RESERVATIONS_TEXT4', 'PARENT_PRO', 'Booking requests (reservations) cannot overlap.', 'Booking requests (reservations) cannot overlap.', 'backend'),
(3661, 'WORDPRESS_BOOKING_FEATURES_RESERVATIONS_TEXT5', 'PARENT_PRO', 'Reservations are displayed in a list or in a calendar.', 'Reservations are displayed in a list or in a calendar.', 'backend'),
(3662, 'WORDPRESS_BOOKING_FEATURES_RESERVATIONS_TEXT6', 'PARENT_PRO', 'Reservations can be printed and/or exported to CSV, XLS, ICS & JSON formats.', 'Reservations can be printed and/or exported to CSV, XLS, ICS & JSON formats.', 'backend'),
(3663, 'WORDPRESS_BOOKING_FEATURES_RULES_TITLE', 'PARENT_PRO', 'Booking rules', 'Booking rules', 'backend'),
(3664, 'WORDPRESS_BOOKING_FEATURES_RULES_TEXT1', 'PARENT_PRO', 'Set minimum & maximum number of days/hours/minutes that are permitted in a booking request (reservation).', 'Set minimum & maximum number of days/hours/minutes that are permitted in a booking request (reservation).', 'backend'),
(3665, 'WORDPRESS_BOOKING_FEATURES_SEARCH_TITLE', 'PARENT_PRO', 'Search availability through all calendars', 'Search availability through all calendars', 'backend'),
(3666, 'WORDPRESS_BOOKING_FEATURES_SEARCH_TEXT1', 'PARENT_PRO', 'You can search availability for hours or days, and you can filter results by location and price.', 'You can search availability for hours or days, and you can filter results by location and price.', 'backend'),
(3667, 'WORDPRESS_BOOKING_FEATURES_SEARCH_TEXT2', 'PARENT_PRO', 'Results can be viewed in a list, a grid or by location on a Google map.', 'Results can be viewed in a list, a grid or by location on a Google map.', 'backend'),
(3668, 'WORDPRESS_BOOKING_FEATURES_SEARCH_TEXT3', 'PARENT_PRO', 'If you select a result, you will be redirected to the page where the booking calendar is with search parameters already selected.', 'If you select a result, you will be redirected to the page where the booking calendar is with search parameters already selected.', 'backend'),
(3669, 'WORDPRESS_BOOKING_FEATURES_SMS_TITLE', 'PARENT_PRO', 'SMS notifications', 'SMS notifications', 'backend'),
(3670, 'WORDPRESS_BOOKING_FEATURES_SMS_TEXT1', 'PARENT_PRO', 'SMS can be sent, to you or your clients, about reservations status changes with Clickatell SMS gateway.', 'SMS can be sent, to you or your clients, about reservations status changes with Clickatell SMS gateway.', 'backend'),
(3671, 'WORDPRESS_BOOKING_FEATURES_SYNCHRONIZATION_TITLE', 'PARENT_PRO', 'Synchronization with other systems', 'Synchronization with other systems', 'backend'),
(3672, 'WORDPRESS_BOOKING_FEATURES_SYNCHRONIZATION_TEXT1', 'PARENT_PRO', 'Each Pinpoint booking calendar availability can be synchronized with Google Calendar, iCalendar or Airbnb.', 'Each Pinpoint booking calendar availability can be synchronized with Google Calendar, iCalendar or Airbnb.', 'backend'),
(3673, 'WORDPRESS_BOOKING_FEATURES_TOOLS_TITLE', 'PARENT_PRO', 'Tools', 'Tools', 'backend'),
(3674, 'WORDPRESS_BOOKING_FEATURES_TOOLS_TEXT1', 'PARENT_PRO', 'Pinpoint Booking System has a set of tools to repair technical problems that may appear with your installation.', 'Pinpoint Booking System has a set of tools to repair technical problems that may appear with your installation.', 'backend'),
(3675, 'WORDPRESS_BOOKING_FEATURES_TOOLS_TEXT2', 'PARENT_PRO', '\"Repair database & text\" tool can be used if your installation or update are not done properly, and you need to repair the database or the translation.', '\"Repair database & text\" tool can be used if your installation or update are not done properly, and you need to repair the database or the translation.', 'backend'),
(3676, 'WORDPRESS_BOOKING_FEATURES_TOOLS_TEXT3', 'PARENT_PRO', '\"Repair calendars settings\" tool can be used if a calendar is not behaving as expected after you configure it.', '\"Repair calendars settings\" tool can be used if a calendar is not behaving as expected after you configure it.', 'backend'),
(3677, 'WORDPRESS_BOOKING_FEATURES_TOOLS_TEXT4', 'PARENT_PRO', '\"Repair search settings\" tool can be used if a search module cannot be configured properly.', '\"Repair search settings\" tool can be used if a search module cannot be configured properly.', 'backend'),
(3678, 'WORDPRESS_BOOKING_FEATURES_WIDGETS_TITLE', 'PARENT_PRO', 'Support for Widgets', 'Support for Widgets', 'backend'),
(3679, 'WORDPRESS_BOOKING_FEATURES_WIDGETS_TEXT1', 'PARENT_PRO', 'Add booking calendars in a widget area.', 'Add booking calendars in a widget area.', 'backend'),
(3680, 'WORDPRESS_BOOKING_FEATURES_WIDGETS_TEXT2', 'PARENT_PRO', 'Display a booking calendar sidebar in a widget area.', 'Display a booking calendar sidebar in a widget area.', 'backend'),
(3681, 'WORDPRESS_BOOKING_FEATURES_WOO_TITLE', 'PARENT_PRO', 'Extend with WooCommerce', 'Extend with WooCommerce', 'backend'),
(3682, 'WORDPRESS_BOOKING_FEATURES_WOO_TEXT1', 'PARENT_PRO', 'Configure calendar availability, services, discounts, taxes & fees ... and attach it to a product.', 'Configure calendar availability, services, discounts, taxes & fees ... and attach it to a product.', 'backend'),
(3683, 'WORDPRESS_BOOKING_FEATURES_WOO_TEXT2', 'PARENT_PRO', 'Add bookings to cart and use WooCommerce Extensions for coupons, deposits and more.', 'Add bookings to cart and use WooCommerce Extensions for coupons, deposits and more.', 'backend'),
(3684, 'WORDPRESS_BOOKING_FEATURES_WOO_TEXT3', 'PARENT_PRO', 'All reservations and data is saved both in WooCommerce orders and Pinpoint', 'All reservations and data is saved both in WooCommerce orders and Pinpoint', 'backend'),
(3685, 'WORDPRESS_BOOKING_FEATURES_WOO_TEXT4', 'PARENT_PRO', 'And the most important part ... you can use all the payment gateways and other plugins offered by WooCommerce.', 'And the most important part ... you can use all the payment gateways and other plugins offered by WooCommerce.', 'backend'),
(3686, 'RESERVATIONS_RESERVATION_PRINT', 'PARENT_RESERVATIONS_RESERVATION', 'Print', 'Print', 'backend'),
(3687, 'RESERVATIONS_RESERVATION_EXPORT', 'PARENT_RESERVATIONS_RESERVATION', 'Export to:', 'Export to:', 'backend'),
(3688, 'RESERVATIONS_HELP', 'PARENT_RESERVATIONS_HELP', 'Manage reservations.', 'Manage reservations.', 'backend'),
(3689, 'RULES_RULE_NAME_HELP', 'PARENT_RULES_HELP', 'Change rule name.', 'Change rule name.', 'backend'),
(3691, 'SETTINGS_GENERAL_GOOGLE_MAP_API_KEY', 'PARENT_SETTINGS', 'Google Map API key', 'Google Map API key', 'backend'),
(3692, 'SETTINGS_GENERAL_GOOGLE_MAP_API_KEY_HELP', 'PARENT_SETTINGS_HELP', 'Enter Google Map API key.', 'Enter Google Map API key.', 'backend'),
(3693, 'SETTINGS_CALENDAR_GENERAL_MAXIMUM_NO_AVAILABLE', 'PARENT_SETTINGS_CALENDAR', 'Maximum no available', 'Maximum no available', 'backend'),
(3694, 'SETTINGS_CALENDAR_GOOGLE_PROJECT_ID', 'PARENT_SETTINGS_CALENDAR', 'Project ID', 'Project ID', 'backend'),
(3696, 'SETTINGS_CALENDAR_GOOGLE_TOKEN_URI', 'PARENT_SETTINGS_CALENDAR', 'Token URI', 'Token URI', 'backend'),
(3697, 'SETTINGS_CALENDAR_GENERAL_MAXIMUM_NO_AVAILABLE_HELP', 'PARENT_SETTINGS_CALENDAR_HELP', 'Default value: 1000. Set maximum no available from sidebar ( frontend ).', 'Default value: 1000. Set maximum no available from sidebar ( frontend ).', 'backend'),
(3698, 'SETTINGS_CALENDAR_DEPOSIT_PAY_FULL_AMOUNT_HELP', 'PARENT_SETTINGS_CALENDAR_HELP', 'Default value: Enabled. Enable Pay full amount option.', 'Default value: Enabled. Enable Pay full amount option.', 'backend'),
(3699, 'SETTINGS_NOTIFICATIONS_SMS_CLICKATELL_TEMPLATES', 'PARENT_SETTINGS_NOTIFICATIONS', 'SMS templates', 'SMS templates', 'backend'),
(3700, 'SETTINGS_NOTIFICATIONS_SMS_CLICKATELL_2WAY', 'PARENT_SETTINGS_NOTIFICATIONS', 'Enable 2 Way option', 'Enable 2 Way option', 'backend'),
(3701, 'SETTINGS_NOTIFICATIONS_SMS_CLICKATELL_TEMPLATES_HELP', 'PARENT_SETTINGS_NOTIFICATIONS', 'SMS templates', 'SMS templates', 'backend'),
(3702, 'SETTINGS_NOTIFICATIONS_SMS_CLICKATELL_2WAY_HELP', 'PARENT_SETTINGS_NOTIFICATIONS', 'Enable this option if you have Clickatell configured to use a 2 way number.', 'Enable this option if you have Clickatell configured to use a 2 way number.', 'backend'),
(3703, 'SETTINGS_PAYMENT_GATEWAYS_ADDONS_REDIRECT', 'PARENT_SETTINGS_PAYMENT_GATEWAYS', 'If you need more payment options please visit the', 'If you need more payment options please visit the', 'backend'),
(3705, 'ORDER_PRIVACY', 'PARENT_ORDER', 'I agree to the Privacy Policy.', 'I agree to the Privacy Policy.', 'all'),
(3706, 'ORDER_PRIVACY_INVALID', 'PARENT_ORDER', 'You must agree with our Privacy Policy to continue.', 'You must agree with our Privacy Policy to continue.', 'all'),
(3708, 'SETTINGS_CALENDAR_ORDER_PRIVACY_ENABLED', 'PARENT_SETTINGS_CALENDAR', 'Enable Privacy Policy', 'Enable Privacy Policy', 'backend'),
(3709, 'SETTINGS_CALENDAR_ORDER_PRIVACY_LINK', 'PARENT_SETTINGS_CALENDAR', 'Privacy Policy link', 'Privacy Policy link', 'backend'),
(3711, 'SETTINGS_CALENDAR_ORDER_PRIVACY_ENABLED_HELP', 'PARENT_SETTINGS_CALENDAR_HELP', 'Default value: Disabled. Enable Privacy Policy check box.', 'Default value: Disabled. Enable Privacy Policy check box.', 'backend'),
(3712, 'SETTINGS_CALENDAR_ORDER_PRIVACY_LINK_HELP', 'PARENT_SETTINGS_CALENDAR_HELP', 'Enter the link to Privacy Policy page.', 'Enter the link to Privacy Policy page.', 'backend');

-- --------------------------------------------------------

--
-- Table structure for table `wp_fusion_forms`
--

CREATE TABLE `wp_fusion_forms` (
  `id` bigint(20) NOT NULL,
  `form_id` bigint(20) NOT NULL,
  `views` bigint(20) DEFAULT 0,
  `submissions_count` bigint(20) DEFAULT 0,
  `data` longtext DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_general_ci;

-- --------------------------------------------------------

--
-- Table structure for table `wp_fusion_form_entries`
--

CREATE TABLE `wp_fusion_form_entries` (
  `id` bigint(20) NOT NULL,
  `submission_id` bigint(20) NOT NULL,
  `form_id` bigint(20) NOT NULL,
  `field_id` bigint(20) NOT NULL,
  `value` longtext DEFAULT NULL,
  `privacy` tinyint(1) DEFAULT NULL,
  `data` longtext DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_general_ci;

-- --------------------------------------------------------

--
-- Table structure for table `wp_fusion_form_fields`
--

CREATE TABLE `wp_fusion_form_fields` (
  `id` bigint(20) NOT NULL,
  `form_id` bigint(20) NOT NULL,
  `field_name` varchar(256) NOT NULL,
  `field_label` varchar(256) DEFAULT NULL,
  `data` longtext DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_general_ci;

-- --------------------------------------------------------

--
-- Table structure for table `wp_fusion_form_submissions`
--

CREATE TABLE `wp_fusion_form_submissions` (
  `id` bigint(20) NOT NULL,
  `form_id` bigint(20) NOT NULL,
  `time` datetime NOT NULL,
  `source_url` varchar(512) NOT NULL,
  `post_id` bigint(20) DEFAULT NULL,
  `user_id` bigint(20) DEFAULT NULL,
  `user_agent` text DEFAULT NULL,
  `ip` varchar(512) DEFAULT NULL,
  `is_read` tinyint(1) DEFAULT NULL,
  `privacy_scrub_date` date DEFAULT NULL,
  `on_privacy_scrub` varchar(20) NOT NULL,
  `data` longtext DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_general_ci;

-- --------------------------------------------------------

--
-- Table structure for table `wp_layerslider`
--

CREATE TABLE `wp_layerslider` (
  `id` int(10) NOT NULL,
  `author` int(10) NOT NULL DEFAULT 0,
  `name` varchar(100) NOT NULL,
  `slug` varchar(100) NOT NULL,
  `data` mediumtext NOT NULL,
  `date_c` int(10) NOT NULL,
  `date_m` int(11) NOT NULL,
  `flag_hidden` tinyint(1) NOT NULL DEFAULT 0,
  `flag_deleted` tinyint(1) NOT NULL DEFAULT 0
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;

-- --------------------------------------------------------

--
-- Table structure for table `wp_links`
--

CREATE TABLE `wp_links` (
  `link_id` bigint(20) UNSIGNED NOT NULL,
  `link_url` varchar(255) NOT NULL DEFAULT '',
  `link_name` varchar(255) NOT NULL DEFAULT '',
  `link_image` varchar(255) NOT NULL DEFAULT '',
  `link_target` varchar(25) NOT NULL DEFAULT '',
  `link_description` varchar(255) NOT NULL DEFAULT '',
  `link_visible` varchar(20) NOT NULL DEFAULT 'Y',
  `link_owner` bigint(20) UNSIGNED NOT NULL DEFAULT 1,
  `link_rating` int(11) NOT NULL DEFAULT 0,
  `link_updated` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
  `link_rel` varchar(255) NOT NULL DEFAULT '',
  `link_notes` mediumtext NOT NULL,
  `link_rss` varchar(255) NOT NULL DEFAULT ''
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;

-- --------------------------------------------------------

--
-- Table structure for table `wp_options`
--

CREATE TABLE `wp_options` (
  `option_id` bigint(20) UNSIGNED NOT NULL,
  `option_name` varchar(191) DEFAULT NULL,
  `option_value` longtext NOT NULL,
  `autoload` varchar(20) NOT NULL DEFAULT 'yes'
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;

--
-- Dumping data for table `wp_options`
--

INSERT INTO `wp_options` (`option_id`, `option_name`, `option_value`, `autoload`) VALUES
(1, 'siteurl', 'https://msla.co.za/lodge', 'yes'),
(2, 'home', 'https://msla.co.za/lodge', 'yes'),
(3, 'blogname', 'Assagay Forest Lodge', 'yes'),
(4, 'blogdescription', 'Private Guest Accommodation', 'yes'),
(5, 'users_can_register', '0', 'yes'),
(6, 'admin_email', 'assagaylodge@msla.co.za', 'yes'),
(7, 'start_of_week', '1', 'yes'),
(8, 'use_balanceTags', '0', 'yes'),
(9, 'use_smilies', '1', 'yes'),
(10, 'require_name_email', '1', 'yes'),
(11, 'comments_notify', '1', 'yes'),
(12, 'posts_per_rss', '10', 'yes'),
(13, 'rss_use_excerpt', '0', 'yes'),
(14, 'mailserver_url', 'mail.example.com', 'yes'),
(15, 'mailserver_login', 'login@example.com', 'yes'),
(16, 'mailserver_pass', 'password', 'yes'),
(17, 'mailserver_port', '110', 'yes'),
(18, 'default_category', '1', 'yes'),
(19, 'default_comment_status', 'open', 'yes'),
(20, 'default_ping_status', 'open', 'yes'),
(21, 'default_pingback_flag', '1', 'yes'),
(22, 'posts_per_page', '10', 'yes'),
(23, 'date_format', 'd/m/Y', 'yes'),
(24, 'time_format', 'g:i a', 'yes'),
(25, 'links_updated_date_format', 'F j, Y g:i a', 'yes'),
(26, 'comment_moderation', '0', 'yes'),
(27, 'moderation_notify', '1', 'yes'),
(28, 'permalink_structure', '/%postname%/', 'yes'),
(30, 'hack_file', '0', 'yes'),
(31, 'blog_charset', 'UTF-8', 'yes'),
(32, 'moderation_keys', '', 'no'),
(33, 'active_plugins', 'a:8:{i:1;s:19:\"akismet/akismet.php\";i:2;s:24:\"booking-system/dopbs.php\";i:3;s:33:\"classic-editor/classic-editor.php\";i:4;s:36:\"contact-form-7/wp-contact-form-7.php\";i:6;s:33:\"fusion-builder/fusion-builder.php\";i:7;s:27:\"fusion-core/fusion-core.php\";i:8;s:41:\"page-or-post-clone/page-or-post-clone.php\";i:9;s:16:\"wp-edit/main.php\";}', 'yes'),
(34, 'category_base', '', 'yes'),
(35, 'ping_sites', 'http://rpc.pingomatic.com/', 'yes'),
(37, 'comment_max_links', '2', 'yes'),
(38, 'gmt_offset', '2', 'yes'),
(39, 'default_email_category', '1', 'yes'),
(40, 'recently_edited', '', 'no'),
(41, 'template', 'Avada', 'yes'),
(42, 'stylesheet', 'Avada', 'yes'),
(45, 'comment_registration', '0', 'yes'),
(46, 'html_type', 'text/html', 'yes'),
(47, 'use_trackback', '0', 'yes'),
(48, 'default_role', 'subscriber', 'yes'),
(49, 'db_version', '57155', 'yes'),
(50, 'uploads_use_yearmonth_folders', '1', 'yes'),
(51, 'upload_path', '', 'yes'),
(52, 'blog_public', '1', 'yes'),
(53, 'default_link_category', '2', 'yes'),
(54, 'show_on_front', 'page', 'yes'),
(55, 'tag_base', '', 'yes'),
(56, 'show_avatars', '1', 'yes'),
(57, 'avatar_rating', 'G', 'yes'),
(58, 'upload_url_path', '', 'yes'),
(59, 'thumbnail_size_w', '150', 'yes'),
(60, 'thumbnail_size_h', '150', 'yes'),
(61, 'thumbnail_crop', '1', 'yes'),
(62, 'medium_size_w', '300', 'yes'),
(63, 'medium_size_h', '300', 'yes'),
(64, 'avatar_default', 'mystery', 'yes'),
(65, 'large_size_w', '1024', 'yes'),
(66, 'large_size_h', '1024', 'yes'),
(67, 'image_default_link_type', 'file', 'yes'),
(68, 'image_default_size', '', 'yes'),
(69, 'image_default_align', '', 'yes'),
(70, 'close_comments_for_old_posts', '0', 'yes'),
(71, 'close_comments_days_old', '14', 'yes'),
(72, 'thread_comments', '1', 'yes'),
(73, 'thread_comments_depth', '5', 'yes'),
(74, 'page_comments', '0', 'yes'),
(75, 'comments_per_page', '50', 'yes'),
(76, 'default_comments_page', 'newest', 'yes'),
(77, 'comment_order', 'asc', 'yes'),
(78, 'sticky_posts', 'a:0:{}', 'yes'),
(79, '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'),
(80, 'widget_text', 'a:4:{i:1;a:0:{}i:2;a:3:{s:5:\"title\";s:21:\"WEEKEND ONLY SPECIALS\";s:4:\"text\";s:42:\"15% Discount. Arrive Friday Depart Sunday.\";s:6:\"filter\";b:0;}i:3;a:3:{s:5:\"title\";s:21:\"WEEKDAY ONLY SPECIALS\";s:4:\"text\";s:86:\"Book any 3 weekdays, Monday, Tuesday, Wednesday or Thursday, and only pay for 2 days. \";s:6:\"filter\";b:0;}s:12:\"_multiwidget\";i:1;}', 'yes'),
(81, 'widget_rss', 'a:2:{i:1;a:0:{}s:12:\"_multiwidget\";i:1;}', 'yes'),
(82, 'uninstall_plugins', 'a:5:{s:27:\"LayerSlider/layerslider.php\";s:29:\"layerslider_uninstall_scripts\";s:17:\"dopbsp/dopbsp.php\";s:15:\"DOPBSPUninstall\";s:24:\"booking-system/dopbs.php\";s:15:\"DOPBSPUninstall\";s:21:\"solidres/solidres.php\";s:18:\"solidres_uninstall\";s:33:\"classic-editor/classic-editor.php\";a:2:{i:0;s:14:\"Classic_Editor\";i:1;s:9:\"uninstall\";}}', 'no'),
(83, 'timezone_string', '', 'yes'),
(84, 'page_for_posts', '0', 'yes'),
(85, 'page_on_front', '7', 'yes'),
(86, 'default_post_format', '0', 'yes'),
(87, 'link_manager_enabled', '0', 'yes'),
(88, 'initial_db_version', '31536', 'yes'),
(89, 'wp_user_roles', 'a:7:{s:13:\"administrator\";a:2:{s:4:\"name\";s:13:\"Administrator\";s:12:\"capabilities\";a:131:{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:17:\"edit_shop_webhook\";b:1;s:17:\"read_shop_webhook\";b:1;s:19:\"delete_shop_webhook\";b:1;s:18:\"edit_shop_webhooks\";b:1;s:25:\"edit_others_shop_webhooks\";b:1;s:21:\"publish_shop_webhooks\";b:1;s:26:\"read_private_shop_webhooks\";b:1;s:20:\"delete_shop_webhooks\";b:1;s:28:\"delete_private_shop_webhooks\";b:1;s:30:\"delete_published_shop_webhooks\";b:1;s:27:\"delete_others_shop_webhooks\";b:1;s:26:\"edit_private_shop_webhooks\";b:1;s:28:\"edit_published_shop_webhooks\";b:1;s:25:\"manage_shop_webhook_terms\";b:1;s:23:\"edit_shop_webhook_terms\";b:1;s:25:\"delete_shop_webhook_terms\";b:1;s:25:\"assign_shop_webhook_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:3:{s:4:\"read\";b:1;s:10:\"edit_posts\";b:0;s:12:\"delete_posts\";b:0;}}s:12:\"shop_manager\";a:2:{s:4:\"name\";s:12:\"Shop Manager\";s:12:\"capabilities\";a:110:{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_users\";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:15:\"unfiltered_html\";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:\"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:17:\"edit_shop_webhook\";b:1;s:17:\"read_shop_webhook\";b:1;s:19:\"delete_shop_webhook\";b:1;s:18:\"edit_shop_webhooks\";b:1;s:25:\"edit_others_shop_webhooks\";b:1;s:21:\"publish_shop_webhooks\";b:1;s:26:\"read_private_shop_webhooks\";b:1;s:20:\"delete_shop_webhooks\";b:1;s:28:\"delete_private_shop_webhooks\";b:1;s:30:\"delete_published_shop_webhooks\";b:1;s:27:\"delete_others_shop_webhooks\";b:1;s:26:\"edit_private_shop_webhooks\";b:1;s:28:\"edit_published_shop_webhooks\";b:1;s:25:\"manage_shop_webhook_terms\";b:1;s:23:\"edit_shop_webhook_terms\";b:1;s:25:\"delete_shop_webhook_terms\";b:1;s:25:\"assign_shop_webhook_terms\";b:1;}}}', 'yes'),
(90, '_transient_random_seed', '623c7f3c7e9d4aebb2a7c825d0748af1', 'yes'),
(91, 'widget_search', 'a:2:{i:2;a:1:{s:5:\"title\";s:0:\"\";}s:12:\"_multiwidget\";i:1;}', 'yes'),
(92, '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'),
(93, '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'),
(94, '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'),
(95, 'widget_meta', 'a:2:{i:2;a:1:{s:5:\"title\";s:0:\"\";}s:12:\"_multiwidget\";i:1;}', 'yes'),
(96, 'sidebars_widgets', 'a:9:{s:19:\"wp_inactive_widgets\";a:0:{}s:18:\"avada-blog-sidebar\";a:6:{i:0;s:8:\"search-2\";i:1;s:14:\"recent-posts-2\";i:2;s:17:\"recent-comments-2\";i:3;s:10:\"archives-2\";i:4;s:12:\"categories-2\";i:5;s:6:\"meta-2\";}s:21:\"avada-footer-widget-1\";a:0:{}s:21:\"avada-footer-widget-2\";a:0:{}s:21:\"avada-footer-widget-3\";a:0:{}s:21:\"avada-footer-widget-4\";a:0:{}s:25:\"avada-slidingbar-widget-1\";a:1:{i:0;s:6:\"text-3\";}s:25:\"avada-slidingbar-widget-2\";a:1:{i:0;s:6:\"text-2\";}s:13:\"array_version\";i:3;}', 'yes'),
(98, 'cron', 'a:12:{i:1743528058;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:1743538414;a:1:{s:21:\"wp_update_user_counts\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:10:\"twicedaily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:43200;}}}i:1743558187;a:1:{s:16:\"wp_version_check\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:10:\"twicedaily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:43200;}}}i:1743558352;a:2:{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:1743569086;a:1:{s:24:\"akismet_scheduled_delete\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:5:\"daily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:86400;}}}i:1743576487;a:1:{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:1743591359;a:1:{s:32:\"recovery_mode_clean_expired_keys\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:5:\"daily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:86400;}}}i:1743601579;a:1:{s:19:\"wp_scheduled_delete\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:5:\"daily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:86400;}}}i:1743602487;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:1743678039;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;}}}i:1744100149;a:1:{s:30:\"wp_delete_temp_updater_backups\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:6:\"weekly\";s:4:\"args\";a:0:{}s:8:\"interval\";i:604800;}}}s:7:\"version\";i:2;}', 'yes'),
(100, 'nonce_key', 'ky9W3AoW|LES|a `t<|B-NGm_}A6mHjUepC/Q fQ}qcW)OM&VERD2c_)[Iikmd+u', 'yes'),
(101, 'nonce_salt', '$rs}5([mkW|:YL%WMA/6^/}p8P,[grHnsy5.}dm<AKg3PVShN+nrqVPFVWMD|el3', 'yes'),
(103, 'logged_in_key', '|-UcPhY?i>;Gg2EaEIX+^1)5`<|;Gs%=}Nj>IY>1>?z8G|7Ub4(IRQ.ete<&FA0f', 'yes'),
(104, 'logged_in_salt', ']6x~MTBE5iJxpNx6LdTIvCpx1p.pQgAZBQ*p+F|MnD. #y-bWy4iX-j%S8b9;99Q', 'yes'),
(105, 'auth_key', 'zax-ko;:zlB)=&7rVxx@PdrwZ|n1cI4iDdF5*%>Hbya%R&E4P:yt+l qC&3+>rre', 'yes'),
(106, 'auth_salt', '<:D3U0:`7.#kh#;Ltq/]ydF[]$7<P(rca/*~aa>f)pe-9|_?^<s4$Px+(&+yeY>D', 'yes'),
(124, 'recently_activated', 'a:0:{}', 'yes'),
(137, 'wpcf7', 'a:2:{s:7:\"version\";s:5:\"5.9.3\";s:13:\"bulk_validate\";a:4:{s:9:\"timestamp\";i:1712649763;s:7:\"version\";s:7:\"5.5.6.1\";s:11:\"count_valid\";i:3;s:13:\"count_invalid\";i:0;}}', 'yes'),
(138, 'ls-plugin-version', '5.3.2', 'yes'),
(139, 'ls-db-version', '5.0.0', 'yes'),
(140, 'ls-installed', '1', 'yes'),
(141, 'ls-google-fonts', 'a:4:{i:0;a:2:{s:5:\"param\";s:28:\"Lato:100,300,regular,700,900\";s:5:\"admin\";b:0;}i:1;a:2:{s:5:\"param\";s:13:\"Open+Sans:300\";s:5:\"admin\";b:0;}i:2;a:2:{s:5:\"param\";s:20:\"Indie+Flower:regular\";s:5:\"admin\";b:0;}i:3;a:2:{s:5:\"param\";s:22:\"Oswald:300,regular,700\";s:5:\"admin\";b:0;}}', 'yes'),
(142, 'ls-date-installed', '1438955238', 'yes'),
(144, 'wp_edit_buttons', 'a:3:{s:8:\"toolbar1\";s:146:\"fontselect fontsizeselect styleselect bold italic strikethrough bullist numlist blockquote alignleft aligncenter alignright link unlink wp_more hr\";s:8:\"toolbar2\";s:125:\"formatselect underline alignjustify forecolor backcolor pastetext removeformat charmap outdent indent undo redo table wp_help\";s:14:\"tmce_container\";s:187:\"media rtl ltr anchor code emoticons inserttime wp_page preview print searchreplace visualblocks subscript superscript image_orig advlink acheck abbr columnShortcodes nonbreaking eqneditor\";}', 'yes'),
(145, 'wp_edit_global', 'a:3:{s:12:\"jquery_theme\";s:10:\"smoothness\";s:19:\"disable_admin_links\";s:1:\"0\";s:22:\"disable_fancy_tooltips\";s:1:\"0\";}', 'yes'),
(146, 'wp_edit_general', 'a:7:{s:19:\"linebreak_shortcode\";s:1:\"0\";s:21:\"shortcodes_in_widgets\";s:1:\"0\";s:22:\"shortcodes_in_excerpts\";s:1:\"0\";s:19:\"post_excerpt_editor\";s:1:\"0\";s:19:\"page_excerpt_editor\";s:1:\"0\";s:14:\"profile_editor\";s:1:\"0\";s:11:\"php_widgets\";s:1:\"0\";}', 'yes'),
(147, 'wp_edit_posts', 'a:8:{s:16:\"post_title_field\";s:16:\"Enter title here\";s:18:\"max_post_revisions\";s:0:\"\";s:18:\"max_page_revisions\";s:0:\"\";s:16:\"delete_revisions\";s:1:\"0\";s:16:\"hide_admin_posts\";s:0:\"\";s:16:\"hide_admin_pages\";s:0:\"\";s:15:\"disable_wpautop\";s:1:\"0\";s:17:\"column_shortcodes\";s:1:\"0\";}', 'yes'),
(148, 'wp_edit_editor', 'a:3:{s:21:\"editor_add_pre_styles\";s:1:\"0\";s:28:\"default_editor_fontsize_type\";s:2:\"pt\";s:30:\"default_editor_fontsize_values\";s:0:\"\";}', 'yes'),
(149, 'wp_edit_extras', 'a:1:{s:12:\"signoff_text\";s:25:\"Please enter text here...\";}', 'yes'),
(151, 'wp_edit_install', '2015-08-07', 'yes'),
(152, 'theme_mods_twentyfifteen', 'a:2:{s:18:\"nav_menu_locations\";a:3:{s:15:\"main_navigation\";i:31;s:17:\"sticky_navigation\";i:31;s:14:\"top_navigation\";i:33;}s:16:\"sidebars_widgets\";a:2:{s:4:\"time\";i:1476701434;s:4:\"data\";a:2:{s:19:\"wp_inactive_widgets\";a:2:{i:0;s:6:\"text-2\";i:1;s:6:\"text-3\";}s:9:\"sidebar-1\";a:6:{i:0;s:8:\"search-2\";i:1;s:14:\"recent-posts-2\";i:2;s:17:\"recent-comments-2\";i:3;s:10:\"archives-2\";i:4;s:12:\"categories-2\";i:5;s:6:\"meta-2\";}}}}', 'no'),
(153, 'current_theme', 'Avada - Anzan Digital', 'yes'),
(154, 'theme_mods_Avada-Child-Theme', 'a:4:{i:0;b:0;s:18:\"nav_menu_locations\";a:3:{s:15:\"main_navigation\";i:31;s:17:\"sticky_navigation\";i:31;s:14:\"top_navigation\";i:33;}s:12:\"header_image\";s:13:\"remove-header\";s:16:\"sidebars_widgets\";a:2:{s:4:\"time\";i:1476702497;s:4:\"data\";a:14:{s:19:\"wp_inactive_widgets\";a:0:{}s:18:\"avada-blog-sidebar\";a:6:{i:0;s:8:\"search-2\";i:1;s:14:\"recent-posts-2\";i:2;s:17:\"recent-comments-2\";i:3;s:10:\"archives-2\";i:4;s:12:\"categories-2\";i:5;s:6:\"meta-2\";}s:21:\"avada-footer-widget-1\";a:0:{}s:21:\"avada-footer-widget-2\";a:0:{}s:21:\"avada-footer-widget-3\";a:0:{}s:21:\"avada-footer-widget-4\";a:0:{}s:25:\"avada-slidingbar-widget-1\";a:1:{i:0;s:6:\"text-3\";}s:25:\"avada-slidingbar-widget-2\";a:1:{i:0;s:6:\"text-2\";}s:18:\"orphaned_widgets_1\";a:0:{}s:18:\"orphaned_widgets_2\";a:0:{}s:18:\"orphaned_widgets_3\";a:0:{}s:18:\"orphaned_widgets_4\";a:0:{}s:18:\"orphaned_widgets_5\";a:0:{}s:18:\"orphaned_widgets_6\";a:0:{}}}}', 'no'),
(155, 'theme_switched', '', 'yes');
INSERT INTO `wp_options` (`option_id`, `option_name`, `option_value`, `autoload`) VALUES
(156, 'Avada_options', 'a:786:{s:10:\"responsive\";s:1:\"1\";s:12:\"ipad_potrait\";s:1:\"0\";s:16:\"google_analytics\";s:0:\"\";s:10:\"space_head\";s:0:\"\";s:10:\"space_body\";s:0:\"\";s:6:\"layout\";s:4:\"Wide\";s:10:\"site_width\";s:6:\"1100px\";s:13:\"content_width\";s:3:\"77%\";s:13:\"sidebar_width\";s:3:\"23%\";s:15:\"content_width_2\";s:3:\"58%\";s:17:\"sidebar_2_1_width\";s:3:\"21%\";s:17:\"sidebar_2_2_width\";s:3:\"21%\";s:15:\"header_position\";s:3:\"Top\";s:13:\"header_layout\";s:2:\"v3\";s:17:\"side_header_width\";s:5:\"280px\";s:23:\"side_header_break_point\";s:6:\"1023px\";s:13:\"header_shadow\";s:1:\"0\";s:16:\"header_100_width\";s:1:\"0\";s:15:\"slider_position\";s:5:\"Below\";s:19:\"header_left_content\";s:12:\"Contact Info\";s:20:\"header_right_content\";s:10:\"Navigation\";s:17:\"header_v4_content\";s:18:\"Tagline And Search\";s:13:\"header_number\";s:25:\"Call Us Today! 0317656046\";s:12:\"header_email\";s:15:\"info@msla.co.za\";s:18:\"header_banner_code\";s:0:\"\";s:14:\"header_tagline\";s:19:\"Insert Tagline Here\";s:15:\"header_bg_image\";s:0:\"\";s:14:\"header_bg_full\";s:1:\"0\";s:18:\"header_bg_parallax\";s:1:\"1\";s:16:\"header_bg_repeat\";s:6:\"repeat\";s:17:\"margin_header_top\";s:3:\"0px\";s:20:\"margin_header_bottom\";s:3:\"0px\";s:19:\"padding_header_left\";s:3:\"0px\";s:20:\"padding_header_right\";s:3:\"0px\";s:29:\"header_social_links_font_size\";s:2:\"16\";s:30:\"header_social_links_icon_color\";s:7:\"#ffffff\";s:25:\"header_social_links_boxed\";s:2:\"No\";s:29:\"header_social_links_box_color\";s:7:\"#e8e8e8\";s:32:\"header_social_links_boxed_radius\";s:3:\"4px\";s:33:\"header_social_links_boxed_padding\";s:1:\"8\";s:37:\"header_social_links_tooltip_placement\";s:6:\"Bottom\";s:13:\"header_sticky\";s:1:\"1\";s:20:\"header_sticky_tablet\";s:1:\"0\";s:20:\"header_sticky_mobile\";s:1:\"0\";s:26:\"header_sticky_type2_layout\";s:13:\"menu_and_logo\";s:25:\"header_sticky_nav_padding\";s:0:\"\";s:27:\"header_sticky_nav_font_size\";s:0:\"\";s:4:\"logo\";s:65:\"http://msla.co.za/lodge/wp-content/uploads/2015/09/SMALL-LOGO.png\";s:11:\"logo_retina\";s:0:\"\";s:17:\"retina_logo_width\";s:0:\"\";s:18:\"retina_logo_height\";s:0:\"\";s:18:\"sticky_header_logo\";s:65:\"http://msla.co.za/lodge/wp-content/uploads/2015/09/SMALL-LOGO.png\";s:25:\"sticky_header_logo_retina\";s:0:\"\";s:24:\"sticky_retina_logo_width\";s:0:\"\";s:25:\"sticky_retina_logo_height\";s:0:\"\";s:11:\"mobile_logo\";s:0:\"\";s:18:\"mobile_logo_retina\";s:0:\"\";s:24:\"mobile_retina_logo_width\";s:0:\"\";s:25:\"mobile_retina_logo_height\";s:0:\"\";s:14:\"logo_alignment\";s:4:\"Left\";s:16:\"margin_logo_left\";s:3:\"0px\";s:17:\"margin_logo_right\";s:3:\"0px\";s:15:\"margin_logo_top\";s:4:\"31px\";s:18:\"margin_logo_bottom\";s:4:\"31px\";s:7:\"favicon\";s:0:\"\";s:11:\"iphone_icon\";s:0:\"\";s:18:\"iphone_icon_retina\";s:0:\"\";s:9:\"ipad_icon\";s:0:\"\";s:16:\"ipad_icon_retina\";s:0:\"\";s:15:\"menu_text_align\";s:4:\"left\";s:10:\"nav_height\";s:2:\"83\";s:20:\"nav_highlight_border\";s:1:\"3\";s:11:\"nav_padding\";s:2:\"45\";s:19:\"dropdown_menu_width\";s:5:\"170px\";s:23:\"topmenu_dropwdown_width\";s:5:\"100px\";s:18:\"megamenu_max_width\";s:6:\"1100px\";s:19:\"megamenu_title_size\";s:4:\"18px\";s:15:\"megamenu_shadow\";s:1:\"1\";s:20:\"main_nav_search_icon\";s:1:\"0\";s:20:\"main_nav_icon_circle\";s:1:\"0\";s:18:\"mobile_menu_design\";s:7:\"classic\";s:18:\"mobile_nav_padding\";s:2:\"25\";s:22:\"mobile_menu_text_align\";s:4:\"left\";s:28:\"mobile_menu_icons_top_margin\";s:3:\"0px\";s:22:\"mobile_menu_nav_height\";s:2:\"35\";s:27:\"mobile_nav_submenu_slideout\";s:1:\"1\";s:14:\"page_title_bar\";s:15:\"bar_and_content\";s:19:\"page_title_bar_text\";s:3:\"yes\";s:20:\"page_title_100_width\";s:1:\"0\";s:17:\"page_title_height\";s:4:\"87px\";s:24:\"page_title_mobile_height\";s:4:\"70px\";s:20:\"page_title_alignment\";s:4:\"left\";s:13:\"page_title_bg\";s:85:\"http://localhost/assagaylodge/wp-content/themes/Avada/assets/images/page_title_bg.png\";s:20:\"page_title_bg_retina\";s:0:\"\";s:18:\"page_title_bg_full\";s:1:\"0\";s:22:\"page_title_bg_parallax\";s:1:\"0\";s:17:\"page_title_fading\";s:1:\"0\";s:17:\"page_title_bar_bs\";s:11:\"Breadcrumbs\";s:17:\"breadcrumb_mobile\";s:1:\"0\";s:16:\"breacrumb_prefix\";s:0:\"\";s:20:\"breadcrumb_separator\";s:1:\"/\";s:33:\"breadcrumb_show_post_type_archive\";s:1:\"0\";s:26:\"breadcrumb_show_categories\";s:1:\"1\";s:18:\"slidingbar_widgets\";s:1:\"0\";s:25:\"mobile_slidingbar_widgets\";s:1:\"0\";s:21:\"slidingbar_top_border\";s:1:\"0\";s:23:\"slidingbar_open_on_load\";s:1:\"0\";s:26:\"slidingbar_widgets_columns\";s:1:\"2\";s:16:\"footer_100_width\";s:1:\"0\";s:22:\"footer_special_effects\";s:4:\"none\";s:20:\"footer_sticky_height\";s:0:\"\";s:14:\"footer_widgets\";s:1:\"1\";s:22:\"footer_widgets_columns\";s:1:\"4\";s:16:\"footerw_bg_image\";s:0:\"\";s:15:\"footerw_bg_full\";s:1:\"0\";s:17:\"footerw_bg_repeat\";s:6:\"repeat\";s:14:\"footerw_bg_pos\";s:13:\"center center\";s:23:\"footer_area_top_padding\";s:4:\"43px\";s:26:\"footer_area_bottom_padding\";s:4:\"40px\";s:24:\"footer_area_left_padding\";s:3:\"0px\";s:25:\"footer_area_right_padding\";s:3:\"0px\";s:16:\"footer_copyright\";s:1:\"1\";s:11:\"footer_text\";s:57:\"Copyright 1998 Assagay Forest Lodge | All Rights Reserved\";s:21:\"copyright_top_padding\";s:4:\"18px\";s:24:\"copyright_bottom_padding\";s:4:\"16px\";s:12:\"icons_footer\";s:1:\"1\";s:29:\"footer_social_links_font_size\";s:2:\"20\";s:30:\"footer_social_links_icon_color\";s:7:\"#46494a\";s:25:\"footer_social_links_boxed\";s:2:\"No\";s:29:\"footer_social_links_box_color\";s:7:\"#222222\";s:32:\"footer_social_links_boxed_radius\";s:3:\"4px\";s:33:\"footer_social_links_boxed_padding\";s:1:\"8\";s:37:\"footer_social_links_tooltip_placement\";s:3:\"Top\";s:20:\"pages_global_sidebar\";s:1:\"0\";s:13:\"pages_sidebar\";s:4:\"None\";s:15:\"pages_sidebar_2\";s:4:\"None\";s:19:\"default_sidebar_pos\";s:5:\"Right\";s:24:\"portfolio_global_sidebar\";s:1:\"0\";s:17:\"portfolio_sidebar\";s:4:\"None\";s:19:\"portfolio_sidebar_2\";s:4:\"None\";s:26:\"portfolio_sidebar_position\";s:5:\"Right\";s:25:\"portfolio_archive_sidebar\";s:4:\"None\";s:27:\"portfolio_archive_sidebar_2\";s:4:\"None\";s:20:\"posts_global_sidebar\";s:1:\"0\";s:13:\"posts_sidebar\";s:4:\"None\";s:15:\"posts_sidebar_2\";s:4:\"None\";s:21:\"blog_sidebar_position\";s:5:\"Right\";s:20:\"blog_archive_sidebar\";s:4:\"None\";s:22:\"blog_archive_sidebar_2\";s:4:\"None\";s:18:\"woo_global_sidebar\";s:1:\"0\";s:11:\"woo_sidebar\";s:4:\"None\";s:13:\"woo_sidebar_2\";s:4:\"None\";s:20:\"woo_sidebar_position\";s:5:\"Right\";s:27:\"woocommerce_archive_sidebar\";s:4:\"None\";s:29:\"woocommerce_archive_sidebar_2\";s:4:\"None\";s:22:\"bbpress_global_sidebar\";s:1:\"0\";s:15:\"ppbress_sidebar\";s:4:\"None\";s:17:\"ppbress_sidebar_2\";s:4:\"None\";s:24:\"bbpress_sidebar_position\";s:5:\"Right\";s:14:\"search_sidebar\";s:12:\"Blog Sidebar\";s:16:\"search_sidebar_2\";s:4:\"None\";s:23:\"search_sidebar_position\";s:5:\"Right\";s:8:\"bg_image\";s:0:\"\";s:7:\"bg_full\";s:1:\"0\";s:9:\"bg_repeat\";s:6:\"repeat\";s:8:\"bg_color\";s:7:\"#d7d6d6\";s:17:\"bg_pattern_option\";s:1:\"0\";s:10:\"bg_pattern\";s:8:\"pattern1\";s:16:\"content_bg_image\";s:0:\"\";s:15:\"content_bg_full\";s:1:\"0\";s:17:\"content_bg_repeat\";s:6:\"repeat\";s:16:\"custom_font_woff\";s:0:\"\";s:15:\"custom_font_ttf\";s:0:\"\";s:15:\"custom_font_svg\";s:0:\"\";s:15:\"custom_font_eot\";s:0:\"\";s:11:\"google_body\";s:7:\"PT Sans\";s:10:\"google_nav\";s:10:\"Antic Slab\";s:15:\"google_headings\";s:10:\"Antic Slab\";s:22:\"google_footer_headings\";s:7:\"PT Sans\";s:13:\"google_button\";s:7:\"PT Sans\";s:14:\"gfont_settings\";s:40:\"400,400italic,700,700italic&subset=latin\";s:13:\"standard_body\";s:11:\"Select Font\";s:12:\"standard_nav\";s:11:\"Select Font\";s:17:\"standard_headings\";s:11:\"Select Font\";s:24:\"standard_footer_headings\";s:11:\"Select Font\";s:15:\"standard_button\";s:11:\"Select Font\";s:21:\"typography_responsive\";s:1:\"0\";s:22:\"typography_sensitivity\";s:3:\"0.6\";s:17:\"typography_factor\";s:3:\"1.5\";s:14:\"body_font_size\";s:2:\"13\";s:13:\"nav_font_size\";s:2:\"14\";s:22:\"nav_dropdown_font_size\";s:2:\"13\";s:14:\"snav_font_size\";s:2:\"12\";s:18:\"side_nav_font_size\";s:2:\"14\";s:21:\"mobile_menu_font_size\";s:2:\"12\";s:21:\"breadcrumbs_font_size\";s:2:\"10\";s:15:\"sidew_font_size\";s:2:\"13\";s:20:\"slidingbar_font_size\";s:2:\"13\";s:15:\"footw_font_size\";s:2:\"13\";s:19:\"copyright_font_size\";s:2:\"12\";s:12:\"h1_font_size\";s:2:\"34\";s:12:\"h2_font_size\";s:2:\"18\";s:12:\"h3_font_size\";s:2:\"16\";s:12:\"h4_font_size\";s:2:\"13\";s:12:\"h5_font_size\";s:2:\"12\";s:12:\"h6_font_size\";s:2:\"11\";s:17:\"tagline_font_size\";s:2:\"16\";s:14:\"meta_font_size\";s:2:\"12\";s:20:\"page_title_font_size\";s:2:\"18\";s:30:\"page_title_subheader_font_size\";s:2:\"14\";s:20:\"pagination_font_size\";s:2:\"12\";s:18:\"woo_icon_font_size\";s:2:\"12\";s:12:\"body_font_lh\";s:2:\"20\";s:10:\"h1_font_lh\";s:2:\"48\";s:10:\"h2_font_lh\";s:2:\"27\";s:10:\"h3_font_lh\";s:2:\"24\";s:10:\"h4_font_lh\";s:2:\"20\";s:10:\"h5_font_lh\";s:2:\"18\";s:10:\"h6_font_lh\";s:2:\"17\";s:11:\"sec_menu_lh\";s:2:\"44\";s:16:\"font_weight_body\";s:3:\"400\";s:16:\"font_weight_menu\";s:3:\"400\";s:20:\"font_weight_headings\";s:3:\"400\";s:27:\"font_weight_footer_headings\";s:3:\"400\";s:18:\"font_weight_button\";s:3:\"700\";s:12:\"menu_font_ls\";s:1:\"0\";s:14:\"button_font_ls\";s:1:\"0\";s:13:\"h1_top_margin\";s:4:\"0.67\";s:16:\"h1_bottom_margin\";s:4:\"0.67\";s:13:\"h2_top_margin\";s:1:\"0\";s:16:\"h2_bottom_margin\";s:3:\"1.1\";s:13:\"h3_top_margin\";s:1:\"1\";s:16:\"h3_bottom_margin\";s:1:\"1\";s:13:\"h4_top_margin\";s:4:\"1.33\";s:16:\"h4_bottom_margin\";s:4:\"1.33\";s:13:\"h5_top_margin\";s:4:\"1.67\";s:16:\"h5_bottom_margin\";s:4:\"1.67\";s:13:\"h6_top_margin\";s:4:\"2.33\";s:16:\"h6_bottom_margin\";s:4:\"2.33\";s:11:\"scheme_type\";s:5:\"Light\";s:12:\"color_scheme\";s:5:\"Green\";s:13:\"primary_color\";s:7:\"#a0ce4e\";s:19:\"slidingbar_bg_color\";a:2:{s:5:\"color\";s:7:\"#363839\";s:7:\"opacity\";s:1:\"1\";}s:15:\"header_bg_color\";a:2:{s:5:\"color\";s:7:\"#ffffff\";s:7:\"opacity\";s:1:\"1\";}s:22:\"header_sticky_bg_color\";a:2:{s:5:\"color\";s:7:\"#ffffff\";s:7:\"opacity\";s:4:\"0.97\";}s:19:\"header_border_color\";s:7:\"#e5e5e5\";s:19:\"header_top_bg_color\";s:7:\"#a0ce4e\";s:19:\"page_title_bg_color\";s:7:\"#F6F6F6\";s:23:\"page_title_border_color\";s:7:\"#d2d3d4\";s:16:\"content_bg_color\";s:7:\"#ffffff\";s:16:\"sidebar_bg_color\";s:11:\"transparent\";s:15:\"footer_bg_color\";s:7:\"#363839\";s:19:\"footer_border_color\";s:7:\"#e9eaee\";s:18:\"copyright_bg_color\";s:7:\"#282a2b\";s:22:\"copyright_border_color\";s:7:\"#4b4c4d\";s:24:\"image_gradient_top_color\";a:2:{s:5:\"color\";s:7:\"#a0ce4e\";s:7:\"opacity\";s:3:\"0.8\";}s:27:\"image_gradient_bottom_color\";s:7:\"#a0ce4e\";s:25:\"image_rollover_text_color\";s:7:\"#333333\";s:25:\"image_rollover_icon_color\";s:7:\"#ffffff\";s:28:\"slidingbar_toggle_icon_color\";s:7:\"#ffffff\";s:24:\"slidingbar_divider_color\";s:7:\"#282A2B\";s:20:\"footer_divider_color\";s:7:\"#505152\";s:13:\"form_bg_color\";s:7:\"#ffffff\";s:15:\"form_text_color\";s:7:\"#aaa9a9\";s:17:\"form_border_color\";s:7:\"#d2d2d2\";s:17:\"timeline_bg_color\";s:11:\"transparent\";s:14:\"timeline_color\";s:7:\"#ebeaea\";s:31:\"load_more_posts_button_bg_color\";s:7:\"#ebeaea\";s:12:\"qty_bg_color\";s:7:\"#fbfaf9\";s:18:\"qty_bg_hover_color\";s:7:\"#ffffff\";s:21:\"woo_dropdown_bg_color\";s:7:\"#fbfaf9\";s:23:\"woo_dropdown_text_color\";s:7:\"#333333\";s:25:\"woo_dropdown_border_color\";s:7:\"#dbdbdb\";s:19:\"bbp_forum_header_bg\";s:7:\"#ebeaea\";s:22:\"bbp_forum_border_color\";s:7:\"#ebeaea\";s:16:\"main_top_padding\";s:4:\"55px\";s:19:\"main_bottom_padding\";s:4:\"40px\";s:16:\"hundredp_padding\";s:4:\"30px\";s:15:\"sidebar_padding\";s:1:\"0\";s:14:\"col_top_margin\";s:3:\"0px\";s:17:\"col_bottom_margin\";s:4:\"20px\";s:22:\"slidingbar_text_shadow\";s:1:\"1\";s:20:\"rollover_text_shadow\";s:1:\"1\";s:18:\"footer_text_shadow\";s:1:\"1\";s:18:\"tagline_font_color\";s:7:\"#747474\";s:16:\"page_title_color\";s:7:\"#333333\";s:8:\"h1_color\";s:7:\"#333333\";s:8:\"h2_color\";s:7:\"#333333\";s:8:\"h3_color\";s:7:\"#333333\";s:8:\"h4_color\";s:7:\"#333333\";s:8:\"h5_color\";s:7:\"#333333\";s:8:\"h6_color\";s:7:\"#333333\";s:15:\"body_text_color\";s:7:\"#747474\";s:10:\"link_color\";s:7:\"#333333\";s:22:\"breadcrumbs_text_color\";s:7:\"#333333\";s:25:\"slidingbar_headings_color\";s:7:\"#DDDDDD\";s:21:\"slidingbar_text_color\";s:7:\"#8C8989\";s:21:\"slidingbar_link_color\";s:7:\"#BFBFBF\";s:21:\"sidebar_heading_color\";s:7:\"#333333\";s:21:\"footer_headings_color\";s:7:\"#DDDDDD\";s:17:\"footer_text_color\";s:7:\"#8C8989\";s:17:\"footer_link_color\";s:7:\"#BFBFBF\";s:17:\"menu_h45_bg_color\";s:7:\"#FFFFFF\";s:16:\"menu_first_color\";s:7:\"#333333\";s:22:\"menu_hover_first_color\";s:7:\"#a0ce4e\";s:17:\"menu_sub_bg_color\";s:7:\"#f2efef\";s:19:\"menu_bg_hover_color\";s:7:\"#f8f8f8\";s:14:\"menu_sub_color\";s:7:\"#333333\";s:18:\"menu_sub_sep_color\";s:7:\"#dcdadb\";s:17:\"woo_cart_bg_color\";s:7:\"#fafafa\";s:10:\"snav_color\";s:7:\"#ffffff\";s:29:\"header_top_first_border_color\";s:7:\"#ffffff\";s:23:\"header_top_sub_bg_color\";s:7:\"#ffffff\";s:25:\"header_top_menu_sub_color\";s:7:\"#747474\";s:30:\"header_top_menu_bg_hover_color\";s:7:\"#fafafa\";s:31:\"header_top_menu_sub_hover_color\";s:7:\"#333333\";s:29:\"header_top_menu_sub_sep_color\";s:7:\"#e5e5e5\";s:22:\"mobile_header_bg_color\";s:7:\"#ffffff\";s:28:\"mobile_menu_background_color\";s:7:\"#f9f9f9\";s:24:\"mobile_menu_border_color\";s:7:\"#dadada\";s:23:\"mobile_menu_hover_color\";s:7:\"#f6f6f6\";s:22:\"mobile_menu_font_color\";s:7:\"#333333\";s:24:\"mobile_menu_toggle_color\";s:7:\"#dadada\";s:15:\"dates_box_color\";s:7:\"#eef0f2\";s:11:\"button_size\";s:5:\"Large\";s:12:\"button_shape\";s:5:\"Round\";s:11:\"button_type\";s:4:\"Flat\";s:25:\"button_gradient_top_color\";s:7:\"#a0ce4e\";s:28:\"button_gradient_bottom_color\";s:7:\"#a0ce4e\";s:31:\"button_gradient_top_color_hover\";s:7:\"#96c346\";s:34:\"button_gradient_bottom_color_hover\";s:7:\"#96c346\";s:19:\"button_accent_color\";s:4:\"#fff\";s:25:\"button_accent_hover_color\";s:4:\"#fff\";s:18:\"button_bevel_color\";s:7:\"#54770F\";s:19:\"button_border_width\";s:3:\"0px\";s:18:\"carousel_nav_color\";s:7:\"#999999\";s:20:\"carousel_hover_color\";s:7:\"#808080\";s:16:\"checklist_circle\";s:1:\"1\";s:22:\"checklist_circle_color\";s:7:\"#a0ce4e\";s:21:\"checklist_icons_color\";s:7:\"#ffffff\";s:20:\"content_box_bg_color\";s:11:\"transparent\";s:22:\"content_box_title_size\";s:2:\"18\";s:23:\"content_box_icon_circle\";s:3:\"yes\";s:21:\"content_box_icon_size\";s:2:\"21\";s:22:\"content_box_margin_top\";s:3:\"0px\";s:25:\"content_box_margin_bottom\";s:4:\"60px\";s:17:\"counter_box_color\";s:7:\"#a0ce4e\";s:22:\"counter_box_title_size\";s:2:\"50\";s:21:\"counter_box_icon_size\";s:2:\"50\";s:22:\"counter_box_body_color\";s:7:\"#747474\";s:21:\"counter_box_body_size\";s:2:\"13\";s:24:\"counter_box_border_color\";s:7:\"#e0dede\";s:20:\"counter_box_icon_top\";s:2:\"no\";s:20:\"counter_filled_color\";s:7:\"#a0ce4e\";s:22:\"counter_unfilled_color\";s:7:\"#f6f6f6\";s:13:\"dropcap_color\";s:7:\"#a0ce4e\";s:19:\"flip_boxes_front_bg\";s:7:\"#f6f6f6\";s:24:\"flip_boxes_front_heading\";s:7:\"#333333\";s:21:\"flip_boxes_front_text\";s:7:\"#747474\";s:18:\"flip_boxes_back_bg\";s:7:\"#a0ce4e\";s:23:\"flip_boxes_back_heading\";s:7:\"#eeeded\";s:20:\"flip_boxes_back_text\";s:7:\"#ffffff\";s:22:\"flip_boxes_border_size\";s:3:\"1px\";s:23:\"flip_boxes_border_color\";s:11:\"transparent\";s:24:\"flip_boxes_border_radius\";s:3:\"4px\";s:19:\"full_width_bg_color\";s:0:\"\";s:22:\"full_width_border_size\";s:3:\"0px\";s:23:\"full_width_border_color\";s:7:\"#eae9e9\";s:17:\"icon_circle_color\";s:7:\"#333333\";s:17:\"icon_border_color\";s:7:\"#333333\";s:10:\"icon_color\";s:7:\"#ffffff\";s:21:\"imgframe_border_color\";s:7:\"#f6f6f6\";s:22:\"imageframe_border_size\";s:3:\"0px\";s:24:\"imageframe_border_radius\";s:3:\"0px\";s:20:\"imgframe_style_color\";s:7:\"#000000\";s:14:\"modal_bg_color\";s:7:\"#f6f6f6\";s:18:\"modal_border_color\";s:7:\"#ebebeb\";s:19:\"person_border_color\";s:7:\"#f6f6f6\";s:18:\"person_border_size\";s:3:\"0px\";s:20:\"person_border_radius\";s:3:\"0px\";s:18:\"person_style_color\";s:7:\"#000000\";s:24:\"popover_heading_bg_color\";s:7:\"#f6f6f6\";s:24:\"popover_content_bg_color\";s:7:\"#ffffff\";s:20:\"popover_border_color\";s:7:\"#ebebeb\";s:18:\"popover_text_color\";s:7:\"#747474\";s:17:\"popover_placement\";s:3:\"Top\";s:36:\"full_boxed_pricing_box_heading_color\";s:7:\"#333333\";s:29:\"sep_pricing_box_heading_color\";s:7:\"#333333\";s:17:\"pricing_box_color\";s:7:\"#a0ce4e\";s:16:\"pricing_bg_color\";s:7:\"#ffffff\";s:20:\"pricing_border_color\";s:7:\"#f8f8f8\";s:21:\"pricing_divider_color\";s:7:\"#ededed\";s:24:\"progressbar_filled_color\";s:7:\"#a0ce4e\";s:26:\"progressbar_unfilled_color\";s:7:\"#f6f6f6\";s:22:\"progressbar_text_color\";s:7:\"#ffffff\";s:23:\"section_sep_border_size\";s:3:\"1px\";s:14:\"section_sep_bg\";s:7:\"#f6f6f6\";s:24:\"section_sep_border_color\";s:7:\"#f6f6f6\";s:9:\"sep_color\";s:7:\"#e0dede\";s:16:\"separator_circle\";s:1:\"1\";s:21:\"separator_border_size\";s:3:\"1px\";s:20:\"sharing_box_bg_color\";s:7:\"#f6f6f6\";s:30:\"sharing_box_tagline_text_color\";s:7:\"#333333\";s:22:\"social_links_font_size\";s:2:\"16\";s:23:\"social_links_icon_color\";s:7:\"#bebdbd\";s:18:\"social_links_boxed\";s:2:\"No\";s:22:\"social_links_box_color\";s:7:\"#e8e8e8\";s:25:\"social_links_boxed_radius\";s:3:\"4px\";s:26:\"social_links_boxed_padding\";s:1:\"8\";s:30:\"social_links_tooltip_placement\";s:3:\"Top\";s:13:\"tabs_bg_color\";s:7:\"#ffffff\";s:19:\"tabs_inactive_color\";s:7:\"#ebeaea\";s:17:\"tabs_border_color\";s:7:\"#ebeaea\";s:10:\"tagline_bg\";s:7:\"#f6f6f6\";s:20:\"tagline_border_color\";s:7:\"#f6f6f6\";s:18:\"tagline_margin_top\";s:0:\"\";s:21:\"tagline_margin_bottom\";s:2:\"84\";s:20:\"testimonial_bg_color\";s:7:\"#f6f6f6\";s:22:\"testimonial_text_color\";s:7:\"#747474\";s:18:\"testimonials_speed\";s:4:\"4000\";s:19:\"testimonials_random\";s:1:\"0\";s:16:\"title_style_type\";s:6:\"double\";s:18:\"title_border_color\";s:7:\"#e0dede\";s:24:\"accordian_inactive_color\";s:7:\"#333333\";s:10:\"blog_title\";s:4:\"Blog\";s:13:\"blog_subtitle\";s:0:\"\";s:24:\"blog_show_page_title_bar\";s:1:\"1\";s:11:\"blog_layout\";s:5:\"Large\";s:19:\"blog_archive_layout\";s:5:\"Large\";s:20:\"blog_pagination_type\";s:10:\"Pagination\";s:17:\"blog_grid_columns\";s:1:\"3\";s:24:\"blog_grid_column_spacing\";s:2:\"40\";s:14:\"content_length\";s:7:\"Excerpt\";s:19:\"excerpt_length_blog\";s:2:\"55\";s:18:\"strip_html_excerpt\";s:1:\"1\";s:15:\"featured_images\";s:1:\"1\";s:32:\"alternate_date_format_month_year\";s:4:\"m, Y\";s:25:\"alternate_date_format_day\";s:1:\"j\";s:20:\"timeline_date_format\";s:3:\"F Y\";s:22:\"featured_images_single\";s:1:\"1\";s:11:\"blog_pn_nav\";s:1:\"0\";s:15:\"blog_post_title\";s:1:\"1\";s:11:\"author_info\";s:1:\"1\";s:18:\"social_sharing_box\";s:1:\"1\";s:13:\"related_posts\";s:1:\"0\";s:13:\"blog_comments\";s:1:\"1\";s:9:\"post_meta\";s:1:\"1\";s:16:\"post_meta_author\";s:1:\"0\";s:14:\"post_meta_date\";s:1:\"0\";s:14:\"post_meta_cats\";s:1:\"0\";s:18:\"post_meta_comments\";s:1:\"0\";s:14:\"post_meta_read\";s:1:\"0\";s:14:\"post_meta_tags\";s:1:\"1\";s:11:\"date_format\";s:7:\"F jS, Y\";s:15:\"portfolio_items\";s:2:\"10\";s:24:\"portfolio_archive_layout\";s:20:\"Portfolio One Column\";s:24:\"portfolio_column_spacing\";s:2:\"12\";s:24:\"portfolio_content_length\";s:7:\"Excerpt\";s:24:\"excerpt_length_portfolio\";s:2:\"55\";s:28:\"portfolio_strip_html_excerpt\";s:1:\"1\";s:20:\"grid_pagination_type\";s:10:\"Pagination\";s:21:\"portfolio_text_layout\";s:7:\"unboxed\";s:14:\"portfolio_slug\";s:15:\"portfolio-items\";s:29:\"portfolio_featured_image_size\";s:7:\"cropped\";s:25:\"portfolio_featured_images\";s:1:\"1\";s:16:\"portfolio_pn_nav\";s:1:\"0\";s:18:\"portfolio_comments\";s:1:\"0\";s:16:\"portfolio_author\";s:1:\"0\";s:28:\"portfolio_social_sharing_box\";s:1:\"1\";s:23:\"portfolio_related_posts\";s:1:\"1\";s:15:\"social_bg_color\";s:7:\"#f6f6f6\";s:30:\"sharing_social_links_font_size\";s:2:\"18\";s:31:\"sharing_social_links_icon_color\";s:7:\"#bebdbd\";s:26:\"sharing_social_links_boxed\";s:2:\"No\";s:30:\"sharing_social_links_box_color\";s:7:\"#e8e8e8\";s:33:\"sharing_social_links_boxed_radius\";s:3:\"4px\";s:34:\"sharing_social_links_boxed_padding\";s:1:\"8\";s:38:\"sharing_social_links_tooltip_placement\";s:3:\"Top\";s:16:\"sharing_facebook\";s:1:\"1\";s:15:\"sharing_twitter\";s:1:\"0\";s:14:\"sharing_reddit\";s:1:\"0\";s:16:\"sharing_linkedin\";s:1:\"0\";s:14:\"sharing_google\";s:1:\"1\";s:14:\"sharing_tumblr\";s:1:\"0\";s:17:\"sharing_pinterest\";s:1:\"0\";s:10:\"sharing_vk\";s:1:\"0\";s:13:\"sharing_email\";s:1:\"1\";s:13:\"facebook_link\";s:81:\"https://www.facebook.com/pages/Assagay-Forest-Lodge/696704640356039?ref=bookmarks\";s:15:\"social_sorter_1\";s:13:\"facebook_link\";s:11:\"flickr_link\";s:0:\"\";s:15:\"social_sorter_2\";s:11:\"flickr_link\";s:8:\"rss_link\";s:0:\"\";s:15:\"social_sorter_3\";s:8:\"rss_link\";s:12:\"twitter_link\";s:0:\"\";s:15:\"social_sorter_4\";s:12:\"twitter_link\";s:10:\"vimeo_link\";s:0:\"\";s:15:\"social_sorter_5\";s:10:\"vimeo_link\";s:12:\"youtube_link\";s:0:\"\";s:15:\"social_sorter_6\";s:12:\"youtube_link\";s:14:\"instagram_link\";s:0:\"\";s:15:\"social_sorter_7\";s:14:\"instagram_link\";s:14:\"pinterest_link\";s:0:\"\";s:15:\"social_sorter_8\";s:14:\"pinterest_link\";s:11:\"tumblr_link\";s:0:\"\";s:15:\"social_sorter_9\";s:11:\"tumblr_link\";s:11:\"google_link\";s:81:\"https://plus.google.com/b/102888140860425533320/+AssagayGuestLodgeHillcrest/about\";s:16:\"social_sorter_10\";s:11:\"google_link\";s:13:\"dribbble_link\";s:0:\"\";s:16:\"social_sorter_11\";s:13:\"dribbble_link\";s:9:\"digg_link\";s:0:\"\";s:16:\"social_sorter_12\";s:9:\"digg_link\";s:13:\"linkedin_link\";s:0:\"\";s:16:\"social_sorter_13\";s:13:\"linkedin_link\";s:12:\"blogger_link\";s:0:\"\";s:16:\"social_sorter_14\";s:12:\"blogger_link\";s:10:\"skype_link\";s:0:\"\";s:16:\"social_sorter_15\";s:10:\"skype_link\";s:11:\"forrst_link\";s:0:\"\";s:16:\"social_sorter_16\";s:11:\"forrst_link\";s:12:\"myspace_link\";s:0:\"\";s:16:\"social_sorter_17\";s:12:\"myspace_link\";s:15:\"deviantart_link\";s:0:\"\";s:16:\"social_sorter_18\";s:15:\"deviantart_link\";s:10:\"yahoo_link\";s:0:\"\";s:16:\"social_sorter_19\";s:10:\"yahoo_link\";s:11:\"reddit_link\";s:0:\"\";s:16:\"social_sorter_20\";s:11:\"reddit_link\";s:11:\"paypal_link\";s:0:\"\";s:16:\"social_sorter_21\";s:11:\"paypal_link\";s:12:\"dropbox_link\";s:0:\"\";s:16:\"social_sorter_22\";s:12:\"dropbox_link\";s:15:\"soundcloud_link\";s:0:\"\";s:16:\"social_sorter_23\";s:15:\"soundcloud_link\";s:7:\"vk_link\";s:0:\"\";s:16:\"social_sorter_24\";s:7:\"vk_link\";s:10:\"email_link\";s:23:\"assagaylodge@msla.co.za\";s:16:\"social_sorter_25\";s:10:\"email_link\";s:13:\"social_sorter\";s:415:\"social_sorter_1,social_sorter_2,social_sorter_3,social_sorter_4,social_sorter_5,social_sorter_6,social_sorter_7,social_sorter_8,social_sorter_9,social_sorter_10,social_sorter_11,social_sorter_12,social_sorter_13,social_sorter_14,social_sorter_15,social_sorter_16,social_sorter_17,social_sorter_18,social_sorter_19,social_sorter_20,social_sorter_21,social_sorter_22,social_sorter_23,social_sorter_24,social_sorter_25\";s:16:\"custom_icon_name\";s:0:\"\";s:17:\"custom_icon_image\";s:0:\"\";s:24:\"custom_icon_image_retina\";s:0:\"\";s:17:\"retina_icon_width\";s:0:\"\";s:18:\"retina_icon_height\";s:0:\"\";s:16:\"custom_icon_link\";s:0:\"\";s:22:\"posts_slideshow_number\";s:1:\"5\";s:18:\"slideshow_autoplay\";s:1:\"1\";s:23:\"slideshow_smooth_height\";s:1:\"0\";s:15:\"slideshow_speed\";s:4:\"7000\";s:22:\"pagination_video_slide\";s:1:\"0\";s:17:\"tfes_slider_width\";s:4:\"100%\";s:18:\"tfes_slider_height\";s:5:\"400px\";s:14:\"tfes_animation\";s:5:\"sides\";s:13:\"tfes_autoplay\";s:1:\"1\";s:13:\"tfes_interval\";s:4:\"3000\";s:10:\"tfes_speed\";s:3:\"800\";s:10:\"tfes_width\";s:3:\"150\";s:18:\"es_title_font_size\";s:2:\"42\";s:20:\"es_caption_font_size\";s:2:\"20\";s:14:\"es_title_color\";s:7:\"#333333\";s:16:\"es_caption_color\";s:7:\"#747474\";s:15:\"status_lightbox\";s:1:\"0\";s:22:\"status_lightbox_single\";s:1:\"0\";s:17:\"lightbox_behavior\";s:3:\"all\";s:13:\"lightbox_skin\";s:11:\"metro-white\";s:13:\"lightbox_path\";s:8:\"vertical\";s:24:\"lightbox_animation_speed\";s:6:\"Normal\";s:15:\"lightbox_arrows\";s:1:\"1\";s:16:\"lightbox_gallery\";s:1:\"1\";s:17:\"lightbox_autoplay\";s:1:\"0\";s:24:\"lightbox_slideshow_speed\";s:4:\"5000\";s:16:\"lightbox_opacity\";s:3:\"0.9\";s:14:\"lightbox_title\";s:1:\"1\";s:13:\"lightbox_desc\";s:1:\"1\";s:15:\"lightbox_social\";s:1:\"1\";s:20:\"lightbox_deeplinking\";s:1:\"1\";s:20:\"lightbox_post_images\";s:1:\"1\";s:13:\"email_address\";s:23:\"assagaylodge@msla.co.za\";s:16:\"recaptcha_public\";s:0:\"\";s:17:\"recaptcha_private\";s:0:\"\";s:22:\"recaptcha_color_scheme\";s:5:\"light\";s:9:\"gmap_type\";s:7:\"roadmap\";s:10:\"gmap_width\";s:4:\"100%\";s:11:\"gmap_height\";s:5:\"415px\";s:14:\"gmap_topmargin\";s:4:\"55px\";s:12:\"gmap_address\";s:15:\"4 Williams Road\";s:14:\"map_zoom_level\";s:2:\"13\";s:7:\"map_pin\";s:1:\"1\";s:18:\"gmap_pin_animation\";s:1:\"0\";s:9:\"map_popup\";s:1:\"0\";s:15:\"map_scrollwheel\";s:1:\"0\";s:9:\"map_scale\";s:1:\"0\";s:15:\"map_zoomcontrol\";s:1:\"0\";s:11:\"map_styling\";s:7:\"default\";s:17:\"map_overlay_color\";s:0:\"\";s:19:\"map_infobox_styling\";s:7:\"default\";s:19:\"map_infobox_content\";s:0:\"\";s:20:\"map_infobox_bg_color\";s:0:\"\";s:22:\"map_infobox_text_color\";s:0:\"\";s:22:\"map_custom_marker_icon\";s:0:\"\";s:13:\"search_layout\";s:4:\"Grid\";s:14:\"search_content\";s:15:\"Posts and Pages\";s:14:\"search_excerpt\";s:1:\"1\";s:23:\"search_results_per_page\";s:2:\"10\";s:22:\"search_featured_images\";s:1:\"0\";s:18:\"search_form_height\";s:4:\"33px\";s:16:\"sidenav_behavior\";s:5:\"Hover\";s:26:\"featured_image_placeholder\";s:1:\"1\";s:12:\"excerpt_base\";s:5:\"Words\";s:16:\"disable_excerpts\";s:1:\"0\";s:14:\"link_read_more\";s:1:\"0\";s:14:\"comments_pages\";s:1:\"0\";s:21:\"featured_images_pages\";s:1:\"0\";s:18:\"faq_featured_image\";s:1:\"0\";s:11:\"faq_filters\";s:3:\"yes\";s:21:\"nofollow_social_links\";s:1:\"0\";s:16:\"social_icons_new\";s:1:\"1\";s:20:\"number_related_posts\";s:1:\"5\";s:21:\"related_posts_columns\";s:1:\"5\";s:28:\"related_posts_column_spacing\";s:2:\"44\";s:20:\"related_posts_layout\";s:17:\"title_on_rollover\";s:24:\"related_posts_image_size\";s:7:\"cropped\";s:22:\"related_posts_autoplay\";s:1:\"0\";s:24:\"related_posts_navigation\";s:1:\"1\";s:19:\"related_posts_swipe\";s:1:\"0\";s:25:\"related_posts_swipe_items\";s:0:\"\";s:14:\"image_rollover\";s:1:\"1\";s:24:\"image_rollover_direction\";s:4:\"left\";s:24:\"image_rollover_icon_size\";s:2:\"15\";s:19:\"link_image_rollover\";s:1:\"0\";s:19:\"zoom_image_rollover\";s:1:\"0\";s:20:\"title_image_rollover\";s:1:\"0\";s:19:\"cats_image_rollover\";s:1:\"0\";s:26:\"icon_circle_image_rollover\";s:1:\"0\";s:16:\"smooth_scrolling\";s:1:\"1\";s:15:\"disable_builder\";s:1:\"0\";s:27:\"disable_code_block_encoding\";s:1:\"0\";s:16:\"disable_megamenu\";s:1:\"0\";s:16:\"avada_rev_styles\";s:1:\"0\";s:22:\"avada_styles_dropdowns\";s:1:\"0\";s:15:\"use_animate_css\";s:1:\"0\";s:26:\"disable_mobile_animate_css\";s:1:\"1\";s:9:\"status_yt\";s:1:\"0\";s:12:\"status_vimeo\";s:1:\"0\";s:11:\"status_gmap\";s:1:\"0\";s:12:\"status_totop\";s:1:\"0\";s:19:\"status_totop_mobile\";s:1:\"0\";s:20:\"status_fusion_slider\";s:1:\"0\";s:14:\"status_eslider\";s:1:\"0\";s:18:\"status_fontawesome\";s:1:\"0\";s:16:\"status_opengraph\";s:1:\"0\";s:31:\"disable_date_rich_snippet_pages\";s:1:\"0\";s:19:\"disable_woo_gallery\";s:1:\"0\";s:8:\"dev_mode\";s:1:\"0\";s:13:\"less_compiler\";s:1:\"0\";s:15:\"cache_server_ip\";s:0:\"\";s:9:\"woo_items\";s:2:\"12\";s:29:\"woocommerce_shop_page_columns\";s:1:\"4\";s:27:\"woocommerce_related_columns\";s:1:\"4\";s:32:\"woocommerce_archive_page_columns\";s:1:\"3\";s:30:\"woocommerce_product_tab_design\";s:8:\"vertical\";s:26:\"woocommerce_avada_ordering\";s:1:\"0\";s:29:\"woocommerce_one_page_checkout\";s:1:\"0\";s:30:\"woocommerce_enable_order_notes\";s:1:\"1\";s:28:\"woocommerce_acc_link_top_nav\";s:1:\"1\";s:29:\"woocommerce_cart_link_top_nav\";s:1:\"1\";s:29:\"woocommerce_acc_link_main_nav\";s:1:\"0\";s:30:\"woocommerce_cart_link_main_nav\";s:1:\"1\";s:24:\"woocommerce_social_links\";s:1:\"1\";s:28:\"woocommerce_toggle_grid_list\";s:1:\"1\";s:13:\"woo_acc_msg_1\";s:55:\"Need Assistance? Call customer service at 888-555-5555.\";s:13:\"woo_acc_msg_2\";s:32:\"E-mail them at info@yourshop.com\";s:10:\"custom_css\";s:0:\"\";s:15:\"heading_general\";s:0:\"\";s:4:\"code\";s:81:\"<h3 style=\'margin: 0;\'>Tracking / Space Before Head / Space Before Body Code</h3>\";s:18:\"heading_site_width\";s:0:\"\";s:21:\"content_sidebar_width\";s:139:\"<h3 style=\'margin: 0;\'>Content + Sidebar Width</h3><p>These settings are used on pages with 1 sidebar. Total values must add up to 100.</p>\";s:29:\"content_sidebar_sidebar_width\";s:150:\"<h3 style=\'margin: 0;\'>Content + Sidebar + Sidebar Width</h3><p>These settings are used on pages with 2 sidebars. Total values must add up to 100.</p>\";s:14:\"heading_header\";s:0:\"\";s:13:\"header_info_1\";s:50:\"<h3 style=\'margin: 0;\'>Header Content Options</h3>\";s:13:\"header_info_2\";s:45:\"<h3 style=\'margin: 0;\'>Header Background</h3>\";s:13:\"header_info_3\";s:47:\"<h3 style=\'margin: 0;\'>Header Social Icons</h3>\";s:21:\"heading_sticky_header\";s:0:\"\";s:18:\"sticky_header_info\";s:49:\"<h3 style=\'margin: 0;\'>Sticky Header Options</h3>\";s:12:\"heading_logo\";s:0:\"\";s:11:\"header_info\";s:46:\"<h3 style=\'margin: 0;\'>Breadcrumb Options</h3>\";s:19:\"sticky_logo_wrapper\";s:46:\"<h3 style=\'margin: 0;\'>Sticky Header Logo</h3>\";s:19:\"mobile_logo_wrapper\";s:39:\"<h3 style=\'margin: 0;\'>Mobile Logo</h3>\";s:21:\"logo_settings_wrapper\";s:41:\"<h3 style=\'margin: 0;\'>Logo Settings</h3>\";s:8:\"favicons\";s:43:\"<h3 style=\'margin: 0;\'>Favicon Options</h3>\";s:12:\"heading_menu\";s:0:\"\";s:19:\"mobile_menu_options\";s:47:\"<h3 style=\'margin: 0;\'>Mobile Menu Options</h3>\";s:22:\"heading_page_title_bar\";s:0:\"\";s:19:\"heading_sliding_bar\";s:0:\"\";s:11:\"sliding_bar\";s:47:\"<h3 style=\'margin: 0;\'>Sliding Bar Options</h3>\";s:14:\"heading_footer\";s:0:\"\";s:25:\"footer_widgets_area_title\";s:55:\"<h3 style=\'margin: 0;\'>Footer Widgets Area Options</h3>\";s:27:\"footer_parallax_effect_info\";s:59:\"This enables a fixed footer with parallax scrolling effect.\";s:28:\"footer_area_bg_parallax_info\";s:115:\"This enables a parallax effect on the background image selected in \'Background Image For Footer Widget Area\' field.\";s:18:\"footer_sticky_info\";s:144:\"This enables a sticky footer. The entire footer area will always be \'below the fold\'. IMPORTANT: \'Sticky Footer Height\' field must be filled in.\";s:41:\"footer_sticky_with_parallax_bg_image_info\";s:200:\"This enables a sticky footer together with a parallax effect on the background image. The entire footer area will always be \'below the fold\'. IMPORTANT: \'Sticky Footer Height\' field must be filled in.\";s:20:\"copyright_area_title\";s:57:\"<h3 style=\'margin: 0;\'>Footer Copyright Area Options</h3>\";s:24:\"footer_social_icon_title\";s:47:\"<h3 style=\'margin: 0;\'>Social Icon Options</h3>\";s:16:\"heading_sidebars\";s:0:\"\";s:14:\"pages_sidebars\";s:33:\"<h3 style=\'margin: 0;\'>Pages</h3>\";s:12:\"bbpress_only\";s:35:\"<h3 style=\'margin: 0;\'>BBPress</h3>\";s:11:\"search_only\";s:39:\"<h3 style=\'margin: 0;\'>Search Page</h3>\";s:18:\"heading_background\";s:0:\"\";s:15:\"boxed_mode_only\";s:76:\"<h3 style=\'margin: 0;\'>Background options below only work in boxed mode</h3>\";s:15:\"both_modes_only\";s:79:\"<h3 style=\'margin: 0;\'>Background Options Below Work For Boxed & Wide Mode</h3>\";s:18:\"heading_typography\";s:0:\"\";s:19:\"custom_heading_font\";s:174:\"<h3 style=\'margin: 0;\'>Custom Font For Menus And Headings</h3><p style=\'margin-bottom:0;\'>This will override the google / standard font options. All 4 files are required.</p>\";s:18:\"google_fonts_intro\";s:113:\"<h3 style=\'margin: 0;\'>Google Fonts</h3><p style=\'margin-bottom:0;\'>This will override standard font options.</p>\";s:20:\"standard_fonts_intro\";s:42:\"<h3 style=\'margin: 0;\'>Standard Fonts</h3>\";s:15:\"font_size_intro\";s:38:\"<h3 style=\'margin: 0;\'>Font Sizes</h3>\";s:25:\"font_line_heights_wrapper\";s:45:\"<h3 style=\'margin: 0;\'>Font Line Heights</h3>\";s:20:\"font_weights_wrapper\";s:40:\"<h3 style=\'margin: 0;\'>Font Weights</h3>\";s:24:\"font_weights_description\";s:414:\"<ul class=\'list\'><li>If you use a custom font, the font weight will correspond to the font weight of the uploaded files, thus these settings do not apply.</li><li>If you use a google font, make sure to load the font weight in \'Google Font Settings\' field that corresponds to the one in parenthesis here.</li><li>Browser standard fonts in general support only \'Normal (400)\' and \'Bold (700)\' font weights.</li></ul>\";s:27:\"font_letter_spacing_wrapper\";s:47:\"<h3 style=\'margin: 0;\'>Font Letter Spacing</h3>\";s:20:\"font_margins_wrapper\";s:40:\"<h3 style=\'margin: 0;\'>Font Margins</h3>\";s:15:\"heading_styling\";s:0:\"\";s:17:\"bg_colors_wrapper\";s:45:\"<h3 style=\'margin: 0;\'>Background Colors</h3>\";s:22:\"element_colors_wrapper\";s:42:\"<h3 style=\'margin: 0;\'>Element Colors</h3>\";s:23:\"element_options_wrapper\";s:42:\"<h3 style=\'margin: 0;\'>Layout Options</h3>\";s:19:\"font_colors_wrapper\";s:39:\"<h3 style=\'margin: 0;\'>Font Colors</h3>\";s:24:\"main_menu_colors_wrapper\";s:44:\"<h3 style=\'margin: 0;\'>Main Menu Colors</h3>\";s:17:\"menu_colors_intro\";s:49:\"<h3 style=\'margin: 0;\'>Secondary Menu Colors</h3>\";s:26:\"mobile_menu_colors_wrapper\";s:46:\"<h3 style=\'margin: 0;\'>Mobile Menu Colors</h3>\";s:25:\"heading_shortcode_styling\";s:0:\"\";s:14:\"blog_shortcode\";s:42:\"<h3 style=\'margin: 0;\'>Blog Shortcode</h3>\";s:16:\"button_shortcode\";s:44:\"<h3 style=\'margin: 0;\'>Button Shortcode</h3>\";s:18:\"carousel_shortcode\";s:46:\"<h3 style=\'margin: 0;\'>Carousel Shortcode</h3>\";s:19:\"checklist_shortcode\";s:47:\"<h3 style=\'margin: 0;\'>Checklist Shortcode</h3>\";s:12:\"cb_shortcode\";s:49:\"<h3 style=\'margin: 0;\'>Content Box Shortcode</h3>\";s:18:\"counterb_shortcode\";s:51:\"<h3 style=\'margin: 0;\'>Counter Boxes Shortcode</h3>\";s:12:\"cc_shortcode\";s:52:\"<h3 style=\'margin: 0;\'>Counter Circle Shortcode</h3>\";s:17:\"dropcap_shortcode\";s:45:\"<h3 style=\'margin: 0;\'>Dropcap Shortcode</h3>\";s:15:\"flipb_shortcode\";s:48:\"<h3 style=\'margin: 0;\'>Flip Boxes Shortcode</h3>\";s:19:\"fullwidth_shortcode\";s:48:\"<h3 style=\'margin: 0;\'>Full Width Shortcode</h3>\";s:14:\"icon_shortcode\";s:42:\"<h3 style=\'margin: 0;\'>Icon Shortcode</h3>\";s:14:\"imgf_shortcode\";s:49:\"<h3 style=\'margin: 0;\'>Image Frame Shortcode</h3>\";s:15:\"modal_shortcode\";s:43:\"<h3 style=\'margin: 0;\'>Modal Shortcode</h3>\";s:16:\"person_shortcode\";s:44:\"<h3 style=\'margin: 0;\'>Person Shortcode</h3>\";s:17:\"popover_shortcode\";s:45:\"<h3 style=\'margin: 0;\'>Popover Shortcode</h3>\";s:22:\"pricingtable_shortcode\";s:51:\"<h3 style=\'margin: 0;\'>Pricing Table Shortcode</h3>\";s:21:\"progressbar_shortcode\";s:50:\"<h3 style=\'margin: 0;\'>Progress Bar Shortcode</h3>\";s:26:\"sectionseparator_shortcode\";s:55:\"<h3 style=\'margin: 0;\'>Section Separator Shortcode</h3>\";s:19:\"separator_shortcode\";s:47:\"<h3 style=\'margin: 0;\'>Separator Shortcode</h3>\";s:20:\"sharingbox_shortcode\";s:49:\"<h3 style=\'margin: 0;\'>Sharing Box Shortcode</h3>\";s:21:\"sociallinks_shortcode\";s:50:\"<h3 style=\'margin: 0;\'>Social Links Shortcode</h3>\";s:14:\"tabs_shortcode\";s:42:\"<h3 style=\'margin: 0;\'>Tabs Shortcode</h3>\";s:17:\"tagline_shortcode\";s:45:\"<h3 style=\'margin: 0;\'>Tagline Shortcode</h3>\";s:22:\"testimonials_shortcode\";s:50:\"<h3 style=\'margin: 0;\'>Testimonials Shortcode</h3>\";s:15:\"title_shortcode\";s:43:\"<h3 style=\'margin: 0;\'>Title Shortcode</h3>\";s:19:\"accordion_shortcode\";s:45:\"<h3 style=\'margin: 0;\'>Toggles Shortcode</h3>\";s:12:\"heading_blog\";s:0:\"\";s:16:\"blog_single_post\";s:62:\"<h3 style=\'margin: 0;\'>Portfolio Single Post Page Options</h3>\";s:9:\"blog_meta\";s:45:\"<h3 style=\'margin: 0;\'>Blog Meta Options</h3>\";s:17:\"heading_portfolio\";s:0:\"\";s:26:\"heading_social_sharing_box\";s:0:\"\";s:35:\"social_share_box_icon_options_title\";s:57:\"<h3 style=\'margin: 0;\'>Social Share Box Icon Options</h3>\";s:28:\"social_share_box_links_title\";s:50:\"<h3 style=\'margin: 0;\'>Social Share Box Links</h3>\";s:20:\"heading_social_media\";s:0:\"\";s:27:\"custom_color_scheme_element\";s:46:\"<h3 style=\'margin: 0;\'>Custom Social Icon</h3>\";s:18:\"heading_slideshows\";s:0:\"\";s:22:\"heading_elastic_slider\";s:0:\"\";s:16:\"heading_lightbox\";s:0:\"\";s:8:\"lightbox\";s:44:\"<h3 style=\'margin: 0;\'>Lightbox Options</h3>\";s:15:\"heading_contact\";s:0:\"\";s:9:\"recaptcha\";s:50:\"<h3 style=\'margin: 0;\'>ReCaptcha Spam Options</h3>\";s:10:\"google_map\";s:53:\"<h3 style=\'margin: 0;\'>Google Map Design Styling</h3>\";s:19:\"heading_search_page\";s:0:\"\";s:6:\"search\";s:42:\"<h3 style=\'margin: 0;\'>Search Options</h3>\";s:13:\"heading_extra\";s:0:\"\";s:12:\"misc_options\";s:49:\"<h3 style=\'margin: 0;\'>Miscellaneous Options</h3>\";s:9:\"rollovers\";s:50:\"<h3 style=\'margin: 0;\'>Image Rollover Options</h3>\";s:16:\"heading_advanced\";s:0:\"\";s:22:\"enable_disable_heading\";s:76:\"<h3 style=\'margin: 0;\'>Enable / Disable Theme Features & Plugin Support</h3>\";s:21:\"less_compiler_heading\";s:311:\"<h3 style=\'margin: 0;\'>Compile all the dynamic CSS generated by theme options through LESS CSS. LESS compiler demands a lot more memory compared to PHP compiler which is used by default. Alternatively, each theme option might require clearing all kinds of cache e.g. w3 total cache, cloudflare and varnish.</h3>\";s:19:\"heading_woocommerce\";s:0:\"\";s:18:\"heading_custom_css\";s:0:\"\";s:18:\"advanced_css_intro\";s:55:\"<h3 style=\'margin: 0;\'>Advanced CSS Customizations</h3>\";s:15:\"custom_css_info\";s:254:\"Paste your CSS code, do not include any tags or HTML in the field. Any custom CSS entered here will override the theme CSS. In some cases, the !important tag may be needed. Don\'t URL encode image or svg paths. Contents of this field will be auto encoded.\";s:14:\"heading_backup\";s:0:\"\";s:9:\"of_backup\";s:0:\"\";s:11:\"of_transfer\";s:0:\"\";s:24:\"contact_comment_position\";s:5:\"below\";}', 'yes'),
(157, 'avada_disable_builder', '1', 'yes'),
(159, 'avada_disable_encoding', '1', 'yes'),
(160, 'shop_catalog_image_size', 'a:3:{s:5:\"width\";i:500;s:6:\"height\";s:0:\"\";i:0;i:0;}', 'yes'),
(161, 'shop_single_image_size', 'a:3:{s:5:\"width\";i:500;s:6:\"height\";s:0:\"\";i:0;i:0;}', 'yes'),
(162, 'shop_thumbnail_image_size', 'a:3:{s:5:\"width\";i:120;s:6:\"height\";s:0:\"\";i:0;i:0;}', 'yes'),
(168, 'category_children', 'a:0:{}', 'yes'),
(180, 'nav_menu_options', 'a:2:{i:0;b:0;s:8:\"auto_add\";a:0:{}}', 'yes'),
(185, 'widget_akismet_widget', 'a:2:{i:1;a:0:{}s:12:\"_multiwidget\";i:1;}', 'yes'),
(186, 'widget_ad_125_125-widget', 'a:2:{i:1;a:0:{}s:12:\"_multiwidget\";i:1;}', 'yes'),
(187, 'widget_contact_info-widget', 'a:2:{i:1;a:0:{}s:12:\"_multiwidget\";i:1;}', 'yes'),
(188, 'widget_facebook-like-widget', 'a:2:{i:1;a:0:{}s:12:\"_multiwidget\";i:1;}', 'yes'),
(189, 'widget_flickr-widget', 'a:2:{i:1;a:0:{}s:12:\"_multiwidget\";i:1;}', 'yes'),
(190, 'widget_recent_works-widget', 'a:2:{i:1;a:0:{}s:12:\"_multiwidget\";i:1;}', 'yes'),
(191, 'widget_social_links-widget', 'a:2:{i:1;a:0:{}s:12:\"_multiwidget\";i:1;}', 'yes'),
(192, 'widget_pyre_tabs-widget', 'a:2:{i:1;a:0:{}s:12:\"_multiwidget\";i:1;}', 'yes'),
(193, 'widget_tweets-widget', 'a:2:{i:1;a:0:{}s:12:\"_multiwidget\";i:1;}', 'yes'),
(194, 'widget_calendar', 'a:2:{i:1;a:0:{}s:12:\"_multiwidget\";i:1;}', 'yes'),
(195, 'widget_nav_menu', 'a:2:{i:1;a:0:{}s:12:\"_multiwidget\";i:1;}', 'yes'),
(196, 'widget_layerslider_widget', 'a:2:{i:1;a:0:{}s:12:\"_multiwidget\";i:1;}', 'yes'),
(197, 'widget_pages', 'a:2:{i:1;a:0:{}s:12:\"_multiwidget\";i:1;}', 'yes'),
(199, 'widget_tag_cloud', 'a:2:{i:1;a:0:{}s:12:\"_multiwidget\";i:1;}', 'yes'),
(201, 'fusion_map_addresses', 'a:12:{s:7:\"Palermo\";a:3:{s:7:\"address\";s:7:\"Palermo\";s:8:\"latitude\";s:10:\"38.1156879\";s:9:\"longitude\";s:18:\"13.361267099999963\";}s:7:\"Phoenix\";a:3:{s:7:\"address\";s:7:\"Phoenix\";s:8:\"latitude\";s:10:\"33.4483771\";s:9:\"longitude\";s:19:\"-112.07403729999998\";}s:6:\"Sydney\";a:3:{s:7:\"address\";s:6:\"Sydney\";s:8:\"latitude\";s:11:\"-33.8674869\";s:9:\"longitude\";s:18:\"151.20699020000006\";}s:9:\"Vancouver\";a:3:{s:7:\"address\";s:9:\"Vancouver\";s:8:\"latitude\";s:10:\"45.6387281\";s:9:\"longitude\";s:19:\"-122.66148609999999\";}s:12:\"Buenos Aires\";a:3:{s:7:\"address\";s:12:\"Buenos Aires\";s:8:\"latitude\";s:11:\"-34.6036844\";s:9:\"longitude\";s:19:\"-58.381559100000004\";}s:12:\"Johannesburg\";a:3:{s:7:\"address\";s:12:\"Johannesburg\";s:8:\"latitude\";s:11:\"-26.2041028\";s:9:\"longitude\";s:18:\"28.047305100000017\";}s:5:\"Tokyo\";a:3:{s:7:\"address\";s:5:\"Tokyo\";s:8:\"latitude\";s:10:\"35.6894875\";s:9:\"longitude\";s:18:\"139.69170639999993\";}s:7:\"Papeete\";a:3:{s:7:\"address\";s:7:\"Papeete\";s:8:\"latitude\";s:11:\"-17.5516251\";s:9:\"longitude\";s:12:\"-149.5584758\";}s:9:\"Kathmandu\";a:3:{s:7:\"address\";s:9:\"Kathmandu\";s:8:\"latitude\";s:10:\"27.7172453\";s:9:\"longitude\";s:10:\"85.3239605\";}s:61:\"Assagay Forest Lodge, Williams Road, Hillcrest, KwaZulu-Natal\";a:3:{s:7:\"address\";s:61:\"Assagay Forest Lodge, Williams Road, Hillcrest, KwaZulu-Natal\";s:8:\"latitude\";s:11:\"-29.7694486\";s:9:\"longitude\";s:18:\"30.786712899999997\";}s:20:\"Assagay Forest Lodge\";a:3:{s:7:\"address\";s:20:\"Assagay Forest Lodge\";s:8:\"latitude\";s:11:\"-29.7778936\";s:9:\"longitude\";s:18:\"30.743616100000054\";}s:13:\"Assagay Lodge\";a:3:{s:7:\"address\";s:13:\"Assagay Lodge\";s:8:\"latitude\";s:11:\"-29.7778936\";s:9:\"longitude\";s:18:\"30.743616100000054\";}}', 'yes'),
(206, 'revslider_checktables', '1', 'yes'),
(207, 'revslider-static-css', '.tp-caption a {\ncolor:#ff7302;\ntext-shadow:none;\n-webkit-transition:all 0.2s ease-out;\n-moz-transition:all 0.2s ease-out;\n-o-transition:all 0.2s ease-out;\n-ms-transition:all 0.2s ease-out;\n}\n\n.tp-caption a:hover {\ncolor:#ffa902;\n}', 'yes'),
(208, 'revslider-update-check-short', '1569776828', 'yes'),
(209, 'revslider-valid-notice', 'false', 'yes'),
(210, 'avada_revslider_version', '4.6.92', 'yes'),
(229, 'revslider-latest-version', '0', 'yes'),
(230, 'revslider-notices', 'a:4:{i:0;O:8:\"stdClass\":7:{s:7:\"version\";s:5:\"4.9.9\";s:4:\"text\";s:202:\"<a href=\"http://revolution.themepunch.com\" target=\"_blank\"><img src=\"http://updates.themepunch.tools/banners/updatenow_banner.jpg\" style=\"min-width: 50%; max-width:100%\" alt=\"revslider 5.0 is out\" ></a>\";s:4:\"code\";s:10:\"TPRS500-75\";s:5:\"color\";s:5:\"green\";s:7:\"disable\";b:0;s:9:\"is_global\";b:0;s:10:\"additional\";a:0:{}}i:1;O:8:\"stdClass\":7:{s:7:\"version\";s:7:\"5.0.4.1\";s:4:\"text\";s:230:\"<a href=\"http://revolution.themepunch.com/direct-customer-benefits/\" target=\"_blank\"><img src=\"http://updates.themepunch.tools/banners/updateto506_banner.jpg\" style=\"min-width: 50%; max-width:100%\" alt=\"revslider 5.0 is out\" ></a>\";s:4:\"code\";s:10:\"TPRS506-01\";s:5:\"color\";s:5:\"green\";s:7:\"disable\";b:0;s:9:\"is_global\";b:0;s:10:\"additional\";a:0:{}}i:2;O:8:\"stdClass\":7:{s:7:\"version\";s:5:\"5.1.4\";s:4:\"text\";s:260:\"<a href=\"http://revolution.themepunch.com/direct-customer-benefits/?ref=515b#productactivation\" target=\"_blank\"><img src=\"http://updates.themepunch.tools/banners/updatenow_banner515.jpg\" style=\"min-width: 50%; max-width:100%\" alt=\"revslider 5.1.5 is out\" ></a>\";s:4:\"code\";s:10:\"TPRS515-01\";s:5:\"color\";s:5:\"green\";s:7:\"disable\";b:0;s:9:\"is_global\";b:0;s:10:\"additional\";a:0:{}}i:3;O:8:\"stdClass\":7:{s:7:\"version\";s:5:\"5.1.6\";s:4:\"text\";s:235:\"<a href=\"//revolution.themepunch.com/direct-customer-benefits/?ref=52b\" target=\"_blank\"><img src=\"http://updates.themepunch.tools/banners/updatenow_banner52.jpg\" style=\"min-width: 50%; max-width:100%\" alt=\"revslider 5.1.5 is out\" ></a>\";s:4:\"code\";s:10:\"TPRS515-01\";s:5:\"color\";s:5:\"green\";s:7:\"disable\";b:0;s:9:\"is_global\";b:0;s:10:\"additional\";a:0:{}}}', 'yes'),
(253, 'widget_rev-slider-widget', 'a:2:{i:1;a:0:{}s:12:\"_multiwidget\";i:1;}', 'yes'),
(295, 'reservations_email_to_admin_edited', 'a:3:{s:3:\"msg\";s:266:\"Reservation got edited by Guest.<br><br>\r\nNew Reservation Details:<br>\r\nID: [ID]<br>Name: [thename] <br>Email: [email] <br>From: [arrival] <br>To: [departure] <br>Persons: [adults] <br>Children: [childs] <br>Resource: [resource] <br>Price: [price]<br><br>[changelog]\";s:4:\"subj\";s:54:\"Reservation on Assagay Forest Lodge got edited by user\";s:6:\"active\";i:1;}', 'no');
INSERT INTO `wp_options` (`option_id`, `option_name`, `option_value`, `autoload`) VALUES
(310, 'reservations_form_booknow', '<div><table class=\\\" alignleft\\\" style=\\\"width: 100%;\\\" cellspacing=\\\"0\\\" cellpadding=\\\"0\\\"><tbody><tr style=\\\"height: 25px;\\\"><td style=\\\"width: 25%; height: 25px; text-align: left; vertical-align: middle;\\\"><span style=\\\"color: #99ccff; font-family: arial,helvetica,sans-serif; font-size: 12pt;\\\"><strong>RESERVATION DETAILS</strong></span></td><td style=\\\"width: 25%; height: 25px; text-align: left; vertical-align: middle;\\\"><span style=\\\"color: #99ccff; font-family: arial,helvetica,sans-serif; font-size: 8pt;\\\"><span style=\\\"background-color: #0191c8;\\\">[error error_title=\\\"Errors found in the form\\\" error_message=\\\"There is a problem.\\\"]</span></span></td><td style=\\\"width: 25%; height: 25px; text-align: left; vertical-align: middle;\\\"><span style=\\\"color: #99ccff; font-family: arial,helvetica,sans-serif; font-size: 12pt;\\\"> <strong><span style=\\\"color: #99ccff; font-family: Arial;\\\">ESTIMATED PRICE INCL VAT</span></strong></span></td><td style=\\\"width: 25%; height: 25px; vertical-align: middle;\\\"><span style=\\\"color: #99ccff; font-family: arial,helvetica,sans-serif; font-size: 12pt;\\\"><span style=\\\"font-family: arial,helvetica,sans-serif;\\\">[show_price]</span><strong> </strong></span></td></tr><tr style=\\\"height: 25px;\\\"><td style=\\\"width: 25%; height: 25px; text-align: left; vertical-align: middle;\\\"><span style=\\\"color: #99ccff; font-family: arial,helvetica,sans-serif; font-size: 10pt;\\\"> </span></td><td style=\\\"width: 25%; height: 25px; text-align: left; vertical-align: middle;\\\"><span style=\\\"color: #99ccff; font-family: arial,helvetica,sans-serif; font-size: 10pt;\\\"> </span></td><td style=\\\"width: 25%; height: 25px; text-align: left; vertical-align: middle;\\\"><span style=\\\"color: #99ccff; font-family: arial,helvetica,sans-serif; font-size: 10pt;\\\"> </span></td><td style=\\\"width: 25%; height: 25px; text-align: left; vertical-align: middle;\\\"><span style=\\\"color: #99ccff; font-family: arial,helvetica,sans-serif; font-size: 10pt;\\\"> <span style=\\\"color: #99ccff; font-family: arial,helvetica,sans-serif; font-size: 12pt;\\\"><strong><span style=\\\"font-family: Arial;\\\">[hidden resource 854]</span></strong></span></span></td></tr><tr style=\\\"height: 25px;\\\"><td style=\\\"width: 25%; height: 25px; text-align: left; vertical-align: middle;\\\"><span style=\\\"color: #99ccff; font-family: arial,helvetica,sans-serif; font-size: 10pt;\\\">Arrival Date</span></td><td style=\\\"width: 25%; height: 25px; text-align: left; vertical-align: middle;\\\"><span style=\\\"color: #99ccff; font-family: arial,helvetica,sans-serif; font-size: 10pt;\\\">[date-from value=\\\"+1\\\"]</span></td><td style=\\\"width: 25%; height: 25px; text-align: left; vertical-align: middle;\\\"><span style=\\\"color: #99ccff; font-family: arial,helvetica,sans-serif; font-size: 10pt;\\\">Departure Date</span></td><td style=\\\"width: 20%; height: 25px; text-align: left; vertical-align: middle;\\\"><span style=\\\"color: #99ccff; font-family: arial,helvetica,sans-serif; font-size: 10pt;\\\">[date-to value=\\\"+2\\\"]</span></td></tr><tr style=\\\"height: 25px;\\\"><td style=\\\"width: 25%; height: 25px; text-align: left; vertical-align: middle;\\\"><span style=\\\"color: #99ccff; font-family: arial,helvetica,sans-serif; font-size: 10pt;\\\">Number Of Guests (excluding children under 2yrs)</span></td><td style=\\\"width: 25%; height: 25px; text-align: left; vertical-align: middle;\\\"><span style=\\\"color: #99ccff; font-family: arial,helvetica,sans-serif; font-size: 10pt;\\\">[adults 1 10 value=\\\"1\\\"]</span></td><td style=\\\"width: 25%; height: 25px; text-align: left; vertical-align: middle;\\\"><span style=\\\"color: #99ccff; font-family: arial,helvetica,sans-serif; font-size: 10pt;\\\">Children Under 2yrs (Own Bedding)</span></td><td style=\\\"width: 25%; height: 25px; text-align: left; vertical-align: middle;\\\"><span style=\\\"color: #99ccff; font-family: arial,helvetica,sans-serif; font-size: 10pt;\\\">...Stay Free</span></td></tr><tr style=\\\"height: 25px;\\\"><td style=\\\"width: 25%; height: 25px; text-align: left; vertical-align: middle;\\\"><span style=\\\"color: #99ccff;\\\"> </span></td><td style=\\\"width: 25%; height: 25px; text-align: left; vertical-align: middle;\\\"><span style=\\\"color: #99ccff;\\\"> </span></td><td style=\\\"width: 25%; height: 25px; text-align: left; vertical-align: middle;\\\"><span style=\\\"color: #99ccff;\\\"> </span></td><td style=\\\"width: 25%; height: 25px; text-align: left; vertical-align: middle;\\\"><span style=\\\"color: #99ccff;\\\"> </span></td></tr><tr style=\\\"height: 25px;\\\"><td style=\\\"width: 25%; height: 25px; text-align: left; vertical-align: middle;\\\"><span style=\\\"color: #99ccff; font-family: arial,helvetica,sans-serif; font-size: 10pt;\\\"><span style=\\\"font-family: arial,helvetica,sans-serif; font-size: 12pt;\\\"><strong>MEAL OPTIONS</strong></span></span></td><td style=\\\"width: 25%; height: 25px; text-align: left; vertical-align: middle;\\\"><span style=\\\"color: #99ccff;\\\"> </span></td><td style=\\\"width: 25%; height: 25px; text-align: left; vertical-align: middle;\\\"><span style=\\\"color: #99ccff; font-family: arial,helvetica,sans-serif; font-size: 10pt;\\\"><span style=\\\"font-family: arial,helvetica,sans-serif; font-size: 12pt;\\\"><strong>CLEANING SERVICE OPTIONS</strong></span></span></td><td style=\\\"width: 25%; height: 25px; text-align: left; vertical-align: middle;\\\"><span style=\\\"color: #99ccff;\\\"> </span></td></tr><tr style=\\\"height: 25px;\\\"><td style=\\\"width: 25%; height: 25px; text-align: left; vertical-align: middle;\\\"><span style=\\\"color: #99ccff; font-family: arial,helvetica,sans-serif; font-size: 10pt;\\\">Include Morning Breakfast</span></td><td style=\\\"width: 25%; height: 25px; text-align: left; vertical-align: middle;\\\"><span style=\\\"color: #99ccff; font-family: arial,helvetica,sans-serif; font-size: 10pt;\\\">[custom id=\\\"8\\\"]</span></td><td style=\\\"width: 25%; height: 25px; text-align: left; vertical-align: middle;\\\"><span style=\\\"color: #99ccff; font-family: arial,helvetica,sans-serif; font-size: 10pt;\\\">Include Services for Lodge (excluding room/s)</span></td><td style=\\\"width: 25%; height: 25px; text-align: left; vertical-align: middle;\\\"><span style=\\\"color: #99ccff; font-family: arial,helvetica,sans-serif; font-size: 10pt;\\\">[custom id=\\\"6\\\"]</span></td></tr><tr style=\\\"height: 25px;\\\"><td style=\\\"width: 25%; height: 25px; text-align: left; vertical-align: middle;\\\"><span style=\\\"color: #99ccff; font-family: arial,helvetica,sans-serif; font-size: 12pt;\\\"><span style=\\\"font-family: arial,helvetica,sans-serif; font-size: 10pt;\\\">Include Evening Dinner</span></span></td><td style=\\\"width: 25%; height: 25px; text-align: left; vertical-align: middle;\\\"><span style=\\\"color: #99ccff; font-family: arial,helvetica,sans-serif; font-size: 12pt;\\\"><span style=\\\"font-family: arial,helvetica,sans-serif; font-size: 10pt;\\\">[custom id=\\\"9\\\"]</span></span></td><td style=\\\"width: 25%; height: 25px; text-align: left; vertical-align: middle;\\\"><span style=\\\"color: #99ccff;\\\"><span style=\\\"color: #99ccff; font-family: arial,helvetica,sans-serif; font-size: 10pt;\\\">Include Services for Rooms</span></span></td><td style=\\\"width: 25%; height: 25px; text-align: left; vertical-align: middle;\\\"><span style=\\\"color: #99ccff;\\\"><span style=\\\"color: #99ccff; font-family: arial,helvetica,sans-serif; font-size: 10pt;\\\">[custom id=\\\"7\\\"]</span></span></td></tr><tr style=\\\"height: 25px;\\\"><td style=\\\"width: 25%; height: 25px; text-align: left; vertical-align: middle;\\\" colspan=\\\"4\\\"><span style=\\\"color: #99ccff;\\\"> </span></td></tr><tr style=\\\"height: 25px;\\\"><td style=\\\"width: 25%; height: 25px; text-align: left; vertical-align: middle;\\\" colspan=\\\"4\\\"><span style=\\\"color: #99ccff; font-family: arial,helvetica,sans-serif; font-size: 12pt;\\\"><strong>PERSONAL DETAILS</strong></span></td></tr><tr style=\\\"height: 25px;\\\"><td style=\\\"width: 25%; height: 25px; text-align: left; vertical-align: middle;\\\"><span style=\\\"color: #99ccff; font-family: arial,helvetica,sans-serif; font-size: 10pt;\\\">Name &amp; Surname</span></td><td style=\\\"width: 25%; height: 25px; text-align: left; vertical-align: middle;\\\"><span style=\\\"color: #99ccff; font-family: arial,helvetica,sans-serif; font-size: 10pt;\\\">[thename]</span></td><td style=\\\"width: 25%; height: 25px; text-align: left; vertical-align: middle;\\\"><span style=\\\"color: #99ccff; font-family: arial,helvetica,sans-serif; font-size: 10pt;\\\">Email Address</span></td><td style=\\\"width: 25%; height: 25px; text-align: left; vertical-align: middle;\\\"><span style=\\\"color: #99ccff; font-family: arial,helvetica,sans-serif; font-size: 10pt;\\\">[email]</span></td></tr><tr style=\\\"height: 25px;\\\"><td style=\\\"width: 25%; height: 25px; text-align: left; vertical-align: middle;\\\"><span style=\\\"color: #99ccff; font-family: arial,helvetica,sans-serif; font-size: 10pt;\\\">Country</span></td><td style=\\\"width: 25%; height: 25px; text-align: left; vertical-align: middle;\\\"><span style=\\\"color: #99ccff; font-family: arial,helvetica,sans-serif; font-size: 10pt;\\\">[country value=\\\"ZA\\\"]</span></td><td style=\\\"width: 25%; height: 25px; text-align: left; vertical-align: middle;\\\"><span style=\\\"color: #99ccff; font-family: arial,helvetica,sans-serif; font-size: 10pt;\\\">Contact Phone</span></td><td style=\\\"width: 25%; height: 25px; text-align: left; vertical-align: middle;\\\"><span style=\\\"color: #99ccff; font-family: arial,helvetica,sans-serif; font-size: 10pt;\\\">[custom text Phone *]</span></td></tr><tr style=\\\"height: 25px;\\\"><td style=\\\"width: 25%; height: 25px; text-align: left; vertical-align: middle;\\\"><span style=\\\"color: #99ccff; font-family: arial,helvetica,sans-serif; font-size: 10pt;\\\"> </span></td><td style=\\\"width: 25%; height: 25px; text-align: left; vertical-align: middle;\\\"><span style=\\\"color: #99ccff; font-family: arial,helvetica,sans-serif; font-size: 10pt;\\\"> </span></td><td style=\\\"width: 25%; height: 25px; text-align: left; vertical-align: middle;\\\"><span style=\\\"color: #99ccff;\\\"> </span></td><td style=\\\"width: 25%; height: 25px; text-align: left; vertical-align: middle;\\\"><span style=\\\"color: #99ccff;\\\"> </span></td></tr><tr style=\\\"height: 25px;\\\"><td style=\\\"width: 25%; height: 25px; text-align: left; vertical-align: top;\\\" colspan=\\\"2\\\" rowspan=\\\"3\\\"><span style=\\\"color: #99ccff; font-family: arial,helvetica,sans-serif; font-size: 10pt;\\\">[custom id=\\\"10\\\" title=\\\"Comments\\\"]</span><span style=\\\"color: #99ccff; font-family: arial,helvetica,sans-serif; font-size: 10pt;\\\"> </span><span style=\\\"color: #99ccff; font-family: arial,helvetica,sans-serif; font-size: 10pt;\\\"> </span><span style=\\\"color: #99ccff;\\\"> </span><span style=\\\"color: #99ccff;\\\"> </span></td><td style=\\\"width: 25%; height: 25px; text-align: left; vertical-align: middle;\\\"><span style=\\\"color: #99ccff; font-family: arial,helvetica,sans-serif; font-size: 10pt;\\\">I accept <span style=\\\"text-decoration: underline;\\\"><strong> <a style=\\\"color: #99ccff; text-decoration: underline;\\\" href=\\\"http://msla.co.za/lodge/tcs/\\\">Terms &amp; Conditions</a></strong></span></span></td><td style=\\\"width: 25%; height: 25px; text-align: left; vertical-align: middle;\\\"><span style=\\\"color: #99ccff; font-family: arial,helvetica,sans-serif; font-size: 10pt;\\\">[custom id=\\\"1\\\" title=\\\"Terms &amp; Conditions\\\"]</span></td></tr><tr style=\\\"height: 25px;\\\"><td style=\\\"width: 25%; height: 25px; text-align: left; vertical-align: middle;\\\"><span style=\\\"color: #99ccff; font-family: arial,helvetica,sans-serif; font-size: 10pt;\\\">Enter Security Code</span></td><td style=\\\"width: 25%; height: 25px; text-align: left; vertical-align: middle;\\\"><span style=\\\"color: #99ccff; font-family: arial,helvetica,sans-serif; font-size: 16pt;\\\">[captcha]</span></td></tr><tr style=\\\"height: 25px;\\\"><td style=\\\"width: 25%; height: 25px; text-align: left; vertical-align: middle;\\\"><span style=\\\"color: #99ccff;\\\"> </span></td><td style=\\\"width: 25%; height: 25px; text-align: left; vertical-align: middle;\\\"><span style=\\\"color: #99ccff; font-family: arial,helvetica,sans-serif; font-size: 10pt;\\\">[submit value=\\\"Submit\\\"]</span></td></tr></tbody></table></div>', 'no'),
(352, 'finished_splitting_shared_terms', '1', 'yes'),
(353, 'db_upgraded', '', 'yes'),
(362, 'WPLANG', '', 'yes'),
(449, 'portfolio_category_children', 'a:0:{}', 'yes'),
(573, 'akismet_strictness', '1', 'yes'),
(574, 'akismet_show_user_comments_approved', '0', 'yes'),
(575, 'wordpress_api_key', '5812a70ab71b', 'yes'),
(640, 'auto_core_update_notified', 'a:4:{s:4:\"type\";s:7:\"success\";s:5:\"email\";s:23:\"assagaylodge@msla.co.za\";s:7:\"version\";s:5:\"5.8.6\";s:9:\"timestamp\";i:1666058619;}', 'no'),
(968, 'widget_easyreservations_form_widget', 'a:2:{i:1;a:0:{}s:12:\"_multiwidget\";i:1;}', 'yes'),
(969, 'site_icon', '0', 'yes'),
(974, 'medium_large_size_w', '768', 'yes'),
(975, 'medium_large_size_h', '0', 'yes'),
(985, 'rewrite_rules', 'a:202:{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:18:\"portfolio-items/?$\";s:35:\"index.php?post_type=avada_portfolio\";s:48:\"portfolio-items/feed/(feed|rdf|rss|rss2|atom)/?$\";s:52:\"index.php?post_type=avada_portfolio&feed=$matches[1]\";s:43:\"portfolio-items/(feed|rdf|rss|rss2|atom)/?$\";s:52:\"index.php?post_type=avada_portfolio&feed=$matches[1]\";s:35:\"portfolio-items/page/([0-9]{1,})/?$\";s:53:\"index.php?post_type=avada_portfolio&paged=$matches[1]\";s:12:\"avada_faq/?$\";s:29:\"index.php?post_type=avada_faq\";s:42:\"avada_faq/feed/(feed|rdf|rss|rss2|atom)/?$\";s:46:\"index.php?post_type=avada_faq&feed=$matches[1]\";s:37:\"avada_faq/(feed|rdf|rss|rss2|atom)/?$\";s:46:\"index.php?post_type=avada_faq&feed=$matches[1]\";s:29:\"avada_faq/page/([0-9]{1,})/?$\";s:47:\"index.php?post_type=avada_faq&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:17:\"category/(.+?)/?$\";s:35:\"index.php?category_name=$matches[1]\";s:44:\"tag/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:42:\"index.php?tag=$matches[1]&feed=$matches[2]\";s:39:\"tag/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:42:\"index.php?tag=$matches[1]&feed=$matches[2]\";s:20:\"tag/([^/]+)/embed/?$\";s:36:\"index.php?tag=$matches[1]&embed=true\";s:32:\"tag/([^/]+)/page/?([0-9]{1,})/?$\";s:43:\"index.php?tag=$matches[1]&paged=$matches[2]\";s:14:\"tag/([^/]+)/?$\";s:25:\"index.php?tag=$matches[1]\";s:45:\"type/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:50:\"index.php?post_format=$matches[1]&feed=$matches[2]\";s:40:\"type/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:50:\"index.php?post_format=$matches[1]&feed=$matches[2]\";s:21:\"type/([^/]+)/embed/?$\";s:44:\"index.php?post_format=$matches[1]&embed=true\";s:33:\"type/([^/]+)/page/?([0-9]{1,})/?$\";s:51:\"index.php?post_format=$matches[1]&paged=$matches[2]\";s:15:\"type/([^/]+)/?$\";s:33:\"index.php?post_format=$matches[1]\";s:43:\"portfolio-items/[^/]+/attachment/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:53:\"portfolio-items/[^/]+/attachment/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:73:\"portfolio-items/[^/]+/attachment/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:68:\"portfolio-items/[^/]+/attachment/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:68:\"portfolio-items/[^/]+/attachment/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:49:\"portfolio-items/[^/]+/attachment/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";s:32:\"portfolio-items/([^/]+)/embed/?$\";s:48:\"index.php?avada_portfolio=$matches[1]&embed=true\";s:36:\"portfolio-items/([^/]+)/trackback/?$\";s:42:\"index.php?avada_portfolio=$matches[1]&tb=1\";s:56:\"portfolio-items/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:54:\"index.php?avada_portfolio=$matches[1]&feed=$matches[2]\";s:51:\"portfolio-items/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:54:\"index.php?avada_portfolio=$matches[1]&feed=$matches[2]\";s:44:\"portfolio-items/([^/]+)/page/?([0-9]{1,})/?$\";s:55:\"index.php?avada_portfolio=$matches[1]&paged=$matches[2]\";s:51:\"portfolio-items/([^/]+)/comment-page-([0-9]{1,})/?$\";s:55:\"index.php?avada_portfolio=$matches[1]&cpage=$matches[2]\";s:40:\"portfolio-items/([^/]+)(?:/([0-9]+))?/?$\";s:54:\"index.php?avada_portfolio=$matches[1]&page=$matches[2]\";s:32:\"portfolio-items/[^/]+/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:42:\"portfolio-items/[^/]+/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:62:\"portfolio-items/[^/]+/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:57:\"portfolio-items/[^/]+/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:57:\"portfolio-items/[^/]+/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:38:\"portfolio-items/[^/]+/([^/]+)/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:57:\"portfolio_skills/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:55:\"index.php?portfolio_skills=$matches[1]&feed=$matches[2]\";s:52:\"portfolio_skills/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:55:\"index.php?portfolio_skills=$matches[1]&feed=$matches[2]\";s:33:\"portfolio_skills/([^/]+)/embed/?$\";s:49:\"index.php?portfolio_skills=$matches[1]&embed=true\";s:45:\"portfolio_skills/([^/]+)/page/?([0-9]{1,})/?$\";s:56:\"index.php?portfolio_skills=$matches[1]&paged=$matches[2]\";s:27:\"portfolio_skills/([^/]+)/?$\";s:38:\"index.php?portfolio_skills=$matches[1]\";s:55:\"portfolio_tags/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:53:\"index.php?portfolio_tags=$matches[1]&feed=$matches[2]\";s:50:\"portfolio_tags/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:53:\"index.php?portfolio_tags=$matches[1]&feed=$matches[2]\";s:31:\"portfolio_tags/([^/]+)/embed/?$\";s:47:\"index.php?portfolio_tags=$matches[1]&embed=true\";s:43:\"portfolio_tags/([^/]+)/page/?([0-9]{1,})/?$\";s:54:\"index.php?portfolio_tags=$matches[1]&paged=$matches[2]\";s:25:\"portfolio_tags/([^/]+)/?$\";s:36:\"index.php?portfolio_tags=$matches[1]\";s:37:\"avada_faq/[^/]+/attachment/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:47:\"avada_faq/[^/]+/attachment/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:67:\"avada_faq/[^/]+/attachment/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:62:\"avada_faq/[^/]+/attachment/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:62:\"avada_faq/[^/]+/attachment/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:43:\"avada_faq/[^/]+/attachment/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";s:26:\"avada_faq/([^/]+)/embed/?$\";s:42:\"index.php?avada_faq=$matches[1]&embed=true\";s:30:\"avada_faq/([^/]+)/trackback/?$\";s:36:\"index.php?avada_faq=$matches[1]&tb=1\";s:50:\"avada_faq/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:48:\"index.php?avada_faq=$matches[1]&feed=$matches[2]\";s:45:\"avada_faq/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:48:\"index.php?avada_faq=$matches[1]&feed=$matches[2]\";s:38:\"avada_faq/([^/]+)/page/?([0-9]{1,})/?$\";s:49:\"index.php?avada_faq=$matches[1]&paged=$matches[2]\";s:45:\"avada_faq/([^/]+)/comment-page-([0-9]{1,})/?$\";s:49:\"index.php?avada_faq=$matches[1]&cpage=$matches[2]\";s:34:\"avada_faq/([^/]+)(?:/([0-9]+))?/?$\";s:48:\"index.php?avada_faq=$matches[1]&page=$matches[2]\";s:26:\"avada_faq/[^/]+/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:36:\"avada_faq/[^/]+/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:56:\"avada_faq/[^/]+/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:51:\"avada_faq/[^/]+/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:51:\"avada_faq/[^/]+/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:32:\"avada_faq/[^/]+/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";s:53:\"faq_category/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:51:\"index.php?faq_category=$matches[1]&feed=$matches[2]\";s:48:\"faq_category/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:51:\"index.php?faq_category=$matches[1]&feed=$matches[2]\";s:29:\"faq_category/([^/]+)/embed/?$\";s:45:\"index.php?faq_category=$matches[1]&embed=true\";s:41:\"faq_category/([^/]+)/page/?([0-9]{1,})/?$\";s:52:\"index.php?faq_category=$matches[1]&paged=$matches[2]\";s:23:\"faq_category/([^/]+)/?$\";s:34:\"index.php?faq_category=$matches[1]\";s:41:\"elastic-slide/[^/]+/attachment/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:51:\"elastic-slide/[^/]+/attachment/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:71:\"elastic-slide/[^/]+/attachment/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:66:\"elastic-slide/[^/]+/attachment/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:66:\"elastic-slide/[^/]+/attachment/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:47:\"elastic-slide/[^/]+/attachment/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";s:30:\"elastic-slide/([^/]+)/embed/?$\";s:52:\"index.php?themefusion_elastic=$matches[1]&embed=true\";s:34:\"elastic-slide/([^/]+)/trackback/?$\";s:46:\"index.php?themefusion_elastic=$matches[1]&tb=1\";s:42:\"elastic-slide/([^/]+)/page/?([0-9]{1,})/?$\";s:59:\"index.php?themefusion_elastic=$matches[1]&paged=$matches[2]\";s:49:\"elastic-slide/([^/]+)/comment-page-([0-9]{1,})/?$\";s:59:\"index.php?themefusion_elastic=$matches[1]&cpage=$matches[2]\";s:38:\"elastic-slide/([^/]+)(?:/([0-9]+))?/?$\";s:58:\"index.php?themefusion_elastic=$matches[1]&page=$matches[2]\";s:30:\"elastic-slide/[^/]+/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:40:\"elastic-slide/[^/]+/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:60:\"elastic-slide/[^/]+/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:55:\"elastic-slide/[^/]+/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:55:\"elastic-slide/[^/]+/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:36:\"elastic-slide/[^/]+/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";s:62:\"themefusion_es_groups/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:60:\"index.php?themefusion_es_groups=$matches[1]&feed=$matches[2]\";s:57:\"themefusion_es_groups/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:60:\"index.php?themefusion_es_groups=$matches[1]&feed=$matches[2]\";s:38:\"themefusion_es_groups/([^/]+)/embed/?$\";s:54:\"index.php?themefusion_es_groups=$matches[1]&embed=true\";s:50:\"themefusion_es_groups/([^/]+)/page/?([0-9]{1,})/?$\";s:61:\"index.php?themefusion_es_groups=$matches[1]&paged=$matches[2]\";s:32:\"themefusion_es_groups/([^/]+)/?$\";s:43:\"index.php?themefusion_es_groups=$matches[1]\";s:33:\"slide/[^/]+/attachment/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:43:\"slide/[^/]+/attachment/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:63:\"slide/[^/]+/attachment/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:58:\"slide/[^/]+/attachment/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:58:\"slide/[^/]+/attachment/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:39:\"slide/[^/]+/attachment/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";s:22:\"slide/([^/]+)/embed/?$\";s:38:\"index.php?slide=$matches[1]&embed=true\";s:26:\"slide/([^/]+)/trackback/?$\";s:32:\"index.php?slide=$matches[1]&tb=1\";s:34:\"slide/([^/]+)/page/?([0-9]{1,})/?$\";s:45:\"index.php?slide=$matches[1]&paged=$matches[2]\";s:41:\"slide/([^/]+)/comment-page-([0-9]{1,})/?$\";s:45:\"index.php?slide=$matches[1]&cpage=$matches[2]\";s:30:\"slide/([^/]+)(?:/([0-9]+))?/?$\";s:44:\"index.php?slide=$matches[1]&page=$matches[2]\";s:22:\"slide/[^/]+/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:32:\"slide/[^/]+/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:52:\"slide/[^/]+/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:47:\"slide/[^/]+/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:47:\"slide/[^/]+/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:28:\"slide/[^/]+/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";s:51:\"slide-page/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?slide-page=$matches[1]&feed=$matches[2]\";s:46:\"slide-page/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?slide-page=$matches[1]&feed=$matches[2]\";s:27:\"slide-page/([^/]+)/embed/?$\";s:43:\"index.php?slide-page=$matches[1]&embed=true\";s:39:\"slide-page/([^/]+)/page/?([0-9]{1,})/?$\";s:50:\"index.php?slide-page=$matches[1]&paged=$matches[2]\";s:21:\"slide-page/([^/]+)/?$\";s:32:\"index.php?slide-page=$matches[1]\";s:48:\".*wp-(atom|rdf|rss|rss2|feed|commentsrss2)\\.php$\";s:18:\"index.php?feed=old\";s:20:\".*wp-app\\.php(/.*)?$\";s:19:\"index.php?error=403\";s:18:\".*wp-register.php$\";s:23:\"index.php?register=true\";s:32:\"feed/(feed|rdf|rss|rss2|atom)/?$\";s:27:\"index.php?&feed=$matches[1]\";s:27:\"(feed|rdf|rss|rss2|atom)/?$\";s:27:\"index.php?&feed=$matches[1]\";s:8:\"embed/?$\";s:21:\"index.php?&embed=true\";s:20:\"page/?([0-9]{1,})/?$\";s:28:\"index.php?&paged=$matches[1]\";s:27:\"comment-page-([0-9]{1,})/?$\";s:38:\"index.php?&page_id=7&cpage=$matches[1]\";s:41:\"comments/feed/(feed|rdf|rss|rss2|atom)/?$\";s:42:\"index.php?&feed=$matches[1]&withcomments=1\";s:36:\"comments/(feed|rdf|rss|rss2|atom)/?$\";s:42:\"index.php?&feed=$matches[1]&withcomments=1\";s:17:\"comments/embed/?$\";s:21:\"index.php?&embed=true\";s:44:\"search/(.+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:40:\"index.php?s=$matches[1]&feed=$matches[2]\";s:39:\"search/(.+)/(feed|rdf|rss|rss2|atom)/?$\";s:40:\"index.php?s=$matches[1]&feed=$matches[2]\";s:20:\"search/(.+)/embed/?$\";s:34:\"index.php?s=$matches[1]&embed=true\";s:32:\"search/(.+)/page/?([0-9]{1,})/?$\";s:41:\"index.php?s=$matches[1]&paged=$matches[2]\";s:14:\"search/(.+)/?$\";s:23:\"index.php?s=$matches[1]\";s:47:\"author/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:50:\"index.php?author_name=$matches[1]&feed=$matches[2]\";s:42:\"author/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:50:\"index.php?author_name=$matches[1]&feed=$matches[2]\";s:23:\"author/([^/]+)/embed/?$\";s:44:\"index.php?author_name=$matches[1]&embed=true\";s:35:\"author/([^/]+)/page/?([0-9]{1,})/?$\";s:51:\"index.php?author_name=$matches[1]&paged=$matches[2]\";s:17:\"author/([^/]+)/?$\";s:33:\"index.php?author_name=$matches[1]\";s:69:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/feed/(feed|rdf|rss|rss2|atom)/?$\";s:80:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&feed=$matches[4]\";s:64:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/(feed|rdf|rss|rss2|atom)/?$\";s:80:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&feed=$matches[4]\";s:45:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/embed/?$\";s:74:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&embed=true\";s:57:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/page/?([0-9]{1,})/?$\";s:81:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&paged=$matches[4]\";s:39:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/?$\";s:63:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]\";s:56:\"([0-9]{4})/([0-9]{1,2})/feed/(feed|rdf|rss|rss2|atom)/?$\";s:64:\"index.php?year=$matches[1]&monthnum=$matches[2]&feed=$matches[3]\";s:51:\"([0-9]{4})/([0-9]{1,2})/(feed|rdf|rss|rss2|atom)/?$\";s:64:\"index.php?year=$matches[1]&monthnum=$matches[2]&feed=$matches[3]\";s:32:\"([0-9]{4})/([0-9]{1,2})/embed/?$\";s:58:\"index.php?year=$matches[1]&monthnum=$matches[2]&embed=true\";s:44:\"([0-9]{4})/([0-9]{1,2})/page/?([0-9]{1,})/?$\";s:65:\"index.php?year=$matches[1]&monthnum=$matches[2]&paged=$matches[3]\";s:26:\"([0-9]{4})/([0-9]{1,2})/?$\";s:47:\"index.php?year=$matches[1]&monthnum=$matches[2]\";s:43:\"([0-9]{4})/feed/(feed|rdf|rss|rss2|atom)/?$\";s:43:\"index.php?year=$matches[1]&feed=$matches[2]\";s:38:\"([0-9]{4})/(feed|rdf|rss|rss2|atom)/?$\";s:43:\"index.php?year=$matches[1]&feed=$matches[2]\";s:19:\"([0-9]{4})/embed/?$\";s:37:\"index.php?year=$matches[1]&embed=true\";s:31:\"([0-9]{4})/page/?([0-9]{1,})/?$\";s:44:\"index.php?year=$matches[1]&paged=$matches[2]\";s:13:\"([0-9]{4})/?$\";s:26:\"index.php?year=$matches[1]\";s:27:\".?.+?/attachment/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:37:\".?.+?/attachment/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:57:\".?.+?/attachment/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:52:\".?.+?/attachment/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:52:\".?.+?/attachment/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:33:\".?.+?/attachment/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";s:16:\"(.?.+?)/embed/?$\";s:41:\"index.php?pagename=$matches[1]&embed=true\";s:20:\"(.?.+?)/trackback/?$\";s:35:\"index.php?pagename=$matches[1]&tb=1\";s:40:\"(.?.+?)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:47:\"index.php?pagename=$matches[1]&feed=$matches[2]\";s:35:\"(.?.+?)/(feed|rdf|rss|rss2|atom)/?$\";s:47:\"index.php?pagename=$matches[1]&feed=$matches[2]\";s:28:\"(.?.+?)/page/?([0-9]{1,})/?$\";s:48:\"index.php?pagename=$matches[1]&paged=$matches[2]\";s:35:\"(.?.+?)/comment-page-([0-9]{1,})/?$\";s:48:\"index.php?pagename=$matches[1]&cpage=$matches[2]\";s:24:\"(.?.+?)(?:/([0-9]+))?/?$\";s:47:\"index.php?pagename=$matches[1]&page=$matches[2]\";s:27:\"[^/]+/attachment/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:37:\"[^/]+/attachment/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:57:\"[^/]+/attachment/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:52:\"[^/]+/attachment/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:52:\"[^/]+/attachment/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:33:\"[^/]+/attachment/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";s:16:\"([^/]+)/embed/?$\";s:37:\"index.php?name=$matches[1]&embed=true\";s:20:\"([^/]+)/trackback/?$\";s:31:\"index.php?name=$matches[1]&tb=1\";s:40:\"([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:43:\"index.php?name=$matches[1]&feed=$matches[2]\";s:35:\"([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:43:\"index.php?name=$matches[1]&feed=$matches[2]\";s:28:\"([^/]+)/page/?([0-9]{1,})/?$\";s:44:\"index.php?name=$matches[1]&paged=$matches[2]\";s:35:\"([^/]+)/comment-page-([0-9]{1,})/?$\";s:44:\"index.php?name=$matches[1]&cpage=$matches[2]\";s:24:\"([^/]+)(?:/([0-9]+))?/?$\";s:43:\"index.php?name=$matches[1]&page=$matches[2]\";s:16:\"[^/]+/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:26:\"[^/]+/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:46:\"[^/]+/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:41:\"[^/]+/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:41:\"[^/]+/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:22:\"[^/]+/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";}', 'yes'),
(1021, 'portfolio_skills_children', 'a:0:{}', 'yes'),
(1647, 'reservations_form_backup', '<div><table style=\\\"width: 100%;\\\" cellspacing=\\\"0\\\" cellpadding=\\\"0\\\"><tbody><tr style=\\\"height: 25px;\\\"><td style=\\\"width: 25%; height: 25px; text-align: left; vertical-align: middle;\\\"><span style=\\\"color: #99ccff; font-family: arial,helvetica,sans-serif; font-size: 12pt;\\\"><strong>RESERVATION DETAILS</strong></span></td><td style=\\\"width: 25%; height: 25px; text-align: left; vertical-align: middle;\\\"><span style=\\\"color: #99ccff; font-family: arial,helvetica,sans-serif; font-size: 8pt;\\\"><span style=\\\"background-color: #0191c8;\\\">[error error_title=\\\"Errors found in the form\\\" error_message=\\\"There is a problem.\\\"]</span></span></td><td style=\\\"width: 25%; height: 25px; text-align: left; vertical-align: middle;\\\"><span style=\\\"color: #99ccff; font-family: arial,helvetica,sans-serif; font-size: 12pt;\\\"> <strong><span style=\\\"color: #99ccff; font-family: Arial;\\\">ESTIMATED PRICE INCL VAT</span></strong></span></td><td style=\\\"width: 25%; height: 25px; vertical-align: middle;\\\"><span style=\\\"color: #99ccff; font-family: arial,helvetica,sans-serif; font-size: 12pt;\\\"><span style=\\\"font-family: arial,helvetica,sans-serif;\\\">[show_price]</span><strong> </strong></span></td></tr><tr style=\\\"height: 25px;\\\"><td style=\\\"width: 25%; height: 25px; text-align: left; vertical-align: middle;\\\"><span style=\\\"color: #99ccff; font-family: arial,helvetica,sans-serif; font-size: 10pt;\\\"> </span></td><td style=\\\"width: 25%; height: 25px; text-align: left; vertical-align: middle;\\\"><span style=\\\"color: #99ccff; font-family: arial,helvetica,sans-serif; font-size: 10pt;\\\"> </span></td><td style=\\\"width: 25%; height: 25px; text-align: left; vertical-align: middle;\\\"><span style=\\\"color: #99ccff; font-family: arial,helvetica,sans-serif; font-size: 10pt;\\\"> </span></td><td style=\\\"width: 25%; height: 25px; text-align: left; vertical-align: middle;\\\"><span style=\\\"color: #99ccff; font-family: arial,helvetica,sans-serif; font-size: 10pt;\\\"> <span style=\\\"color: #99ccff; font-family: arial,helvetica,sans-serif; font-size: 12pt;\\\"><strong><span style=\\\"font-family: Arial;\\\">[hidden resource 854]</span></strong></span></span></td></tr><tr style=\\\"height: 25px;\\\"><td style=\\\"width: 25%; height: 25px; text-align: left; vertical-align: middle;\\\"><span style=\\\"color: #99ccff; font-family: arial,helvetica,sans-serif; font-size: 10pt;\\\">Arrival Date</span></td><td style=\\\"width: 25%; height: 25px; text-align: left; vertical-align: middle;\\\"><span style=\\\"color: #99ccff; font-family: arial,helvetica,sans-serif; font-size: 10pt;\\\">[date-from value=\\\"+1\\\"]</span></td><td style=\\\"width: 25%; height: 25px; text-align: left; vertical-align: middle;\\\"><span style=\\\"color: #99ccff; font-family: arial,helvetica,sans-serif; font-size: 10pt;\\\">Departure Date</span></td><td style=\\\"width: 20%; height: 25px; text-align: left; vertical-align: middle;\\\"><span style=\\\"color: #99ccff; font-family: arial,helvetica,sans-serif; font-size: 10pt;\\\">[date-to value=\\\"+2\\\"]</span></td></tr><tr style=\\\"height: 25px;\\\"><td style=\\\"width: 25%; height: 25px; text-align: left; vertical-align: middle;\\\"><span style=\\\"color: #99ccff; font-family: arial,helvetica,sans-serif; font-size: 10pt;\\\">Number Of Guests (excluding children under 2yrs)</span></td><td style=\\\"width: 25%; height: 25px; text-align: left; vertical-align: middle;\\\"><span style=\\\"color: #99ccff; font-family: arial,helvetica,sans-serif; font-size: 10pt;\\\">[adults 1 10 value=\\\"1\\\"]</span></td><td style=\\\"width: 25%; height: 25px; text-align: left; vertical-align: middle;\\\"><span style=\\\"color: #99ccff; font-family: arial,helvetica,sans-serif; font-size: 10pt;\\\">Children Under 2yrs (Own Bedding)</span></td><td style=\\\"width: 25%; height: 25px; text-align: left; vertical-align: middle;\\\"><span style=\\\"color: #99ccff; font-family: arial,helvetica,sans-serif; font-size: 10pt;\\\">...Stay Free</span></td></tr><tr style=\\\"height: 25px;\\\"><td style=\\\"width: 25%; height: 25px; text-align: left; vertical-align: middle;\\\"><span style=\\\"color: #99ccff;\\\"> </span></td><td style=\\\"width: 25%; height: 25px; text-align: left; vertical-align: middle;\\\"><span style=\\\"color: #99ccff;\\\"> </span></td><td style=\\\"width: 25%; height: 25px; text-align: left; vertical-align: middle;\\\"><span style=\\\"color: #99ccff;\\\"> </span></td><td style=\\\"width: 25%; height: 25px; text-align: left; vertical-align: middle;\\\"><span style=\\\"color: #99ccff;\\\"> </span></td></tr><tr style=\\\"height: 25px;\\\"><td style=\\\"width: 25%; height: 25px; text-align: left; vertical-align: middle;\\\"><span style=\\\"color: #99ccff; font-family: arial,helvetica,sans-serif; font-size: 10pt;\\\"><span style=\\\"font-family: arial,helvetica,sans-serif; font-size: 12pt;\\\"><strong>MEAL OPTIONS</strong></span></span></td><td style=\\\"width: 25%; height: 25px; text-align: left; vertical-align: middle;\\\"><span style=\\\"color: #99ccff;\\\"> </span></td><td style=\\\"width: 25%; height: 25px; text-align: left; vertical-align: middle;\\\"><span style=\\\"color: #99ccff; font-family: arial,helvetica,sans-serif; font-size: 10pt;\\\"><span style=\\\"font-family: arial,helvetica,sans-serif; font-size: 12pt;\\\"><strong>CLEANING SERVICE OPTIONS</strong></span></span></td><td style=\\\"width: 25%; height: 25px; text-align: left; vertical-align: middle;\\\"><span style=\\\"color: #99ccff;\\\"> </span></td></tr><tr style=\\\"height: 25px;\\\"><td style=\\\"width: 25%; height: 25px; text-align: left; vertical-align: middle;\\\"><span style=\\\"color: #99ccff; font-family: arial,helvetica,sans-serif; font-size: 10pt;\\\">Include Morning Breakfast</span></td><td style=\\\"width: 25%; height: 25px; text-align: left; vertical-align: middle;\\\"><span style=\\\"color: #99ccff; font-family: arial,helvetica,sans-serif; font-size: 10pt;\\\">[custom id=\\\"8\\\"]</span></td><td style=\\\"width: 25%; height: 25px; text-align: left; vertical-align: middle;\\\"><span style=\\\"color: #99ccff; font-family: arial,helvetica,sans-serif; font-size: 10pt;\\\">Include Services for Lodge (excluding room/s)</span></td><td style=\\\"width: 25%; height: 25px; text-align: left; vertical-align: middle;\\\"><span style=\\\"color: #99ccff; font-family: arial,helvetica,sans-serif; font-size: 10pt;\\\">[custom id=\\\"6\\\"]</span></td></tr><tr style=\\\"height: 25px;\\\"><td style=\\\"width: 25%; height: 25px; text-align: left; vertical-align: middle;\\\"><span style=\\\"color: #99ccff; font-family: arial,helvetica,sans-serif; font-size: 12pt;\\\"><span style=\\\"font-family: arial,helvetica,sans-serif; font-size: 10pt;\\\">Include Evening Dinner</span></span></td><td style=\\\"width: 25%; height: 25px; text-align: left; vertical-align: middle;\\\"><span style=\\\"color: #99ccff; font-family: arial,helvetica,sans-serif; font-size: 12pt;\\\"><span style=\\\"font-family: arial,helvetica,sans-serif; font-size: 10pt;\\\">[custom id=\\\"9\\\"]</span></span></td><td style=\\\"width: 25%; height: 25px; text-align: left; vertical-align: middle;\\\"><span style=\\\"color: #99ccff;\\\"><span style=\\\"color: #99ccff; font-family: arial,helvetica,sans-serif; font-size: 10pt;\\\">Include Services for Rooms</span></span></td><td style=\\\"width: 25%; height: 25px; text-align: left; vertical-align: middle;\\\"><span style=\\\"color: #99ccff;\\\"><span style=\\\"color: #99ccff; font-family: arial,helvetica,sans-serif; font-size: 10pt;\\\">[custom id=\\\"7\\\"]</span></span></td></tr><tr style=\\\"height: 25px;\\\"><td style=\\\"width: 25%; height: 25px; text-align: left; vertical-align: middle;\\\" colspan=\\\"4\\\"><span style=\\\"color: #99ccff;\\\"> </span></td></tr><tr style=\\\"height: 25px;\\\"><td style=\\\"width: 25%; height: 25px; text-align: left; vertical-align: middle;\\\" colspan=\\\"4\\\"><span style=\\\"color: #99ccff; font-family: arial,helvetica,sans-serif; font-size: 12pt;\\\"><strong>PERSONAL DETAILS</strong></span></td></tr><tr style=\\\"height: 25px;\\\"><td style=\\\"width: 25%; height: 25px; text-align: left; vertical-align: middle;\\\"><span style=\\\"color: #99ccff; font-family: arial,helvetica,sans-serif; font-size: 10pt;\\\">First Name</span></td><td style=\\\"width: 25%; height: 25px; text-align: left; vertical-align: middle;\\\"><span style=\\\"color: #99ccff; font-family: arial,helvetica,sans-serif; font-size: 10pt;\\\">[thename]</span></td><td style=\\\"width: 25%; height: 25px; text-align: left; vertical-align: middle;\\\"><span style=\\\"color: #99ccff; font-family: arial,helvetica,sans-serif; font-size: 10pt;\\\">Email Address</span></td><td style=\\\"width: 25%; height: 25px; text-align: left; vertical-align: middle;\\\"><span style=\\\"color: #99ccff; font-family: arial,helvetica,sans-serif; font-size: 10pt;\\\">[email]</span></td></tr><tr style=\\\"height: 25px;\\\"><td style=\\\"width: 25%; height: 25px; text-align: left; vertical-align: middle;\\\"><span style=\\\"color: #99ccff; font-family: arial,helvetica,sans-serif; font-size: 10pt;\\\">Surname</span></td><td style=\\\"width: 25%; height: 25px; text-align: left; vertical-align: middle;\\\"><span style=\\\"color: #99ccff; font-family: arial,helvetica,sans-serif; font-size: 10pt;\\\">[thename]</span></td><td style=\\\"width: 25%; height: 25px; text-align: left; vertical-align: middle;\\\"><span style=\\\"color: #99ccff; font-family: arial,helvetica,sans-serif; font-size: 10pt;\\\">Contact Phone</span></td><td style=\\\"width: 25%; height: 25px; text-align: left; vertical-align: middle;\\\"><span style=\\\"color: #99ccff; font-family: arial,helvetica,sans-serif; font-size: 10pt;\\\">[custom text Phone *]</span></td></tr><tr style=\\\"height: 25px;\\\"><td style=\\\"width: 25%; height: 25px; text-align: left; vertical-align: middle;\\\"><span style=\\\"color: #99ccff; font-family: arial,helvetica,sans-serif; font-size: 10pt;\\\">Country</span></td><td style=\\\"width: 25%; height: 25px; text-align: left; vertical-align: middle;\\\"><span style=\\\"color: #99ccff; font-family: arial,helvetica,sans-serif; font-size: 10pt;\\\">[country value=\\\"ZA\\\"]</span></td><td style=\\\"width: 25%; height: 25px; text-align: left; vertical-align: middle;\\\"><span style=\\\"color: #99ccff;\\\"> </span></td><td style=\\\"width: 25%; height: 25px; text-align: left; vertical-align: middle;\\\"><span style=\\\"color: #99ccff;\\\"> </span></td></tr><tr style=\\\"height: 25px;\\\"><td style=\\\"width: 25%; height: 25px; text-align: left; vertical-align: middle;\\\" rowspan=\\\"3\\\"><span style=\\\"color: #99ccff; font-family: arial,helvetica,sans-serif; font-size: 10pt;\\\">Comments or Questions!</span></td><td style=\\\"width: 25%; height: 25px; text-align: left; vertical-align: middle;\\\" rowspan=\\\"3\\\"><span style=\\\"color: #99ccff; font-family: arial,helvetica,sans-serif; font-size: 10pt;\\\">[custom id=\\\"10\\\" title=\\\"Comments\\\"]</span></td><td style=\\\"width: 25%; height: 25px; text-align: left; vertical-align: middle;\\\"><span style=\\\"color: #99ccff; font-family: arial,helvetica,sans-serif; font-size: 10pt;\\\">I accept <span style=\\\"text-decoration: underline;\\\"><strong> <a style=\\\"color: #99ccff; text-decoration: underline;\\\" href=\\\"http://msla.co.za/lodge/tcs/\\\">Terms &amp; Conditions</a></strong></span></span></td><td style=\\\"width: 25%; height: 25px; text-align: left; vertical-align: middle;\\\"><span style=\\\"color: #99ccff; font-family: arial,helvetica,sans-serif; font-size: 10pt;\\\">[custom id=\\\"1\\\" title=\\\"Terms &amp; Conditions\\\"]</span></td></tr><tr style=\\\"height: 25px;\\\"><td style=\\\"width: 25%; height: 25px; text-align: left; vertical-align: middle;\\\"><span style=\\\"color: #99ccff; font-family: arial,helvetica,sans-serif; font-size: 10pt;\\\">Enter Security Code</span></td><td style=\\\"width: 25%; height: 25px; text-align: left; vertical-align: middle;\\\"><span style=\\\"color: #99ccff; font-family: arial,helvetica,sans-serif; font-size: 16pt;\\\">[captcha]</span></td></tr><tr style=\\\"height: 25px;\\\"><td style=\\\"width: 25%; height: 25px; text-align: left; vertical-align: middle;\\\"><span style=\\\"color: #99ccff;\\\"> </span></td><td style=\\\"width: 25%; height: 25px; text-align: left; vertical-align: middle;\\\"><span style=\\\"color: #99ccff; font-family: arial,helvetica,sans-serif; font-size: 26pt;\\\">[submit value=\\\"Submit\\\"]</span></td></tr></tbody></table></div>', 'no'),
(3568, 'akismet_spam_count', '4', 'yes'),
(4587, 'wpadm_backup__commands', 'a:0:{}', 'yes'),
(4588, 'wpadm_backup_proccess-command', 'a:0:{}', 'yes'),
(4595, 'wpadm_backup_dropbox-setting', 'YTo4OntzOjc6ImFwcF9rZXkiO3M6MTU6IjFpbWt5NXM4cW40a2hwdCI7czoxMDoiYXBwX3NlY3JldCI7czoxNToiOWF2dnBuZGlsbGV0cmhoIjtzOjE3OiJhdXRoX3Rva2VuX3NlY3JldCI7YTozOntzOjE4OiJvYXV0aF90b2tlbl9zZWNyZXQiO3M6MTU6Im8xNDhtZ3p2eGVlajB0YSI7czoxMToib2F1dGhfdG9rZW4iO3M6MTY6IjFxc3J5dnhhcXk5czd1ZXgiO3M6MzoidWlkIjtzOjk6IjEyMzgxNzUyNyI7fXM6MTE6Im9hdXRoX3Rva2VuIjtzOjE2OiJuQURPNEtqNW9rNDZlQlF1IjtzOjM6InVpZCI7czo5OiIxMjM4MTc1MjciO3M6ODoiaXNfYWRtaW4iO2k6MTtzOjEyOiJ0eXBlX2FyY2hpdmUiO2E6Mzp7czoxMToiemlwX2FyY2hpdmUiO2k6MTtzOjE0OiJwY2x6aXBfYXJjaGl2ZSI7aToxO3M6MTM6InRhcmd6X2FyY2hpdmUiO2k6MDt9czoyMjoiaXNfbG9jYWxfYmFja3VwX2RlbGV0ZSI7aToxO30=', 'yes');
INSERT INTO `wp_options` (`option_id`, `option_name`, `option_value`, `autoload`) VALUES
(4735, 'avada_theme_options', 'a:914:{s:10:\"responsive\";s:1:\"1\";s:12:\"ipad_potrait\";s:1:\"0\";s:16:\"google_analytics\";s:0:\"\";s:10:\"space_head\";s:0:\"\";s:10:\"space_body\";s:0:\"\";s:6:\"layout\";s:4:\"Wide\";s:10:\"site_width\";s:6:\"1100px\";s:13:\"content_width\";s:3:\"77%\";s:13:\"sidebar_width\";s:3:\"23%\";s:15:\"content_width_2\";s:3:\"58%\";s:17:\"sidebar_2_1_width\";s:3:\"21%\";s:17:\"sidebar_2_2_width\";s:3:\"21%\";s:15:\"header_position\";s:3:\"Top\";s:13:\"header_layout\";s:2:\"v3\";s:17:\"side_header_width\";i:280;s:23:\"side_header_break_point\";i:1023;s:13:\"header_shadow\";s:1:\"0\";s:16:\"header_100_width\";s:1:\"0\";s:15:\"slider_position\";s:5:\"Below\";s:19:\"header_left_content\";s:12:\"Contact Info\";s:20:\"header_right_content\";s:10:\"Navigation\";s:17:\"header_v4_content\";s:18:\"Tagline And Search\";s:13:\"header_number\";s:25:\"Call Us Today! 0317656046\";s:12:\"header_email\";s:15:\"info@msla.co.za\";s:18:\"header_banner_code\";s:0:\"\";s:14:\"header_tagline\";s:19:\"Insert Tagline Here\";s:15:\"header_bg_image\";s:0:\"\";s:14:\"header_bg_full\";s:1:\"0\";s:18:\"header_bg_parallax\";s:1:\"1\";s:16:\"header_bg_repeat\";s:6:\"repeat\";s:17:\"margin_header_top\";s:3:\"0px\";s:20:\"margin_header_bottom\";s:3:\"0px\";s:19:\"padding_header_left\";s:3:\"0px\";s:20:\"padding_header_right\";s:3:\"0px\";s:29:\"header_social_links_font_size\";s:4:\"16px\";s:30:\"header_social_links_icon_color\";s:7:\"#ffffff\";s:25:\"header_social_links_boxed\";s:1:\"0\";s:29:\"header_social_links_box_color\";s:7:\"#e8e8e8\";s:32:\"header_social_links_boxed_radius\";s:3:\"4px\";s:33:\"header_social_links_boxed_padding\";s:3:\"8px\";s:37:\"header_social_links_tooltip_placement\";s:6:\"Bottom\";s:13:\"header_sticky\";s:1:\"1\";s:20:\"header_sticky_tablet\";s:1:\"0\";s:20:\"header_sticky_mobile\";s:1:\"0\";s:26:\"header_sticky_type2_layout\";s:13:\"menu_and_logo\";s:25:\"header_sticky_nav_padding\";s:2:\"45\";s:27:\"header_sticky_nav_font_size\";s:4:\"14px\";s:4:\"logo\";a:3:{s:3:\"url\";s:65:\"http://msla.co.za/lodge/wp-content/uploads/2016/10/SMALL-LOGO.png\";s:5:\"width\";i:205;s:6:\"height\";i:60;}s:11:\"logo_retina\";s:0:\"\";s:17:\"retina_logo_width\";s:0:\"\";s:18:\"retina_logo_height\";s:0:\"\";s:18:\"sticky_header_logo\";a:3:{s:3:\"url\";s:67:\"http://msla.co.za/lodge/wp-content/uploads/2016/10/SMALL-LOGO-1.png\";s:5:\"width\";i:205;s:6:\"height\";i:60;}s:25:\"sticky_header_logo_retina\";s:0:\"\";s:24:\"sticky_retina_logo_width\";s:0:\"\";s:25:\"sticky_retina_logo_height\";s:0:\"\";s:11:\"mobile_logo\";s:0:\"\";s:18:\"mobile_logo_retina\";s:0:\"\";s:24:\"mobile_retina_logo_width\";s:0:\"\";s:25:\"mobile_retina_logo_height\";s:0:\"\";s:14:\"logo_alignment\";s:4:\"Left\";s:16:\"margin_logo_left\";s:3:\"0px\";s:17:\"margin_logo_right\";s:3:\"0px\";s:15:\"margin_logo_top\";s:4:\"31px\";s:18:\"margin_logo_bottom\";s:4:\"31px\";s:7:\"favicon\";s:0:\"\";s:11:\"iphone_icon\";s:0:\"\";s:18:\"iphone_icon_retina\";s:0:\"\";s:9:\"ipad_icon\";s:0:\"\";s:16:\"ipad_icon_retina\";s:0:\"\";s:15:\"menu_text_align\";s:4:\"left\";s:10:\"nav_height\";i:83;s:20:\"nav_highlight_border\";i:3;s:11:\"nav_padding\";i:45;s:19:\"dropdown_menu_width\";i:170;s:23:\"topmenu_dropwdown_width\";i:100;s:18:\"megamenu_max_width\";i:1100;s:19:\"megamenu_title_size\";s:4:\"18px\";s:15:\"megamenu_shadow\";s:1:\"1\";s:20:\"main_nav_search_icon\";s:1:\"0\";s:20:\"main_nav_icon_circle\";s:1:\"0\";s:18:\"mobile_menu_design\";s:7:\"classic\";s:18:\"mobile_nav_padding\";i:25;s:22:\"mobile_menu_text_align\";s:4:\"left\";s:28:\"mobile_menu_icons_top_margin\";i:0;s:22:\"mobile_menu_nav_height\";i:35;s:27:\"mobile_nav_submenu_slideout\";s:1:\"1\";s:14:\"page_title_bar\";s:15:\"bar_and_content\";s:19:\"page_title_bar_text\";s:1:\"1\";s:20:\"page_title_100_width\";s:1:\"0\";s:17:\"page_title_height\";s:4:\"87px\";s:24:\"page_title_mobile_height\";s:4:\"70px\";s:20:\"page_title_alignment\";s:4:\"left\";s:13:\"page_title_bg\";a:1:{s:3:\"url\";s:85:\"http://localhost/assagaylodge/wp-content/themes/Avada/assets/images/page_title_bg.png\";}s:20:\"page_title_bg_retina\";s:0:\"\";s:18:\"page_title_bg_full\";s:1:\"0\";s:22:\"page_title_bg_parallax\";s:1:\"0\";s:17:\"page_title_fading\";s:1:\"0\";s:17:\"page_title_bar_bs\";s:11:\"Breadcrumbs\";s:17:\"breadcrumb_mobile\";s:1:\"0\";s:16:\"breacrumb_prefix\";s:0:\"\";s:20:\"breadcrumb_separator\";s:1:\"/\";s:33:\"breadcrumb_show_post_type_archive\";s:1:\"0\";s:26:\"breadcrumb_show_categories\";s:1:\"1\";s:18:\"slidingbar_widgets\";s:1:\"0\";s:25:\"mobile_slidingbar_widgets\";s:1:\"1\";s:21:\"slidingbar_top_border\";s:1:\"0\";s:23:\"slidingbar_open_on_load\";s:1:\"0\";s:26:\"slidingbar_widgets_columns\";i:2;s:16:\"footer_100_width\";s:1:\"0\";s:22:\"footer_special_effects\";s:4:\"none\";s:20:\"footer_sticky_height\";s:1:\"0\";s:14:\"footer_widgets\";s:1:\"1\";s:22:\"footer_widgets_columns\";i:4;s:16:\"footerw_bg_image\";s:0:\"\";s:15:\"footerw_bg_full\";s:1:\"0\";s:17:\"footerw_bg_repeat\";s:6:\"repeat\";s:14:\"footerw_bg_pos\";s:13:\"center center\";s:23:\"footer_area_top_padding\";s:4:\"43px\";s:26:\"footer_area_bottom_padding\";s:4:\"40px\";s:24:\"footer_area_left_padding\";s:3:\"0px\";s:25:\"footer_area_right_padding\";s:3:\"0px\";s:16:\"footer_copyright\";s:1:\"1\";s:11:\"footer_text\";s:57:\"Copyright 1998 Assagay Forest Lodge | All Rights Reserved\";s:21:\"copyright_top_padding\";s:4:\"18px\";s:24:\"copyright_bottom_padding\";s:4:\"16px\";s:12:\"icons_footer\";s:1:\"1\";s:29:\"footer_social_links_font_size\";s:4:\"20px\";s:30:\"footer_social_links_icon_color\";s:7:\"#46494a\";s:25:\"footer_social_links_boxed\";s:1:\"0\";s:29:\"footer_social_links_box_color\";s:7:\"#222222\";s:32:\"footer_social_links_boxed_radius\";s:3:\"4px\";s:33:\"footer_social_links_boxed_padding\";s:3:\"8px\";s:37:\"footer_social_links_tooltip_placement\";s:3:\"Top\";s:20:\"pages_global_sidebar\";s:1:\"0\";s:13:\"pages_sidebar\";s:4:\"None\";s:15:\"pages_sidebar_2\";s:4:\"None\";s:19:\"default_sidebar_pos\";s:5:\"Right\";s:24:\"portfolio_global_sidebar\";s:1:\"0\";s:17:\"portfolio_sidebar\";s:4:\"None\";s:19:\"portfolio_sidebar_2\";s:4:\"None\";s:26:\"portfolio_sidebar_position\";s:5:\"Right\";s:25:\"portfolio_archive_sidebar\";s:4:\"None\";s:27:\"portfolio_archive_sidebar_2\";s:4:\"None\";s:20:\"posts_global_sidebar\";s:1:\"0\";s:13:\"posts_sidebar\";s:4:\"None\";s:15:\"posts_sidebar_2\";s:4:\"None\";s:21:\"blog_sidebar_position\";s:5:\"Right\";s:20:\"blog_archive_sidebar\";s:4:\"None\";s:22:\"blog_archive_sidebar_2\";s:4:\"None\";s:18:\"woo_global_sidebar\";s:1:\"0\";s:11:\"woo_sidebar\";s:4:\"None\";s:13:\"woo_sidebar_2\";s:4:\"None\";s:20:\"woo_sidebar_position\";s:5:\"Right\";s:27:\"woocommerce_archive_sidebar\";s:4:\"None\";s:29:\"woocommerce_archive_sidebar_2\";s:4:\"None\";s:22:\"bbpress_global_sidebar\";s:1:\"0\";s:15:\"ppbress_sidebar\";s:4:\"None\";s:17:\"ppbress_sidebar_2\";s:4:\"None\";s:24:\"bbpress_sidebar_position\";s:5:\"Right\";s:14:\"search_sidebar\";s:12:\"Blog Sidebar\";s:16:\"search_sidebar_2\";s:4:\"None\";s:23:\"search_sidebar_position\";s:5:\"Right\";s:8:\"bg_image\";s:0:\"\";s:7:\"bg_full\";s:1:\"0\";s:9:\"bg_repeat\";s:6:\"repeat\";s:8:\"bg_color\";s:7:\"#d7d6d6\";s:17:\"bg_pattern_option\";s:1:\"0\";s:10:\"bg_pattern\";s:8:\"pattern1\";s:16:\"content_bg_image\";s:0:\"\";s:15:\"content_bg_full\";s:1:\"0\";s:17:\"content_bg_repeat\";s:6:\"repeat\";s:16:\"custom_font_woff\";s:0:\"\";s:15:\"custom_font_ttf\";s:0:\"\";s:15:\"custom_font_svg\";s:0:\"\";s:15:\"custom_font_eot\";s:0:\"\";s:11:\"google_body\";s:7:\"PT Sans\";s:10:\"google_nav\";s:10:\"Antic Slab\";s:15:\"google_headings\";s:10:\"Antic Slab\";s:22:\"google_footer_headings\";s:7:\"PT Sans\";s:13:\"google_button\";s:7:\"PT Sans\";s:14:\"gfont_settings\";s:40:\"400,400italic,700,700italic&subset=latin\";s:13:\"standard_body\";s:11:\"Select Font\";s:12:\"standard_nav\";s:11:\"Select Font\";s:17:\"standard_headings\";s:11:\"Select Font\";s:24:\"standard_footer_headings\";s:11:\"Select Font\";s:15:\"standard_button\";s:11:\"Select Font\";s:21:\"typography_responsive\";s:1:\"0\";s:22:\"typography_sensitivity\";d:0.59999999999999997779553950749686919152736663818359375;s:17:\"typography_factor\";d:1.5;s:14:\"body_font_size\";s:2:\"13\";s:13:\"nav_font_size\";s:4:\"14px\";s:22:\"nav_dropdown_font_size\";s:4:\"13px\";s:14:\"snav_font_size\";s:4:\"12px\";s:18:\"side_nav_font_size\";s:4:\"14px\";s:21:\"mobile_menu_font_size\";s:4:\"12px\";s:21:\"breadcrumbs_font_size\";s:4:\"10px\";s:15:\"sidew_font_size\";s:4:\"13px\";s:20:\"slidingbar_font_size\";s:4:\"13px\";s:15:\"footw_font_size\";s:2:\"13\";s:19:\"copyright_font_size\";s:4:\"12px\";s:12:\"h1_font_size\";s:2:\"34\";s:12:\"h2_font_size\";s:2:\"18\";s:12:\"h3_font_size\";s:2:\"16\";s:12:\"h4_font_size\";s:2:\"13\";s:12:\"h5_font_size\";s:2:\"12\";s:12:\"h6_font_size\";s:2:\"11\";s:17:\"tagline_font_size\";s:4:\"16px\";s:14:\"meta_font_size\";s:4:\"12px\";s:20:\"page_title_font_size\";s:4:\"18px\";s:30:\"page_title_subheader_font_size\";s:4:\"14px\";s:20:\"pagination_font_size\";s:4:\"12px\";s:18:\"woo_icon_font_size\";s:4:\"12px\";s:12:\"body_font_lh\";s:2:\"20\";s:10:\"h1_font_lh\";s:2:\"48\";s:10:\"h2_font_lh\";s:2:\"27\";s:10:\"h3_font_lh\";s:2:\"24\";s:10:\"h4_font_lh\";s:2:\"20\";s:10:\"h5_font_lh\";s:2:\"18\";s:10:\"h6_font_lh\";s:2:\"17\";s:11:\"sec_menu_lh\";s:4:\"44px\";s:16:\"font_weight_body\";s:3:\"400\";s:16:\"font_weight_menu\";s:3:\"400\";s:20:\"font_weight_headings\";s:3:\"400\";s:27:\"font_weight_footer_headings\";s:3:\"400\";s:18:\"font_weight_button\";s:3:\"700\";s:12:\"menu_font_ls\";s:1:\"0\";s:14:\"button_font_ls\";s:1:\"0\";s:13:\"h1_top_margin\";s:4:\"0.67\";s:16:\"h1_bottom_margin\";s:4:\"0.67\";s:13:\"h2_top_margin\";s:1:\"0\";s:16:\"h2_bottom_margin\";s:3:\"1.1\";s:13:\"h3_top_margin\";s:1:\"1\";s:16:\"h3_bottom_margin\";s:1:\"1\";s:13:\"h4_top_margin\";s:4:\"1.33\";s:16:\"h4_bottom_margin\";s:4:\"1.33\";s:13:\"h5_top_margin\";s:4:\"1.67\";s:16:\"h5_bottom_margin\";s:4:\"1.67\";s:13:\"h6_top_margin\";s:4:\"2.33\";s:16:\"h6_bottom_margin\";s:4:\"2.33\";s:11:\"scheme_type\";s:5:\"Light\";s:12:\"color_scheme\";s:5:\"Green\";s:13:\"primary_color\";s:7:\"#a0ce4e\";s:19:\"slidingbar_bg_color\";s:7:\"#363839\";s:15:\"header_bg_color\";s:7:\"#ffffff\";s:22:\"header_sticky_bg_color\";s:22:\"rgba(255,255,255,0.97)\";s:19:\"header_border_color\";s:7:\"#e5e5e5\";s:19:\"header_top_bg_color\";s:7:\"#a0ce4e\";s:19:\"page_title_bg_color\";s:7:\"#F6F6F6\";s:23:\"page_title_border_color\";s:7:\"#d2d3d4\";s:16:\"content_bg_color\";s:7:\"#ffffff\";s:16:\"sidebar_bg_color\";s:19:\"rgba(255,255,255,0)\";s:15:\"footer_bg_color\";s:7:\"#363839\";s:19:\"footer_border_color\";s:7:\"#e9eaee\";s:18:\"copyright_bg_color\";s:7:\"#282a2b\";s:22:\"copyright_border_color\";s:7:\"#4b4c4d\";s:24:\"image_gradient_top_color\";s:20:\"rgba(160,206,78,0.8)\";s:27:\"image_gradient_bottom_color\";s:7:\"#a0ce4e\";s:25:\"image_rollover_text_color\";s:7:\"#333333\";s:25:\"image_rollover_icon_color\";s:7:\"#ffffff\";s:28:\"slidingbar_toggle_icon_color\";s:7:\"#ffffff\";s:24:\"slidingbar_divider_color\";s:7:\"#282A2B\";s:20:\"footer_divider_color\";s:7:\"#505152\";s:13:\"form_bg_color\";s:7:\"#ffffff\";s:15:\"form_text_color\";s:7:\"#aaa9a9\";s:17:\"form_border_color\";s:7:\"#d2d2d2\";s:17:\"timeline_bg_color\";s:19:\"rgba(255,255,255,0)\";s:14:\"timeline_color\";s:7:\"#ebeaea\";s:31:\"load_more_posts_button_bg_color\";s:7:\"#ebeaea\";s:12:\"qty_bg_color\";s:7:\"#fbfaf9\";s:18:\"qty_bg_hover_color\";s:7:\"#ffffff\";s:21:\"woo_dropdown_bg_color\";s:7:\"#fbfaf9\";s:23:\"woo_dropdown_text_color\";s:7:\"#333333\";s:25:\"woo_dropdown_border_color\";s:7:\"#dbdbdb\";s:19:\"bbp_forum_header_bg\";s:7:\"#ebeaea\";s:22:\"bbp_forum_border_color\";s:7:\"#ebeaea\";s:16:\"main_top_padding\";s:4:\"55px\";s:19:\"main_bottom_padding\";s:4:\"40px\";s:16:\"hundredp_padding\";s:4:\"30px\";s:15:\"sidebar_padding\";s:3:\"0px\";s:14:\"col_top_margin\";s:3:\"0px\";s:17:\"col_bottom_margin\";s:4:\"20px\";s:22:\"slidingbar_text_shadow\";s:1:\"1\";s:20:\"rollover_text_shadow\";s:1:\"1\";s:18:\"footer_text_shadow\";s:1:\"1\";s:18:\"tagline_font_color\";s:7:\"#747474\";s:16:\"page_title_color\";s:7:\"#333333\";s:8:\"h1_color\";s:7:\"#333333\";s:8:\"h2_color\";s:7:\"#333333\";s:8:\"h3_color\";s:7:\"#333333\";s:8:\"h4_color\";s:7:\"#333333\";s:8:\"h5_color\";s:7:\"#333333\";s:8:\"h6_color\";s:7:\"#333333\";s:15:\"body_text_color\";s:7:\"#747474\";s:10:\"link_color\";s:7:\"#333333\";s:22:\"breadcrumbs_text_color\";s:7:\"#333333\";s:25:\"slidingbar_headings_color\";s:7:\"#DDDDDD\";s:21:\"slidingbar_text_color\";s:7:\"#8C8989\";s:21:\"slidingbar_link_color\";s:7:\"#BFBFBF\";s:21:\"sidebar_heading_color\";s:7:\"#333333\";s:21:\"footer_headings_color\";s:7:\"#DDDDDD\";s:17:\"footer_text_color\";s:7:\"#8C8989\";s:17:\"footer_link_color\";s:7:\"#BFBFBF\";s:17:\"menu_h45_bg_color\";s:7:\"#FFFFFF\";s:16:\"menu_first_color\";s:7:\"#333333\";s:22:\"menu_hover_first_color\";s:7:\"#a0ce4e\";s:17:\"menu_sub_bg_color\";s:7:\"#f2efef\";s:19:\"menu_bg_hover_color\";s:7:\"#f8f8f8\";s:14:\"menu_sub_color\";s:7:\"#333333\";s:18:\"menu_sub_sep_color\";s:7:\"#dcdadb\";s:17:\"woo_cart_bg_color\";s:7:\"#fafafa\";s:10:\"snav_color\";s:7:\"#ffffff\";s:29:\"header_top_first_border_color\";s:7:\"#ffffff\";s:23:\"header_top_sub_bg_color\";s:7:\"#ffffff\";s:25:\"header_top_menu_sub_color\";s:7:\"#747474\";s:30:\"header_top_menu_bg_hover_color\";s:7:\"#fafafa\";s:31:\"header_top_menu_sub_hover_color\";s:7:\"#333333\";s:29:\"header_top_menu_sub_sep_color\";s:7:\"#e5e5e5\";s:22:\"mobile_header_bg_color\";s:7:\"#ffffff\";s:28:\"mobile_menu_background_color\";s:7:\"#f9f9f9\";s:24:\"mobile_menu_border_color\";s:7:\"#dadada\";s:23:\"mobile_menu_hover_color\";s:7:\"#f6f6f6\";s:22:\"mobile_menu_font_color\";s:7:\"#333333\";s:24:\"mobile_menu_toggle_color\";s:7:\"#dadada\";s:15:\"dates_box_color\";s:7:\"#eef0f2\";s:11:\"button_size\";s:5:\"Large\";s:12:\"button_shape\";s:5:\"Round\";s:11:\"button_type\";s:4:\"Flat\";s:25:\"button_gradient_top_color\";s:7:\"#a0ce4e\";s:28:\"button_gradient_bottom_color\";s:7:\"#a0ce4e\";s:31:\"button_gradient_top_color_hover\";s:7:\"#96c346\";s:34:\"button_gradient_bottom_color_hover\";s:7:\"#96c346\";s:19:\"button_accent_color\";s:7:\"#ffffff\";s:25:\"button_accent_hover_color\";s:7:\"#ffffff\";s:18:\"button_bevel_color\";s:7:\"#54770F\";s:19:\"button_border_width\";i:0;s:18:\"carousel_nav_color\";s:7:\"#999999\";s:20:\"carousel_hover_color\";s:7:\"#808080\";s:16:\"checklist_circle\";s:1:\"1\";s:22:\"checklist_circle_color\";s:7:\"#a0ce4e\";s:21:\"checklist_icons_color\";s:7:\"#ffffff\";s:20:\"content_box_bg_color\";s:19:\"rgba(255,255,255,0)\";s:22:\"content_box_title_size\";s:4:\"18px\";s:23:\"content_box_icon_circle\";s:3:\"yes\";s:21:\"content_box_icon_size\";s:4:\"21px\";s:22:\"content_box_margin_top\";s:3:\"0px\";s:25:\"content_box_margin_bottom\";s:4:\"60px\";s:17:\"counter_box_color\";s:7:\"#a0ce4e\";s:22:\"counter_box_title_size\";s:4:\"50px\";s:21:\"counter_box_icon_size\";s:4:\"50px\";s:22:\"counter_box_body_color\";s:7:\"#747474\";s:21:\"counter_box_body_size\";s:4:\"13px\";s:24:\"counter_box_border_color\";s:7:\"#e0dede\";s:20:\"counter_box_icon_top\";s:2:\"no\";s:20:\"counter_filled_color\";s:7:\"#a0ce4e\";s:22:\"counter_unfilled_color\";s:7:\"#f6f6f6\";s:13:\"dropcap_color\";s:7:\"#a0ce4e\";s:19:\"flip_boxes_front_bg\";s:7:\"#f6f6f6\";s:24:\"flip_boxes_front_heading\";s:7:\"#333333\";s:21:\"flip_boxes_front_text\";s:7:\"#747474\";s:18:\"flip_boxes_back_bg\";s:7:\"#a0ce4e\";s:23:\"flip_boxes_back_heading\";s:7:\"#eeeded\";s:20:\"flip_boxes_back_text\";s:7:\"#ffffff\";s:22:\"flip_boxes_border_size\";i:1;s:23:\"flip_boxes_border_color\";s:19:\"rgba(255,255,255,0)\";s:24:\"flip_boxes_border_radius\";s:3:\"4px\";s:19:\"full_width_bg_color\";s:19:\"rgba(255,255,255,0)\";s:22:\"full_width_border_size\";i:0;s:23:\"full_width_border_color\";s:7:\"#eae9e9\";s:17:\"icon_circle_color\";s:7:\"#333333\";s:17:\"icon_border_color\";s:7:\"#333333\";s:10:\"icon_color\";s:7:\"#ffffff\";s:21:\"imgframe_border_color\";s:7:\"#f6f6f6\";s:22:\"imageframe_border_size\";i:0;s:24:\"imageframe_border_radius\";s:3:\"0px\";s:20:\"imgframe_style_color\";s:7:\"#000000\";s:14:\"modal_bg_color\";s:7:\"#f6f6f6\";s:18:\"modal_border_color\";s:7:\"#ebebeb\";s:19:\"person_border_color\";s:7:\"#f6f6f6\";s:18:\"person_border_size\";i:0;s:20:\"person_border_radius\";s:3:\"0px\";s:18:\"person_style_color\";s:7:\"#000000\";s:24:\"popover_heading_bg_color\";s:7:\"#f6f6f6\";s:24:\"popover_content_bg_color\";s:7:\"#ffffff\";s:20:\"popover_border_color\";s:7:\"#ebebeb\";s:18:\"popover_text_color\";s:7:\"#747474\";s:17:\"popover_placement\";s:3:\"Top\";s:36:\"full_boxed_pricing_box_heading_color\";s:7:\"#333333\";s:29:\"sep_pricing_box_heading_color\";s:7:\"#333333\";s:17:\"pricing_box_color\";s:7:\"#a0ce4e\";s:16:\"pricing_bg_color\";s:7:\"#ffffff\";s:20:\"pricing_border_color\";s:7:\"#f8f8f8\";s:21:\"pricing_divider_color\";s:7:\"#ededed\";s:24:\"progressbar_filled_color\";s:7:\"#a0ce4e\";s:26:\"progressbar_unfilled_color\";s:7:\"#f6f6f6\";s:22:\"progressbar_text_color\";s:7:\"#ffffff\";s:23:\"section_sep_border_size\";i:1;s:14:\"section_sep_bg\";s:7:\"#f6f6f6\";s:24:\"section_sep_border_color\";s:7:\"#f6f6f6\";s:9:\"sep_color\";s:7:\"#e0dede\";s:16:\"separator_circle\";s:1:\"1\";s:21:\"separator_border_size\";i:1;s:20:\"sharing_box_bg_color\";s:7:\"#f6f6f6\";s:30:\"sharing_box_tagline_text_color\";s:7:\"#333333\";s:22:\"social_links_font_size\";s:4:\"16px\";s:23:\"social_links_icon_color\";s:7:\"#bebdbd\";s:18:\"social_links_boxed\";s:1:\"0\";s:22:\"social_links_box_color\";s:7:\"#e8e8e8\";s:25:\"social_links_boxed_radius\";s:3:\"4px\";s:26:\"social_links_boxed_padding\";s:3:\"8px\";s:30:\"social_links_tooltip_placement\";s:3:\"Top\";s:13:\"tabs_bg_color\";s:7:\"#ffffff\";s:19:\"tabs_inactive_color\";s:7:\"#ebeaea\";s:17:\"tabs_border_color\";s:7:\"#ebeaea\";s:10:\"tagline_bg\";s:7:\"#f6f6f6\";s:20:\"tagline_border_color\";s:7:\"#f6f6f6\";s:18:\"tagline_margin_top\";s:0:\"\";s:21:\"tagline_margin_bottom\";s:2:\"84\";s:20:\"testimonial_bg_color\";s:7:\"#f6f6f6\";s:22:\"testimonial_text_color\";s:7:\"#747474\";s:18:\"testimonials_speed\";d:4000;s:19:\"testimonials_random\";s:1:\"0\";s:16:\"title_style_type\";s:6:\"double\";s:18:\"title_border_color\";s:7:\"#e0dede\";s:24:\"accordian_inactive_color\";s:7:\"#333333\";s:10:\"blog_title\";s:4:\"Blog\";s:13:\"blog_subtitle\";s:0:\"\";s:24:\"blog_show_page_title_bar\";s:1:\"1\";s:11:\"blog_layout\";s:5:\"Large\";s:19:\"blog_archive_layout\";s:5:\"Large\";s:20:\"blog_pagination_type\";s:10:\"Pagination\";s:17:\"blog_grid_columns\";i:3;s:24:\"blog_grid_column_spacing\";i:40;s:14:\"content_length\";s:7:\"Excerpt\";s:19:\"excerpt_length_blog\";i:55;s:18:\"strip_html_excerpt\";s:1:\"1\";s:15:\"featured_images\";s:1:\"1\";s:32:\"alternate_date_format_month_year\";s:4:\"m, Y\";s:25:\"alternate_date_format_day\";s:1:\"j\";s:20:\"timeline_date_format\";s:3:\"F Y\";s:22:\"featured_images_single\";s:1:\"1\";s:11:\"blog_pn_nav\";s:1:\"1\";s:15:\"blog_post_title\";s:1:\"1\";s:11:\"author_info\";s:1:\"1\";s:18:\"social_sharing_box\";s:1:\"1\";s:13:\"related_posts\";s:1:\"0\";s:13:\"blog_comments\";s:1:\"1\";s:9:\"post_meta\";s:1:\"1\";s:16:\"post_meta_author\";s:1:\"1\";s:14:\"post_meta_date\";s:1:\"1\";s:14:\"post_meta_cats\";s:1:\"1\";s:18:\"post_meta_comments\";s:1:\"1\";s:14:\"post_meta_read\";s:1:\"1\";s:14:\"post_meta_tags\";s:1:\"0\";s:11:\"date_format\";s:7:\"F jS, Y\";s:15:\"portfolio_items\";i:10;s:24:\"portfolio_archive_layout\";s:20:\"Portfolio One Column\";s:24:\"portfolio_column_spacing\";i:12;s:24:\"portfolio_content_length\";s:7:\"Excerpt\";s:24:\"excerpt_length_portfolio\";i:55;s:28:\"portfolio_strip_html_excerpt\";s:1:\"1\";s:20:\"grid_pagination_type\";s:10:\"Pagination\";s:21:\"portfolio_text_layout\";s:7:\"unboxed\";s:14:\"portfolio_slug\";s:15:\"portfolio-items\";s:29:\"portfolio_featured_image_size\";s:7:\"cropped\";s:25:\"portfolio_featured_images\";s:1:\"1\";s:16:\"portfolio_pn_nav\";s:1:\"1\";s:18:\"portfolio_comments\";s:1:\"0\";s:16:\"portfolio_author\";s:1:\"0\";s:28:\"portfolio_social_sharing_box\";s:1:\"1\";s:23:\"portfolio_related_posts\";s:1:\"1\";s:15:\"social_bg_color\";s:7:\"#f6f6f6\";s:30:\"sharing_social_links_font_size\";s:4:\"18px\";s:31:\"sharing_social_links_icon_color\";s:7:\"#bebdbd\";s:26:\"sharing_social_links_boxed\";s:1:\"0\";s:30:\"sharing_social_links_box_color\";s:7:\"#e8e8e8\";s:33:\"sharing_social_links_boxed_radius\";s:3:\"4px\";s:34:\"sharing_social_links_boxed_padding\";s:3:\"8px\";s:38:\"sharing_social_links_tooltip_placement\";s:3:\"Top\";s:16:\"sharing_facebook\";s:1:\"1\";s:15:\"sharing_twitter\";s:1:\"0\";s:14:\"sharing_reddit\";s:1:\"0\";s:16:\"sharing_linkedin\";s:1:\"0\";s:14:\"sharing_google\";s:1:\"1\";s:14:\"sharing_tumblr\";s:1:\"0\";s:17:\"sharing_pinterest\";s:1:\"0\";s:10:\"sharing_vk\";s:1:\"0\";s:13:\"sharing_email\";s:1:\"1\";s:13:\"facebook_link\";s:81:\"https://www.facebook.com/pages/Assagay-Forest-Lodge/696704640356039?ref=bookmarks\";s:15:\"social_sorter_1\";s:13:\"facebook_link\";s:11:\"flickr_link\";s:0:\"\";s:15:\"social_sorter_2\";s:11:\"flickr_link\";s:8:\"rss_link\";s:0:\"\";s:15:\"social_sorter_3\";s:8:\"rss_link\";s:12:\"twitter_link\";s:0:\"\";s:15:\"social_sorter_4\";s:12:\"twitter_link\";s:10:\"vimeo_link\";s:0:\"\";s:15:\"social_sorter_5\";s:10:\"vimeo_link\";s:12:\"youtube_link\";s:0:\"\";s:15:\"social_sorter_6\";s:12:\"youtube_link\";s:14:\"instagram_link\";s:0:\"\";s:15:\"social_sorter_7\";s:14:\"instagram_link\";s:14:\"pinterest_link\";s:0:\"\";s:15:\"social_sorter_8\";s:14:\"pinterest_link\";s:11:\"tumblr_link\";s:0:\"\";s:15:\"social_sorter_9\";s:11:\"tumblr_link\";s:11:\"google_link\";s:81:\"https://plus.google.com/b/102888140860425533320/+AssagayGuestLodgeHillcrest/about\";s:16:\"social_sorter_10\";s:11:\"google_link\";s:13:\"dribbble_link\";s:0:\"\";s:16:\"social_sorter_11\";s:13:\"dribbble_link\";s:9:\"digg_link\";s:0:\"\";s:16:\"social_sorter_12\";s:9:\"digg_link\";s:13:\"linkedin_link\";s:0:\"\";s:16:\"social_sorter_13\";s:13:\"linkedin_link\";s:12:\"blogger_link\";s:0:\"\";s:16:\"social_sorter_14\";s:12:\"blogger_link\";s:10:\"skype_link\";s:0:\"\";s:16:\"social_sorter_15\";s:10:\"skype_link\";s:11:\"forrst_link\";s:0:\"\";s:16:\"social_sorter_16\";s:11:\"forrst_link\";s:12:\"myspace_link\";s:0:\"\";s:16:\"social_sorter_17\";s:12:\"myspace_link\";s:15:\"deviantart_link\";s:0:\"\";s:16:\"social_sorter_18\";s:15:\"deviantart_link\";s:10:\"yahoo_link\";s:0:\"\";s:16:\"social_sorter_19\";s:10:\"yahoo_link\";s:11:\"reddit_link\";s:0:\"\";s:16:\"social_sorter_20\";s:11:\"reddit_link\";s:11:\"paypal_link\";s:0:\"\";s:16:\"social_sorter_21\";s:11:\"paypal_link\";s:12:\"dropbox_link\";s:0:\"\";s:16:\"social_sorter_22\";s:12:\"dropbox_link\";s:15:\"soundcloud_link\";s:0:\"\";s:16:\"social_sorter_23\";s:15:\"soundcloud_link\";s:7:\"vk_link\";s:0:\"\";s:16:\"social_sorter_24\";s:7:\"vk_link\";s:10:\"email_link\";s:23:\"assagaylodge@msla.co.za\";s:16:\"social_sorter_25\";s:10:\"email_link\";s:13:\"social_sorter\";s:415:\"social_sorter_1,social_sorter_2,social_sorter_3,social_sorter_4,social_sorter_5,social_sorter_6,social_sorter_7,social_sorter_8,social_sorter_9,social_sorter_10,social_sorter_11,social_sorter_12,social_sorter_13,social_sorter_14,social_sorter_15,social_sorter_16,social_sorter_17,social_sorter_18,social_sorter_19,social_sorter_20,social_sorter_21,social_sorter_22,social_sorter_23,social_sorter_24,social_sorter_25\";s:16:\"custom_icon_name\";s:0:\"\";s:17:\"custom_icon_image\";s:0:\"\";s:24:\"custom_icon_image_retina\";s:0:\"\";s:17:\"retina_icon_width\";s:0:\"\";s:18:\"retina_icon_height\";s:0:\"\";s:16:\"custom_icon_link\";s:0:\"\";s:22:\"posts_slideshow_number\";i:5;s:18:\"slideshow_autoplay\";s:1:\"1\";s:23:\"slideshow_smooth_height\";s:1:\"0\";s:15:\"slideshow_speed\";d:7000;s:22:\"pagination_video_slide\";s:1:\"0\";s:17:\"tfes_slider_width\";s:4:\"100%\";s:18:\"tfes_slider_height\";s:5:\"400px\";s:14:\"tfes_animation\";s:5:\"sides\";s:13:\"tfes_autoplay\";s:1:\"1\";s:13:\"tfes_interval\";d:3000;s:10:\"tfes_speed\";d:800;s:10:\"tfes_width\";i:150;s:18:\"es_title_font_size\";s:4:\"42px\";s:20:\"es_caption_font_size\";s:4:\"20px\";s:14:\"es_title_color\";s:7:\"#333333\";s:16:\"es_caption_color\";s:7:\"#747474\";s:15:\"status_lightbox\";s:1:\"1\";s:22:\"status_lightbox_single\";s:1:\"1\";s:17:\"lightbox_behavior\";s:3:\"all\";s:13:\"lightbox_skin\";s:11:\"metro-white\";s:13:\"lightbox_path\";s:8:\"vertical\";s:24:\"lightbox_animation_speed\";s:6:\"Normal\";s:15:\"lightbox_arrows\";s:1:\"1\";s:16:\"lightbox_gallery\";s:1:\"1\";s:17:\"lightbox_autoplay\";s:1:\"0\";s:24:\"lightbox_slideshow_speed\";d:5000;s:16:\"lightbox_opacity\";d:0.90000000000000002220446049250313080847263336181640625;s:14:\"lightbox_title\";s:1:\"1\";s:13:\"lightbox_desc\";s:1:\"1\";s:15:\"lightbox_social\";s:1:\"1\";s:20:\"lightbox_deeplinking\";s:1:\"1\";s:20:\"lightbox_post_images\";s:1:\"1\";s:13:\"email_address\";s:23:\"assagaylodge@msla.co.za\";s:16:\"recaptcha_public\";s:0:\"\";s:17:\"recaptcha_private\";s:0:\"\";s:22:\"recaptcha_color_scheme\";s:5:\"light\";s:9:\"gmap_type\";s:7:\"roadmap\";s:10:\"gmap_width\";s:4:\"100%\";s:11:\"gmap_height\";s:5:\"415px\";s:14:\"gmap_topmargin\";s:4:\"55px\";s:12:\"gmap_address\";s:15:\"4 Williams Road\";s:14:\"map_zoom_level\";i:13;s:7:\"map_pin\";s:1:\"0\";s:18:\"gmap_pin_animation\";s:1:\"0\";s:9:\"map_popup\";s:1:\"0\";s:15:\"map_scrollwheel\";s:1:\"1\";s:9:\"map_scale\";s:1:\"1\";s:15:\"map_zoomcontrol\";s:1:\"1\";s:11:\"map_styling\";s:7:\"default\";s:17:\"map_overlay_color\";s:7:\"#a0ce4e\";s:19:\"map_infobox_styling\";s:7:\"default\";s:19:\"map_infobox_content\";s:0:\"\";s:20:\"map_infobox_bg_color\";s:19:\"rgba(255,255,255,0)\";s:22:\"map_infobox_text_color\";s:7:\"#ffffff\";s:22:\"map_custom_marker_icon\";s:0:\"\";s:13:\"search_layout\";s:4:\"Grid\";s:14:\"search_content\";s:15:\"Posts and Pages\";s:14:\"search_excerpt\";s:1:\"0\";s:23:\"search_results_per_page\";i:10;s:22:\"search_featured_images\";s:1:\"1\";s:18:\"search_form_height\";s:4:\"33px\";s:16:\"sidenav_behavior\";s:5:\"Hover\";s:26:\"featured_image_placeholder\";s:1:\"1\";s:12:\"excerpt_base\";s:5:\"Words\";s:16:\"disable_excerpts\";s:1:\"1\";s:14:\"link_read_more\";s:1:\"0\";s:14:\"comments_pages\";s:1:\"0\";s:21:\"featured_images_pages\";s:1:\"1\";s:18:\"faq_featured_image\";s:1:\"0\";s:11:\"faq_filters\";s:3:\"yes\";s:21:\"nofollow_social_links\";s:1:\"0\";s:16:\"social_icons_new\";s:1:\"1\";s:20:\"number_related_posts\";i:5;s:21:\"related_posts_columns\";i:5;s:28:\"related_posts_column_spacing\";i:44;s:20:\"related_posts_layout\";s:17:\"title_on_rollover\";s:24:\"related_posts_image_size\";s:7:\"cropped\";s:22:\"related_posts_autoplay\";s:1:\"0\";s:24:\"related_posts_navigation\";s:1:\"1\";s:19:\"related_posts_swipe\";s:1:\"0\";s:25:\"related_posts_swipe_items\";s:0:\"\";s:14:\"image_rollover\";s:1:\"1\";s:24:\"image_rollover_direction\";s:4:\"left\";s:24:\"image_rollover_icon_size\";s:4:\"15px\";s:19:\"link_image_rollover\";s:1:\"1\";s:19:\"zoom_image_rollover\";s:1:\"1\";s:20:\"title_image_rollover\";s:1:\"1\";s:19:\"cats_image_rollover\";s:1:\"1\";s:26:\"icon_circle_image_rollover\";s:1:\"1\";s:16:\"smooth_scrolling\";s:1:\"0\";s:15:\"disable_builder\";s:1:\"1\";s:27:\"disable_code_block_encoding\";s:1:\"1\";s:16:\"disable_megamenu\";s:1:\"1\";s:16:\"avada_rev_styles\";s:1:\"1\";s:22:\"avada_styles_dropdowns\";s:1:\"1\";s:15:\"use_animate_css\";s:1:\"1\";s:26:\"disable_mobile_animate_css\";s:1:\"0\";s:9:\"status_yt\";s:1:\"1\";s:12:\"status_vimeo\";s:1:\"1\";s:11:\"status_gmap\";s:1:\"1\";s:12:\"status_totop\";s:1:\"1\";s:19:\"status_totop_mobile\";s:1:\"1\";s:20:\"status_fusion_slider\";s:1:\"1\";s:14:\"status_eslider\";s:1:\"1\";s:18:\"status_fontawesome\";s:1:\"1\";s:16:\"status_opengraph\";s:1:\"1\";s:31:\"disable_date_rich_snippet_pages\";s:1:\"1\";s:19:\"disable_woo_gallery\";s:1:\"1\";s:8:\"dev_mode\";s:1:\"0\";s:13:\"less_compiler\";s:1:\"0\";s:15:\"cache_server_ip\";s:0:\"\";s:9:\"woo_items\";i:12;s:29:\"woocommerce_shop_page_columns\";i:4;s:27:\"woocommerce_related_columns\";i:4;s:32:\"woocommerce_archive_page_columns\";i:3;s:30:\"woocommerce_product_tab_design\";s:8:\"vertical\";s:26:\"woocommerce_avada_ordering\";s:1:\"1\";s:29:\"woocommerce_one_page_checkout\";s:1:\"0\";s:30:\"woocommerce_enable_order_notes\";s:1:\"1\";s:28:\"woocommerce_acc_link_top_nav\";s:1:\"1\";s:29:\"woocommerce_cart_link_top_nav\";s:1:\"1\";s:29:\"woocommerce_acc_link_main_nav\";s:1:\"0\";s:30:\"woocommerce_cart_link_main_nav\";s:1:\"1\";s:24:\"woocommerce_social_links\";s:1:\"1\";s:28:\"woocommerce_toggle_grid_list\";s:1:\"1\";s:13:\"woo_acc_msg_1\";s:55:\"Need Assistance? Call customer service at 888-555-5555.\";s:13:\"woo_acc_msg_2\";s:32:\"E-mail them at info@yourshop.com\";s:10:\"custom_css\";s:0:\"\";s:15:\"heading_general\";s:0:\"\";s:4:\"code\";s:81:\"<h3 style=\'margin: 0;\'>Tracking / Space Before Head / Space Before Body Code</h3>\";s:18:\"heading_site_width\";s:0:\"\";s:21:\"content_sidebar_width\";s:139:\"<h3 style=\'margin: 0;\'>Content + Sidebar Width</h3><p>These settings are used on pages with 1 sidebar. Total values must add up to 100.</p>\";s:29:\"content_sidebar_sidebar_width\";s:150:\"<h3 style=\'margin: 0;\'>Content + Sidebar + Sidebar Width</h3><p>These settings are used on pages with 2 sidebars. Total values must add up to 100.</p>\";s:14:\"heading_header\";s:0:\"\";s:13:\"header_info_1\";s:50:\"<h3 style=\'margin: 0;\'>Header Content Options</h3>\";s:13:\"header_info_2\";s:45:\"<h3 style=\'margin: 0;\'>Header Background</h3>\";s:13:\"header_info_3\";s:47:\"<h3 style=\'margin: 0;\'>Header Social Icons</h3>\";s:21:\"heading_sticky_header\";s:0:\"\";s:18:\"sticky_header_info\";s:49:\"<h3 style=\'margin: 0;\'>Sticky Header Options</h3>\";s:12:\"heading_logo\";s:0:\"\";s:11:\"header_info\";s:46:\"<h3 style=\'margin: 0;\'>Breadcrumb Options</h3>\";s:19:\"sticky_logo_wrapper\";s:46:\"<h3 style=\'margin: 0;\'>Sticky Header Logo</h3>\";s:19:\"mobile_logo_wrapper\";s:39:\"<h3 style=\'margin: 0;\'>Mobile Logo</h3>\";s:21:\"logo_settings_wrapper\";s:41:\"<h3 style=\'margin: 0;\'>Logo Settings</h3>\";s:8:\"favicons\";s:43:\"<h3 style=\'margin: 0;\'>Favicon Options</h3>\";s:12:\"heading_menu\";s:0:\"\";s:19:\"mobile_menu_options\";s:47:\"<h3 style=\'margin: 0;\'>Mobile Menu Options</h3>\";s:22:\"heading_page_title_bar\";s:0:\"\";s:19:\"heading_sliding_bar\";s:0:\"\";s:11:\"sliding_bar\";s:47:\"<h3 style=\'margin: 0;\'>Sliding Bar Options</h3>\";s:14:\"heading_footer\";s:0:\"\";s:25:\"footer_widgets_area_title\";s:55:\"<h3 style=\'margin: 0;\'>Footer Widgets Area Options</h3>\";s:27:\"footer_parallax_effect_info\";s:59:\"This enables a fixed footer with parallax scrolling effect.\";s:28:\"footer_area_bg_parallax_info\";s:115:\"This enables a parallax effect on the background image selected in \'Background Image For Footer Widget Area\' field.\";s:18:\"footer_sticky_info\";s:144:\"This enables a sticky footer. The entire footer area will always be \'below the fold\'. IMPORTANT: \'Sticky Footer Height\' field must be filled in.\";s:41:\"footer_sticky_with_parallax_bg_image_info\";s:200:\"This enables a sticky footer together with a parallax effect on the background image. The entire footer area will always be \'below the fold\'. IMPORTANT: \'Sticky Footer Height\' field must be filled in.\";s:20:\"copyright_area_title\";s:57:\"<h3 style=\'margin: 0;\'>Footer Copyright Area Options</h3>\";s:24:\"footer_social_icon_title\";s:47:\"<h3 style=\'margin: 0;\'>Social Icon Options</h3>\";s:16:\"heading_sidebars\";s:0:\"\";s:14:\"pages_sidebars\";s:33:\"<h3 style=\'margin: 0;\'>Pages</h3>\";s:12:\"bbpress_only\";s:35:\"<h3 style=\'margin: 0;\'>BBPress</h3>\";s:11:\"search_only\";s:39:\"<h3 style=\'margin: 0;\'>Search Page</h3>\";s:18:\"heading_background\";s:0:\"\";s:15:\"boxed_mode_only\";s:76:\"<h3 style=\'margin: 0;\'>Background options below only work in boxed mode</h3>\";s:15:\"both_modes_only\";s:79:\"<h3 style=\'margin: 0;\'>Background Options Below Work For Boxed & Wide Mode</h3>\";s:18:\"heading_typography\";s:0:\"\";s:19:\"custom_heading_font\";s:174:\"<h3 style=\'margin: 0;\'>Custom Font For Menus And Headings</h3><p style=\'margin-bottom:0;\'>This will override the google / standard font options. All 4 files are required.</p>\";s:18:\"google_fonts_intro\";s:113:\"<h3 style=\'margin: 0;\'>Google Fonts</h3><p style=\'margin-bottom:0;\'>This will override standard font options.</p>\";s:20:\"standard_fonts_intro\";s:42:\"<h3 style=\'margin: 0;\'>Standard Fonts</h3>\";s:15:\"font_size_intro\";s:38:\"<h3 style=\'margin: 0;\'>Font Sizes</h3>\";s:25:\"font_line_heights_wrapper\";s:45:\"<h3 style=\'margin: 0;\'>Font Line Heights</h3>\";s:20:\"font_weights_wrapper\";s:40:\"<h3 style=\'margin: 0;\'>Font Weights</h3>\";s:24:\"font_weights_description\";s:414:\"<ul class=\'list\'><li>If you use a custom font, the font weight will correspond to the font weight of the uploaded files, thus these settings do not apply.</li><li>If you use a google font, make sure to load the font weight in \'Google Font Settings\' field that corresponds to the one in parenthesis here.</li><li>Browser standard fonts in general support only \'Normal (400)\' and \'Bold (700)\' font weights.</li></ul>\";s:27:\"font_letter_spacing_wrapper\";s:47:\"<h3 style=\'margin: 0;\'>Font Letter Spacing</h3>\";s:20:\"font_margins_wrapper\";s:40:\"<h3 style=\'margin: 0;\'>Font Margins</h3>\";s:15:\"heading_styling\";s:0:\"\";s:17:\"bg_colors_wrapper\";s:45:\"<h3 style=\'margin: 0;\'>Background Colors</h3>\";s:22:\"element_colors_wrapper\";s:42:\"<h3 style=\'margin: 0;\'>Element Colors</h3>\";s:23:\"element_options_wrapper\";s:42:\"<h3 style=\'margin: 0;\'>Layout Options</h3>\";s:19:\"font_colors_wrapper\";s:39:\"<h3 style=\'margin: 0;\'>Font Colors</h3>\";s:24:\"main_menu_colors_wrapper\";s:44:\"<h3 style=\'margin: 0;\'>Main Menu Colors</h3>\";s:17:\"menu_colors_intro\";s:49:\"<h3 style=\'margin: 0;\'>Secondary Menu Colors</h3>\";s:26:\"mobile_menu_colors_wrapper\";s:46:\"<h3 style=\'margin: 0;\'>Mobile Menu Colors</h3>\";s:25:\"heading_shortcode_styling\";s:0:\"\";s:14:\"blog_shortcode\";s:42:\"<h3 style=\'margin: 0;\'>Blog Shortcode</h3>\";s:16:\"button_shortcode\";s:44:\"<h3 style=\'margin: 0;\'>Button Shortcode</h3>\";s:18:\"carousel_shortcode\";s:46:\"<h3 style=\'margin: 0;\'>Carousel Shortcode</h3>\";s:19:\"checklist_shortcode\";s:47:\"<h3 style=\'margin: 0;\'>Checklist Shortcode</h3>\";s:12:\"cb_shortcode\";s:49:\"<h3 style=\'margin: 0;\'>Content Box Shortcode</h3>\";s:18:\"counterb_shortcode\";s:51:\"<h3 style=\'margin: 0;\'>Counter Boxes Shortcode</h3>\";s:12:\"cc_shortcode\";s:52:\"<h3 style=\'margin: 0;\'>Counter Circle Shortcode</h3>\";s:17:\"dropcap_shortcode\";s:45:\"<h3 style=\'margin: 0;\'>Dropcap Shortcode</h3>\";s:15:\"flipb_shortcode\";s:48:\"<h3 style=\'margin: 0;\'>Flip Boxes Shortcode</h3>\";s:19:\"fullwidth_shortcode\";s:48:\"<h3 style=\'margin: 0;\'>Full Width Shortcode</h3>\";s:14:\"icon_shortcode\";s:42:\"<h3 style=\'margin: 0;\'>Icon Shortcode</h3>\";s:14:\"imgf_shortcode\";s:49:\"<h3 style=\'margin: 0;\'>Image Frame Shortcode</h3>\";s:15:\"modal_shortcode\";s:43:\"<h3 style=\'margin: 0;\'>Modal Shortcode</h3>\";s:16:\"person_shortcode\";s:44:\"<h3 style=\'margin: 0;\'>Person Shortcode</h3>\";s:17:\"popover_shortcode\";s:45:\"<h3 style=\'margin: 0;\'>Popover Shortcode</h3>\";s:22:\"pricingtable_shortcode\";s:51:\"<h3 style=\'margin: 0;\'>Pricing Table Shortcode</h3>\";s:21:\"progressbar_shortcode\";s:50:\"<h3 style=\'margin: 0;\'>Progress Bar Shortcode</h3>\";s:26:\"sectionseparator_shortcode\";s:55:\"<h3 style=\'margin: 0;\'>Section Separator Shortcode</h3>\";s:19:\"separator_shortcode\";s:47:\"<h3 style=\'margin: 0;\'>Separator Shortcode</h3>\";s:20:\"sharingbox_shortcode\";s:49:\"<h3 style=\'margin: 0;\'>Sharing Box Shortcode</h3>\";s:21:\"sociallinks_shortcode\";s:50:\"<h3 style=\'margin: 0;\'>Social Links Shortcode</h3>\";s:14:\"tabs_shortcode\";s:42:\"<h3 style=\'margin: 0;\'>Tabs Shortcode</h3>\";s:17:\"tagline_shortcode\";s:45:\"<h3 style=\'margin: 0;\'>Tagline Shortcode</h3>\";s:22:\"testimonials_shortcode\";s:50:\"<h3 style=\'margin: 0;\'>Testimonials Shortcode</h3>\";s:15:\"title_shortcode\";s:43:\"<h3 style=\'margin: 0;\'>Title Shortcode</h3>\";s:19:\"accordion_shortcode\";s:45:\"<h3 style=\'margin: 0;\'>Toggles Shortcode</h3>\";s:12:\"heading_blog\";s:0:\"\";s:16:\"blog_single_post\";s:62:\"<h3 style=\'margin: 0;\'>Portfolio Single Post Page Options</h3>\";s:9:\"blog_meta\";s:45:\"<h3 style=\'margin: 0;\'>Blog Meta Options</h3>\";s:17:\"heading_portfolio\";s:0:\"\";s:26:\"heading_social_sharing_box\";s:0:\"\";s:35:\"social_share_box_icon_options_title\";s:57:\"<h3 style=\'margin: 0;\'>Social Share Box Icon Options</h3>\";s:28:\"social_share_box_links_title\";s:50:\"<h3 style=\'margin: 0;\'>Social Share Box Links</h3>\";s:20:\"heading_social_media\";s:0:\"\";s:27:\"custom_color_scheme_element\";s:46:\"<h3 style=\'margin: 0;\'>Custom Social Icon</h3>\";s:18:\"heading_slideshows\";s:0:\"\";s:22:\"heading_elastic_slider\";s:0:\"\";s:16:\"heading_lightbox\";s:0:\"\";s:8:\"lightbox\";s:44:\"<h3 style=\'margin: 0;\'>Lightbox Options</h3>\";s:15:\"heading_contact\";s:0:\"\";s:9:\"recaptcha\";s:50:\"<h3 style=\'margin: 0;\'>ReCaptcha Spam Options</h3>\";s:10:\"google_map\";s:53:\"<h3 style=\'margin: 0;\'>Google Map Design Styling</h3>\";s:19:\"heading_search_page\";s:0:\"\";s:6:\"search\";s:42:\"<h3 style=\'margin: 0;\'>Search Options</h3>\";s:13:\"heading_extra\";s:0:\"\";s:12:\"misc_options\";s:49:\"<h3 style=\'margin: 0;\'>Miscellaneous Options</h3>\";s:9:\"rollovers\";s:50:\"<h3 style=\'margin: 0;\'>Image Rollover Options</h3>\";s:16:\"heading_advanced\";s:0:\"\";s:22:\"enable_disable_heading\";s:76:\"<h3 style=\'margin: 0;\'>Enable / Disable Theme Features & Plugin Support</h3>\";s:21:\"less_compiler_heading\";s:311:\"<h3 style=\'margin: 0;\'>Compile all the dynamic CSS generated by theme options through LESS CSS. LESS compiler demands a lot more memory compared to PHP compiler which is used by default. Alternatively, each theme option might require clearing all kinds of cache e.g. w3 total cache, cloudflare and varnish.</h3>\";s:19:\"heading_woocommerce\";s:0:\"\";s:18:\"heading_custom_css\";s:0:\"\";s:18:\"advanced_css_intro\";s:55:\"<h3 style=\'margin: 0;\'>Advanced CSS Customizations</h3>\";s:15:\"custom_css_info\";s:254:\"Paste your CSS code, do not include any tags or HTML in the field. Any custom CSS entered here will override the theme CSS. In some cases, the !important tag may be needed. Don\'t URL encode image or svg paths. Contents of this field will be auto encoded.\";s:14:\"heading_backup\";s:0:\"\";s:9:\"of_backup\";s:0:\"\";s:11:\"of_transfer\";s:0:\"\";s:24:\"contact_comment_position\";s:5:\"below\";s:34:\"mainmenu_dropdown_vertical_padding\";s:1:\"7\";s:30:\"megamenu_item_vertical_padding\";s:1:\"5\";s:21:\"grid_main_break_point\";s:4:\"1000\";s:19:\"content_break_point\";s:3:\"800\";s:18:\"footer_border_size\";s:2:\"12\";s:21:\"copyright_border_size\";s:1:\"1\";s:14:\"carousel_speed\";s:4:\"2500\";s:37:\"content_box_icon_bg_inner_border_size\";s:1:\"1\";s:37:\"content_box_icon_bg_outer_border_size\";s:1:\"0\";s:17:\"counter_box_speed\";s:4:\"1000\";s:30:\"progressbar_filled_border_size\";s:1:\"0\";s:19:\"related_posts_speed\";s:4:\"2500\";s:15:\"pw_jpeg_quality\";s:2:\"82\";s:17:\"ec_text_font_size\";s:2:\"14\";s:33:\"mainmenu_dropdown_display_divider\";s:1:\"1\";s:31:\"menu_display_dropdown_indicator\";s:1:\"0\";s:29:\"megamenu_item_display_divider\";s:1:\"0\";s:11:\"mobile_zoom\";s:1:\"1\";s:23:\"header_sticky_shrinkage\";s:1:\"1\";s:29:\"footer_widgets_center_content\";s:1:\"0\";s:31:\"footer_copyright_center_content\";s:1:\"0\";s:17:\"ec_global_sidebar\";s:1:\"0\";s:22:\"accordion_divider_line\";s:1:\"1\";s:14:\"blog_width_100\";s:1:\"0\";s:38:\"portfolio_disable_first_featured_image\";s:1:\"0\";s:19:\"portfolio_width_100\";s:1:\"0\";s:28:\"portfolio_project_desc_title\";s:1:\"1\";s:25:\"portfolio_project_details\";s:1:\"1\";s:26:\"portfolio_link_icon_target\";s:1:\"0\";s:23:\"pagination_text_display\";s:1:\"1\";s:27:\"disable_mobile_image_hovers\";s:1:\"0\";s:20:\"dynamic_css_compiler\";s:1:\"1\";s:22:\"dynamic_css_db_caching\";s:1:\"0\";s:36:\"woocommerce_disable_crossfade_effect\";s:1:\"0\";s:24:\"woocommerce_cart_counter\";s:1:\"0\";s:25:\"events_social_sharing_box\";s:1:\"1\";s:16:\"ec_sidebar_width\";s:3:\"32%\";s:20:\"ec_sidebar_2_1_width\";s:3:\"21%\";s:20:\"ec_sidebar_2_2_width\";s:3:\"21%\";s:26:\"flyout_menu_icon_font_size\";s:4:\"20px\";s:21:\"post_titles_font_size\";s:4:\"18px\";s:19:\"post_titles_font_lh\";s:4:\"27px\";s:28:\"post_titles_extras_font_size\";s:4:\"18px\";s:30:\"content_box_icon_circle_radius\";s:3:\"50%\";s:18:\"progressbar_height\";s:4:\"37px\";s:17:\"slider_arrow_size\";s:4:\"14px\";s:17:\"form_input_height\";s:4:\"29px\";s:18:\"ec_sidebar_padding\";s:2:\"4%\";s:18:\"ec_sidew_font_size\";s:4:\"17px\";s:30:\"footer_social_links_color_type\";s:6:\"custom\";s:30:\"header_social_links_color_type\";s:6:\"custom\";s:18:\"social_media_icons\";a:3:{s:24:\"avadaredux_repeater_data\";a:3:{i:0;a:1:{s:5:\"title\";s:0:\"\";}i:1;a:1:{s:5:\"title\";s:0:\"\";}i:2;a:1:{s:5:\"title\";s:0:\"\";}}s:4:\"icon\";a:3:{i:0;s:8:\"facebook\";i:1;s:5:\"gplus\";i:2;s:5:\"email\";}s:3:\"url\";a:3:{i:0;s:81:\"https://www.facebook.com/pages/Assagay-Forest-Lodge/696704640356039?ref=bookmarks\";i:1;s:81:\"https://plus.google.com/b/102888140860425533320/+AssagayGuestLodgeHillcrest/about\";i:2;s:23:\"assagaylodge@msla.co.za\";}}s:31:\"sharing_social_links_color_type\";s:6:\"custom\";s:22:\"flyout_menu_icon_color\";s:7:\"#333333\";s:28:\"flyout_menu_icon_hover_color\";s:7:\"#a0ce4e\";s:23:\"content_box_title_color\";s:7:\"#333333\";s:22:\"content_box_body_color\";s:7:\"#747474\";s:22:\"content_box_icon_color\";s:7:\"#ffffff\";s:28:\"countdown_counter_text_color\";s:7:\"#ffffff\";s:28:\"countdown_heading_text_color\";s:7:\"#ffffff\";s:31:\"countdown_subheading_text_color\";s:7:\"#ffffff\";s:25:\"countdown_link_text_color\";s:7:\"#ffffff\";s:27:\"bbp_forum_header_font_color\";s:7:\"#747474\";s:26:\"primary_overlay_text_color\";s:7:\"#ffffff\";s:17:\"ec_bar_text_color\";s:7:\"#747474\";s:21:\"ec_tooltip_body_color\";s:7:\"#747474\";s:24:\"ec_sidebar_heading_color\";s:7:\"#333333\";s:21:\"ec_sidebar_text_color\";s:7:\"#747474\";s:21:\"ec_sidebar_link_color\";s:7:\"#333333\";s:12:\"main_padding\";a:2:{s:3:\"top\";s:4:\"55px\";s:6:\"bottom\";s:4:\"40px\";}s:10:\"col_margin\";a:2:{s:3:\"top\";s:3:\"0px\";s:6:\"bottom\";s:4:\"20px\";}s:14:\"header_padding\";a:4:{s:3:\"top\";s:3:\"0px\";s:6:\"bottom\";s:3:\"0px\";s:4:\"left\";s:3:\"0px\";s:5:\"right\";s:3:\"0px\";}s:11:\"logo_margin\";a:4:{s:3:\"top\";s:4:\"31px\";s:6:\"bottom\";s:4:\"31px\";s:4:\"left\";s:3:\"0px\";s:5:\"right\";s:3:\"0px\";}s:19:\"footer_area_padding\";a:4:{s:3:\"top\";s:4:\"43px\";s:6:\"bottom\";s:4:\"40px\";s:4:\"left\";s:3:\"0px\";s:5:\"right\";s:3:\"0px\";}s:17:\"copyright_padding\";a:2:{s:3:\"top\";s:4:\"18px\";s:6:\"bottom\";s:4:\"16px\";}s:18:\"content_box_margin\";a:2:{s:3:\"top\";s:3:\"0px\";s:6:\"bottom\";s:4:\"60px\";}s:14:\"tagline_margin\";a:2:{s:3:\"top\";s:3:\"0px\";s:6:\"bottom\";s:4:\"84px\";}s:12:\"title_margin\";a:2:{s:3:\"top\";s:3:\"0px\";s:6:\"bottom\";s:4:\"31px\";}s:14:\"nav_typography\";a:5:{s:11:\"font-family\";s:10:\"Antic Slab\";s:6:\"google\";s:4:\"true\";s:11:\"font-backup\";s:28:\"Arial, Helvetica, sans-serif\";s:11:\"font-weight\";i:400;s:14:\"letter-spacing\";s:3:\"0px\";}s:15:\"body_typography\";a:7:{s:11:\"font-family\";s:7:\"PT Sans\";s:6:\"google\";s:4:\"true\";s:11:\"font-backup\";s:28:\"Arial, Helvetica, sans-serif\";s:9:\"font-size\";s:4:\"13px\";s:11:\"line-height\";d:1.54000000000000003552713678800500929355621337890625;s:11:\"font-weight\";i:400;s:5:\"color\";s:7:\"#747474\";}s:13:\"h1_typography\";a:9:{s:11:\"font-backup\";s:28:\"Arial, Helvetica, sans-serif\";s:11:\"font-family\";s:10:\"Antic Slab\";s:6:\"google\";s:4:\"true\";s:9:\"font-size\";s:4:\"34px\";s:11:\"line-height\";d:1.4099999999999999200639422269887290894985198974609375;s:11:\"font-weight\";i:400;s:5:\"color\";s:7:\"#333333\";s:10:\"margin-top\";s:6:\"0.67em\";s:13:\"margin-bottom\";s:6:\"0.67em\";}s:13:\"h2_typography\";a:9:{s:11:\"font-backup\";s:28:\"Arial, Helvetica, sans-serif\";s:11:\"font-family\";s:10:\"Antic Slab\";s:6:\"google\";s:4:\"true\";s:9:\"font-size\";s:4:\"18px\";s:11:\"line-height\";d:1.5;s:11:\"font-weight\";i:400;s:5:\"color\";s:7:\"#333333\";s:10:\"margin-top\";s:3:\"0em\";s:13:\"margin-bottom\";s:5:\"1.1em\";}s:13:\"h3_typography\";a:9:{s:11:\"font-backup\";s:28:\"Arial, Helvetica, sans-serif\";s:11:\"font-family\";s:10:\"Antic Slab\";s:6:\"google\";s:4:\"true\";s:9:\"font-size\";s:4:\"16px\";s:11:\"line-height\";d:1.5;s:11:\"font-weight\";i:400;s:5:\"color\";s:7:\"#333333\";s:10:\"margin-top\";s:3:\"1em\";s:13:\"margin-bottom\";s:3:\"1em\";}s:26:\"footer_headings_typography\";a:6:{s:11:\"font-backup\";s:28:\"Arial, Helvetica, sans-serif\";s:11:\"font-family\";s:7:\"PT Sans\";s:6:\"google\";s:4:\"true\";s:9:\"font-size\";s:4:\"13px\";s:11:\"font-weight\";i:400;s:5:\"color\";s:7:\"#DDDDDD\";}s:13:\"h4_typography\";a:9:{s:11:\"font-backup\";s:28:\"Arial, Helvetica, sans-serif\";s:11:\"font-family\";s:10:\"Antic Slab\";s:6:\"google\";s:4:\"true\";s:9:\"font-size\";s:4:\"13px\";s:11:\"line-height\";d:1.54000000000000003552713678800500929355621337890625;s:11:\"font-weight\";i:400;s:5:\"color\";s:7:\"#333333\";s:10:\"margin-top\";s:6:\"1.33em\";s:13:\"margin-bottom\";s:6:\"1.33em\";}s:13:\"h5_typography\";a:9:{s:11:\"font-backup\";s:28:\"Arial, Helvetica, sans-serif\";s:11:\"font-family\";s:10:\"Antic Slab\";s:6:\"google\";s:4:\"true\";s:9:\"font-size\";s:4:\"12px\";s:11:\"line-height\";d:1.5;s:11:\"font-weight\";i:400;s:5:\"color\";s:7:\"#333333\";s:10:\"margin-top\";s:6:\"1.67em\";s:13:\"margin-bottom\";s:6:\"1.67em\";}s:13:\"h6_typography\";a:9:{s:11:\"font-backup\";s:28:\"Arial, Helvetica, sans-serif\";s:11:\"font-family\";s:10:\"Antic Slab\";s:6:\"google\";s:4:\"true\";s:9:\"font-size\";s:4:\"11px\";s:11:\"line-height\";d:1.5500000000000000444089209850062616169452667236328125;s:11:\"font-weight\";i:400;s:5:\"color\";s:7:\"#333333\";s:10:\"margin-top\";s:6:\"2.33em\";s:13:\"margin-bottom\";s:6:\"2.33em\";}s:17:\"button_typography\";a:5:{s:11:\"font-backup\";s:28:\"Arial, Helvetica, sans-serif\";s:11:\"font-family\";s:7:\"PT Sans\";s:6:\"google\";s:4:\"true\";s:11:\"font-weight\";i:700;s:14:\"letter-spacing\";s:3:\"0px\";}s:25:\"slider_nav_box_dimensions\";a:2:{s:5:\"width\";s:4:\"30px\";s:6:\"height\";s:4:\"30px\";}s:15:\"tfes_dimensions\";a:2:{s:5:\"width\";s:4:\"100%\";s:6:\"height\";s:5:\"400px\";}s:15:\"gmap_dimensions\";a:2:{s:5:\"width\";s:4:\"100%\";s:6:\"height\";s:5:\"415px\";}s:25:\"lightbox_video_dimensions\";a:2:{s:5:\"width\";s:6:\"1280px\";s:6:\"height\";s:5:\"720px\";}s:36:\"blog_load_more_posts_button_bg_color\";s:7:\"#ebeaea\";s:41:\"portfolio_load_more_posts_button_bg_color\";s:7:\"#ebeaea\";s:28:\"flyout_menu_background_color\";s:22:\"rgba(255,255,255,0.95)\";s:21:\"flyout_menu_direction\";s:4:\"fade\";s:23:\"sidebar_widget_bg_color\";s:19:\"rgba(255,255,255,0)\";s:12:\"custom_fonts\";a:0:{}s:16:\"animation_offset\";s:13:\"top-into-view\";s:11:\"button_span\";s:2:\"no\";s:25:\"content_box_icon_bg_color\";s:7:\"#333333\";s:38:\"content_box_icon_bg_inner_border_color\";s:7:\"#333333\";s:38:\"content_box_icon_bg_outer_border_color\";s:19:\"rgba(255,255,255,0)\";s:27:\"content_box_icon_hover_type\";s:4:\"fade\";s:40:\"content_box_hover_animation_accent_color\";s:7:\"#a0ce4e\";s:21:\"content_box_link_type\";s:4:\"text\";s:21:\"content_box_link_area\";s:9:\"link-icon\";s:23:\"content_box_link_target\";s:5:\"_self\";s:18:\"countdown_timezone\";s:9:\"site_time\";s:20:\"countdown_show_weeks\";s:2:\"no\";s:26:\"countdown_background_color\";s:7:\"#a0ce4e\";s:26:\"countdown_background_image\";a:0:{}s:27:\"countdown_background_repeat\";s:9:\"no-repeat\";s:29:\"countdown_background_position\";s:13:\"center center\";s:27:\"countdown_counter_box_color\";s:7:\"#333333\";s:21:\"countdown_link_target\";s:5:\"_self\";s:23:\"person_background_color\";s:13:\"rgba(0,0,0,0)\";s:16:\"person_alignment\";s:4:\"Left\";s:20:\"person_icon_position\";s:3:\"Top\";s:25:\"progressbar_text_position\";s:6:\"on_bar\";s:31:\"progressbar_filled_border_color\";s:7:\"#ffffff\";s:23:\"social_links_color_type\";s:6:\"custom\";s:21:\"user_login_text_align\";s:6:\"center\";s:32:\"user_login_form_background_color\";s:7:\"#f6f6f6\";s:30:\"portfolio_featured_image_width\";s:4:\"full\";s:22:\"sharing_social_tagline\";s:39:\"Share This Story, Choose Your Platform!\";s:26:\"search_new_search_position\";s:3:\"top\";s:22:\"pagination_box_padding\";a:2:{s:5:\"width\";s:3:\"6px\";s:6:\"height\";s:3:\"2px\";}}', 'yes'),
(4736, 'avada_migrations', 'a:1:{i:400;a:2:{s:7:\"started\";b:1;s:8:\"finished\";b:1;}}', 'yes'),
(4739, 'widget_menu-widget', 'a:1:{s:12:\"_multiwidget\";i:1;}', 'yes'),
(4740, 'avada_version', '7.11.7', 'yes'),
(4741, 'avada_previous_version', 'a:3:{i:0;b:0;i:1;s:5:\"4.0.3\";i:2;s:5:\"6.0.3\";}', 'yes'),
(4743, 'avada_theme_options-transients', 'a:2:{s:14:\"changed_values\";a:0:{}s:9:\"last_save\";i:1476701506;}', 'yes'),
(4748, 'theme_mods_Avada', 'a:4:{i:0;b:0;s:18:\"nav_menu_locations\";a:3:{s:15:\"main_navigation\";i:31;s:17:\"sticky_navigation\";i:31;s:14:\"top_navigation\";i:33;}s:18:\"custom_css_post_id\";i:-1;s:16:\"header_textcolor\";s:0:\"\";}', 'yes'),
(4780, 'cf7dp_ui_theme', 'start', 'yes'),
(4850, 'widget_dopbspwidget', 'a:1:{s:12:\"_multiwidget\";i:1;}', 'yes'),
(4851, 'DOPBSP_db_version', '2.87', 'yes'),
(4852, 'DOPBSP_db_version_api_keys', '1', 'yes'),
(4853, 'DOPBSP_db_version_calendars', '1.07', 'yes');
INSERT INTO `wp_options` (`option_id`, `option_name`, `option_value`, `autoload`) VALUES
(4854, 'DOPBSP_db_version_coupons', '1', 'yes'),
(4855, 'DOPBSP_db_version_days', '1.01', 'yes'),
(4856, 'DOPBSP_db_version_days_available', '1', 'yes'),
(4857, 'DOPBSP_db_version_days_unavailable', '1', 'yes'),
(4858, 'DOPBSP_db_version_discounts', '1', 'yes'),
(4859, 'DOPBSP_db_version_discounts_items', '1', 'yes'),
(4860, 'DOPBSP_db_version_discounts_items_rules', '1', 'yes'),
(4861, 'DOPBSP_db_version_emails', '1', 'yes'),
(4862, 'DOPBSP_db_version_emails_translation', '1', 'yes'),
(4863, 'DOPBSP_db_version_extras', '1', 'yes'),
(4864, 'DOPBSP_db_version_extras_groups', '1.01', 'yes'),
(4865, 'DOPBSP_db_version_extras_groups_items', '1.01', 'yes'),
(4866, 'DOPBSP_db_version_fees', '1', 'yes'),
(4867, 'DOPBSP_db_version_forms', '1', 'yes'),
(4868, 'DOPBSP_db_version_forms_fields', '1.02', 'yes'),
(4869, 'DOPBSP_db_version_forms_select_options', '1', 'yes'),
(4870, 'DOPBSP_db_version_languages', '1', 'yes'),
(4871, 'DOPBSP_db_version_locations', '1', 'yes'),
(4872, 'DOPBSP_db_version_reservations', '1.02', 'yes'),
(4873, 'DOPBSP_db_version_rules', '1', 'yes'),
(4874, 'DOPBSP_db_version_searches', '1', 'yes'),
(4875, 'DOPBSP_db_version_settings', '1', 'yes'),
(4876, 'DOPBSP_db_version_settings_calendar', '1', 'yes'),
(4877, 'DOPBSP_db_version_settings_notifications', '1', 'yes'),
(4878, 'DOPBSP_db_version_settings_payment', '1', 'yes'),
(4879, 'DOPBSP_db_version_settings_search', '1', 'yes'),
(4880, 'DOPBSP_db_version_translation', '1.03', 'yes'),
(4881, 'DOPBSP_users_permissions_administrator', '0', 'yes'),
(4882, 'DOPBSP_users_permissions_custom_posts_administrator', '1', 'yes'),
(4883, 'DOPBSP_users_permissions_editor', '0', 'yes'),
(4884, 'DOPBSP_users_permissions_custom_posts_editor', '1', 'yes'),
(4885, 'DOPBSP_users_permissions_author', '0', 'yes'),
(4886, 'DOPBSP_users_permissions_custom_posts_author', '1', 'yes'),
(4887, 'DOPBSP_users_permissions_contributor', '0', 'yes'),
(4888, 'DOPBSP_users_permissions_custom_posts_contributor', '0', 'yes'),
(4889, 'DOPBSP_users_permissions_subscriber', '0', 'yes'),
(4890, 'DOPBSP_users_permissions_custom_posts_subscriber', '1', 'yes'),
(4891, 'DOPBSP_users_permissions_customer', '0', 'yes'),
(4892, 'DOPBSP_users_permissions_custom_posts_customer', '1', 'yes'),
(4893, 'DOPBSP_users_permissions_shop_manager', '0', 'yes'),
(4894, 'DOPBSP_users_permissions_custom_posts_shop_manager', '1', 'yes'),
(5095, 'DOPBSP_db_version_models', '1', 'yes'),
(5199, 'widget_sr_widget_check_availability', 'a:1:{s:12:\"_multiwidget\";i:1;}', 'yes'),
(5200, 'widget_sr_widget_currency', 'a:1:{s:12:\"_multiwidget\";i:1;}', 'yes'),
(5974, 'avada_permalinks', 'a:3:{s:23:\"portfolio_category_base\";s:0:\"\";s:21:\"portfolio_skills_base\";s:0:\"\";s:19:\"portfolio_tags_base\";s:0:\"\";}', 'yes'),
(8518, 'widget_media_audio', 'a:1:{s:12:\"_multiwidget\";i:1;}', 'yes'),
(8519, 'widget_media_image', 'a:1:{s:12:\"_multiwidget\";i:1;}', 'yes'),
(8520, 'widget_media_video', 'a:1:{s:12:\"_multiwidget\";i:1;}', 'yes'),
(9225, 'fresh_site', '0', 'yes'),
(9334, 'widget_custom_html', 'a:1:{s:12:\"_multiwidget\";i:1;}', 'yes'),
(9472, 'wpadm_backup__get_key', '599557c08653b4a1b99e6f57d59b9ce5', 'yes'),
(11449, 'widget_media_gallery', 'a:1:{s:12:\"_multiwidget\";i:1;}', 'yes'),
(11573, 'secure_auth_key', 'p+MChpO9YKe]KPk}Am#PNgaXdS*4eG;K-%t`/;d^C!XGZBL%mJC,`#@knO6&%oTm', 'no'),
(11574, 'secure_auth_salt', 'MNa%04jS5-aU^e<JrWjTH]hh8Gd2]jUb~HKoo9=Xq%J*>YpwViKv}_lj{>8N&&PM', 'no'),
(12288, 'DOPBSP_db_version_availability', '1', 'yes'),
(12289, 'DOPBSP_db_version_availability_no', '1', 'yes'),
(12290, 'DOPBSP_db_version_availability_price', '1', 'yes'),
(17262, 'DOPBSP_db_version_smses', '1', 'yes'),
(17263, 'DOPBSP_db_version_smses_translation', '1', 'yes'),
(20561, 'wp_page_for_privacy_policy', '0', 'yes'),
(20562, 'show_comments_cookies_opt_in', '1', 'yes'),
(22538, 'DOPBSP_request_rating', 'false', 'yes'),
(22751, 'recovery_keys', 'a:0:{}', 'yes'),
(24525, 'recovery_mode_auth_salt', 'cH8UMf8SBzmUFprF;ZIw?WftL}->qy6?h#ey7[0?)qM+1wjm~_Z+8-yK7</7AMO?', 'no'),
(24690, 'DOPBSP_view_pro', 'false', 'yes');
INSERT INTO `wp_options` (`option_id`, `option_name`, `option_value`, `autoload`) VALUES
(25187, '_site_transient_avada_avadaredux_googlefonts', 'a:733:{s:7:\"ABeeZee\";a:2:{s:8:\"variants\";a:2:{i:0;a:2:{s:2:\"id\";s:3:\"400\";s:4:\"name\";s:10:\"Normal 400\";}i:1;a:2:{s:2:\"id\";s:9:\"400italic\";s:4:\"name\";s:17:\"Normal 400 Italic\";}}s:7:\"subsets\";a:1:{i:0;a:2:{s:2:\"id\";s:5:\"latin\";s:4:\"name\";s:5:\"Latin\";}}}s:4:\"Abel\";a:2:{s:8:\"variants\";a:1:{i:0;a:2:{s:2:\"id\";s:3:\"400\";s:4:\"name\";s:10:\"Normal 400\";}}s:7:\"subsets\";a:1:{i:0;a:2:{s:2:\"id\";s:5:\"latin\";s:4:\"name\";s:5:\"Latin\";}}}s:13:\"Abril Fatface\";a:2:{s:8:\"variants\";a:1:{i:0;a:2:{s:2:\"id\";s:3:\"400\";s:4:\"name\";s:10:\"Normal 400\";}}s:7:\"subsets\";a:2:{i:0;a:2:{s:2:\"id\";s:9:\"latin-ext\";s:4:\"name\";s:14:\"Latin Extended\";}i:1;a:2:{s:2:\"id\";s:5:\"latin\";s:4:\"name\";s:5:\"Latin\";}}}s:8:\"Aclonica\";a:2:{s:8:\"variants\";a:1:{i:0;a:2:{s:2:\"id\";s:3:\"400\";s:4:\"name\";s:10:\"Normal 400\";}}s:7:\"subsets\";a:1:{i:0;a:2:{s:2:\"id\";s:5:\"latin\";s:4:\"name\";s:5:\"Latin\";}}}s:4:\"Acme\";a:2:{s:8:\"variants\";a:1:{i:0;a:2:{s:2:\"id\";s:3:\"400\";s:4:\"name\";s:10:\"Normal 400\";}}s:7:\"subsets\";a:1:{i:0;a:2:{s:2:\"id\";s:5:\"latin\";s:4:\"name\";s:5:\"Latin\";}}}s:5:\"Actor\";a:2:{s:8:\"variants\";a:1:{i:0;a:2:{s:2:\"id\";s:3:\"400\";s:4:\"name\";s:10:\"Normal 400\";}}s:7:\"subsets\";a:1:{i:0;a:2:{s:2:\"id\";s:5:\"latin\";s:4:\"name\";s:5:\"Latin\";}}}s:7:\"Adamina\";a:2:{s:8:\"variants\";a:1:{i:0;a:2:{s:2:\"id\";s:3:\"400\";s:4:\"name\";s:10:\"Normal 400\";}}s:7:\"subsets\";a:1:{i:0;a:2:{s:2:\"id\";s:5:\"latin\";s:4:\"name\";s:5:\"Latin\";}}}s:10:\"Advent Pro\";a:2:{s:8:\"variants\";a:7:{i:0;a:2:{s:2:\"id\";s:3:\"100\";s:4:\"name\";s:15:\"Ultra-Light 100\";}i:1;a:2:{s:2:\"id\";s:3:\"200\";s:4:\"name\";s:9:\"Light 200\";}i:2;a:2:{s:2:\"id\";s:3:\"300\";s:4:\"name\";s:8:\"Book 300\";}i:3;a:2:{s:2:\"id\";s:3:\"400\";s:4:\"name\";s:10:\"Normal 400\";}i:4;a:2:{s:2:\"id\";s:3:\"500\";s:4:\"name\";s:10:\"Medium 500\";}i:5;a:2:{s:2:\"id\";s:3:\"600\";s:4:\"name\";s:13:\"Semi-Bold 600\";}i:6;a:2:{s:2:\"id\";s:3:\"700\";s:4:\"name\";s:8:\"Bold 700\";}}s:7:\"subsets\";a:3:{i:0;a:2:{s:2:\"id\";s:9:\"latin-ext\";s:4:\"name\";s:14:\"Latin Extended\";}i:1;a:2:{s:2:\"id\";s:5:\"latin\";s:4:\"name\";s:5:\"Latin\";}i:2;a:2:{s:2:\"id\";s:5:\"greek\";s:4:\"name\";s:5:\"Greek\";}}}s:15:\"Aguafina Script\";a:2:{s:8:\"variants\";a:1:{i:0;a:2:{s:2:\"id\";s:3:\"400\";s:4:\"name\";s:10:\"Normal 400\";}}s:7:\"subsets\";a:2:{i:0;a:2:{s:2:\"id\";s:9:\"latin-ext\";s:4:\"name\";s:14:\"Latin Extended\";}i:1;a:2:{s:2:\"id\";s:5:\"latin\";s:4:\"name\";s:5:\"Latin\";}}}s:7:\"Akronim\";a:2:{s:8:\"variants\";a:1:{i:0;a:2:{s:2:\"id\";s:3:\"400\";s:4:\"name\";s:10:\"Normal 400\";}}s:7:\"subsets\";a:2:{i:0;a:2:{s:2:\"id\";s:9:\"latin-ext\";s:4:\"name\";s:14:\"Latin Extended\";}i:1;a:2:{s:2:\"id\";s:5:\"latin\";s:4:\"name\";s:5:\"Latin\";}}}s:6:\"Aladin\";a:2:{s:8:\"variants\";a:1:{i:0;a:2:{s:2:\"id\";s:3:\"400\";s:4:\"name\";s:10:\"Normal 400\";}}s:7:\"subsets\";a:2:{i:0;a:2:{s:2:\"id\";s:9:\"latin-ext\";s:4:\"name\";s:14:\"Latin Extended\";}i:1;a:2:{s:2:\"id\";s:5:\"latin\";s:4:\"name\";s:5:\"Latin\";}}}s:7:\"Aldrich\";a:2:{s:8:\"variants\";a:1:{i:0;a:2:{s:2:\"id\";s:3:\"400\";s:4:\"name\";s:10:\"Normal 400\";}}s:7:\"subsets\";a:1:{i:0;a:2:{s:2:\"id\";s:5:\"latin\";s:4:\"name\";s:5:\"Latin\";}}}s:4:\"Alef\";a:2:{s:8:\"variants\";a:2:{i:0;a:2:{s:2:\"id\";s:3:\"400\";s:4:\"name\";s:10:\"Normal 400\";}i:1;a:2:{s:2:\"id\";s:3:\"700\";s:4:\"name\";s:8:\"Bold 700\";}}s:7:\"subsets\";a:2:{i:0;a:2:{s:2:\"id\";s:5:\"latin\";s:4:\"name\";s:5:\"Latin\";}i:1;a:2:{s:2:\"id\";s:6:\"hebrew\";s:4:\"name\";s:6:\"Hebrew\";}}}s:8:\"Alegreya\";a:2:{s:8:\"variants\";a:6:{i:0;a:2:{s:2:\"id\";s:3:\"400\";s:4:\"name\";s:10:\"Normal 400\";}i:1;a:2:{s:2:\"id\";s:9:\"400italic\";s:4:\"name\";s:17:\"Normal 400 Italic\";}i:2;a:2:{s:2:\"id\";s:3:\"700\";s:4:\"name\";s:8:\"Bold 700\";}i:3;a:2:{s:2:\"id\";s:9:\"700italic\";s:4:\"name\";s:15:\"Bold 700 Italic\";}i:4;a:2:{s:2:\"id\";s:3:\"900\";s:4:\"name\";s:14:\"Ultra-Bold 900\";}i:5;a:2:{s:2:\"id\";s:9:\"900italic\";s:4:\"name\";s:21:\"Ultra-Bold 900 Italic\";}}s:7:\"subsets\";a:2:{i:0;a:2:{s:2:\"id\";s:9:\"latin-ext\";s:4:\"name\";s:14:\"Latin Extended\";}i:1;a:2:{s:2:\"id\";s:5:\"latin\";s:4:\"name\";s:5:\"Latin\";}}}s:11:\"Alegreya SC\";a:2:{s:8:\"variants\";a:6:{i:0;a:2:{s:2:\"id\";s:3:\"400\";s:4:\"name\";s:10:\"Normal 400\";}i:1;a:2:{s:2:\"id\";s:9:\"400italic\";s:4:\"name\";s:17:\"Normal 400 Italic\";}i:2;a:2:{s:2:\"id\";s:3:\"700\";s:4:\"name\";s:8:\"Bold 700\";}i:3;a:2:{s:2:\"id\";s:9:\"700italic\";s:4:\"name\";s:15:\"Bold 700 Italic\";}i:4;a:2:{s:2:\"id\";s:3:\"900\";s:4:\"name\";s:14:\"Ultra-Bold 900\";}i:5;a:2:{s:2:\"id\";s:9:\"900italic\";s:4:\"name\";s:21:\"Ultra-Bold 900 Italic\";}}s:7:\"subsets\";a:2:{i:0;a:2:{s:2:\"id\";s:9:\"latin-ext\";s:4:\"name\";s:14:\"Latin Extended\";}i:1;a:2:{s:2:\"id\";s:5:\"latin\";s:4:\"name\";s:5:\"Latin\";}}}s:13:\"Alegreya Sans\";a:2:{s:8:\"variants\";a:14:{i:0;a:2:{s:2:\"id\";s:3:\"100\";s:4:\"name\";s:15:\"Ultra-Light 100\";}i:1;a:2:{s:2:\"id\";s:9:\"100italic\";s:4:\"name\";s:22:\"Ultra-Light 100 Italic\";}i:2;a:2:{s:2:\"id\";s:3:\"300\";s:4:\"name\";s:8:\"Book 300\";}i:3;a:2:{s:2:\"id\";s:9:\"300italic\";s:4:\"name\";s:15:\"Book 300 Italic\";}i:4;a:2:{s:2:\"id\";s:3:\"400\";s:4:\"name\";s:10:\"Normal 400\";}i:5;a:2:{s:2:\"id\";s:9:\"400italic\";s:4:\"name\";s:17:\"Normal 400 Italic\";}i:6;a:2:{s:2:\"id\";s:3:\"500\";s:4:\"name\";s:10:\"Medium 500\";}i:7;a:2:{s:2:\"id\";s:9:\"500italic\";s:4:\"name\";s:17:\"Medium 500 Italic\";}i:8;a:2:{s:2:\"id\";s:3:\"700\";s:4:\"name\";s:8:\"Bold 700\";}i:9;a:2:{s:2:\"id\";s:9:\"700italic\";s:4:\"name\";s:15:\"Bold 700 Italic\";}i:10;a:2:{s:2:\"id\";s:3:\"800\";s:4:\"name\";s:14:\"Extra-Bold 800\";}i:11;a:2:{s:2:\"id\";s:9:\"800italic\";s:4:\"name\";s:21:\"Extra-Bold 800 Italic\";}i:12;a:2:{s:2:\"id\";s:3:\"900\";s:4:\"name\";s:14:\"Ultra-Bold 900\";}i:13;a:2:{s:2:\"id\";s:9:\"900italic\";s:4:\"name\";s:21:\"Ultra-Bold 900 Italic\";}}s:7:\"subsets\";a:3:{i:0;a:2:{s:2:\"id\";s:9:\"latin-ext\";s:4:\"name\";s:14:\"Latin Extended\";}i:1;a:2:{s:2:\"id\";s:10:\"vietnamese\";s:4:\"name\";s:10:\"Vietnamese\";}i:2;a:2:{s:2:\"id\";s:5:\"latin\";s:4:\"name\";s:5:\"Latin\";}}}s:16:\"Alegreya Sans SC\";a:2:{s:8:\"variants\";a:14:{i:0;a:2:{s:2:\"id\";s:3:\"100\";s:4:\"name\";s:15:\"Ultra-Light 100\";}i:1;a:2:{s:2:\"id\";s:9:\"100italic\";s:4:\"name\";s:22:\"Ultra-Light 100 Italic\";}i:2;a:2:{s:2:\"id\";s:3:\"300\";s:4:\"name\";s:8:\"Book 300\";}i:3;a:2:{s:2:\"id\";s:9:\"300italic\";s:4:\"name\";s:15:\"Book 300 Italic\";}i:4;a:2:{s:2:\"id\";s:3:\"400\";s:4:\"name\";s:10:\"Normal 400\";}i:5;a:2:{s:2:\"id\";s:9:\"400italic\";s:4:\"name\";s:17:\"Normal 400 Italic\";}i:6;a:2:{s:2:\"id\";s:3:\"500\";s:4:\"name\";s:10:\"Medium 500\";}i:7;a:2:{s:2:\"id\";s:9:\"500italic\";s:4:\"name\";s:17:\"Medium 500 Italic\";}i:8;a:2:{s:2:\"id\";s:3:\"700\";s:4:\"name\";s:8:\"Bold 700\";}i:9;a:2:{s:2:\"id\";s:9:\"700italic\";s:4:\"name\";s:15:\"Bold 700 Italic\";}i:10;a:2:{s:2:\"id\";s:3:\"800\";s:4:\"name\";s:14:\"Extra-Bold 800\";}i:11;a:2:{s:2:\"id\";s:9:\"800italic\";s:4:\"name\";s:21:\"Extra-Bold 800 Italic\";}i:12;a:2:{s:2:\"id\";s:3:\"900\";s:4:\"name\";s:14:\"Ultra-Bold 900\";}i:13;a:2:{s:2:\"id\";s:9:\"900italic\";s:4:\"name\";s:21:\"Ultra-Bold 900 Italic\";}}s:7:\"subsets\";a:3:{i:0;a:2:{s:2:\"id\";s:9:\"latin-ext\";s:4:\"name\";s:14:\"Latin Extended\";}i:1;a:2:{s:2:\"id\";s:10:\"vietnamese\";s:4:\"name\";s:10:\"Vietnamese\";}i:2;a:2:{s:2:\"id\";s:5:\"latin\";s:4:\"name\";s:5:\"Latin\";}}}s:10:\"Alex Brush\";a:2:{s:8:\"variants\";a:1:{i:0;a:2:{s:2:\"id\";s:3:\"400\";s:4:\"name\";s:10:\"Normal 400\";}}s:7:\"subsets\";a:2:{i:0;a:2:{s:2:\"id\";s:9:\"latin-ext\";s:4:\"name\";s:14:\"Latin Extended\";}i:1;a:2:{s:2:\"id\";s:5:\"latin\";s:4:\"name\";s:5:\"Latin\";}}}s:13:\"Alfa Slab One\";a:2:{s:8:\"variants\";a:1:{i:0;a:2:{s:2:\"id\";s:3:\"400\";s:4:\"name\";s:10:\"Normal 400\";}}s:7:\"subsets\";a:1:{i:0;a:2:{s:2:\"id\";s:5:\"latin\";s:4:\"name\";s:5:\"Latin\";}}}s:5:\"Alice\";a:2:{s:8:\"variants\";a:1:{i:0;a:2:{s:2:\"id\";s:3:\"400\";s:4:\"name\";s:10:\"Normal 400\";}}s:7:\"subsets\";a:1:{i:0;a:2:{s:2:\"id\";s:5:\"latin\";s:4:\"name\";s:5:\"Latin\";}}}s:5:\"Alike\";a:2:{s:8:\"variants\";a:1:{i:0;a:2:{s:2:\"id\";s:3:\"400\";s:4:\"name\";s:10:\"Normal 400\";}}s:7:\"subsets\";a:1:{i:0;a:2:{s:2:\"id\";s:5:\"latin\";s:4:\"name\";s:5:\"Latin\";}}}s:13:\"Alike Angular\";a:2:{s:8:\"variants\";a:1:{i:0;a:2:{s:2:\"id\";s:3:\"400\";s:4:\"name\";s:10:\"Normal 400\";}}s:7:\"subsets\";a:1:{i:0;a:2:{s:2:\"id\";s:5:\"latin\";s:4:\"name\";s:5:\"Latin\";}}}s:5:\"Allan\";a:2:{s:8:\"variants\";a:2:{i:0;a:2:{s:2:\"id\";s:3:\"400\";s:4:\"name\";s:10:\"Normal 400\";}i:1;a:2:{s:2:\"id\";s:3:\"700\";s:4:\"name\";s:8:\"Bold 700\";}}s:7:\"subsets\";a:2:{i:0;a:2:{s:2:\"id\";s:9:\"latin-ext\";s:4:\"name\";s:14:\"Latin Extended\";}i:1;a:2:{s:2:\"id\";s:5:\"latin\";s:4:\"name\";s:5:\"Latin\";}}}s:7:\"Allerta\";a:2:{s:8:\"variants\";a:1:{i:0;a:2:{s:2:\"id\";s:3:\"400\";s:4:\"name\";s:10:\"Normal 400\";}}s:7:\"subsets\";a:1:{i:0;a:2:{s:2:\"id\";s:5:\"latin\";s:4:\"name\";s:5:\"Latin\";}}}s:15:\"Allerta Stencil\";a:2:{s:8:\"variants\";a:1:{i:0;a:2:{s:2:\"id\";s:3:\"400\";s:4:\"name\";s:10:\"Normal 400\";}}s:7:\"subsets\";a:1:{i:0;a:2:{s:2:\"id\";s:5:\"latin\";s:4:\"name\";s:5:\"Latin\";}}}s:6:\"Allura\";a:2:{s:8:\"variants\";a:1:{i:0;a:2:{s:2:\"id\";s:3:\"400\";s:4:\"name\";s:10:\"Normal 400\";}}s:7:\"subsets\";a:2:{i:0;a:2:{s:2:\"id\";s:9:\"latin-ext\";s:4:\"name\";s:14:\"Latin Extended\";}i:1;a:2:{s:2:\"id\";s:5:\"latin\";s:4:\"name\";s:5:\"Latin\";}}}s:8:\"Almendra\";a:2:{s:8:\"variants\";a:4:{i:0;a:2:{s:2:\"id\";s:3:\"400\";s:4:\"name\";s:10:\"Normal 400\";}i:1;a:2:{s:2:\"id\";s:9:\"400italic\";s:4:\"name\";s:17:\"Normal 400 Italic\";}i:2;a:2:{s:2:\"id\";s:3:\"700\";s:4:\"name\";s:8:\"Bold 700\";}i:3;a:2:{s:2:\"id\";s:9:\"700italic\";s:4:\"name\";s:15:\"Bold 700 Italic\";}}s:7:\"subsets\";a:2:{i:0;a:2:{s:2:\"id\";s:9:\"latin-ext\";s:4:\"name\";s:14:\"Latin Extended\";}i:1;a:2:{s:2:\"id\";s:5:\"latin\";s:4:\"name\";s:5:\"Latin\";}}}s:16:\"Almendra Display\";a:2:{s:8:\"variants\";a:1:{i:0;a:2:{s:2:\"id\";s:3:\"400\";s:4:\"name\";s:10:\"Normal 400\";}}s:7:\"subsets\";a:2:{i:0;a:2:{s:2:\"id\";s:9:\"latin-ext\";s:4:\"name\";s:14:\"Latin Extended\";}i:1;a:2:{s:2:\"id\";s:5:\"latin\";s:4:\"name\";s:5:\"Latin\";}}}s:11:\"Almendra SC\";a:2:{s:8:\"variants\";a:1:{i:0;a:2:{s:2:\"id\";s:3:\"400\";s:4:\"name\";s:10:\"Normal 400\";}}s:7:\"subsets\";a:1:{i:0;a:2:{s:2:\"id\";s:5:\"latin\";s:4:\"name\";s:5:\"Latin\";}}}s:8:\"Amarante\";a:2:{s:8:\"variants\";a:1:{i:0;a:2:{s:2:\"id\";s:3:\"400\";s:4:\"name\";s:10:\"Normal 400\";}}s:7:\"subsets\";a:2:{i:0;a:2:{s:2:\"id\";s:9:\"latin-ext\";s:4:\"name\";s:14:\"Latin Extended\";}i:1;a:2:{s:2:\"id\";s:5:\"latin\";s:4:\"name\";s:5:\"Latin\";}}}s:8:\"Amaranth\";a:2:{s:8:\"variants\";a:4:{i:0;a:2:{s:2:\"id\";s:3:\"400\";s:4:\"name\";s:10:\"Normal 400\";}i:1;a:2:{s:2:\"id\";s:9:\"400italic\";s:4:\"name\";s:17:\"Normal 400 Italic\";}i:2;a:2:{s:2:\"id\";s:3:\"700\";s:4:\"name\";s:8:\"Bold 700\";}i:3;a:2:{s:2:\"id\";s:9:\"700italic\";s:4:\"name\";s:15:\"Bold 700 Italic\";}}s:7:\"subsets\";a:1:{i:0;a:2:{s:2:\"id\";s:5:\"latin\";s:4:\"name\";s:5:\"Latin\";}}}s:9:\"Amatic SC\";a:2:{s:8:\"variants\";a:2:{i:0;a:2:{s:2:\"id\";s:3:\"400\";s:4:\"name\";s:10:\"Normal 400\";}i:1;a:2:{s:2:\"id\";s:3:\"700\";s:4:\"name\";s:8:\"Bold 700\";}}s:7:\"subsets\";a:2:{i:0;a:2:{s:2:\"id\";s:9:\"latin-ext\";s:4:\"name\";s:14:\"Latin Extended\";}i:1;a:2:{s:2:\"id\";s:5:\"latin\";s:4:\"name\";s:5:\"Latin\";}}}s:9:\"Amethysta\";a:2:{s:8:\"variants\";a:1:{i:0;a:2:{s:2:\"id\";s:3:\"400\";s:4:\"name\";s:10:\"Normal 400\";}}s:7:\"subsets\";a:1:{i:0;a:2:{s:2:\"id\";s:5:\"latin\";s:4:\"name\";s:5:\"Latin\";}}}s:5:\"Amiri\";a:2:{s:8:\"variants\";a:4:{i:0;a:2:{s:2:\"id\";s:3:\"400\";s:4:\"name\";s:10:\"Normal 400\";}i:1;a:2:{s:2:\"id\";s:9:\"400italic\";s:4:\"name\";s:17:\"Normal 400 Italic\";}i:2;a:2:{s:2:\"id\";s:3:\"700\";s:4:\"name\";s:8:\"Bold 700\";}i:3;a:2:{s:2:\"id\";s:9:\"700italic\";s:4:\"name\";s:15:\"Bold 700 Italic\";}}s:7:\"subsets\";a:2:{i:0;a:2:{s:2:\"id\";s:6:\"arabic\";s:4:\"name\";s:6:\"Arabic\";}i:1;a:2:{s:2:\"id\";s:5:\"latin\";s:4:\"name\";s:5:\"Latin\";}}}s:5:\"Amita\";a:2:{s:8:\"variants\";a:2:{i:0;a:2:{s:2:\"id\";s:3:\"400\";s:4:\"name\";s:10:\"Normal 400\";}i:1;a:2:{s:2:\"id\";s:3:\"700\";s:4:\"name\";s:8:\"Bold 700\";}}s:7:\"subsets\";a:3:{i:0;a:2:{s:2:\"id\";s:9:\"latin-ext\";s:4:\"name\";s:14:\"Latin Extended\";}i:1;a:2:{s:2:\"id\";s:5:\"latin\";s:4:\"name\";s:5:\"Latin\";}i:2;a:2:{s:2:\"id\";s:10:\"devanagari\";s:4:\"name\";s:10:\"Devanagari\";}}}s:7:\"Anaheim\";a:2:{s:8:\"variants\";a:1:{i:0;a:2:{s:2:\"id\";s:3:\"400\";s:4:\"name\";s:10:\"Normal 400\";}}s:7:\"subsets\";a:2:{i:0;a:2:{s:2:\"id\";s:9:\"latin-ext\";s:4:\"name\";s:14:\"Latin Extended\";}i:1;a:2:{s:2:\"id\";s:5:\"latin\";s:4:\"name\";s:5:\"Latin\";}}}s:6:\"Andada\";a:2:{s:8:\"variants\";a:1:{i:0;a:2:{s:2:\"id\";s:3:\"400\";s:4:\"name\";s:10:\"Normal 400\";}}s:7:\"subsets\";a:2:{i:0;a:2:{s:2:\"id\";s:9:\"latin-ext\";s:4:\"name\";s:14:\"Latin Extended\";}i:1;a:2:{s:2:\"id\";s:5:\"latin\";s:4:\"name\";s:5:\"Latin\";}}}s:6:\"Andika\";a:2:{s:8:\"variants\";a:1:{i:0;a:2:{s:2:\"id\";s:3:\"400\";s:4:\"name\";s:10:\"Normal 400\";}}s:7:\"subsets\";a:5:{i:0;a:2:{s:2:\"id\";s:12:\"cyrillic-ext\";s:4:\"name\";s:17:\"Cyrillic Extended\";}i:1;a:2:{s:2:\"id\";s:9:\"latin-ext\";s:4:\"name\";s:14:\"Latin Extended\";}i:2;a:2:{s:2:\"id\";s:10:\"vietnamese\";s:4:\"name\";s:10:\"Vietnamese\";}i:3;a:2:{s:2:\"id\";s:8:\"cyrillic\";s:4:\"name\";s:8:\"Cyrillic\";}i:4;a:2:{s:2:\"id\";s:5:\"latin\";s:4:\"name\";s:5:\"Latin\";}}}s:6:\"Angkor\";a:2:{s:8:\"variants\";a:1:{i:0;a:2:{s:2:\"id\";s:3:\"400\";s:4:\"name\";s:10:\"Normal 400\";}}s:7:\"subsets\";a:1:{i:0;a:2:{s:2:\"id\";s:5:\"khmer\";s:4:\"name\";s:5:\"Khmer\";}}}s:24:\"Annie Use Your Telescope\";a:2:{s:8:\"variants\";a:1:{i:0;a:2:{s:2:\"id\";s:3:\"400\";s:4:\"name\";s:10:\"Normal 400\";}}s:7:\"subsets\";a:1:{i:0;a:2:{s:2:\"id\";s:5:\"latin\";s:4:\"name\";s:5:\"Latin\";}}}s:13:\"Anonymous Pro\";a:2:{s:8:\"variants\";a:4:{i:0;a:2:{s:2:\"id\";s:3:\"400\";s:4:\"name\";s:10:\"Normal 400\";}i:1;a:2:{s:2:\"id\";s:9:\"400italic\";s:4:\"name\";s:17:\"Normal 400 Italic\";}i:2;a:2:{s:2:\"id\";s:3:\"700\";s:4:\"name\";s:8:\"Bold 700\";}i:3;a:2:{s:2:\"id\";s:9:\"700italic\";s:4:\"name\";s:15:\"Bold 700 Italic\";}}s:7:\"subsets\";a:4:{i:0;a:2:{s:2:\"id\";s:9:\"latin-ext\";s:4:\"name\";s:14:\"Latin Extended\";}i:1;a:2:{s:2:\"id\";s:8:\"cyrillic\";s:4:\"name\";s:8:\"Cyrillic\";}i:2;a:2:{s:2:\"id\";s:5:\"latin\";s:4:\"name\";s:5:\"Latin\";}i:3;a:2:{s:2:\"id\";s:5:\"greek\";s:4:\"name\";s:5:\"Greek\";}}}s:5:\"Antic\";a:2:{s:8:\"variants\";a:1:{i:0;a:2:{s:2:\"id\";s:3:\"400\";s:4:\"name\";s:10:\"Normal 400\";}}s:7:\"subsets\";a:1:{i:0;a:2:{s:2:\"id\";s:5:\"latin\";s:4:\"name\";s:5:\"Latin\";}}}s:12:\"Antic Didone\";a:2:{s:8:\"variants\";a:1:{i:0;a:2:{s:2:\"id\";s:3:\"400\";s:4:\"name\";s:10:\"Normal 400\";}}s:7:\"subsets\";a:1:{i:0;a:2:{s:2:\"id\";s:5:\"latin\";s:4:\"name\";s:5:\"Latin\";}}}s:10:\"Antic Slab\";a:2:{s:8:\"variants\";a:1:{i:0;a:2:{s:2:\"id\";s:3:\"400\";s:4:\"name\";s:10:\"Normal 400\";}}s:7:\"subsets\";a:1:{i:0;a:2:{s:2:\"id\";s:5:\"latin\";s:4:\"name\";s:5:\"Latin\";}}}s:5:\"Anton\";a:2:{s:8:\"variants\";a:1:{i:0;a:2:{s:2:\"id\";s:3:\"400\";s:4:\"name\";s:10:\"Normal 400\";}}s:7:\"subsets\";a:2:{i:0;a:2:{s:2:\"id\";s:9:\"latin-ext\";s:4:\"name\";s:14:\"Latin Extended\";}i:1;a:2:{s:2:\"id\";s:5:\"latin\";s:4:\"name\";s:5:\"Latin\";}}}s:6:\"Arapey\";a:2:{s:8:\"variants\";a:2:{i:0;a:2:{s:2:\"id\";s:3:\"400\";s:4:\"name\";s:10:\"Normal 400\";}i:1;a:2:{s:2:\"id\";s:9:\"400italic\";s:4:\"name\";s:17:\"Normal 400 Italic\";}}s:7:\"subsets\";a:1:{i:0;a:2:{s:2:\"id\";s:5:\"latin\";s:4:\"name\";s:5:\"Latin\";}}}s:7:\"Arbutus\";a:2:{s:8:\"variants\";a:1:{i:0;a:2:{s:2:\"id\";s:3:\"400\";s:4:\"name\";s:10:\"Normal 400\";}}s:7:\"subsets\";a:2:{i:0;a:2:{s:2:\"id\";s:9:\"latin-ext\";s:4:\"name\";s:14:\"Latin Extended\";}i:1;a:2:{s:2:\"id\";s:5:\"latin\";s:4:\"name\";s:5:\"Latin\";}}}s:12:\"Arbutus Slab\";a:2:{s:8:\"variants\";a:1:{i:0;a:2:{s:2:\"id\";s:3:\"400\";s:4:\"name\";s:10:\"Normal 400\";}}s:7:\"subsets\";a:2:{i:0;a:2:{s:2:\"id\";s:9:\"latin-ext\";s:4:\"name\";s:14:\"Latin Extended\";}i:1;a:2:{s:2:\"id\";s:5:\"latin\";s:4:\"name\";s:5:\"Latin\";}}}s:19:\"Architects Daughter\";a:2:{s:8:\"variants\";a:1:{i:0;a:2:{s:2:\"id\";s:3:\"400\";s:4:\"name\";s:10:\"Normal 400\";}}s:7:\"subsets\";a:1:{i:0;a:2:{s:2:\"id\";s:5:\"latin\";s:4:\"name\";s:5:\"Latin\";}}}s:13:\"Archivo Black\";a:2:{s:8:\"variants\";a:1:{i:0;a:2:{s:2:\"id\";s:3:\"400\";s:4:\"name\";s:10:\"Normal 400\";}}s:7:\"subsets\";a:2:{i:0;a:2:{s:2:\"id\";s:9:\"latin-ext\";s:4:\"name\";s:14:\"Latin Extended\";}i:1;a:2:{s:2:\"id\";s:5:\"latin\";s:4:\"name\";s:5:\"Latin\";}}}s:14:\"Archivo Narrow\";a:2:{s:8:\"variants\";a:4:{i:0;a:2:{s:2:\"id\";s:3:\"400\";s:4:\"name\";s:10:\"Normal 400\";}i:1;a:2:{s:2:\"id\";s:9:\"400italic\";s:4:\"name\";s:17:\"Normal 400 Italic\";}i:2;a:2:{s:2:\"id\";s:3:\"700\";s:4:\"name\";s:8:\"Bold 700\";}i:3;a:2:{s:2:\"id\";s:9:\"700italic\";s:4:\"name\";s:15:\"Bold 700 Italic\";}}s:7:\"subsets\";a:2:{i:0;a:2:{s:2:\"id\";s:9:\"latin-ext\";s:4:\"name\";s:14:\"Latin Extended\";}i:1;a:2:{s:2:\"id\";s:5:\"latin\";s:4:\"name\";s:5:\"Latin\";}}}s:5:\"Arimo\";a:2:{s:8:\"variants\";a:4:{i:0;a:2:{s:2:\"id\";s:3:\"400\";s:4:\"name\";s:10:\"Normal 400\";}i:1;a:2:{s:2:\"id\";s:9:\"400italic\";s:4:\"name\";s:17:\"Normal 400 Italic\";}i:2;a:2:{s:2:\"id\";s:3:\"700\";s:4:\"name\";s:8:\"Bold 700\";}i:3;a:2:{s:2:\"id\";s:9:\"700italic\";s:4:\"name\";s:15:\"Bold 700 Italic\";}}s:7:\"subsets\";a:8:{i:0;a:2:{s:2:\"id\";s:12:\"cyrillic-ext\";s:4:\"name\";s:17:\"Cyrillic Extended\";}i:1;a:2:{s:2:\"id\";s:9:\"latin-ext\";s:4:\"name\";s:14:\"Latin Extended\";}i:2;a:2:{s:2:\"id\";s:10:\"vietnamese\";s:4:\"name\";s:10:\"Vietnamese\";}i:3;a:2:{s:2:\"id\";s:9:\"greek-ext\";s:4:\"name\";s:14:\"Greek Extended\";}i:4;a:2:{s:2:\"id\";s:8:\"cyrillic\";s:4:\"name\";s:8:\"Cyrillic\";}i:5;a:2:{s:2:\"id\";s:5:\"latin\";s:4:\"name\";s:5:\"Latin\";}i:6;a:2:{s:2:\"id\";s:6:\"hebrew\";s:4:\"name\";s:6:\"Hebrew\";}i:7;a:2:{s:2:\"id\";s:5:\"greek\";s:4:\"name\";s:5:\"Greek\";}}}s:8:\"Arizonia\";a:2:{s:8:\"variants\";a:1:{i:0;a:2:{s:2:\"id\";s:3:\"400\";s:4:\"name\";s:10:\"Normal 400\";}}s:7:\"subsets\";a:2:{i:0;a:2:{s:2:\"id\";s:9:\"latin-ext\";s:4:\"name\";s:14:\"Latin Extended\";}i:1;a:2:{s:2:\"id\";s:5:\"latin\";s:4:\"name\";s:5:\"Latin\";}}}s:6:\"Armata\";a:2:{s:8:\"variants\";a:1:{i:0;a:2:{s:2:\"id\";s:3:\"400\";s:4:\"name\";s:10:\"Normal 400\";}}s:7:\"subsets\";a:2:{i:0;a:2:{s:2:\"id\";s:9:\"latin-ext\";s:4:\"name\";s:14:\"Latin Extended\";}i:1;a:2:{s:2:\"id\";s:5:\"latin\";s:4:\"name\";s:5:\"Latin\";}}}s:8:\"Artifika\";a:2:{s:8:\"variants\";a:1:{i:0;a:2:{s:2:\"id\";s:3:\"400\";s:4:\"name\";s:10:\"Normal 400\";}}s:7:\"subsets\";a:1:{i:0;a:2:{s:2:\"id\";s:5:\"latin\";s:4:\"name\";s:5:\"Latin\";}}}s:4:\"Arvo\";a:2:{s:8:\"variants\";a:4:{i:0;a:2:{s:2:\"id\";s:3:\"400\";s:4:\"name\";s:10:\"Normal 400\";}i:1;a:2:{s:2:\"id\";s:9:\"400italic\";s:4:\"name\";s:17:\"Normal 400 Italic\";}i:2;a:2:{s:2:\"id\";s:3:\"700\";s:4:\"name\";s:8:\"Bold 700\";}i:3;a:2:{s:2:\"id\";s:9:\"700italic\";s:4:\"name\";s:15:\"Bold 700 Italic\";}}s:7:\"subsets\";a:1:{i:0;a:2:{s:2:\"id\";s:5:\"latin\";s:4:\"name\";s:5:\"Latin\";}}}s:4:\"Arya\";a:2:{s:8:\"variants\";a:2:{i:0;a:2:{s:2:\"id\";s:3:\"400\";s:4:\"name\";s:10:\"Normal 400\";}i:1;a:2:{s:2:\"id\";s:3:\"700\";s:4:\"name\";s:8:\"Bold 700\";}}s:7:\"subsets\";a:3:{i:0;a:2:{s:2:\"id\";s:9:\"latin-ext\";s:4:\"name\";s:14:\"Latin Extended\";}i:1;a:2:{s:2:\"id\";s:5:\"latin\";s:4:\"name\";s:5:\"Latin\";}i:2;a:2:{s:2:\"id\";s:10:\"devanagari\";s:4:\"name\";s:10:\"Devanagari\";}}}s:4:\"Asap\";a:2:{s:8:\"variants\";a:4:{i:0;a:2:{s:2:\"id\";s:3:\"400\";s:4:\"name\";s:10:\"Normal 400\";}i:1;a:2:{s:2:\"id\";s:9:\"400italic\";s:4:\"name\";s:17:\"Normal 400 Italic\";}i:2;a:2:{s:2:\"id\";s:3:\"700\";s:4:\"name\";s:8:\"Bold 700\";}i:3;a:2:{s:2:\"id\";s:9:\"700italic\";s:4:\"name\";s:15:\"Bold 700 Italic\";}}s:7:\"subsets\";a:2:{i:0;a:2:{s:2:\"id\";s:9:\"latin-ext\";s:4:\"name\";s:14:\"Latin Extended\";}i:1;a:2:{s:2:\"id\";s:5:\"latin\";s:4:\"name\";s:5:\"Latin\";}}}s:4:\"Asar\";a:2:{s:8:\"variants\";a:1:{i:0;a:2:{s:2:\"id\";s:3:\"400\";s:4:\"name\";s:10:\"Normal 400\";}}s:7:\"subsets\";a:3:{i:0;a:2:{s:2:\"id\";s:9:\"latin-ext\";s:4:\"name\";s:14:\"Latin Extended\";}i:1;a:2:{s:2:\"id\";s:5:\"latin\";s:4:\"name\";s:5:\"Latin\";}i:2;a:2:{s:2:\"id\";s:10:\"devanagari\";s:4:\"name\";s:10:\"Devanagari\";}}}s:5:\"Asset\";a:2:{s:8:\"variants\";a:1:{i:0;a:2:{s:2:\"id\";s:3:\"400\";s:4:\"name\";s:10:\"Normal 400\";}}s:7:\"subsets\";a:1:{i:0;a:2:{s:2:\"id\";s:5:\"latin\";s:4:\"name\";s:5:\"Latin\";}}}s:7:\"Astloch\";a:2:{s:8:\"variants\";a:2:{i:0;a:2:{s:2:\"id\";s:3:\"400\";s:4:\"name\";s:10:\"Normal 400\";}i:1;a:2:{s:2:\"id\";s:3:\"700\";s:4:\"name\";s:8:\"Bold 700\";}}s:7:\"subsets\";a:1:{i:0;a:2:{s:2:\"id\";s:5:\"latin\";s:4:\"name\";s:5:\"Latin\";}}}s:4:\"Asul\";a:2:{s:8:\"variants\";a:2:{i:0;a:2:{s:2:\"id\";s:3:\"400\";s:4:\"name\";s:10:\"Normal 400\";}i:1;a:2:{s:2:\"id\";s:3:\"700\";s:4:\"name\";s:8:\"Bold 700\";}}s:7:\"subsets\";a:1:{i:0;a:2:{s:2:\"id\";s:5:\"latin\";s:4:\"name\";s:5:\"Latin\";}}}s:10:\"Atomic Age\";a:2:{s:8:\"variants\";a:1:{i:0;a:2:{s:2:\"id\";s:3:\"400\";s:4:\"name\";s:10:\"Normal 400\";}}s:7:\"subsets\";a:1:{i:0;a:2:{s:2:\"id\";s:5:\"latin\";s:4:\"name\";s:5:\"Latin\";}}}s:6:\"Aubrey\";a:2:{s:8:\"variants\";a:1:{i:0;a:2:{s:2:\"id\";s:3:\"400\";s:4:\"name\";s:10:\"Normal 400\";}}s:7:\"subsets\";a:1:{i:0;a:2:{s:2:\"id\";s:5:\"latin\";s:4:\"name\";s:5:\"Latin\";}}}s:9:\"Audiowide\";a:2:{s:8:\"variants\";a:1:{i:0;a:2:{s:2:\"id\";s:3:\"400\";s:4:\"name\";s:10:\"Normal 400\";}}s:7:\"subsets\";a:2:{i:0;a:2:{s:2:\"id\";s:9:\"latin-ext\";s:4:\"name\";s:14:\"Latin Extended\";}i:1;a:2:{s:2:\"id\";s:5:\"latin\";s:4:\"name\";s:5:\"Latin\";}}}s:10:\"Autour One\";a:2:{s:8:\"variants\";a:1:{i:0;a:2:{s:2:\"id\";s:3:\"400\";s:4:\"name\";s:10:\"Normal 400\";}}s:7:\"subsets\";a:2:{i:0;a:2:{s:2:\"id\";s:9:\"latin-ext\";s:4:\"name\";s:14:\"Latin Extended\";}i:1;a:2:{s:2:\"id\";s:5:\"latin\";s:4:\"name\";s:5:\"Latin\";}}}s:7:\"Average\";a:2:{s:8:\"variants\";a:1:{i:0;a:2:{s:2:\"id\";s:3:\"400\";s:4:\"name\";s:10:\"Normal 400\";}}s:7:\"subsets\";a:2:{i:0;a:2:{s:2:\"id\";s:9:\"latin-ext\";s:4:\"name\";s:14:\"Latin Extended\";}i:1;a:2:{s:2:\"id\";s:5:\"latin\";s:4:\"name\";s:5:\"Latin\";}}}s:12:\"Average Sans\";a:2:{s:8:\"variants\";a:1:{i:0;a:2:{s:2:\"id\";s:3:\"400\";s:4:\"name\";s:10:\"Normal 400\";}}s:7:\"subsets\";a:2:{i:0;a:2:{s:2:\"id\";s:9:\"latin-ext\";s:4:\"name\";s:14:\"Latin Extended\";}i:1;a:2:{s:2:\"id\";s:5:\"latin\";s:4:\"name\";s:5:\"Latin\";}}}s:19:\"Averia Gruesa Libre\";a:2:{s:8:\"variants\";a:1:{i:0;a:2:{s:2:\"id\";s:3:\"400\";s:4:\"name\";s:10:\"Normal 400\";}}s:7:\"subsets\";a:2:{i:0;a:2:{s:2:\"id\";s:9:\"latin-ext\";s:4:\"name\";s:14:\"Latin Extended\";}i:1;a:2:{s:2:\"id\";s:5:\"latin\";s:4:\"name\";s:5:\"Latin\";}}}s:12:\"Averia Libre\";a:2:{s:8:\"variants\";a:6:{i:0;a:2:{s:2:\"id\";s:3:\"300\";s:4:\"name\";s:8:\"Book 300\";}i:1;a:2:{s:2:\"id\";s:9:\"300italic\";s:4:\"name\";s:15:\"Book 300 Italic\";}i:2;a:2:{s:2:\"id\";s:3:\"400\";s:4:\"name\";s:10:\"Normal 400\";}i:3;a:2:{s:2:\"id\";s:9:\"400italic\";s:4:\"name\";s:17:\"Normal 400 Italic\";}i:4;a:2:{s:2:\"id\";s:3:\"700\";s:4:\"name\";s:8:\"Bold 700\";}i:5;a:2:{s:2:\"id\";s:9:\"700italic\";s:4:\"name\";s:15:\"Bold 700 Italic\";}}s:7:\"subsets\";a:1:{i:0;a:2:{s:2:\"id\";s:5:\"latin\";s:4:\"name\";s:5:\"Latin\";}}}s:17:\"Averia Sans Libre\";a:2:{s:8:\"variants\";a:6:{i:0;a:2:{s:2:\"id\";s:3:\"300\";s:4:\"name\";s:8:\"Book 300\";}i:1;a:2:{s:2:\"id\";s:9:\"300italic\";s:4:\"name\";s:15:\"Book 300 Italic\";}i:2;a:2:{s:2:\"id\";s:3:\"400\";s:4:\"name\";s:10:\"Normal 400\";}i:3;a:2:{s:2:\"id\";s:9:\"400italic\";s:4:\"name\";s:17:\"Normal 400 Italic\";}i:4;a:2:{s:2:\"id\";s:3:\"700\";s:4:\"name\";s:8:\"Bold 700\";}i:5;a:2:{s:2:\"id\";s:9:\"700italic\";s:4:\"name\";s:15:\"Bold 700 Italic\";}}s:7:\"subsets\";a:1:{i:0;a:2:{s:2:\"id\";s:5:\"latin\";s:4:\"name\";s:5:\"Latin\";}}}s:18:\"Averia Serif Libre\";a:2:{s:8:\"variants\";a:6:{i:0;a:2:{s:2:\"id\";s:3:\"300\";s:4:\"name\";s:8:\"Book 300\";}i:1;a:2:{s:2:\"id\";s:9:\"300italic\";s:4:\"name\";s:15:\"Book 300 Italic\";}i:2;a:2:{s:2:\"id\";s:3:\"400\";s:4:\"name\";s:10:\"Normal 400\";}i:3;a:2:{s:2:\"id\";s:9:\"400italic\";s:4:\"name\";s:17:\"Normal 400 Italic\";}i:4;a:2:{s:2:\"id\";s:3:\"700\";s:4:\"name\";s:8:\"Bold 700\";}i:5;a:2:{s:2:\"id\";s:9:\"700italic\";s:4:\"name\";s:15:\"Bold 700 Italic\";}}s:7:\"subsets\";a:1:{i:0;a:2:{s:2:\"id\";s:5:\"latin\";s:4:\"name\";s:5:\"Latin\";}}}s:10:\"Bad Script\";a:2:{s:8:\"variants\";a:1:{i:0;a:2:{s:2:\"id\";s:3:\"400\";s:4:\"name\";s:10:\"Normal 400\";}}s:7:\"subsets\";a:2:{i:0;a:2:{s:2:\"id\";s:8:\"cyrillic\";s:4:\"name\";s:8:\"Cyrillic\";}i:1;a:2:{s:2:\"id\";s:5:\"latin\";s:4:\"name\";s:5:\"Latin\";}}}s:9:\"Balthazar\";a:2:{s:8:\"variants\";a:1:{i:0;a:2:{s:2:\"id\";s:3:\"400\";s:4:\"name\";s:10:\"Normal 400\";}}s:7:\"subsets\";a:1:{i:0;a:2:{s:2:\"id\";s:5:\"latin\";s:4:\"name\";s:5:\"Latin\";}}}s:7:\"Bangers\";a:2:{s:8:\"variants\";a:1:{i:0;a:2:{s:2:\"id\";s:3:\"400\";s:4:\"name\";s:10:\"Normal 400\";}}s:7:\"subsets\";a:1:{i:0;a:2:{s:2:\"id\";s:5:\"latin\";s:4:\"name\";s:5:\"Latin\";}}}s:5:\"Basic\";a:2:{s:8:\"variants\";a:1:{i:0;a:2:{s:2:\"id\";s:3:\"400\";s:4:\"name\";s:10:\"Normal 400\";}}s:7:\"subsets\";a:2:{i:0;a:2:{s:2:\"id\";s:9:\"latin-ext\";s:4:\"name\";s:14:\"Latin Extended\";}i:1;a:2:{s:2:\"id\";s:5:\"latin\";s:4:\"name\";s:5:\"Latin\";}}}s:10:\"Battambang\";a:2:{s:8:\"variants\";a:2:{i:0;a:2:{s:2:\"id\";s:3:\"400\";s:4:\"name\";s:10:\"Normal 400\";}i:1;a:2:{s:2:\"id\";s:3:\"700\";s:4:\"name\";s:8:\"Bold 700\";}}s:7:\"subsets\";a:1:{i:0;a:2:{s:2:\"id\";s:5:\"khmer\";s:4:\"name\";s:5:\"Khmer\";}}}s:7:\"Baumans\";a:2:{s:8:\"variants\";a:1:{i:0;a:2:{s:2:\"id\";s:3:\"400\";s:4:\"name\";s:10:\"Normal 400\";}}s:7:\"subsets\";a:1:{i:0;a:2:{s:2:\"id\";s:5:\"latin\";s:4:\"name\";s:5:\"Latin\";}}}s:5:\"Bayon\";a:2:{s:8:\"variants\";a:1:{i:0;a:2:{s:2:\"id\";s:3:\"400\";s:4:\"name\";s:10:\"Normal 400\";}}s:7:\"subsets\";a:1:{i:0;a:2:{s:2:\"id\";s:5:\"khmer\";s:4:\"name\";s:5:\"Khmer\";}}}s:8:\"Belgrano\";a:2:{s:8:\"variants\";a:1:{i:0;a:2:{s:2:\"id\";s:3:\"400\";s:4:\"name\";s:10:\"Normal 400\";}}s:7:\"subsets\";a:1:{i:0;a:2:{s:2:\"id\";s:5:\"latin\";s:4:\"name\";s:5:\"Latin\";}}}s:7:\"Belleza\";a:2:{s:8:\"variants\";a:1:{i:0;a:2:{s:2:\"id\";s:3:\"400\";s:4:\"name\";s:10:\"Normal 400\";}}s:7:\"subsets\";a:2:{i:0;a:2:{s:2:\"id\";s:9:\"latin-ext\";s:4:\"name\";s:14:\"Latin Extended\";}i:1;a:2:{s:2:\"id\";s:5:\"latin\";s:4:\"name\";s:5:\"Latin\";}}}s:9:\"BenchNine\";a:2:{s:8:\"variants\";a:3:{i:0;a:2:{s:2:\"id\";s:3:\"300\";s:4:\"name\";s:8:\"Book 300\";}i:1;a:2:{s:2:\"id\";s:3:\"400\";s:4:\"name\";s:10:\"Normal 400\";}i:2;a:2:{s:2:\"id\";s:3:\"700\";s:4:\"name\";s:8:\"Bold 700\";}}s:7:\"subsets\";a:2:{i:0;a:2:{s:2:\"id\";s:9:\"latin-ext\";s:4:\"name\";s:14:\"Latin Extended\";}i:1;a:2:{s:2:\"id\";s:5:\"latin\";s:4:\"name\";s:5:\"Latin\";}}}s:7:\"Bentham\";a:2:{s:8:\"variants\";a:1:{i:0;a:2:{s:2:\"id\";s:3:\"400\";s:4:\"name\";s:10:\"Normal 400\";}}s:7:\"subsets\";a:1:{i:0;a:2:{s:2:\"id\";s:5:\"latin\";s:4:\"name\";s:5:\"Latin\";}}}s:15:\"Berkshire Swash\";a:2:{s:8:\"variants\";a:1:{i:0;a:2:{s:2:\"id\";s:3:\"400\";s:4:\"name\";s:10:\"Normal 400\";}}s:7:\"subsets\";a:2:{i:0;a:2:{s:2:\"id\";s:9:\"latin-ext\";s:4:\"name\";s:14:\"Latin Extended\";}i:1;a:2:{s:2:\"id\";s:5:\"latin\";s:4:\"name\";s:5:\"Latin\";}}}s:5:\"Bevan\";a:2:{s:8:\"variants\";a:1:{i:0;a:2:{s:2:\"id\";s:3:\"400\";s:4:\"name\";s:10:\"Normal 400\";}}s:7:\"subsets\";a:1:{i:0;a:2:{s:2:\"id\";s:5:\"latin\";s:4:\"name\";s:5:\"Latin\";}}}s:13:\"Bigelow Rules\";a:2:{s:8:\"variants\";a:1:{i:0;a:2:{s:2:\"id\";s:3:\"400\";s:4:\"name\";s:10:\"Normal 400\";}}s:7:\"subsets\";a:2:{i:0;a:2:{s:2:\"id\";s:9:\"latin-ext\";s:4:\"name\";s:14:\"Latin Extended\";}i:1;a:2:{s:2:\"id\";s:5:\"latin\";s:4:\"name\";s:5:\"Latin\";}}}s:11:\"Bigshot One\";a:2:{s:8:\"variants\";a:1:{i:0;a:2:{s:2:\"id\";s:3:\"400\";s:4:\"name\";s:10:\"Normal 400\";}}s:7:\"subsets\";a:1:{i:0;a:2:{s:2:\"id\";s:5:\"latin\";s:4:\"name\";s:5:\"Latin\";}}}s:5:\"Bilbo\";a:2:{s:8:\"variants\";a:1:{i:0;a:2:{s:2:\"id\";s:3:\"400\";s:4:\"name\";s:10:\"Normal 400\";}}s:7:\"subsets\";a:2:{i:0;a:2:{s:2:\"id\";s:9:\"latin-ext\";s:4:\"name\";s:14:\"Latin Extended\";}i:1;a:2:{s:2:\"id\";s:5:\"latin\";s:4:\"name\";s:5:\"Latin\";}}}s:16:\"Bilbo Swash Caps\";a:2:{s:8:\"variants\";a:1:{i:0;a:2:{s:2:\"id\";s:3:\"400\";s:4:\"name\";s:10:\"Normal 400\";}}s:7:\"subsets\";a:2:{i:0;a:2:{s:2:\"id\";s:9:\"latin-ext\";s:4:\"name\";s:14:\"Latin Extended\";}i:1;a:2:{s:2:\"id\";s:5:\"latin\";s:4:\"name\";s:5:\"Latin\";}}}s:7:\"Biryani\";a:2:{s:8:\"variants\";a:7:{i:0;a:2:{s:2:\"id\";s:3:\"200\";s:4:\"name\";s:9:\"Light 200\";}i:1;a:2:{s:2:\"id\";s:3:\"300\";s:4:\"name\";s:8:\"Book 300\";}i:2;a:2:{s:2:\"id\";s:3:\"400\";s:4:\"name\";s:10:\"Normal 400\";}i:3;a:2:{s:2:\"id\";s:3:\"600\";s:4:\"name\";s:13:\"Semi-Bold 600\";}i:4;a:2:{s:2:\"id\";s:3:\"700\";s:4:\"name\";s:8:\"Bold 700\";}i:5;a:2:{s:2:\"id\";s:3:\"800\";s:4:\"name\";s:14:\"Extra-Bold 800\";}i:6;a:2:{s:2:\"id\";s:3:\"900\";s:4:\"name\";s:14:\"Ultra-Bold 900\";}}s:7:\"subsets\";a:3:{i:0;a:2:{s:2:\"id\";s:9:\"latin-ext\";s:4:\"name\";s:14:\"Latin Extended\";}i:1;a:2:{s:2:\"id\";s:5:\"latin\";s:4:\"name\";s:5:\"Latin\";}i:2;a:2:{s:2:\"id\";s:10:\"devanagari\";s:4:\"name\";s:10:\"Devanagari\";}}}s:6:\"Bitter\";a:2:{s:8:\"variants\";a:3:{i:0;a:2:{s:2:\"id\";s:3:\"400\";s:4:\"name\";s:10:\"Normal 400\";}i:1;a:2:{s:2:\"id\";s:9:\"400italic\";s:4:\"name\";s:17:\"Normal 400 Italic\";}i:2;a:2:{s:2:\"id\";s:3:\"700\";s:4:\"name\";s:8:\"Bold 700\";}}s:7:\"subsets\";a:2:{i:0;a:2:{s:2:\"id\";s:9:\"latin-ext\";s:4:\"name\";s:14:\"Latin Extended\";}i:1;a:2:{s:2:\"id\";s:5:\"latin\";s:4:\"name\";s:5:\"Latin\";}}}s:13:\"Black Ops One\";a:2:{s:8:\"variants\";a:1:{i:0;a:2:{s:2:\"id\";s:3:\"400\";s:4:\"name\";s:10:\"Normal 400\";}}s:7:\"subsets\";a:2:{i:0;a:2:{s:2:\"id\";s:9:\"latin-ext\";s:4:\"name\";s:14:\"Latin Extended\";}i:1;a:2:{s:2:\"id\";s:5:\"latin\";s:4:\"name\";s:5:\"Latin\";}}}s:5:\"Bokor\";a:2:{s:8:\"variants\";a:1:{i:0;a:2:{s:2:\"id\";s:3:\"400\";s:4:\"name\";s:10:\"Normal 400\";}}s:7:\"subsets\";a:1:{i:0;a:2:{s:2:\"id\";s:5:\"khmer\";s:4:\"name\";s:5:\"Khmer\";}}}s:6:\"Bonbon\";a:2:{s:8:\"variants\";a:1:{i:0;a:2:{s:2:\"id\";s:3:\"400\";s:4:\"name\";s:10:\"Normal 400\";}}s:7:\"subsets\";a:1:{i:0;a:2:{s:2:\"id\";s:5:\"latin\";s:4:\"name\";s:5:\"Latin\";}}}s:8:\"Boogaloo\";a:2:{s:8:\"variants\";a:1:{i:0;a:2:{s:2:\"id\";s:3:\"400\";s:4:\"name\";s:10:\"Normal 400\";}}s:7:\"subsets\";a:1:{i:0;a:2:{s:2:\"id\";s:5:\"latin\";s:4:\"name\";s:5:\"Latin\";}}}s:10:\"Bowlby One\";a:2:{s:8:\"variants\";a:1:{i:0;a:2:{s:2:\"id\";s:3:\"400\";s:4:\"name\";s:10:\"Normal 400\";}}s:7:\"subsets\";a:1:{i:0;a:2:{s:2:\"id\";s:5:\"latin\";s:4:\"name\";s:5:\"Latin\";}}}s:13:\"Bowlby One SC\";a:2:{s:8:\"variants\";a:1:{i:0;a:2:{s:2:\"id\";s:3:\"400\";s:4:\"name\";s:10:\"Normal 400\";}}s:7:\"subsets\";a:2:{i:0;a:2:{s:2:\"id\";s:9:\"latin-ext\";s:4:\"name\";s:14:\"Latin Extended\";}i:1;a:2:{s:2:\"id\";s:5:\"latin\";s:4:\"name\";s:5:\"Latin\";}}}s:7:\"Brawler\";a:2:{s:8:\"variants\";a:1:{i:0;a:2:{s:2:\"id\";s:3:\"400\";s:4:\"name\";s:10:\"Normal 400\";}}s:7:\"subsets\";a:1:{i:0;a:2:{s:2:\"id\";s:5:\"latin\";s:4:\"name\";s:5:\"Latin\";}}}s:10:\"Bree Serif\";a:2:{s:8:\"variants\";a:1:{i:0;a:2:{s:2:\"id\";s:3:\"400\";s:4:\"name\";s:10:\"Normal 400\";}}s:7:\"subsets\";a:2:{i:0;a:2:{s:2:\"id\";s:9:\"latin-ext\";s:4:\"name\";s:14:\"Latin Extended\";}i:1;a:2:{s:2:\"id\";s:5:\"latin\";s:4:\"name\";s:5:\"Latin\";}}}s:14:\"Bubblegum Sans\";a:2:{s:8:\"variants\";a:1:{i:0;a:2:{s:2:\"id\";s:3:\"400\";s:4:\"name\";s:10:\"Normal 400\";}}s:7:\"subsets\";a:2:{i:0;a:2:{s:2:\"id\";s:9:\"latin-ext\";s:4:\"name\";s:14:\"Latin Extended\";}i:1;a:2:{s:2:\"id\";s:5:\"latin\";s:4:\"name\";s:5:\"Latin\";}}}s:11:\"Bubbler One\";a:2:{s:8:\"variants\";a:1:{i:0;a:2:{s:2:\"id\";s:3:\"400\";s:4:\"name\";s:10:\"Normal 400\";}}s:7:\"subsets\";a:2:{i:0;a:2:{s:2:\"id\";s:9:\"latin-ext\";s:4:\"name\";s:14:\"Latin Extended\";}i:1;a:2:{s:2:\"id\";s:5:\"latin\";s:4:\"name\";s:5:\"Latin\";}}}s:4:\"Buda\";a:2:{s:8:\"variants\";a:1:{i:0;a:2:{s:2:\"id\";s:3:\"300\";s:4:\"name\";s:8:\"Book 300\";}}s:7:\"subsets\";a:1:{i:0;a:2:{s:2:\"id\";s:5:\"latin\";s:4:\"name\";s:5:\"Latin\";}}}s:7:\"Buenard\";a:2:{s:8:\"variants\";a:2:{i:0;a:2:{s:2:\"id\";s:3:\"400\";s:4:\"name\";s:10:\"Normal 400\";}i:1;a:2:{s:2:\"id\";s:3:\"700\";s:4:\"name\";s:8:\"Bold 700\";}}s:7:\"subsets\";a:2:{i:0;a:2:{s:2:\"id\";s:9:\"latin-ext\";s:4:\"name\";s:14:\"Latin Extended\";}i:1;a:2:{s:2:\"id\";s:5:\"latin\";s:4:\"name\";s:5:\"Latin\";}}}s:10:\"Butcherman\";a:2:{s:8:\"variants\";a:1:{i:0;a:2:{s:2:\"id\";s:3:\"400\";s:4:\"name\";s:10:\"Normal 400\";}}s:7:\"subsets\";a:2:{i:0;a:2:{s:2:\"id\";s:9:\"latin-ext\";s:4:\"name\";s:14:\"Latin Extended\";}i:1;a:2:{s:2:\"id\";s:5:\"latin\";s:4:\"name\";s:5:\"Latin\";}}}s:14:\"Butterfly Kids\";a:2:{s:8:\"variants\";a:1:{i:0;a:2:{s:2:\"id\";s:3:\"400\";s:4:\"name\";s:10:\"Normal 400\";}}s:7:\"subsets\";a:2:{i:0;a:2:{s:2:\"id\";s:9:\"latin-ext\";s:4:\"name\";s:14:\"Latin Extended\";}i:1;a:2:{s:2:\"id\";s:5:\"latin\";s:4:\"name\";s:5:\"Latin\";}}}s:5:\"Cabin\";a:2:{s:8:\"variants\";a:8:{i:0;a:2:{s:2:\"id\";s:3:\"400\";s:4:\"name\";s:10:\"Normal 400\";}i:1;a:2:{s:2:\"id\";s:9:\"400italic\";s:4:\"name\";s:17:\"Normal 400 Italic\";}i:2;a:2:{s:2:\"id\";s:3:\"500\";s:4:\"name\";s:10:\"Medium 500\";}i:3;a:2:{s:2:\"id\";s:9:\"500italic\";s:4:\"name\";s:17:\"Medium 500 Italic\";}i:4;a:2:{s:2:\"id\";s:3:\"600\";s:4:\"name\";s:13:\"Semi-Bold 600\";}i:5;a:2:{s:2:\"id\";s:9:\"600italic\";s:4:\"name\";s:20:\"Semi-Bold 600 Italic\";}i:6;a:2:{s:2:\"id\";s:3:\"700\";s:4:\"name\";s:8:\"Bold 700\";}i:7;a:2:{s:2:\"id\";s:9:\"700italic\";s:4:\"name\";s:15:\"Bold 700 Italic\";}}s:7:\"subsets\";a:1:{i:0;a:2:{s:2:\"id\";s:5:\"latin\";s:4:\"name\";s:5:\"Latin\";}}}s:15:\"Cabin Condensed\";a:2:{s:8:\"variants\";a:4:{i:0;a:2:{s:2:\"id\";s:3:\"400\";s:4:\"name\";s:10:\"Normal 400\";}i:1;a:2:{s:2:\"id\";s:3:\"500\";s:4:\"name\";s:10:\"Medium 500\";}i:2;a:2:{s:2:\"id\";s:3:\"600\";s:4:\"name\";s:13:\"Semi-Bold 600\";}i:3;a:2:{s:2:\"id\";s:3:\"700\";s:4:\"name\";s:8:\"Bold 700\";}}s:7:\"subsets\";a:1:{i:0;a:2:{s:2:\"id\";s:5:\"latin\";s:4:\"name\";s:5:\"Latin\";}}}s:12:\"Cabin Sketch\";a:2:{s:8:\"variants\";a:2:{i:0;a:2:{s:2:\"id\";s:3:\"400\";s:4:\"name\";s:10:\"Normal 400\";}i:1;a:2:{s:2:\"id\";s:3:\"700\";s:4:\"name\";s:8:\"Bold 700\";}}s:7:\"subsets\";a:1:{i:0;a:2:{s:2:\"id\";s:5:\"latin\";s:4:\"name\";s:5:\"Latin\";}}}s:15:\"Caesar Dressing\";a:2:{s:8:\"variants\";a:1:{i:0;a:2:{s:2:\"id\";s:3:\"400\";s:4:\"name\";s:10:\"Normal 400\";}}s:7:\"subsets\";a:1:{i:0;a:2:{s:2:\"id\";s:5:\"latin\";s:4:\"name\";s:5:\"Latin\";}}}s:10:\"Cagliostro\";a:2:{s:8:\"variants\";a:1:{i:0;a:2:{s:2:\"id\";s:3:\"400\";s:4:\"name\";s:10:\"Normal 400\";}}s:7:\"subsets\";a:1:{i:0;a:2:{s:2:\"id\";s:5:\"latin\";s:4:\"name\";s:5:\"Latin\";}}}s:14:\"Calligraffitti\";a:2:{s:8:\"variants\";a:1:{i:0;a:2:{s:2:\"id\";s:3:\"400\";s:4:\"name\";s:10:\"Normal 400\";}}s:7:\"subsets\";a:1:{i:0;a:2:{s:2:\"id\";s:5:\"latin\";s:4:\"name\";s:5:\"Latin\";}}}s:6:\"Cambay\";a:2:{s:8:\"variants\";a:4:{i:0;a:2:{s:2:\"id\";s:3:\"400\";s:4:\"name\";s:10:\"Normal 400\";}i:1;a:2:{s:2:\"id\";s:9:\"400italic\";s:4:\"name\";s:17:\"Normal 400 Italic\";}i:2;a:2:{s:2:\"id\";s:3:\"700\";s:4:\"name\";s:8:\"Bold 700\";}i:3;a:2:{s:2:\"id\";s:9:\"700italic\";s:4:\"name\";s:15:\"Bold 700 Italic\";}}s:7:\"subsets\";a:3:{i:0;a:2:{s:2:\"id\";s:9:\"latin-ext\";s:4:\"name\";s:14:\"Latin Extended\";}i:1;a:2:{s:2:\"id\";s:5:\"latin\";s:4:\"name\";s:5:\"Latin\";}i:2;a:2:{s:2:\"id\";s:10:\"devanagari\";s:4:\"name\";s:10:\"Devanagari\";}}}s:5:\"Cambo\";a:2:{s:8:\"variants\";a:1:{i:0;a:2:{s:2:\"id\";s:3:\"400\";s:4:\"name\";s:10:\"Normal 400\";}}s:7:\"subsets\";a:1:{i:0;a:2:{s:2:\"id\";s:5:\"latin\";s:4:\"name\";s:5:\"Latin\";}}}s:6:\"Candal\";a:2:{s:8:\"variants\";a:1:{i:0;a:2:{s:2:\"id\";s:3:\"400\";s:4:\"name\";s:10:\"Normal 400\";}}s:7:\"subsets\";a:1:{i:0;a:2:{s:2:\"id\";s:5:\"latin\";s:4:\"name\";s:5:\"Latin\";}}}s:9:\"Cantarell\";a:2:{s:8:\"variants\";a:4:{i:0;a:2:{s:2:\"id\";s:3:\"400\";s:4:\"name\";s:10:\"Normal 400\";}i:1;a:2:{s:2:\"id\";s:9:\"400italic\";s:4:\"name\";s:17:\"Normal 400 Italic\";}i:2;a:2:{s:2:\"id\";s:3:\"700\";s:4:\"name\";s:8:\"Bold 700\";}i:3;a:2:{s:2:\"id\";s:9:\"700italic\";s:4:\"name\";s:15:\"Bold 700 Italic\";}}s:7:\"subsets\";a:1:{i:0;a:2:{s:2:\"id\";s:5:\"latin\";s:4:\"name\";s:5:\"Latin\";}}}s:11:\"Cantata One\";a:2:{s:8:\"variants\";a:1:{i:0;a:2:{s:2:\"id\";s:3:\"400\";s:4:\"name\";s:10:\"Normal 400\";}}s:7:\"subsets\";a:2:{i:0;a:2:{s:2:\"id\";s:9:\"latin-ext\";s:4:\"name\";s:14:\"Latin Extended\";}i:1;a:2:{s:2:\"id\";s:5:\"latin\";s:4:\"name\";s:5:\"Latin\";}}}s:11:\"Cantora One\";a:2:{s:8:\"variants\";a:1:{i:0;a:2:{s:2:\"id\";s:3:\"400\";s:4:\"name\";s:10:\"Normal 400\";}}s:7:\"subsets\";a:2:{i:0;a:2:{s:2:\"id\";s:9:\"latin-ext\";s:4:\"name\";s:14:\"Latin Extended\";}i:1;a:2:{s:2:\"id\";s:5:\"latin\";s:4:\"name\";s:5:\"Latin\";}}}s:8:\"Capriola\";a:2:{s:8:\"variants\";a:1:{i:0;a:2:{s:2:\"id\";s:3:\"400\";s:4:\"name\";s:10:\"Normal 400\";}}s:7:\"subsets\";a:2:{i:0;a:2:{s:2:\"id\";s:9:\"latin-ext\";s:4:\"name\";s:14:\"Latin Extended\";}i:1;a:2:{s:2:\"id\";s:5:\"latin\";s:4:\"name\";s:5:\"Latin\";}}}s:5:\"Cardo\";a:2:{s:8:\"variants\";a:3:{i:0;a:2:{s:2:\"id\";s:3:\"400\";s:4:\"name\";s:10:\"Normal 400\";}i:1;a:2:{s:2:\"id\";s:9:\"400italic\";s:4:\"name\";s:17:\"Normal 400 Italic\";}i:2;a:2:{s:2:\"id\";s:3:\"700\";s:4:\"name\";s:8:\"Bold 700\";}}s:7:\"subsets\";a:4:{i:0;a:2:{s:2:\"id\";s:9:\"latin-ext\";s:4:\"name\";s:14:\"Latin Extended\";}i:1;a:2:{s:2:\"id\";s:9:\"greek-ext\";s:4:\"name\";s:14:\"Greek Extended\";}i:2;a:2:{s:2:\"id\";s:5:\"latin\";s:4:\"name\";s:5:\"Latin\";}i:3;a:2:{s:2:\"id\";s:5:\"greek\";s:4:\"name\";s:5:\"Greek\";}}}s:5:\"Carme\";a:2:{s:8:\"variants\";a:1:{i:0;a:2:{s:2:\"id\";s:3:\"400\";s:4:\"name\";s:10:\"Normal 400\";}}s:7:\"subsets\";a:1:{i:0;a:2:{s:2:\"id\";s:5:\"latin\";s:4:\"name\";s:5:\"Latin\";}}}s:14:\"Carrois Gothic\";a:2:{s:8:\"variants\";a:1:{i:0;a:2:{s:2:\"id\";s:3:\"400\";s:4:\"name\";s:10:\"Normal 400\";}}s:7:\"subsets\";a:1:{i:0;a:2:{s:2:\"id\";s:5:\"latin\";s:4:\"name\";s:5:\"Latin\";}}}s:17:\"Carrois Gothic SC\";a:2:{s:8:\"variants\";a:1:{i:0;a:2:{s:2:\"id\";s:3:\"400\";s:4:\"name\";s:10:\"Normal 400\";}}s:7:\"subsets\";a:1:{i:0;a:2:{s:2:\"id\";s:5:\"latin\";s:4:\"name\";s:5:\"Latin\";}}}s:10:\"Carter One\";a:2:{s:8:\"variants\";a:1:{i:0;a:2:{s:2:\"id\";s:3:\"400\";s:4:\"name\";s:10:\"Normal 400\";}}s:7:\"subsets\";a:1:{i:0;a:2:{s:2:\"id\";s:5:\"latin\";s:4:\"name\";s:5:\"Latin\";}}}s:9:\"Catamaran\";a:2:{s:8:\"variants\";a:9:{i:0;a:2:{s:2:\"id\";s:3:\"100\";s:4:\"name\";s:15:\"Ultra-Light 100\";}i:1;a:2:{s:2:\"id\";s:3:\"200\";s:4:\"name\";s:9:\"Light 200\";}i:2;a:2:{s:2:\"id\";s:3:\"300\";s:4:\"name\";s:8:\"Book 300\";}i:3;a:2:{s:2:\"id\";s:3:\"400\";s:4:\"name\";s:10:\"Normal 400\";}i:4;a:2:{s:2:\"id\";s:3:\"500\";s:4:\"name\";s:10:\"Medium 500\";}i:5;a:2:{s:2:\"id\";s:3:\"600\";s:4:\"name\";s:13:\"Semi-Bold 600\";}i:6;a:2:{s:2:\"id\";s:3:\"700\";s:4:\"name\";s:8:\"Bold 700\";}i:7;a:2:{s:2:\"id\";s:3:\"800\";s:4:\"name\";s:14:\"Extra-Bold 800\";}i:8;a:2:{s:2:\"id\";s:3:\"900\";s:4:\"name\";s:14:\"Ultra-Bold 900\";}}s:7:\"subsets\";a:3:{i:0;a:2:{s:2:\"id\";s:5:\"tamil\";s:4:\"name\";s:5:\"Tamil\";}i:1;a:2:{s:2:\"id\";s:9:\"latin-ext\";s:4:\"name\";s:14:\"Latin Extended\";}i:2;a:2:{s:2:\"id\";s:5:\"latin\";s:4:\"name\";s:5:\"Latin\";}}}s:6:\"Caudex\";a:2:{s:8:\"variants\";a:4:{i:0;a:2:{s:2:\"id\";s:3:\"400\";s:4:\"name\";s:10:\"Normal 400\";}i:1;a:2:{s:2:\"id\";s:9:\"400italic\";s:4:\"name\";s:17:\"Normal 400 Italic\";}i:2;a:2:{s:2:\"id\";s:3:\"700\";s:4:\"name\";s:8:\"Bold 700\";}i:3;a:2:{s:2:\"id\";s:9:\"700italic\";s:4:\"name\";s:15:\"Bold 700 Italic\";}}s:7:\"subsets\";a:4:{i:0;a:2:{s:2:\"id\";s:9:\"latin-ext\";s:4:\"name\";s:14:\"Latin Extended\";}i:1;a:2:{s:2:\"id\";s:9:\"greek-ext\";s:4:\"name\";s:14:\"Greek Extended\";}i:2;a:2:{s:2:\"id\";s:5:\"latin\";s:4:\"name\";s:5:\"Latin\";}i:3;a:2:{s:2:\"id\";s:5:\"greek\";s:4:\"name\";s:5:\"Greek\";}}}s:6:\"Caveat\";a:2:{s:8:\"variants\";a:2:{i:0;a:2:{s:2:\"id\";s:3:\"400\";s:4:\"name\";s:10:\"Normal 400\";}i:1;a:2:{s:2:\"id\";s:3:\"700\";s:4:\"name\";s:8:\"Bold 700\";}}s:7:\"subsets\";a:2:{i:0;a:2:{s:2:\"id\";s:9:\"latin-ext\";s:4:\"name\";s:14:\"Latin Extended\";}i:1;a:2:{s:2:\"id\";s:5:\"latin\";s:4:\"name\";s:5:\"Latin\";}}}s:12:\"Caveat Brush\";a:2:{s:8:\"variants\";a:1:{i:0;a:2:{s:2:\"id\";s:3:\"400\";s:4:\"name\";s:10:\"Normal 400\";}}s:7:\"subsets\";a:2:{i:0;a:2:{s:2:\"id\";s:9:\"latin-ext\";s:4:\"name\";s:14:\"Latin Extended\";}i:1;a:2:{s:2:\"id\";s:5:\"latin\";s:4:\"name\";s:5:\"Latin\";}}}s:18:\"Cedarville Cursive\";a:2:{s:8:\"variants\";a:1:{i:0;a:2:{s:2:\"id\";s:3:\"400\";s:4:\"name\";s:10:\"Normal 400\";}}s:7:\"subsets\";a:1:{i:0;a:2:{s:2:\"id\";s:5:\"latin\";s:4:\"name\";s:5:\"Latin\";}}}s:11:\"Ceviche One\";a:2:{s:8:\"variants\";a:1:{i:0;a:2:{s:2:\"id\";s:3:\"400\";s:4:\"name\";s:10:\"Normal 400\";}}s:7:\"subsets\";a:2:{i:0;a:2:{s:2:\"id\";s:9:\"latin-ext\";s:4:\"name\";s:14:\"Latin Extended\";}i:1;a:2:{s:2:\"id\";s:5:\"latin\";s:4:\"name\";s:5:\"Latin\";}}}s:10:\"Changa One\";a:2:{s:8:\"variants\";a:2:{i:0;a:2:{s:2:\"id\";s:3:\"400\";s:4:\"name\";s:10:\"Normal 400\";}i:1;a:2:{s:2:\"id\";s:9:\"400italic\";s:4:\"name\";s:17:\"Normal 400 Italic\";}}s:7:\"subsets\";a:1:{i:0;a:2:{s:2:\"id\";s:5:\"latin\";s:4:\"name\";s:5:\"Latin\";}}}s:6:\"Chango\";a:2:{s:8:\"variants\";a:1:{i:0;a:2:{s:2:\"id\";s:3:\"400\";s:4:\"name\";s:10:\"Normal 400\";}}s:7:\"subsets\";a:2:{i:0;a:2:{s:2:\"id\";s:9:\"latin-ext\";s:4:\"name\";s:14:\"Latin Extended\";}i:1;a:2:{s:2:\"id\";s:5:\"latin\";s:4:\"name\";s:5:\"Latin\";}}}s:18:\"Chau Philomene One\";a:2:{s:8:\"variants\";a:2:{i:0;a:2:{s:2:\"id\";s:3:\"400\";s:4:\"name\";s:10:\"Normal 400\";}i:1;a:2:{s:2:\"id\";s:9:\"400italic\";s:4:\"name\";s:17:\"Normal 400 Italic\";}}s:7:\"subsets\";a:2:{i:0;a:2:{s:2:\"id\";s:9:\"latin-ext\";s:4:\"name\";s:14:\"Latin Extended\";}i:1;a:2:{s:2:\"id\";s:5:\"latin\";s:4:\"name\";s:5:\"Latin\";}}}s:9:\"Chela One\";a:2:{s:8:\"variants\";a:1:{i:0;a:2:{s:2:\"id\";s:3:\"400\";s:4:\"name\";s:10:\"Normal 400\";}}s:7:\"subsets\";a:2:{i:0;a:2:{s:2:\"id\";s:9:\"latin-ext\";s:4:\"name\";s:14:\"Latin Extended\";}i:1;a:2:{s:2:\"id\";s:5:\"latin\";s:4:\"name\";s:5:\"Latin\";}}}s:14:\"Chelsea Market\";a:2:{s:8:\"variants\";a:1:{i:0;a:2:{s:2:\"id\";s:3:\"400\";s:4:\"name\";s:10:\"Normal 400\";}}s:7:\"subsets\";a:2:{i:0;a:2:{s:2:\"id\";s:9:\"latin-ext\";s:4:\"name\";s:14:\"Latin Extended\";}i:1;a:2:{s:2:\"id\";s:5:\"latin\";s:4:\"name\";s:5:\"Latin\";}}}s:6:\"Chenla\";a:2:{s:8:\"variants\";a:1:{i:0;a:2:{s:2:\"id\";s:3:\"400\";s:4:\"name\";s:10:\"Normal 400\";}}s:7:\"subsets\";a:1:{i:0;a:2:{s:2:\"id\";s:5:\"khmer\";s:4:\"name\";s:5:\"Khmer\";}}}s:17:\"Cherry Cream Soda\";a:2:{s:8:\"variants\";a:1:{i:0;a:2:{s:2:\"id\";s:3:\"400\";s:4:\"name\";s:10:\"Normal 400\";}}s:7:\"subsets\";a:1:{i:0;a:2:{s:2:\"id\";s:5:\"latin\";s:4:\"name\";s:5:\"Latin\";}}}s:12:\"Cherry Swash\";a:2:{s:8:\"variants\";a:2:{i:0;a:2:{s:2:\"id\";s:3:\"400\";s:4:\"name\";s:10:\"Normal 400\";}i:1;a:2:{s:2:\"id\";s:3:\"700\";s:4:\"name\";s:8:\"Bold 700\";}}s:7:\"subsets\";a:2:{i:0;a:2:{s:2:\"id\";s:9:\"latin-ext\";s:4:\"name\";s:14:\"Latin Extended\";}i:1;a:2:{s:2:\"id\";s:5:\"latin\";s:4:\"name\";s:5:\"Latin\";}}}s:5:\"Chewy\";a:2:{s:8:\"variants\";a:1:{i:0;a:2:{s:2:\"id\";s:3:\"400\";s:4:\"name\";s:10:\"Normal 400\";}}s:7:\"subsets\";a:1:{i:0;a:2:{s:2:\"id\";s:5:\"latin\";s:4:\"name\";s:5:\"Latin\";}}}s:6:\"Chicle\";a:2:{s:8:\"variants\";a:1:{i:0;a:2:{s:2:\"id\";s:3:\"400\";s:4:\"name\";s:10:\"Normal 400\";}}s:7:\"subsets\";a:2:{i:0;a:2:{s:2:\"id\";s:9:\"latin-ext\";s:4:\"name\";s:14:\"Latin Extended\";}i:1;a:2:{s:2:\"id\";s:5:\"latin\";s:4:\"name\";s:5:\"Latin\";}}}s:5:\"Chivo\";a:2:{s:8:\"variants\";a:4:{i:0;a:2:{s:2:\"id\";s:3:\"400\";s:4:\"name\";s:10:\"Normal 400\";}i:1;a:2:{s:2:\"id\";s:9:\"400italic\";s:4:\"name\";s:17:\"Normal 400 Italic\";}i:2;a:2:{s:2:\"id\";s:3:\"900\";s:4:\"name\";s:14:\"Ultra-Bold 900\";}i:3;a:2:{s:2:\"id\";s:9:\"900italic\";s:4:\"name\";s:21:\"Ultra-Bold 900 Italic\";}}s:7:\"subsets\";a:1:{i:0;a:2:{s:2:\"id\";s:5:\"latin\";s:4:\"name\";s:5:\"Latin\";}}}s:8:\"Chonburi\";a:2:{s:8:\"variants\";a:1:{i:0;a:2:{s:2:\"id\";s:3:\"400\";s:4:\"name\";s:10:\"Normal 400\";}}s:7:\"subsets\";a:4:{i:0;a:2:{s:2:\"id\";s:9:\"latin-ext\";s:4:\"name\";s:14:\"Latin Extended\";}i:1;a:2:{s:2:\"id\";s:10:\"vietnamese\";s:4:\"name\";s:10:\"Vietnamese\";}i:2;a:2:{s:2:\"id\";s:4:\"thai\";s:4:\"name\";s:4:\"Thai\";}i:3;a:2:{s:2:\"id\";s:5:\"latin\";s:4:\"name\";s:5:\"Latin\";}}}s:6:\"Cinzel\";a:2:{s:8:\"variants\";a:3:{i:0;a:2:{s:2:\"id\";s:3:\"400\";s:4:\"name\";s:10:\"Normal 400\";}i:1;a:2:{s:2:\"id\";s:3:\"700\";s:4:\"name\";s:8:\"Bold 700\";}i:2;a:2:{s:2:\"id\";s:3:\"900\";s:4:\"name\";s:14:\"Ultra-Bold 900\";}}s:7:\"subsets\";a:1:{i:0;a:2:{s:2:\"id\";s:5:\"latin\";s:4:\"name\";s:5:\"Latin\";}}}s:17:\"Cinzel Decorative\";a:2:{s:8:\"variants\";a:3:{i:0;a:2:{s:2:\"id\";s:3:\"400\";s:4:\"name\";s:10:\"Normal 400\";}i:1;a:2:{s:2:\"id\";s:3:\"700\";s:4:\"name\";s:8:\"Bold 700\";}i:2;a:2:{s:2:\"id\";s:3:\"900\";s:4:\"name\";s:14:\"Ultra-Bold 900\";}}s:7:\"subsets\";a:1:{i:0;a:2:{s:2:\"id\";s:5:\"latin\";s:4:\"name\";s:5:\"Latin\";}}}s:14:\"Clicker Script\";a:2:{s:8:\"variants\";a:1:{i:0;a:2:{s:2:\"id\";s:3:\"400\";s:4:\"name\";s:10:\"Normal 400\";}}s:7:\"subsets\";a:2:{i:0;a:2:{s:2:\"id\";s:9:\"latin-ext\";s:4:\"name\";s:14:\"Latin Extended\";}i:1;a:2:{s:2:\"id\";s:5:\"latin\";s:4:\"name\";s:5:\"Latin\";}}}s:4:\"Coda\";a:2:{s:8:\"variants\";a:2:{i:0;a:2:{s:2:\"id\";s:3:\"400\";s:4:\"name\";s:10:\"Normal 400\";}i:1;a:2:{s:2:\"id\";s:3:\"800\";s:4:\"name\";s:14:\"Extra-Bold 800\";}}s:7:\"subsets\";a:2:{i:0;a:2:{s:2:\"id\";s:9:\"latin-ext\";s:4:\"name\";s:14:\"Latin Extended\";}i:1;a:2:{s:2:\"id\";s:5:\"latin\";s:4:\"name\";s:5:\"Latin\";}}}s:12:\"Coda Caption\";a:2:{s:8:\"variants\";a:1:{i:0;a:2:{s:2:\"id\";s:3:\"800\";s:4:\"name\";s:14:\"Extra-Bold 800\";}}s:7:\"subsets\";a:2:{i:0;a:2:{s:2:\"id\";s:9:\"latin-ext\";s:4:\"name\";s:14:\"Latin Extended\";}i:1;a:2:{s:2:\"id\";s:5:\"latin\";s:4:\"name\";s:5:\"Latin\";}}}s:8:\"Codystar\";a:2:{s:8:\"variants\";a:2:{i:0;a:2:{s:2:\"id\";s:3:\"300\";s:4:\"name\";s:8:\"Book 300\";}i:1;a:2:{s:2:\"id\";s:3:\"400\";s:4:\"name\";s:10:\"Normal 400\";}}s:7:\"subsets\";a:2:{i:0;a:2:{s:2:\"id\";s:9:\"latin-ext\";s:4:\"name\";s:14:\"Latin Extended\";}i:1;a:2:{s:2:\"id\";s:5:\"latin\";s:4:\"name\";s:5:\"Latin\";}}}s:5:\"Combo\";a:2:{s:8:\"variants\";a:1:{i:0;a:2:{s:2:\"id\";s:3:\"400\";s:4:\"name\";s:10:\"Normal 400\";}}s:7:\"subsets\";a:2:{i:0;a:2:{s:2:\"id\";s:9:\"latin-ext\";s:4:\"name\";s:14:\"Latin Extended\";}i:1;a:2:{s:2:\"id\";s:5:\"latin\";s:4:\"name\";s:5:\"Latin\";}}}s:9:\"Comfortaa\";a:2:{s:8:\"variants\";a:3:{i:0;a:2:{s:2:\"id\";s:3:\"300\";s:4:\"name\";s:8:\"Book 300\";}i:1;a:2:{s:2:\"id\";s:3:\"400\";s:4:\"name\";s:10:\"Normal 400\";}i:2;a:2:{s:2:\"id\";s:3:\"700\";s:4:\"name\";s:8:\"Bold 700\";}}s:7:\"subsets\";a:5:{i:0;a:2:{s:2:\"id\";s:12:\"cyrillic-ext\";s:4:\"name\";s:17:\"Cyrillic Extended\";}i:1;a:2:{s:2:\"id\";s:9:\"latin-ext\";s:4:\"name\";s:14:\"Latin Extended\";}i:2;a:2:{s:2:\"id\";s:8:\"cyrillic\";s:4:\"name\";s:8:\"Cyrillic\";}i:3;a:2:{s:2:\"id\";s:5:\"latin\";s:4:\"name\";s:5:\"Latin\";}i:4;a:2:{s:2:\"id\";s:5:\"greek\";s:4:\"name\";s:5:\"Greek\";}}}s:11:\"Coming Soon\";a:2:{s:8:\"variants\";a:1:{i:0;a:2:{s:2:\"id\";s:3:\"400\";s:4:\"name\";s:10:\"Normal 400\";}}s:7:\"subsets\";a:1:{i:0;a:2:{s:2:\"id\";s:5:\"latin\";s:4:\"name\";s:5:\"Latin\";}}}s:11:\"Concert One\";a:2:{s:8:\"variants\";a:1:{i:0;a:2:{s:2:\"id\";s:3:\"400\";s:4:\"name\";s:10:\"Normal 400\";}}s:7:\"subsets\";a:2:{i:0;a:2:{s:2:\"id\";s:9:\"latin-ext\";s:4:\"name\";s:14:\"Latin Extended\";}i:1;a:2:{s:2:\"id\";s:5:\"latin\";s:4:\"name\";s:5:\"Latin\";}}}s:9:\"Condiment\";a:2:{s:8:\"variants\";a:1:{i:0;a:2:{s:2:\"id\";s:3:\"400\";s:4:\"name\";s:10:\"Normal 400\";}}s:7:\"subsets\";a:2:{i:0;a:2:{s:2:\"id\";s:9:\"latin-ext\";s:4:\"name\";s:14:\"Latin Extended\";}i:1;a:2:{s:2:\"id\";s:5:\"latin\";s:4:\"name\";s:5:\"Latin\";}}}s:7:\"Content\";a:2:{s:8:\"variants\";a:2:{i:0;a:2:{s:2:\"id\";s:3:\"400\";s:4:\"name\";s:10:\"Normal 400\";}i:1;a:2:{s:2:\"id\";s:3:\"700\";s:4:\"name\";s:8:\"Bold 700\";}}s:7:\"subsets\";a:1:{i:0;a:2:{s:2:\"id\";s:5:\"khmer\";s:4:\"name\";s:5:\"Khmer\";}}}s:12:\"Contrail One\";a:2:{s:8:\"variants\";a:1:{i:0;a:2:{s:2:\"id\";s:3:\"400\";s:4:\"name\";s:10:\"Normal 400\";}}s:7:\"subsets\";a:1:{i:0;a:2:{s:2:\"id\";s:5:\"latin\";s:4:\"name\";s:5:\"Latin\";}}}s:11:\"Convergence\";a:2:{s:8:\"variants\";a:1:{i:0;a:2:{s:2:\"id\";s:3:\"400\";s:4:\"name\";s:10:\"Normal 400\";}}s:7:\"subsets\";a:1:{i:0;a:2:{s:2:\"id\";s:5:\"latin\";s:4:\"name\";s:5:\"Latin\";}}}s:6:\"Cookie\";a:2:{s:8:\"variants\";a:1:{i:0;a:2:{s:2:\"id\";s:3:\"400\";s:4:\"name\";s:10:\"Normal 400\";}}s:7:\"subsets\";a:1:{i:0;a:2:{s:2:\"id\";s:5:\"latin\";s:4:\"name\";s:5:\"Latin\";}}}s:5:\"Copse\";a:2:{s:8:\"variants\";a:1:{i:0;a:2:{s:2:\"id\";s:3:\"400\";s:4:\"name\";s:10:\"Normal 400\";}}s:7:\"subsets\";a:1:{i:0;a:2:{s:2:\"id\";s:5:\"latin\";s:4:\"name\";s:5:\"Latin\";}}}s:6:\"Corben\";a:2:{s:8:\"variants\";a:2:{i:0;a:2:{s:2:\"id\";s:3:\"400\";s:4:\"name\";s:10:\"Normal 400\";}i:1;a:2:{s:2:\"id\";s:3:\"700\";s:4:\"name\";s:8:\"Bold 700\";}}s:7:\"subsets\";a:2:{i:0;a:2:{s:2:\"id\";s:9:\"latin-ext\";s:4:\"name\";s:14:\"Latin Extended\";}i:1;a:2:{s:2:\"id\";s:5:\"latin\";s:4:\"name\";s:5:\"Latin\";}}}s:9:\"Courgette\";a:2:{s:8:\"variants\";a:1:{i:0;a:2:{s:2:\"id\";s:3:\"400\";s:4:\"name\";s:10:\"Normal 400\";}}s:7:\"subsets\";a:2:{i:0;a:2:{s:2:\"id\";s:9:\"latin-ext\";s:4:\"name\";s:14:\"Latin Extended\";}i:1;a:2:{s:2:\"id\";s:5:\"latin\";s:4:\"name\";s:5:\"Latin\";}}}s:7:\"Cousine\";a:2:{s:8:\"variants\";a:4:{i:0;a:2:{s:2:\"id\";s:3:\"400\";s:4:\"name\";s:10:\"Normal 400\";}i:1;a:2:{s:2:\"id\";s:9:\"400italic\";s:4:\"name\";s:17:\"Normal 400 Italic\";}i:2;a:2:{s:2:\"id\";s:3:\"700\";s:4:\"name\";s:8:\"Bold 700\";}i:3;a:2:{s:2:\"id\";s:9:\"700italic\";s:4:\"name\";s:15:\"Bold 700 Italic\";}}s:7:\"subsets\";a:8:{i:0;a:2:{s:2:\"id\";s:12:\"cyrillic-ext\";s:4:\"name\";s:17:\"Cyrillic Extended\";}i:1;a:2:{s:2:\"id\";s:9:\"latin-ext\";s:4:\"name\";s:14:\"Latin Extended\";}i:2;a:2:{s:2:\"id\";s:10:\"vietnamese\";s:4:\"name\";s:10:\"Vietnamese\";}i:3;a:2:{s:2:\"id\";s:9:\"greek-ext\";s:4:\"name\";s:14:\"Greek Extended\";}i:4;a:2:{s:2:\"id\";s:8:\"cyrillic\";s:4:\"name\";s:8:\"Cyrillic\";}i:5;a:2:{s:2:\"id\";s:5:\"latin\";s:4:\"name\";s:5:\"Latin\";}i:6;a:2:{s:2:\"id\";s:6:\"hebrew\";s:4:\"name\";s:6:\"Hebrew\";}i:7;a:2:{s:2:\"id\";s:5:\"greek\";s:4:\"name\";s:5:\"Greek\";}}}s:8:\"Coustard\";a:2:{s:8:\"variants\";a:2:{i:0;a:2:{s:2:\"id\";s:3:\"400\";s:4:\"name\";s:10:\"Normal 400\";}i:1;a:2:{s:2:\"id\";s:3:\"900\";s:4:\"name\";s:14:\"Ultra-Bold 900\";}}s:7:\"subsets\";a:1:{i:0;a:2:{s:2:\"id\";s:5:\"latin\";s:4:\"name\";s:5:\"Latin\";}}}s:21:\"Covered By Your Grace\";a:2:{s:8:\"variants\";a:1:{i:0;a:2:{s:2:\"id\";s:3:\"400\";s:4:\"name\";s:10:\"Normal 400\";}}s:7:\"subsets\";a:1:{i:0;a:2:{s:2:\"id\";s:5:\"latin\";s:4:\"name\";s:5:\"Latin\";}}}s:12:\"Crafty Girls\";a:2:{s:8:\"variants\";a:1:{i:0;a:2:{s:2:\"id\";s:3:\"400\";s:4:\"name\";s:10:\"Normal 400\";}}s:7:\"subsets\";a:1:{i:0;a:2:{s:2:\"id\";s:5:\"latin\";s:4:\"name\";s:5:\"Latin\";}}}s:9:\"Creepster\";a:2:{s:8:\"variants\";a:1:{i:0;a:2:{s:2:\"id\";s:3:\"400\";s:4:\"name\";s:10:\"Normal 400\";}}s:7:\"subsets\";a:1:{i:0;a:2:{s:2:\"id\";s:5:\"latin\";s:4:\"name\";s:5:\"Latin\";}}}s:11:\"Crete Round\";a:2:{s:8:\"variants\";a:2:{i:0;a:2:{s:2:\"id\";s:3:\"400\";s:4:\"name\";s:10:\"Normal 400\";}i:1;a:2:{s:2:\"id\";s:9:\"400italic\";s:4:\"name\";s:17:\"Normal 400 Italic\";}}s:7:\"subsets\";a:2:{i:0;a:2:{s:2:\"id\";s:9:\"latin-ext\";s:4:\"name\";s:14:\"Latin Extended\";}i:1;a:2:{s:2:\"id\";s:5:\"latin\";s:4:\"name\";s:5:\"Latin\";}}}s:12:\"Crimson Text\";a:2:{s:8:\"variants\";a:6:{i:0;a:2:{s:2:\"id\";s:3:\"400\";s:4:\"name\";s:10:\"Normal 400\";}i:1;a:2:{s:2:\"id\";s:9:\"400italic\";s:4:\"name\";s:17:\"Normal 400 Italic\";}i:2;a:2:{s:2:\"id\";s:3:\"600\";s:4:\"name\";s:13:\"Semi-Bold 600\";}i:3;a:2:{s:2:\"id\";s:9:\"600italic\";s:4:\"name\";s:20:\"Semi-Bold 600 Italic\";}i:4;a:2:{s:2:\"id\";s:3:\"700\";s:4:\"name\";s:8:\"Bold 700\";}i:5;a:2:{s:2:\"id\";s:9:\"700italic\";s:4:\"name\";s:15:\"Bold 700 Italic\";}}s:7:\"subsets\";a:1:{i:0;a:2:{s:2:\"id\";s:5:\"latin\";s:4:\"name\";s:5:\"Latin\";}}}s:13:\"Croissant One\";a:2:{s:8:\"variants\";a:1:{i:0;a:2:{s:2:\"id\";s:3:\"400\";s:4:\"name\";s:10:\"Normal 400\";}}s:7:\"subsets\";a:2:{i:0;a:2:{s:2:\"id\";s:9:\"latin-ext\";s:4:\"name\";s:14:\"Latin Extended\";}i:1;a:2:{s:2:\"id\";s:5:\"latin\";s:4:\"name\";s:5:\"Latin\";}}}s:7:\"Crushed\";a:2:{s:8:\"variants\";a:1:{i:0;a:2:{s:2:\"id\";s:3:\"400\";s:4:\"name\";s:10:\"Normal 400\";}}s:7:\"subsets\";a:1:{i:0;a:2:{s:2:\"id\";s:5:\"latin\";s:4:\"name\";s:5:\"Latin\";}}}s:6:\"Cuprum\";a:2:{s:8:\"variants\";a:4:{i:0;a:2:{s:2:\"id\";s:3:\"400\";s:4:\"name\";s:10:\"Normal 400\";}i:1;a:2:{s:2:\"id\";s:9:\"400italic\";s:4:\"name\";s:17:\"Normal 400 Italic\";}i:2;a:2:{s:2:\"id\";s:3:\"700\";s:4:\"name\";s:8:\"Bold 700\";}i:3;a:2:{s:2:\"id\";s:9:\"700italic\";s:4:\"name\";s:15:\"Bold 700 Italic\";}}s:7:\"subsets\";a:3:{i:0;a:2:{s:2:\"id\";s:9:\"latin-ext\";s:4:\"name\";s:14:\"Latin Extended\";}i:1;a:2:{s:2:\"id\";s:8:\"cyrillic\";s:4:\"name\";s:8:\"Cyrillic\";}i:2;a:2:{s:2:\"id\";s:5:\"latin\";s:4:\"name\";s:5:\"Latin\";}}}s:6:\"Cutive\";a:2:{s:8:\"variants\";a:1:{i:0;a:2:{s:2:\"id\";s:3:\"400\";s:4:\"name\";s:10:\"Normal 400\";}}s:7:\"subsets\";a:2:{i:0;a:2:{s:2:\"id\";s:9:\"latin-ext\";s:4:\"name\";s:14:\"Latin Extended\";}i:1;a:2:{s:2:\"id\";s:5:\"latin\";s:4:\"name\";s:5:\"Latin\";}}}s:11:\"Cutive Mono\";a:2:{s:8:\"variants\";a:1:{i:0;a:2:{s:2:\"id\";s:3:\"400\";s:4:\"name\";s:10:\"Normal 400\";}}s:7:\"subsets\";a:2:{i:0;a:2:{s:2:\"id\";s:9:\"latin-ext\";s:4:\"name\";s:14:\"Latin Extended\";}i:1;a:2:{s:2:\"id\";s:5:\"latin\";s:4:\"name\";s:5:\"Latin\";}}}s:6:\"Damion\";a:2:{s:8:\"variants\";a:1:{i:0;a:2:{s:2:\"id\";s:3:\"400\";s:4:\"name\";s:10:\"Normal 400\";}}s:7:\"subsets\";a:1:{i:0;a:2:{s:2:\"id\";s:5:\"latin\";s:4:\"name\";s:5:\"Latin\";}}}s:14:\"Dancing Script\";a:2:{s:8:\"variants\";a:2:{i:0;a:2:{s:2:\"id\";s:3:\"400\";s:4:\"name\";s:10:\"Normal 400\";}i:1;a:2:{s:2:\"id\";s:3:\"700\";s:4:\"name\";s:8:\"Bold 700\";}}s:7:\"subsets\";a:1:{i:0;a:2:{s:2:\"id\";s:5:\"latin\";s:4:\"name\";s:5:\"Latin\";}}}s:7:\"Dangrek\";a:2:{s:8:\"variants\";a:1:{i:0;a:2:{s:2:\"id\";s:3:\"400\";s:4:\"name\";s:10:\"Normal 400\";}}s:7:\"subsets\";a:1:{i:0;a:2:{s:2:\"id\";s:5:\"khmer\";s:4:\"name\";s:5:\"Khmer\";}}}s:20:\"Dawning of a New Day\";a:2:{s:8:\"variants\";a:1:{i:0;a:2:{s:2:\"id\";s:3:\"400\";s:4:\"name\";s:10:\"Normal 400\";}}s:7:\"subsets\";a:1:{i:0;a:2:{s:2:\"id\";s:5:\"latin\";s:4:\"name\";s:5:\"Latin\";}}}s:8:\"Days One\";a:2:{s:8:\"variants\";a:1:{i:0;a:2:{s:2:\"id\";s:3:\"400\";s:4:\"name\";s:10:\"Normal 400\";}}s:7:\"subsets\";a:1:{i:0;a:2:{s:2:\"id\";s:5:\"latin\";s:4:\"name\";s:5:\"Latin\";}}}s:5:\"Dekko\";a:2:{s:8:\"variants\";a:1:{i:0;a:2:{s:2:\"id\";s:3:\"400\";s:4:\"name\";s:10:\"Normal 400\";}}s:7:\"subsets\";a:3:{i:0;a:2:{s:2:\"id\";s:9:\"latin-ext\";s:4:\"name\";s:14:\"Latin Extended\";}i:1;a:2:{s:2:\"id\";s:5:\"latin\";s:4:\"name\";s:5:\"Latin\";}i:2;a:2:{s:2:\"id\";s:10:\"devanagari\";s:4:\"name\";s:10:\"Devanagari\";}}}s:6:\"Delius\";a:2:{s:8:\"variants\";a:1:{i:0;a:2:{s:2:\"id\";s:3:\"400\";s:4:\"name\";s:10:\"Normal 400\";}}s:7:\"subsets\";a:1:{i:0;a:2:{s:2:\"id\";s:5:\"latin\";s:4:\"name\";s:5:\"Latin\";}}}s:17:\"Delius Swash Caps\";a:2:{s:8:\"variants\";a:1:{i:0;a:2:{s:2:\"id\";s:3:\"400\";s:4:\"name\";s:10:\"Normal 400\";}}s:7:\"subsets\";a:1:{i:0;a:2:{s:2:\"id\";s:5:\"latin\";s:4:\"name\";s:5:\"Latin\";}}}s:14:\"Delius Unicase\";a:2:{s:8:\"variants\";a:2:{i:0;a:2:{s:2:\"id\";s:3:\"400\";s:4:\"name\";s:10:\"Normal 400\";}i:1;a:2:{s:2:\"id\";s:3:\"700\";s:4:\"name\";s:8:\"Bold 700\";}}s:7:\"subsets\";a:1:{i:0;a:2:{s:2:\"id\";s:5:\"latin\";s:4:\"name\";s:5:\"Latin\";}}}s:13:\"Della Respira\";a:2:{s:8:\"variants\";a:1:{i:0;a:2:{s:2:\"id\";s:3:\"400\";s:4:\"name\";s:10:\"Normal 400\";}}s:7:\"subsets\";a:1:{i:0;a:2:{s:2:\"id\";s:5:\"latin\";s:4:\"name\";s:5:\"Latin\";}}}s:8:\"Denk One\";a:2:{s:8:\"variants\";a:1:{i:0;a:2:{s:2:\"id\";s:3:\"400\";s:4:\"name\";s:10:\"Normal 400\";}}s:7:\"subsets\";a:2:{i:0;a:2:{s:2:\"id\";s:9:\"latin-ext\";s:4:\"name\";s:14:\"Latin Extended\";}i:1;a:2:{s:2:\"id\";s:5:\"latin\";s:4:\"name\";s:5:\"Latin\";}}}s:10:\"Devonshire\";a:2:{s:8:\"variants\";a:1:{i:0;a:2:{s:2:\"id\";s:3:\"400\";s:4:\"name\";s:10:\"Normal 400\";}}s:7:\"subsets\";a:2:{i:0;a:2:{s:2:\"id\";s:9:\"latin-ext\";s:4:\"name\";s:14:\"Latin Extended\";}i:1;a:2:{s:2:\"id\";s:5:\"latin\";s:4:\"name\";s:5:\"Latin\";}}}s:8:\"Dhurjati\";a:2:{s:8:\"variants\";a:1:{i:0;a:2:{s:2:\"id\";s:3:\"400\";s:4:\"name\";s:10:\"Normal 400\";}}s:7:\"subsets\";a:2:{i:0;a:2:{s:2:\"id\";s:6:\"telugu\";s:4:\"name\";s:6:\"Telugu\";}i:1;a:2:{s:2:\"id\";s:5:\"latin\";s:4:\"name\";s:5:\"Latin\";}}}s:13:\"Didact Gothic\";a:2:{s:8:\"variants\";a:1:{i:0;a:2:{s:2:\"id\";s:3:\"400\";s:4:\"name\";s:10:\"Normal 400\";}}s:7:\"subsets\";a:6:{i:0;a:2:{s:2:\"id\";s:12:\"cyrillic-ext\";s:4:\"name\";s:17:\"Cyrillic Extended\";}i:1;a:2:{s:2:\"id\";s:9:\"latin-ext\";s:4:\"name\";s:14:\"Latin Extended\";}i:2;a:2:{s:2:\"id\";s:9:\"greek-ext\";s:4:\"name\";s:14:\"Greek Extended\";}i:3;a:2:{s:2:\"id\";s:8:\"cyrillic\";s:4:\"name\";s:8:\"Cyrillic\";}i:4;a:2:{s:2:\"id\";s:5:\"latin\";s:4:\"name\";s:5:\"Latin\";}i:5;a:2:{s:2:\"id\";s:5:\"greek\";s:4:\"name\";s:5:\"Greek\";}}}s:9:\"Diplomata\";a:2:{s:8:\"variants\";a:1:{i:0;a:2:{s:2:\"id\";s:3:\"400\";s:4:\"name\";s:10:\"Normal 400\";}}s:7:\"subsets\";a:2:{i:0;a:2:{s:2:\"id\";s:9:\"latin-ext\";s:4:\"name\";s:14:\"Latin Extended\";}i:1;a:2:{s:2:\"id\";s:5:\"latin\";s:4:\"name\";s:5:\"Latin\";}}}s:12:\"Diplomata SC\";a:2:{s:8:\"variants\";a:1:{i:0;a:2:{s:2:\"id\";s:3:\"400\";s:4:\"name\";s:10:\"Normal 400\";}}s:7:\"subsets\";a:2:{i:0;a:2:{s:2:\"id\";s:9:\"latin-ext\";s:4:\"name\";s:14:\"Latin Extended\";}i:1;a:2:{s:2:\"id\";s:5:\"latin\";s:4:\"name\";s:5:\"Latin\";}}}s:6:\"Domine\";a:2:{s:8:\"variants\";a:2:{i:0;a:2:{s:2:\"id\";s:3:\"400\";s:4:\"name\";s:10:\"Normal 400\";}i:1;a:2:{s:2:\"id\";s:3:\"700\";s:4:\"name\";s:8:\"Bold 700\";}}s:7:\"subsets\";a:2:{i:0;a:2:{s:2:\"id\";s:9:\"latin-ext\";s:4:\"name\";s:14:\"Latin Extended\";}i:1;a:2:{s:2:\"id\";s:5:\"latin\";s:4:\"name\";s:5:\"Latin\";}}}s:11:\"Donegal One\";a:2:{s:8:\"variants\";a:1:{i:0;a:2:{s:2:\"id\";s:3:\"400\";s:4:\"name\";s:10:\"Normal 400\";}}s:7:\"subsets\";a:2:{i:0;a:2:{s:2:\"id\";s:9:\"latin-ext\";s:4:\"name\";s:14:\"Latin Extended\";}i:1;a:2:{s:2:\"id\";s:5:\"latin\";s:4:\"name\";s:5:\"Latin\";}}}s:10:\"Doppio One\";a:2:{s:8:\"variants\";a:1:{i:0;a:2:{s:2:\"id\";s:3:\"400\";s:4:\"name\";s:10:\"Normal 400\";}}s:7:\"subsets\";a:2:{i:0;a:2:{s:2:\"id\";s:9:\"latin-ext\";s:4:\"name\";s:14:\"Latin Extended\";}i:1;a:2:{s:2:\"id\";s:5:\"latin\";s:4:\"name\";s:5:\"Latin\";}}}s:5:\"Dorsa\";a:2:{s:8:\"variants\";a:1:{i:0;a:2:{s:2:\"id\";s:3:\"400\";s:4:\"name\";s:10:\"Normal 400\";}}s:7:\"subsets\";a:1:{i:0;a:2:{s:2:\"id\";s:5:\"latin\";s:4:\"name\";s:5:\"Latin\";}}}s:5:\"Dosis\";a:2:{s:8:\"variants\";a:7:{i:0;a:2:{s:2:\"id\";s:3:\"200\";s:4:\"name\";s:9:\"Light 200\";}i:1;a:2:{s:2:\"id\";s:3:\"300\";s:4:\"name\";s:8:\"Book 300\";}i:2;a:2:{s:2:\"id\";s:3:\"400\";s:4:\"name\";s:10:\"Normal 400\";}i:3;a:2:{s:2:\"id\";s:3:\"500\";s:4:\"name\";s:10:\"Medium 500\";}i:4;a:2:{s:2:\"id\";s:3:\"600\";s:4:\"name\";s:13:\"Semi-Bold 600\";}i:5;a:2:{s:2:\"id\";s:3:\"700\";s:4:\"name\";s:8:\"Bold 700\";}i:6;a:2:{s:2:\"id\";s:3:\"800\";s:4:\"name\";s:14:\"Extra-Bold 800\";}}s:7:\"subsets\";a:2:{i:0;a:2:{s:2:\"id\";s:9:\"latin-ext\";s:4:\"name\";s:14:\"Latin Extended\";}i:1;a:2:{s:2:\"id\";s:5:\"latin\";s:4:\"name\";s:5:\"Latin\";}}}s:11:\"Dr Sugiyama\";a:2:{s:8:\"variants\";a:1:{i:0;a:2:{s:2:\"id\";s:3:\"400\";s:4:\"name\";s:10:\"Normal 400\";}}s:7:\"subsets\";a:2:{i:0;a:2:{s:2:\"id\";s:9:\"latin-ext\";s:4:\"name\";s:14:\"Latin Extended\";}i:1;a:2:{s:2:\"id\";s:5:\"latin\";s:4:\"name\";s:5:\"Latin\";}}}s:10:\"Droid Sans\";a:2:{s:8:\"variants\";a:2:{i:0;a:2:{s:2:\"id\";s:3:\"400\";s:4:\"name\";s:10:\"Normal 400\";}i:1;a:2:{s:2:\"id\";s:3:\"700\";s:4:\"name\";s:8:\"Bold 700\";}}s:7:\"subsets\";a:1:{i:0;a:2:{s:2:\"id\";s:5:\"latin\";s:4:\"name\";s:5:\"Latin\";}}}s:15:\"Droid Sans Mono\";a:2:{s:8:\"variants\";a:1:{i:0;a:2:{s:2:\"id\";s:3:\"400\";s:4:\"name\";s:10:\"Normal 400\";}}s:7:\"subsets\";a:1:{i:0;a:2:{s:2:\"id\";s:5:\"latin\";s:4:\"name\";s:5:\"Latin\";}}}s:11:\"Droid Serif\";a:2:{s:8:\"variants\";a:4:{i:0;a:2:{s:2:\"id\";s:3:\"400\";s:4:\"name\";s:10:\"Normal 400\";}i:1;a:2:{s:2:\"id\";s:9:\"400italic\";s:4:\"name\";s:17:\"Normal 400 Italic\";}i:2;a:2:{s:2:\"id\";s:3:\"700\";s:4:\"name\";s:8:\"Bold 700\";}i:3;a:2:{s:2:\"id\";s:9:\"700italic\";s:4:\"name\";s:15:\"Bold 700 Italic\";}}s:7:\"subsets\";a:1:{i:0;a:2:{s:2:\"id\";s:5:\"latin\";s:4:\"name\";s:5:\"Latin\";}}}s:9:\"Duru Sans\";a:2:{s:8:\"variants\";a:1:{i:0;a:2:{s:2:\"id\";s:3:\"400\";s:4:\"name\";s:10:\"Normal 400\";}}s:7:\"subsets\";a:2:{i:0;a:2:{s:2:\"id\";s:9:\"latin-ext\";s:4:\"name\";s:14:\"Latin Extended\";}i:1;a:2:{s:2:\"id\";s:5:\"latin\";s:4:\"name\";s:5:\"Latin\";}}}s:9:\"Dynalight\";a:2:{s:8:\"variants\";a:1:{i:0;a:2:{s:2:\"id\";s:3:\"400\";s:4:\"name\";s:10:\"Normal 400\";}}s:7:\"subsets\";a:2:{i:0;a:2:{s:2:\"id\";s:9:\"latin-ext\";s:4:\"name\";s:14:\"Latin Extended\";}i:1;a:2:{s:2:\"id\";s:5:\"latin\";s:4:\"name\";s:5:\"Latin\";}}}s:11:\"EB Garamond\";a:2:{s:8:\"variants\";a:1:{i:0;a:2:{s:2:\"id\";s:3:\"400\";s:4:\"name\";s:10:\"Normal 400\";}}s:7:\"subsets\";a:5:{i:0;a:2:{s:2:\"id\";s:12:\"cyrillic-ext\";s:4:\"name\";s:17:\"Cyrillic Extended\";}i:1;a:2:{s:2:\"id\";s:9:\"latin-ext\";s:4:\"name\";s:14:\"Latin Extended\";}i:2;a:2:{s:2:\"id\";s:10:\"vietnamese\";s:4:\"name\";s:10:\"Vietnamese\";}i:3;a:2:{s:2:\"id\";s:8:\"cyrillic\";s:4:\"name\";s:8:\"Cyrillic\";}i:4;a:2:{s:2:\"id\";s:5:\"latin\";s:4:\"name\";s:5:\"Latin\";}}}s:10:\"Eagle Lake\";a:2:{s:8:\"variants\";a:1:{i:0;a:2:{s:2:\"id\";s:3:\"400\";s:4:\"name\";s:10:\"Normal 400\";}}s:7:\"subsets\";a:2:{i:0;a:2:{s:2:\"id\";s:9:\"latin-ext\";s:4:\"name\";s:14:\"Latin Extended\";}i:1;a:2:{s:2:\"id\";s:5:\"latin\";s:4:\"name\";s:5:\"Latin\";}}}s:5:\"Eater\";a:2:{s:8:\"variants\";a:1:{i:0;a:2:{s:2:\"id\";s:3:\"400\";s:4:\"name\";s:10:\"Normal 400\";}}s:7:\"subsets\";a:2:{i:0;a:2:{s:2:\"id\";s:9:\"latin-ext\";s:4:\"name\";s:14:\"Latin Extended\";}i:1;a:2:{s:2:\"id\";s:5:\"latin\";s:4:\"name\";s:5:\"Latin\";}}}s:9:\"Economica\";a:2:{s:8:\"variants\";a:4:{i:0;a:2:{s:2:\"id\";s:3:\"400\";s:4:\"name\";s:10:\"Normal 400\";}i:1;a:2:{s:2:\"id\";s:9:\"400italic\";s:4:\"name\";s:17:\"Normal 400 Italic\";}i:2;a:2:{s:2:\"id\";s:3:\"700\";s:4:\"name\";s:8:\"Bold 700\";}i:3;a:2:{s:2:\"id\";s:9:\"700italic\";s:4:\"name\";s:15:\"Bold 700 Italic\";}}s:7:\"subsets\";a:2:{i:0;a:2:{s:2:\"id\";s:9:\"latin-ext\";s:4:\"name\";s:14:\"Latin Extended\";}i:1;a:2:{s:2:\"id\";s:5:\"latin\";s:4:\"name\";s:5:\"Latin\";}}}s:5:\"Eczar\";a:2:{s:8:\"variants\";a:5:{i:0;a:2:{s:2:\"id\";s:3:\"400\";s:4:\"name\";s:10:\"Normal 400\";}i:1;a:2:{s:2:\"id\";s:3:\"500\";s:4:\"name\";s:10:\"Medium 500\";}i:2;a:2:{s:2:\"id\";s:3:\"600\";s:4:\"name\";s:13:\"Semi-Bold 600\";}i:3;a:2:{s:2:\"id\";s:3:\"700\";s:4:\"name\";s:8:\"Bold 700\";}i:4;a:2:{s:2:\"id\";s:3:\"800\";s:4:\"name\";s:14:\"Extra-Bold 800\";}}s:7:\"subsets\";a:3:{i:0;a:2:{s:2:\"id\";s:9:\"latin-ext\";s:4:\"name\";s:14:\"Latin Extended\";}i:1;a:2:{s:2:\"id\";s:5:\"latin\";s:4:\"name\";s:5:\"Latin\";}i:2;a:2:{s:2:\"id\";s:10:\"devanagari\";s:4:\"name\";s:10:\"Devanagari\";}}}s:8:\"Ek Mukta\";a:2:{s:8:\"variants\";a:7:{i:0;a:2:{s:2:\"id\";s:3:\"200\";s:4:\"name\";s:9:\"Light 200\";}i:1;a:2:{s:2:\"id\";s:3:\"300\";s:4:\"name\";s:8:\"Book 300\";}i:2;a:2:{s:2:\"id\";s:3:\"400\";s:4:\"name\";s:10:\"Normal 400\";}i:3;a:2:{s:2:\"id\";s:3:\"500\";s:4:\"name\";s:10:\"Medium 500\";}i:4;a:2:{s:2:\"id\";s:3:\"600\";s:4:\"name\";s:13:\"Semi-Bold 600\";}i:5;a:2:{s:2:\"id\";s:3:\"700\";s:4:\"name\";s:8:\"Bold 700\";}i:6;a:2:{s:2:\"id\";s:3:\"800\";s:4:\"name\";s:14:\"Extra-Bold 800\";}}s:7:\"subsets\";a:3:{i:0;a:2:{s:2:\"id\";s:9:\"latin-ext\";s:4:\"name\";s:14:\"Latin Extended\";}i:1;a:2:{s:2:\"id\";s:5:\"latin\";s:4:\"name\";s:5:\"Latin\";}i:2;a:2:{s:2:\"id\";s:10:\"devanagari\";s:4:\"name\";s:10:\"Devanagari\";}}}s:11:\"Electrolize\";a:2:{s:8:\"variants\";a:1:{i:0;a:2:{s:2:\"id\";s:3:\"400\";s:4:\"name\";s:10:\"Normal 400\";}}s:7:\"subsets\";a:1:{i:0;a:2:{s:2:\"id\";s:5:\"latin\";s:4:\"name\";s:5:\"Latin\";}}}s:5:\"Elsie\";a:2:{s:8:\"variants\";a:2:{i:0;a:2:{s:2:\"id\";s:3:\"400\";s:4:\"name\";s:10:\"Normal 400\";}i:1;a:2:{s:2:\"id\";s:3:\"900\";s:4:\"name\";s:14:\"Ultra-Bold 900\";}}s:7:\"subsets\";a:2:{i:0;a:2:{s:2:\"id\";s:9:\"latin-ext\";s:4:\"name\";s:14:\"Latin Extended\";}i:1;a:2:{s:2:\"id\";s:5:\"latin\";s:4:\"name\";s:5:\"Latin\";}}}s:16:\"Elsie Swash Caps\";a:2:{s:8:\"variants\";a:2:{i:0;a:2:{s:2:\"id\";s:3:\"400\";s:4:\"name\";s:10:\"Normal 400\";}i:1;a:2:{s:2:\"id\";s:3:\"900\";s:4:\"name\";s:14:\"Ultra-Bold 900\";}}s:7:\"subsets\";a:2:{i:0;a:2:{s:2:\"id\";s:9:\"latin-ext\";s:4:\"name\";s:14:\"Latin Extended\";}i:1;a:2:{s:2:\"id\";s:5:\"latin\";s:4:\"name\";s:5:\"Latin\";}}}s:11:\"Emblema One\";a:2:{s:8:\"variants\";a:1:{i:0;a:2:{s:2:\"id\";s:3:\"400\";s:4:\"name\";s:10:\"Normal 400\";}}s:7:\"subsets\";a:2:{i:0;a:2:{s:2:\"id\";s:9:\"latin-ext\";s:4:\"name\";s:14:\"Latin Extended\";}i:1;a:2:{s:2:\"id\";s:5:\"latin\";s:4:\"name\";s:5:\"Latin\";}}}s:12:\"Emilys Candy\";a:2:{s:8:\"variants\";a:1:{i:0;a:2:{s:2:\"id\";s:3:\"400\";s:4:\"name\";s:10:\"Normal 400\";}}s:7:\"subsets\";a:2:{i:0;a:2:{s:2:\"id\";s:9:\"latin-ext\";s:4:\"name\";s:14:\"Latin Extended\";}i:1;a:2:{s:2:\"id\";s:5:\"latin\";s:4:\"name\";s:5:\"Latin\";}}}s:10:\"Engagement\";a:2:{s:8:\"variants\";a:1:{i:0;a:2:{s:2:\"id\";s:3:\"400\";s:4:\"name\";s:10:\"Normal 400\";}}s:7:\"subsets\";a:1:{i:0;a:2:{s:2:\"id\";s:5:\"latin\";s:4:\"name\";s:5:\"Latin\";}}}s:9:\"Englebert\";a:2:{s:8:\"variants\";a:1:{i:0;a:2:{s:2:\"id\";s:3:\"400\";s:4:\"name\";s:10:\"Normal 400\";}}s:7:\"subsets\";a:2:{i:0;a:2:{s:2:\"id\";s:9:\"latin-ext\";s:4:\"name\";s:14:\"Latin Extended\";}i:1;a:2:{s:2:\"id\";s:5:\"latin\";s:4:\"name\";s:5:\"Latin\";}}}s:9:\"Enriqueta\";a:2:{s:8:\"variants\";a:2:{i:0;a:2:{s:2:\"id\";s:3:\"400\";s:4:\"name\";s:10:\"Normal 400\";}i:1;a:2:{s:2:\"id\";s:3:\"700\";s:4:\"name\";s:8:\"Bold 700\";}}s:7:\"subsets\";a:2:{i:0;a:2:{s:2:\"id\";s:9:\"latin-ext\";s:4:\"name\";s:14:\"Latin Extended\";}i:1;a:2:{s:2:\"id\";s:5:\"latin\";s:4:\"name\";s:5:\"Latin\";}}}s:9:\"Erica One\";a:2:{s:8:\"variants\";a:1:{i:0;a:2:{s:2:\"id\";s:3:\"400\";s:4:\"name\";s:10:\"Normal 400\";}}s:7:\"subsets\";a:2:{i:0;a:2:{s:2:\"id\";s:9:\"latin-ext\";s:4:\"name\";s:14:\"Latin Extended\";}i:1;a:2:{s:2:\"id\";s:5:\"latin\";s:4:\"name\";s:5:\"Latin\";}}}s:7:\"Esteban\";a:2:{s:8:\"variants\";a:1:{i:0;a:2:{s:2:\"id\";s:3:\"400\";s:4:\"name\";s:10:\"Normal 400\";}}s:7:\"subsets\";a:2:{i:0;a:2:{s:2:\"id\";s:9:\"latin-ext\";s:4:\"name\";s:14:\"Latin Extended\";}i:1;a:2:{s:2:\"id\";s:5:\"latin\";s:4:\"name\";s:5:\"Latin\";}}}s:15:\"Euphoria Script\";a:2:{s:8:\"variants\";a:1:{i:0;a:2:{s:2:\"id\";s:3:\"400\";s:4:\"name\";s:10:\"Normal 400\";}}s:7:\"subsets\";a:2:{i:0;a:2:{s:2:\"id\";s:9:\"latin-ext\";s:4:\"name\";s:14:\"Latin Extended\";}i:1;a:2:{s:2:\"id\";s:5:\"latin\";s:4:\"name\";s:5:\"Latin\";}}}s:5:\"Ewert\";a:2:{s:8:\"variants\";a:1:{i:0;a:2:{s:2:\"id\";s:3:\"400\";s:4:\"name\";s:10:\"Normal 400\";}}s:7:\"subsets\";a:2:{i:0;a:2:{s:2:\"id\";s:9:\"latin-ext\";s:4:\"name\";s:14:\"Latin Extended\";}i:1;a:2:{s:2:\"id\";s:5:\"latin\";s:4:\"name\";s:5:\"Latin\";}}}s:3:\"Exo\";a:2:{s:8:\"variants\";a:18:{i:0;a:2:{s:2:\"id\";s:3:\"100\";s:4:\"name\";s:15:\"Ultra-Light 100\";}i:1;a:2:{s:2:\"id\";s:9:\"100italic\";s:4:\"name\";s:22:\"Ultra-Light 100 Italic\";}i:2;a:2:{s:2:\"id\";s:3:\"200\";s:4:\"name\";s:9:\"Light 200\";}i:3;a:2:{s:2:\"id\";s:9:\"200italic\";s:4:\"name\";s:16:\"Light 200 Italic\";}i:4;a:2:{s:2:\"id\";s:3:\"300\";s:4:\"name\";s:8:\"Book 300\";}i:5;a:2:{s:2:\"id\";s:9:\"300italic\";s:4:\"name\";s:15:\"Book 300 Italic\";}i:6;a:2:{s:2:\"id\";s:3:\"400\";s:4:\"name\";s:10:\"Normal 400\";}i:7;a:2:{s:2:\"id\";s:9:\"400italic\";s:4:\"name\";s:17:\"Normal 400 Italic\";}i:8;a:2:{s:2:\"id\";s:3:\"500\";s:4:\"name\";s:10:\"Medium 500\";}i:9;a:2:{s:2:\"id\";s:9:\"500italic\";s:4:\"name\";s:17:\"Medium 500 Italic\";}i:10;a:2:{s:2:\"id\";s:3:\"600\";s:4:\"name\";s:13:\"Semi-Bold 600\";}i:11;a:2:{s:2:\"id\";s:9:\"600italic\";s:4:\"name\";s:20:\"Semi-Bold 600 Italic\";}i:12;a:2:{s:2:\"id\";s:3:\"700\";s:4:\"name\";s:8:\"Bold 700\";}i:13;a:2:{s:2:\"id\";s:9:\"700italic\";s:4:\"name\";s:15:\"Bold 700 Italic\";}i:14;a:2:{s:2:\"id\";s:3:\"800\";s:4:\"name\";s:14:\"Extra-Bold 800\";}i:15;a:2:{s:2:\"id\";s:9:\"800italic\";s:4:\"name\";s:21:\"Extra-Bold 800 Italic\";}i:16;a:2:{s:2:\"id\";s:3:\"900\";s:4:\"name\";s:14:\"Ultra-Bold 900\";}i:17;a:2:{s:2:\"id\";s:9:\"900italic\";s:4:\"name\";s:21:\"Ultra-Bold 900 Italic\";}}s:7:\"subsets\";a:2:{i:0;a:2:{s:2:\"id\";s:9:\"latin-ext\";s:4:\"name\";s:14:\"Latin Extended\";}i:1;a:2:{s:2:\"id\";s:5:\"latin\";s:4:\"name\";s:5:\"Latin\";}}}s:5:\"Exo 2\";a:2:{s:8:\"variants\";a:18:{i:0;a:2:{s:2:\"id\";s:3:\"100\";s:4:\"name\";s:15:\"Ultra-Light 100\";}i:1;a:2:{s:2:\"id\";s:9:\"100italic\";s:4:\"name\";s:22:\"Ultra-Light 100 Italic\";}i:2;a:2:{s:2:\"id\";s:3:\"200\";s:4:\"name\";s:9:\"Light 200\";}i:3;a:2:{s:2:\"id\";s:9:\"200italic\";s:4:\"name\";s:16:\"Light 200 Italic\";}i:4;a:2:{s:2:\"id\";s:3:\"300\";s:4:\"name\";s:8:\"Book 300\";}i:5;a:2:{s:2:\"id\";s:9:\"300italic\";s:4:\"name\";s:15:\"Book 300 Italic\";}i:6;a:2:{s:2:\"id\";s:3:\"400\";s:4:\"name\";s:10:\"Normal 400\";}i:7;a:2:{s:2:\"id\";s:9:\"400italic\";s:4:\"name\";s:17:\"Normal 400 Italic\";}i:8;a:2:{s:2:\"id\";s:3:\"500\";s:4:\"name\";s:10:\"Medium 500\";}i:9;a:2:{s:2:\"id\";s:9:\"500italic\";s:4:\"name\";s:17:\"Medium 500 Italic\";}i:10;a:2:{s:2:\"id\";s:3:\"600\";s:4:\"name\";s:13:\"Semi-Bold 600\";}i:11;a:2:{s:2:\"id\";s:9:\"600italic\";s:4:\"name\";s:20:\"Semi-Bold 600 Italic\";}i:12;a:2:{s:2:\"id\";s:3:\"700\";s:4:\"name\";s:8:\"Bold 700\";}i:13;a:2:{s:2:\"id\";s:9:\"700italic\";s:4:\"name\";s:15:\"Bold 700 Italic\";}i:14;a:2:{s:2:\"id\";s:3:\"800\";s:4:\"name\";s:14:\"Extra-Bold 800\";}i:15;a:2:{s:2:\"id\";s:9:\"800italic\";s:4:\"name\";s:21:\"Extra-Bold 800 Italic\";}i:16;a:2:{s:2:\"id\";s:3:\"900\";s:4:\"name\";s:14:\"Ultra-Bold 900\";}i:17;a:2:{s:2:\"id\";s:9:\"900italic\";s:4:\"name\";s:21:\"Ultra-Bold 900 Italic\";}}s:7:\"subsets\";a:3:{i:0;a:2:{s:2:\"id\";s:9:\"latin-ext\";s:4:\"name\";s:14:\"Latin Extended\";}i:1;a:2:{s:2:\"id\";s:8:\"cyrillic\";s:4:\"name\";s:8:\"Cyrillic\";}i:2;a:2:{s:2:\"id\";s:5:\"latin\";s:4:\"name\";s:5:\"Latin\";}}}s:13:\"Expletus Sans\";a:2:{s:8:\"variants\";a:8:{i:0;a:2:{s:2:\"id\";s:3:\"400\";s:4:\"name\";s:10:\"Normal 400\";}i:1;a:2:{s:2:\"id\";s:9:\"400italic\";s:4:\"name\";s:17:\"Normal 400 Italic\";}i:2;a:2:{s:2:\"id\";s:3:\"500\";s:4:\"name\";s:10:\"Medium 500\";}i:3;a:2:{s:2:\"id\";s:9:\"500italic\";s:4:\"name\";s:17:\"Medium 500 Italic\";}i:4;a:2:{s:2:\"id\";s:3:\"600\";s:4:\"name\";s:13:\"Semi-Bold 600\";}i:5;a:2:{s:2:\"id\";s:9:\"600italic\";s:4:\"name\";s:20:\"Semi-Bold 600 Italic\";}i:6;a:2:{s:2:\"id\";s:3:\"700\";s:4:\"name\";s:8:\"Bold 700\";}i:7;a:2:{s:2:\"id\";s:9:\"700italic\";s:4:\"name\";s:15:\"Bold 700 Italic\";}}s:7:\"subsets\";a:1:{i:0;a:2:{s:2:\"id\";s:5:\"latin\";s:4:\"name\";s:5:\"Latin\";}}}s:12:\"Fanwood Text\";a:2:{s:8:\"variants\";a:2:{i:0;a:2:{s:2:\"id\";s:3:\"400\";s:4:\"name\";s:10:\"Normal 400\";}i:1;a:2:{s:2:\"id\";s:9:\"400italic\";s:4:\"name\";s:17:\"Normal 400 Italic\";}}s:7:\"subsets\";a:1:{i:0;a:2:{s:2:\"id\";s:5:\"latin\";s:4:\"name\";s:5:\"Latin\";}}}s:9:\"Fascinate\";a:2:{s:8:\"variants\";a:1:{i:0;a:2:{s:2:\"id\";s:3:\"400\";s:4:\"name\";s:10:\"Normal 400\";}}s:7:\"subsets\";a:1:{i:0;a:2:{s:2:\"id\";s:5:\"latin\";s:4:\"name\";s:5:\"Latin\";}}}s:16:\"Fascinate Inline\";a:2:{s:8:\"variants\";a:1:{i:0;a:2:{s:2:\"id\";s:3:\"400\";s:4:\"name\";s:10:\"Normal 400\";}}s:7:\"subsets\";a:1:{i:0;a:2:{s:2:\"id\";s:5:\"latin\";s:4:\"name\";s:5:\"Latin\";}}}s:10:\"Faster One\";a:2:{s:8:\"variants\";a:1:{i:0;a:2:{s:2:\"id\";s:3:\"400\";s:4:\"name\";s:10:\"Normal 400\";}}s:7:\"subsets\";a:1:{i:0;a:2:{s:2:\"id\";s:5:\"latin\";s:4:\"name\";s:5:\"Latin\";}}}s:8:\"Fasthand\";a:2:{s:8:\"variants\";a:1:{i:0;a:2:{s:2:\"id\";s:3:\"400\";s:4:\"name\";s:10:\"Normal 400\";}}s:7:\"subsets\";a:1:{i:0;a:2:{s:2:\"id\";s:5:\"khmer\";s:4:\"name\";s:5:\"Khmer\";}}}s:9:\"Fauna One\";a:2:{s:8:\"variants\";a:1:{i:0;a:2:{s:2:\"id\";s:3:\"400\";s:4:\"name\";s:10:\"Normal 400\";}}s:7:\"subsets\";a:2:{i:0;a:2:{s:2:\"id\";s:9:\"latin-ext\";s:4:\"name\";s:14:\"Latin Extended\";}i:1;a:2:{s:2:\"id\";s:5:\"latin\";s:4:\"name\";s:5:\"Latin\";}}}s:8:\"Federant\";a:2:{s:8:\"variants\";a:1:{i:0;a:2:{s:2:\"id\";s:3:\"400\";s:4:\"name\";s:10:\"Normal 400\";}}s:7:\"subsets\";a:1:{i:0;a:2:{s:2:\"id\";s:5:\"latin\";s:4:\"name\";s:5:\"Latin\";}}}s:6:\"Federo\";a:2:{s:8:\"variants\";a:1:{i:0;a:2:{s:2:\"id\";s:3:\"400\";s:4:\"name\";s:10:\"Normal 400\";}}s:7:\"subsets\";a:1:{i:0;a:2:{s:2:\"id\";s:5:\"latin\";s:4:\"name\";s:5:\"Latin\";}}}s:6:\"Felipa\";a:2:{s:8:\"variants\";a:1:{i:0;a:2:{s:2:\"id\";s:3:\"400\";s:4:\"name\";s:10:\"Normal 400\";}}s:7:\"subsets\";a:2:{i:0;a:2:{s:2:\"id\";s:9:\"latin-ext\";s:4:\"name\";s:14:\"Latin Extended\";}i:1;a:2:{s:2:\"id\";s:5:\"latin\";s:4:\"name\";s:5:\"Latin\";}}}s:5:\"Fenix\";a:2:{s:8:\"variants\";a:1:{i:0;a:2:{s:2:\"id\";s:3:\"400\";s:4:\"name\";s:10:\"Normal 400\";}}s:7:\"subsets\";a:2:{i:0;a:2:{s:2:\"id\";s:9:\"latin-ext\";s:4:\"name\";s:14:\"Latin Extended\";}i:1;a:2:{s:2:\"id\";s:5:\"latin\";s:4:\"name\";s:5:\"Latin\";}}}s:12:\"Finger Paint\";a:2:{s:8:\"variants\";a:1:{i:0;a:2:{s:2:\"id\";s:3:\"400\";s:4:\"name\";s:10:\"Normal 400\";}}s:7:\"subsets\";a:1:{i:0;a:2:{s:2:\"id\";s:5:\"latin\";s:4:\"name\";s:5:\"Latin\";}}}s:9:\"Fira Mono\";a:2:{s:8:\"variants\";a:2:{i:0;a:2:{s:2:\"id\";s:3:\"400\";s:4:\"name\";s:10:\"Normal 400\";}i:1;a:2:{s:2:\"id\";s:3:\"700\";s:4:\"name\";s:8:\"Bold 700\";}}s:7:\"subsets\";a:5:{i:0;a:2:{s:2:\"id\";s:12:\"cyrillic-ext\";s:4:\"name\";s:17:\"Cyrillic Extended\";}i:1;a:2:{s:2:\"id\";s:9:\"latin-ext\";s:4:\"name\";s:14:\"Latin Extended\";}i:2;a:2:{s:2:\"id\";s:8:\"cyrillic\";s:4:\"name\";s:8:\"Cyrillic\";}i:3;a:2:{s:2:\"id\";s:5:\"latin\";s:4:\"name\";s:5:\"Latin\";}i:4;a:2:{s:2:\"id\";s:5:\"greek\";s:4:\"name\";s:5:\"Greek\";}}}s:9:\"Fira Sans\";a:2:{s:8:\"variants\";a:8:{i:0;a:2:{s:2:\"id\";s:3:\"300\";s:4:\"name\";s:8:\"Book 300\";}i:1;a:2:{s:2:\"id\";s:9:\"300italic\";s:4:\"name\";s:15:\"Book 300 Italic\";}i:2;a:2:{s:2:\"id\";s:3:\"400\";s:4:\"name\";s:10:\"Normal 400\";}i:3;a:2:{s:2:\"id\";s:9:\"400italic\";s:4:\"name\";s:17:\"Normal 400 Italic\";}i:4;a:2:{s:2:\"id\";s:3:\"500\";s:4:\"name\";s:10:\"Medium 500\";}i:5;a:2:{s:2:\"id\";s:9:\"500italic\";s:4:\"name\";s:17:\"Medium 500 Italic\";}i:6;a:2:{s:2:\"id\";s:3:\"700\";s:4:\"name\";s:8:\"Bold 700\";}i:7;a:2:{s:2:\"id\";s:9:\"700italic\";s:4:\"name\";s:15:\"Bold 700 Italic\";}}s:7:\"subsets\";a:5:{i:0;a:2:{s:2:\"id\";s:12:\"cyrillic-ext\";s:4:\"name\";s:17:\"Cyrillic Extended\";}i:1;a:2:{s:2:\"id\";s:9:\"latin-ext\";s:4:\"name\";s:14:\"Latin Extended\";}i:2;a:2:{s:2:\"id\";s:8:\"cyrillic\";s:4:\"name\";s:8:\"Cyrillic\";}i:3;a:2:{s:2:\"id\";s:5:\"latin\";s:4:\"name\";s:5:\"Latin\";}i:4;a:2:{s:2:\"id\";s:5:\"greek\";s:4:\"name\";s:5:\"Greek\";}}}s:10:\"Fjalla One\";a:2:{s:8:\"variants\";a:1:{i:0;a:2:{s:2:\"id\";s:3:\"400\";s:4:\"name\";s:10:\"Normal 400\";}}s:7:\"subsets\";a:2:{i:0;a:2:{s:2:\"id\";s:9:\"latin-ext\";s:4:\"name\";s:14:\"Latin Extended\";}i:1;a:2:{s:2:\"id\";s:5:\"latin\";s:4:\"name\";s:5:\"Latin\";}}}s:9:\"Fjord One\";a:2:{s:8:\"variants\";a:1:{i:0;a:2:{s:2:\"id\";s:3:\"400\";s:4:\"name\";s:10:\"Normal 400\";}}s:7:\"subsets\";a:1:{i:0;a:2:{s:2:\"id\";s:5:\"latin\";s:4:\"name\";s:5:\"Latin\";}}}s:8:\"Flamenco\";a:2:{s:8:\"variants\";a:2:{i:0;a:2:{s:2:\"id\";s:3:\"300\";s:4:\"name\";s:8:\"Book 300\";}i:1;a:2:{s:2:\"id\";s:3:\"400\";s:4:\"name\";s:10:\"Normal 400\";}}s:7:\"subsets\";a:1:{i:0;a:2:{s:2:\"id\";s:5:\"latin\";s:4:\"name\";s:5:\"Latin\";}}}s:7:\"Flavors\";a:2:{s:8:\"variants\";a:1:{i:0;a:2:{s:2:\"id\";s:3:\"400\";s:4:\"name\";s:10:\"Normal 400\";}}s:7:\"subsets\";a:1:{i:0;a:2:{s:2:\"id\";s:5:\"latin\";s:4:\"name\";s:5:\"Latin\";}}}s:10:\"Fondamento\";a:2:{s:8:\"variants\";a:2:{i:0;a:2:{s:2:\"id\";s:3:\"400\";s:4:\"name\";s:10:\"Normal 400\";}i:1;a:2:{s:2:\"id\";s:9:\"400italic\";s:4:\"name\";s:17:\"Normal 400 Italic\";}}s:7:\"subsets\";a:2:{i:0;a:2:{s:2:\"id\";s:9:\"latin-ext\";s:4:\"name\";s:14:\"Latin Extended\";}i:1;a:2:{s:2:\"id\";s:5:\"latin\";s:4:\"name\";s:5:\"Latin\";}}}s:16:\"Fontdiner Swanky\";a:2:{s:8:\"variants\";a:1:{i:0;a:2:{s:2:\"id\";s:3:\"400\";s:4:\"name\";s:10:\"Normal 400\";}}s:7:\"subsets\";a:1:{i:0;a:2:{s:2:\"id\";s:5:\"latin\";s:4:\"name\";s:5:\"Latin\";}}}s:5:\"Forum\";a:2:{s:8:\"variants\";a:1:{i:0;a:2:{s:2:\"id\";s:3:\"400\";s:4:\"name\";s:10:\"Normal 400\";}}s:7:\"subsets\";a:4:{i:0;a:2:{s:2:\"id\";s:12:\"cyrillic-ext\";s:4:\"name\";s:17:\"Cyrillic Extended\";}i:1;a:2:{s:2:\"id\";s:9:\"latin-ext\";s:4:\"name\";s:14:\"Latin Extended\";}i:2;a:2:{s:2:\"id\";s:8:\"cyrillic\";s:4:\"name\";s:8:\"Cyrillic\";}i:3;a:2:{s:2:\"id\";s:5:\"latin\";s:4:\"name\";s:5:\"Latin\";}}}s:12:\"Francois One\";a:2:{s:8:\"variants\";a:1:{i:0;a:2:{s:2:\"id\";s:3:\"400\";s:4:\"name\";s:10:\"Normal 400\";}}s:7:\"subsets\";a:2:{i:0;a:2:{s:2:\"id\";s:9:\"latin-ext\";s:4:\"name\";s:14:\"Latin Extended\";}i:1;a:2:{s:2:\"id\";s:5:\"latin\";s:4:\"name\";s:5:\"Latin\";}}}s:12:\"Freckle Face\";a:2:{s:8:\"variants\";a:1:{i:0;a:2:{s:2:\"id\";s:3:\"400\";s:4:\"name\";s:10:\"Normal 400\";}}s:7:\"subsets\";a:2:{i:0;a:2:{s:2:\"id\";s:9:\"latin-ext\";s:4:\"name\";s:14:\"Latin Extended\";}i:1;a:2:{s:2:\"id\";s:5:\"latin\";s:4:\"name\";s:5:\"Latin\";}}}s:20:\"Fredericka the Great\";a:2:{s:8:\"variants\";a:1:{i:0;a:2:{s:2:\"id\";s:3:\"400\";s:4:\"name\";s:10:\"Normal 400\";}}s:7:\"subsets\";a:1:{i:0;a:2:{s:2:\"id\";s:5:\"latin\";s:4:\"name\";s:5:\"Latin\";}}}s:11:\"Fredoka One\";a:2:{s:8:\"variants\";a:1:{i:0;a:2:{s:2:\"id\";s:3:\"400\";s:4:\"name\";s:10:\"Normal 400\";}}s:7:\"subsets\";a:1:{i:0;a:2:{s:2:\"id\";s:5:\"latin\";s:4:\"name\";s:5:\"Latin\";}}}s:8:\"Freehand\";a:2:{s:8:\"variants\";a:1:{i:0;a:2:{s:2:\"id\";s:3:\"400\";s:4:\"name\";s:10:\"Normal 400\";}}s:7:\"subsets\";a:1:{i:0;a:2:{s:2:\"id\";s:5:\"khmer\";s:4:\"name\";s:5:\"Khmer\";}}}s:6:\"Fresca\";a:2:{s:8:\"variants\";a:1:{i:0;a:2:{s:2:\"id\";s:3:\"400\";s:4:\"name\";s:10:\"Normal 400\";}}s:7:\"subsets\";a:2:{i:0;a:2:{s:2:\"id\";s:9:\"latin-ext\";s:4:\"name\";s:14:\"Latin Extended\";}i:1;a:2:{s:2:\"id\";s:5:\"latin\";s:4:\"name\";s:5:\"Latin\";}}}s:7:\"Frijole\";a:2:{s:8:\"variants\";a:1:{i:0;a:2:{s:2:\"id\";s:3:\"400\";s:4:\"name\";s:10:\"Normal 400\";}}s:7:\"subsets\";a:1:{i:0;a:2:{s:2:\"id\";s:5:\"latin\";s:4:\"name\";s:5:\"Latin\";}}}s:7:\"Fruktur\";a:2:{s:8:\"variants\";a:1:{i:0;a:2:{s:2:\"id\";s:3:\"400\";s:4:\"name\";s:10:\"Normal 400\";}}s:7:\"subsets\";a:2:{i:0;a:2:{s:2:\"id\";s:9:\"latin-ext\";s:4:\"name\";s:14:\"Latin Extended\";}i:1;a:2:{s:2:\"id\";s:5:\"latin\";s:4:\"name\";s:5:\"Latin\";}}}s:9:\"Fugaz One\";a:2:{s:8:\"variants\";a:1:{i:0;a:2:{s:2:\"id\";s:3:\"400\";s:4:\"name\";s:10:\"Normal 400\";}}s:7:\"subsets\";a:1:{i:0;a:2:{s:2:\"id\";s:5:\"latin\";s:4:\"name\";s:5:\"Latin\";}}}s:9:\"GFS Didot\";a:2:{s:8:\"variants\";a:1:{i:0;a:2:{s:2:\"id\";s:3:\"400\";s:4:\"name\";s:10:\"Normal 400\";}}s:7:\"subsets\";a:1:{i:0;a:2:{s:2:\"id\";s:5:\"greek\";s:4:\"name\";s:5:\"Greek\";}}}s:15:\"GFS Neohellenic\";a:2:{s:8:\"variants\";a:4:{i:0;a:2:{s:2:\"id\";s:3:\"400\";s:4:\"name\";s:10:\"Normal 400\";}i:1;a:2:{s:2:\"id\";s:9:\"400italic\";s:4:\"name\";s:17:\"Normal 400 Italic\";}i:2;a:2:{s:2:\"id\";s:3:\"700\";s:4:\"name\";s:8:\"Bold 700\";}i:3;a:2:{s:2:\"id\";s:9:\"700italic\";s:4:\"name\";s:15:\"Bold 700 Italic\";}}s:7:\"subsets\";a:1:{i:0;a:2:{s:2:\"id\";s:5:\"greek\";s:4:\"name\";s:5:\"Greek\";}}}s:8:\"Gabriela\";a:2:{s:8:\"variants\";a:1:{i:0;a:2:{s:2:\"id\";s:3:\"400\";s:4:\"name\";s:10:\"Normal 400\";}}s:7:\"subsets\";a:2:{i:0;a:2:{s:2:\"id\";s:9:\"latin-ext\";s:4:\"name\";s:14:\"Latin Extended\";}i:1;a:2:{s:2:\"id\";s:5:\"latin\";s:4:\"name\";s:5:\"Latin\";}}}s:6:\"Gafata\";a:2:{s:8:\"variants\";a:1:{i:0;a:2:{s:2:\"id\";s:3:\"400\";s:4:\"name\";s:10:\"Normal 400\";}}s:7:\"subsets\";a:2:{i:0;a:2:{s:2:\"id\";s:9:\"latin-ext\";s:4:\"name\";s:14:\"Latin Extended\";}i:1;a:2:{s:2:\"id\";s:5:\"latin\";s:4:\"name\";s:5:\"Latin\";}}}s:8:\"Galdeano\";a:2:{s:8:\"variants\";a:1:{i:0;a:2:{s:2:\"id\";s:3:\"400\";s:4:\"name\";s:10:\"Normal 400\";}}s:7:\"subsets\";a:1:{i:0;a:2:{s:2:\"id\";s:5:\"latin\";s:4:\"name\";s:5:\"Latin\";}}}s:7:\"Galindo\";a:2:{s:8:\"variants\";a:1:{i:0;a:2:{s:2:\"id\";s:3:\"400\";s:4:\"name\";s:10:\"Normal 400\";}}s:7:\"subsets\";a:2:{i:0;a:2:{s:2:\"id\";s:9:\"latin-ext\";s:4:\"name\";s:14:\"Latin Extended\";}i:1;a:2:{s:2:\"id\";s:5:\"latin\";s:4:\"name\";s:5:\"Latin\";}}}s:13:\"Gentium Basic\";a:2:{s:8:\"variants\";a:4:{i:0;a:2:{s:2:\"id\";s:3:\"400\";s:4:\"name\";s:10:\"Normal 400\";}i:1;a:2:{s:2:\"id\";s:9:\"400italic\";s:4:\"name\";s:17:\"Normal 400 Italic\";}i:2;a:2:{s:2:\"id\";s:3:\"700\";s:4:\"name\";s:8:\"Bold 700\";}i:3;a:2:{s:2:\"id\";s:9:\"700italic\";s:4:\"name\";s:15:\"Bold 700 Italic\";}}s:7:\"subsets\";a:2:{i:0;a:2:{s:2:\"id\";s:9:\"latin-ext\";s:4:\"name\";s:14:\"Latin Extended\";}i:1;a:2:{s:2:\"id\";s:5:\"latin\";s:4:\"name\";s:5:\"Latin\";}}}s:18:\"Gentium Book Basic\";a:2:{s:8:\"variants\";a:4:{i:0;a:2:{s:2:\"id\";s:3:\"400\";s:4:\"name\";s:10:\"Normal 400\";}i:1;a:2:{s:2:\"id\";s:9:\"400italic\";s:4:\"name\";s:17:\"Normal 400 Italic\";}i:2;a:2:{s:2:\"id\";s:3:\"700\";s:4:\"name\";s:8:\"Bold 700\";}i:3;a:2:{s:2:\"id\";s:9:\"700italic\";s:4:\"name\";s:15:\"Bold 700 Italic\";}}s:7:\"subsets\";a:2:{i:0;a:2:{s:2:\"id\";s:9:\"latin-ext\";s:4:\"name\";s:14:\"Latin Extended\";}i:1;a:2:{s:2:\"id\";s:5:\"latin\";s:4:\"name\";s:5:\"Latin\";}}}s:3:\"Geo\";a:2:{s:8:\"variants\";a:2:{i:0;a:2:{s:2:\"id\";s:3:\"400\";s:4:\"name\";s:10:\"Normal 400\";}i:1;a:2:{s:2:\"id\";s:9:\"400italic\";s:4:\"name\";s:17:\"Normal 400 Italic\";}}s:7:\"subsets\";a:1:{i:0;a:2:{s:2:\"id\";s:5:\"latin\";s:4:\"name\";s:5:\"Latin\";}}}s:7:\"Geostar\";a:2:{s:8:\"variants\";a:1:{i:0;a:2:{s:2:\"id\";s:3:\"400\";s:4:\"name\";s:10:\"Normal 400\";}}s:7:\"subsets\";a:1:{i:0;a:2:{s:2:\"id\";s:5:\"latin\";s:4:\"name\";s:5:\"Latin\";}}}s:12:\"Geostar Fill\";a:2:{s:8:\"variants\";a:1:{i:0;a:2:{s:2:\"id\";s:3:\"400\";s:4:\"name\";s:10:\"Normal 400\";}}s:7:\"subsets\";a:1:{i:0;a:2:{s:2:\"id\";s:5:\"latin\";s:4:\"name\";s:5:\"Latin\";}}}s:12:\"Germania One\";a:2:{s:8:\"variants\";a:1:{i:0;a:2:{s:2:\"id\";s:3:\"400\";s:4:\"name\";s:10:\"Normal 400\";}}s:7:\"subsets\";a:1:{i:0;a:2:{s:2:\"id\";s:5:\"latin\";s:4:\"name\";s:5:\"Latin\";}}}s:6:\"Gidugu\";a:2:{s:8:\"variants\";a:1:{i:0;a:2:{s:2:\"id\";s:3:\"400\";s:4:\"name\";s:10:\"Normal 400\";}}s:7:\"subsets\";a:2:{i:0;a:2:{s:2:\"id\";s:6:\"telugu\";s:4:\"name\";s:6:\"Telugu\";}i:1;a:2:{s:2:\"id\";s:5:\"latin\";s:4:\"name\";s:5:\"Latin\";}}}s:13:\"Gilda Display\";a:2:{s:8:\"variants\";a:1:{i:0;a:2:{s:2:\"id\";s:3:\"400\";s:4:\"name\";s:10:\"Normal 400\";}}s:7:\"subsets\";a:2:{i:0;a:2:{s:2:\"id\";s:9:\"latin-ext\";s:4:\"name\";s:14:\"Latin Extended\";}i:1;a:2:{s:2:\"id\";s:5:\"latin\";s:4:\"name\";s:5:\"Latin\";}}}s:14:\"Give You Glory\";a:2:{s:8:\"variants\";a:1:{i:0;a:2:{s:2:\"id\";s:3:\"400\";s:4:\"name\";s:10:\"Normal 400\";}}s:7:\"subsets\";a:1:{i:0;a:2:{s:2:\"id\";s:5:\"latin\";s:4:\"name\";s:5:\"Latin\";}}}s:13:\"Glass Antiqua\";a:2:{s:8:\"variants\";a:1:{i:0;a:2:{s:2:\"id\";s:3:\"400\";s:4:\"name\";s:10:\"Normal 400\";}}s:7:\"subsets\";a:2:{i:0;a:2:{s:2:\"id\";s:9:\"latin-ext\";s:4:\"name\";s:14:\"Latin Extended\";}i:1;a:2:{s:2:\"id\";s:5:\"latin\";s:4:\"name\";s:5:\"Latin\";}}}s:6:\"Glegoo\";a:2:{s:8:\"variants\";a:2:{i:0;a:2:{s:2:\"id\";s:3:\"400\";s:4:\"name\";s:10:\"Normal 400\";}i:1;a:2:{s:2:\"id\";s:3:\"700\";s:4:\"name\";s:8:\"Bold 700\";}}s:7:\"subsets\";a:3:{i:0;a:2:{s:2:\"id\";s:9:\"latin-ext\";s:4:\"name\";s:14:\"Latin Extended\";}i:1;a:2:{s:2:\"id\";s:5:\"latin\";s:4:\"name\";s:5:\"Latin\";}i:2;a:2:{s:2:\"id\";s:10:\"devanagari\";s:4:\"name\";s:10:\"Devanagari\";}}}s:17:\"Gloria Hallelujah\";a:2:{s:8:\"variants\";a:1:{i:0;a:2:{s:2:\"id\";s:3:\"400\";s:4:\"name\";s:10:\"Normal 400\";}}s:7:\"subsets\";a:1:{i:0;a:2:{s:2:\"id\";s:5:\"latin\";s:4:\"name\";s:5:\"Latin\";}}}s:10:\"Goblin One\";a:2:{s:8:\"variants\";a:1:{i:0;a:2:{s:2:\"id\";s:3:\"400\";s:4:\"name\";s:10:\"Normal 400\";}}s:7:\"subsets\";a:1:{i:0;a:2:{s:2:\"id\";s:5:\"latin\";s:4:\"name\";s:5:\"Latin\";}}}s:10:\"Gochi Hand\";a:2:{s:8:\"variants\";a:1:{i:0;a:2:{s:2:\"id\";s:3:\"400\";s:4:\"name\";s:10:\"Normal 400\";}}s:7:\"subsets\";a:1:{i:0;a:2:{s:2:\"id\";s:5:\"latin\";s:4:\"name\";s:5:\"Latin\";}}}s:8:\"Gorditas\";a:2:{s:8:\"variants\";a:2:{i:0;a:2:{s:2:\"id\";s:3:\"400\";s:4:\"name\";s:10:\"Normal 400\";}i:1;a:2:{s:2:\"id\";s:3:\"700\";s:4:\"name\";s:8:\"Bold 700\";}}s:7:\"subsets\";a:1:{i:0;a:2:{s:2:\"id\";s:5:\"latin\";s:4:\"name\";s:5:\"Latin\";}}}s:21:\"Goudy Bookletter 1911\";a:2:{s:8:\"variants\";a:1:{i:0;a:2:{s:2:\"id\";s:3:\"400\";s:4:\"name\";s:10:\"Normal 400\";}}s:7:\"subsets\";a:1:{i:0;a:2:{s:2:\"id\";s:5:\"latin\";s:4:\"name\";s:5:\"Latin\";}}}s:8:\"Graduate\";a:2:{s:8:\"variants\";a:1:{i:0;a:2:{s:2:\"id\";s:3:\"400\";s:4:\"name\";s:10:\"Normal 400\";}}s:7:\"subsets\";a:1:{i:0;a:2:{s:2:\"id\";s:5:\"latin\";s:4:\"name\";s:5:\"Latin\";}}}s:11:\"Grand Hotel\";a:2:{s:8:\"variants\";a:1:{i:0;a:2:{s:2:\"id\";s:3:\"400\";s:4:\"name\";s:10:\"Normal 400\";}}s:7:\"subsets\";a:2:{i:0;a:2:{s:2:\"id\";s:9:\"latin-ext\";s:4:\"name\";s:14:\"Latin Extended\";}i:1;a:2:{s:2:\"id\";s:5:\"latin\";s:4:\"name\";s:5:\"Latin\";}}}s:12:\"Gravitas One\";a:2:{s:8:\"variants\";a:1:{i:0;a:2:{s:2:\"id\";s:3:\"400\";s:4:\"name\";s:10:\"Normal 400\";}}s:7:\"subsets\";a:1:{i:0;a:2:{s:2:\"id\";s:5:\"latin\";s:4:\"name\";s:5:\"Latin\";}}}s:11:\"Great Vibes\";a:2:{s:8:\"variants\";a:1:{i:0;a:2:{s:2:\"id\";s:3:\"400\";s:4:\"name\";s:10:\"Normal 400\";}}s:7:\"subsets\";a:2:{i:0;a:2:{s:2:\"id\";s:9:\"latin-ext\";s:4:\"name\";s:14:\"Latin Extended\";}i:1;a:2:{s:2:\"id\";s:5:\"latin\";s:4:\"name\";s:5:\"Latin\";}}}s:6:\"Griffy\";a:2:{s:8:\"variants\";a:1:{i:0;a:2:{s:2:\"id\";s:3:\"400\";s:4:\"name\";s:10:\"Normal 400\";}}s:7:\"subsets\";a:2:{i:0;a:2:{s:2:\"id\";s:9:\"latin-ext\";s:4:\"name\";s:14:\"Latin Extended\";}i:1;a:2:{s:2:\"id\";s:5:\"latin\";s:4:\"name\";s:5:\"Latin\";}}}s:6:\"Gruppo\";a:2:{s:8:\"variants\";a:1:{i:0;a:2:{s:2:\"id\";s:3:\"400\";s:4:\"name\";s:10:\"Normal 400\";}}s:7:\"subsets\";a:2:{i:0;a:2:{s:2:\"id\";s:9:\"latin-ext\";s:4:\"name\";s:14:\"Latin Extended\";}i:1;a:2:{s:2:\"id\";s:5:\"latin\";s:4:\"name\";s:5:\"Latin\";}}}s:5:\"Gudea\";a:2:{s:8:\"variants\";a:3:{i:0;a:2:{s:2:\"id\";s:3:\"400\";s:4:\"name\";s:10:\"Normal 400\";}i:1;a:2:{s:2:\"id\";s:9:\"400italic\";s:4:\"name\";s:17:\"Normal 400 Italic\";}i:2;a:2:{s:2:\"id\";s:3:\"700\";s:4:\"name\";s:8:\"Bold 700\";}}s:7:\"subsets\";a:2:{i:0;a:2:{s:2:\"id\";s:9:\"latin-ext\";s:4:\"name\";s:14:\"Latin Extended\";}i:1;a:2:{s:2:\"id\";s:5:\"latin\";s:4:\"name\";s:5:\"Latin\";}}}s:8:\"Gurajada\";a:2:{s:8:\"variants\";a:1:{i:0;a:2:{s:2:\"id\";s:3:\"400\";s:4:\"name\";s:10:\"Normal 400\";}}s:7:\"subsets\";a:2:{i:0;a:2:{s:2:\"id\";s:6:\"telugu\";s:4:\"name\";s:6:\"Telugu\";}i:1;a:2:{s:2:\"id\";s:5:\"latin\";s:4:\"name\";s:5:\"Latin\";}}}s:6:\"Habibi\";a:2:{s:8:\"variants\";a:1:{i:0;a:2:{s:2:\"id\";s:3:\"400\";s:4:\"name\";s:10:\"Normal 400\";}}s:7:\"subsets\";a:2:{i:0;a:2:{s:2:\"id\";s:9:\"latin-ext\";s:4:\"name\";s:14:\"Latin Extended\";}i:1;a:2:{s:2:\"id\";s:5:\"latin\";s:4:\"name\";s:5:\"Latin\";}}}s:6:\"Halant\";a:2:{s:8:\"variants\";a:5:{i:0;a:2:{s:2:\"id\";s:3:\"300\";s:4:\"name\";s:8:\"Book 300\";}i:1;a:2:{s:2:\"id\";s:3:\"400\";s:4:\"name\";s:10:\"Normal 400\";}i:2;a:2:{s:2:\"id\";s:3:\"500\";s:4:\"name\";s:10:\"Medium 500\";}i:3;a:2:{s:2:\"id\";s:3:\"600\";s:4:\"name\";s:13:\"Semi-Bold 600\";}i:4;a:2:{s:2:\"id\";s:3:\"700\";s:4:\"name\";s:8:\"Bold 700\";}}s:7:\"subsets\";a:3:{i:0;a:2:{s:2:\"id\";s:9:\"latin-ext\";s:4:\"name\";s:14:\"Latin Extended\";}i:1;a:2:{s:2:\"id\";s:5:\"latin\";s:4:\"name\";s:5:\"Latin\";}i:2;a:2:{s:2:\"id\";s:10:\"devanagari\";s:4:\"name\";s:10:\"Devanagari\";}}}s:15:\"Hammersmith One\";a:2:{s:8:\"variants\";a:1:{i:0;a:2:{s:2:\"id\";s:3:\"400\";s:4:\"name\";s:10:\"Normal 400\";}}s:7:\"subsets\";a:2:{i:0;a:2:{s:2:\"id\";s:9:\"latin-ext\";s:4:\"name\";s:14:\"Latin Extended\";}i:1;a:2:{s:2:\"id\";s:5:\"latin\";s:4:\"name\";s:5:\"Latin\";}}}s:7:\"Hanalei\";a:2:{s:8:\"variants\";a:1:{i:0;a:2:{s:2:\"id\";s:3:\"400\";s:4:\"name\";s:10:\"Normal 400\";}}s:7:\"subsets\";a:2:{i:0;a:2:{s:2:\"id\";s:9:\"latin-ext\";s:4:\"name\";s:14:\"Latin Extended\";}i:1;a:2:{s:2:\"id\";s:5:\"latin\";s:4:\"name\";s:5:\"Latin\";}}}s:12:\"Hanalei Fill\";a:2:{s:8:\"variants\";a:1:{i:0;a:2:{s:2:\"id\";s:3:\"400\";s:4:\"name\";s:10:\"Normal 400\";}}s:7:\"subsets\";a:2:{i:0;a:2:{s:2:\"id\";s:9:\"latin-ext\";s:4:\"name\";s:14:\"Latin Extended\";}i:1;a:2:{s:2:\"id\";s:5:\"latin\";s:4:\"name\";s:5:\"Latin\";}}}s:7:\"Handlee\";a:2:{s:8:\"variants\";a:1:{i:0;a:2:{s:2:\"id\";s:3:\"400\";s:4:\"name\";s:10:\"Normal 400\";}}s:7:\"subsets\";a:1:{i:0;a:2:{s:2:\"id\";s:5:\"latin\";s:4:\"name\";s:5:\"Latin\";}}}s:7:\"Hanuman\";a:2:{s:8:\"variants\";a:2:{i:0;a:2:{s:2:\"id\";s:3:\"400\";s:4:\"name\";s:10:\"Normal 400\";}i:1;a:2:{s:2:\"id\";s:3:\"700\";s:4:\"name\";s:8:\"Bold 700\";}}s:7:\"subsets\";a:1:{i:0;a:2:{s:2:\"id\";s:5:\"khmer\";s:4:\"name\";s:5:\"Khmer\";}}}s:12:\"Happy Monkey\";a:2:{s:8:\"variants\";a:1:{i:0;a:2:{s:2:\"id\";s:3:\"400\";s:4:\"name\";s:10:\"Normal 400\";}}s:7:\"subsets\";a:2:{i:0;a:2:{s:2:\"id\";s:9:\"latin-ext\";s:4:\"name\";s:14:\"Latin Extended\";}i:1;a:2:{s:2:\"id\";s:5:\"latin\";s:4:\"name\";s:5:\"Latin\";}}}s:12:\"Headland One\";a:2:{s:8:\"variants\";a:1:{i:0;a:2:{s:2:\"id\";s:3:\"400\";s:4:\"name\";s:10:\"Normal 400\";}}s:7:\"subsets\";a:2:{i:0;a:2:{s:2:\"id\";s:9:\"latin-ext\";s:4:\"name\";s:14:\"Latin Extended\";}i:1;a:2:{s:2:\"id\";s:5:\"latin\";s:4:\"name\";s:5:\"Latin\";}}}s:11:\"Henny Penny\";a:2:{s:8:\"variants\";a:1:{i:0;a:2:{s:2:\"id\";s:3:\"400\";s:4:\"name\";s:10:\"Normal 400\";}}s:7:\"subsets\";a:1:{i:0;a:2:{s:2:\"id\";s:5:\"latin\";s:4:\"name\";s:5:\"Latin\";}}}s:20:\"Herr Von Muellerhoff\";a:2:{s:8:\"variants\";a:1:{i:0;a:2:{s:2:\"id\";s:3:\"400\";s:4:\"name\";s:10:\"Normal 400\";}}s:7:\"subsets\";a:2:{i:0;a:2:{s:2:\"id\";s:9:\"latin-ext\";s:4:\"name\";s:14:\"Latin Extended\";}i:1;a:2:{s:2:\"id\";s:5:\"latin\";s:4:\"name\";s:5:\"Latin\";}}}s:4:\"Hind\";a:2:{s:8:\"variants\";a:5:{i:0;a:2:{s:2:\"id\";s:3:\"300\";s:4:\"name\";s:8:\"Book 300\";}i:1;a:2:{s:2:\"id\";s:3:\"400\";s:4:\"name\";s:10:\"Normal 400\";}i:2;a:2:{s:2:\"id\";s:3:\"500\";s:4:\"name\";s:10:\"Medium 500\";}i:3;a:2:{s:2:\"id\";s:3:\"600\";s:4:\"name\";s:13:\"Semi-Bold 600\";}i:4;a:2:{s:2:\"id\";s:3:\"700\";s:4:\"name\";s:8:\"Bold 700\";}}s:7:\"subsets\";a:3:{i:0;a:2:{s:2:\"id\";s:9:\"latin-ext\";s:4:\"name\";s:14:\"Latin Extended\";}i:1;a:2:{s:2:\"id\";s:5:\"latin\";s:4:\"name\";s:5:\"Latin\";}i:2;a:2:{s:2:\"id\";s:10:\"devanagari\";s:4:\"name\";s:10:\"Devanagari\";}}}s:13:\"Hind Siliguri\";a:2:{s:8:\"variants\";a:5:{i:0;a:2:{s:2:\"id\";s:3:\"300\";s:4:\"name\";s:8:\"Book 300\";}i:1;a:2:{s:2:\"id\";s:3:\"400\";s:4:\"name\";s:10:\"Normal 400\";}i:2;a:2:{s:2:\"id\";s:3:\"500\";s:4:\"name\";s:10:\"Medium 500\";}i:3;a:2:{s:2:\"id\";s:3:\"600\";s:4:\"name\";s:13:\"Semi-Bold 600\";}i:4;a:2:{s:2:\"id\";s:3:\"700\";s:4:\"name\";s:8:\"Bold 700\";}}s:7:\"subsets\";a:3:{i:0;a:2:{s:2:\"id\";s:7:\"bengali\";s:4:\"name\";s:7:\"Bengali\";}i:1;a:2:{s:2:\"id\";s:9:\"latin-ext\";s:4:\"name\";s:14:\"Latin Extended\";}i:2;a:2:{s:2:\"id\";s:5:\"latin\";s:4:\"name\";s:5:\"Latin\";}}}s:13:\"Hind Vadodara\";a:2:{s:8:\"variants\";a:5:{i:0;a:2:{s:2:\"id\";s:3:\"300\";s:4:\"name\";s:8:\"Book 300\";}i:1;a:2:{s:2:\"id\";s:3:\"400\";s:4:\"name\";s:10:\"Normal 400\";}i:2;a:2:{s:2:\"id\";s:3:\"500\";s:4:\"name\";s:10:\"Medium 500\";}i:3;a:2:{s:2:\"id\";s:3:\"600\";s:4:\"name\";s:13:\"Semi-Bold 600\";}i:4;a:2:{s:2:\"id\";s:3:\"700\";s:4:\"name\";s:8:\"Bold 700\";}}s:7:\"subsets\";a:3:{i:0;a:2:{s:2:\"id\";s:8:\"gujarati\";s:4:\"name\";s:8:\"Gujarati\";}i:1;a:2:{s:2:\"id\";s:9:\"latin-ext\";s:4:\"name\";s:14:\"Latin Extended\";}i:2;a:2:{s:2:\"id\";s:5:\"latin\";s:4:\"name\";s:5:\"Latin\";}}}s:15:\"Holtwood One SC\";a:2:{s:8:\"variants\";a:1:{i:0;a:2:{s:2:\"id\";s:3:\"400\";s:4:\"name\";s:10:\"Normal 400\";}}s:7:\"subsets\";a:1:{i:0;a:2:{s:2:\"id\";s:5:\"latin\";s:4:\"name\";s:5:\"Latin\";}}}s:14:\"Homemade Apple\";a:2:{s:8:\"variants\";a:1:{i:0;a:2:{s:2:\"id\";s:3:\"400\";s:4:\"name\";s:10:\"Normal 400\";}}s:7:\"subsets\";a:1:{i:0;a:2:{s:2:\"id\";s:5:\"latin\";s:4:\"name\";s:5:\"Latin\";}}}s:8:\"Homenaje\";a:2:{s:8:\"variants\";a:1:{i:0;a:2:{s:2:\"id\";s:3:\"400\";s:4:\"name\";s:10:\"Normal 400\";}}s:7:\"subsets\";a:2:{i:0;a:2:{s:2:\"id\";s:9:\"latin-ext\";s:4:\"name\";s:14:\"Latin Extended\";}i:1;a:2:{s:2:\"id\";s:5:\"latin\";s:4:\"name\";s:5:\"Latin\";}}}s:15:\"IM Fell DW Pica\";a:2:{s:8:\"variants\";a:2:{i:0;a:2:{s:2:\"id\";s:3:\"400\";s:4:\"name\";s:10:\"Normal 400\";}i:1;a:2:{s:2:\"id\";s:9:\"400italic\";s:4:\"name\";s:17:\"Normal 400 Italic\";}}s:7:\"subsets\";a:1:{i:0;a:2:{s:2:\"id\";s:5:\"latin\";s:4:\"name\";s:5:\"Latin\";}}}s:18:\"IM Fell DW Pica SC\";a:2:{s:8:\"variants\";a:1:{i:0;a:2:{s:2:\"id\";s:3:\"400\";s:4:\"name\";s:10:\"Normal 400\";}}s:7:\"subsets\";a:1:{i:0;a:2:{s:2:\"id\";s:5:\"latin\";s:4:\"name\";s:5:\"Latin\";}}}s:19:\"IM Fell Double Pica\";a:2:{s:8:\"variants\";a:2:{i:0;a:2:{s:2:\"id\";s:3:\"400\";s:4:\"name\";s:10:\"Normal 400\";}i:1;a:2:{s:2:\"id\";s:9:\"400italic\";s:4:\"name\";s:17:\"Normal 400 Italic\";}}s:7:\"subsets\";a:1:{i:0;a:2:{s:2:\"id\";s:5:\"latin\";s:4:\"name\";s:5:\"Latin\";}}}s:22:\"IM Fell Double Pica SC\";a:2:{s:8:\"variants\";a:1:{i:0;a:2:{s:2:\"id\";s:3:\"400\";s:4:\"name\";s:10:\"Normal 400\";}}s:7:\"subsets\";a:1:{i:0;a:2:{s:2:\"id\";s:5:\"latin\";s:4:\"name\";s:5:\"Latin\";}}}s:15:\"IM Fell English\";a:2:{s:8:\"variants\";a:2:{i:0;a:2:{s:2:\"id\";s:3:\"400\";s:4:\"name\";s:10:\"Normal 400\";}i:1;a:2:{s:2:\"id\";s:9:\"400italic\";s:4:\"name\";s:17:\"Normal 400 Italic\";}}s:7:\"subsets\";a:1:{i:0;a:2:{s:2:\"id\";s:5:\"latin\";s:4:\"name\";s:5:\"Latin\";}}}s:18:\"IM Fell English SC\";a:2:{s:8:\"variants\";a:1:{i:0;a:2:{s:2:\"id\";s:3:\"400\";s:4:\"name\";s:10:\"Normal 400\";}}s:7:\"subsets\";a:1:{i:0;a:2:{s:2:\"id\";s:5:\"latin\";s:4:\"name\";s:5:\"Latin\";}}}s:20:\"IM Fell French Canon\";a:2:{s:8:\"variants\";a:2:{i:0;a:2:{s:2:\"id\";s:3:\"400\";s:4:\"name\";s:10:\"Normal 400\";}i:1;a:2:{s:2:\"id\";s:9:\"400italic\";s:4:\"name\";s:17:\"Normal 400 Italic\";}}s:7:\"subsets\";a:1:{i:0;a:2:{s:2:\"id\";s:5:\"latin\";s:4:\"name\";s:5:\"Latin\";}}}s:23:\"IM Fell French Canon SC\";a:2:{s:8:\"variants\";a:1:{i:0;a:2:{s:2:\"id\";s:3:\"400\";s:4:\"name\";s:10:\"Normal 400\";}}s:7:\"subsets\";a:1:{i:0;a:2:{s:2:\"id\";s:5:\"latin\";s:4:\"name\";s:5:\"Latin\";}}}s:20:\"IM Fell Great Primer\";a:2:{s:8:\"variants\";a:2:{i:0;a:2:{s:2:\"id\";s:3:\"400\";s:4:\"name\";s:10:\"Normal 400\";}i:1;a:2:{s:2:\"id\";s:9:\"400italic\";s:4:\"name\";s:17:\"Normal 400 Italic\";}}s:7:\"subsets\";a:1:{i:0;a:2:{s:2:\"id\";s:5:\"latin\";s:4:\"name\";s:5:\"Latin\";}}}s:23:\"IM Fell Great Primer SC\";a:2:{s:8:\"variants\";a:1:{i:0;a:2:{s:2:\"id\";s:3:\"400\";s:4:\"name\";s:10:\"Normal 400\";}}s:7:\"subsets\";a:1:{i:0;a:2:{s:2:\"id\";s:5:\"latin\";s:4:\"name\";s:5:\"Latin\";}}}s:7:\"Iceberg\";a:2:{s:8:\"variants\";a:1:{i:0;a:2:{s:2:\"id\";s:3:\"400\";s:4:\"name\";s:10:\"Normal 400\";}}s:7:\"subsets\";a:1:{i:0;a:2:{s:2:\"id\";s:5:\"latin\";s:4:\"name\";s:5:\"Latin\";}}}s:7:\"Iceland\";a:2:{s:8:\"variants\";a:1:{i:0;a:2:{s:2:\"id\";s:3:\"400\";s:4:\"name\";s:10:\"Normal 400\";}}s:7:\"subsets\";a:1:{i:0;a:2:{s:2:\"id\";s:5:\"latin\";s:4:\"name\";s:5:\"Latin\";}}}s:7:\"Imprima\";a:2:{s:8:\"variants\";a:1:{i:0;a:2:{s:2:\"id\";s:3:\"400\";s:4:\"name\";s:10:\"Normal 400\";}}s:7:\"subsets\";a:2:{i:0;a:2:{s:2:\"id\";s:9:\"latin-ext\";s:4:\"name\";s:14:\"Latin Extended\";}i:1;a:2:{s:2:\"id\";s:5:\"latin\";s:4:\"name\";s:5:\"Latin\";}}}s:11:\"Inconsolata\";a:2:{s:8:\"variants\";a:2:{i:0;a:2:{s:2:\"id\";s:3:\"400\";s:4:\"name\";s:10:\"Normal 400\";}i:1;a:2:{s:2:\"id\";s:3:\"700\";s:4:\"name\";s:8:\"Bold 700\";}}s:7:\"subsets\";a:2:{i:0;a:2:{s:2:\"id\";s:9:\"latin-ext\";s:4:\"name\";s:14:\"Latin Extended\";}i:1;a:2:{s:2:\"id\";s:5:\"latin\";s:4:\"name\";s:5:\"Latin\";}}}s:5:\"Inder\";a:2:{s:8:\"variants\";a:1:{i:0;a:2:{s:2:\"id\";s:3:\"400\";s:4:\"name\";s:10:\"Normal 400\";}}s:7:\"subsets\";a:2:{i:0;a:2:{s:2:\"id\";s:9:\"latin-ext\";s:4:\"name\";s:14:\"Latin Extended\";}i:1;a:2:{s:2:\"id\";s:5:\"latin\";s:4:\"name\";s:5:\"Latin\";}}}s:12:\"Indie Flower\";a:2:{s:8:\"variants\";a:1:{i:0;a:2:{s:2:\"id\";s:3:\"400\";s:4:\"name\";s:10:\"Normal 400\";}}s:7:\"subsets\";a:1:{i:0;a:2:{s:2:\"id\";s:5:\"latin\";s:4:\"name\";s:5:\"Latin\";}}}s:5:\"Inika\";a:2:{s:8:\"variants\";a:2:{i:0;a:2:{s:2:\"id\";s:3:\"400\";s:4:\"name\";s:10:\"Normal 400\";}i:1;a:2:{s:2:\"id\";s:3:\"700\";s:4:\"name\";s:8:\"Bold 700\";}}s:7:\"subsets\";a:2:{i:0;a:2:{s:2:\"id\";s:9:\"latin-ext\";s:4:\"name\";s:14:\"Latin Extended\";}i:1;a:2:{s:2:\"id\";s:5:\"latin\";s:4:\"name\";s:5:\"Latin\";}}}s:14:\"Inknut Antiqua\";a:2:{s:8:\"variants\";a:7:{i:0;a:2:{s:2:\"id\";s:3:\"300\";s:4:\"name\";s:8:\"Book 300\";}i:1;a:2:{s:2:\"id\";s:3:\"400\";s:4:\"name\";s:10:\"Normal 400\";}i:2;a:2:{s:2:\"id\";s:3:\"500\";s:4:\"name\";s:10:\"Medium 500\";}i:3;a:2:{s:2:\"id\";s:3:\"600\";s:4:\"name\";s:13:\"Semi-Bold 600\";}i:4;a:2:{s:2:\"id\";s:3:\"700\";s:4:\"name\";s:8:\"Bold 700\";}i:5;a:2:{s:2:\"id\";s:3:\"800\";s:4:\"name\";s:14:\"Extra-Bold 800\";}i:6;a:2:{s:2:\"id\";s:3:\"900\";s:4:\"name\";s:14:\"Ultra-Bold 900\";}}s:7:\"subsets\";a:3:{i:0;a:2:{s:2:\"id\";s:9:\"latin-ext\";s:4:\"name\";s:14:\"Latin Extended\";}i:1;a:2:{s:2:\"id\";s:5:\"latin\";s:4:\"name\";s:5:\"Latin\";}i:2;a:2:{s:2:\"id\";s:10:\"devanagari\";s:4:\"name\";s:10:\"Devanagari\";}}}s:12:\"Irish Grover\";a:2:{s:8:\"variants\";a:1:{i:0;a:2:{s:2:\"id\";s:3:\"400\";s:4:\"name\";s:10:\"Normal 400\";}}s:7:\"subsets\";a:1:{i:0;a:2:{s:2:\"id\";s:5:\"latin\";s:4:\"name\";s:5:\"Latin\";}}}s:9:\"Istok Web\";a:2:{s:8:\"variants\";a:4:{i:0;a:2:{s:2:\"id\";s:3:\"400\";s:4:\"name\";s:10:\"Normal 400\";}i:1;a:2:{s:2:\"id\";s:9:\"400italic\";s:4:\"name\";s:17:\"Normal 400 Italic\";}i:2;a:2:{s:2:\"id\";s:3:\"700\";s:4:\"name\";s:8:\"Bold 700\";}i:3;a:2:{s:2:\"id\";s:9:\"700italic\";s:4:\"name\";s:15:\"Bold 700 Italic\";}}s:7:\"subsets\";a:4:{i:0;a:2:{s:2:\"id\";s:12:\"cyrillic-ext\";s:4:\"name\";s:17:\"Cyrillic Extended\";}i:1;a:2:{s:2:\"id\";s:9:\"latin-ext\";s:4:\"name\";s:14:\"Latin Extended\";}i:2;a:2:{s:2:\"id\";s:8:\"cyrillic\";s:4:\"name\";s:8:\"Cyrillic\";}i:3;a:2:{s:2:\"id\";s:5:\"latin\";s:4:\"name\";s:5:\"Latin\";}}}s:8:\"Italiana\";a:2:{s:8:\"variants\";a:1:{i:0;a:2:{s:2:\"id\";s:3:\"400\";s:4:\"name\";s:10:\"Normal 400\";}}s:7:\"subsets\";a:1:{i:0;a:2:{s:2:\"id\";s:5:\"latin\";s:4:\"name\";s:5:\"Latin\";}}}s:9:\"Italianno\";a:2:{s:8:\"variants\";a:1:{i:0;a:2:{s:2:\"id\";s:3:\"400\";s:4:\"name\";s:10:\"Normal 400\";}}s:7:\"subsets\";a:2:{i:0;a:2:{s:2:\"id\";s:9:\"latin-ext\";s:4:\"name\";s:14:\"Latin Extended\";}i:1;a:2:{s:2:\"id\";s:5:\"latin\";s:4:\"name\";s:5:\"Latin\";}}}s:4:\"Itim\";a:2:{s:8:\"variants\";a:1:{i:0;a:2:{s:2:\"id\";s:3:\"400\";s:4:\"name\";s:10:\"Normal 400\";}}s:7:\"subsets\";a:4:{i:0;a:2:{s:2:\"id\";s:9:\"latin-ext\";s:4:\"name\";s:14:\"Latin Extended\";}i:1;a:2:{s:2:\"id\";s:10:\"vietnamese\";s:4:\"name\";s:10:\"Vietnamese\";}i:2;a:2:{s:2:\"id\";s:4:\"thai\";s:4:\"name\";s:4:\"Thai\";}i:3;a:2:{s:2:\"id\";s:5:\"latin\";s:4:\"name\";s:5:\"Latin\";}}}s:16:\"Jacques Francois\";a:2:{s:8:\"variants\";a:1:{i:0;a:2:{s:2:\"id\";s:3:\"400\";s:4:\"name\";s:10:\"Normal 400\";}}s:7:\"subsets\";a:1:{i:0;a:2:{s:2:\"id\";s:5:\"latin\";s:4:\"name\";s:5:\"Latin\";}}}s:23:\"Jacques Francois Shadow\";a:2:{s:8:\"variants\";a:1:{i:0;a:2:{s:2:\"id\";s:3:\"400\";s:4:\"name\";s:10:\"Normal 400\";}}s:7:\"subsets\";a:1:{i:0;a:2:{s:2:\"id\";s:5:\"latin\";s:4:\"name\";s:5:\"Latin\";}}}s:5:\"Jaldi\";a:2:{s:8:\"variants\";a:2:{i:0;a:2:{s:2:\"id\";s:3:\"400\";s:4:\"name\";s:10:\"Normal 400\";}i:1;a:2:{s:2:\"id\";s:3:\"700\";s:4:\"name\";s:8:\"Bold 700\";}}s:7:\"subsets\";a:3:{i:0;a:2:{s:2:\"id\";s:9:\"latin-ext\";s:4:\"name\";s:14:\"Latin Extended\";}i:1;a:2:{s:2:\"id\";s:5:\"latin\";s:4:\"name\";s:5:\"Latin\";}i:2;a:2:{s:2:\"id\";s:10:\"devanagari\";s:4:\"name\";s:10:\"Devanagari\";}}}s:14:\"Jim Nightshade\";a:2:{s:8:\"variants\";a:1:{i:0;a:2:{s:2:\"id\";s:3:\"400\";s:4:\"name\";s:10:\"Normal 400\";}}s:7:\"subsets\";a:2:{i:0;a:2:{s:2:\"id\";s:9:\"latin-ext\";s:4:\"name\";s:14:\"Latin Extended\";}i:1;a:2:{s:2:\"id\";s:5:\"latin\";s:4:\"name\";s:5:\"Latin\";}}}s:10:\"Jockey One\";a:2:{s:8:\"variants\";a:1:{i:0;a:2:{s:2:\"id\";s:3:\"400\";s:4:\"name\";s:10:\"Normal 400\";}}s:7:\"subsets\";a:2:{i:0;a:2:{s:2:\"id\";s:9:\"latin-ext\";s:4:\"name\";s:14:\"Latin Extended\";}i:1;a:2:{s:2:\"id\";s:5:\"latin\";s:4:\"name\";s:5:\"Latin\";}}}s:12:\"Jolly Lodger\";a:2:{s:8:\"variants\";a:1:{i:0;a:2:{s:2:\"id\";s:3:\"400\";s:4:\"name\";s:10:\"Normal 400\";}}s:7:\"subsets\";a:2:{i:0;a:2:{s:2:\"id\";s:9:\"latin-ext\";s:4:\"name\";s:14:\"Latin Extended\";}i:1;a:2:{s:2:\"id\";s:5:\"latin\";s:4:\"name\";s:5:\"Latin\";}}}s:12:\"Josefin Sans\";a:2:{s:8:\"variants\";a:10:{i:0;a:2:{s:2:\"id\";s:3:\"100\";s:4:\"name\";s:15:\"Ultra-Light 100\";}i:1;a:2:{s:2:\"id\";s:9:\"100italic\";s:4:\"name\";s:22:\"Ultra-Light 100 Italic\";}i:2;a:2:{s:2:\"id\";s:3:\"300\";s:4:\"name\";s:8:\"Book 300\";}i:3;a:2:{s:2:\"id\";s:9:\"300italic\";s:4:\"name\";s:15:\"Book 300 Italic\";}i:4;a:2:{s:2:\"id\";s:3:\"400\";s:4:\"name\";s:10:\"Normal 400\";}i:5;a:2:{s:2:\"id\";s:9:\"400italic\";s:4:\"name\";s:17:\"Normal 400 Italic\";}i:6;a:2:{s:2:\"id\";s:3:\"600\";s:4:\"name\";s:13:\"Semi-Bold 600\";}i:7;a:2:{s:2:\"id\";s:9:\"600italic\";s:4:\"name\";s:20:\"Semi-Bold 600 Italic\";}i:8;a:2:{s:2:\"id\";s:3:\"700\";s:4:\"name\";s:8:\"Bold 700\";}i:9;a:2:{s:2:\"id\";s:9:\"700italic\";s:4:\"name\";s:15:\"Bold 700 Italic\";}}s:7:\"subsets\";a:2:{i:0;a:2:{s:2:\"id\";s:9:\"latin-ext\";s:4:\"name\";s:14:\"Latin Extended\";}i:1;a:2:{s:2:\"id\";s:5:\"latin\";s:4:\"name\";s:5:\"Latin\";}}}s:12:\"Josefin Slab\";a:2:{s:8:\"variants\";a:10:{i:0;a:2:{s:2:\"id\";s:3:\"100\";s:4:\"name\";s:15:\"Ultra-Light 100\";}i:1;a:2:{s:2:\"id\";s:9:\"100italic\";s:4:\"name\";s:22:\"Ultra-Light 100 Italic\";}i:2;a:2:{s:2:\"id\";s:3:\"300\";s:4:\"name\";s:8:\"Book 300\";}i:3;a:2:{s:2:\"id\";s:9:\"300italic\";s:4:\"name\";s:15:\"Book 300 Italic\";}i:4;a:2:{s:2:\"id\";s:3:\"400\";s:4:\"name\";s:10:\"Normal 400\";}i:5;a:2:{s:2:\"id\";s:9:\"400italic\";s:4:\"name\";s:17:\"Normal 400 Italic\";}i:6;a:2:{s:2:\"id\";s:3:\"600\";s:4:\"name\";s:13:\"Semi-Bold 600\";}i:7;a:2:{s:2:\"id\";s:9:\"600italic\";s:4:\"name\";s:20:\"Semi-Bold 600 Italic\";}i:8;a:2:{s:2:\"id\";s:3:\"700\";s:4:\"name\";s:8:\"Bold 700\";}i:9;a:2:{s:2:\"id\";s:9:\"700italic\";s:4:\"name\";s:15:\"Bold 700 Italic\";}}s:7:\"subsets\";a:1:{i:0;a:2:{s:2:\"id\";s:5:\"latin\";s:4:\"name\";s:5:\"Latin\";}}}s:8:\"Joti One\";a:2:{s:8:\"variants\";a:1:{i:0;a:2:{s:2:\"id\";s:3:\"400\";s:4:\"name\";s:10:\"Normal 400\";}}s:7:\"subsets\";a:2:{i:0;a:2:{s:2:\"id\";s:9:\"latin-ext\";s:4:\"name\";s:14:\"Latin Extended\";}i:1;a:2:{s:2:\"id\";s:5:\"latin\";s:4:\"name\";s:5:\"Latin\";}}}s:6:\"Judson\";a:2:{s:8:\"variants\";a:3:{i:0;a:2:{s:2:\"id\";s:3:\"400\";s:4:\"name\";s:10:\"Normal 400\";}i:1;a:2:{s:2:\"id\";s:9:\"400italic\";s:4:\"name\";s:17:\"Normal 400 Italic\";}i:2;a:2:{s:2:\"id\";s:3:\"700\";s:4:\"name\";s:8:\"Bold 700\";}}s:7:\"subsets\";a:3:{i:0;a:2:{s:2:\"id\";s:9:\"latin-ext\";s:4:\"name\";s:14:\"Latin Extended\";}i:1;a:2:{s:2:\"id\";s:10:\"vietnamese\";s:4:\"name\";s:10:\"Vietnamese\";}i:2;a:2:{s:2:\"id\";s:5:\"latin\";s:4:\"name\";s:5:\"Latin\";}}}s:5:\"Julee\";a:2:{s:8:\"variants\";a:1:{i:0;a:2:{s:2:\"id\";s:3:\"400\";s:4:\"name\";s:10:\"Normal 400\";}}s:7:\"subsets\";a:1:{i:0;a:2:{s:2:\"id\";s:5:\"latin\";s:4:\"name\";s:5:\"Latin\";}}}s:15:\"Julius Sans One\";a:2:{s:8:\"variants\";a:1:{i:0;a:2:{s:2:\"id\";s:3:\"400\";s:4:\"name\";s:10:\"Normal 400\";}}s:7:\"subsets\";a:2:{i:0;a:2:{s:2:\"id\";s:9:\"latin-ext\";s:4:\"name\";s:14:\"Latin Extended\";}i:1;a:2:{s:2:\"id\";s:5:\"latin\";s:4:\"name\";s:5:\"Latin\";}}}s:5:\"Junge\";a:2:{s:8:\"variants\";a:1:{i:0;a:2:{s:2:\"id\";s:3:\"400\";s:4:\"name\";s:10:\"Normal 400\";}}s:7:\"subsets\";a:1:{i:0;a:2:{s:2:\"id\";s:5:\"latin\";s:4:\"name\";s:5:\"Latin\";}}}s:4:\"Jura\";a:2:{s:8:\"variants\";a:4:{i:0;a:2:{s:2:\"id\";s:3:\"300\";s:4:\"name\";s:8:\"Book 300\";}i:1;a:2:{s:2:\"id\";s:3:\"400\";s:4:\"name\";s:10:\"Normal 400\";}i:2;a:2:{s:2:\"id\";s:3:\"500\";s:4:\"name\";s:10:\"Medium 500\";}i:3;a:2:{s:2:\"id\";s:3:\"600\";s:4:\"name\";s:13:\"Semi-Bold 600\";}}s:7:\"subsets\";a:5:{i:0;a:2:{s:2:\"id\";s:12:\"cyrillic-ext\";s:4:\"name\";s:17:\"Cyrillic Extended\";}i:1;a:2:{s:2:\"id\";s:9:\"latin-ext\";s:4:\"name\";s:14:\"Latin Extended\";}i:2;a:2:{s:2:\"id\";s:8:\"cyrillic\";s:4:\"name\";s:8:\"Cyrillic\";}i:3;a:2:{s:2:\"id\";s:5:\"latin\";s:4:\"name\";s:5:\"Latin\";}i:4;a:2:{s:2:\"id\";s:5:\"greek\";s:4:\"name\";s:5:\"Greek\";}}}s:17:\"Just Another Hand\";a:2:{s:8:\"variants\";a:1:{i:0;a:2:{s:2:\"id\";s:3:\"400\";s:4:\"name\";s:10:\"Normal 400\";}}s:7:\"subsets\";a:1:{i:0;a:2:{s:2:\"id\";s:5:\"latin\";s:4:\"name\";s:5:\"Latin\";}}}s:23:\"Just Me Again Down Here\";a:2:{s:8:\"variants\";a:1:{i:0;a:2:{s:2:\"id\";s:3:\"400\";s:4:\"name\";s:10:\"Normal 400\";}}s:7:\"subsets\";a:2:{i:0;a:2:{s:2:\"id\";s:9:\"latin-ext\";s:4:\"name\";s:14:\"Latin Extended\";}i:1;a:2:{s:2:\"id\";s:5:\"latin\";s:4:\"name\";s:5:\"Latin\";}}}s:5:\"Kadwa\";a:2:{s:8:\"variants\";a:2:{i:0;a:2:{s:2:\"id\";s:3:\"400\";s:4:\"name\";s:10:\"Normal 400\";}i:1;a:2:{s:2:\"id\";s:3:\"700\";s:4:\"name\";s:8:\"Bold 700\";}}s:7:\"subsets\";a:2:{i:0;a:2:{s:2:\"id\";s:5:\"latin\";s:4:\"name\";s:5:\"Latin\";}i:1;a:2:{s:2:\"id\";s:10:\"devanagari\";s:4:\"name\";s:10:\"Devanagari\";}}}s:5:\"Kalam\";a:2:{s:8:\"variants\";a:3:{i:0;a:2:{s:2:\"id\";s:3:\"300\";s:4:\"name\";s:8:\"Book 300\";}i:1;a:2:{s:2:\"id\";s:3:\"400\";s:4:\"name\";s:10:\"Normal 400\";}i:2;a:2:{s:2:\"id\";s:3:\"700\";s:4:\"name\";s:8:\"Bold 700\";}}s:7:\"subsets\";a:3:{i:0;a:2:{s:2:\"id\";s:9:\"latin-ext\";s:4:\"name\";s:14:\"Latin Extended\";}i:1;a:2:{s:2:\"id\";s:5:\"latin\";s:4:\"name\";s:5:\"Latin\";}i:2;a:2:{s:2:\"id\";s:10:\"devanagari\";s:4:\"name\";s:10:\"Devanagari\";}}}s:7:\"Kameron\";a:2:{s:8:\"variants\";a:2:{i:0;a:2:{s:2:\"id\";s:3:\"400\";s:4:\"name\";s:10:\"Normal 400\";}i:1;a:2:{s:2:\"id\";s:3:\"700\";s:4:\"name\";s:8:\"Bold 700\";}}s:7:\"subsets\";a:1:{i:0;a:2:{s:2:\"id\";s:5:\"latin\";s:4:\"name\";s:5:\"Latin\";}}}s:5:\"Kanit\";a:2:{s:8:\"variants\";a:18:{i:0;a:2:{s:2:\"id\";s:3:\"100\";s:4:\"name\";s:15:\"Ultra-Light 100\";}i:1;a:2:{s:2:\"id\";s:9:\"100italic\";s:4:\"name\";s:22:\"Ultra-Light 100 Italic\";}i:2;a:2:{s:2:\"id\";s:3:\"200\";s:4:\"name\";s:9:\"Light 200\";}i:3;a:2:{s:2:\"id\";s:9:\"200italic\";s:4:\"name\";s:16:\"Light 200 Italic\";}i:4;a:2:{s:2:\"id\";s:3:\"300\";s:4:\"name\";s:8:\"Book 300\";}i:5;a:2:{s:2:\"id\";s:9:\"300italic\";s:4:\"name\";s:15:\"Book 300 Italic\";}i:6;a:2:{s:2:\"id\";s:3:\"400\";s:4:\"name\";s:10:\"Normal 400\";}i:7;a:2:{s:2:\"id\";s:9:\"400italic\";s:4:\"name\";s:17:\"Normal 400 Italic\";}i:8;a:2:{s:2:\"id\";s:3:\"500\";s:4:\"name\";s:10:\"Medium 500\";}i:9;a:2:{s:2:\"id\";s:9:\"500italic\";s:4:\"name\";s:17:\"Medium 500 Italic\";}i:10;a:2:{s:2:\"id\";s:3:\"600\";s:4:\"name\";s:13:\"Semi-Bold 600\";}i:11;a:2:{s:2:\"id\";s:9:\"600italic\";s:4:\"name\";s:20:\"Semi-Bold 600 Italic\";}i:12;a:2:{s:2:\"id\";s:3:\"700\";s:4:\"name\";s:8:\"Bold 700\";}i:13;a:2:{s:2:\"id\";s:9:\"700italic\";s:4:\"name\";s:15:\"Bold 700 Italic\";}i:14;a:2:{s:2:\"id\";s:3:\"800\";s:4:\"name\";s:14:\"Extra-Bold 800\";}i:15;a:2:{s:2:\"id\";s:9:\"800italic\";s:4:\"name\";s:21:\"Extra-Bold 800 Italic\";}i:16;a:2:{s:2:\"id\";s:3:\"900\";s:4:\"name\";s:14:\"Ultra-Bold 900\";}i:17;a:2:{s:2:\"id\";s:9:\"900italic\";s:4:\"name\";s:21:\"Ultra-Bold 900 Italic\";}}s:7:\"subsets\";a:4:{i:0;a:2:{s:2:\"id\";s:9:\"latin-ext\";s:4:\"name\";s:14:\"Latin Extended\";}i:1;a:2:{s:2:\"id\";s:10:\"vietnamese\";s:4:\"name\";s:10:\"Vietnamese\";}i:2;a:2:{s:2:\"id\";s:4:\"thai\";s:4:\"name\";s:4:\"Thai\";}i:3;a:2:{s:2:\"id\";s:5:\"latin\";s:4:\"name\";s:5:\"Latin\";}}}s:9:\"Kantumruy\";a:2:{s:8:\"variants\";a:3:{i:0;a:2:{s:2:\"id\";s:3:\"300\";s:4:\"name\";s:8:\"Book 300\";}i:1;a:2:{s:2:\"id\";s:3:\"400\";s:4:\"name\";s:10:\"Normal 400\";}i:2;a:2:{s:2:\"id\";s:3:\"700\";s:4:\"name\";s:8:\"Bold 700\";}}s:7:\"subsets\";a:1:{i:0;a:2:{s:2:\"id\";s:5:\"khmer\";s:4:\"name\";s:5:\"Khmer\";}}}s:5:\"Karla\";a:2:{s:8:\"variants\";a:4:{i:0;a:2:{s:2:\"id\";s:3:\"400\";s:4:\"name\";s:10:\"Normal 400\";}i:1;a:2:{s:2:\"id\";s:9:\"400italic\";s:4:\"name\";s:17:\"Normal 400 Italic\";}i:2;a:2:{s:2:\"id\";s:3:\"700\";s:4:\"name\";s:8:\"Bold 700\";}i:3;a:2:{s:2:\"id\";s:9:\"700italic\";s:4:\"name\";s:15:\"Bold 700 Italic\";}}s:7:\"subsets\";a:2:{i:0;a:2:{s:2:\"id\";s:9:\"latin-ext\";s:4:\"name\";s:14:\"Latin Extended\";}i:1;a:2:{s:2:\"id\";s:5:\"latin\";s:4:\"name\";s:5:\"Latin\";}}}s:5:\"Karma\";a:2:{s:8:\"variants\";a:5:{i:0;a:2:{s:2:\"id\";s:3:\"300\";s:4:\"name\";s:8:\"Book 300\";}i:1;a:2:{s:2:\"id\";s:3:\"400\";s:4:\"name\";s:10:\"Normal 400\";}i:2;a:2:{s:2:\"id\";s:3:\"500\";s:4:\"name\";s:10:\"Medium 500\";}i:3;a:2:{s:2:\"id\";s:3:\"600\";s:4:\"name\";s:13:\"Semi-Bold 600\";}i:4;a:2:{s:2:\"id\";s:3:\"700\";s:4:\"name\";s:8:\"Bold 700\";}}s:7:\"subsets\";a:3:{i:0;a:2:{s:2:\"id\";s:9:\"latin-ext\";s:4:\"name\";s:14:\"Latin Extended\";}i:1;a:2:{s:2:\"id\";s:5:\"latin\";s:4:\"name\";s:5:\"Latin\";}i:2;a:2:{s:2:\"id\";s:10:\"devanagari\";s:4:\"name\";s:10:\"Devanagari\";}}}s:14:\"Kaushan Script\";a:2:{s:8:\"variants\";a:1:{i:0;a:2:{s:2:\"id\";s:3:\"400\";s:4:\"name\";s:10:\"Normal 400\";}}s:7:\"subsets\";a:2:{i:0;a:2:{s:2:\"id\";s:9:\"latin-ext\";s:4:\"name\";s:14:\"Latin Extended\";}i:1;a:2:{s:2:\"id\";s:5:\"latin\";s:4:\"name\";s:5:\"Latin\";}}}s:6:\"Kavoon\";a:2:{s:8:\"variants\";a:1:{i:0;a:2:{s:2:\"id\";s:3:\"400\";s:4:\"name\";s:10:\"Normal 400\";}}s:7:\"subsets\";a:2:{i:0;a:2:{s:2:\"id\";s:9:\"latin-ext\";s:4:\"name\";s:14:\"Latin Extended\";}i:1;a:2:{s:2:\"id\";s:5:\"latin\";s:4:\"name\";s:5:\"Latin\";}}}s:10:\"Kdam Thmor\";a:2:{s:8:\"variants\";a:1:{i:0;a:2:{s:2:\"id\";s:3:\"400\";s:4:\"name\";s:10:\"Normal 400\";}}s:7:\"subsets\";a:1:{i:0;a:2:{s:2:\"id\";s:5:\"khmer\";s:4:\"name\";s:5:\"Khmer\";}}}s:10:\"Keania One\";a:2:{s:8:\"variants\";a:1:{i:0;a:2:{s:2:\"id\";s:3:\"400\";s:4:\"name\";s:10:\"Normal 400\";}}s:7:\"subsets\";a:2:{i:0;a:2:{s:2:\"id\";s:9:\"latin-ext\";s:4:\"name\";s:14:\"Latin Extended\";}i:1;a:2:{s:2:\"id\";s:5:\"latin\";s:4:\"name\";s:5:\"Latin\";}}}s:10:\"Kelly Slab\";a:2:{s:8:\"variants\";a:1:{i:0;a:2:{s:2:\"id\";s:3:\"400\";s:4:\"name\";s:10:\"Normal 400\";}}s:7:\"subsets\";a:3:{i:0;a:2:{s:2:\"id\";s:9:\"latin-ext\";s:4:\"name\";s:14:\"Latin Extended\";}i:1;a:2:{s:2:\"id\";s:8:\"cyrillic\";s:4:\"name\";s:8:\"Cyrillic\";}i:2;a:2:{s:2:\"id\";s:5:\"latin\";s:4:\"name\";s:5:\"Latin\";}}}s:5:\"Kenia\";a:2:{s:8:\"variants\";a:1:{i:0;a:2:{s:2:\"id\";s:3:\"400\";s:4:\"name\";s:10:\"Normal 400\";}}s:7:\"subsets\";a:1:{i:0;a:2:{s:2:\"id\";s:5:\"latin\";s:4:\"name\";s:5:\"Latin\";}}}s:5:\"Khand\";a:2:{s:8:\"variants\";a:5:{i:0;a:2:{s:2:\"id\";s:3:\"300\";s:4:\"name\";s:8:\"Book 300\";}i:1;a:2:{s:2:\"id\";s:3:\"400\";s:4:\"name\";s:10:\"Normal 400\";}i:2;a:2:{s:2:\"id\";s:3:\"500\";s:4:\"name\";s:10:\"Medium 500\";}i:3;a:2:{s:2:\"id\";s:3:\"600\";s:4:\"name\";s:13:\"Semi-Bold 600\";}i:4;a:2:{s:2:\"id\";s:3:\"700\";s:4:\"name\";s:8:\"Bold 700\";}}s:7:\"subsets\";a:3:{i:0;a:2:{s:2:\"id\";s:9:\"latin-ext\";s:4:\"name\";s:14:\"Latin Extended\";}i:1;a:2:{s:2:\"id\";s:5:\"latin\";s:4:\"name\";s:5:\"Latin\";}i:2;a:2:{s:2:\"id\";s:10:\"devanagari\";s:4:\"name\";s:10:\"Devanagari\";}}}s:5:\"Khmer\";a:2:{s:8:\"variants\";a:1:{i:0;a:2:{s:2:\"id\";s:3:\"400\";s:4:\"name\";s:10:\"Normal 400\";}}s:7:\"subsets\";a:1:{i:0;a:2:{s:2:\"id\";s:5:\"khmer\";s:4:\"name\";s:5:\"Khmer\";}}}s:5:\"Khula\";a:2:{s:8:\"variants\";a:5:{i:0;a:2:{s:2:\"id\";s:3:\"300\";s:4:\"name\";s:8:\"Book 300\";}i:1;a:2:{s:2:\"id\";s:3:\"400\";s:4:\"name\";s:10:\"Normal 400\";}i:2;a:2:{s:2:\"id\";s:3:\"600\";s:4:\"name\";s:13:\"Semi-Bold 600\";}i:3;a:2:{s:2:\"id\";s:3:\"700\";s:4:\"name\";s:8:\"Bold 700\";}i:4;a:2:{s:2:\"id\";s:3:\"800\";s:4:\"name\";s:14:\"Extra-Bold 800\";}}s:7:\"subsets\";a:3:{i:0;a:2:{s:2:\"id\";s:9:\"latin-ext\";s:4:\"name\";s:14:\"Latin Extended\";}i:1;a:2:{s:2:\"id\";s:5:\"latin\";s:4:\"name\";s:5:\"Latin\";}i:2;a:2:{s:2:\"id\";s:10:\"devanagari\";s:4:\"name\";s:10:\"Devanagari\";}}}s:8:\"Kite One\";a:2:{s:8:\"variants\";a:1:{i:0;a:2:{s:2:\"id\";s:3:\"400\";s:4:\"name\";s:10:\"Normal 400\";}}s:7:\"subsets\";a:1:{i:0;a:2:{s:2:\"id\";s:5:\"latin\";s:4:\"name\";s:5:\"Latin\";}}}s:7:\"Knewave\";a:2:{s:8:\"variants\";a:1:{i:0;a:2:{s:2:\"id\";s:3:\"400\";s:4:\"name\";s:10:\"Normal 400\";}}s:7:\"subsets\";a:2:{i:0;a:2:{s:2:\"id\";s:9:\"latin-ext\";s:4:\"name\";s:14:\"Latin Extended\";}i:1;a:2:{s:2:\"id\";s:5:\"latin\";s:4:\"name\";s:5:\"Latin\";}}}s:9:\"Kotta One\";a:2:{s:8:\"variants\";a:1:{i:0;a:2:{s:2:\"id\";s:3:\"400\";s:4:\"name\";s:10:\"Normal 400\";}}s:7:\"subsets\";a:2:{i:0;a:2:{s:2:\"id\";s:9:\"latin-ext\";s:4:\"name\";s:14:\"Latin Extended\";}i:1;a:2:{s:2:\"id\";s:5:\"latin\";s:4:\"name\";s:5:\"Latin\";}}}s:6:\"Koulen\";a:2:{s:8:\"variants\";a:1:{i:0;a:2:{s:2:\"id\";s:3:\"400\";s:4:\"name\";s:10:\"Normal 400\";}}s:7:\"subsets\";a:1:{i:0;a:2:{s:2:\"id\";s:5:\"khmer\";s:4:\"name\";s:5:\"Khmer\";}}}s:6:\"Kranky\";a:2:{s:8:\"variants\";a:1:{i:0;a:2:{s:2:\"id\";s:3:\"400\";s:4:\"name\";s:10:\"Normal 400\";}}s:7:\"subsets\";a:1:{i:0;a:2:{s:2:\"id\";s:5:\"latin\";s:4:\"name\";s:5:\"Latin\";}}}s:5:\"Kreon\";a:2:{s:8:\"variants\";a:3:{i:0;a:2:{s:2:\"id\";s:3:\"300\";s:4:\"name\";s:8:\"Book 300\";}i:1;a:2:{s:2:\"id\";s:3:\"400\";s:4:\"name\";s:10:\"Normal 400\";}i:2;a:2:{s:2:\"id\";s:3:\"700\";s:4:\"name\";s:8:\"Bold 700\";}}s:7:\"subsets\";a:1:{i:0;a:2:{s:2:\"id\";s:5:\"latin\";s:4:\"name\";s:5:\"Latin\";}}}s:6:\"Kristi\";a:2:{s:8:\"variants\";a:1:{i:0;a:2:{s:2:\"id\";s:3:\"400\";s:4:\"name\";s:10:\"Normal 400\";}}s:7:\"subsets\";a:1:{i:0;a:2:{s:2:\"id\";s:5:\"latin\";s:4:\"name\";s:5:\"Latin\";}}}s:9:\"Krona One\";a:2:{s:8:\"variants\";a:1:{i:0;a:2:{s:2:\"id\";s:3:\"400\";s:4:\"name\";s:10:\"Normal 400\";}}s:7:\"subsets\";a:2:{i:0;a:2:{s:2:\"id\";s:9:\"latin-ext\";s:4:\"name\";s:14:\"Latin Extended\";}i:1;a:2:{s:2:\"id\";s:5:\"latin\";s:4:\"name\";s:5:\"Latin\";}}}s:6:\"Kurale\";a:2:{s:8:\"variants\";a:1:{i:0;a:2:{s:2:\"id\";s:3:\"400\";s:4:\"name\";s:10:\"Normal 400\";}}s:7:\"subsets\";a:4:{i:0;a:2:{s:2:\"id\";s:9:\"latin-ext\";s:4:\"name\";s:14:\"Latin Extended\";}i:1;a:2:{s:2:\"id\";s:8:\"cyrillic\";s:4:\"name\";s:8:\"Cyrillic\";}i:2;a:2:{s:2:\"id\";s:5:\"latin\";s:4:\"name\";s:5:\"Latin\";}i:3;a:2:{s:2:\"id\";s:10:\"devanagari\";s:4:\"name\";s:10:\"Devanagari\";}}}s:15:\"La Belle Aurore\";a:2:{s:8:\"variants\";a:1:{i:0;a:2:{s:2:\"id\";s:3:\"400\";s:4:\"name\";s:10:\"Normal 400\";}}s:7:\"subsets\";a:1:{i:0;a:2:{s:2:\"id\";s:5:\"latin\";s:4:\"name\";s:5:\"Latin\";}}}s:5:\"Laila\";a:2:{s:8:\"variants\";a:5:{i:0;a:2:{s:2:\"id\";s:3:\"300\";s:4:\"name\";s:8:\"Book 300\";}i:1;a:2:{s:2:\"id\";s:3:\"400\";s:4:\"name\";s:10:\"Normal 400\";}i:2;a:2:{s:2:\"id\";s:3:\"500\";s:4:\"name\";s:10:\"Medium 500\";}i:3;a:2:{s:2:\"id\";s:3:\"600\";s:4:\"name\";s:13:\"Semi-Bold 600\";}i:4;a:2:{s:2:\"id\";s:3:\"700\";s:4:\"name\";s:8:\"Bold 700\";}}s:7:\"subsets\";a:3:{i:0;a:2:{s:2:\"id\";s:9:\"latin-ext\";s:4:\"name\";s:14:\"Latin Extended\";}i:1;a:2:{s:2:\"id\";s:5:\"latin\";s:4:\"name\";s:5:\"Latin\";}i:2;a:2:{s:2:\"id\";s:10:\"devanagari\";s:4:\"name\";s:10:\"Devanagari\";}}}s:11:\"Lakki Reddy\";a:2:{s:8:\"variants\";a:1:{i:0;a:2:{s:2:\"id\";s:3:\"400\";s:4:\"name\";s:10:\"Normal 400\";}}s:7:\"subsets\";a:2:{i:0;a:2:{s:2:\"id\";s:6:\"telugu\";s:4:\"name\";s:6:\"Telugu\";}i:1;a:2:{s:2:\"id\";s:5:\"latin\";s:4:\"name\";s:5:\"Latin\";}}}s:8:\"Lancelot\";a:2:{s:8:\"variants\";a:1:{i:0;a:2:{s:2:\"id\";s:3:\"400\";s:4:\"name\";s:10:\"Normal 400\";}}s:7:\"subsets\";a:2:{i:0;a:2:{s:2:\"id\";s:9:\"latin-ext\";s:4:\"name\";s:14:\"Latin Extended\";}i:1;a:2:{s:2:\"id\";s:5:\"latin\";s:4:\"name\";s:5:\"Latin\";}}}s:6:\"Lateef\";a:2:{s:8:\"variants\";a:1:{i:0;a:2:{s:2:\"id\";s:3:\"400\";s:4:\"name\";s:10:\"Normal 400\";}}s:7:\"subsets\";a:2:{i:0;a:2:{s:2:\"id\";s:6:\"arabic\";s:4:\"name\";s:6:\"Arabic\";}i:1;a:2:{s:2:\"id\";s:5:\"latin\";s:4:\"name\";s:5:\"Latin\";}}}s:4:\"Lato\";a:2:{s:8:\"variants\";a:10:{i:0;a:2:{s:2:\"id\";s:3:\"100\";s:4:\"name\";s:15:\"Ultra-Light 100\";}i:1;a:2:{s:2:\"id\";s:9:\"100italic\";s:4:\"name\";s:22:\"Ultra-Light 100 Italic\";}i:2;a:2:{s:2:\"id\";s:3:\"300\";s:4:\"name\";s:8:\"Book 300\";}i:3;a:2:{s:2:\"id\";s:9:\"300italic\";s:4:\"name\";s:15:\"Book 300 Italic\";}i:4;a:2:{s:2:\"id\";s:3:\"400\";s:4:\"name\";s:10:\"Normal 400\";}i:5;a:2:{s:2:\"id\";s:9:\"400italic\";s:4:\"name\";s:17:\"Normal 400 Italic\";}i:6;a:2:{s:2:\"id\";s:3:\"700\";s:4:\"name\";s:8:\"Bold 700\";}i:7;a:2:{s:2:\"id\";s:9:\"700italic\";s:4:\"name\";s:15:\"Bold 700 Italic\";}i:8;a:2:{s:2:\"id\";s:3:\"900\";s:4:\"name\";s:14:\"Ultra-Bold 900\";}i:9;a:2:{s:2:\"id\";s:9:\"900italic\";s:4:\"name\";s:21:\"Ultra-Bold 900 Italic\";}}s:7:\"subsets\";a:2:{i:0;a:2:{s:2:\"id\";s:9:\"latin-ext\";s:4:\"name\";s:14:\"Latin Extended\";}i:1;a:2:{s:2:\"id\";s:5:\"latin\";s:4:\"name\";s:5:\"Latin\";}}}s:13:\"League Script\";a:2:{s:8:\"variants\";a:1:{i:0;a:2:{s:2:\"id\";s:3:\"400\";s:4:\"name\";s:10:\"Normal 400\";}}s:7:\"subsets\";a:1:{i:0;a:2:{s:2:\"id\";s:5:\"latin\";s:4:\"name\";s:5:\"Latin\";}}}s:12:\"Leckerli One\";a:2:{s:8:\"variants\";a:1:{i:0;a:2:{s:2:\"id\";s:3:\"400\";s:4:\"name\";s:10:\"Normal 400\";}}s:7:\"subsets\";a:1:{i:0;a:2:{s:2:\"id\";s:5:\"latin\";s:4:\"name\";s:5:\"Latin\";}}}s:6:\"Ledger\";a:2:{s:8:\"variants\";a:1:{i:0;a:2:{s:2:\"id\";s:3:\"400\";s:4:\"name\";s:10:\"Normal 400\";}}s:7:\"subsets\";a:3:{i:0;a:2:{s:2:\"id\";s:9:\"latin-ext\";s:4:\"name\";s:14:\"Latin Extended\";}i:1;a:2:{s:2:\"id\";s:8:\"cyrillic\";s:4:\"name\";s:8:\"Cyrillic\";}i:2;a:2:{s:2:\"id\";s:5:\"latin\";s:4:\"name\";s:5:\"Latin\";}}}s:6:\"Lekton\";a:2:{s:8:\"variants\";a:3:{i:0;a:2:{s:2:\"id\";s:3:\"400\";s:4:\"name\";s:10:\"Normal 400\";}i:1;a:2:{s:2:\"id\";s:9:\"400italic\";s:4:\"name\";s:17:\"Normal 400 Italic\";}i:2;a:2:{s:2:\"id\";s:3:\"700\";s:4:\"name\";s:8:\"Bold 700\";}}s:7:\"subsets\";a:2:{i:0;a:2:{s:2:\"id\";s:9:\"latin-ext\";s:4:\"name\";s:14:\"Latin Extended\";}i:1;a:2:{s:2:\"id\";s:5:\"latin\";s:4:\"name\";s:5:\"Latin\";}}}s:5:\"Lemon\";a:2:{s:8:\"variants\";a:1:{i:0;a:2:{s:2:\"id\";s:3:\"400\";s:4:\"name\";s:10:\"Normal 400\";}}s:7:\"subsets\";a:1:{i:0;a:2:{s:2:\"id\";s:5:\"latin\";s:4:\"name\";s:5:\"Latin\";}}}s:17:\"Libre Baskerville\";a:2:{s:8:\"variants\";a:3:{i:0;a:2:{s:2:\"id\";s:3:\"400\";s:4:\"name\";s:10:\"Normal 400\";}i:1;a:2:{s:2:\"id\";s:9:\"400italic\";s:4:\"name\";s:17:\"Normal 400 Italic\";}i:2;a:2:{s:2:\"id\";s:3:\"700\";s:4:\"name\";s:8:\"Bold 700\";}}s:7:\"subsets\";a:2:{i:0;a:2:{s:2:\"id\";s:9:\"latin-ext\";s:4:\"name\";s:14:\"Latin Extended\";}i:1;a:2:{s:2:\"id\";s:5:\"latin\";s:4:\"name\";s:5:\"Latin\";}}}s:11:\"Life Savers\";a:2:{s:8:\"variants\";a:2:{i:0;a:2:{s:2:\"id\";s:3:\"400\";s:4:\"name\";s:10:\"Normal 400\";}i:1;a:2:{s:2:\"id\";s:3:\"700\";s:4:\"name\";s:8:\"Bold 700\";}}s:7:\"subsets\";a:2:{i:0;a:2:{s:2:\"id\";s:9:\"latin-ext\";s:4:\"name\";s:14:\"Latin Extended\";}i:1;a:2:{s:2:\"id\";s:5:\"latin\";s:4:\"name\";s:5:\"Latin\";}}}s:10:\"Lilita One\";a:2:{s:8:\"variants\";a:1:{i:0;a:2:{s:2:\"id\";s:3:\"400\";s:4:\"name\";s:10:\"Normal 400\";}}s:7:\"subsets\";a:2:{i:0;a:2:{s:2:\"id\";s:9:\"latin-ext\";s:4:\"name\";s:14:\"Latin Extended\";}i:1;a:2:{s:2:\"id\";s:5:\"latin\";s:4:\"name\";s:5:\"Latin\";}}}s:15:\"Lily Script One\";a:2:{s:8:\"variants\";a:1:{i:0;a:2:{s:2:\"id\";s:3:\"400\";s:4:\"name\";s:10:\"Normal 400\";}}s:7:\"subsets\";a:2:{i:0;a:2:{s:2:\"id\";s:9:\"latin-ext\";s:4:\"name\";s:14:\"Latin Extended\";}i:1;a:2:{s:2:\"id\";s:5:\"latin\";s:4:\"name\";s:5:\"Latin\";}}}s:9:\"Limelight\";a:2:{s:8:\"variants\";a:1:{i:0;a:2:{s:2:\"id\";s:3:\"400\";s:4:\"name\";s:10:\"Normal 400\";}}s:7:\"subsets\";a:2:{i:0;a:2:{s:2:\"id\";s:9:\"latin-ext\";s:4:\"name\";s:14:\"Latin Extended\";}i:1;a:2:{s:2:\"id\";s:5:\"latin\";s:4:\"name\";s:5:\"Latin\";}}}s:11:\"Linden Hill\";a:2:{s:8:\"variants\";a:2:{i:0;a:2:{s:2:\"id\";s:3:\"400\";s:4:\"name\";s:10:\"Normal 400\";}i:1;a:2:{s:2:\"id\";s:9:\"400italic\";s:4:\"name\";s:17:\"Normal 400 Italic\";}}s:7:\"subsets\";a:1:{i:0;a:2:{s:2:\"id\";s:5:\"latin\";s:4:\"name\";s:5:\"Latin\";}}}s:7:\"Lobster\";a:2:{s:8:\"variants\";a:1:{i:0;a:2:{s:2:\"id\";s:3:\"400\";s:4:\"name\";s:10:\"Normal 400\";}}s:7:\"subsets\";a:4:{i:0;a:2:{s:2:\"id\";s:9:\"latin-ext\";s:4:\"name\";s:14:\"Latin Extended\";}i:1;a:2:{s:2:\"id\";s:10:\"vietnamese\";s:4:\"name\";s:10:\"Vietnamese\";}i:2;a:2:{s:2:\"id\";s:8:\"cyrillic\";s:4:\"name\";s:8:\"Cyrillic\";}i:3;a:2:{s:2:\"id\";s:5:\"latin\";s:4:\"name\";s:5:\"Latin\";}}}s:11:\"Lobster Two\";a:2:{s:8:\"variants\";a:4:{i:0;a:2:{s:2:\"id\";s:3:\"400\";s:4:\"name\";s:10:\"Normal 400\";}i:1;a:2:{s:2:\"id\";s:9:\"400italic\";s:4:\"name\";s:17:\"Normal 400 Italic\";}i:2;a:2:{s:2:\"id\";s:3:\"700\";s:4:\"name\";s:8:\"Bold 700\";}i:3;a:2:{s:2:\"id\";s:9:\"700italic\";s:4:\"name\";s:15:\"Bold 700 Italic\";}}s:7:\"subsets\";a:1:{i:0;a:2:{s:2:\"id\";s:5:\"latin\";s:4:\"name\";s:5:\"Latin\";}}}s:16:\"Londrina Outline\";a:2:{s:8:\"variants\";a:1:{i:0;a:2:{s:2:\"id\";s:3:\"400\";s:4:\"name\";s:10:\"Normal 400\";}}s:7:\"subsets\";a:1:{i:0;a:2:{s:2:\"id\";s:5:\"latin\";s:4:\"name\";s:5:\"Latin\";}}}s:15:\"Londrina Shadow\";a:2:{s:8:\"variants\";a:1:{i:0;a:2:{s:2:\"id\";s:3:\"400\";s:4:\"name\";s:10:\"Normal 400\";}}s:7:\"subsets\";a:1:{i:0;a:2:{s:2:\"id\";s:5:\"latin\";s:4:\"name\";s:5:\"Latin\";}}}s:15:\"Londrina Sketch\";a:2:{s:8:\"variants\";a:1:{i:0;a:2:{s:2:\"id\";s:3:\"400\";s:4:\"name\";s:10:\"Normal 400\";}}s:7:\"subsets\";a:1:{i:0;a:2:{s:2:\"id\";s:5:\"latin\";s:4:\"name\";s:5:\"Latin\";}}}s:14:\"Londrina Solid\";a:2:{s:8:\"variants\";a:1:{i:0;a:2:{s:2:\"id\";s:3:\"400\";s:4:\"name\";s:10:\"Normal 400\";}}s:7:\"subsets\";a:1:{i:0;a:2:{s:2:\"id\";s:5:\"latin\";s:4:\"name\";s:5:\"Latin\";}}}s:4:\"Lora\";a:2:{s:8:\"variants\";a:4:{i:0;a:2:{s:2:\"id\";s:3:\"400\";s:4:\"name\";s:10:\"Normal 400\";}i:1;a:2:{s:2:\"id\";s:9:\"400italic\";s:4:\"name\";s:17:\"Normal 400 Italic\";}i:2;a:2:{s:2:\"id\";s:3:\"700\";s:4:\"name\";s:8:\"Bold 700\";}i:3;a:2:{s:2:\"id\";s:9:\"700italic\";s:4:\"name\";s:15:\"Bold 700 Italic\";}}s:7:\"subsets\";a:3:{i:0;a:2:{s:2:\"id\";s:9:\"latin-ext\";s:4:\"name\";s:14:\"Latin Extended\";}i:1;a:2:{s:2:\"id\";s:8:\"cyrillic\";s:4:\"name\";s:8:\"Cyrillic\";}i:2;a:2:{s:2:\"id\";s:5:\"latin\";s:4:\"name\";s:5:\"Latin\";}}}s:21:\"Love Ya Like A Sister\";a:2:{s:8:\"variants\";a:1:{i:0;a:2:{s:2:\"id\";s:3:\"400\";s:4:\"name\";s:10:\"Normal 400\";}}s:7:\"subsets\";a:1:{i:0;a:2:{s:2:\"id\";s:5:\"latin\";s:4:\"name\";s:5:\"Latin\";}}}s:17:\"Loved by the King\";a:2:{s:8:\"variants\";a:1:{i:0;a:2:{s:2:\"id\";s:3:\"400\";s:4:\"name\";s:10:\"Normal 400\";}}s:7:\"subsets\";a:1:{i:0;a:2:{s:2:\"id\";s:5:\"latin\";s:4:\"name\";s:5:\"Latin\";}}}s:14:\"Lovers Quarrel\";a:2:{s:8:\"variants\";a:1:{i:0;a:2:{s:2:\"id\";s:3:\"400\";s:4:\"name\";s:10:\"Normal 400\";}}s:7:\"subsets\";a:2:{i:0;a:2:{s:2:\"id\";s:9:\"latin-ext\";s:4:\"name\";s:14:\"Latin Extended\";}i:1;a:2:{s:2:\"id\";s:5:\"latin\";s:4:\"name\";s:5:\"Latin\";}}}s:12:\"Luckiest Guy\";a:2:{s:8:\"variants\";a:1:{i:0;a:2:{s:2:\"id\";s:3:\"400\";s:4:\"name\";s:10:\"Normal 400\";}}s:7:\"subsets\";a:1:{i:0;a:2:{s:2:\"id\";s:5:\"latin\";s:4:\"name\";s:5:\"Latin\";}}}s:8:\"Lusitana\";a:2:{s:8:\"variants\";a:2:{i:0;a:2:{s:2:\"id\";s:3:\"400\";s:4:\"name\";s:10:\"Normal 400\";}i:1;a:2:{s:2:\"id\";s:3:\"700\";s:4:\"name\";s:8:\"Bold 700\";}}s:7:\"subsets\";a:1:{i:0;a:2:{s:2:\"id\";s:5:\"latin\";s:4:\"name\";s:5:\"Latin\";}}}s:7:\"Lustria\";a:2:{s:8:\"variants\";a:1:{i:0;a:2:{s:2:\"id\";s:3:\"400\";s:4:\"name\";s:10:\"Normal 400\";}}s:7:\"subsets\";a:1:{i:0;a:2:{s:2:\"id\";s:5:\"latin\";s:4:\"name\";s:5:\"Latin\";}}}s:7:\"Macondo\";a:2:{s:8:\"variants\";a:1:{i:0;a:2:{s:2:\"id\";s:3:\"400\";s:4:\"name\";s:10:\"Normal 400\";}}s:7:\"subsets\";a:1:{i:0;a:2:{s:2:\"id\";s:5:\"latin\";s:4:\"name\";s:5:\"Latin\";}}}s:18:\"Macondo Swash Caps\";a:2:{s:8:\"variants\";a:1:{i:0;a:2:{s:2:\"id\";s:3:\"400\";s:4:\"name\";s:10:\"Normal 400\";}}s:7:\"subsets\";a:1:{i:0;a:2:{s:2:\"id\";s:5:\"latin\";s:4:\"name\";s:5:\"Latin\";}}}s:5:\"Magra\";a:2:{s:8:\"variants\";a:2:{i:0;a:2:{s:2:\"id\";s:3:\"400\";s:4:\"name\";s:10:\"Normal 400\";}i:1;a:2:{s:2:\"id\";s:3:\"700\";s:4:\"name\";s:8:\"Bold 700\";}}s:7:\"subsets\";a:2:{i:0;a:2:{s:2:\"id\";s:9:\"latin-ext\";s:4:\"name\";s:14:\"Latin Extended\";}i:1;a:2:{s:2:\"id\";s:5:\"latin\";s:4:\"name\";s:5:\"Latin\";}}}s:13:\"Maiden Orange\";a:2:{s:8:\"variants\";a:1:{i:0;a:2:{s:2:\"id\";s:3:\"400\";s:4:\"name\";s:10:\"Normal 400\";}}s:7:\"subsets\";a:1:{i:0;a:2:{s:2:\"id\";s:5:\"latin\";s:4:\"name\";s:5:\"Latin\";}}}s:4:\"Mako\";a:2:{s:8:\"variants\";a:1:{i:0;a:2:{s:2:\"id\";s:3:\"400\";s:4:\"name\";s:10:\"Normal 400\";}}s:7:\"subsets\";a:1:{i:0;a:2:{s:2:\"id\";s:5:\"latin\";s:4:\"name\";s:5:\"Latin\";}}}s:8:\"Mallanna\";a:2:{s:8:\"variants\";a:1:{i:0;a:2:{s:2:\"id\";s:3:\"400\";s:4:\"name\";s:10:\"Normal 400\";}}s:7:\"subsets\";a:2:{i:0;a:2:{s:2:\"id\";s:6:\"telugu\";s:4:\"name\";s:6:\"Telugu\";}i:1;a:2:{s:2:\"id\";s:5:\"latin\";s:4:\"name\";s:5:\"Latin\";}}}s:7:\"Mandali\";a:2:{s:8:\"variants\";a:1:{i:0;a:2:{s:2:\"id\";s:3:\"400\";s:4:\"name\";s:10:\"Normal 400\";}}s:7:\"subsets\";a:2:{i:0;a:2:{s:2:\"id\";s:6:\"telugu\";s:4:\"name\";s:6:\"Telugu\";}i:1;a:2:{s:2:\"id\";s:5:\"latin\";s:4:\"name\";s:5:\"Latin\";}}}s:9:\"Marcellus\";a:2:{s:8:\"variants\";a:1:{i:0;a:2:{s:2:\"id\";s:3:\"400\";s:4:\"name\";s:10:\"Normal 400\";}}s:7:\"subsets\";a:2:{i:0;a:2:{s:2:\"id\";s:9:\"latin-ext\";s:4:\"name\";s:14:\"Latin Extended\";}i:1;a:2:{s:2:\"id\";s:5:\"latin\";s:4:\"name\";s:5:\"Latin\";}}}s:12:\"Marcellus SC\";a:2:{s:8:\"variants\";a:1:{i:0;a:2:{s:2:\"id\";s:3:\"400\";s:4:\"name\";s:10:\"Normal 400\";}}s:7:\"subsets\";a:2:{i:0;a:2:{s:2:\"id\";s:9:\"latin-ext\";s:4:\"name\";s:14:\"Latin Extended\";}i:1;a:2:{s:2:\"id\";s:5:\"latin\";s:4:\"name\";s:5:\"Latin\";}}}s:12:\"Marck Script\";a:2:{s:8:\"variants\";a:1:{i:0;a:2:{s:2:\"id\";s:3:\"400\";s:4:\"name\";s:10:\"Normal 400\";}}s:7:\"subsets\";a:3:{i:0;a:2:{s:2:\"id\";s:9:\"latin-ext\";s:4:\"name\";s:14:\"Latin Extended\";}i:1;a:2:{s:2:\"id\";s:8:\"cyrillic\";s:4:\"name\";s:8:\"Cyrillic\";}i:2;a:2:{s:2:\"id\";s:5:\"latin\";s:4:\"name\";s:5:\"Latin\";}}}s:9:\"Margarine\";a:2:{s:8:\"variants\";a:1:{i:0;a:2:{s:2:\"id\";s:3:\"400\";s:4:\"name\";s:10:\"Normal 400\";}}s:7:\"subsets\";a:2:{i:0;a:2:{s:2:\"id\";s:9:\"latin-ext\";s:4:\"name\";s:14:\"Latin Extended\";}i:1;a:2:{s:2:\"id\";s:5:\"latin\";s:4:\"name\";s:5:\"Latin\";}}}s:9:\"Marko One\";a:2:{s:8:\"variants\";a:1:{i:0;a:2:{s:2:\"id\";s:3:\"400\";s:4:\"name\";s:10:\"Normal 400\";}}s:7:\"subsets\";a:1:{i:0;a:2:{s:2:\"id\";s:5:\"latin\";s:4:\"name\";s:5:\"Latin\";}}}s:8:\"Marmelad\";a:2:{s:8:\"variants\";a:1:{i:0;a:2:{s:2:\"id\";s:3:\"400\";s:4:\"name\";s:10:\"Normal 400\";}}s:7:\"subsets\";a:3:{i:0;a:2:{s:2:\"id\";s:9:\"latin-ext\";s:4:\"name\";s:14:\"Latin Extended\";}i:1;a:2:{s:2:\"id\";s:8:\"cyrillic\";s:4:\"name\";s:8:\"Cyrillic\";}i:2;a:2:{s:2:\"id\";s:5:\"latin\";s:4:\"name\";s:5:\"Latin\";}}}s:6:\"Martel\";a:2:{s:8:\"variants\";a:7:{i:0;a:2:{s:2:\"id\";s:3:\"200\";s:4:\"name\";s:9:\"Light 200\";}i:1;a:2:{s:2:\"id\";s:3:\"300\";s:4:\"name\";s:8:\"Book 300\";}i:2;a:2:{s:2:\"id\";s:3:\"400\";s:4:\"name\";s:10:\"Normal 400\";}i:3;a:2:{s:2:\"id\";s:3:\"600\";s:4:\"name\";s:13:\"Semi-Bold 600\";}i:4;a:2:{s:2:\"id\";s:3:\"700\";s:4:\"name\";s:8:\"Bold 700\";}i:5;a:2:{s:2:\"id\";s:3:\"800\";s:4:\"name\";s:14:\"Extra-Bold 800\";}i:6;a:2:{s:2:\"id\";s:3:\"900\";s:4:\"name\";s:14:\"Ultra-Bold 900\";}}s:7:\"subsets\";a:3:{i:0;a:2:{s:2:\"id\";s:9:\"latin-ext\";s:4:\"name\";s:14:\"Latin Extended\";}i:1;a:2:{s:2:\"id\";s:5:\"latin\";s:4:\"name\";s:5:\"Latin\";}i:2;a:2:{s:2:\"id\";s:10:\"devanagari\";s:4:\"name\";s:10:\"Devanagari\";}}}s:11:\"Martel Sans\";a:2:{s:8:\"variants\";a:7:{i:0;a:2:{s:2:\"id\";s:3:\"200\";s:4:\"name\";s:9:\"Light 200\";}i:1;a:2:{s:2:\"id\";s:3:\"300\";s:4:\"name\";s:8:\"Book 300\";}i:2;a:2:{s:2:\"id\";s:3:\"400\";s:4:\"name\";s:10:\"Normal 400\";}i:3;a:2:{s:2:\"id\";s:3:\"600\";s:4:\"name\";s:13:\"Semi-Bold 600\";}i:4;a:2:{s:2:\"id\";s:3:\"700\";s:4:\"name\";s:8:\"Bold 700\";}i:5;a:2:{s:2:\"id\";s:3:\"800\";s:4:\"name\";s:14:\"Extra-Bold 800\";}i:6;a:2:{s:2:\"id\";s:3:\"900\";s:4:\"name\";s:14:\"Ultra-Bold 900\";}}s:7:\"subsets\";a:3:{i:0;a:2:{s:2:\"id\";s:9:\"latin-ext\";s:4:\"name\";s:14:\"Latin Extended\";}i:1;a:2:{s:2:\"id\";s:5:\"latin\";s:4:\"name\";s:5:\"Latin\";}i:2;a:2:{s:2:\"id\";s:10:\"devanagari\";s:4:\"name\";s:10:\"Devanagari\";}}}s:6:\"Marvel\";a:2:{s:8:\"variants\";a:4:{i:0;a:2:{s:2:\"id\";s:3:\"400\";s:4:\"name\";s:10:\"Normal 400\";}i:1;a:2:{s:2:\"id\";s:9:\"400italic\";s:4:\"name\";s:17:\"Normal 400 Italic\";}i:2;a:2:{s:2:\"id\";s:3:\"700\";s:4:\"name\";s:8:\"Bold 700\";}i:3;a:2:{s:2:\"id\";s:9:\"700italic\";s:4:\"name\";s:15:\"Bold 700 Italic\";}}s:7:\"subsets\";a:1:{i:0;a:2:{s:2:\"id\";s:5:\"latin\";s:4:\"name\";s:5:\"Latin\";}}}s:4:\"Mate\";a:2:{s:8:\"variants\";a:2:{i:0;a:2:{s:2:\"id\";s:3:\"400\";s:4:\"name\";s:10:\"Normal 400\";}i:1;a:2:{s:2:\"id\";s:9:\"400italic\";s:4:\"name\";s:17:\"Normal 400 Italic\";}}s:7:\"subsets\";a:1:{i:0;a:2:{s:2:\"id\";s:5:\"latin\";s:4:\"name\";s:5:\"Latin\";}}}s:7:\"Mate SC\";a:2:{s:8:\"variants\";a:1:{i:0;a:2:{s:2:\"id\";s:3:\"400\";s:4:\"name\";s:10:\"Normal 400\";}}s:7:\"subsets\";a:1:{i:0;a:2:{s:2:\"id\";s:5:\"latin\";s:4:\"name\";s:5:\"Latin\";}}}s:9:\"Maven Pro\";a:2:{s:8:\"variants\";a:4:{i:0;a:2:{s:2:\"id\";s:3:\"400\";s:4:\"name\";s:10:\"Normal 400\";}i:1;a:2:{s:2:\"id\";s:3:\"500\";s:4:\"name\";s:10:\"Medium 500\";}i:2;a:2:{s:2:\"id\";s:3:\"700\";s:4:\"name\";s:8:\"Bold 700\";}i:3;a:2:{s:2:\"id\";s:3:\"900\";s:4:\"name\";s:14:\"Ultra-Bold 900\";}}s:7:\"subsets\";a:1:{i:0;a:2:{s:2:\"id\";s:5:\"latin\";s:4:\"name\";s:5:\"Latin\";}}}s:7:\"McLaren\";a:2:{s:8:\"variants\";a:1:{i:0;a:2:{s:2:\"id\";s:3:\"400\";s:4:\"name\";s:10:\"Normal 400\";}}s:7:\"subsets\";a:2:{i:0;a:2:{s:2:\"id\";s:9:\"latin-ext\";s:4:\"name\";s:14:\"Latin Extended\";}i:1;a:2:{s:2:\"id\";s:5:\"latin\";s:4:\"name\";s:5:\"Latin\";}}}s:6:\"Meddon\";a:2:{s:8:\"variants\";a:1:{i:0;a:2:{s:2:\"id\";s:3:\"400\";s:4:\"name\";s:10:\"Normal 400\";}}s:7:\"subsets\";a:1:{i:0;a:2:{s:2:\"id\";s:5:\"latin\";s:4:\"name\";s:5:\"Latin\";}}}s:13:\"MedievalSharp\";a:2:{s:8:\"variants\";a:1:{i:0;a:2:{s:2:\"id\";s:3:\"400\";s:4:\"name\";s:10:\"Normal 400\";}}s:7:\"subsets\";a:2:{i:0;a:2:{s:2:\"id\";s:9:\"latin-ext\";s:4:\"name\";s:14:\"Latin Extended\";}i:1;a:2:{s:2:\"id\";s:5:\"latin\";s:4:\"name\";s:5:\"Latin\";}}}s:10:\"Medula One\";a:2:{s:8:\"variants\";a:1:{i:0;a:2:{s:2:\"id\";s:3:\"400\";s:4:\"name\";s:10:\"Normal 400\";}}s:7:\"subsets\";a:1:{i:0;a:2:{s:2:\"id\";s:5:\"latin\";s:4:\"name\";s:5:\"Latin\";}}}s:6:\"Megrim\";a:2:{s:8:\"variants\";a:1:{i:0;a:2:{s:2:\"id\";s:3:\"400\";s:4:\"name\";s:10:\"Normal 400\";}}s:7:\"subsets\";a:1:{i:0;a:2:{s:2:\"id\";s:5:\"latin\";s:4:\"name\";s:5:\"Latin\";}}}s:11:\"Meie Script\";a:2:{s:8:\"variants\";a:1:{i:0;a:2:{s:2:\"id\";s:3:\"400\";s:4:\"name\";s:10:\"Normal 400\";}}s:7:\"subsets\";a:2:{i:0;a:2:{s:2:\"id\";s:9:\"latin-ext\";s:4:\"name\";s:14:\"Latin Extended\";}i:1;a:2:{s:2:\"id\";s:5:\"latin\";s:4:\"name\";s:5:\"Latin\";}}}s:8:\"Merienda\";a:2:{s:8:\"variants\";a:2:{i:0;a:2:{s:2:\"id\";s:3:\"400\";s:4:\"name\";s:10:\"Normal 400\";}i:1;a:2:{s:2:\"id\";s:3:\"700\";s:4:\"name\";s:8:\"Bold 700\";}}s:7:\"subsets\";a:2:{i:0;a:2:{s:2:\"id\";s:9:\"latin-ext\";s:4:\"name\";s:14:\"Latin Extended\";}i:1;a:2:{s:2:\"id\";s:5:\"latin\";s:4:\"name\";s:5:\"Latin\";}}}s:12:\"Merienda One\";a:2:{s:8:\"variants\";a:1:{i:0;a:2:{s:2:\"id\";s:3:\"400\";s:4:\"name\";s:10:\"Normal 400\";}}s:7:\"subsets\";a:1:{i:0;a:2:{s:2:\"id\";s:5:\"latin\";s:4:\"name\";s:5:\"Latin\";}}}s:12:\"Merriweather\";a:2:{s:8:\"variants\";a:8:{i:0;a:2:{s:2:\"id\";s:3:\"300\";s:4:\"name\";s:8:\"Book 300\";}i:1;a:2:{s:2:\"id\";s:9:\"300italic\";s:4:\"name\";s:15:\"Book 300 Italic\";}i:2;a:2:{s:2:\"id\";s:3:\"400\";s:4:\"name\";s:10:\"Normal 400\";}i:3;a:2:{s:2:\"id\";s:9:\"400italic\";s:4:\"name\";s:17:\"Normal 400 Italic\";}i:4;a:2:{s:2:\"id\";s:3:\"700\";s:4:\"name\";s:8:\"Bold 700\";}i:5;a:2:{s:2:\"id\";s:9:\"700italic\";s:4:\"name\";s:15:\"Bold 700 Italic\";}i:6;a:2:{s:2:\"id\";s:3:\"900\";s:4:\"name\";s:14:\"Ultra-Bold 900\";}i:7;a:2:{s:2:\"id\";s:9:\"900italic\";s:4:\"name\";s:21:\"Ultra-Bold 900 Italic\";}}s:7:\"subsets\";a:4:{i:0;a:2:{s:2:\"id\";s:12:\"cyrillic-ext\";s:4:\"name\";s:17:\"Cyrillic Extended\";}i:1;a:2:{s:2:\"id\";s:9:\"latin-ext\";s:4:\"name\";s:14:\"Latin Extended\";}i:2;a:2:{s:2:\"id\";s:8:\"cyrillic\";s:4:\"name\";s:8:\"Cyrillic\";}i:3;a:2:{s:2:\"id\";s:5:\"latin\";s:4:\"name\";s:5:\"Latin\";}}}s:17:\"Merriweather Sans\";a:2:{s:8:\"variants\";a:8:{i:0;a:2:{s:2:\"id\";s:3:\"300\";s:4:\"name\";s:8:\"Book 300\";}i:1;a:2:{s:2:\"id\";s:9:\"300italic\";s:4:\"name\";s:15:\"Book 300 Italic\";}i:2;a:2:{s:2:\"id\";s:3:\"400\";s:4:\"name\";s:10:\"Normal 400\";}i:3;a:2:{s:2:\"id\";s:9:\"400italic\";s:4:\"name\";s:17:\"Normal 400 Italic\";}i:4;a:2:{s:2:\"id\";s:3:\"700\";s:4:\"name\";s:8:\"Bold 700\";}i:5;a:2:{s:2:\"id\";s:9:\"700italic\";s:4:\"name\";s:15:\"Bold 700 Italic\";}i:6;a:2:{s:2:\"id\";s:3:\"800\";s:4:\"name\";s:14:\"Extra-Bold 800\";}i:7;a:2:{s:2:\"id\";s:9:\"800italic\";s:4:\"name\";s:21:\"Extra-Bold 800 Italic\";}}s:7:\"subsets\";a:2:{i:0;a:2:{s:2:\"id\";s:9:\"latin-ext\";s:4:\"name\";s:14:\"Latin Extended\";}i:1;a:2:{s:2:\"id\";s:5:\"latin\";s:4:\"name\";s:5:\"Latin\";}}}s:5:\"Metal\";a:2:{s:8:\"variants\";a:1:{i:0;a:2:{s:2:\"id\";s:3:\"400\";s:4:\"name\";s:10:\"Normal 400\";}}s:7:\"subsets\";a:1:{i:0;a:2:{s:2:\"id\";s:5:\"khmer\";s:4:\"name\";s:5:\"Khmer\";}}}s:11:\"Metal Mania\";a:2:{s:8:\"variants\";a:1:{i:0;a:2:{s:2:\"id\";s:3:\"400\";s:4:\"name\";s:10:\"Normal 400\";}}s:7:\"subsets\";a:2:{i:0;a:2:{s:2:\"id\";s:9:\"latin-ext\";s:4:\"name\";s:14:\"Latin Extended\";}i:1;a:2:{s:2:\"id\";s:5:\"latin\";s:4:\"name\";s:5:\"Latin\";}}}s:12:\"Metamorphous\";a:2:{s:8:\"variants\";a:1:{i:0;a:2:{s:2:\"id\";s:3:\"400\";s:4:\"name\";s:10:\"Normal 400\";}}s:7:\"subsets\";a:2:{i:0;a:2:{s:2:\"id\";s:9:\"latin-ext\";s:4:\"name\";s:14:\"Latin Extended\";}i:1;a:2:{s:2:\"id\";s:5:\"latin\";s:4:\"name\";s:5:\"Latin\";}}}s:11:\"Metrophobic\";a:2:{s:8:\"variants\";a:1:{i:0;a:2:{s:2:\"id\";s:3:\"400\";s:4:\"name\";s:10:\"Normal 400\";}}s:7:\"subsets\";a:1:{i:0;a:2:{s:2:\"id\";s:5:\"latin\";s:4:\"name\";s:5:\"Latin\";}}}s:8:\"Michroma\";a:2:{s:8:\"variants\";a:1:{i:0;a:2:{s:2:\"id\";s:3:\"400\";s:4:\"name\";s:10:\"Normal 400\";}}s:7:\"subsets\";a:1:{i:0;a:2:{s:2:\"id\";s:5:\"latin\";s:4:\"name\";s:5:\"Latin\";}}}s:7:\"Milonga\";a:2:{s:8:\"variants\";a:1:{i:0;a:2:{s:2:\"id\";s:3:\"400\";s:4:\"name\";s:10:\"Normal 400\";}}s:7:\"subsets\";a:2:{i:0;a:2:{s:2:\"id\";s:9:\"latin-ext\";s:4:\"name\";s:14:\"Latin Extended\";}i:1;a:2:{s:2:\"id\";s:5:\"latin\";s:4:\"name\";s:5:\"Latin\";}}}s:9:\"Miltonian\";a:2:{s:8:\"variants\";a:1:{i:0;a:2:{s:2:\"id\";s:3:\"400\";s:4:\"name\";s:10:\"Normal 400\";}}s:7:\"subsets\";a:1:{i:0;a:2:{s:2:\"id\";s:5:\"latin\";s:4:\"name\";s:5:\"Latin\";}}}s:16:\"Miltonian Tattoo\";a:2:{s:8:\"variants\";a:1:{i:0;a:2:{s:2:\"id\";s:3:\"400\";s:4:\"name\";s:10:\"Normal 400\";}}s:7:\"subsets\";a:1:{i:0;a:2:{s:2:\"id\";s:5:\"latin\";s:4:\"name\";s:5:\"Latin\";}}}s:7:\"Miniver\";a:2:{s:8:\"variants\";a:1:{i:0;a:2:{s:2:\"id\";s:3:\"400\";s:4:\"name\";s:10:\"Normal 400\";}}s:7:\"subsets\";a:1:{i:0;a:2:{s:2:\"id\";s:5:\"latin\";s:4:\"name\";s:5:\"Latin\";}}}s:14:\"Miss Fajardose\";a:2:{s:8:\"variants\";a:1:{i:0;a:2:{s:2:\"id\";s:3:\"400\";s:4:\"name\";s:10:\"Normal 400\";}}s:7:\"subsets\";a:2:{i:0;a:2:{s:2:\"id\";s:9:\"latin-ext\";s:4:\"name\";s:14:\"Latin Extended\";}i:1;a:2:{s:2:\"id\";s:5:\"latin\";s:4:\"name\";s:5:\"Latin\";}}}s:5:\"Modak\";a:2:{s:8:\"variants\";a:1:{i:0;a:2:{s:2:\"id\";s:3:\"400\";s:4:\"name\";s:10:\"Normal 400\";}}s:7:\"subsets\";a:3:{i:0;a:2:{s:2:\"id\";s:9:\"latin-ext\";s:4:\"name\";s:14:\"Latin Extended\";}i:1;a:2:{s:2:\"id\";s:5:\"latin\";s:4:\"name\";s:5:\"Latin\";}i:2;a:2:{s:2:\"id\";s:10:\"devanagari\";s:4:\"name\";s:10:\"Devanagari\";}}}s:14:\"Modern Antiqua\";a:2:{s:8:\"variants\";a:1:{i:0;a:2:{s:2:\"id\";s:3:\"400\";s:4:\"name\";s:10:\"Normal 400\";}}s:7:\"subsets\";a:2:{i:0;a:2:{s:2:\"id\";s:9:\"latin-ext\";s:4:\"name\";s:14:\"Latin Extended\";}i:1;a:2:{s:2:\"id\";s:5:\"latin\";s:4:\"name\";s:5:\"Latin\";}}}s:7:\"Molengo\";a:2:{s:8:\"variants\";a:1:{i:0;a:2:{s:2:\"id\";s:3:\"400\";s:4:\"name\";s:10:\"Normal 400\";}}s:7:\"subsets\";a:2:{i:0;a:2:{s:2:\"id\";s:9:\"latin-ext\";s:4:\"name\";s:14:\"Latin Extended\";}i:1;a:2:{s:2:\"id\";s:5:\"latin\";s:4:\"name\";s:5:\"Latin\";}}}s:5:\"Molle\";a:2:{s:8:\"variants\";a:1:{i:0;a:2:{s:2:\"id\";s:9:\"400italic\";s:4:\"name\";s:17:\"Normal 400 Italic\";}}s:7:\"subsets\";a:2:{i:0;a:2:{s:2:\"id\";s:9:\"latin-ext\";s:4:\"name\";s:14:\"Latin Extended\";}i:1;a:2:{s:2:\"id\";s:5:\"latin\";s:4:\"name\";s:5:\"Latin\";}}}s:5:\"Monda\";a:2:{s:8:\"variants\";a:2:{i:0;a:2:{s:2:\"id\";s:3:\"400\";s:4:\"name\";s:10:\"Normal 400\";}i:1;a:2:{s:2:\"id\";s:3:\"700\";s:4:\"name\";s:8:\"Bold 700\";}}s:7:\"subsets\";a:2:{i:0;a:2:{s:2:\"id\";s:9:\"latin-ext\";s:4:\"name\";s:14:\"Latin Extended\";}i:1;a:2:{s:2:\"id\";s:5:\"latin\";s:4:\"name\";s:5:\"Latin\";}}}s:8:\"Monofett\";a:2:{s:8:\"variants\";a:1:{i:0;a:2:{s:2:\"id\";s:3:\"400\";s:4:\"name\";s:10:\"Normal 400\";}}s:7:\"subsets\";a:1:{i:0;a:2:{s:2:\"id\";s:5:\"latin\";s:4:\"name\";s:5:\"Latin\";}}}s:7:\"Monoton\";a:2:{s:8:\"variants\";a:1:{i:0;a:2:{s:2:\"id\";s:3:\"400\";s:4:\"name\";s:10:\"Normal 400\";}}s:7:\"subsets\";a:1:{i:0;a:2:{s:2:\"id\";s:5:\"latin\";s:4:\"name\";s:5:\"Latin\";}}}s:20:\"Monsieur La Doulaise\";a:2:{s:8:\"variants\";a:1:{i:0;a:2:{s:2:\"id\";s:3:\"400\";s:4:\"name\";s:10:\"Normal 400\";}}s:7:\"subsets\";a:2:{i:0;a:2:{s:2:\"id\";s:9:\"latin-ext\";s:4:\"name\";s:14:\"Latin Extended\";}i:1;a:2:{s:2:\"id\";s:5:\"latin\";s:4:\"name\";s:5:\"Latin\";}}}s:7:\"Montaga\";a:2:{s:8:\"variants\";a:1:{i:0;a:2:{s:2:\"id\";s:3:\"400\";s:4:\"name\";s:10:\"Normal 400\";}}s:7:\"subsets\";a:1:{i:0;a:2:{s:2:\"id\";s:5:\"latin\";s:4:\"name\";s:5:\"Latin\";}}}s:6:\"Montez\";a:2:{s:8:\"variants\";a:1:{i:0;a:2:{s:2:\"id\";s:3:\"400\";s:4:\"name\";s:10:\"Normal 400\";}}s:7:\"subsets\";a:1:{i:0;a:2:{s:2:\"id\";s:5:\"latin\";s:4:\"name\";s:5:\"Latin\";}}}s:10:\"Montserrat\";a:2:{s:8:\"variants\";a:2:{i:0;a:2:{s:2:\"id\";s:3:\"400\";s:4:\"name\";s:10:\"Normal 400\";}i:1;a:2:{s:2:\"id\";s:3:\"700\";s:4:\"name\";s:8:\"Bold 700\";}}s:7:\"subsets\";a:1:{i:0;a:2:{s:2:\"id\";s:5:\"latin\";s:4:\"name\";s:5:\"Latin\";}}}s:21:\"Montserrat Alternates\";a:2:{s:8:\"variants\";a:2:{i:0;a:2:{s:2:\"id\";s:3:\"400\";s:4:\"name\";s:10:\"Normal 400\";}i:1;a:2:{s:2:\"id\";s:3:\"700\";s:4:\"name\";s:8:\"Bold 700\";}}s:7:\"subsets\";a:1:{i:0;a:2:{s:2:\"id\";s:5:\"latin\";s:4:\"name\";s:5:\"Latin\";}}}s:20:\"Montserrat Subrayada\";a:2:{s:8:\"variants\";a:2:{i:0;a:2:{s:2:\"id\";s:3:\"400\";s:4:\"name\";s:10:\"Normal 400\";}i:1;a:2:{s:2:\"id\";s:3:\"700\";s:4:\"name\";s:8:\"Bold 700\";}}s:7:\"subsets\";a:1:{i:0;a:2:{s:2:\"id\";s:5:\"latin\";s:4:\"name\";s:5:\"Latin\";}}}s:4:\"Moul\";a:2:{s:8:\"variants\";a:1:{i:0;a:2:{s:2:\"id\";s:3:\"400\";s:4:\"name\";s:10:\"Normal 400\";}}s:7:\"subsets\";a:1:{i:0;a:2:{s:2:\"id\";s:5:\"khmer\";s:4:\"name\";s:5:\"Khmer\";}}}s:8:\"Moulpali\";a:2:{s:8:\"variants\";a:1:{i:0;a:2:{s:2:\"id\";s:3:\"400\";s:4:\"name\";s:10:\"Normal 400\";}}s:7:\"subsets\";a:1:{i:0;a:2:{s:2:\"id\";s:5:\"khmer\";s:4:\"name\";s:5:\"Khmer\";}}}s:22:\"Mountains of Christmas\";a:2:{s:8:\"variants\";a:2:{i:0;a:2:{s:2:\"id\";s:3:\"400\";s:4:\"name\";s:10:\"Normal 400\";}i:1;a:2:{s:2:\"id\";s:3:\"700\";s:4:\"name\";s:8:\"Bold 700\";}}s:7:\"subsets\";a:1:{i:0;a:2:{s:2:\"id\";s:5:\"latin\";s:4:\"name\";s:5:\"Latin\";}}}s:13:\"Mouse Memoirs\";a:2:{s:8:\"variants\";a:1:{i:0;a:2:{s:2:\"id\";s:3:\"400\";s:4:\"name\";s:10:\"Normal 400\";}}s:7:\"subsets\";a:2:{i:0;a:2:{s:2:\"id\";s:9:\"latin-ext\";s:4:\"name\";s:14:\"Latin Extended\";}i:1;a:2:{s:2:\"id\";s:5:\"latin\";s:4:\"name\";s:5:\"Latin\";}}}s:10:\"Mr Bedfort\";a:2:{s:8:\"variants\";a:1:{i:0;a:2:{s:2:\"id\";s:3:\"400\";s:4:\"name\";s:10:\"Normal 400\";}}s:7:\"subsets\";a:2:{i:0;a:2:{s:2:\"id\";s:9:\"latin-ext\";s:4:\"name\";s:14:\"Latin Extended\";}i:1;a:2:{s:2:\"id\";s:5:\"latin\";s:4:\"name\";s:5:\"Latin\";}}}s:8:\"Mr Dafoe\";a:2:{s:8:\"variants\";a:1:{i:0;a:2:{s:2:\"id\";s:3:\"400\";s:4:\"name\";s:10:\"Normal 400\";}}s:7:\"subsets\";a:2:{i:0;a:2:{s:2:\"id\";s:9:\"latin-ext\";s:4:\"name\";s:14:\"Latin Extended\";}i:1;a:2:{s:2:\"id\";s:5:\"latin\";s:4:\"name\";s:5:\"Latin\";}}}s:14:\"Mr De Haviland\";a:2:{s:8:\"variants\";a:1:{i:0;a:2:{s:2:\"id\";s:3:\"400\";s:4:\"name\";s:10:\"Normal 400\";}}s:7:\"subsets\";a:2:{i:0;a:2:{s:2:\"id\";s:9:\"latin-ext\";s:4:\"name\";s:14:\"Latin Extended\";}i:1;a:2:{s:2:\"id\";s:5:\"latin\";s:4:\"name\";s:5:\"Latin\";}}}s:19:\"Mrs Saint Delafield\";a:2:{s:8:\"variants\";a:1:{i:0;a:2:{s:2:\"id\";s:3:\"400\";s:4:\"name\";s:10:\"Normal 400\";}}s:7:\"subsets\";a:2:{i:0;a:2:{s:2:\"id\";s:9:\"latin-ext\";s:4:\"name\";s:14:\"Latin Extended\";}i:1;a:2:{s:2:\"id\";s:5:\"latin\";s:4:\"name\";s:5:\"Latin\";}}}s:13:\"Mrs Sheppards\";a:2:{s:8:\"variants\";a:1:{i:0;a:2:{s:2:\"id\";s:3:\"400\";s:4:\"name\";s:10:\"Normal 400\";}}s:7:\"subsets\";a:2:{i:0;a:2:{s:2:\"id\";s:9:\"latin-ext\";s:4:\"name\";s:14:\"Latin Extended\";}i:1;a:2:{s:2:\"id\";s:5:\"latin\";s:4:\"name\";s:5:\"Latin\";}}}s:4:\"Muli\";a:2:{s:8:\"variants\";a:4:{i:0;a:2:{s:2:\"id\";s:3:\"300\";s:4:\"name\";s:8:\"Book 300\";}i:1;a:2:{s:2:\"id\";s:9:\"300italic\";s:4:\"name\";s:15:\"Book 300 Italic\";}i:2;a:2:{s:2:\"id\";s:3:\"400\";s:4:\"name\";s:10:\"Normal 400\";}i:3;a:2:{s:2:\"id\";s:9:\"400italic\";s:4:\"name\";s:17:\"Normal 400 Italic\";}}s:7:\"subsets\";a:1:{i:0;a:2:{s:2:\"id\";s:5:\"latin\";s:4:\"name\";s:5:\"Latin\";}}}s:13:\"Mystery Quest\";a:2:{s:8:\"variants\";a:1:{i:0;a:2:{s:2:\"id\";s:3:\"400\";s:4:\"name\";s:10:\"Normal 400\";}}s:7:\"subsets\";a:2:{i:0;a:2:{s:2:\"id\";s:9:\"latin-ext\";s:4:\"name\";s:14:\"Latin Extended\";}i:1;a:2:{s:2:\"id\";s:5:\"latin\";s:4:\"name\";s:5:\"Latin\";}}}s:3:\"NTR\";a:2:{s:8:\"variants\";a:1:{i:0;a:2:{s:2:\"id\";s:3:\"400\";s:4:\"name\";s:10:\"Normal 400\";}}s:7:\"subsets\";a:2:{i:0;a:2:{s:2:\"id\";s:6:\"telugu\";s:4:\"name\";s:6:\"Telugu\";}i:1;a:2:{s:2:\"id\";s:5:\"latin\";s:4:\"name\";s:5:\"Latin\";}}}s:6:\"Neucha\";a:2:{s:8:\"variants\";a:1:{i:0;a:2:{s:2:\"id\";s:3:\"400\";s:4:\"name\";s:10:\"Normal 400\";}}s:7:\"subsets\";a:2:{i:0;a:2:{s:2:\"id\";s:8:\"cyrillic\";s:4:\"name\";s:8:\"Cyrillic\";}i:1;a:2:{s:2:\"id\";s:5:\"latin\";s:4:\"name\";s:5:\"Latin\";}}}s:6:\"Neuton\";a:2:{s:8:\"variants\";a:6:{i:0;a:2:{s:2:\"id\";s:3:\"200\";s:4:\"name\";s:9:\"Light 200\";}i:1;a:2:{s:2:\"id\";s:3:\"300\";s:4:\"name\";s:8:\"Book 300\";}i:2;a:2:{s:2:\"id\";s:3:\"400\";s:4:\"name\";s:10:\"Normal 400\";}i:3;a:2:{s:2:\"id\";s:9:\"400italic\";s:4:\"name\";s:17:\"Normal 400 Italic\";}i:4;a:2:{s:2:\"id\";s:3:\"700\";s:4:\"name\";s:8:\"Bold 700\";}i:5;a:2:{s:2:\"id\";s:3:\"800\";s:4:\"name\";s:14:\"Extra-Bold 800\";}}s:7:\"subsets\";a:2:{i:0;a:2:{s:2:\"id\";s:9:\"latin-ext\";s:4:\"name\";s:14:\"Latin Extended\";}i:1;a:2:{s:2:\"id\";s:5:\"latin\";s:4:\"name\";s:5:\"Latin\";}}}s:10:\"New Rocker\";a:2:{s:8:\"variants\";a:1:{i:0;a:2:{s:2:\"id\";s:3:\"400\";s:4:\"name\";s:10:\"Normal 400\";}}s:7:\"subsets\";a:2:{i:0;a:2:{s:2:\"id\";s:9:\"latin-ext\";s:4:\"name\";s:14:\"Latin Extended\";}i:1;a:2:{s:2:\"id\";s:5:\"latin\";s:4:\"name\";s:5:\"Latin\";}}}s:10:\"News Cycle\";a:2:{s:8:\"variants\";a:2:{i:0;a:2:{s:2:\"id\";s:3:\"400\";s:4:\"name\";s:10:\"Normal 400\";}i:1;a:2:{s:2:\"id\";s:3:\"700\";s:4:\"name\";s:8:\"Bold 700\";}}s:7:\"subsets\";a:2:{i:0;a:2:{s:2:\"id\";s:9:\"latin-ext\";s:4:\"name\";s:14:\"Latin Extended\";}i:1;a:2:{s:2:\"id\";s:5:\"latin\";s:4:\"name\";s:5:\"Latin\";}}}s:7:\"Niconne\";a:2:{s:8:\"variants\";a:1:{i:0;a:2:{s:2:\"id\";s:3:\"400\";s:4:\"name\";s:10:\"Normal 400\";}}s:7:\"subsets\";a:2:{i:0;a:2:{s:2:\"id\";s:9:\"latin-ext\";s:4:\"name\";s:14:\"Latin Extended\";}i:1;a:2:{s:2:\"id\";s:5:\"latin\";s:4:\"name\";s:5:\"Latin\";}}}s:9:\"Nixie One\";a:2:{s:8:\"variants\";a:1:{i:0;a:2:{s:2:\"id\";s:3:\"400\";s:4:\"name\";s:10:\"Normal 400\";}}s:7:\"subsets\";a:1:{i:0;a:2:{s:2:\"id\";s:5:\"latin\";s:4:\"name\";s:5:\"Latin\";}}}s:6:\"Nobile\";a:2:{s:8:\"variants\";a:4:{i:0;a:2:{s:2:\"id\";s:3:\"400\";s:4:\"name\";s:10:\"Normal 400\";}i:1;a:2:{s:2:\"id\";s:9:\"400italic\";s:4:\"name\";s:17:\"Normal 400 Italic\";}i:2;a:2:{s:2:\"id\";s:3:\"700\";s:4:\"name\";s:8:\"Bold 700\";}i:3;a:2:{s:2:\"id\";s:9:\"700italic\";s:4:\"name\";s:15:\"Bold 700 Italic\";}}s:7:\"subsets\";a:1:{i:0;a:2:{s:2:\"id\";s:5:\"latin\";s:4:\"name\";s:5:\"Latin\";}}}s:6:\"Nokora\";a:2:{s:8:\"variants\";a:2:{i:0;a:2:{s:2:\"id\";s:3:\"400\";s:4:\"name\";s:10:\"Normal 400\";}i:1;a:2:{s:2:\"id\";s:3:\"700\";s:4:\"name\";s:8:\"Bold 700\";}}s:7:\"subsets\";a:1:{i:0;a:2:{s:2:\"id\";s:5:\"khmer\";s:4:\"name\";s:5:\"Khmer\";}}}s:7:\"Norican\";a:2:{s:8:\"variants\";a:1:{i:0;a:2:{s:2:\"id\";s:3:\"400\";s:4:\"name\";s:10:\"Normal 400\";}}s:7:\"subsets\";a:2:{i:0;a:2:{s:2:\"id\";s:9:\"latin-ext\";s:4:\"name\";s:14:\"Latin Extended\";}i:1;a:2:{s:2:\"id\";s:5:\"latin\";s:4:\"name\";s:5:\"Latin\";}}}s:7:\"Nosifer\";a:2:{s:8:\"variants\";a:1:{i:0;a:2:{s:2:\"id\";s:3:\"400\";s:4:\"name\";s:10:\"Normal 400\";}}s:7:\"subsets\";a:2:{i:0;a:2:{s:2:\"id\";s:9:\"latin-ext\";s:4:\"name\";s:14:\"Latin Extended\";}i:1;a:2:{s:2:\"id\";s:5:\"latin\";s:4:\"name\";s:5:\"Latin\";}}}s:20:\"Nothing You Could Do\";a:2:{s:8:\"variants\";a:1:{i:0;a:2:{s:2:\"id\";s:3:\"400\";s:4:\"name\";s:10:\"Normal 400\";}}s:7:\"subsets\";a:1:{i:0;a:2:{s:2:\"id\";s:5:\"latin\";s:4:\"name\";s:5:\"Latin\";}}}s:12:\"Noticia Text\";a:2:{s:8:\"variants\";a:4:{i:0;a:2:{s:2:\"id\";s:3:\"400\";s:4:\"name\";s:10:\"Normal 400\";}i:1;a:2:{s:2:\"id\";s:9:\"400italic\";s:4:\"name\";s:17:\"Normal 400 Italic\";}i:2;a:2:{s:2:\"id\";s:3:\"700\";s:4:\"name\";s:8:\"Bold 700\";}i:3;a:2:{s:2:\"id\";s:9:\"700italic\";s:4:\"name\";s:15:\"Bold 700 Italic\";}}s:7:\"subsets\";a:3:{i:0;a:2:{s:2:\"id\";s:9:\"latin-ext\";s:4:\"name\";s:14:\"Latin Extended\";}i:1;a:2:{s:2:\"id\";s:10:\"vietnamese\";s:4:\"name\";s:10:\"Vietnamese\";}i:2;a:2:{s:2:\"id\";s:5:\"latin\";s:4:\"name\";s:5:\"Latin\";}}}s:9:\"Noto Sans\";a:2:{s:8:\"variants\";a:4:{i:0;a:2:{s:2:\"id\";s:3:\"400\";s:4:\"name\";s:10:\"Normal 400\";}i:1;a:2:{s:2:\"id\";s:9:\"400italic\";s:4:\"name\";s:17:\"Normal 400 Italic\";}i:2;a:2:{s:2:\"id\";s:3:\"700\";s:4:\"name\";s:8:\"Bold 700\";}i:3;a:2:{s:2:\"id\";s:9:\"700italic\";s:4:\"name\";s:15:\"Bold 700 Italic\";}}s:7:\"subsets\";a:8:{i:0;a:2:{s:2:\"id\";s:12:\"cyrillic-ext\";s:4:\"name\";s:17:\"Cyrillic Extended\";}i:1;a:2:{s:2:\"id\";s:9:\"latin-ext\";s:4:\"name\";s:14:\"Latin Extended\";}i:2;a:2:{s:2:\"id\";s:10:\"vietnamese\";s:4:\"name\";s:10:\"Vietnamese\";}i:3;a:2:{s:2:\"id\";s:9:\"greek-ext\";s:4:\"name\";s:14:\"Greek Extended\";}i:4;a:2:{s:2:\"id\";s:8:\"cyrillic\";s:4:\"name\";s:8:\"Cyrillic\";}i:5;a:2:{s:2:\"id\";s:5:\"latin\";s:4:\"name\";s:5:\"Latin\";}i:6;a:2:{s:2:\"id\";s:5:\"greek\";s:4:\"name\";s:5:\"Greek\";}i:7;a:2:{s:2:\"id\";s:10:\"devanagari\";s:4:\"name\";s:10:\"Devanagari\";}}}s:10:\"Noto Serif\";a:2:{s:8:\"variants\";a:4:{i:0;a:2:{s:2:\"id\";s:3:\"400\";s:4:\"name\";s:10:\"Normal 400\";}i:1;a:2:{s:2:\"id\";s:9:\"400italic\";s:4:\"name\";s:17:\"Normal 400 Italic\";}i:2;a:2:{s:2:\"id\";s:3:\"700\";s:4:\"name\";s:8:\"Bold 700\";}i:3;a:2:{s:2:\"id\";s:9:\"700italic\";s:4:\"name\";s:15:\"Bold 700 Italic\";}}s:7:\"subsets\";a:7:{i:0;a:2:{s:2:\"id\";s:12:\"cyrillic-ext\";s:4:\"name\";s:17:\"Cyrillic Extended\";}i:1;a:2:{s:2:\"id\";s:9:\"latin-ext\";s:4:\"name\";s:14:\"Latin Extended\";}i:2;a:2:{s:2:\"id\";s:10:\"vietnamese\";s:4:\"name\";s:10:\"Vietnamese\";}i:3;a:2:{s:2:\"id\";s:9:\"greek-ext\";s:4:\"name\";s:14:\"Greek Extended\";}i:4;a:2:{s:2:\"id\";s:8:\"cyrillic\";s:4:\"name\";s:8:\"Cyrillic\";}i:5;a:2:{s:2:\"id\";s:5:\"latin\";s:4:\"name\";s:5:\"Latin\";}i:6;a:2:{s:2:\"id\";s:5:\"greek\";s:4:\"name\";s:5:\"Greek\";}}}s:8:\"Nova Cut\";a:2:{s:8:\"variants\";a:1:{i:0;a:2:{s:2:\"id\";s:3:\"400\";s:4:\"name\";s:10:\"Normal 400\";}}s:7:\"subsets\";a:1:{i:0;a:2:{s:2:\"id\";s:5:\"latin\";s:4:\"name\";s:5:\"Latin\";}}}s:9:\"Nova Flat\";a:2:{s:8:\"variants\";a:1:{i:0;a:2:{s:2:\"id\";s:3:\"400\";s:4:\"name\";s:10:\"Normal 400\";}}s:7:\"subsets\";a:1:{i:0;a:2:{s:2:\"id\";s:5:\"latin\";s:4:\"name\";s:5:\"Latin\";}}}s:9:\"Nova Mono\";a:2:{s:8:\"variants\";a:1:{i:0;a:2:{s:2:\"id\";s:3:\"400\";s:4:\"name\";s:10:\"Normal 400\";}}s:7:\"subsets\";a:2:{i:0;a:2:{s:2:\"id\";s:5:\"latin\";s:4:\"name\";s:5:\"Latin\";}i:1;a:2:{s:2:\"id\";s:5:\"greek\";s:4:\"name\";s:5:\"Greek\";}}}s:9:\"Nova Oval\";a:2:{s:8:\"variants\";a:1:{i:0;a:2:{s:2:\"id\";s:3:\"400\";s:4:\"name\";s:10:\"Normal 400\";}}s:7:\"subsets\";a:1:{i:0;a:2:{s:2:\"id\";s:5:\"latin\";s:4:\"name\";s:5:\"Latin\";}}}s:10:\"Nova Round\";a:2:{s:8:\"variants\";a:1:{i:0;a:2:{s:2:\"id\";s:3:\"400\";s:4:\"name\";s:10:\"Normal 400\";}}s:7:\"subsets\";a:1:{i:0;a:2:{s:2:\"id\";s:5:\"latin\";s:4:\"name\";s:5:\"Latin\";}}}s:11:\"Nova Script\";a:2:{s:8:\"variants\";a:1:{i:0;a:2:{s:2:\"id\";s:3:\"400\";s:4:\"name\";s:10:\"Normal 400\";}}s:7:\"subsets\";a:1:{i:0;a:2:{s:2:\"id\";s:5:\"latin\";s:4:\"name\";s:5:\"Latin\";}}}s:9:\"Nova Slim\";a:2:{s:8:\"variants\";a:1:{i:0;a:2:{s:2:\"id\";s:3:\"400\";s:4:\"name\";s:10:\"Normal 400\";}}s:7:\"subsets\";a:1:{i:0;a:2:{s:2:\"id\";s:5:\"latin\";s:4:\"name\";s:5:\"Latin\";}}}s:11:\"Nova Square\";a:2:{s:8:\"variants\";a:1:{i:0;a:2:{s:2:\"id\";s:3:\"400\";s:4:\"name\";s:10:\"Normal 400\";}}s:7:\"subsets\";a:1:{i:0;a:2:{s:2:\"id\";s:5:\"latin\";s:4:\"name\";s:5:\"Latin\";}}}s:6:\"Numans\";a:2:{s:8:\"variants\";a:1:{i:0;a:2:{s:2:\"id\";s:3:\"400\";s:4:\"name\";s:10:\"Normal 400\";}}s:7:\"subsets\";a:1:{i:0;a:2:{s:2:\"id\";s:5:\"latin\";s:4:\"name\";s:5:\"Latin\";}}}s:6:\"Nunito\";a:2:{s:8:\"variants\";a:3:{i:0;a:2:{s:2:\"id\";s:3:\"300\";s:4:\"name\";s:8:\"Book 300\";}i:1;a:2:{s:2:\"id\";s:3:\"400\";s:4:\"name\";s:10:\"Normal 400\";}i:2;a:2:{s:2:\"id\";s:3:\"700\";s:4:\"name\";s:8:\"Bold 700\";}}s:7:\"subsets\";a:1:{i:0;a:2:{s:2:\"id\";s:5:\"latin\";s:4:\"name\";s:5:\"Latin\";}}}s:14:\"Odor Mean Chey\";a:2:{s:8:\"variants\";a:1:{i:0;a:2:{s:2:\"id\";s:3:\"400\";s:4:\"name\";s:10:\"Normal 400\";}}s:7:\"subsets\";a:1:{i:0;a:2:{s:2:\"id\";s:5:\"khmer\";s:4:\"name\";s:5:\"Khmer\";}}}s:7:\"Offside\";a:2:{s:8:\"variants\";a:1:{i:0;a:2:{s:2:\"id\";s:3:\"400\";s:4:\"name\";s:10:\"Normal 400\";}}s:7:\"subsets\";a:1:{i:0;a:2:{s:2:\"id\";s:5:\"latin\";s:4:\"name\";s:5:\"Latin\";}}}s:15:\"Old Standard TT\";a:2:{s:8:\"variants\";a:3:{i:0;a:2:{s:2:\"id\";s:3:\"400\";s:4:\"name\";s:10:\"Normal 400\";}i:1;a:2:{s:2:\"id\";s:9:\"400italic\";s:4:\"name\";s:17:\"Normal 400 Italic\";}i:2;a:2:{s:2:\"id\";s:3:\"700\";s:4:\"name\";s:8:\"Bold 700\";}}s:7:\"subsets\";a:1:{i:0;a:2:{s:2:\"id\";s:5:\"latin\";s:4:\"name\";s:5:\"Latin\";}}}s:9:\"Oldenburg\";a:2:{s:8:\"variants\";a:1:{i:0;a:2:{s:2:\"id\";s:3:\"400\";s:4:\"name\";s:10:\"Normal 400\";}}s:7:\"subsets\";a:2:{i:0;a:2:{s:2:\"id\";s:9:\"latin-ext\";s:4:\"name\";s:14:\"Latin Extended\";}i:1;a:2:{s:2:\"id\";s:5:\"latin\";s:4:\"name\";s:5:\"Latin\";}}}s:11:\"Oleo Script\";a:2:{s:8:\"variants\";a:2:{i:0;a:2:{s:2:\"id\";s:3:\"400\";s:4:\"name\";s:10:\"Normal 400\";}i:1;a:2:{s:2:\"id\";s:3:\"700\";s:4:\"name\";s:8:\"Bold 700\";}}s:7:\"subsets\";a:2:{i:0;a:2:{s:2:\"id\";s:9:\"latin-ext\";s:4:\"name\";s:14:\"Latin Extended\";}i:1;a:2:{s:2:\"id\";s:5:\"latin\";s:4:\"name\";s:5:\"Latin\";}}}s:22:\"Oleo Script Swash Caps\";a:2:{s:8:\"variants\";a:2:{i:0;a:2:{s:2:\"id\";s:3:\"400\";s:4:\"name\";s:10:\"Normal 400\";}i:1;a:2:{s:2:\"id\";s:3:\"700\";s:4:\"name\";s:8:\"Bold 700\";}}s:7:\"subsets\";a:2:{i:0;a:2:{s:2:\"id\";s:9:\"latin-ext\";s:4:\"name\";s:14:\"Latin Extended\";}i:1;a:2:{s:2:\"id\";s:5:\"latin\";s:4:\"name\";s:5:\"Latin\";}}}s:9:\"Open Sans\";a:2:{s:8:\"variants\";a:10:{i:0;a:2:{s:2:\"id\";s:3:\"300\";s:4:\"name\";s:8:\"Book 300\";}i:1;a:2:{s:2:\"id\";s:9:\"300italic\";s:4:\"name\";s:15:\"Book 300 Italic\";}i:2;a:2:{s:2:\"id\";s:3:\"400\";s:4:\"name\";s:10:\"Normal 400\";}i:3;a:2:{s:2:\"id\";s:9:\"400italic\";s:4:\"name\";s:17:\"Normal 400 Italic\";}i:4;a:2:{s:2:\"id\";s:3:\"600\";s:4:\"name\";s:13:\"Semi-Bold 600\";}i:5;a:2:{s:2:\"id\";s:9:\"600italic\";s:4:\"name\";s:20:\"Semi-Bold 600 Italic\";}i:6;a:2:{s:2:\"id\";s:3:\"700\";s:4:\"name\";s:8:\"Bold 700\";}i:7;a:2:{s:2:\"id\";s:9:\"700italic\";s:4:\"name\";s:15:\"Bold 700 Italic\";}i:8;a:2:{s:2:\"id\";s:3:\"800\";s:4:\"name\";s:14:\"Extra-Bold 800\";}i:9;a:2:{s:2:\"id\";s:9:\"800italic\";s:4:\"name\";s:21:\"Extra-Bold 800 Italic\";}}s:7:\"subsets\";a:7:{i:0;a:2:{s:2:\"id\";s:12:\"cyrillic-ext\";s:4:\"name\";s:17:\"Cyrillic Extended\";}i:1;a:2:{s:2:\"id\";s:9:\"latin-ext\";s:4:\"name\";s:14:\"Latin Extended\";}i:2;a:2:{s:2:\"id\";s:10:\"vietnamese\";s:4:\"name\";s:10:\"Vietnamese\";}i:3;a:2:{s:2:\"id\";s:9:\"greek-ext\";s:4:\"name\";s:14:\"Greek Extended\";}i:4;a:2:{s:2:\"id\";s:8:\"cyrillic\";s:4:\"name\";s:8:\"Cyrillic\";}i:5;a:2:{s:2:\"id\";s:5:\"latin\";s:4:\"name\";s:5:\"Latin\";}i:6;a:2:{s:2:\"id\";s:5:\"greek\";s:4:\"name\";s:5:\"Greek\";}}}s:19:\"Open Sans Condensed\";a:2:{s:8:\"variants\";a:3:{i:0;a:2:{s:2:\"id\";s:3:\"300\";s:4:\"name\";s:8:\"Book 300\";}i:1;a:2:{s:2:\"id\";s:9:\"300italic\";s:4:\"name\";s:15:\"Book 300 Italic\";}i:2;a:2:{s:2:\"id\";s:3:\"700\";s:4:\"name\";s:8:\"Bold 700\";}}s:7:\"subsets\";a:7:{i:0;a:2:{s:2:\"id\";s:12:\"cyrillic-ext\";s:4:\"name\";s:17:\"Cyrillic Extended\";}i:1;a:2:{s:2:\"id\";s:9:\"latin-ext\";s:4:\"name\";s:14:\"Latin Extended\";}i:2;a:2:{s:2:\"id\";s:10:\"vietnamese\";s:4:\"name\";s:10:\"Vietnamese\";}i:3;a:2:{s:2:\"id\";s:9:\"greek-ext\";s:4:\"name\";s:14:\"Greek Extended\";}i:4;a:2:{s:2:\"id\";s:8:\"cyrillic\";s:4:\"name\";s:8:\"Cyrillic\";}i:5;a:2:{s:2:\"id\";s:5:\"latin\";s:4:\"name\";s:5:\"Latin\";}i:6;a:2:{s:2:\"id\";s:5:\"greek\";s:4:\"name\";s:5:\"Greek\";}}}s:11:\"Oranienbaum\";a:2:{s:8:\"variants\";a:1:{i:0;a:2:{s:2:\"id\";s:3:\"400\";s:4:\"name\";s:10:\"Normal 400\";}}s:7:\"subsets\";a:4:{i:0;a:2:{s:2:\"id\";s:12:\"cyrillic-ext\";s:4:\"name\";s:17:\"Cyrillic Extended\";}i:1;a:2:{s:2:\"id\";s:9:\"latin-ext\";s:4:\"name\";s:14:\"Latin Extended\";}i:2;a:2:{s:2:\"id\";s:8:\"cyrillic\";s:4:\"name\";s:8:\"Cyrillic\";}i:3;a:2:{s:2:\"id\";s:5:\"latin\";s:4:\"name\";s:5:\"Latin\";}}}s:8:\"Orbitron\";a:2:{s:8:\"variants\";a:4:{i:0;a:2:{s:2:\"id\";s:3:\"400\";s:4:\"name\";s:10:\"Normal 400\";}i:1;a:2:{s:2:\"id\";s:3:\"500\";s:4:\"name\";s:10:\"Medium 500\";}i:2;a:2:{s:2:\"id\";s:3:\"700\";s:4:\"name\";s:8:\"Bold 700\";}i:3;a:2:{s:2:\"id\";s:3:\"900\";s:4:\"name\";s:14:\"Ultra-Bold 900\";}}s:7:\"subsets\";a:1:{i:0;a:2:{s:2:\"id\";s:5:\"latin\";s:4:\"name\";s:5:\"Latin\";}}}s:7:\"Oregano\";a:2:{s:8:\"variants\";a:2:{i:0;a:2:{s:2:\"id\";s:3:\"400\";s:4:\"name\";s:10:\"Normal 400\";}i:1;a:2:{s:2:\"id\";s:9:\"400italic\";s:4:\"name\";s:17:\"Normal 400 Italic\";}}s:7:\"subsets\";a:2:{i:0;a:2:{s:2:\"id\";s:9:\"latin-ext\";s:4:\"name\";s:14:\"Latin Extended\";}i:1;a:2:{s:2:\"id\";s:5:\"latin\";s:4:\"name\";s:5:\"Latin\";}}}s:7:\"Orienta\";a:2:{s:8:\"variants\";a:1:{i:0;a:2:{s:2:\"id\";s:3:\"400\";s:4:\"name\";s:10:\"Normal 400\";}}s:7:\"subsets\";a:2:{i:0;a:2:{s:2:\"id\";s:9:\"latin-ext\";s:4:\"name\";s:14:\"Latin Extended\";}i:1;a:2:{s:2:\"id\";s:5:\"latin\";s:4:\"name\";s:5:\"Latin\";}}}s:15:\"Original Surfer\";a:2:{s:8:\"variants\";a:1:{i:0;a:2:{s:2:\"id\";s:3:\"400\";s:4:\"name\";s:10:\"Normal 400\";}}s:7:\"subsets\";a:1:{i:0;a:2:{s:2:\"id\";s:5:\"latin\";s:4:\"name\";s:5:\"Latin\";}}}s:6:\"Oswald\";a:2:{s:8:\"variants\";a:3:{i:0;a:2:{s:2:\"id\";s:3:\"300\";s:4:\"name\";s:8:\"Book 300\";}i:1;a:2:{s:2:\"id\";s:3:\"400\";s:4:\"name\";s:10:\"Normal 400\";}i:2;a:2:{s:2:\"id\";s:3:\"700\";s:4:\"name\";s:8:\"Bold 700\";}}s:7:\"subsets\";a:2:{i:0;a:2:{s:2:\"id\";s:9:\"latin-ext\";s:4:\"name\";s:14:\"Latin Extended\";}i:1;a:2:{s:2:\"id\";s:5:\"latin\";s:4:\"name\";s:5:\"Latin\";}}}s:16:\"Over the Rainbow\";a:2:{s:8:\"variants\";a:1:{i:0;a:2:{s:2:\"id\";s:3:\"400\";s:4:\"name\";s:10:\"Normal 400\";}}s:7:\"subsets\";a:1:{i:0;a:2:{s:2:\"id\";s:5:\"latin\";s:4:\"name\";s:5:\"Latin\";}}}s:8:\"Overlock\";a:2:{s:8:\"variants\";a:6:{i:0;a:2:{s:2:\"id\";s:3:\"400\";s:4:\"name\";s:10:\"Normal 400\";}i:1;a:2:{s:2:\"id\";s:9:\"400italic\";s:4:\"name\";s:17:\"Normal 400 Italic\";}i:2;a:2:{s:2:\"id\";s:3:\"700\";s:4:\"name\";s:8:\"Bold 700\";}i:3;a:2:{s:2:\"id\";s:9:\"700italic\";s:4:\"name\";s:15:\"Bold 700 Italic\";}i:4;a:2:{s:2:\"id\";s:3:\"900\";s:4:\"name\";s:14:\"Ultra-Bold 900\";}i:5;a:2:{s:2:\"id\";s:9:\"900italic\";s:4:\"name\";s:21:\"Ultra-Bold 900 Italic\";}}s:7:\"subsets\";a:2:{i:0;a:2:{s:2:\"id\";s:9:\"latin-ext\";s:4:\"name\";s:14:\"Latin Extended\";}i:1;a:2:{s:2:\"id\";s:5:\"latin\";s:4:\"name\";s:5:\"Latin\";}}}s:11:\"Overlock SC\";a:2:{s:8:\"variants\";a:1:{i:0;a:2:{s:2:\"id\";s:3:\"400\";s:4:\"name\";s:10:\"Normal 400\";}}s:7:\"subsets\";a:2:{i:0;a:2:{s:2:\"id\";s:9:\"latin-ext\";s:4:\"name\";s:14:\"Latin Extended\";}i:1;a:2:{s:2:\"id\";s:5:\"latin\";s:4:\"name\";s:5:\"Latin\";}}}s:3:\"Ovo\";a:2:{s:8:\"variants\";a:1:{i:0;a:2:{s:2:\"id\";s:3:\"400\";s:4:\"name\";s:10:\"Normal 400\";}}s:7:\"subsets\";a:1:{i:0;a:2:{s:2:\"id\";s:5:\"latin\";s:4:\"name\";s:5:\"Latin\";}}}s:6:\"Oxygen\";a:2:{s:8:\"variants\";a:3:{i:0;a:2:{s:2:\"id\";s:3:\"300\";s:4:\"name\";s:8:\"Book 300\";}i:1;a:2:{s:2:\"id\";s:3:\"400\";s:4:\"name\";s:10:\"Normal 400\";}i:2;a:2:{s:2:\"id\";s:3:\"700\";s:4:\"name\";s:8:\"Bold 700\";}}s:7:\"subsets\";a:2:{i:0;a:2:{s:2:\"id\";s:9:\"latin-ext\";s:4:\"name\";s:14:\"Latin Extended\";}i:1;a:2:{s:2:\"id\";s:5:\"latin\";s:4:\"name\";s:5:\"Latin\";}}}s:11:\"Oxygen Mono\";a:2:{s:8:\"variants\";a:1:{i:0;a:2:{s:2:\"id\";s:3:\"400\";s:4:\"name\";s:10:\"Normal 400\";}}s:7:\"subsets\";a:2:{i:0;a:2:{s:2:\"id\";s:9:\"latin-ext\";s:4:\"name\";s:14:\"Latin Extended\";}i:1;a:2:{s:2:\"id\";s:5:\"latin\";s:4:\"name\";s:5:\"Latin\";}}}s:7:\"PT Mono\";a:2:{s:8:\"variants\";a:1:{i:0;a:2:{s:2:\"id\";s:3:\"400\";s:4:\"name\";s:10:\"Normal 400\";}}s:7:\"subsets\";a:4:{i:0;a:2:{s:2:\"id\";s:12:\"cyrillic-ext\";s:4:\"name\";s:17:\"Cyrillic Extended\";}i:1;a:2:{s:2:\"id\";s:9:\"latin-ext\";s:4:\"name\";s:14:\"Latin Extended\";}i:2;a:2:{s:2:\"id\";s:8:\"cyrillic\";s:4:\"name\";s:8:\"Cyrillic\";}i:3;a:2:{s:2:\"id\";s:5:\"latin\";s:4:\"name\";s:5:\"Latin\";}}}s:7:\"PT Sans\";a:2:{s:8:\"variants\";a:4:{i:0;a:2:{s:2:\"id\";s:3:\"400\";s:4:\"name\";s:10:\"Normal 400\";}i:1;a:2:{s:2:\"id\";s:9:\"400italic\";s:4:\"name\";s:17:\"Normal 400 Italic\";}i:2;a:2:{s:2:\"id\";s:3:\"700\";s:4:\"name\";s:8:\"Bold 700\";}i:3;a:2:{s:2:\"id\";s:9:\"700italic\";s:4:\"name\";s:15:\"Bold 700 Italic\";}}s:7:\"subsets\";a:4:{i:0;a:2:{s:2:\"id\";s:12:\"cyrillic-ext\";s:4:\"name\";s:17:\"Cyrillic Extended\";}i:1;a:2:{s:2:\"id\";s:9:\"latin-ext\";s:4:\"name\";s:14:\"Latin Extended\";}i:2;a:2:{s:2:\"id\";s:8:\"cyrillic\";s:4:\"name\";s:8:\"Cyrillic\";}i:3;a:2:{s:2:\"id\";s:5:\"latin\";s:4:\"name\";s:5:\"Latin\";}}}s:15:\"PT Sans Caption\";a:2:{s:8:\"variants\";a:2:{i:0;a:2:{s:2:\"id\";s:3:\"400\";s:4:\"name\";s:10:\"Normal 400\";}i:1;a:2:{s:2:\"id\";s:3:\"700\";s:4:\"name\";s:8:\"Bold 700\";}}s:7:\"subsets\";a:4:{i:0;a:2:{s:2:\"id\";s:12:\"cyrillic-ext\";s:4:\"name\";s:17:\"Cyrillic Extended\";}i:1;a:2:{s:2:\"id\";s:9:\"latin-ext\";s:4:\"name\";s:14:\"Latin Extended\";}i:2;a:2:{s:2:\"id\";s:8:\"cyrillic\";s:4:\"name\";s:8:\"Cyrillic\";}i:3;a:2:{s:2:\"id\";s:5:\"latin\";s:4:\"name\";s:5:\"Latin\";}}}s:14:\"PT Sans Narrow\";a:2:{s:8:\"variants\";a:2:{i:0;a:2:{s:2:\"id\";s:3:\"400\";s:4:\"name\";s:10:\"Normal 400\";}i:1;a:2:{s:2:\"id\";s:3:\"700\";s:4:\"name\";s:8:\"Bold 700\";}}s:7:\"subsets\";a:4:{i:0;a:2:{s:2:\"id\";s:12:\"cyrillic-ext\";s:4:\"name\";s:17:\"Cyrillic Extended\";}i:1;a:2:{s:2:\"id\";s:9:\"latin-ext\";s:4:\"name\";s:14:\"Latin Extended\";}i:2;a:2:{s:2:\"id\";s:8:\"cyrillic\";s:4:\"name\";s:8:\"Cyrillic\";}i:3;a:2:{s:2:\"id\";s:5:\"latin\";s:4:\"name\";s:5:\"Latin\";}}}s:8:\"PT Serif\";a:2:{s:8:\"variants\";a:4:{i:0;a:2:{s:2:\"id\";s:3:\"400\";s:4:\"name\";s:10:\"Normal 400\";}i:1;a:2:{s:2:\"id\";s:9:\"400italic\";s:4:\"name\";s:17:\"Normal 400 Italic\";}i:2;a:2:{s:2:\"id\";s:3:\"700\";s:4:\"name\";s:8:\"Bold 700\";}i:3;a:2:{s:2:\"id\";s:9:\"700italic\";s:4:\"name\";s:15:\"Bold 700 Italic\";}}s:7:\"subsets\";a:4:{i:0;a:2:{s:2:\"id\";s:12:\"cyrillic-ext\";s:4:\"name\";s:17:\"Cyrillic Extended\";}i:1;a:2:{s:2:\"id\";s:9:\"latin-ext\";s:4:\"name\";s:14:\"Latin Extended\";}i:2;a:2:{s:2:\"id\";s:8:\"cyrillic\";s:4:\"name\";s:8:\"Cyrillic\";}i:3;a:2:{s:2:\"id\";s:5:\"latin\";s:4:\"name\";s:5:\"Latin\";}}}s:16:\"PT Serif Caption\";a:2:{s:8:\"variants\";a:2:{i:0;a:2:{s:2:\"id\";s:3:\"400\";s:4:\"name\";s:10:\"Normal 400\";}i:1;a:2:{s:2:\"id\";s:9:\"400italic\";s:4:\"name\";s:17:\"Normal 400 Italic\";}}s:7:\"subsets\";a:4:{i:0;a:2:{s:2:\"id\";s:12:\"cyrillic-ext\";s:4:\"name\";s:17:\"Cyrillic Extended\";}i:1;a:2:{s:2:\"id\";s:9:\"latin-ext\";s:4:\"name\";s:14:\"Latin Extended\";}i:2;a:2:{s:2:\"id\";s:8:\"cyrillic\";s:4:\"name\";s:8:\"Cyrillic\";}i:3;a:2:{s:2:\"id\";s:5:\"latin\";s:4:\"name\";s:5:\"Latin\";}}}s:8:\"Pacifico\";a:2:{s:8:\"variants\";a:1:{i:0;a:2:{s:2:\"id\";s:3:\"400\";s:4:\"name\";s:10:\"Normal 400\";}}s:7:\"subsets\";a:1:{i:0;a:2:{s:2:\"id\";s:5:\"latin\";s:4:\"name\";s:5:\"Latin\";}}}s:9:\"Palanquin\";a:2:{s:8:\"variants\";a:7:{i:0;a:2:{s:2:\"id\";s:3:\"100\";s:4:\"name\";s:15:\"Ultra-Light 100\";}i:1;a:2:{s:2:\"id\";s:3:\"200\";s:4:\"name\";s:9:\"Light 200\";}i:2;a:2:{s:2:\"id\";s:3:\"300\";s:4:\"name\";s:8:\"Book 300\";}i:3;a:2:{s:2:\"id\";s:3:\"400\";s:4:\"name\";s:10:\"Normal 400\";}i:4;a:2:{s:2:\"id\";s:3:\"500\";s:4:\"name\";s:10:\"Medium 500\";}i:5;a:2:{s:2:\"id\";s:3:\"600\";s:4:\"name\";s:13:\"Semi-Bold 600\";}i:6;a:2:{s:2:\"id\";s:3:\"700\";s:4:\"name\";s:8:\"Bold 700\";}}s:7:\"subsets\";a:3:{i:0;a:2:{s:2:\"id\";s:9:\"latin-ext\";s:4:\"name\";s:14:\"Latin Extended\";}i:1;a:2:{s:2:\"id\";s:5:\"latin\";s:4:\"name\";s:5:\"Latin\";}i:2;a:2:{s:2:\"id\";s:10:\"devanagari\";s:4:\"name\";s:10:\"Devanagari\";}}}s:14:\"Palanquin Dark\";a:2:{s:8:\"variants\";a:4:{i:0;a:2:{s:2:\"id\";s:3:\"400\";s:4:\"name\";s:10:\"Normal 400\";}i:1;a:2:{s:2:\"id\";s:3:\"500\";s:4:\"name\";s:10:\"Medium 500\";}i:2;a:2:{s:2:\"id\";s:3:\"600\";s:4:\"name\";s:13:\"Semi-Bold 600\";}i:3;a:2:{s:2:\"id\";s:3:\"700\";s:4:\"name\";s:8:\"Bold 700\";}}s:7:\"subsets\";a:3:{i:0;a:2:{s:2:\"id\";s:9:\"latin-ext\";s:4:\"name\";s:14:\"Latin Extended\";}i:1;a:2:{s:2:\"id\";s:5:\"latin\";s:4:\"name\";s:5:\"Latin\";}i:2;a:2:{s:2:\"id\";s:10:\"devanagari\";s:4:\"name\";s:10:\"Devanagari\";}}}s:7:\"Paprika\";a:2:{s:8:\"variants\";a:1:{i:0;a:2:{s:2:\"id\";s:3:\"400\";s:4:\"name\";s:10:\"Normal 400\";}}s:7:\"subsets\";a:1:{i:0;a:2:{s:2:\"id\";s:5:\"latin\";s:4:\"name\";s:5:\"Latin\";}}}s:10:\"Parisienne\";a:2:{s:8:\"variants\";a:1:{i:0;a:2:{s:2:\"id\";s:3:\"400\";s:4:\"name\";s:10:\"Normal 400\";}}s:7:\"subsets\";a:2:{i:0;a:2:{s:2:\"id\";s:9:\"latin-ext\";s:4:\"name\";s:14:\"Latin Extended\";}i:1;a:2:{s:2:\"id\";s:5:\"latin\";s:4:\"name\";s:5:\"Latin\";}}}s:11:\"Passero One\";a:2:{s:8:\"variants\";a:1:{i:0;a:2:{s:2:\"id\";s:3:\"400\";s:4:\"name\";s:10:\"Normal 400\";}}s:7:\"subsets\";a:2:{i:0;a:2:{s:2:\"id\";s:9:\"latin-ext\";s:4:\"name\";s:14:\"Latin Extended\";}i:1;a:2:{s:2:\"id\";s:5:\"latin\";s:4:\"name\";s:5:\"Latin\";}}}s:11:\"Passion One\";a:2:{s:8:\"variants\";a:3:{i:0;a:2:{s:2:\"id\";s:3:\"400\";s:4:\"name\";s:10:\"Normal 400\";}i:1;a:2:{s:2:\"id\";s:3:\"700\";s:4:\"name\";s:8:\"Bold 700\";}i:2;a:2:{s:2:\"id\";s:3:\"900\";s:4:\"name\";s:14:\"Ultra-Bold 900\";}}s:7:\"subsets\";a:2:{i:0;a:2:{s:2:\"id\";s:9:\"latin-ext\";s:4:\"name\";s:14:\"Latin Extended\";}i:1;a:2:{s:2:\"id\";s:5:\"latin\";s:4:\"name\";s:5:\"Latin\";}}}s:18:\"Pathway Gothic One\";a:2:{s:8:\"variants\";a:1:{i:0;a:2:{s:2:\"id\";s:3:\"400\";s:4:\"name\";s:10:\"Normal 400\";}}s:7:\"subsets\";a:2:{i:0;a:2:{s:2:\"id\";s:9:\"latin-ext\";s:4:\"name\";s:14:\"Latin Extended\";}i:1;a:2:{s:2:\"id\";s:5:\"latin\";s:4:\"name\";s:5:\"Latin\";}}}s:12:\"Patrick Hand\";a:2:{s:8:\"variants\";a:1:{i:0;a:2:{s:2:\"id\";s:3:\"400\";s:4:\"name\";s:10:\"Normal 400\";}}s:7:\"subsets\";a:3:{i:0;a:2:{s:2:\"id\";s:9:\"latin-ext\";s:4:\"name\";s:14:\"Latin Extended\";}i:1;a:2:{s:2:\"id\";s:10:\"vietnamese\";s:4:\"name\";s:10:\"Vietnamese\";}i:2;a:2:{s:2:\"id\";s:5:\"latin\";s:4:\"name\";s:5:\"Latin\";}}}s:15:\"Patrick Hand SC\";a:2:{s:8:\"variants\";a:1:{i:0;a:2:{s:2:\"id\";s:3:\"400\";s:4:\"name\";s:10:\"Normal 400\";}}s:7:\"subsets\";a:3:{i:0;a:2:{s:2:\"id\";s:9:\"latin-ext\";s:4:\"name\";s:14:\"Latin Extended\";}i:1;a:2:{s:2:\"id\";s:10:\"vietnamese\";s:4:\"name\";s:10:\"Vietnamese\";}i:2;a:2:{s:2:\"id\";s:5:\"latin\";s:4:\"name\";s:5:\"Latin\";}}}s:9:\"Patua One\";a:2:{s:8:\"variants\";a:1:{i:0;a:2:{s:2:\"id\";s:3:\"400\";s:4:\"name\";s:10:\"Normal 400\";}}s:7:\"subsets\";a:1:{i:0;a:2:{s:2:\"id\";s:5:\"latin\";s:4:\"name\";s:5:\"Latin\";}}}s:11:\"Paytone One\";a:2:{s:8:\"variants\";a:1:{i:0;a:2:{s:2:\"id\";s:3:\"400\";s:4:\"name\";s:10:\"Normal 400\";}}s:7:\"subsets\";a:1:{i:0;a:2:{s:2:\"id\";s:5:\"latin\";s:4:\"name\";s:5:\"Latin\";}}}s:7:\"Peddana\";a:2:{s:8:\"variants\";a:1:{i:0;a:2:{s:2:\"id\";s:3:\"400\";s:4:\"name\";s:10:\"Normal 400\";}}s:7:\"subsets\";a:2:{i:0;a:2:{s:2:\"id\";s:6:\"telugu\";s:4:\"name\";s:6:\"Telugu\";}i:1;a:2:{s:2:\"id\";s:5:\"latin\";s:4:\"name\";s:5:\"Latin\";}}}s:7:\"Peralta\";a:2:{s:8:\"variants\";a:1:{i:0;a:2:{s:2:\"id\";s:3:\"400\";s:4:\"name\";s:10:\"Normal 400\";}}s:7:\"subsets\";a:2:{i:0;a:2:{s:2:\"id\";s:9:\"latin-ext\";s:4:\"name\";s:14:\"Latin Extended\";}i:1;a:2:{s:2:\"id\";s:5:\"latin\";s:4:\"name\";s:5:\"Latin\";}}}s:16:\"Permanent Marker\";a:2:{s:8:\"variants\";a:1:{i:0;a:2:{s:2:\"id\";s:3:\"400\";s:4:\"name\";s:10:\"Normal 400\";}}s:7:\"subsets\";a:1:{i:0;a:2:{s:2:\"id\";s:5:\"latin\";s:4:\"name\";s:5:\"Latin\";}}}s:19:\"Petit Formal Script\";a:2:{s:8:\"variants\";a:1:{i:0;a:2:{s:2:\"id\";s:3:\"400\";s:4:\"name\";s:10:\"Normal 400\";}}s:7:\"subsets\";a:2:{i:0;a:2:{s:2:\"id\";s:9:\"latin-ext\";s:4:\"name\";s:14:\"Latin Extended\";}i:1;a:2:{s:2:\"id\";s:5:\"latin\";s:4:\"name\";s:5:\"Latin\";}}}s:7:\"Petrona\";a:2:{s:8:\"variants\";a:1:{i:0;a:2:{s:2:\"id\";s:3:\"400\";s:4:\"name\";s:10:\"Normal 400\";}}s:7:\"subsets\";a:1:{i:0;a:2:{s:2:\"id\";s:5:\"latin\";s:4:\"name\";s:5:\"Latin\";}}}s:11:\"Philosopher\";a:2:{s:8:\"variants\";a:4:{i:0;a:2:{s:2:\"id\";s:3:\"400\";s:4:\"name\";s:10:\"Normal 400\";}i:1;a:2:{s:2:\"id\";s:9:\"400italic\";s:4:\"name\";s:17:\"Normal 400 Italic\";}i:2;a:2:{s:2:\"id\";s:3:\"700\";s:4:\"name\";s:8:\"Bold 700\";}i:3;a:2:{s:2:\"id\";s:9:\"700italic\";s:4:\"name\";s:15:\"Bold 700 Italic\";}}s:7:\"subsets\";a:2:{i:0;a:2:{s:2:\"id\";s:8:\"cyrillic\";s:4:\"name\";s:8:\"Cyrillic\";}i:1;a:2:{s:2:\"id\";s:5:\"latin\";s:4:\"name\";s:5:\"Latin\";}}}s:6:\"Piedra\";a:2:{s:8:\"variants\";a:1:{i:0;a:2:{s:2:\"id\";s:3:\"400\";s:4:\"name\";s:10:\"Normal 400\";}}s:7:\"subsets\";a:2:{i:0;a:2:{s:2:\"id\";s:9:\"latin-ext\";s:4:\"name\";s:14:\"Latin Extended\";}i:1;a:2:{s:2:\"id\";s:5:\"latin\";s:4:\"name\";s:5:\"Latin\";}}}s:13:\"Pinyon Script\";a:2:{s:8:\"variants\";a:1:{i:0;a:2:{s:2:\"id\";s:3:\"400\";s:4:\"name\";s:10:\"Normal 400\";}}s:7:\"subsets\";a:1:{i:0;a:2:{s:2:\"id\";s:5:\"latin\";s:4:\"name\";s:5:\"Latin\";}}}s:10:\"Pirata One\";a:2:{s:8:\"variants\";a:1:{i:0;a:2:{s:2:\"id\";s:3:\"400\";s:4:\"name\";s:10:\"Normal 400\";}}s:7:\"subsets\";a:2:{i:0;a:2:{s:2:\"id\";s:9:\"latin-ext\";s:4:\"name\";s:14:\"Latin Extended\";}i:1;a:2:{s:2:\"id\";s:5:\"latin\";s:4:\"name\";s:5:\"Latin\";}}}s:7:\"Plaster\";a:2:{s:8:\"variants\";a:1:{i:0;a:2:{s:2:\"id\";s:3:\"400\";s:4:\"name\";s:10:\"Normal 400\";}}s:7:\"subsets\";a:2:{i:0;a:2:{s:2:\"id\";s:9:\"latin-ext\";s:4:\"name\";s:14:\"Latin Extended\";}i:1;a:2:{s:2:\"id\";s:5:\"latin\";s:4:\"name\";s:5:\"Latin\";}}}s:4:\"Play\";a:2:{s:8:\"variants\";a:2:{i:0;a:2:{s:2:\"id\";s:3:\"400\";s:4:\"name\";s:10:\"Normal 400\";}i:1;a:2:{s:2:\"id\";s:3:\"700\";s:4:\"name\";s:8:\"Bold 700\";}}s:7:\"subsets\";a:5:{i:0;a:2:{s:2:\"id\";s:12:\"cyrillic-ext\";s:4:\"name\";s:17:\"Cyrillic Extended\";}i:1;a:2:{s:2:\"id\";s:9:\"latin-ext\";s:4:\"name\";s:14:\"Latin Extended\";}i:2;a:2:{s:2:\"id\";s:8:\"cyrillic\";s:4:\"name\";s:8:\"Cyrillic\";}i:3;a:2:{s:2:\"id\";s:5:\"latin\";s:4:\"name\";s:5:\"Latin\";}i:4;a:2:{s:2:\"id\";s:5:\"greek\";s:4:\"name\";s:5:\"Greek\";}}}s:8:\"Playball\";a:2:{s:8:\"variants\";a:1:{i:0;a:2:{s:2:\"id\";s:3:\"400\";s:4:\"name\";s:10:\"Normal 400\";}}s:7:\"subsets\";a:2:{i:0;a:2:{s:2:\"id\";s:9:\"latin-ext\";s:4:\"name\";s:14:\"Latin Extended\";}i:1;a:2:{s:2:\"id\";s:5:\"latin\";s:4:\"name\";s:5:\"Latin\";}}}s:16:\"Playfair Display\";a:2:{s:8:\"variants\";a:6:{i:0;a:2:{s:2:\"id\";s:3:\"400\";s:4:\"name\";s:10:\"Normal 400\";}i:1;a:2:{s:2:\"id\";s:9:\"400italic\";s:4:\"name\";s:17:\"Normal 400 Italic\";}i:2;a:2:{s:2:\"id\";s:3:\"700\";s:4:\"name\";s:8:\"Bold 700\";}i:3;a:2:{s:2:\"id\";s:9:\"700italic\";s:4:\"name\";s:15:\"Bold 700 Italic\";}i:4;a:2:{s:2:\"id\";s:3:\"900\";s:4:\"name\";s:14:\"Ultra-Bold 900\";}i:5;a:2:{s:2:\"id\";s:9:\"900italic\";s:4:\"name\";s:21:\"Ultra-Bold 900 Italic\";}}s:7:\"subsets\";a:3:{i:0;a:2:{s:2:\"id\";s:9:\"latin-ext\";s:4:\"name\";s:14:\"Latin Extended\";}i:1;a:2:{s:2:\"id\";s:8:\"cyrillic\";s:4:\"name\";s:8:\"Cyrillic\";}i:2;a:2:{s:2:\"id\";s:5:\"latin\";s:4:\"name\";s:5:\"Latin\";}}}s:19:\"Playfair Display SC\";a:2:{s:8:\"variants\";a:6:{i:0;a:2:{s:2:\"id\";s:3:\"400\";s:4:\"name\";s:10:\"Normal 400\";}i:1;a:2:{s:2:\"id\";s:9:\"400italic\";s:4:\"name\";s:17:\"Normal 400 Italic\";}i:2;a:2:{s:2:\"id\";s:3:\"700\";s:4:\"name\";s:8:\"Bold 700\";}i:3;a:2:{s:2:\"id\";s:9:\"700italic\";s:4:\"name\";s:15:\"Bold 700 Italic\";}i:4;a:2:{s:2:\"id\";s:3:\"900\";s:4:\"name\";s:14:\"Ultra-Bold 900\";}i:5;a:2:{s:2:\"id\";s:9:\"900italic\";s:4:\"name\";s:21:\"Ultra-Bold 900 Italic\";}}s:7:\"subsets\";a:3:{i:0;a:2:{s:2:\"id\";s:9:\"latin-ext\";s:4:\"name\";s:14:\"Latin Extended\";}i:1;a:2:{s:2:\"id\";s:8:\"cyrillic\";s:4:\"name\";s:8:\"Cyrillic\";}i:2;a:2:{s:2:\"id\";s:5:\"latin\";s:4:\"name\";s:5:\"Latin\";}}}s:7:\"Podkova\";a:2:{s:8:\"variants\";a:2:{i:0;a:2:{s:2:\"id\";s:3:\"400\";s:4:\"name\";s:10:\"Normal 400\";}i:1;a:2:{s:2:\"id\";s:3:\"700\";s:4:\"name\";s:8:\"Bold 700\";}}s:7:\"subsets\";a:1:{i:0;a:2:{s:2:\"id\";s:5:\"latin\";s:4:\"name\";s:5:\"Latin\";}}}s:10:\"Poiret One\";a:2:{s:8:\"variants\";a:1:{i:0;a:2:{s:2:\"id\";s:3:\"400\";s:4:\"name\";s:10:\"Normal 400\";}}s:7:\"subsets\";a:3:{i:0;a:2:{s:2:\"id\";s:9:\"latin-ext\";s:4:\"name\";s:14:\"Latin Extended\";}i:1;a:2:{s:2:\"id\";s:8:\"cyrillic\";s:4:\"name\";s:8:\"Cyrillic\";}i:2;a:2:{s:2:\"id\";s:5:\"latin\";s:4:\"name\";s:5:\"Latin\";}}}s:10:\"Poller One\";a:2:{s:8:\"variants\";a:1:{i:0;a:2:{s:2:\"id\";s:3:\"400\";s:4:\"name\";s:10:\"Normal 400\";}}s:7:\"subsets\";a:1:{i:0;a:2:{s:2:\"id\";s:5:\"latin\";s:4:\"name\";s:5:\"Latin\";}}}s:4:\"Poly\";a:2:{s:8:\"variants\";a:2:{i:0;a:2:{s:2:\"id\";s:3:\"400\";s:4:\"name\";s:10:\"Normal 400\";}i:1;a:2:{s:2:\"id\";s:9:\"400italic\";s:4:\"name\";s:17:\"Normal 400 Italic\";}}s:7:\"subsets\";a:1:{i:0;a:2:{s:2:\"id\";s:5:\"latin\";s:4:\"name\";s:5:\"Latin\";}}}s:8:\"Pompiere\";a:2:{s:8:\"variants\";a:1:{i:0;a:2:{s:2:\"id\";s:3:\"400\";s:4:\"name\";s:10:\"Normal 400\";}}s:7:\"subsets\";a:1:{i:0;a:2:{s:2:\"id\";s:5:\"latin\";s:4:\"name\";s:5:\"Latin\";}}}s:12:\"Pontano Sans\";a:2:{s:8:\"variants\";a:1:{i:0;a:2:{s:2:\"id\";s:3:\"400\";s:4:\"name\";s:10:\"Normal 400\";}}s:7:\"subsets\";a:2:{i:0;a:2:{s:2:\"id\";s:9:\"latin-ext\";s:4:\"name\";s:14:\"Latin Extended\";}i:1;a:2:{s:2:\"id\";s:5:\"latin\";s:4:\"name\";s:5:\"Latin\";}}}s:7:\"Poppins\";a:2:{s:8:\"variants\";a:5:{i:0;a:2:{s:2:\"id\";s:3:\"300\";s:4:\"name\";s:8:\"Book 300\";}i:1;a:2:{s:2:\"id\";s:3:\"400\";s:4:\"name\";s:10:\"Normal 400\";}i:2;a:2:{s:2:\"id\";s:3:\"500\";s:4:\"name\";s:10:\"Medium 500\";}i:3;a:2:{s:2:\"id\";s:3:\"600\";s:4:\"name\";s:13:\"Semi-Bold 600\";}i:4;a:2:{s:2:\"id\";s:3:\"700\";s:4:\"name\";s:8:\"Bold 700\";}}s:7:\"subsets\";a:3:{i:0;a:2:{s:2:\"id\";s:9:\"latin-ext\";s:4:\"name\";s:14:\"Latin Extended\";}i:1;a:2:{s:2:\"id\";s:5:\"latin\";s:4:\"name\";s:5:\"Latin\";}i:2;a:2:{s:2:\"id\";s:10:\"devanagari\";s:4:\"name\";s:10:\"Devanagari\";}}}s:16:\"Port Lligat Sans\";a:2:{s:8:\"variants\";a:1:{i:0;a:2:{s:2:\"id\";s:3:\"400\";s:4:\"name\";s:10:\"Normal 400\";}}s:7:\"subsets\";a:1:{i:0;a:2:{s:2:\"id\";s:5:\"latin\";s:4:\"name\";s:5:\"Latin\";}}}s:16:\"Port Lligat Slab\";a:2:{s:8:\"variants\";a:1:{i:0;a:2:{s:2:\"id\";s:3:\"400\";s:4:\"name\";s:10:\"Normal 400\";}}s:7:\"subsets\";a:1:{i:0;a:2:{s:2:\"id\";s:5:\"latin\";s:4:\"name\";s:5:\"Latin\";}}}s:14:\"Pragati Narrow\";a:2:{s:8:\"variants\";a:2:{i:0;a:2:{s:2:\"id\";s:3:\"400\";s:4:\"name\";s:10:\"Normal 400\";}i:1;a:2:{s:2:\"id\";s:3:\"700\";s:4:\"name\";s:8:\"Bold 700\";}}s:7:\"subsets\";a:3:{i:0;a:2:{s:2:\"id\";s:9:\"latin-ext\";s:4:\"name\";s:14:\"Latin Extended\";}i:1;a:2:{s:2:\"id\";s:5:\"latin\";s:4:\"name\";s:5:\"Latin\";}i:2;a:2:{s:2:\"id\";s:10:\"devanagari\";s:4:\"name\";s:10:\"Devanagari\";}}}s:5:\"Prata\";a:2:{s:8:\"variants\";a:1:{i:0;a:2:{s:2:\"id\";s:3:\"400\";s:4:\"name\";s:10:\"Normal 400\";}}s:7:\"subsets\";a:1:{i:0;a:2:{s:2:\"id\";s:5:\"latin\";s:4:\"name\";s:5:\"Latin\";}}}s:11:\"Preahvihear\";a:2:{s:8:\"variants\";a:1:{i:0;a:2:{s:2:\"id\";s:3:\"400\";s:4:\"name\";s:10:\"Normal 400\";}}s:7:\"subsets\";a:1:{i:0;a:2:{s:2:\"id\";s:5:\"khmer\";s:4:\"name\";s:5:\"Khmer\";}}}s:14:\"Press Start 2P\";a:2:{s:8:\"variants\";a:1:{i:0;a:2:{s:2:\"id\";s:3:\"400\";s:4:\"name\";s:10:\"Normal 400\";}}s:7:\"subsets\";a:4:{i:0;a:2:{s:2:\"id\";s:9:\"latin-ext\";s:4:\"name\";s:14:\"Latin Extended\";}i:1;a:2:{s:2:\"id\";s:8:\"cyrillic\";s:4:\"name\";s:8:\"Cyrillic\";}i:2;a:2:{s:2:\"id\";s:5:\"latin\";s:4:\"name\";s:5:\"Latin\";}i:3;a:2:{s:2:\"id\";s:5:\"greek\";s:4:\"name\";s:5:\"Greek\";}}}s:14:\"Princess Sofia\";a:2:{s:8:\"variants\";a:1:{i:0;a:2:{s:2:\"id\";s:3:\"400\";s:4:\"name\";s:10:\"Normal 400\";}}s:7:\"subsets\";a:2:{i:0;a:2:{s:2:\"id\";s:9:\"latin-ext\";s:4:\"name\";s:14:\"Latin Extended\";}i:1;a:2:{s:2:\"id\";s:5:\"latin\";s:4:\"name\";s:5:\"Latin\";}}}s:8:\"Prociono\";a:2:{s:8:\"variants\";a:1:{i:0;a:2:{s:2:\"id\";s:3:\"400\";s:4:\"name\";s:10:\"Normal 400\";}}s:7:\"subsets\";a:1:{i:0;a:2:{s:2:\"id\";s:5:\"latin\";s:4:\"name\";s:5:\"Latin\";}}}s:10:\"Prosto One\";a:2:{s:8:\"variants\";a:1:{i:0;a:2:{s:2:\"id\";s:3:\"400\";s:4:\"name\";s:10:\"Normal 400\";}}s:7:\"subsets\";a:3:{i:0;a:2:{s:2:\"id\";s:9:\"latin-ext\";s:4:\"name\";s:14:\"Latin Extended\";}i:1;a:2:{s:2:\"id\";s:8:\"cyrillic\";s:4:\"name\";s:8:\"Cyrillic\";}i:2;a:2:{s:2:\"id\";s:5:\"latin\";s:4:\"name\";s:5:\"Latin\";}}}s:7:\"Puritan\";a:2:{s:8:\"variants\";a:4:{i:0;a:2:{s:2:\"id\";s:3:\"400\";s:4:\"name\";s:10:\"Normal 400\";}i:1;a:2:{s:2:\"id\";s:9:\"400italic\";s:4:\"name\";s:17:\"Normal 400 Italic\";}i:2;a:2:{s:2:\"id\";s:3:\"700\";s:4:\"name\";s:8:\"Bold 700\";}i:3;a:2:{s:2:\"id\";s:9:\"700italic\";s:4:\"name\";s:15:\"Bold 700 Italic\";}}s:7:\"subsets\";a:1:{i:0;a:2:{s:2:\"id\";s:5:\"latin\";s:4:\"name\";s:5:\"Latin\";}}}s:12:\"Purple Purse\";a:2:{s:8:\"variants\";a:1:{i:0;a:2:{s:2:\"id\";s:3:\"400\";s:4:\"name\";s:10:\"Normal 400\";}}s:7:\"subsets\";a:2:{i:0;a:2:{s:2:\"id\";s:9:\"latin-ext\";s:4:\"name\";s:14:\"Latin Extended\";}i:1;a:2:{s:2:\"id\";s:5:\"latin\";s:4:\"name\";s:5:\"Latin\";}}}s:6:\"Quando\";a:2:{s:8:\"variants\";a:1:{i:0;a:2:{s:2:\"id\";s:3:\"400\";s:4:\"name\";s:10:\"Normal 400\";}}s:7:\"subsets\";a:2:{i:0;a:2:{s:2:\"id\";s:9:\"latin-ext\";s:4:\"name\";s:14:\"Latin Extended\";}i:1;a:2:{s:2:\"id\";s:5:\"latin\";s:4:\"name\";s:5:\"Latin\";}}}s:8:\"Quantico\";a:2:{s:8:\"variants\";a:4:{i:0;a:2:{s:2:\"id\";s:3:\"400\";s:4:\"name\";s:10:\"Normal 400\";}i:1;a:2:{s:2:\"id\";s:9:\"400italic\";s:4:\"name\";s:17:\"Normal 400 Italic\";}i:2;a:2:{s:2:\"id\";s:3:\"700\";s:4:\"name\";s:8:\"Bold 700\";}i:3;a:2:{s:2:\"id\";s:9:\"700italic\";s:4:\"name\";s:15:\"Bold 700 Italic\";}}s:7:\"subsets\";a:1:{i:0;a:2:{s:2:\"id\";s:5:\"latin\";s:4:\"name\";s:5:\"Latin\";}}}s:12:\"Quattrocento\";a:2:{s:8:\"variants\";a:2:{i:0;a:2:{s:2:\"id\";s:3:\"400\";s:4:\"name\";s:10:\"Normal 400\";}i:1;a:2:{s:2:\"id\";s:3:\"700\";s:4:\"name\";s:8:\"Bold 700\";}}s:7:\"subsets\";a:2:{i:0;a:2:{s:2:\"id\";s:9:\"latin-ext\";s:4:\"name\";s:14:\"Latin Extended\";}i:1;a:2:{s:2:\"id\";s:5:\"latin\";s:4:\"name\";s:5:\"Latin\";}}}s:17:\"Quattrocento Sans\";a:2:{s:8:\"variants\";a:4:{i:0;a:2:{s:2:\"id\";s:3:\"400\";s:4:\"name\";s:10:\"Normal 400\";}i:1;a:2:{s:2:\"id\";s:9:\"400italic\";s:4:\"name\";s:17:\"Normal 400 Italic\";}i:2;a:2:{s:2:\"id\";s:3:\"700\";s:4:\"name\";s:8:\"Bold 700\";}i:3;a:2:{s:2:\"id\";s:9:\"700italic\";s:4:\"name\";s:15:\"Bold 700 Italic\";}}s:7:\"subsets\";a:2:{i:0;a:2:{s:2:\"id\";s:9:\"latin-ext\";s:4:\"name\";s:14:\"Latin Extended\";}i:1;a:2:{s:2:\"id\";s:5:\"latin\";s:4:\"name\";s:5:\"Latin\";}}}s:9:\"Questrial\";a:2:{s:8:\"variants\";a:1:{i:0;a:2:{s:2:\"id\";s:3:\"400\";s:4:\"name\";s:10:\"Normal 400\";}}s:7:\"subsets\";a:1:{i:0;a:2:{s:2:\"id\";s:5:\"latin\";s:4:\"name\";s:5:\"Latin\";}}}s:9:\"Quicksand\";a:2:{s:8:\"variants\";a:3:{i:0;a:2:{s:2:\"id\";s:3:\"300\";s:4:\"name\";s:8:\"Book 300\";}i:1;a:2:{s:2:\"id\";s:3:\"400\";s:4:\"name\";s:10:\"Normal 400\";}i:2;a:2:{s:2:\"id\";s:3:\"700\";s:4:\"name\";s:8:\"Bold 700\";}}s:7:\"subsets\";a:1:{i:0;a:2:{s:2:\"id\";s:5:\"latin\";s:4:\"name\";s:5:\"Latin\";}}}s:14:\"Quintessential\";a:2:{s:8:\"variants\";a:1:{i:0;a:2:{s:2:\"id\";s:3:\"400\";s:4:\"name\";s:10:\"Normal 400\";}}s:7:\"subsets\";a:2:{i:0;a:2:{s:2:\"id\";s:9:\"latin-ext\";s:4:\"name\";s:14:\"Latin Extended\";}i:1;a:2:{s:2:\"id\";s:5:\"latin\";s:4:\"name\";s:5:\"Latin\";}}}s:7:\"Qwigley\";a:2:{s:8:\"variants\";a:1:{i:0;a:2:{s:2:\"id\";s:3:\"400\";s:4:\"name\";s:10:\"Normal 400\";}}s:7:\"subsets\";a:2:{i:0;a:2:{s:2:\"id\";s:9:\"latin-ext\";s:4:\"name\";s:14:\"Latin Extended\";}i:1;a:2:{s:2:\"id\";s:5:\"latin\";s:4:\"name\";s:5:\"Latin\";}}}s:15:\"Racing Sans One\";a:2:{s:8:\"variants\";a:1:{i:0;a:2:{s:2:\"id\";s:3:\"400\";s:4:\"name\";s:10:\"Normal 400\";}}s:7:\"subsets\";a:2:{i:0;a:2:{s:2:\"id\";s:9:\"latin-ext\";s:4:\"name\";s:14:\"Latin Extended\";}i:1;a:2:{s:2:\"id\";s:5:\"latin\";s:4:\"name\";s:5:\"Latin\";}}}s:6:\"Radley\";a:2:{s:8:\"variants\";a:2:{i:0;a:2:{s:2:\"id\";s:3:\"400\";s:4:\"name\";s:10:\"Normal 400\";}i:1;a:2:{s:2:\"id\";s:9:\"400italic\";s:4:\"name\";s:17:\"Normal 400 Italic\";}}s:7:\"subsets\";a:2:{i:0;a:2:{s:2:\"id\";s:9:\"latin-ext\";s:4:\"name\";s:14:\"Latin Extended\";}i:1;a:2:{s:2:\"id\";s:5:\"latin\";s:4:\"name\";s:5:\"Latin\";}}}s:8:\"Rajdhani\";a:2:{s:8:\"variants\";a:5:{i:0;a:2:{s:2:\"id\";s:3:\"300\";s:4:\"name\";s:8:\"Book 300\";}i:1;a:2:{s:2:\"id\";s:3:\"400\";s:4:\"name\";s:10:\"Normal 400\";}i:2;a:2:{s:2:\"id\";s:3:\"500\";s:4:\"name\";s:10:\"Medium 500\";}i:3;a:2:{s:2:\"id\";s:3:\"600\";s:4:\"name\";s:13:\"Semi-Bold 600\";}i:4;a:2:{s:2:\"id\";s:3:\"700\";s:4:\"name\";s:8:\"Bold 700\";}}s:7:\"subsets\";a:3:{i:0;a:2:{s:2:\"id\";s:9:\"latin-ext\";s:4:\"name\";s:14:\"Latin Extended\";}i:1;a:2:{s:2:\"id\";s:5:\"latin\";s:4:\"name\";s:5:\"Latin\";}i:2;a:2:{s:2:\"id\";s:10:\"devanagari\";s:4:\"name\";s:10:\"Devanagari\";}}}s:7:\"Raleway\";a:2:{s:8:\"variants\";a:18:{i:0;a:2:{s:2:\"id\";s:3:\"100\";s:4:\"name\";s:15:\"Ultra-Light 100\";}i:1;a:2:{s:2:\"id\";s:9:\"100italic\";s:4:\"name\";s:22:\"Ultra-Light 100 Italic\";}i:2;a:2:{s:2:\"id\";s:3:\"200\";s:4:\"name\";s:9:\"Light 200\";}i:3;a:2:{s:2:\"id\";s:9:\"200italic\";s:4:\"name\";s:16:\"Light 200 Italic\";}i:4;a:2:{s:2:\"id\";s:3:\"300\";s:4:\"name\";s:8:\"Book 300\";}i:5;a:2:{s:2:\"id\";s:9:\"300italic\";s:4:\"name\";s:15:\"Book 300 Italic\";}i:6;a:2:{s:2:\"id\";s:3:\"400\";s:4:\"name\";s:10:\"Normal 400\";}i:7;a:2:{s:2:\"id\";s:9:\"400italic\";s:4:\"name\";s:17:\"Normal 400 Italic\";}i:8;a:2:{s:2:\"id\";s:3:\"500\";s:4:\"name\";s:10:\"Medium 500\";}i:9;a:2:{s:2:\"id\";s:9:\"500italic\";s:4:\"name\";s:17:\"Medium 500 Italic\";}i:10;a:2:{s:2:\"id\";s:3:\"600\";s:4:\"name\";s:13:\"Semi-Bold 600\";}i:11;a:2:{s:2:\"id\";s:9:\"600italic\";s:4:\"name\";s:20:\"Semi-Bold 600 Italic\";}i:12;a:2:{s:2:\"id\";s:3:\"700\";s:4:\"name\";s:8:\"Bold 700\";}i:13;a:2:{s:2:\"id\";s:9:\"700italic\";s:4:\"name\";s:15:\"Bold 700 Italic\";}i:14;a:2:{s:2:\"id\";s:3:\"800\";s:4:\"name\";s:14:\"Extra-Bold 800\";}i:15;a:2:{s:2:\"id\";s:9:\"800italic\";s:4:\"name\";s:21:\"Extra-Bold 800 Italic\";}i:16;a:2:{s:2:\"id\";s:3:\"900\";s:4:\"name\";s:14:\"Ultra-Bold 900\";}i:17;a:2:{s:2:\"id\";s:9:\"900italic\";s:4:\"name\";s:21:\"Ultra-Bold 900 Italic\";}}s:7:\"subsets\";a:2:{i:0;a:2:{s:2:\"id\";s:9:\"latin-ext\";s:4:\"name\";s:14:\"Latin Extended\";}i:1;a:2:{s:2:\"id\";s:5:\"latin\";s:4:\"name\";s:5:\"Latin\";}}}s:12:\"Raleway Dots\";a:2:{s:8:\"variants\";a:1:{i:0;a:2:{s:2:\"id\";s:3:\"400\";s:4:\"name\";s:10:\"Normal 400\";}}s:7:\"subsets\";a:2:{i:0;a:2:{s:2:\"id\";s:9:\"latin-ext\";s:4:\"name\";s:14:\"Latin Extended\";}i:1;a:2:{s:2:\"id\";s:5:\"latin\";s:4:\"name\";s:5:\"Latin\";}}}s:10:\"Ramabhadra\";a:2:{s:8:\"variants\";a:1:{i:0;a:2:{s:2:\"id\";s:3:\"400\";s:4:\"name\";s:10:\"Normal 400\";}}s:7:\"subsets\";a:2:{i:0;a:2:{s:2:\"id\";s:6:\"telugu\";s:4:\"name\";s:6:\"Telugu\";}i:1;a:2:{s:2:\"id\";s:5:\"latin\";s:4:\"name\";s:5:\"Latin\";}}}s:8:\"Ramaraja\";a:2:{s:8:\"variants\";a:1:{i:0;a:2:{s:2:\"id\";s:3:\"400\";s:4:\"name\";s:10:\"Normal 400\";}}s:7:\"subsets\";a:2:{i:0;a:2:{s:2:\"id\";s:6:\"telugu\";s:4:\"name\";s:6:\"Telugu\";}i:1;a:2:{s:2:\"id\";s:5:\"latin\";s:4:\"name\";s:5:\"Latin\";}}}s:6:\"Rambla\";a:2:{s:8:\"variants\";a:4:{i:0;a:2:{s:2:\"id\";s:3:\"400\";s:4:\"name\";s:10:\"Normal 400\";}i:1;a:2:{s:2:\"id\";s:9:\"400italic\";s:4:\"name\";s:17:\"Normal 400 Italic\";}i:2;a:2:{s:2:\"id\";s:3:\"700\";s:4:\"name\";s:8:\"Bold 700\";}i:3;a:2:{s:2:\"id\";s:9:\"700italic\";s:4:\"name\";s:15:\"Bold 700 Italic\";}}s:7:\"subsets\";a:2:{i:0;a:2:{s:2:\"id\";s:9:\"latin-ext\";s:4:\"name\";s:14:\"Latin Extended\";}i:1;a:2:{s:2:\"id\";s:5:\"latin\";s:4:\"name\";s:5:\"Latin\";}}}s:12:\"Rammetto One\";a:2:{s:8:\"variants\";a:1:{i:0;a:2:{s:2:\"id\";s:3:\"400\";s:4:\"name\";s:10:\"Normal 400\";}}s:7:\"subsets\";a:2:{i:0;a:2:{s:2:\"id\";s:9:\"latin-ext\";s:4:\"name\";s:14:\"Latin Extended\";}i:1;a:2:{s:2:\"id\";s:5:\"latin\";s:4:\"name\";s:5:\"Latin\";}}}s:8:\"Ranchers\";a:2:{s:8:\"variants\";a:1:{i:0;a:2:{s:2:\"id\";s:3:\"400\";s:4:\"name\";s:10:\"Normal 400\";}}s:7:\"subsets\";a:2:{i:0;a:2:{s:2:\"id\";s:9:\"latin-ext\";s:4:\"name\";s:14:\"Latin Extended\";}i:1;a:2:{s:2:\"id\";s:5:\"latin\";s:4:\"name\";s:5:\"Latin\";}}}s:6:\"Rancho\";a:2:{s:8:\"variants\";a:1:{i:0;a:2:{s:2:\"id\";s:3:\"400\";s:4:\"name\";s:10:\"Normal 400\";}}s:7:\"subsets\";a:1:{i:0;a:2:{s:2:\"id\";s:5:\"latin\";s:4:\"name\";s:5:\"Latin\";}}}s:5:\"Ranga\";a:2:{s:8:\"variants\";a:2:{i:0;a:2:{s:2:\"id\";s:3:\"400\";s:4:\"name\";s:10:\"Normal 400\";}i:1;a:2:{s:2:\"id\";s:3:\"700\";s:4:\"name\";s:8:\"Bold 700\";}}s:7:\"subsets\";a:3:{i:0;a:2:{s:2:\"id\";s:9:\"latin-ext\";s:4:\"name\";s:14:\"Latin Extended\";}i:1;a:2:{s:2:\"id\";s:5:\"latin\";s:4:\"name\";s:5:\"Latin\";}i:2;a:2:{s:2:\"id\";s:10:\"devanagari\";s:4:\"name\";s:10:\"Devanagari\";}}}s:9:\"Rationale\";a:2:{s:8:\"variants\";a:1:{i:0;a:2:{s:2:\"id\";s:3:\"400\";s:4:\"name\";s:10:\"Normal 400\";}}s:7:\"subsets\";a:1:{i:0;a:2:{s:2:\"id\";s:5:\"latin\";s:4:\"name\";s:5:\"Latin\";}}}s:12:\"Ravi Prakash\";a:2:{s:8:\"variants\";a:1:{i:0;a:2:{s:2:\"id\";s:3:\"400\";s:4:\"name\";s:10:\"Normal 400\";}}s:7:\"subsets\";a:2:{i:0;a:2:{s:2:\"id\";s:6:\"telugu\";s:4:\"name\";s:6:\"Telugu\";}i:1;a:2:{s:2:\"id\";s:5:\"latin\";s:4:\"name\";s:5:\"Latin\";}}}s:9:\"Redressed\";a:2:{s:8:\"variants\";a:1:{i:0;a:2:{s:2:\"id\";s:3:\"400\";s:4:\"name\";s:10:\"Normal 400\";}}s:7:\"subsets\";a:1:{i:0;a:2:{s:2:\"id\";s:5:\"latin\";s:4:\"name\";s:5:\"Latin\";}}}s:13:\"Reenie Beanie\";a:2:{s:8:\"variants\";a:1:{i:0;a:2:{s:2:\"id\";s:3:\"400\";s:4:\"name\";s:10:\"Normal 400\";}}s:7:\"subsets\";a:1:{i:0;a:2:{s:2:\"id\";s:5:\"latin\";s:4:\"name\";s:5:\"Latin\";}}}s:7:\"Revalia\";a:2:{s:8:\"variants\";a:1:{i:0;a:2:{s:2:\"id\";s:3:\"400\";s:4:\"name\";s:10:\"Normal 400\";}}s:7:\"subsets\";a:2:{i:0;a:2:{s:2:\"id\";s:9:\"latin-ext\";s:4:\"name\";s:14:\"Latin Extended\";}i:1;a:2:{s:2:\"id\";s:5:\"latin\";s:4:\"name\";s:5:\"Latin\";}}}s:13:\"Rhodium Libre\";a:2:{s:8:\"variants\";a:1:{i:0;a:2:{s:2:\"id\";s:3:\"400\";s:4:\"name\";s:10:\"Normal 400\";}}s:7:\"subsets\";a:3:{i:0;a:2:{s:2:\"id\";s:9:\"latin-ext\";s:4:\"name\";s:14:\"Latin Extended\";}i:1;a:2:{s:2:\"id\";s:5:\"latin\";s:4:\"name\";s:5:\"Latin\";}i:2;a:2:{s:2:\"id\";s:10:\"devanagari\";s:4:\"name\";s:10:\"Devanagari\";}}}s:6:\"Ribeye\";a:2:{s:8:\"variants\";a:1:{i:0;a:2:{s:2:\"id\";s:3:\"400\";s:4:\"name\";s:10:\"Normal 400\";}}s:7:\"subsets\";a:2:{i:0;a:2:{s:2:\"id\";s:9:\"latin-ext\";s:4:\"name\";s:14:\"Latin Extended\";}i:1;a:2:{s:2:\"id\";s:5:\"latin\";s:4:\"name\";s:5:\"Latin\";}}}s:13:\"Ribeye Marrow\";a:2:{s:8:\"variants\";a:1:{i:0;a:2:{s:2:\"id\";s:3:\"400\";s:4:\"name\";s:10:\"Normal 400\";}}s:7:\"subsets\";a:2:{i:0;a:2:{s:2:\"id\";s:9:\"latin-ext\";s:4:\"name\";s:14:\"Latin Extended\";}i:1;a:2:{s:2:\"id\";s:5:\"latin\";s:4:\"name\";s:5:\"Latin\";}}}s:9:\"Righteous\";a:2:{s:8:\"variants\";a:1:{i:0;a:2:{s:2:\"id\";s:3:\"400\";s:4:\"name\";s:10:\"Normal 400\";}}s:7:\"subsets\";a:2:{i:0;a:2:{s:2:\"id\";s:9:\"latin-ext\";s:4:\"name\";s:14:\"Latin Extended\";}i:1;a:2:{s:2:\"id\";s:5:\"latin\";s:4:\"name\";s:5:\"Latin\";}}}s:6:\"Risque\";a:2:{s:8:\"variants\";a:1:{i:0;a:2:{s:2:\"id\";s:3:\"400\";s:4:\"name\";s:10:\"Normal 400\";}}s:7:\"subsets\";a:2:{i:0;a:2:{s:2:\"id\";s:9:\"latin-ext\";s:4:\"name\";s:14:\"Latin Extended\";}i:1;a:2:{s:2:\"id\";s:5:\"latin\";s:4:\"name\";s:5:\"Latin\";}}}s:6:\"Roboto\";a:2:{s:8:\"variants\";a:12:{i:0;a:2:{s:2:\"id\";s:3:\"100\";s:4:\"name\";s:15:\"Ultra-Light 100\";}i:1;a:2:{s:2:\"id\";s:9:\"100italic\";s:4:\"name\";s:22:\"Ultra-Light 100 Italic\";}i:2;a:2:{s:2:\"id\";s:3:\"300\";s:4:\"name\";s:8:\"Book 300\";}i:3;a:2:{s:2:\"id\";s:9:\"300italic\";s:4:\"name\";s:15:\"Book 300 Italic\";}i:4;a:2:{s:2:\"id\";s:3:\"400\";s:4:\"name\";s:10:\"Normal 400\";}i:5;a:2:{s:2:\"id\";s:9:\"400italic\";s:4:\"name\";s:17:\"Normal 400 Italic\";}i:6;a:2:{s:2:\"id\";s:3:\"500\";s:4:\"name\";s:10:\"Medium 500\";}i:7;a:2:{s:2:\"id\";s:9:\"500italic\";s:4:\"name\";s:17:\"Medium 500 Italic\";}i:8;a:2:{s:2:\"id\";s:3:\"700\";s:4:\"name\";s:8:\"Bold 700\";}i:9;a:2:{s:2:\"id\";s:9:\"700italic\";s:4:\"name\";s:15:\"Bold 700 Italic\";}i:10;a:2:{s:2:\"id\";s:3:\"900\";s:4:\"name\";s:14:\"Ultra-Bold 900\";}i:11;a:2:{s:2:\"id\";s:9:\"900italic\";s:4:\"name\";s:21:\"Ultra-Bold 900 Italic\";}}s:7:\"subsets\";a:7:{i:0;a:2:{s:2:\"id\";s:12:\"cyrillic-ext\";s:4:\"name\";s:17:\"Cyrillic Extended\";}i:1;a:2:{s:2:\"id\";s:9:\"latin-ext\";s:4:\"name\";s:14:\"Latin Extended\";}i:2;a:2:{s:2:\"id\";s:10:\"vietnamese\";s:4:\"name\";s:10:\"Vietnamese\";}i:3;a:2:{s:2:\"id\";s:9:\"greek-ext\";s:4:\"name\";s:14:\"Greek Extended\";}i:4;a:2:{s:2:\"id\";s:8:\"cyrillic\";s:4:\"name\";s:8:\"Cyrillic\";}i:5;a:2:{s:2:\"id\";s:5:\"latin\";s:4:\"name\";s:5:\"Latin\";}i:6;a:2:{s:2:\"id\";s:5:\"greek\";s:4:\"name\";s:5:\"Greek\";}}}s:16:\"Roboto Condensed\";a:2:{s:8:\"variants\";a:6:{i:0;a:2:{s:2:\"id\";s:3:\"300\";s:4:\"name\";s:8:\"Book 300\";}i:1;a:2:{s:2:\"id\";s:9:\"300italic\";s:4:\"name\";s:15:\"Book 300 Italic\";}i:2;a:2:{s:2:\"id\";s:3:\"400\";s:4:\"name\";s:10:\"Normal 400\";}i:3;a:2:{s:2:\"id\";s:9:\"400italic\";s:4:\"name\";s:17:\"Normal 400 Italic\";}i:4;a:2:{s:2:\"id\";s:3:\"700\";s:4:\"name\";s:8:\"Bold 700\";}i:5;a:2:{s:2:\"id\";s:9:\"700italic\";s:4:\"name\";s:15:\"Bold 700 Italic\";}}s:7:\"subsets\";a:7:{i:0;a:2:{s:2:\"id\";s:12:\"cyrillic-ext\";s:4:\"name\";s:17:\"Cyrillic Extended\";}i:1;a:2:{s:2:\"id\";s:9:\"latin-ext\";s:4:\"name\";s:14:\"Latin Extended\";}i:2;a:2:{s:2:\"id\";s:10:\"vietnamese\";s:4:\"name\";s:10:\"Vietnamese\";}i:3;a:2:{s:2:\"id\";s:9:\"greek-ext\";s:4:\"name\";s:14:\"Greek Extended\";}i:4;a:2:{s:2:\"id\";s:8:\"cyrillic\";s:4:\"name\";s:8:\"Cyrillic\";}i:5;a:2:{s:2:\"id\";s:5:\"latin\";s:4:\"name\";s:5:\"Latin\";}i:6;a:2:{s:2:\"id\";s:5:\"greek\";s:4:\"name\";s:5:\"Greek\";}}}s:11:\"Roboto Mono\";a:2:{s:8:\"variants\";a:10:{i:0;a:2:{s:2:\"id\";s:3:\"100\";s:4:\"name\";s:15:\"Ultra-Light 100\";}i:1;a:2:{s:2:\"id\";s:9:\"100italic\";s:4:\"name\";s:22:\"Ultra-Light 100 Italic\";}i:2;a:2:{s:2:\"id\";s:3:\"300\";s:4:\"name\";s:8:\"Book 300\";}i:3;a:2:{s:2:\"id\";s:9:\"300italic\";s:4:\"name\";s:15:\"Book 300 Italic\";}i:4;a:2:{s:2:\"id\";s:3:\"400\";s:4:\"name\";s:10:\"Normal 400\";}i:5;a:2:{s:2:\"id\";s:9:\"400italic\";s:4:\"name\";s:17:\"Normal 400 Italic\";}i:6;a:2:{s:2:\"id\";s:3:\"500\";s:4:\"name\";s:10:\"Medium 500\";}i:7;a:2:{s:2:\"id\";s:9:\"500italic\";s:4:\"name\";s:17:\"Medium 500 Italic\";}i:8;a:2:{s:2:\"id\";s:3:\"700\";s:4:\"name\";s:8:\"Bold 700\";}i:9;a:2:{s:2:\"id\";s:9:\"700italic\";s:4:\"name\";s:15:\"Bold 700 Italic\";}}s:7:\"subsets\";a:7:{i:0;a:2:{s:2:\"id\";s:12:\"cyrillic-ext\";s:4:\"name\";s:17:\"Cyrillic Extended\";}i:1;a:2:{s:2:\"id\";s:9:\"latin-ext\";s:4:\"name\";s:14:\"Latin Extended\";}i:2;a:2:{s:2:\"id\";s:10:\"vietnamese\";s:4:\"name\";s:10:\"Vietnamese\";}i:3;a:2:{s:2:\"id\";s:9:\"greek-ext\";s:4:\"name\";s:14:\"Greek Extended\";}i:4;a:2:{s:2:\"id\";s:8:\"cyrillic\";s:4:\"name\";s:8:\"Cyrillic\";}i:5;a:2:{s:2:\"id\";s:5:\"latin\";s:4:\"name\";s:5:\"Latin\";}i:6;a:2:{s:2:\"id\";s:5:\"greek\";s:4:\"name\";s:5:\"Greek\";}}}s:11:\"Roboto Slab\";a:2:{s:8:\"variants\";a:4:{i:0;a:2:{s:2:\"id\";s:3:\"100\";s:4:\"name\";s:15:\"Ultra-Light 100\";}i:1;a:2:{s:2:\"id\";s:3:\"300\";s:4:\"name\";s:8:\"Book 300\";}i:2;a:2:{s:2:\"id\";s:3:\"400\";s:4:\"name\";s:10:\"Normal 400\";}i:3;a:2:{s:2:\"id\";s:3:\"700\";s:4:\"name\";s:8:\"Bold 700\";}}s:7:\"subsets\";a:7:{i:0;a:2:{s:2:\"id\";s:12:\"cyrillic-ext\";s:4:\"name\";s:17:\"Cyrillic Extended\";}i:1;a:2:{s:2:\"id\";s:9:\"latin-ext\";s:4:\"name\";s:14:\"Latin Extended\";}i:2;a:2:{s:2:\"id\";s:10:\"vietnamese\";s:4:\"name\";s:10:\"Vietnamese\";}i:3;a:2:{s:2:\"id\";s:9:\"greek-ext\";s:4:\"name\";s:14:\"Greek Extended\";}i:4;a:2:{s:2:\"id\";s:8:\"cyrillic\";s:4:\"name\";s:8:\"Cyrillic\";}i:5;a:2:{s:2:\"id\";s:5:\"latin\";s:4:\"name\";s:5:\"Latin\";}i:6;a:2:{s:2:\"id\";s:5:\"greek\";s:4:\"name\";s:5:\"Greek\";}}}s:9:\"Rochester\";a:2:{s:8:\"variants\";a:1:{i:0;a:2:{s:2:\"id\";s:3:\"400\";s:4:\"name\";s:10:\"Normal 400\";}}s:7:\"subsets\";a:1:{i:0;a:2:{s:2:\"id\";s:5:\"latin\";s:4:\"name\";s:5:\"Latin\";}}}s:9:\"Rock Salt\";a:2:{s:8:\"variants\";a:1:{i:0;a:2:{s:2:\"id\";s:3:\"400\";s:4:\"name\";s:10:\"Normal 400\";}}s:7:\"subsets\";a:1:{i:0;a:2:{s:2:\"id\";s:5:\"latin\";s:4:\"name\";s:5:\"Latin\";}}}s:7:\"Rokkitt\";a:2:{s:8:\"variants\";a:2:{i:0;a:2:{s:2:\"id\";s:3:\"400\";s:4:\"name\";s:10:\"Normal 400\";}i:1;a:2:{s:2:\"id\";s:3:\"700\";s:4:\"name\";s:8:\"Bold 700\";}}s:7:\"subsets\";a:1:{i:0;a:2:{s:2:\"id\";s:5:\"latin\";s:4:\"name\";s:5:\"Latin\";}}}s:9:\"Romanesco\";a:2:{s:8:\"variants\";a:1:{i:0;a:2:{s:2:\"id\";s:3:\"400\";s:4:\"name\";s:10:\"Normal 400\";}}s:7:\"subsets\";a:2:{i:0;a:2:{s:2:\"id\";s:9:\"latin-ext\";s:4:\"name\";s:14:\"Latin Extended\";}i:1;a:2:{s:2:\"id\";s:5:\"latin\";s:4:\"name\";s:5:\"Latin\";}}}s:9:\"Ropa Sans\";a:2:{s:8:\"variants\";a:2:{i:0;a:2:{s:2:\"id\";s:3:\"400\";s:4:\"name\";s:10:\"Normal 400\";}i:1;a:2:{s:2:\"id\";s:9:\"400italic\";s:4:\"name\";s:17:\"Normal 400 Italic\";}}s:7:\"subsets\";a:2:{i:0;a:2:{s:2:\"id\";s:9:\"latin-ext\";s:4:\"name\";s:14:\"Latin Extended\";}i:1;a:2:{s:2:\"id\";s:5:\"latin\";s:4:\"name\";s:5:\"Latin\";}}}s:7:\"Rosario\";a:2:{s:8:\"variants\";a:4:{i:0;a:2:{s:2:\"id\";s:3:\"400\";s:4:\"name\";s:10:\"Normal 400\";}i:1;a:2:{s:2:\"id\";s:9:\"400italic\";s:4:\"name\";s:17:\"Normal 400 Italic\";}i:2;a:2:{s:2:\"id\";s:3:\"700\";s:4:\"name\";s:8:\"Bold 700\";}i:3;a:2:{s:2:\"id\";s:9:\"700italic\";s:4:\"name\";s:15:\"Bold 700 Italic\";}}s:7:\"subsets\";a:1:{i:0;a:2:{s:2:\"id\";s:5:\"latin\";s:4:\"name\";s:5:\"Latin\";}}}s:8:\"Rosarivo\";a:2:{s:8:\"variants\";a:2:{i:0;a:2:{s:2:\"id\";s:3:\"400\";s:4:\"name\";s:10:\"Normal 400\";}i:1;a:2:{s:2:\"id\";s:9:\"400italic\";s:4:\"name\";s:17:\"Normal 400 Italic\";}}s:7:\"subsets\";a:2:{i:0;a:2:{s:2:\"id\";s:9:\"latin-ext\";s:4:\"name\";s:14:\"Latin Extended\";}i:1;a:2:{s:2:\"id\";s:5:\"latin\";s:4:\"name\";s:5:\"Latin\";}}}s:12:\"Rouge Script\";a:2:{s:8:\"variants\";a:1:{i:0;a:2:{s:2:\"id\";s:3:\"400\";s:4:\"name\";s:10:\"Normal 400\";}}s:7:\"subsets\";a:1:{i:0;a:2:{s:2:\"id\";s:5:\"latin\";s:4:\"name\";s:5:\"Latin\";}}}s:9:\"Rozha One\";a:2:{s:8:\"variants\";a:1:{i:0;a:2:{s:2:\"id\";s:3:\"400\";s:4:\"name\";s:10:\"Normal 400\";}}s:7:\"subsets\";a:3:{i:0;a:2:{s:2:\"id\";s:9:\"latin-ext\";s:4:\"name\";s:14:\"Latin Extended\";}i:1;a:2:{s:2:\"id\";s:5:\"latin\";s:4:\"name\";s:5:\"Latin\";}i:2;a:2:{s:2:\"id\";s:10:\"devanagari\";s:4:\"name\";s:10:\"Devanagari\";}}}s:5:\"Rubik\";a:2:{s:8:\"variants\";a:10:{i:0;a:2:{s:2:\"id\";s:3:\"300\";s:4:\"name\";s:8:\"Book 300\";}i:1;a:2:{s:2:\"id\";s:9:\"300italic\";s:4:\"name\";s:15:\"Book 300 Italic\";}i:2;a:2:{s:2:\"id\";s:3:\"400\";s:4:\"name\";s:10:\"Normal 400\";}i:3;a:2:{s:2:\"id\";s:9:\"400italic\";s:4:\"name\";s:17:\"Normal 400 Italic\";}i:4;a:2:{s:2:\"id\";s:3:\"500\";s:4:\"name\";s:10:\"Medium 500\";}i:5;a:2:{s:2:\"id\";s:9:\"500italic\";s:4:\"name\";s:17:\"Medium 500 Italic\";}i:6;a:2:{s:2:\"id\";s:3:\"700\";s:4:\"name\";s:8:\"Bold 700\";}i:7;a:2:{s:2:\"id\";s:9:\"700italic\";s:4:\"name\";s:15:\"Bold 700 Italic\";}i:8;a:2:{s:2:\"id\";s:3:\"900\";s:4:\"name\";s:14:\"Ultra-Bold 900\";}i:9;a:2:{s:2:\"id\";s:9:\"900italic\";s:4:\"name\";s:21:\"Ultra-Bold 900 Italic\";}}s:7:\"subsets\";a:3:{i:0;a:2:{s:2:\"id\";s:9:\"latin-ext\";s:4:\"name\";s:14:\"Latin Extended\";}i:1;a:2:{s:2:\"id\";s:8:\"cyrillic\";s:4:\"name\";s:8:\"Cyrillic\";}i:2;a:2:{s:2:\"id\";s:5:\"latin\";s:4:\"name\";s:5:\"Latin\";}}}s:14:\"Rubik Mono One\";a:2:{s:8:\"variants\";a:1:{i:0;a:2:{s:2:\"id\";s:3:\"400\";s:4:\"name\";s:10:\"Normal 400\";}}s:7:\"subsets\";a:3:{i:0;a:2:{s:2:\"id\";s:9:\"latin-ext\";s:4:\"name\";s:14:\"Latin Extended\";}i:1;a:2:{s:2:\"id\";s:8:\"cyrillic\";s:4:\"name\";s:8:\"Cyrillic\";}i:2;a:2:{s:2:\"id\";s:5:\"latin\";s:4:\"name\";s:5:\"Latin\";}}}s:9:\"Rubik One\";a:2:{s:8:\"variants\";a:1:{i:0;a:2:{s:2:\"id\";s:3:\"400\";s:4:\"name\";s:10:\"Normal 400\";}}s:7:\"subsets\";a:3:{i:0;a:2:{s:2:\"id\";s:9:\"latin-ext\";s:4:\"name\";s:14:\"Latin Extended\";}i:1;a:2:{s:2:\"id\";s:8:\"cyrillic\";s:4:\"name\";s:8:\"Cyrillic\";}i:2;a:2:{s:2:\"id\";s:5:\"latin\";s:4:\"name\";s:5:\"Latin\";}}}s:4:\"Ruda\";a:2:{s:8:\"variants\";a:3:{i:0;a:2:{s:2:\"id\";s:3:\"400\";s:4:\"name\";s:10:\"Normal 400\";}i:1;a:2:{s:2:\"id\";s:3:\"700\";s:4:\"name\";s:8:\"Bold 700\";}i:2;a:2:{s:2:\"id\";s:3:\"900\";s:4:\"name\";s:14:\"Ultra-Bold 900\";}}s:7:\"subsets\";a:2:{i:0;a:2:{s:2:\"id\";s:9:\"latin-ext\";s:4:\"name\";s:14:\"Latin Extended\";}i:1;a:2:{s:2:\"id\";s:5:\"latin\";s:4:\"name\";s:5:\"Latin\";}}}s:6:\"Rufina\";a:2:{s:8:\"variants\";a:2:{i:0;a:2:{s:2:\"id\";s:3:\"400\";s:4:\"name\";s:10:\"Normal 400\";}i:1;a:2:{s:2:\"id\";s:3:\"700\";s:4:\"name\";s:8:\"Bold 700\";}}s:7:\"subsets\";a:2:{i:0;a:2:{s:2:\"id\";s:9:\"latin-ext\";s:4:\"name\";s:14:\"Latin Extended\";}i:1;a:2:{s:2:\"id\";s:5:\"latin\";s:4:\"name\";s:5:\"Latin\";}}}s:11:\"Ruge Boogie\";a:2:{s:8:\"variants\";a:1:{i:0;a:2:{s:2:\"id\";s:3:\"400\";s:4:\"name\";s:10:\"Normal 400\";}}s:7:\"subsets\";a:2:{i:0;a:2:{s:2:\"id\";s:9:\"latin-ext\";s:4:\"name\";s:14:\"Latin Extended\";}i:1;a:2:{s:2:\"id\";s:5:\"latin\";s:4:\"name\";s:5:\"Latin\";}}}s:6:\"Ruluko\";a:2:{s:8:\"variants\";a:1:{i:0;a:2:{s:2:\"id\";s:3:\"400\";s:4:\"name\";s:10:\"Normal 400\";}}s:7:\"subsets\";a:2:{i:0;a:2:{s:2:\"id\";s:9:\"latin-ext\";s:4:\"name\";s:14:\"Latin Extended\";}i:1;a:2:{s:2:\"id\";s:5:\"latin\";s:4:\"name\";s:5:\"Latin\";}}}s:10:\"Rum Raisin\";a:2:{s:8:\"variants\";a:1:{i:0;a:2:{s:2:\"id\";s:3:\"400\";s:4:\"name\";s:10:\"Normal 400\";}}s:7:\"subsets\";a:2:{i:0;a:2:{s:2:\"id\";s:9:\"latin-ext\";s:4:\"name\";s:14:\"Latin Extended\";}i:1;a:2:{s:2:\"id\";s:5:\"latin\";s:4:\"name\";s:5:\"Latin\";}}}s:14:\"Ruslan Display\";a:2:{s:8:\"variants\";a:1:{i:0;a:2:{s:2:\"id\";s:3:\"400\";s:4:\"name\";s:10:\"Normal 400\";}}s:7:\"subsets\";a:3:{i:0;a:2:{s:2:\"id\";s:9:\"latin-ext\";s:4:\"name\";s:14:\"Latin Extended\";}i:1;a:2:{s:2:\"id\";s:8:\"cyrillic\";s:4:\"name\";s:8:\"Cyrillic\";}i:2;a:2:{s:2:\"id\";s:5:\"latin\";s:4:\"name\";s:5:\"Latin\";}}}s:9:\"Russo One\";a:2:{s:8:\"variants\";a:1:{i:0;a:2:{s:2:\"id\";s:3:\"400\";s:4:\"name\";s:10:\"Normal 400\";}}s:7:\"subsets\";a:3:{i:0;a:2:{s:2:\"id\";s:9:\"latin-ext\";s:4:\"name\";s:14:\"Latin Extended\";}i:1;a:2:{s:2:\"id\";s:8:\"cyrillic\";s:4:\"name\";s:8:\"Cyrillic\";}i:2;a:2:{s:2:\"id\";s:5:\"latin\";s:4:\"name\";s:5:\"Latin\";}}}s:6:\"Ruthie\";a:2:{s:8:\"variants\";a:1:{i:0;a:2:{s:2:\"id\";s:3:\"400\";s:4:\"name\";s:10:\"Normal 400\";}}s:7:\"subsets\";a:2:{i:0;a:2:{s:2:\"id\";s:9:\"latin-ext\";s:4:\"name\";s:14:\"Latin Extended\";}i:1;a:2:{s:2:\"id\";s:5:\"latin\";s:4:\"name\";s:5:\"Latin\";}}}s:3:\"Rye\";a:2:{s:8:\"variants\";a:1:{i:0;a:2:{s:2:\"id\";s:3:\"400\";s:4:\"name\";s:10:\"Normal 400\";}}s:7:\"subsets\";a:2:{i:0;a:2:{s:2:\"id\";s:9:\"latin-ext\";s:4:\"name\";s:14:\"Latin Extended\";}i:1;a:2:{s:2:\"id\";s:5:\"latin\";s:4:\"name\";s:5:\"Latin\";}}}s:10:\"Sacramento\";a:2:{s:8:\"variants\";a:1:{i:0;a:2:{s:2:\"id\";s:3:\"400\";s:4:\"name\";s:10:\"Normal 400\";}}s:7:\"subsets\";a:2:{i:0;a:2:{s:2:\"id\";s:9:\"latin-ext\";s:4:\"name\";s:14:\"Latin Extended\";}i:1;a:2:{s:2:\"id\";s:5:\"latin\";s:4:\"name\";s:5:\"Latin\";}}}s:7:\"Sahitya\";a:2:{s:8:\"variants\";a:2:{i:0;a:2:{s:2:\"id\";s:3:\"400\";s:4:\"name\";s:10:\"Normal 400\";}i:1;a:2:{s:2:\"id\";s:3:\"700\";s:4:\"name\";s:8:\"Bold 700\";}}s:7:\"subsets\";a:2:{i:0;a:2:{s:2:\"id\";s:5:\"latin\";s:4:\"name\";s:5:\"Latin\";}i:1;a:2:{s:2:\"id\";s:10:\"devanagari\";s:4:\"name\";s:10:\"Devanagari\";}}}s:4:\"Sail\";a:2:{s:8:\"variants\";a:1:{i:0;a:2:{s:2:\"id\";s:3:\"400\";s:4:\"name\";s:10:\"Normal 400\";}}s:7:\"subsets\";a:2:{i:0;a:2:{s:2:\"id\";s:9:\"latin-ext\";s:4:\"name\";s:14:\"Latin Extended\";}i:1;a:2:{s:2:\"id\";s:5:\"latin\";s:4:\"name\";s:5:\"Latin\";}}}s:5:\"Salsa\";a:2:{s:8:\"variants\";a:1:{i:0;a:2:{s:2:\"id\";s:3:\"400\";s:4:\"name\";s:10:\"Normal 400\";}}s:7:\"subsets\";a:1:{i:0;a:2:{s:2:\"id\";s:5:\"latin\";s:4:\"name\";s:5:\"Latin\";}}}s:7:\"Sanchez\";a:2:{s:8:\"variants\";a:2:{i:0;a:2:{s:2:\"id\";s:3:\"400\";s:4:\"name\";s:10:\"Normal 400\";}i:1;a:2:{s:2:\"id\";s:9:\"400italic\";s:4:\"name\";s:17:\"Normal 400 Italic\";}}s:7:\"subsets\";a:2:{i:0;a:2:{s:2:\"id\";s:9:\"latin-ext\";s:4:\"name\";s:14:\"Latin Extended\";}i:1;a:2:{s:2:\"id\";s:5:\"latin\";s:4:\"name\";s:5:\"Latin\";}}}s:8:\"Sancreek\";a:2:{s:8:\"variants\";a:1:{i:0;a:2:{s:2:\"id\";s:3:\"400\";s:4:\"name\";s:10:\"Normal 400\";}}s:7:\"subsets\";a:2:{i:0;a:2:{s:2:\"id\";s:9:\"latin-ext\";s:4:\"name\";s:14:\"Latin Extended\";}i:1;a:2:{s:2:\"id\";s:5:\"latin\";s:4:\"name\";s:5:\"Latin\";}}}s:11:\"Sansita One\";a:2:{s:8:\"variants\";a:1:{i:0;a:2:{s:2:\"id\";s:3:\"400\";s:4:\"name\";s:10:\"Normal 400\";}}s:7:\"subsets\";a:1:{i:0;a:2:{s:2:\"id\";s:5:\"latin\";s:4:\"name\";s:5:\"Latin\";}}}s:6:\"Sarala\";a:2:{s:8:\"variants\";a:2:{i:0;a:2:{s:2:\"id\";s:3:\"400\";s:4:\"name\";s:10:\"Normal 400\";}i:1;a:2:{s:2:\"id\";s:3:\"700\";s:4:\"name\";s:8:\"Bold 700\";}}s:7:\"subsets\";a:3:{i:0;a:2:{s:2:\"id\";s:9:\"latin-ext\";s:4:\"name\";s:14:\"Latin Extended\";}i:1;a:2:{s:2:\"id\";s:5:\"latin\";s:4:\"name\";s:5:\"Latin\";}i:2;a:2:{s:2:\"id\";s:10:\"devanagari\";s:4:\"name\";s:10:\"Devanagari\";}}}s:6:\"Sarina\";a:2:{s:8:\"variants\";a:1:{i:0;a:2:{s:2:\"id\";s:3:\"400\";s:4:\"name\";s:10:\"Normal 400\";}}s:7:\"subsets\";a:2:{i:0;a:2:{s:2:\"id\";s:9:\"latin-ext\";s:4:\"name\";s:14:\"Latin Extended\";}i:1;a:2:{s:2:\"id\";s:5:\"latin\";s:4:\"name\";s:5:\"Latin\";}}}s:8:\"Sarpanch\";a:2:{s:8:\"variants\";a:6:{i:0;a:2:{s:2:\"id\";s:3:\"400\";s:4:\"name\";s:10:\"Normal 400\";}i:1;a:2:{s:2:\"id\";s:3:\"500\";s:4:\"name\";s:10:\"Medium 500\";}i:2;a:2:{s:2:\"id\";s:3:\"600\";s:4:\"name\";s:13:\"Semi-Bold 600\";}i:3;a:2:{s:2:\"id\";s:3:\"700\";s:4:\"name\";s:8:\"Bold 700\";}i:4;a:2:{s:2:\"id\";s:3:\"800\";s:4:\"name\";s:14:\"Extra-Bold 800\";}i:5;a:2:{s:2:\"id\";s:3:\"900\";s:4:\"name\";s:14:\"Ultra-Bold 900\";}}s:7:\"subsets\";a:3:{i:0;a:2:{s:2:\"id\";s:9:\"latin-ext\";s:4:\"name\";s:14:\"Latin Extended\";}i:1;a:2:{s:2:\"id\";s:5:\"latin\";s:4:\"name\";s:5:\"Latin\";}i:2;a:2:{s:2:\"id\";s:10:\"devanagari\";s:4:\"name\";s:10:\"Devanagari\";}}}s:7:\"Satisfy\";a:2:{s:8:\"variants\";a:1:{i:0;a:2:{s:2:\"id\";s:3:\"400\";s:4:\"name\";s:10:\"Normal 400\";}}s:7:\"subsets\";a:1:{i:0;a:2:{s:2:\"id\";s:5:\"latin\";s:4:\"name\";s:5:\"Latin\";}}}s:5:\"Scada\";a:2:{s:8:\"variants\";a:4:{i:0;a:2:{s:2:\"id\";s:3:\"400\";s:4:\"name\";s:10:\"Normal 400\";}i:1;a:2:{s:2:\"id\";s:9:\"400italic\";s:4:\"name\";s:17:\"Normal 400 Italic\";}i:2;a:2:{s:2:\"id\";s:3:\"700\";s:4:\"name\";s:8:\"Bold 700\";}i:3;a:2:{s:2:\"id\";s:9:\"700italic\";s:4:\"name\";s:15:\"Bold 700 Italic\";}}s:7:\"subsets\";a:3:{i:0;a:2:{s:2:\"id\";s:9:\"latin-ext\";s:4:\"name\";s:14:\"Latin Extended\";}i:1;a:2:{s:2:\"id\";s:8:\"cyrillic\";s:4:\"name\";s:8:\"Cyrillic\";}i:2;a:2:{s:2:\"id\";s:5:\"latin\";s:4:\"name\";s:5:\"Latin\";}}}s:12:\"Scheherazade\";a:2:{s:8:\"variants\";a:2:{i:0;a:2:{s:2:\"id\";s:3:\"400\";s:4:\"name\";s:10:\"Normal 400\";}i:1;a:2:{s:2:\"id\";s:3:\"700\";s:4:\"name\";s:8:\"Bold 700\";}}s:7:\"subsets\";a:2:{i:0;a:2:{s:2:\"id\";s:6:\"arabic\";s:4:\"name\";s:6:\"Arabic\";}i:1;a:2:{s:2:\"id\";s:5:\"latin\";s:4:\"name\";s:5:\"Latin\";}}}s:10:\"Schoolbell\";a:2:{s:8:\"variants\";a:1:{i:0;a:2:{s:2:\"id\";s:3:\"400\";s:4:\"name\";s:10:\"Normal 400\";}}s:7:\"subsets\";a:1:{i:0;a:2:{s:2:\"id\";s:5:\"latin\";s:4:\"name\";s:5:\"Latin\";}}}s:14:\"Seaweed Script\";a:2:{s:8:\"variants\";a:1:{i:0;a:2:{s:2:\"id\";s:3:\"400\";s:4:\"name\";s:10:\"Normal 400\";}}s:7:\"subsets\";a:2:{i:0;a:2:{s:2:\"id\";s:9:\"latin-ext\";s:4:\"name\";s:14:\"Latin Extended\";}i:1;a:2:{s:2:\"id\";s:5:\"latin\";s:4:\"name\";s:5:\"Latin\";}}}s:9:\"Sevillana\";a:2:{s:8:\"variants\";a:1:{i:0;a:2:{s:2:\"id\";s:3:\"400\";s:4:\"name\";s:10:\"Normal 400\";}}s:7:\"subsets\";a:2:{i:0;a:2:{s:2:\"id\";s:9:\"latin-ext\";s:4:\"name\";s:14:\"Latin Extended\";}i:1;a:2:{s:2:\"id\";s:5:\"latin\";s:4:\"name\";s:5:\"Latin\";}}}s:11:\"Seymour One\";a:2:{s:8:\"variants\";a:1:{i:0;a:2:{s:2:\"id\";s:3:\"400\";s:4:\"name\";s:10:\"Normal 400\";}}s:7:\"subsets\";a:3:{i:0;a:2:{s:2:\"id\";s:9:\"latin-ext\";s:4:\"name\";s:14:\"Latin Extended\";}i:1;a:2:{s:2:\"id\";s:8:\"cyrillic\";s:4:\"name\";s:8:\"Cyrillic\";}i:2;a:2:{s:2:\"id\";s:5:\"latin\";s:4:\"name\";s:5:\"Latin\";}}}s:18:\"Shadows Into Light\";a:2:{s:8:\"variants\";a:1:{i:0;a:2:{s:2:\"id\";s:3:\"400\";s:4:\"name\";s:10:\"Normal 400\";}}s:7:\"subsets\";a:1:{i:0;a:2:{s:2:\"id\";s:5:\"latin\";s:4:\"name\";s:5:\"Latin\";}}}s:22:\"Shadows Into Light Two\";a:2:{s:8:\"variants\";a:1:{i:0;a:2:{s:2:\"id\";s:3:\"400\";s:4:\"name\";s:10:\"Normal 400\";}}s:7:\"subsets\";a:2:{i:0;a:2:{s:2:\"id\";s:9:\"latin-ext\";s:4:\"name\";s:14:\"Latin Extended\";}i:1;a:2:{s:2:\"id\";s:5:\"latin\";s:4:\"name\";s:5:\"Latin\";}}}s:6:\"Shanti\";a:2:{s:8:\"variants\";a:1:{i:0;a:2:{s:2:\"id\";s:3:\"400\";s:4:\"name\";s:10:\"Normal 400\";}}s:7:\"subsets\";a:1:{i:0;a:2:{s:2:\"id\";s:5:\"latin\";s:4:\"name\";s:5:\"Latin\";}}}s:5:\"Share\";a:2:{s:8:\"variants\";a:4:{i:0;a:2:{s:2:\"id\";s:3:\"400\";s:4:\"name\";s:10:\"Normal 400\";}i:1;a:2:{s:2:\"id\";s:9:\"400italic\";s:4:\"name\";s:17:\"Normal 400 Italic\";}i:2;a:2:{s:2:\"id\";s:3:\"700\";s:4:\"name\";s:8:\"Bold 700\";}i:3;a:2:{s:2:\"id\";s:9:\"700italic\";s:4:\"name\";s:15:\"Bold 700 Italic\";}}s:7:\"subsets\";a:2:{i:0;a:2:{s:2:\"id\";s:9:\"latin-ext\";s:4:\"name\";s:14:\"Latin Extended\";}i:1;a:2:{s:2:\"id\";s:5:\"latin\";s:4:\"name\";s:5:\"Latin\";}}}s:10:\"Share Tech\";a:2:{s:8:\"variants\";a:1:{i:0;a:2:{s:2:\"id\";s:3:\"400\";s:4:\"name\";s:10:\"Normal 400\";}}s:7:\"subsets\";a:1:{i:0;a:2:{s:2:\"id\";s:5:\"latin\";s:4:\"name\";s:5:\"Latin\";}}}s:15:\"Share Tech Mono\";a:2:{s:8:\"variants\";a:1:{i:0;a:2:{s:2:\"id\";s:3:\"400\";s:4:\"name\";s:10:\"Normal 400\";}}s:7:\"subsets\";a:1:{i:0;a:2:{s:2:\"id\";s:5:\"latin\";s:4:\"name\";s:5:\"Latin\";}}}s:9:\"Shojumaru\";a:2:{s:8:\"variants\";a:1:{i:0;a:2:{s:2:\"id\";s:3:\"400\";s:4:\"name\";s:10:\"Normal 400\";}}s:7:\"subsets\";a:2:{i:0;a:2:{s:2:\"id\";s:9:\"latin-ext\";s:4:\"name\";s:14:\"Latin Extended\";}i:1;a:2:{s:2:\"id\";s:5:\"latin\";s:4:\"name\";s:5:\"Latin\";}}}s:11:\"Short Stack\";a:2:{s:8:\"variants\";a:1:{i:0;a:2:{s:2:\"id\";s:3:\"400\";s:4:\"name\";s:10:\"Normal 400\";}}s:7:\"subsets\";a:1:{i:0;a:2:{s:2:\"id\";s:5:\"latin\";s:4:\"name\";s:5:\"Latin\";}}}s:8:\"Siemreap\";a:2:{s:8:\"variants\";a:1:{i:0;a:2:{s:2:\"id\";s:3:\"400\";s:4:\"name\";s:10:\"Normal 400\";}}s:7:\"subsets\";a:1:{i:0;a:2:{s:2:\"id\";s:5:\"khmer\";s:4:\"name\";s:5:\"Khmer\";}}}s:10:\"Sigmar One\";a:2:{s:8:\"variants\";a:1:{i:0;a:2:{s:2:\"id\";s:3:\"400\";s:4:\"name\";s:10:\"Normal 400\";}}s:7:\"subsets\";a:1:{i:0;a:2:{s:2:\"id\";s:5:\"latin\";s:4:\"name\";s:5:\"Latin\";}}}s:7:\"Signika\";a:2:{s:8:\"variants\";a:4:{i:0;a:2:{s:2:\"id\";s:3:\"300\";s:4:\"name\";s:8:\"Book 300\";}i:1;a:2:{s:2:\"id\";s:3:\"400\";s:4:\"name\";s:10:\"Normal 400\";}i:2;a:2:{s:2:\"id\";s:3:\"600\";s:4:\"name\";s:13:\"Semi-Bold 600\";}i:3;a:2:{s:2:\"id\";s:3:\"700\";s:4:\"name\";s:8:\"Bold 700\";}}s:7:\"subsets\";a:2:{i:0;a:2:{s:2:\"id\";s:9:\"latin-ext\";s:4:\"name\";s:14:\"Latin Extended\";}i:1;a:2:{s:2:\"id\";s:5:\"latin\";s:4:\"name\";s:5:\"Latin\";}}}s:16:\"Signika Negative\";a:2:{s:8:\"variants\";a:4:{i:0;a:2:{s:2:\"id\";s:3:\"300\";s:4:\"name\";s:8:\"Book 300\";}i:1;a:2:{s:2:\"id\";s:3:\"400\";s:4:\"name\";s:10:\"Normal 400\";}i:2;a:2:{s:2:\"id\";s:3:\"600\";s:4:\"name\";s:13:\"Semi-Bold 600\";}i:3;a:2:{s:2:\"id\";s:3:\"700\";s:4:\"name\";s:8:\"Bold 700\";}}s:7:\"subsets\";a:2:{i:0;a:2:{s:2:\"id\";s:9:\"latin-ext\";s:4:\"name\";s:14:\"Latin Extended\";}i:1;a:2:{s:2:\"id\";s:5:\"latin\";s:4:\"name\";s:5:\"Latin\";}}}s:9:\"Simonetta\";a:2:{s:8:\"variants\";a:4:{i:0;a:2:{s:2:\"id\";s:3:\"400\";s:4:\"name\";s:10:\"Normal 400\";}i:1;a:2:{s:2:\"id\";s:9:\"400italic\";s:4:\"name\";s:17:\"Normal 400 Italic\";}i:2;a:2:{s:2:\"id\";s:3:\"900\";s:4:\"name\";s:14:\"Ultra-Bold 900\";}i:3;a:2:{s:2:\"id\";s:9:\"900italic\";s:4:\"name\";s:21:\"Ultra-Bold 900 Italic\";}}s:7:\"subsets\";a:2:{i:0;a:2:{s:2:\"id\";s:9:\"latin-ext\";s:4:\"name\";s:14:\"Latin Extended\";}i:1;a:2:{s:2:\"id\";s:5:\"latin\";s:4:\"name\";s:5:\"Latin\";}}}s:7:\"Sintony\";a:2:{s:8:\"variants\";a:2:{i:0;a:2:{s:2:\"id\";s:3:\"400\";s:4:\"name\";s:10:\"Normal 400\";}i:1;a:2:{s:2:\"id\";s:3:\"700\";s:4:\"name\";s:8:\"Bold 700\";}}s:7:\"subsets\";a:2:{i:0;a:2:{s:2:\"id\";s:9:\"latin-ext\";s:4:\"name\";s:14:\"Latin Extended\";}i:1;a:2:{s:2:\"id\";s:5:\"latin\";s:4:\"name\";s:5:\"Latin\";}}}s:13:\"Sirin Stencil\";a:2:{s:8:\"variants\";a:1:{i:0;a:2:{s:2:\"id\";s:3:\"400\";s:4:\"name\";s:10:\"Normal 400\";}}s:7:\"subsets\";a:1:{i:0;a:2:{s:2:\"id\";s:5:\"latin\";s:4:\"name\";s:5:\"Latin\";}}}s:8:\"Six Caps\";a:2:{s:8:\"variants\";a:1:{i:0;a:2:{s:2:\"id\";s:3:\"400\";s:4:\"name\";s:10:\"Normal 400\";}}s:7:\"subsets\";a:1:{i:0;a:2:{s:2:\"id\";s:5:\"latin\";s:4:\"name\";s:5:\"Latin\";}}}s:7:\"Skranji\";a:2:{s:8:\"variants\";a:2:{i:0;a:2:{s:2:\"id\";s:3:\"400\";s:4:\"name\";s:10:\"Normal 400\";}i:1;a:2:{s:2:\"id\";s:3:\"700\";s:4:\"name\";s:8:\"Bold 700\";}}s:7:\"subsets\";a:2:{i:0;a:2:{s:2:\"id\";s:9:\"latin-ext\";s:4:\"name\";s:14:\"Latin Extended\";}i:1;a:2:{s:2:\"id\";s:5:\"latin\";s:4:\"name\";s:5:\"Latin\";}}}s:10:\"Slabo 13px\";a:2:{s:8:\"variants\";a:1:{i:0;a:2:{s:2:\"id\";s:3:\"400\";s:4:\"name\";s:10:\"Normal 400\";}}s:7:\"subsets\";a:2:{i:0;a:2:{s:2:\"id\";s:9:\"latin-ext\";s:4:\"name\";s:14:\"Latin Extended\";}i:1;a:2:{s:2:\"id\";s:5:\"latin\";s:4:\"name\";s:5:\"Latin\";}}}s:10:\"Slabo 27px\";a:2:{s:8:\"variants\";a:1:{i:0;a:2:{s:2:\"id\";s:3:\"400\";s:4:\"name\";s:10:\"Normal 400\";}}s:7:\"subsets\";a:2:{i:0;a:2:{s:2:\"id\";s:9:\"latin-ext\";s:4:\"name\";s:14:\"Latin Extended\";}i:1;a:2:{s:2:\"id\";s:5:\"latin\";s:4:\"name\";s:5:\"Latin\";}}}s:7:\"Slackey\";a:2:{s:8:\"variants\";a:1:{i:0;a:2:{s:2:\"id\";s:3:\"400\";s:4:\"name\";s:10:\"Normal 400\";}}s:7:\"subsets\";a:1:{i:0;a:2:{s:2:\"id\";s:5:\"latin\";s:4:\"name\";s:5:\"Latin\";}}}s:6:\"Smokum\";a:2:{s:8:\"variants\";a:1:{i:0;a:2:{s:2:\"id\";s:3:\"400\";s:4:\"name\";s:10:\"Normal 400\";}}s:7:\"subsets\";a:1:{i:0;a:2:{s:2:\"id\";s:5:\"latin\";s:4:\"name\";s:5:\"Latin\";}}}s:6:\"Smythe\";a:2:{s:8:\"variants\";a:1:{i:0;a:2:{s:2:\"id\";s:3:\"400\";s:4:\"name\";s:10:\"Normal 400\";}}s:7:\"subsets\";a:1:{i:0;a:2:{s:2:\"id\";s:5:\"latin\";s:4:\"name\";s:5:\"Latin\";}}}s:7:\"Sniglet\";a:2:{s:8:\"variants\";a:2:{i:0;a:2:{s:2:\"id\";s:3:\"400\";s:4:\"name\";s:10:\"Normal 400\";}i:1;a:2:{s:2:\"id\";s:3:\"800\";s:4:\"name\";s:14:\"Extra-Bold 800\";}}s:7:\"subsets\";a:2:{i:0;a:2:{s:2:\"id\";s:9:\"latin-ext\";s:4:\"name\";s:14:\"Latin Extended\";}i:1;a:2:{s:2:\"id\";s:5:\"latin\";s:4:\"name\";s:5:\"Latin\";}}}s:7:\"Snippet\";a:2:{s:8:\"variants\";a:1:{i:0;a:2:{s:2:\"id\";s:3:\"400\";s:4:\"name\";s:10:\"Normal 400\";}}s:7:\"subsets\";a:1:{i:0;a:2:{s:2:\"id\";s:5:\"latin\";s:4:\"name\";s:5:\"Latin\";}}}s:13:\"Snowburst One\";a:2:{s:8:\"variants\";a:1:{i:0;a:2:{s:2:\"id\";s:3:\"400\";s:4:\"name\";s:10:\"Normal 400\";}}s:7:\"subsets\";a:2:{i:0;a:2:{s:2:\"id\";s:9:\"latin-ext\";s:4:\"name\";s:14:\"Latin Extended\";}i:1;a:2:{s:2:\"id\";s:5:\"latin\";s:4:\"name\";s:5:\"Latin\";}}}s:10:\"Sofadi One\";a:2:{s:8:\"variants\";a:1:{i:0;a:2:{s:2:\"id\";s:3:\"400\";s:4:\"name\";s:10:\"Normal 400\";}}s:7:\"subsets\";a:1:{i:0;a:2:{s:2:\"id\";s:5:\"latin\";s:4:\"name\";s:5:\"Latin\";}}}s:5:\"Sofia\";a:2:{s:8:\"variants\";a:1:{i:0;a:2:{s:2:\"id\";s:3:\"400\";s:4:\"name\";s:10:\"Normal 400\";}}s:7:\"subsets\";a:1:{i:0;a:2:{s:2:\"id\";s:5:\"latin\";s:4:\"name\";s:5:\"Latin\";}}}s:10:\"Sonsie One\";a:2:{s:8:\"variants\";a:1:{i:0;a:2:{s:2:\"id\";s:3:\"400\";s:4:\"name\";s:10:\"Normal 400\";}}s:7:\"subsets\";a:2:{i:0;a:2:{s:2:\"id\";s:9:\"latin-ext\";s:4:\"name\";s:14:\"Latin Extended\";}i:1;a:2:{s:2:\"id\";s:5:\"latin\";s:4:\"name\";s:5:\"Latin\";}}}s:16:\"Sorts Mill Goudy\";a:2:{s:8:\"variants\";a:2:{i:0;a:2:{s:2:\"id\";s:3:\"400\";s:4:\"name\";s:10:\"Normal 400\";}i:1;a:2:{s:2:\"id\";s:9:\"400italic\";s:4:\"name\";s:17:\"Normal 400 Italic\";}}s:7:\"subsets\";a:2:{i:0;a:2:{s:2:\"id\";s:9:\"latin-ext\";s:4:\"name\";s:14:\"Latin Extended\";}i:1;a:2:{s:2:\"id\";s:5:\"latin\";s:4:\"name\";s:5:\"Latin\";}}}s:15:\"Source Code Pro\";a:2:{s:8:\"variants\";a:7:{i:0;a:2:{s:2:\"id\";s:3:\"200\";s:4:\"name\";s:9:\"Light 200\";}i:1;a:2:{s:2:\"id\";s:3:\"300\";s:4:\"name\";s:8:\"Book 300\";}i:2;a:2:{s:2:\"id\";s:3:\"400\";s:4:\"name\";s:10:\"Normal 400\";}i:3;a:2:{s:2:\"id\";s:3:\"500\";s:4:\"name\";s:10:\"Medium 500\";}i:4;a:2:{s:2:\"id\";s:3:\"600\";s:4:\"name\";s:13:\"Semi-Bold 600\";}i:5;a:2:{s:2:\"id\";s:3:\"700\";s:4:\"name\";s:8:\"Bold 700\";}i:6;a:2:{s:2:\"id\";s:3:\"900\";s:4:\"name\";s:14:\"Ultra-Bold 900\";}}s:7:\"subsets\";a:2:{i:0;a:2:{s:2:\"id\";s:9:\"latin-ext\";s:4:\"name\";s:14:\"Latin Extended\";}i:1;a:2:{s:2:\"id\";s:5:\"latin\";s:4:\"name\";s:5:\"Latin\";}}}s:15:\"Source Sans Pro\";a:2:{s:8:\"variants\";a:12:{i:0;a:2:{s:2:\"id\";s:3:\"200\";s:4:\"name\";s:9:\"Light 200\";}i:1;a:2:{s:2:\"id\";s:9:\"200italic\";s:4:\"name\";s:16:\"Light 200 Italic\";}i:2;a:2:{s:2:\"id\";s:3:\"300\";s:4:\"name\";s:8:\"Book 300\";}i:3;a:2:{s:2:\"id\";s:9:\"300italic\";s:4:\"name\";s:15:\"Book 300 Italic\";}i:4;a:2:{s:2:\"id\";s:3:\"400\";s:4:\"name\";s:10:\"Normal 400\";}i:5;a:2:{s:2:\"id\";s:9:\"400italic\";s:4:\"name\";s:17:\"Normal 400 Italic\";}i:6;a:2:{s:2:\"id\";s:3:\"600\";s:4:\"name\";s:13:\"Semi-Bold 600\";}i:7;a:2:{s:2:\"id\";s:9:\"600italic\";s:4:\"name\";s:20:\"Semi-Bold 600 Italic\";}i:8;a:2:{s:2:\"id\";s:3:\"700\";s:4:\"name\";s:8:\"Bold 700\";}i:9;a:2:{s:2:\"id\";s:9:\"700italic\";s:4:\"name\";s:15:\"Bold 700 Italic\";}i:10;a:2:{s:2:\"id\";s:3:\"900\";s:4:\"name\";s:14:\"Ultra-Bold 900\";}i:11;a:2:{s:2:\"id\";s:9:\"900italic\";s:4:\"name\";s:21:\"Ultra-Bold 900 Italic\";}}s:7:\"subsets\";a:3:{i:0;a:2:{s:2:\"id\";s:9:\"latin-ext\";s:4:\"name\";s:14:\"Latin Extended\";}i:1;a:2:{s:2:\"id\";s:10:\"vietnamese\";s:4:\"name\";s:10:\"Vietnamese\";}i:2;a:2:{s:2:\"id\";s:5:\"latin\";s:4:\"name\";s:5:\"Latin\";}}}s:16:\"Source Serif Pro\";a:2:{s:8:\"variants\";a:3:{i:0;a:2:{s:2:\"id\";s:3:\"400\";s:4:\"name\";s:10:\"Normal 400\";}i:1;a:2:{s:2:\"id\";s:3:\"600\";s:4:\"name\";s:13:\"Semi-Bold 600\";}i:2;a:2:{s:2:\"id\";s:3:\"700\";s:4:\"name\";s:8:\"Bold 700\";}}s:7:\"subsets\";a:2:{i:0;a:2:{s:2:\"id\";s:9:\"latin-ext\";s:4:\"name\";s:14:\"Latin Extended\";}i:1;a:2:{s:2:\"id\";s:5:\"latin\";s:4:\"name\";s:5:\"Latin\";}}}s:13:\"Special Elite\";a:2:{s:8:\"variants\";a:1:{i:0;a:2:{s:2:\"id\";s:3:\"400\";s:4:\"name\";s:10:\"Normal 400\";}}s:7:\"subsets\";a:1:{i:0;a:2:{s:2:\"id\";s:5:\"latin\";s:4:\"name\";s:5:\"Latin\";}}}s:10:\"Spicy Rice\";a:2:{s:8:\"variants\";a:1:{i:0;a:2:{s:2:\"id\";s:3:\"400\";s:4:\"name\";s:10:\"Normal 400\";}}s:7:\"subsets\";a:1:{i:0;a:2:{s:2:\"id\";s:5:\"latin\";s:4:\"name\";s:5:\"Latin\";}}}s:9:\"Spinnaker\";a:2:{s:8:\"variants\";a:1:{i:0;a:2:{s:2:\"id\";s:3:\"400\";s:4:\"name\";s:10:\"Normal 400\";}}s:7:\"subsets\";a:2:{i:0;a:2:{s:2:\"id\";s:9:\"latin-ext\";s:4:\"name\";s:14:\"Latin Extended\";}i:1;a:2:{s:2:\"id\";s:5:\"latin\";s:4:\"name\";s:5:\"Latin\";}}}s:6:\"Spirax\";a:2:{s:8:\"variants\";a:1:{i:0;a:2:{s:2:\"id\";s:3:\"400\";s:4:\"name\";s:10:\"Normal 400\";}}s:7:\"subsets\";a:1:{i:0;a:2:{s:2:\"id\";s:5:\"latin\";s:4:\"name\";s:5:\"Latin\";}}}s:10:\"Squada One\";a:2:{s:8:\"variants\";a:1:{i:0;a:2:{s:2:\"id\";s:3:\"400\";s:4:\"name\";s:10:\"Normal 400\";}}s:7:\"subsets\";a:1:{i:0;a:2:{s:2:\"id\";s:5:\"latin\";s:4:\"name\";s:5:\"Latin\";}}}s:20:\"Sree Krushnadevaraya\";a:2:{s:8:\"variants\";a:1:{i:0;a:2:{s:2:\"id\";s:3:\"400\";s:4:\"name\";s:10:\"Normal 400\";}}s:7:\"subsets\";a:2:{i:0;a:2:{s:2:\"id\";s:6:\"telugu\";s:4:\"name\";s:6:\"Telugu\";}i:1;a:2:{s:2:\"id\";s:5:\"latin\";s:4:\"name\";s:5:\"Latin\";}}}s:9:\"Stalemate\";a:2:{s:8:\"variants\";a:1:{i:0;a:2:{s:2:\"id\";s:3:\"400\";s:4:\"name\";s:10:\"Normal 400\";}}s:7:\"subsets\";a:2:{i:0;a:2:{s:2:\"id\";s:9:\"latin-ext\";s:4:\"name\";s:14:\"Latin Extended\";}i:1;a:2:{s:2:\"id\";s:5:\"latin\";s:4:\"name\";s:5:\"Latin\";}}}s:13:\"Stalinist One\";a:2:{s:8:\"variants\";a:1:{i:0;a:2:{s:2:\"id\";s:3:\"400\";s:4:\"name\";s:10:\"Normal 400\";}}s:7:\"subsets\";a:3:{i:0;a:2:{s:2:\"id\";s:9:\"latin-ext\";s:4:\"name\";s:14:\"Latin Extended\";}i:1;a:2:{s:2:\"id\";s:8:\"cyrillic\";s:4:\"name\";s:8:\"Cyrillic\";}i:2;a:2:{s:2:\"id\";s:5:\"latin\";s:4:\"name\";s:5:\"Latin\";}}}s:15:\"Stardos Stencil\";a:2:{s:8:\"variants\";a:2:{i:0;a:2:{s:2:\"id\";s:3:\"400\";s:4:\"name\";s:10:\"Normal 400\";}i:1;a:2:{s:2:\"id\";s:3:\"700\";s:4:\"name\";s:8:\"Bold 700\";}}s:7:\"subsets\";a:1:{i:0;a:2:{s:2:\"id\";s:5:\"latin\";s:4:\"name\";s:5:\"Latin\";}}}s:21:\"Stint Ultra Condensed\";a:2:{s:8:\"variants\";a:1:{i:0;a:2:{s:2:\"id\";s:3:\"400\";s:4:\"name\";s:10:\"Normal 400\";}}s:7:\"subsets\";a:2:{i:0;a:2:{s:2:\"id\";s:9:\"latin-ext\";s:4:\"name\";s:14:\"Latin Extended\";}i:1;a:2:{s:2:\"id\";s:5:\"latin\";s:4:\"name\";s:5:\"Latin\";}}}s:20:\"Stint Ultra Expanded\";a:2:{s:8:\"variants\";a:1:{i:0;a:2:{s:2:\"id\";s:3:\"400\";s:4:\"name\";s:10:\"Normal 400\";}}s:7:\"subsets\";a:2:{i:0;a:2:{s:2:\"id\";s:9:\"latin-ext\";s:4:\"name\";s:14:\"Latin Extended\";}i:1;a:2:{s:2:\"id\";s:5:\"latin\";s:4:\"name\";s:5:\"Latin\";}}}s:5:\"Stoke\";a:2:{s:8:\"variants\";a:2:{i:0;a:2:{s:2:\"id\";s:3:\"300\";s:4:\"name\";s:8:\"Book 300\";}i:1;a:2:{s:2:\"id\";s:3:\"400\";s:4:\"name\";s:10:\"Normal 400\";}}s:7:\"subsets\";a:2:{i:0;a:2:{s:2:\"id\";s:9:\"latin-ext\";s:4:\"name\";s:14:\"Latin Extended\";}i:1;a:2:{s:2:\"id\";s:5:\"latin\";s:4:\"name\";s:5:\"Latin\";}}}s:6:\"Strait\";a:2:{s:8:\"variants\";a:1:{i:0;a:2:{s:2:\"id\";s:3:\"400\";s:4:\"name\";s:10:\"Normal 400\";}}s:7:\"subsets\";a:1:{i:0;a:2:{s:2:\"id\";s:5:\"latin\";s:4:\"name\";s:5:\"Latin\";}}}s:19:\"Sue Ellen Francisco\";a:2:{s:8:\"variants\";a:1:{i:0;a:2:{s:2:\"id\";s:3:\"400\";s:4:\"name\";s:10:\"Normal 400\";}}s:7:\"subsets\";a:1:{i:0;a:2:{s:2:\"id\";s:5:\"latin\";s:4:\"name\";s:5:\"Latin\";}}}s:6:\"Sumana\";a:2:{s:8:\"variants\";a:2:{i:0;a:2:{s:2:\"id\";s:3:\"400\";s:4:\"name\";s:10:\"Normal 400\";}i:1;a:2:{s:2:\"id\";s:3:\"700\";s:4:\"name\";s:8:\"Bold 700\";}}s:7:\"subsets\";a:3:{i:0;a:2:{s:2:\"id\";s:9:\"latin-ext\";s:4:\"name\";s:14:\"Latin Extended\";}i:1;a:2:{s:2:\"id\";s:5:\"latin\";s:4:\"name\";s:5:\"Latin\";}i:2;a:2:{s:2:\"id\";s:10:\"devanagari\";s:4:\"name\";s:10:\"Devanagari\";}}}s:9:\"Sunshiney\";a:2:{s:8:\"variants\";a:1:{i:0;a:2:{s:2:\"id\";s:3:\"400\";s:4:\"name\";s:10:\"Normal 400\";}}s:7:\"subsets\";a:1:{i:0;a:2:{s:2:\"id\";s:5:\"latin\";s:4:\"name\";s:5:\"Latin\";}}}s:16:\"Supermercado One\";a:2:{s:8:\"variants\";a:1:{i:0;a:2:{s:2:\"id\";s:3:\"400\";s:4:\"name\";s:10:\"Normal 400\";}}s:7:\"subsets\";a:1:{i:0;a:2:{s:2:\"id\";s:5:\"latin\";s:4:\"name\";s:5:\"Latin\";}}}s:4:\"Sura\";a:2:{s:8:\"variants\";a:2:{i:0;a:2:{s:2:\"id\";s:3:\"400\";s:4:\"name\";s:10:\"Normal 400\";}i:1;a:2:{s:2:\"id\";s:3:\"700\";s:4:\"name\";s:8:\"Bold 700\";}}s:7:\"subsets\";a:3:{i:0;a:2:{s:2:\"id\";s:9:\"latin-ext\";s:4:\"name\";s:14:\"Latin Extended\";}i:1;a:2:{s:2:\"id\";s:5:\"latin\";s:4:\"name\";s:5:\"Latin\";}i:2;a:2:{s:2:\"id\";s:10:\"devanagari\";s:4:\"name\";s:10:\"Devanagari\";}}}s:7:\"Suranna\";a:2:{s:8:\"variants\";a:1:{i:0;a:2:{s:2:\"id\";s:3:\"400\";s:4:\"name\";s:10:\"Normal 400\";}}s:7:\"subsets\";a:2:{i:0;a:2:{s:2:\"id\";s:6:\"telugu\";s:4:\"name\";s:6:\"Telugu\";}i:1;a:2:{s:2:\"id\";s:5:\"latin\";s:4:\"name\";s:5:\"Latin\";}}}s:9:\"Suravaram\";a:2:{s:8:\"variants\";a:1:{i:0;a:2:{s:2:\"id\";s:3:\"400\";s:4:\"name\";s:10:\"Normal 400\";}}s:7:\"subsets\";a:2:{i:0;a:2:{s:2:\"id\";s:6:\"telugu\";s:4:\"name\";s:6:\"Telugu\";}i:1;a:2:{s:2:\"id\";s:5:\"latin\";s:4:\"name\";s:5:\"Latin\";}}}s:11:\"Suwannaphum\";a:2:{s:8:\"variants\";a:1:{i:0;a:2:{s:2:\"id\";s:3:\"400\";s:4:\"name\";s:10:\"Normal 400\";}}s:7:\"subsets\";a:1:{i:0;a:2:{s:2:\"id\";s:5:\"khmer\";s:4:\"name\";s:5:\"Khmer\";}}}s:18:\"Swanky and Moo Moo\";a:2:{s:8:\"variants\";a:1:{i:0;a:2:{s:2:\"id\";s:3:\"400\";s:4:\"name\";s:10:\"Normal 400\";}}s:7:\"subsets\";a:1:{i:0;a:2:{s:2:\"id\";s:5:\"latin\";s:4:\"name\";s:5:\"Latin\";}}}s:9:\"Syncopate\";a:2:{s:8:\"variants\";a:2:{i:0;a:2:{s:2:\"id\";s:3:\"400\";s:4:\"name\";s:10:\"Normal 400\";}i:1;a:2:{s:2:\"id\";s:3:\"700\";s:4:\"name\";s:8:\"Bold 700\";}}s:7:\"subsets\";a:1:{i:0;a:2:{s:2:\"id\";s:5:\"latin\";s:4:\"name\";s:5:\"Latin\";}}}s:9:\"Tangerine\";a:2:{s:8:\"variants\";a:2:{i:0;a:2:{s:2:\"id\";s:3:\"400\";s:4:\"name\";s:10:\"Normal 400\";}i:1;a:2:{s:2:\"id\";s:3:\"700\";s:4:\"name\";s:8:\"Bold 700\";}}s:7:\"subsets\";a:1:{i:0;a:2:{s:2:\"id\";s:5:\"latin\";s:4:\"name\";s:5:\"Latin\";}}}s:6:\"Taprom\";a:2:{s:8:\"variants\";a:1:{i:0;a:2:{s:2:\"id\";s:3:\"400\";s:4:\"name\";s:10:\"Normal 400\";}}s:7:\"subsets\";a:1:{i:0;a:2:{s:2:\"id\";s:5:\"khmer\";s:4:\"name\";s:5:\"Khmer\";}}}s:5:\"Tauri\";a:2:{s:8:\"variants\";a:1:{i:0;a:2:{s:2:\"id\";s:3:\"400\";s:4:\"name\";s:10:\"Normal 400\";}}s:7:\"subsets\";a:2:{i:0;a:2:{s:2:\"id\";s:9:\"latin-ext\";s:4:\"name\";s:14:\"Latin Extended\";}i:1;a:2:{s:2:\"id\";s:5:\"latin\";s:4:\"name\";s:5:\"Latin\";}}}s:4:\"Teko\";a:2:{s:8:\"variants\";a:5:{i:0;a:2:{s:2:\"id\";s:3:\"300\";s:4:\"name\";s:8:\"Book 300\";}i:1;a:2:{s:2:\"id\";s:3:\"400\";s:4:\"name\";s:10:\"Normal 400\";}i:2;a:2:{s:2:\"id\";s:3:\"500\";s:4:\"name\";s:10:\"Medium 500\";}i:3;a:2:{s:2:\"id\";s:3:\"600\";s:4:\"name\";s:13:\"Semi-Bold 600\";}i:4;a:2:{s:2:\"id\";s:3:\"700\";s:4:\"name\";s:8:\"Bold 700\";}}s:7:\"subsets\";a:3:{i:0;a:2:{s:2:\"id\";s:9:\"latin-ext\";s:4:\"name\";s:14:\"Latin Extended\";}i:1;a:2:{s:2:\"id\";s:5:\"latin\";s:4:\"name\";s:5:\"Latin\";}i:2;a:2:{s:2:\"id\";s:10:\"devanagari\";s:4:\"name\";s:10:\"Devanagari\";}}}s:5:\"Telex\";a:2:{s:8:\"variants\";a:1:{i:0;a:2:{s:2:\"id\";s:3:\"400\";s:4:\"name\";s:10:\"Normal 400\";}}s:7:\"subsets\";a:1:{i:0;a:2:{s:2:\"id\";s:5:\"latin\";s:4:\"name\";s:5:\"Latin\";}}}s:18:\"Tenali Ramakrishna\";a:2:{s:8:\"variants\";a:1:{i:0;a:2:{s:2:\"id\";s:3:\"400\";s:4:\"name\";s:10:\"Normal 400\";}}s:7:\"subsets\";a:2:{i:0;a:2:{s:2:\"id\";s:6:\"telugu\";s:4:\"name\";s:6:\"Telugu\";}i:1;a:2:{s:2:\"id\";s:5:\"latin\";s:4:\"name\";s:5:\"Latin\";}}}s:10:\"Tenor Sans\";a:2:{s:8:\"variants\";a:1:{i:0;a:2:{s:2:\"id\";s:3:\"400\";s:4:\"name\";s:10:\"Normal 400\";}}s:7:\"subsets\";a:3:{i:0;a:2:{s:2:\"id\";s:9:\"latin-ext\";s:4:\"name\";s:14:\"Latin Extended\";}i:1;a:2:{s:2:\"id\";s:8:\"cyrillic\";s:4:\"name\";s:8:\"Cyrillic\";}i:2;a:2:{s:2:\"id\";s:5:\"latin\";s:4:\"name\";s:5:\"Latin\";}}}s:11:\"Text Me One\";a:2:{s:8:\"variants\";a:1:{i:0;a:2:{s:2:\"id\";s:3:\"400\";s:4:\"name\";s:10:\"Normal 400\";}}s:7:\"subsets\";a:2:{i:0;a:2:{s:2:\"id\";s:9:\"latin-ext\";s:4:\"name\";s:14:\"Latin Extended\";}i:1;a:2:{s:2:\"id\";s:5:\"latin\";s:4:\"name\";s:5:\"Latin\";}}}s:18:\"The Girl Next Door\";a:2:{s:8:\"variants\";a:1:{i:0;a:2:{s:2:\"id\";s:3:\"400\";s:4:\"name\";s:10:\"Normal 400\";}}s:7:\"subsets\";a:1:{i:0;a:2:{s:2:\"id\";s:5:\"latin\";s:4:\"name\";s:5:\"Latin\";}}}s:6:\"Tienne\";a:2:{s:8:\"variants\";a:3:{i:0;a:2:{s:2:\"id\";s:3:\"400\";s:4:\"name\";s:10:\"Normal 400\";}i:1;a:2:{s:2:\"id\";s:3:\"700\";s:4:\"name\";s:8:\"Bold 700\";}i:2;a:2:{s:2:\"id\";s:3:\"900\";s:4:\"name\";s:14:\"Ultra-Bold 900\";}}s:7:\"subsets\";a:1:{i:0;a:2:{s:2:\"id\";s:5:\"latin\";s:4:\"name\";s:5:\"Latin\";}}}s:7:\"Tillana\";a:2:{s:8:\"variants\";a:5:{i:0;a:2:{s:2:\"id\";s:3:\"400\";s:4:\"name\";s:10:\"Normal 400\";}i:1;a:2:{s:2:\"id\";s:3:\"500\";s:4:\"name\";s:10:\"Medium 500\";}i:2;a:2:{s:2:\"id\";s:3:\"600\";s:4:\"name\";s:13:\"Semi-Bold 600\";}i:3;a:2:{s:2:\"id\";s:3:\"700\";s:4:\"name\";s:8:\"Bold 700\";}i:4;a:2:{s:2:\"id\";s:3:\"800\";s:4:\"name\";s:14:\"Extra-Bold 800\";}}s:7:\"subsets\";a:3:{i:0;a:2:{s:2:\"id\";s:9:\"latin-ext\";s:4:\"name\";s:14:\"Latin Extended\";}i:1;a:2:{s:2:\"id\";s:5:\"latin\";s:4:\"name\";s:5:\"Latin\";}i:2;a:2:{s:2:\"id\";s:10:\"devanagari\";s:4:\"name\";s:10:\"Devanagari\";}}}s:7:\"Timmana\";a:2:{s:8:\"variants\";a:1:{i:0;a:2:{s:2:\"id\";s:3:\"400\";s:4:\"name\";s:10:\"Normal 400\";}}s:7:\"subsets\";a:2:{i:0;a:2:{s:2:\"id\";s:6:\"telugu\";s:4:\"name\";s:6:\"Telugu\";}i:1;a:2:{s:2:\"id\";s:5:\"latin\";s:4:\"name\";s:5:\"Latin\";}}}s:5:\"Tinos\";a:2:{s:8:\"variants\";a:4:{i:0;a:2:{s:2:\"id\";s:3:\"400\";s:4:\"name\";s:10:\"Normal 400\";}i:1;a:2:{s:2:\"id\";s:9:\"400italic\";s:4:\"name\";s:17:\"Normal 400 Italic\";}i:2;a:2:{s:2:\"id\";s:3:\"700\";s:4:\"name\";s:8:\"Bold 700\";}i:3;a:2:{s:2:\"id\";s:9:\"700italic\";s:4:\"name\";s:15:\"Bold 700 Italic\";}}s:7:\"subsets\";a:8:{i:0;a:2:{s:2:\"id\";s:12:\"cyrillic-ext\";s:4:\"name\";s:17:\"Cyrillic Extended\";}i:1;a:2:{s:2:\"id\";s:9:\"latin-ext\";s:4:\"name\";s:14:\"Latin Extended\";}i:2;a:2:{s:2:\"id\";s:10:\"vietnamese\";s:4:\"name\";s:10:\"Vietnamese\";}i:3;a:2:{s:2:\"id\";s:9:\"greek-ext\";s:4:\"name\";s:14:\"Greek Extended\";}i:4;a:2:{s:2:\"id\";s:8:\"cyrillic\";s:4:\"name\";s:8:\"Cyrillic\";}i:5;a:2:{s:2:\"id\";s:5:\"latin\";s:4:\"name\";s:5:\"Latin\";}i:6;a:2:{s:2:\"id\";s:6:\"hebrew\";s:4:\"name\";s:6:\"Hebrew\";}i:7;a:2:{s:2:\"id\";s:5:\"greek\";s:4:\"name\";s:5:\"Greek\";}}}s:9:\"Titan One\";a:2:{s:8:\"variants\";a:1:{i:0;a:2:{s:2:\"id\";s:3:\"400\";s:4:\"name\";s:10:\"Normal 400\";}}s:7:\"subsets\";a:2:{i:0;a:2:{s:2:\"id\";s:9:\"latin-ext\";s:4:\"name\";s:14:\"Latin Extended\";}i:1;a:2:{s:2:\"id\";s:5:\"latin\";s:4:\"name\";s:5:\"Latin\";}}}s:13:\"Titillium Web\";a:2:{s:8:\"variants\";a:11:{i:0;a:2:{s:2:\"id\";s:3:\"200\";s:4:\"name\";s:9:\"Light 200\";}i:1;a:2:{s:2:\"id\";s:9:\"200italic\";s:4:\"name\";s:16:\"Light 200 Italic\";}i:2;a:2:{s:2:\"id\";s:3:\"300\";s:4:\"name\";s:8:\"Book 300\";}i:3;a:2:{s:2:\"id\";s:9:\"300italic\";s:4:\"name\";s:15:\"Book 300 Italic\";}i:4;a:2:{s:2:\"id\";s:3:\"400\";s:4:\"name\";s:10:\"Normal 400\";}i:5;a:2:{s:2:\"id\";s:9:\"400italic\";s:4:\"name\";s:17:\"Normal 400 Italic\";}i:6;a:2:{s:2:\"id\";s:3:\"600\";s:4:\"name\";s:13:\"Semi-Bold 600\";}i:7;a:2:{s:2:\"id\";s:9:\"600italic\";s:4:\"name\";s:20:\"Semi-Bold 600 Italic\";}i:8;a:2:{s:2:\"id\";s:3:\"700\";s:4:\"name\";s:8:\"Bold 700\";}i:9;a:2:{s:2:\"id\";s:9:\"700italic\";s:4:\"name\";s:15:\"Bold 700 Italic\";}i:10;a:2:{s:2:\"id\";s:3:\"900\";s:4:\"name\";s:14:\"Ultra-Bold 900\";}}s:7:\"subsets\";a:2:{i:0;a:2:{s:2:\"id\";s:9:\"latin-ext\";s:4:\"name\";s:14:\"Latin Extended\";}i:1;a:2:{s:2:\"id\";s:5:\"latin\";s:4:\"name\";s:5:\"Latin\";}}}s:11:\"Trade Winds\";a:2:{s:8:\"variants\";a:1:{i:0;a:2:{s:2:\"id\";s:3:\"400\";s:4:\"name\";s:10:\"Normal 400\";}}s:7:\"subsets\";a:1:{i:0;a:2:{s:2:\"id\";s:5:\"latin\";s:4:\"name\";s:5:\"Latin\";}}}s:7:\"Trocchi\";a:2:{s:8:\"variants\";a:1:{i:0;a:2:{s:2:\"id\";s:3:\"400\";s:4:\"name\";s:10:\"Normal 400\";}}s:7:\"subsets\";a:2:{i:0;a:2:{s:2:\"id\";s:9:\"latin-ext\";s:4:\"name\";s:14:\"Latin Extended\";}i:1;a:2:{s:2:\"id\";s:5:\"latin\";s:4:\"name\";s:5:\"Latin\";}}}s:7:\"Trochut\";a:2:{s:8:\"variants\";a:3:{i:0;a:2:{s:2:\"id\";s:3:\"400\";s:4:\"name\";s:10:\"Normal 400\";}i:1;a:2:{s:2:\"id\";s:9:\"400italic\";s:4:\"name\";s:17:\"Normal 400 Italic\";}i:2;a:2:{s:2:\"id\";s:3:\"700\";s:4:\"name\";s:8:\"Bold 700\";}}s:7:\"subsets\";a:1:{i:0;a:2:{s:2:\"id\";s:5:\"latin\";s:4:\"name\";s:5:\"Latin\";}}}s:7:\"Trykker\";a:2:{s:8:\"variants\";a:1:{i:0;a:2:{s:2:\"id\";s:3:\"400\";s:4:\"name\";s:10:\"Normal 400\";}}s:7:\"subsets\";a:2:{i:0;a:2:{s:2:\"id\";s:9:\"latin-ext\";s:4:\"name\";s:14:\"Latin Extended\";}i:1;a:2:{s:2:\"id\";s:5:\"latin\";s:4:\"name\";s:5:\"Latin\";}}}s:10:\"Tulpen One\";a:2:{s:8:\"variants\";a:1:{i:0;a:2:{s:2:\"id\";s:3:\"400\";s:4:\"name\";s:10:\"Normal 400\";}}s:7:\"subsets\";a:1:{i:0;a:2:{s:2:\"id\";s:5:\"latin\";s:4:\"name\";s:5:\"Latin\";}}}s:6:\"Ubuntu\";a:2:{s:8:\"variants\";a:8:{i:0;a:2:{s:2:\"id\";s:3:\"300\";s:4:\"name\";s:8:\"Book 300\";}i:1;a:2:{s:2:\"id\";s:9:\"300italic\";s:4:\"name\";s:15:\"Book 300 Italic\";}i:2;a:2:{s:2:\"id\";s:3:\"400\";s:4:\"name\";s:10:\"Normal 400\";}i:3;a:2:{s:2:\"id\";s:9:\"400italic\";s:4:\"name\";s:17:\"Normal 400 Italic\";}i:4;a:2:{s:2:\"id\";s:3:\"500\";s:4:\"name\";s:10:\"Medium 500\";}i:5;a:2:{s:2:\"id\";s:9:\"500italic\";s:4:\"name\";s:17:\"Medium 500 Italic\";}i:6;a:2:{s:2:\"id\";s:3:\"700\";s:4:\"name\";s:8:\"Bold 700\";}i:7;a:2:{s:2:\"id\";s:9:\"700italic\";s:4:\"name\";s:15:\"Bold 700 Italic\";}}s:7:\"subsets\";a:6:{i:0;a:2:{s:2:\"id\";s:12:\"cyrillic-ext\";s:4:\"name\";s:17:\"Cyrillic Extended\";}i:1;a:2:{s:2:\"id\";s:9:\"latin-ext\";s:4:\"name\";s:14:\"Latin Extended\";}i:2;a:2:{s:2:\"id\";s:9:\"greek-ext\";s:4:\"name\";s:14:\"Greek Extended\";}i:3;a:2:{s:2:\"id\";s:8:\"cyrillic\";s:4:\"name\";s:8:\"Cyrillic\";}i:4;a:2:{s:2:\"id\";s:5:\"latin\";s:4:\"name\";s:5:\"Latin\";}i:5;a:2:{s:2:\"id\";s:5:\"greek\";s:4:\"name\";s:5:\"Greek\";}}}s:16:\"Ubuntu Condensed\";a:2:{s:8:\"variants\";a:1:{i:0;a:2:{s:2:\"id\";s:3:\"400\";s:4:\"name\";s:10:\"Normal 400\";}}s:7:\"subsets\";a:6:{i:0;a:2:{s:2:\"id\";s:12:\"cyrillic-ext\";s:4:\"name\";s:17:\"Cyrillic Extended\";}i:1;a:2:{s:2:\"id\";s:9:\"latin-ext\";s:4:\"name\";s:14:\"Latin Extended\";}i:2;a:2:{s:2:\"id\";s:9:\"greek-ext\";s:4:\"name\";s:14:\"Greek Extended\";}i:3;a:2:{s:2:\"id\";s:8:\"cyrillic\";s:4:\"name\";s:8:\"Cyrillic\";}i:4;a:2:{s:2:\"id\";s:5:\"latin\";s:4:\"name\";s:5:\"Latin\";}i:5;a:2:{s:2:\"id\";s:5:\"greek\";s:4:\"name\";s:5:\"Greek\";}}}s:11:\"Ubuntu Mono\";a:2:{s:8:\"variants\";a:4:{i:0;a:2:{s:2:\"id\";s:3:\"400\";s:4:\"name\";s:10:\"Normal 400\";}i:1;a:2:{s:2:\"id\";s:9:\"400italic\";s:4:\"name\";s:17:\"Normal 400 Italic\";}i:2;a:2:{s:2:\"id\";s:3:\"700\";s:4:\"name\";s:8:\"Bold 700\";}i:3;a:2:{s:2:\"id\";s:9:\"700italic\";s:4:\"name\";s:15:\"Bold 700 Italic\";}}s:7:\"subsets\";a:6:{i:0;a:2:{s:2:\"id\";s:12:\"cyrillic-ext\";s:4:\"name\";s:17:\"Cyrillic Extended\";}i:1;a:2:{s:2:\"id\";s:9:\"latin-ext\";s:4:\"name\";s:14:\"Latin Extended\";}i:2;a:2:{s:2:\"id\";s:9:\"greek-ext\";s:4:\"name\";s:14:\"Greek Extended\";}i:3;a:2:{s:2:\"id\";s:8:\"cyrillic\";s:4:\"name\";s:8:\"Cyrillic\";}i:4;a:2:{s:2:\"id\";s:5:\"latin\";s:4:\"name\";s:5:\"Latin\";}i:5;a:2:{s:2:\"id\";s:5:\"greek\";s:4:\"name\";s:5:\"Greek\";}}}s:5:\"Ultra\";a:2:{s:8:\"variants\";a:1:{i:0;a:2:{s:2:\"id\";s:3:\"400\";s:4:\"name\";s:10:\"Normal 400\";}}s:7:\"subsets\";a:1:{i:0;a:2:{s:2:\"id\";s:5:\"latin\";s:4:\"name\";s:5:\"Latin\";}}}s:14:\"Uncial Antiqua\";a:2:{s:8:\"variants\";a:1:{i:0;a:2:{s:2:\"id\";s:3:\"400\";s:4:\"name\";s:10:\"Normal 400\";}}s:7:\"subsets\";a:1:{i:0;a:2:{s:2:\"id\";s:5:\"latin\";s:4:\"name\";s:5:\"Latin\";}}}s:8:\"Underdog\";a:2:{s:8:\"variants\";a:1:{i:0;a:2:{s:2:\"id\";s:3:\"400\";s:4:\"name\";s:10:\"Normal 400\";}}s:7:\"subsets\";a:3:{i:0;a:2:{s:2:\"id\";s:9:\"latin-ext\";s:4:\"name\";s:14:\"Latin Extended\";}i:1;a:2:{s:2:\"id\";s:8:\"cyrillic\";s:4:\"name\";s:8:\"Cyrillic\";}i:2;a:2:{s:2:\"id\";s:5:\"latin\";s:4:\"name\";s:5:\"Latin\";}}}s:9:\"Unica One\";a:2:{s:8:\"variants\";a:1:{i:0;a:2:{s:2:\"id\";s:3:\"400\";s:4:\"name\";s:10:\"Normal 400\";}}s:7:\"subsets\";a:2:{i:0;a:2:{s:2:\"id\";s:9:\"latin-ext\";s:4:\"name\";s:14:\"Latin Extended\";}i:1;a:2:{s:2:\"id\";s:5:\"latin\";s:4:\"name\";s:5:\"Latin\";}}}s:14:\"UnifrakturCook\";a:2:{s:8:\"variants\";a:1:{i:0;a:2:{s:2:\"id\";s:3:\"700\";s:4:\"name\";s:8:\"Bold 700\";}}s:7:\"subsets\";a:1:{i:0;a:2:{s:2:\"id\";s:5:\"latin\";s:4:\"name\";s:5:\"Latin\";}}}s:18:\"UnifrakturMaguntia\";a:2:{s:8:\"variants\";a:1:{i:0;a:2:{s:2:\"id\";s:3:\"400\";s:4:\"name\";s:10:\"Normal 400\";}}s:7:\"subsets\";a:1:{i:0;a:2:{s:2:\"id\";s:5:\"latin\";s:4:\"name\";s:5:\"Latin\";}}}s:7:\"Unkempt\";a:2:{s:8:\"variants\";a:2:{i:0;a:2:{s:2:\"id\";s:3:\"400\";s:4:\"name\";s:10:\"Normal 400\";}i:1;a:2:{s:2:\"id\";s:3:\"700\";s:4:\"name\";s:8:\"Bold 700\";}}s:7:\"subsets\";a:1:{i:0;a:2:{s:2:\"id\";s:5:\"latin\";s:4:\"name\";s:5:\"Latin\";}}}s:6:\"Unlock\";a:2:{s:8:\"variants\";a:1:{i:0;a:2:{s:2:\"id\";s:3:\"400\";s:4:\"name\";s:10:\"Normal 400\";}}s:7:\"subsets\";a:1:{i:0;a:2:{s:2:\"id\";s:5:\"latin\";s:4:\"name\";s:5:\"Latin\";}}}s:4:\"Unna\";a:2:{s:8:\"variants\";a:1:{i:0;a:2:{s:2:\"id\";s:3:\"400\";s:4:\"name\";s:10:\"Normal 400\";}}s:7:\"subsets\";a:1:{i:0;a:2:{s:2:\"id\";s:5:\"latin\";s:4:\"name\";s:5:\"Latin\";}}}s:5:\"VT323\";a:2:{s:8:\"variants\";a:1:{i:0;a:2:{s:2:\"id\";s:3:\"400\";s:4:\"name\";s:10:\"Normal 400\";}}s:7:\"subsets\";a:1:{i:0;a:2:{s:2:\"id\";s:5:\"latin\";s:4:\"name\";s:5:\"Latin\";}}}s:11:\"Vampiro One\";a:2:{s:8:\"variants\";a:1:{i:0;a:2:{s:2:\"id\";s:3:\"400\";s:4:\"name\";s:10:\"Normal 400\";}}s:7:\"subsets\";a:2:{i:0;a:2:{s:2:\"id\";s:9:\"latin-ext\";s:4:\"name\";s:14:\"Latin Extended\";}i:1;a:2:{s:2:\"id\";s:5:\"latin\";s:4:\"name\";s:5:\"Latin\";}}}s:6:\"Varela\";a:2:{s:8:\"variants\";a:1:{i:0;a:2:{s:2:\"id\";s:3:\"400\";s:4:\"name\";s:10:\"Normal 400\";}}s:7:\"subsets\";a:2:{i:0;a:2:{s:2:\"id\";s:9:\"latin-ext\";s:4:\"name\";s:14:\"Latin Extended\";}i:1;a:2:{s:2:\"id\";s:5:\"latin\";s:4:\"name\";s:5:\"Latin\";}}}s:12:\"Varela Round\";a:2:{s:8:\"variants\";a:1:{i:0;a:2:{s:2:\"id\";s:3:\"400\";s:4:\"name\";s:10:\"Normal 400\";}}s:7:\"subsets\";a:1:{i:0;a:2:{s:2:\"id\";s:5:\"latin\";s:4:\"name\";s:5:\"Latin\";}}}s:11:\"Vast Shadow\";a:2:{s:8:\"variants\";a:1:{i:0;a:2:{s:2:\"id\";s:3:\"400\";s:4:\"name\";s:10:\"Normal 400\";}}s:7:\"subsets\";a:1:{i:0;a:2:{s:2:\"id\";s:5:\"latin\";s:4:\"name\";s:5:\"Latin\";}}}s:12:\"Vesper Libre\";a:2:{s:8:\"variants\";a:4:{i:0;a:2:{s:2:\"id\";s:3:\"400\";s:4:\"name\";s:10:\"Normal 400\";}i:1;a:2:{s:2:\"id\";s:3:\"500\";s:4:\"name\";s:10:\"Medium 500\";}i:2;a:2:{s:2:\"id\";s:3:\"700\";s:4:\"name\";s:8:\"Bold 700\";}i:3;a:2:{s:2:\"id\";s:3:\"900\";s:4:\"name\";s:14:\"Ultra-Bold 900\";}}s:7:\"subsets\";a:3:{i:0;a:2:{s:2:\"id\";s:9:\"latin-ext\";s:4:\"name\";s:14:\"Latin Extended\";}i:1;a:2:{s:2:\"id\";s:5:\"latin\";s:4:\"name\";s:5:\"Latin\";}i:2;a:2:{s:2:\"id\";s:10:\"devanagari\";s:4:\"name\";s:10:\"Devanagari\";}}}s:5:\"Vibur\";a:2:{s:8:\"variants\";a:1:{i:0;a:2:{s:2:\"id\";s:3:\"400\";s:4:\"name\";s:10:\"Normal 400\";}}s:7:\"subsets\";a:1:{i:0;a:2:{s:2:\"id\";s:5:\"latin\";s:4:\"name\";s:5:\"Latin\";}}}s:8:\"Vidaloka\";a:2:{s:8:\"variants\";a:1:{i:0;a:2:{s:2:\"id\";s:3:\"400\";s:4:\"name\";s:10:\"Normal 400\";}}s:7:\"subsets\";a:1:{i:0;a:2:{s:2:\"id\";s:5:\"latin\";s:4:\"name\";s:5:\"Latin\";}}}s:4:\"Viga\";a:2:{s:8:\"variants\";a:1:{i:0;a:2:{s:2:\"id\";s:3:\"400\";s:4:\"name\";s:10:\"Normal 400\";}}s:7:\"subsets\";a:2:{i:0;a:2:{s:2:\"id\";s:9:\"latin-ext\";s:4:\"name\";s:14:\"Latin Extended\";}i:1;a:2:{s:2:\"id\";s:5:\"latin\";s:4:\"name\";s:5:\"Latin\";}}}s:5:\"Voces\";a:2:{s:8:\"variants\";a:1:{i:0;a:2:{s:2:\"id\";s:3:\"400\";s:4:\"name\";s:10:\"Normal 400\";}}s:7:\"subsets\";a:2:{i:0;a:2:{s:2:\"id\";s:9:\"latin-ext\";s:4:\"name\";s:14:\"Latin Extended\";}i:1;a:2:{s:2:\"id\";s:5:\"latin\";s:4:\"name\";s:5:\"Latin\";}}}s:7:\"Volkhov\";a:2:{s:8:\"variants\";a:4:{i:0;a:2:{s:2:\"id\";s:3:\"400\";s:4:\"name\";s:10:\"Normal 400\";}i:1;a:2:{s:2:\"id\";s:9:\"400italic\";s:4:\"name\";s:17:\"Normal 400 Italic\";}i:2;a:2:{s:2:\"id\";s:3:\"700\";s:4:\"name\";s:8:\"Bold 700\";}i:3;a:2:{s:2:\"id\";s:9:\"700italic\";s:4:\"name\";s:15:\"Bold 700 Italic\";}}s:7:\"subsets\";a:1:{i:0;a:2:{s:2:\"id\";s:5:\"latin\";s:4:\"name\";s:5:\"Latin\";}}}s:8:\"Vollkorn\";a:2:{s:8:\"variants\";a:4:{i:0;a:2:{s:2:\"id\";s:3:\"400\";s:4:\"name\";s:10:\"Normal 400\";}i:1;a:2:{s:2:\"id\";s:9:\"400italic\";s:4:\"name\";s:17:\"Normal 400 Italic\";}i:2;a:2:{s:2:\"id\";s:3:\"700\";s:4:\"name\";s:8:\"Bold 700\";}i:3;a:2:{s:2:\"id\";s:9:\"700italic\";s:4:\"name\";s:15:\"Bold 700 Italic\";}}s:7:\"subsets\";a:1:{i:0;a:2:{s:2:\"id\";s:5:\"latin\";s:4:\"name\";s:5:\"Latin\";}}}s:8:\"Voltaire\";a:2:{s:8:\"variants\";a:1:{i:0;a:2:{s:2:\"id\";s:3:\"400\";s:4:\"name\";s:10:\"Normal 400\";}}s:7:\"subsets\";a:1:{i:0;a:2:{s:2:\"id\";s:5:\"latin\";s:4:\"name\";s:5:\"Latin\";}}}s:23:\"Waiting for the Sunrise\";a:2:{s:8:\"variants\";a:1:{i:0;a:2:{s:2:\"id\";s:3:\"400\";s:4:\"name\";s:10:\"Normal 400\";}}s:7:\"subsets\";a:1:{i:0;a:2:{s:2:\"id\";s:5:\"latin\";s:4:\"name\";s:5:\"Latin\";}}}s:8:\"Wallpoet\";a:2:{s:8:\"variants\";a:1:{i:0;a:2:{s:2:\"id\";s:3:\"400\";s:4:\"name\";s:10:\"Normal 400\";}}s:7:\"subsets\";a:1:{i:0;a:2:{s:2:\"id\";s:5:\"latin\";s:4:\"name\";s:5:\"Latin\";}}}s:15:\"Walter Turncoat\";a:2:{s:8:\"variants\";a:1:{i:0;a:2:{s:2:\"id\";s:3:\"400\";s:4:\"name\";s:10:\"Normal 400\";}}s:7:\"subsets\";a:1:{i:0;a:2:{s:2:\"id\";s:5:\"latin\";s:4:\"name\";s:5:\"Latin\";}}}s:6:\"Warnes\";a:2:{s:8:\"variants\";a:1:{i:0;a:2:{s:2:\"id\";s:3:\"400\";s:4:\"name\";s:10:\"Normal 400\";}}s:7:\"subsets\";a:2:{i:0;a:2:{s:2:\"id\";s:9:\"latin-ext\";s:4:\"name\";s:14:\"Latin Extended\";}i:1;a:2:{s:2:\"id\";s:5:\"latin\";s:4:\"name\";s:5:\"Latin\";}}}s:9:\"Wellfleet\";a:2:{s:8:\"variants\";a:1:{i:0;a:2:{s:2:\"id\";s:3:\"400\";s:4:\"name\";s:10:\"Normal 400\";}}s:7:\"subsets\";a:2:{i:0;a:2:{s:2:\"id\";s:9:\"latin-ext\";s:4:\"name\";s:14:\"Latin Extended\";}i:1;a:2:{s:2:\"id\";s:5:\"latin\";s:4:\"name\";s:5:\"Latin\";}}}s:9:\"Wendy One\";a:2:{s:8:\"variants\";a:1:{i:0;a:2:{s:2:\"id\";s:3:\"400\";s:4:\"name\";s:10:\"Normal 400\";}}s:7:\"subsets\";a:2:{i:0;a:2:{s:2:\"id\";s:9:\"latin-ext\";s:4:\"name\";s:14:\"Latin Extended\";}i:1;a:2:{s:2:\"id\";s:5:\"latin\";s:4:\"name\";s:5:\"Latin\";}}}s:8:\"Wire One\";a:2:{s:8:\"variants\";a:1:{i:0;a:2:{s:2:\"id\";s:3:\"400\";s:4:\"name\";s:10:\"Normal 400\";}}s:7:\"subsets\";a:1:{i:0;a:2:{s:2:\"id\";s:5:\"latin\";s:4:\"name\";s:5:\"Latin\";}}}s:9:\"Work Sans\";a:2:{s:8:\"variants\";a:9:{i:0;a:2:{s:2:\"id\";s:3:\"100\";s:4:\"name\";s:15:\"Ultra-Light 100\";}i:1;a:2:{s:2:\"id\";s:3:\"200\";s:4:\"name\";s:9:\"Light 200\";}i:2;a:2:{s:2:\"id\";s:3:\"300\";s:4:\"name\";s:8:\"Book 300\";}i:3;a:2:{s:2:\"id\";s:3:\"400\";s:4:\"name\";s:10:\"Normal 400\";}i:4;a:2:{s:2:\"id\";s:3:\"500\";s:4:\"name\";s:10:\"Medium 500\";}i:5;a:2:{s:2:\"id\";s:3:\"600\";s:4:\"name\";s:13:\"Semi-Bold 600\";}i:6;a:2:{s:2:\"id\";s:3:\"700\";s:4:\"name\";s:8:\"Bold 700\";}i:7;a:2:{s:2:\"id\";s:3:\"800\";s:4:\"name\";s:14:\"Extra-Bold 800\";}i:8;a:2:{s:2:\"id\";s:3:\"900\";s:4:\"name\";s:14:\"Ultra-Bold 900\";}}s:7:\"subsets\";a:2:{i:0;a:2:{s:2:\"id\";s:9:\"latin-ext\";s:4:\"name\";s:14:\"Latin Extended\";}i:1;a:2:{s:2:\"id\";s:5:\"latin\";s:4:\"name\";s:5:\"Latin\";}}}s:17:\"Yanone Kaffeesatz\";a:2:{s:8:\"variants\";a:4:{i:0;a:2:{s:2:\"id\";s:3:\"200\";s:4:\"name\";s:9:\"Light 200\";}i:1;a:2:{s:2:\"id\";s:3:\"300\";s:4:\"name\";s:8:\"Book 300\";}i:2;a:2:{s:2:\"id\";s:3:\"400\";s:4:\"name\";s:10:\"Normal 400\";}i:3;a:2:{s:2:\"id\";s:3:\"700\";s:4:\"name\";s:8:\"Bold 700\";}}s:7:\"subsets\";a:2:{i:0;a:2:{s:2:\"id\";s:9:\"latin-ext\";s:4:\"name\";s:14:\"Latin Extended\";}i:1;a:2:{s:2:\"id\";s:5:\"latin\";s:4:\"name\";s:5:\"Latin\";}}}s:11:\"Yantramanav\";a:2:{s:8:\"variants\";a:6:{i:0;a:2:{s:2:\"id\";s:3:\"100\";s:4:\"name\";s:15:\"Ultra-Light 100\";}i:1;a:2:{s:2:\"id\";s:3:\"300\";s:4:\"name\";s:8:\"Book 300\";}i:2;a:2:{s:2:\"id\";s:3:\"400\";s:4:\"name\";s:10:\"Normal 400\";}i:3;a:2:{s:2:\"id\";s:3:\"500\";s:4:\"name\";s:10:\"Medium 500\";}i:4;a:2:{s:2:\"id\";s:3:\"700\";s:4:\"name\";s:8:\"Bold 700\";}i:5;a:2:{s:2:\"id\";s:3:\"900\";s:4:\"name\";s:14:\"Ultra-Bold 900\";}}s:7:\"subsets\";a:3:{i:0;a:2:{s:2:\"id\";s:9:\"latin-ext\";s:4:\"name\";s:14:\"Latin Extended\";}i:1;a:2:{s:2:\"id\";s:5:\"latin\";s:4:\"name\";s:5:\"Latin\";}i:2;a:2:{s:2:\"id\";s:10:\"devanagari\";s:4:\"name\";s:10:\"Devanagari\";}}}s:10:\"Yellowtail\";a:2:{s:8:\"variants\";a:1:{i:0;a:2:{s:2:\"id\";s:3:\"400\";s:4:\"name\";s:10:\"Normal 400\";}}s:7:\"subsets\";a:1:{i:0;a:2:{s:2:\"id\";s:5:\"latin\";s:4:\"name\";s:5:\"Latin\";}}}s:10:\"Yeseva One\";a:2:{s:8:\"variants\";a:1:{i:0;a:2:{s:2:\"id\";s:3:\"400\";s:4:\"name\";s:10:\"Normal 400\";}}s:7:\"subsets\";a:3:{i:0;a:2:{s:2:\"id\";s:9:\"latin-ext\";s:4:\"name\";s:14:\"Latin Extended\";}i:1;a:2:{s:2:\"id\";s:8:\"cyrillic\";s:4:\"name\";s:8:\"Cyrillic\";}i:2;a:2:{s:2:\"id\";s:5:\"latin\";s:4:\"name\";s:5:\"Latin\";}}}s:10:\"Yesteryear\";a:2:{s:8:\"variants\";a:1:{i:0;a:2:{s:2:\"id\";s:3:\"400\";s:4:\"name\";s:10:\"Normal 400\";}}s:7:\"subsets\";a:1:{i:0;a:2:{s:2:\"id\";s:5:\"latin\";s:4:\"name\";s:5:\"Latin\";}}}s:6:\"Zeyada\";a:2:{s:8:\"variants\";a:1:{i:0;a:2:{s:2:\"id\";s:3:\"400\";s:4:\"name\";s:10:\"Normal 400\";}}s:7:\"subsets\";a:1:{i:0;a:2:{s:2:\"id\";s:5:\"latin\";s:4:\"name\";s:5:\"Latin\";}}}}', 'no');
INSERT INTO `wp_options` (`option_id`, `option_name`, `option_value`, `autoload`) VALUES
(25256, 'fusion_supported_plugins_active', 'a:1:{i:0;s:5:\"WPCF7\";}', 'yes'),
(25257, 'fusion_dynamic_css_posts', 'a:47:{i:7;b:1;i:11;b:1;i:1182;b:1;i:919;b:1;i:1202;b:1;i:927;b:1;i:89;b:1;i:50;b:1;i:53;b:1;i:55;b:1;s:6:\"global\";b:1;i:361;b:1;i:1196;b:1;i:61;b:1;s:10:\"22-archive\";b:1;i:984;b:1;i:364;b:1;i:59;b:1;i:950;b:1;i:57;b:1;i:938;b:1;i:942;b:1;i:86;b:1;i:936;b:1;s:9:\"0-archive\";b:1;i:1201;b:1;i:1199;b:1;i:1;b:1;i:415;b:1;i:998;b:1;i:930;b:1;i:417;b:1;s:10:\"32-archive\";b:1;i:358;b:1;i:934;b:1;s:9:\"1-archive\";b:1;i:13;b:1;s:10:\"30-archive\";b:1;s:9:\"6-archive\";b:1;i:92;b:1;i:1121;b:1;s:9:\"3-archive\";b:1;s:9:\"5-archive\";b:1;s:9:\"4-archive\";b:1;s:9:\"7-archive\";b:1;s:9:\"2-archive\";b:1;i:1327;b:1;}', 'yes'),
(25258, 'fusion_dynamic_css_ids', 'a:47:{i:7;s:32:\"731e01f880fa836a24264eedbd95a0f3\";i:11;s:32:\"b24a1ea7a3bd53a3fce47c3ed9600a06\";i:1182;s:32:\"658392006187134c7c7cbbcec4c990b3\";i:919;s:32:\"02bcf5d539e080977aad8ce7a77fe230\";i:1202;s:32:\"02bcf5d539e080977aad8ce7a77fe230\";i:927;s:32:\"02bcf5d539e080977aad8ce7a77fe230\";i:89;s:32:\"cfcfcd4292e1fcdca282811f8b2acd08\";i:50;s:32:\"02bcf5d539e080977aad8ce7a77fe230\";i:53;s:32:\"02bcf5d539e080977aad8ce7a77fe230\";i:55;s:32:\"02bcf5d539e080977aad8ce7a77fe230\";s:6:\"global\";s:32:\"2927c8171df5b5fd0ff9bcdee3ceb065\";i:361;s:32:\"02bcf5d539e080977aad8ce7a77fe230\";i:1196;s:32:\"02bcf5d539e080977aad8ce7a77fe230\";i:61;s:32:\"02bcf5d539e080977aad8ce7a77fe230\";s:10:\"22-archive\";s:32:\"2927c8171df5b5fd0ff9bcdee3ceb065\";i:984;s:32:\"a7be5e20d32d752ac719db5478291cd8\";i:364;s:32:\"02bcf5d539e080977aad8ce7a77fe230\";i:59;s:32:\"02bcf5d539e080977aad8ce7a77fe230\";i:950;s:32:\"02bcf5d539e080977aad8ce7a77fe230\";i:57;s:32:\"02bcf5d539e080977aad8ce7a77fe230\";i:938;s:32:\"02bcf5d539e080977aad8ce7a77fe230\";i:942;s:32:\"02bcf5d539e080977aad8ce7a77fe230\";i:86;s:32:\"02bcf5d539e080977aad8ce7a77fe230\";i:936;s:32:\"02bcf5d539e080977aad8ce7a77fe230\";s:9:\"0-archive\";s:32:\"2e14d8e0183ab19398fdfdb9b090d0d3\";i:1201;s:32:\"cfcfcd4292e1fcdca282811f8b2acd08\";i:1199;s:32:\"02bcf5d539e080977aad8ce7a77fe230\";i:1;s:32:\"cfcfcd4292e1fcdca282811f8b2acd08\";i:415;s:32:\"02bcf5d539e080977aad8ce7a77fe230\";i:998;s:32:\"a7be5e20d32d752ac719db5478291cd8\";i:930;s:32:\"02bcf5d539e080977aad8ce7a77fe230\";i:417;s:32:\"cfcfcd4292e1fcdca282811f8b2acd08\";s:10:\"32-archive\";s:32:\"2927c8171df5b5fd0ff9bcdee3ceb065\";i:358;s:32:\"02bcf5d539e080977aad8ce7a77fe230\";i:934;s:32:\"02bcf5d539e080977aad8ce7a77fe230\";s:9:\"1-archive\";s:32:\"2927c8171df5b5fd0ff9bcdee3ceb065\";i:13;s:32:\"b84eabd886ea0806b5ba54c4c935e0a2\";s:10:\"30-archive\";s:32:\"2927c8171df5b5fd0ff9bcdee3ceb065\";s:9:\"6-archive\";s:32:\"2927c8171df5b5fd0ff9bcdee3ceb065\";i:92;s:32:\"02bcf5d539e080977aad8ce7a77fe230\";i:1121;s:32:\"b84eabd886ea0806b5ba54c4c935e0a2\";s:9:\"3-archive\";s:32:\"2927c8171df5b5fd0ff9bcdee3ceb065\";s:9:\"5-archive\";s:32:\"2927c8171df5b5fd0ff9bcdee3ceb065\";s:9:\"4-archive\";s:32:\"2927c8171df5b5fd0ff9bcdee3ceb065\";s:9:\"7-archive\";s:32:\"2927c8171df5b5fd0ff9bcdee3ceb065\";s:9:\"2-archive\";s:32:\"2e14d8e0183ab19398fdfdb9b090d0d3\";i:1327;s:32:\"1517800fe20b8b53da9d1c244ebee570\";}', 'yes');
INSERT INTO `wp_options` (`option_id`, `option_name`, `option_value`, `autoload`) VALUES
(25259, 'fusion_options', 'a:935:{s:8:\"last_tab\";s:0:\"\";s:6:\"layout\";s:4:\"wide\";s:10:\"site_width\";s:6:\"1100px\";s:13:\"margin_offset\";a:2:{s:3:\"top\";s:3:\"0px\";s:6:\"bottom\";s:3:\"0px\";}s:13:\"scroll_offset\";s:4:\"full\";s:18:\"boxed_modal_shadow\";s:0:\"\";s:12:\"main_padding\";a:2:{s:3:\"top\";s:4:\"55px\";s:6:\"bottom\";s:4:\"40px\";}s:16:\"hundredp_padding\";s:4:\"30px\";s:13:\"sidebar_width\";s:3:\"23%\";s:14:\"sidebar_gutter\";s:4:\"80px\";s:17:\"sidebar_2_1_width\";s:3:\"21%\";s:17:\"sidebar_2_2_width\";s:3:\"21%\";s:19:\"dual_sidebar_gutter\";s:4:\"40px\";s:10:\"responsive\";s:1:\"1\";s:21:\"grid_main_break_point\";s:4:\"1000\";s:23:\"side_header_break_point\";s:4:\"1023\";s:19:\"content_break_point\";s:3:\"800\";s:19:\"sidebar_break_point\";s:3:\"800\";s:11:\"mobile_zoom\";s:1:\"1\";s:21:\"typography_responsive\";s:1:\"1\";s:22:\"typography_sensitivity\";d:0.54;s:17:\"typography_factor\";s:4:\"1.50\";s:13:\"primary_color\";s:7:\"#778dae\";s:13:\"color_palette\";a:15:{s:6:\"color1\";a:2:{s:5:\"color\";s:19:\"rgba(255,255,255,1)\";s:5:\"label\";s:7:\"Color 1\";}s:6:\"color2\";a:2:{s:5:\"color\";s:19:\"rgba(246,246,246,1)\";s:5:\"label\";s:7:\"Color 2\";}s:6:\"color3\";a:2:{s:5:\"color\";s:19:\"rgba(235,234,234,1)\";s:5:\"label\";s:7:\"Color 3\";}s:6:\"color4\";a:2:{s:5:\"color\";s:19:\"rgba(224,222,222,1)\";s:5:\"label\";s:7:\"Color 4\";}s:6:\"color5\";a:2:{s:5:\"color\";s:18:\"rgba(160,206,78,1)\";s:5:\"label\";s:7:\"Color 5\";}s:6:\"color6\";a:2:{s:5:\"color\";s:19:\"rgba(119,141,174,1)\";s:5:\"label\";s:7:\"Color 6\";}s:6:\"color7\";a:2:{s:5:\"color\";s:19:\"rgba(116,116,116,1)\";s:5:\"label\";s:7:\"Color 7\";}s:6:\"color8\";a:2:{s:5:\"color\";s:16:\"rgba(51,51,51,1)\";s:5:\"label\";s:7:\"Color 8\";}s:15:\"custom_color_10\";a:2:{s:5:\"color\";s:13:\"rgba(0,0,0,1)\";s:5:\"label\";s:9:\"Custom 10\";}s:15:\"custom_color_11\";a:2:{s:5:\"color\";s:21:\"rgba(235,234,234,0.8)\";s:5:\"label\";s:9:\"Custom 11\";}s:15:\"custom_color_12\";a:2:{s:5:\"color\";s:19:\"rgba(101,188,123,1)\";s:5:\"label\";s:9:\"Custom 12\";}s:15:\"custom_color_13\";a:2:{s:5:\"color\";s:19:\"rgba(248,248,248,1)\";s:5:\"label\";s:9:\"Custom 13\";}s:15:\"custom_color_14\";a:2:{s:5:\"color\";s:19:\"rgba(249,249,249,1)\";s:5:\"label\";s:9:\"Custom 14\";}s:15:\"custom_color_15\";a:2:{s:5:\"color\";s:16:\"rgba(54,56,57,1)\";s:5:\"label\";s:9:\"Custom 15\";}s:15:\"custom_color_16\";a:2:{s:5:\"color\";s:19:\"rgba(232,232,232,1)\";s:5:\"label\";s:9:\"Custom 16\";}}s:15:\"header_position\";s:3:\"top\";s:13:\"header_layout\";s:2:\"v3\";s:15:\"slider_position\";s:5:\"below\";s:19:\"header_left_content\";s:12:\"contact_info\";s:20:\"header_right_content\";s:10:\"navigation\";s:17:\"header_v4_content\";s:18:\"tagline_and_search\";s:13:\"header_number\";s:25:\"Call Us Today! 0317656046\";s:12:\"header_email\";s:15:\"info@msla.co.za\";s:14:\"header_tagline\";s:19:\"Insert Tagline Here\";s:18:\"header_banner_code\";s:0:\"\";s:15:\"header_bg_image\";a:5:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";s:6:\"height\";s:0:\"\";s:5:\"width\";s:0:\"\";s:9:\"thumbnail\";s:0:\"\";}s:14:\"header_bg_full\";s:1:\"0\";s:18:\"header_bg_parallax\";s:1:\"1\";s:16:\"header_bg_repeat\";s:6:\"repeat\";s:17:\"side_header_width\";s:3:\"280\";s:14:\"header_padding\";a:4:{s:3:\"top\";s:3:\"0px\";s:5:\"right\";s:3:\"0px\";s:6:\"bottom\";s:3:\"0px\";s:4:\"left\";s:3:\"0px\";}s:13:\"header_shadow\";s:1:\"0\";s:16:\"header_100_width\";s:1:\"0\";s:15:\"header_bg_color\";s:7:\"#7c8bae\";s:23:\"archive_header_bg_color\";s:16:\"rgb(255,255,255)\";s:19:\"header_border_color\";s:7:\"#778dae\";s:19:\"header_top_bg_color\";s:7:\"#778dae\";s:17:\"tagline_font_size\";s:4:\"16px\";s:18:\"tagline_font_color\";s:7:\"#747474\";s:13:\"header_sticky\";s:1:\"1\";s:20:\"header_sticky_tablet\";s:1:\"0\";s:20:\"header_sticky_mobile\";s:1:\"0\";s:23:\"header_sticky_shrinkage\";s:1:\"1\";s:26:\"header_sticky_type2_layout\";s:13:\"menu_and_logo\";s:20:\"header_sticky_shadow\";s:1:\"1\";s:22:\"header_sticky_bg_color\";s:7:\"#778dae\";s:24:\"header_sticky_menu_color\";s:7:\"#ffffff\";s:25:\"header_sticky_nav_padding\";s:2:\"45\";s:27:\"header_sticky_nav_font_size\";s:4:\"18px\";s:10:\"nav_height\";s:3:\"122\";s:20:\"menu_highlight_style\";s:9:\"bottombar\";s:25:\"menu_highlight_background\";s:7:\"#65bc7b\";s:15:\"menu_arrow_size\";a:2:{s:5:\"width\";s:4:\"23px\";s:6:\"height\";s:4:\"12px\";}s:20:\"nav_highlight_border\";s:1:\"0\";s:11:\"nav_padding\";s:2:\"45\";s:18:\"mobile_nav_padding\";s:2:\"25\";s:15:\"megamenu_shadow\";s:1:\"1\";s:28:\"main_menu_sub_menu_animation\";s:4:\"fade\";s:29:\"dropdown_menu_top_border_size\";s:1:\"3\";s:19:\"dropdown_menu_width\";s:3:\"170\";s:34:\"mainmenu_dropdown_vertical_padding\";s:1:\"7\";s:33:\"mainmenu_dropdown_display_divider\";s:1:\"1\";s:31:\"menu_display_dropdown_indicator\";s:4:\"none\";s:20:\"main_nav_search_icon\";s:1:\"0\";s:20:\"main_nav_icon_circle\";s:1:\"0\";s:25:\"main_nav_highlight_radius\";s:3:\"0px\";s:17:\"menu_sub_bg_color\";s:7:\"#f2efef\";s:19:\"menu_bg_hover_color\";s:7:\"#f8f8f8\";s:18:\"menu_sub_sep_color\";s:7:\"#607d8b\";s:17:\"menu_h45_bg_color\";s:7:\"#FFFFFF\";s:14:\"nav_typography\";a:10:{s:11:\"font-family\";s:9:\"Quicksand\";s:12:\"font-options\";s:0:\"\";s:6:\"google\";s:1:\"1\";s:11:\"font-backup\";s:28:\"Arial, Helvetica, sans-serif\";s:11:\"font-weight\";s:7:\"regular\";s:10:\"font-style\";s:0:\"\";s:7:\"subsets\";s:5:\"latin\";s:9:\"font-size\";s:4:\"24px\";s:14:\"letter-spacing\";s:3:\"0px\";s:5:\"color\";s:7:\"#e2cda7\";}s:15:\"menu_text_align\";s:4:\"left\";s:22:\"menu_hover_first_color\";s:7:\"#ffffff\";s:14:\"menu_sub_color\";s:7:\"#333333\";s:22:\"nav_dropdown_font_size\";s:4:\"13px\";s:18:\"side_nav_font_size\";s:4:\"14px\";s:26:\"flyout_menu_icon_font_size\";s:4:\"20px\";s:24:\"flyout_nav_icons_padding\";s:2:\"45\";s:22:\"flyout_menu_icon_color\";s:7:\"#333333\";s:28:\"flyout_menu_icon_hover_color\";s:7:\"#a0ce4e\";s:28:\"flyout_menu_background_color\";s:22:\"rgba(255,255,255,0.95)\";s:21:\"flyout_menu_direction\";s:4:\"fade\";s:24:\"flyout_menu_item_padding\";s:2:\"30\";s:23:\"topmenu_dropwdown_width\";s:3:\"100\";s:29:\"header_top_first_border_color\";s:7:\"#607d8b\";s:23:\"header_top_sub_bg_color\";s:7:\"#ffffff\";s:30:\"header_top_menu_bg_hover_color\";s:7:\"#fafafa\";s:29:\"header_top_menu_sub_sep_color\";s:7:\"#03a9f4\";s:14:\"snav_font_size\";s:4:\"12px\";s:11:\"sec_menu_lh\";s:4:\"40px\";s:10:\"snav_color\";s:7:\"#ffffff\";s:25:\"header_top_menu_sub_color\";s:7:\"#747474\";s:31:\"header_top_menu_sub_hover_color\";s:7:\"#333333\";s:18:\"mobile_menu_design\";s:7:\"classic\";s:28:\"mobile_menu_icons_top_margin\";s:1:\"0\";s:22:\"mobile_menu_nav_height\";s:2:\"35\";s:27:\"mobile_nav_submenu_slideout\";s:1:\"1\";s:18:\"mobile_menu_search\";s:1:\"0\";s:29:\"mobile_menu_submenu_indicator\";s:1:\"1\";s:22:\"mobile_header_bg_color\";s:16:\"rgb(255,255,255)\";s:30:\"mobile_archive_header_bg_color\";s:16:\"rgb(255,255,255)\";s:28:\"mobile_menu_background_color\";s:7:\"#f9f9f9\";s:23:\"mobile_menu_hover_color\";s:7:\"#f6f6f6\";s:24:\"mobile_menu_border_color\";s:7:\"#dadada\";s:24:\"mobile_menu_toggle_color\";s:7:\"#dadada\";s:22:\"mobile_menu_typography\";a:11:{s:11:\"font-family\";s:7:\"PT Sans\";s:12:\"font-options\";s:0:\"\";s:6:\"google\";s:1:\"1\";s:11:\"font-backup\";s:0:\"\";s:11:\"font-weight\";s:3:\"400\";s:10:\"font-style\";s:0:\"\";s:7:\"subsets\";s:0:\"\";s:9:\"font-size\";s:4:\"12px\";s:11:\"line-height\";s:4:\"35px\";s:14:\"letter-spacing\";s:0:\"\";s:5:\"color\";s:7:\"#333333\";}s:28:\"mobile_menu_font_hover_color\";s:7:\"#333333\";s:22:\"mobile_menu_text_align\";s:4:\"left\";s:14:\"megamenu_width\";s:12:\"custom_width\";s:18:\"megamenu_max_width\";s:4:\"1100\";s:31:\"megamenu_interior_content_width\";s:14:\"viewport_width\";s:19:\"megamenu_title_size\";s:4:\"18px\";s:30:\"megamenu_item_vertical_padding\";s:1:\"5\";s:29:\"megamenu_item_display_divider\";s:1:\"0\";s:18:\"menu_icon_position\";s:4:\"left\";s:14:\"menu_icon_size\";s:2:\"28\";s:15:\"menu_icon_color\";s:7:\"#e2cda7\";s:21:\"menu_icon_hover_color\";s:7:\"#ffffff\";s:19:\"menu_thumbnail_size\";a:2:{s:5:\"width\";s:4:\"26px\";s:6:\"height\";s:4:\"14px\";}s:14:\"logo_alignment\";s:4:\"left\";s:11:\"logo_margin\";a:4:{s:3:\"top\";s:4:\"31px\";s:5:\"right\";s:3:\"0px\";s:6:\"bottom\";s:4:\"31px\";s:4:\"left\";s:3:\"0px\";}s:15:\"logo_background\";s:1:\"0\";s:21:\"logo_background_color\";s:7:\"#65bc7b\";s:16:\"logo_custom_link\";s:0:\"\";s:4:\"logo\";a:5:{s:3:\"url\";s:65:\"http://msla.co.za/lodge/wp-content/uploads/2016/10/SMALL-LOGO.png\";s:2:\"id\";s:0:\"\";s:6:\"height\";s:2:\"60\";s:5:\"width\";s:3:\"205\";s:9:\"thumbnail\";s:0:\"\";}s:11:\"logo_retina\";a:5:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";s:6:\"height\";s:0:\"\";s:5:\"width\";s:0:\"\";s:9:\"thumbnail\";s:0:\"\";}s:18:\"sticky_header_logo\";a:5:{s:3:\"url\";s:67:\"http://msla.co.za/lodge/wp-content/uploads/2016/10/SMALL-LOGO-1.png\";s:2:\"id\";s:0:\"\";s:6:\"height\";s:2:\"60\";s:5:\"width\";s:3:\"205\";s:9:\"thumbnail\";s:0:\"\";}s:25:\"sticky_header_logo_retina\";a:5:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";s:6:\"height\";s:0:\"\";s:5:\"width\";s:0:\"\";s:9:\"thumbnail\";s:0:\"\";}s:11:\"mobile_logo\";a:5:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";s:6:\"height\";s:0:\"\";s:5:\"width\";s:0:\"\";s:9:\"thumbnail\";s:0:\"\";}s:18:\"mobile_logo_retina\";a:5:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";s:6:\"height\";s:0:\"\";s:5:\"width\";s:0:\"\";s:9:\"thumbnail\";s:0:\"\";}s:14:\"page_title_bar\";s:15:\"bar_and_content\";s:19:\"page_title_bar_text\";s:1:\"1\";s:20:\"page_title_100_width\";s:1:\"0\";s:17:\"page_title_height\";s:4:\"87px\";s:24:\"page_title_mobile_height\";s:4:\"70px\";s:19:\"page_title_bg_color\";s:7:\"#F6F6F6\";s:23:\"page_title_border_color\";s:7:\"#d2d3d4\";s:20:\"page_title_font_size\";s:4:\"18px\";s:22:\"page_title_line_height\";s:4:\"1.41\";s:16:\"page_title_color\";s:7:\"#333333\";s:30:\"page_title_subheader_font_size\";s:4:\"14px\";s:26:\"page_title_subheader_color\";s:7:\"#333333\";s:20:\"page_title_alignment\";s:4:\"left\";s:13:\"page_title_bg\";a:5:{s:3:\"url\";s:85:\"http://localhost/assagaylodge/wp-content/themes/Avada/assets/images/page_title_bg.png\";s:2:\"id\";s:0:\"\";s:6:\"height\";s:0:\"\";s:5:\"width\";s:0:\"\";s:9:\"thumbnail\";s:0:\"\";}s:20:\"page_title_bg_retina\";a:5:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";s:6:\"height\";s:0:\"\";s:5:\"width\";s:0:\"\";s:9:\"thumbnail\";s:0:\"\";}s:18:\"page_title_bg_full\";s:1:\"0\";s:22:\"page_title_bg_parallax\";s:1:\"0\";s:17:\"page_title_fading\";s:1:\"0\";s:17:\"page_title_bar_bs\";s:11:\"breadcrumbs\";s:17:\"breadcrumb_mobile\";s:1:\"0\";s:16:\"breacrumb_prefix\";s:0:\"\";s:20:\"breadcrumb_separator\";s:1:\"/\";s:21:\"breadcrumbs_font_size\";s:4:\"10px\";s:22:\"breadcrumbs_text_color\";s:7:\"#333333\";s:28:\"breadcrumbs_text_hover_color\";s:7:\"#333333\";s:26:\"breadcrumb_show_categories\";s:1:\"1\";s:33:\"breadcrumb_show_post_type_archive\";s:1:\"0\";s:18:\"slidingbar_widgets\";s:1:\"0\";s:25:\"mobile_slidingbar_widgets\";s:1:\"1\";s:23:\"slidingbar_open_on_load\";s:1:\"0\";s:19:\"slidingbar_position\";s:3:\"top\";s:16:\"slidingbar_width\";s:5:\"300px\";s:17:\"slidingbar_sticky\";s:1:\"0\";s:26:\"slidingbar_widgets_columns\";s:1:\"2\";s:27:\"slidingbar_column_alignment\";s:7:\"stacked\";s:26:\"slidingbar_content_padding\";a:4:{s:3:\"top\";s:4:\"60px\";s:5:\"right\";s:4:\"30px\";s:6:\"bottom\";s:4:\"60px\";s:4:\"left\";s:4:\"30px\";}s:24:\"slidingbar_content_align\";s:4:\"left\";s:23:\"slidingbar_toggle_style\";s:8:\"triangle\";s:19:\"slidingbar_bg_color\";s:7:\"#363839\";s:24:\"slidingbar_divider_color\";s:7:\"#282A2B\";s:28:\"slidingbar_toggle_icon_color\";s:7:\"#ffffff\";s:20:\"slidingbar_font_size\";s:4:\"13px\";s:25:\"slidingbar_headings_color\";s:7:\"#DDDDDD\";s:21:\"slidingbar_text_color\";s:7:\"#8C8989\";s:21:\"slidingbar_link_color\";s:7:\"#BFBFBF\";s:27:\"slidingbar_link_color_hover\";s:7:\"#a0ce4e\";s:17:\"slidingbar_border\";s:1:\"0\";s:14:\"footer_widgets\";s:1:\"1\";s:22:\"footer_widgets_columns\";s:1:\"4\";s:29:\"footer_widgets_center_content\";s:1:\"0\";s:22:\"footer_special_effects\";s:4:\"none\";s:16:\"footer_copyright\";s:1:\"1\";s:31:\"footer_copyright_center_content\";s:1:\"0\";s:11:\"footer_text\";s:57:\"Copyright 1998 Assagay Forest Lodge | All Rights Reserved\";s:16:\"footerw_bg_image\";a:5:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";s:6:\"height\";s:0:\"\";s:5:\"width\";s:0:\"\";s:9:\"thumbnail\";s:0:\"\";}s:15:\"footerw_bg_full\";s:1:\"0\";s:17:\"footerw_bg_repeat\";s:6:\"repeat\";s:14:\"footerw_bg_pos\";s:13:\"center center\";s:16:\"footer_100_width\";s:1:\"0\";s:19:\"footer_area_padding\";a:4:{s:3:\"top\";s:4:\"43px\";s:5:\"right\";s:3:\"0px\";s:6:\"bottom\";s:4:\"40px\";s:4:\"left\";s:3:\"0px\";}s:15:\"footer_bg_color\";s:7:\"#363839\";s:18:\"footer_border_size\";s:2:\"12\";s:19:\"footer_border_color\";s:7:\"#e9eaee\";s:19:\"footer_divider_line\";s:1:\"0\";s:24:\"footer_divider_line_size\";s:1:\"1\";s:25:\"footer_divider_line_style\";s:5:\"solid\";s:20:\"footer_divider_color\";s:7:\"#505152\";s:22:\"footer_widgets_padding\";s:4:\"15px\";s:17:\"copyright_padding\";a:2:{s:3:\"top\";s:4:\"18px\";s:6:\"bottom\";s:4:\"16px\";}s:18:\"copyright_bg_color\";s:7:\"#282a2b\";s:21:\"copyright_border_size\";s:1:\"1\";s:22:\"copyright_border_color\";s:7:\"#4b4c4d\";s:26:\"footer_headings_typography\";a:11:{s:11:\"font-family\";s:7:\"PT Sans\";s:12:\"font-options\";s:0:\"\";s:6:\"google\";s:1:\"1\";s:11:\"font-backup\";s:28:\"Arial, Helvetica, sans-serif\";s:11:\"font-weight\";s:3:\"400\";s:10:\"font-style\";s:0:\"\";s:7:\"subsets\";s:0:\"\";s:9:\"font-size\";s:4:\"13px\";s:11:\"line-height\";s:0:\"\";s:14:\"letter-spacing\";s:0:\"\";s:5:\"color\";s:7:\"#DDDDDD\";}s:17:\"footer_text_color\";s:7:\"#8C8989\";s:17:\"footer_link_color\";s:7:\"#BFBFBF\";s:23:\"footer_link_color_hover\";s:7:\"#a0ce4e\";s:20:\"copyright_text_color\";s:7:\"#8C8989\";s:20:\"copyright_link_color\";s:7:\"#BFBFBF\";s:26:\"copyright_link_color_hover\";s:7:\"#a0ce4e\";s:19:\"copyright_font_size\";s:4:\"12px\";s:24:\"responsive_sidebar_order\";s:25:\"content,sidebar,sidebar-2\";s:14:\"sidebar_sticky\";s:4:\"none\";s:15:\"sidebar_padding\";s:3:\"0px\";s:16:\"sidebar_bg_color\";s:19:\"rgba(255,255,255,0)\";s:23:\"sidebar_widget_bg_color\";s:19:\"rgba(255,255,255,0)\";s:15:\"sidew_font_size\";s:4:\"13px\";s:21:\"sidebar_heading_color\";s:7:\"#333333\";s:13:\"pages_sidebar\";s:4:\"None\";s:15:\"pages_sidebar_2\";s:4:\"None\";s:20:\"pages_global_sidebar\";s:1:\"0\";s:19:\"default_sidebar_pos\";s:5:\"Right\";s:17:\"portfolio_sidebar\";s:4:\"None\";s:19:\"portfolio_sidebar_2\";s:4:\"None\";s:24:\"portfolio_global_sidebar\";s:1:\"0\";s:26:\"portfolio_sidebar_position\";s:5:\"Right\";s:25:\"portfolio_archive_sidebar\";s:4:\"None\";s:27:\"portfolio_archive_sidebar_2\";s:4:\"None\";s:13:\"posts_sidebar\";s:4:\"None\";s:15:\"posts_sidebar_2\";s:4:\"None\";s:20:\"posts_global_sidebar\";s:1:\"0\";s:21:\"blog_sidebar_position\";s:5:\"Right\";s:20:\"blog_archive_sidebar\";s:4:\"None\";s:22:\"blog_archive_sidebar_2\";s:4:\"None\";s:14:\"search_sidebar\";s:12:\"Blog Sidebar\";s:16:\"search_sidebar_2\";s:4:\"None\";s:23:\"search_sidebar_position\";s:5:\"Right\";s:8:\"bg_image\";a:5:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";s:6:\"height\";s:0:\"\";s:5:\"width\";s:0:\"\";s:9:\"thumbnail\";s:0:\"\";}s:7:\"bg_full\";s:1:\"0\";s:9:\"bg_repeat\";s:6:\"repeat\";s:8:\"bg_color\";s:7:\"#ffffff\";s:17:\"bg_pattern_option\";s:1:\"0\";s:10:\"bg_pattern\";s:8:\"pattern1\";s:16:\"content_bg_color\";s:7:\"#ffffff\";s:16:\"content_bg_image\";a:5:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";s:6:\"height\";s:0:\"\";s:5:\"width\";s:0:\"\";s:9:\"thumbnail\";s:0:\"\";}s:15:\"content_bg_full\";s:1:\"0\";s:17:\"content_bg_repeat\";s:6:\"repeat\";s:15:\"body_typography\";a:11:{s:11:\"font-family\";s:9:\"Quicksand\";s:12:\"font-options\";s:0:\"\";s:6:\"google\";s:1:\"1\";s:11:\"font-backup\";s:28:\"Arial, Helvetica, sans-serif\";s:11:\"font-weight\";s:3:\"400\";s:10:\"font-style\";s:0:\"\";s:7:\"subsets\";s:0:\"\";s:9:\"font-size\";s:4:\"14px\";s:11:\"line-height\";s:4:\"1.54\";s:14:\"letter-spacing\";s:0:\"\";s:5:\"color\";s:7:\"#747474\";}s:10:\"link_color\";s:7:\"#333333\";s:13:\"h1_typography\";a:13:{s:11:\"font-family\";s:9:\"Quicksand\";s:12:\"font-options\";s:0:\"\";s:6:\"google\";s:1:\"1\";s:11:\"font-backup\";s:28:\"Arial, Helvetica, sans-serif\";s:11:\"font-weight\";s:7:\"regular\";s:10:\"font-style\";s:0:\"\";s:7:\"subsets\";s:5:\"latin\";s:9:\"font-size\";s:4:\"34px\";s:11:\"line-height\";s:4:\"1.41\";s:14:\"letter-spacing\";s:0:\"\";s:10:\"margin-top\";s:6:\"0.67em\";s:13:\"margin-bottom\";s:6:\"0.67em\";s:5:\"color\";s:7:\"#333333\";}s:13:\"h2_typography\";a:13:{s:11:\"font-family\";s:9:\"Quicksand\";s:12:\"font-options\";s:0:\"\";s:6:\"google\";s:1:\"1\";s:11:\"font-backup\";s:28:\"Arial, Helvetica, sans-serif\";s:11:\"font-weight\";s:7:\"regular\";s:10:\"font-style\";s:0:\"\";s:7:\"subsets\";s:5:\"latin\";s:9:\"font-size\";s:4:\"28px\";s:11:\"line-height\";s:3:\"1.5\";s:14:\"letter-spacing\";s:0:\"\";s:10:\"margin-top\";s:3:\"0em\";s:13:\"margin-bottom\";s:5:\"1.1em\";s:5:\"color\";s:7:\"#333333\";}s:13:\"h3_typography\";a:13:{s:11:\"font-family\";s:9:\"Quicksand\";s:12:\"font-options\";s:0:\"\";s:6:\"google\";s:1:\"1\";s:11:\"font-backup\";s:28:\"Arial, Helvetica, sans-serif\";s:11:\"font-weight\";s:7:\"regular\";s:10:\"font-style\";s:0:\"\";s:7:\"subsets\";s:5:\"latin\";s:9:\"font-size\";s:4:\"18px\";s:11:\"line-height\";s:3:\"1.5\";s:14:\"letter-spacing\";s:0:\"\";s:10:\"margin-top\";s:3:\"1em\";s:13:\"margin-bottom\";s:3:\"1em\";s:5:\"color\";s:7:\"#333333\";}s:13:\"h4_typography\";a:13:{s:11:\"font-family\";s:10:\"Antic Slab\";s:12:\"font-options\";s:0:\"\";s:6:\"google\";s:1:\"1\";s:11:\"font-backup\";s:28:\"Arial, Helvetica, sans-serif\";s:11:\"font-weight\";s:7:\"regular\";s:10:\"font-style\";s:0:\"\";s:7:\"subsets\";s:5:\"latin\";s:9:\"font-size\";s:4:\"13px\";s:11:\"line-height\";s:4:\"1.54\";s:14:\"letter-spacing\";s:0:\"\";s:10:\"margin-top\";s:6:\"1.33em\";s:13:\"margin-bottom\";s:6:\"1.33em\";s:5:\"color\";s:7:\"#333333\";}s:13:\"h5_typography\";a:13:{s:11:\"font-family\";s:10:\"Antic Slab\";s:12:\"font-options\";s:0:\"\";s:6:\"google\";s:1:\"1\";s:11:\"font-backup\";s:28:\"Arial, Helvetica, sans-serif\";s:11:\"font-weight\";s:7:\"regular\";s:10:\"font-style\";s:0:\"\";s:7:\"subsets\";s:5:\"latin\";s:9:\"font-size\";s:4:\"12px\";s:11:\"line-height\";s:3:\"1.5\";s:14:\"letter-spacing\";s:0:\"\";s:10:\"margin-top\";s:6:\"1.67em\";s:13:\"margin-bottom\";s:6:\"1.67em\";s:5:\"color\";s:7:\"#333333\";}s:13:\"h6_typography\";a:13:{s:11:\"font-family\";s:10:\"Antic Slab\";s:12:\"font-options\";s:0:\"\";s:6:\"google\";s:1:\"1\";s:11:\"font-backup\";s:28:\"Arial, Helvetica, sans-serif\";s:11:\"font-weight\";s:7:\"regular\";s:10:\"font-style\";s:0:\"\";s:7:\"subsets\";s:5:\"latin\";s:9:\"font-size\";s:4:\"11px\";s:11:\"line-height\";s:4:\"1.55\";s:14:\"letter-spacing\";s:0:\"\";s:10:\"margin-top\";s:6:\"2.33em\";s:13:\"margin-bottom\";s:6:\"2.33em\";s:5:\"color\";s:7:\"#333333\";}s:21:\"post_title_typography\";a:11:{s:11:\"font-family\";s:10:\"Antic Slab\";s:12:\"font-options\";s:0:\"\";s:6:\"google\";s:1:\"1\";s:11:\"font-backup\";s:28:\"Arial, Helvetica, sans-serif\";s:11:\"font-weight\";s:7:\"regular\";s:10:\"font-style\";s:0:\"\";s:7:\"subsets\";s:5:\"latin\";s:9:\"font-size\";s:4:\"18px\";s:11:\"line-height\";s:4:\"27px\";s:14:\"letter-spacing\";s:0:\"\";s:5:\"color\";s:7:\"#333333\";}s:29:\"post_titles_extras_typography\";a:11:{s:11:\"font-family\";s:10:\"Antic Slab\";s:12:\"font-options\";s:0:\"\";s:6:\"google\";s:1:\"1\";s:11:\"font-backup\";s:28:\"Arial, Helvetica, sans-serif\";s:11:\"font-weight\";s:7:\"regular\";s:10:\"font-style\";s:0:\"\";s:7:\"subsets\";s:5:\"latin\";s:9:\"font-size\";s:4:\"18px\";s:11:\"line-height\";s:3:\"1.5\";s:14:\"letter-spacing\";s:0:\"\";s:5:\"color\";s:7:\"#333333\";}s:12:\"custom_fonts\";a:7:{s:25:\"fusionredux_repeater_data\";a:1:{i:0;a:1:{s:5:\"title\";s:0:\"\";}}s:4:\"name\";a:1:{i:0;s:0:\"\";}s:5:\"woff2\";a:1:{i:0;a:5:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";s:6:\"height\";s:0:\"\";s:5:\"width\";s:0:\"\";s:9:\"thumbnail\";s:0:\"\";}}s:4:\"woff\";a:1:{i:0;a:5:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";s:6:\"height\";s:0:\"\";s:5:\"width\";s:0:\"\";s:9:\"thumbnail\";s:0:\"\";}}s:3:\"ttf\";a:1:{i:0;a:5:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";s:6:\"height\";s:0:\"\";s:5:\"width\";s:0:\"\";s:9:\"thumbnail\";s:0:\"\";}}s:3:\"eot\";a:1:{i:0;a:5:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";s:6:\"height\";s:0:\"\";s:5:\"width\";s:0:\"\";s:9:\"thumbnail\";s:0:\"\";}}s:3:\"svg\";a:1:{i:0;a:5:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";s:6:\"height\";s:0:\"\";s:5:\"width\";s:0:\"\";s:9:\"thumbnail\";s:0:\"\";}}}s:19:\"blog_page_title_bar\";s:15:\"bar_and_content\";s:24:\"blog_show_page_title_bar\";s:15:\"bar_and_content\";s:10:\"blog_title\";s:4:\"Blog\";s:13:\"blog_subtitle\";s:0:\"\";s:11:\"blog_layout\";s:5:\"large\";s:19:\"blog_archive_layout\";s:5:\"large\";s:20:\"blog_pagination_type\";s:10:\"pagination\";s:36:\"blog_load_more_posts_button_bg_color\";s:7:\"#ebeaea\";s:25:\"blog_archive_grid_columns\";s:1:\"3\";s:32:\"blog_archive_grid_column_spacing\";s:2:\"40\";s:18:\"blog_equal_heights\";s:1:\"0\";s:25:\"blog_archive_grid_padding\";a:4:{s:3:\"top\";s:4:\"30px\";s:5:\"right\";s:4:\"25px\";s:6:\"bottom\";s:4:\"20px\";s:4:\"left\";s:4:\"25px\";}s:21:\"blog_layout_alignment\";s:0:\"\";s:14:\"content_length\";s:7:\"excerpt\";s:19:\"excerpt_length_blog\";s:2:\"55\";s:18:\"strip_html_excerpt\";s:1:\"1\";s:15:\"featured_images\";s:1:\"1\";s:15:\"dates_box_color\";s:7:\"#eef0f2\";s:32:\"alternate_date_format_month_year\";s:4:\"m, Y\";s:25:\"alternate_date_format_day\";s:1:\"j\";s:20:\"timeline_date_format\";s:3:\"F Y\";s:14:\"blog_width_100\";s:1:\"0\";s:22:\"featured_images_single\";s:1:\"1\";s:11:\"blog_pn_nav\";s:1:\"1\";s:15:\"blog_post_title\";s:5:\"below\";s:23:\"blog_post_meta_position\";s:13:\"below_article\";s:18:\"social_sharing_box\";s:1:\"1\";s:11:\"author_info\";s:1:\"1\";s:13:\"related_posts\";s:1:\"0\";s:13:\"blog_comments\";s:1:\"1\";s:9:\"post_meta\";s:1:\"1\";s:16:\"post_meta_author\";s:1:\"1\";s:14:\"post_meta_date\";s:1:\"1\";s:14:\"post_meta_cats\";s:1:\"1\";s:18:\"post_meta_comments\";s:1:\"1\";s:14:\"post_meta_read\";s:1:\"1\";s:14:\"post_meta_tags\";s:1:\"0\";s:14:\"meta_font_size\";s:4:\"12px\";s:11:\"date_format\";s:7:\"F jS, Y\";s:24:\"portfolio_archive_layout\";s:4:\"grid\";s:37:\"portfolio_archive_featured_image_size\";s:7:\"cropped\";s:25:\"portfolio_archive_columns\";s:1:\"1\";s:32:\"portfolio_archive_column_spacing\";s:2:\"12\";s:23:\"portfolio_equal_heights\";s:1:\"0\";s:42:\"portfolio_archive_one_column_text_position\";s:7:\"floated\";s:23:\"portfolio_archive_items\";s:2:\"10\";s:29:\"portfolio_archive_text_layout\";s:7:\"unboxed\";s:32:\"portfolio_archive_content_length\";s:7:\"excerpt\";s:32:\"portfolio_archive_excerpt_length\";s:2:\"55\";s:36:\"portfolio_archive_strip_html_excerpt\";s:1:\"1\";s:31:\"portfolio_archive_title_display\";s:3:\"all\";s:32:\"portfolio_archive_text_alignment\";s:4:\"left\";s:32:\"portfolio_archive_layout_padding\";a:4:{s:3:\"top\";s:4:\"25px\";s:5:\"right\";s:4:\"25px\";s:6:\"bottom\";s:4:\"25px\";s:4:\"left\";s:4:\"25px\";}s:33:\"portfolio_archive_pagination_type\";s:10:\"pagination\";s:49:\"portfolio_archive_load_more_posts_button_bg_color\";s:7:\"#ebeaea\";s:14:\"portfolio_slug\";s:15:\"portfolio-items\";s:24:\"portfolio_meta_font_size\";s:4:\"13px\";s:16:\"portfolio_pn_nav\";s:1:\"1\";s:19:\"portfolio_width_100\";s:1:\"0\";s:30:\"portfolio_featured_image_width\";s:4:\"full\";s:25:\"portfolio_featured_images\";s:1:\"1\";s:38:\"portfolio_disable_first_featured_image\";s:1:\"0\";s:28:\"portfolio_project_desc_title\";s:1:\"1\";s:25:\"portfolio_project_details\";s:1:\"1\";s:26:\"portfolio_link_icon_target\";s:1:\"0\";s:16:\"portfolio_author\";s:1:\"0\";s:28:\"portfolio_social_sharing_box\";s:1:\"1\";s:23:\"portfolio_related_posts\";s:1:\"1\";s:18:\"portfolio_comments\";s:1:\"0\";s:18:\"social_media_icons\";a:5:{s:25:\"fusionredux_repeater_data\";a:3:{i:0;a:1:{s:5:\"title\";s:0:\"\";}i:1;a:1:{s:5:\"title\";s:0:\"\";}i:2;a:1:{s:5:\"title\";s:0:\"\";}}s:4:\"icon\";a:3:{i:0;s:8:\"facebook\";i:1;s:0:\"\";i:2;s:5:\"email\";}s:3:\"url\";a:3:{i:0;s:81:\"https://www.facebook.com/pages/Assagay-Forest-Lodge/696704640356039?ref=bookmarks\";i:1;s:81:\"https://plus.google.com/b/102888140860425533320/+AssagayGuestLodgeHillcrest/about\";i:2;s:23:\"assagaylodge@msla.co.za\";}s:12:\"custom_title\";a:3:{i:0;s:0:\"\";i:1;s:0:\"\";i:2;s:0:\"\";}s:13:\"custom_source\";a:3:{i:0;a:5:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";s:6:\"height\";s:0:\"\";s:5:\"width\";s:0:\"\";s:9:\"thumbnail\";s:0:\"\";}i:1;a:5:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";s:6:\"height\";s:0:\"\";s:5:\"width\";s:0:\"\";s:9:\"thumbnail\";s:0:\"\";}i:2;a:5:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";s:6:\"height\";s:0:\"\";s:5:\"width\";s:0:\"\";s:9:\"thumbnail\";s:0:\"\";}}}s:29:\"header_social_links_font_size\";s:4:\"16px\";s:37:\"header_social_links_tooltip_placement\";s:6:\"bottom\";s:30:\"header_social_links_color_type\";s:6:\"custom\";s:30:\"header_social_links_icon_color\";s:7:\"#ffffff\";s:25:\"header_social_links_boxed\";s:1:\"0\";s:29:\"header_social_links_box_color\";s:7:\"#e8e8e8\";s:32:\"header_social_links_boxed_radius\";s:3:\"4px\";s:33:\"header_social_links_boxed_padding\";s:3:\"8px\";s:12:\"icons_footer\";s:1:\"1\";s:29:\"footer_social_links_font_size\";s:4:\"20px\";s:37:\"footer_social_links_tooltip_placement\";s:3:\"top\";s:30:\"footer_social_links_color_type\";s:6:\"custom\";s:30:\"footer_social_links_icon_color\";s:7:\"#46494a\";s:25:\"footer_social_links_boxed\";s:1:\"0\";s:29:\"footer_social_links_box_color\";s:7:\"#222222\";s:32:\"footer_social_links_boxed_radius\";s:3:\"4px\";s:33:\"footer_social_links_boxed_padding\";s:3:\"8px\";s:22:\"sharing_social_tagline\";s:39:\"Share This Story, Choose Your Platform!\";s:30:\"sharing_box_tagline_text_color\";s:7:\"#333333\";s:15:\"social_bg_color\";s:7:\"#f6f6f6\";s:30:\"sharing_social_links_font_size\";s:4:\"18px\";s:38:\"sharing_social_links_tooltip_placement\";s:3:\"top\";s:31:\"sharing_social_links_color_type\";s:6:\"custom\";s:31:\"sharing_social_links_icon_color\";s:7:\"#bebdbd\";s:26:\"sharing_social_links_boxed\";s:1:\"0\";s:30:\"sharing_social_links_box_color\";s:7:\"#e8e8e8\";s:33:\"sharing_social_links_boxed_radius\";s:3:\"4px\";s:34:\"sharing_social_links_boxed_padding\";s:3:\"8px\";s:16:\"sharing_facebook\";s:1:\"1\";s:15:\"sharing_twitter\";s:1:\"0\";s:14:\"sharing_reddit\";s:1:\"0\";s:16:\"sharing_linkedin\";s:1:\"0\";s:16:\"sharing_whatsapp\";s:1:\"0\";s:14:\"sharing_tumblr\";s:1:\"0\";s:17:\"sharing_pinterest\";s:1:\"0\";s:10:\"sharing_vk\";s:1:\"0\";s:13:\"sharing_email\";s:1:\"1\";s:22:\"posts_slideshow_number\";s:1:\"5\";s:18:\"slideshow_autoplay\";s:1:\"1\";s:23:\"slideshow_smooth_height\";s:1:\"0\";s:15:\"slideshow_speed\";s:4:\"7000\";s:22:\"pagination_video_slide\";s:1:\"0\";s:25:\"slider_nav_box_dimensions\";a:2:{s:5:\"width\";s:4:\"30px\";s:6:\"height\";s:4:\"30px\";}s:17:\"slider_arrow_size\";s:4:\"14px\";s:15:\"tfes_dimensions\";a:2:{s:5:\"width\";s:4:\"100%\";s:6:\"height\";s:5:\"400px\";}s:14:\"tfes_animation\";s:5:\"sides\";s:13:\"tfes_autoplay\";s:1:\"1\";s:13:\"tfes_interval\";s:4:\"3000\";s:10:\"tfes_speed\";s:3:\"800\";s:10:\"tfes_width\";s:3:\"150\";s:18:\"es_title_font_size\";s:4:\"42px\";s:20:\"es_caption_font_size\";s:4:\"20px\";s:14:\"es_title_color\";s:7:\"#333333\";s:16:\"es_caption_color\";s:7:\"#747474\";s:15:\"status_lightbox\";s:1:\"1\";s:22:\"status_lightbox_single\";s:1:\"1\";s:17:\"lightbox_behavior\";s:3:\"all\";s:13:\"lightbox_skin\";s:11:\"metro-white\";s:13:\"lightbox_path\";s:8:\"vertical\";s:24:\"lightbox_animation_speed\";s:6:\"normal\";s:15:\"lightbox_arrows\";s:1:\"1\";s:16:\"lightbox_gallery\";s:1:\"1\";s:17:\"lightbox_autoplay\";s:1:\"0\";s:24:\"lightbox_slideshow_speed\";s:4:\"5000\";s:16:\"lightbox_opacity\";s:3:\"0.9\";s:14:\"lightbox_title\";s:1:\"1\";s:13:\"lightbox_desc\";s:1:\"1\";s:15:\"lightbox_social\";s:1:\"1\";s:20:\"lightbox_deeplinking\";s:1:\"1\";s:20:\"lightbox_post_images\";s:1:\"1\";s:25:\"lightbox_video_dimensions\";a:2:{s:5:\"width\";s:6:\"1280px\";s:6:\"height\";s:5:\"720px\";}s:13:\"email_address\";s:23:\"assagaylodge@msla.co.za\";s:24:\"contact_comment_position\";s:5:\"below\";s:29:\"contact_form_privacy_checkbox\";s:1:\"0\";s:26:\"contact_form_privacy_label\";s:152:\"By checking this box, you confirm that you have read and are agreeing to our terms of use regarding the storage of the data submitted through this form.\";s:17:\"recaptcha_version\";s:2:\"v2\";s:16:\"recaptcha_public\";s:0:\"\";s:17:\"recaptcha_private\";s:0:\"\";s:22:\"recaptcha_color_scheme\";s:5:\"light\";s:15:\"recaptcha_score\";s:3:\"0.5\";s:24:\"recaptcha_badge_position\";s:6:\"inline\";s:8:\"gmap_api\";s:0:\"\";s:13:\"gmap_api_type\";s:2:\"js\";s:18:\"gmap_embed_address\";s:0:\"\";s:19:\"gmap_embed_map_type\";s:7:\"roadmap\";s:12:\"gmap_address\";s:15:\"4 Williams Road\";s:9:\"gmap_type\";s:7:\"roadmap\";s:15:\"gmap_dimensions\";a:2:{s:5:\"width\";s:4:\"100%\";s:6:\"height\";s:5:\"415px\";}s:14:\"gmap_topmargin\";s:4:\"55px\";s:14:\"map_zoom_level\";s:2:\"13\";s:7:\"map_pin\";s:1:\"0\";s:18:\"gmap_pin_animation\";s:1:\"0\";s:9:\"map_popup\";s:1:\"0\";s:15:\"map_scrollwheel\";s:1:\"1\";s:9:\"map_scale\";s:1:\"1\";s:15:\"map_zoomcontrol\";s:1:\"1\";s:11:\"map_styling\";s:7:\"default\";s:17:\"map_overlay_color\";s:7:\"#a0ce4e\";s:19:\"map_infobox_styling\";s:7:\"default\";s:19:\"map_infobox_content\";s:0:\"\";s:20:\"map_infobox_bg_color\";s:19:\"rgba(255,255,255,0)\";s:22:\"map_infobox_text_color\";s:7:\"#ffffff\";s:22:\"map_custom_marker_icon\";s:0:\"\";s:21:\"search_filter_results\";s:1:\"1\";s:14:\"search_content\";a:6:{i:0;s:4:\"post\";i:1;s:4:\"page\";i:2;s:15:\"avada_portfolio\";i:3;s:9:\"avada_faq\";i:4;s:7:\"product\";i:5;s:12:\"tribe_events\";}s:27:\"search_limit_to_post_titles\";s:1:\"0\";s:18:\"search_form_design\";s:7:\"classic\";s:11:\"live_search\";s:1:\"0\";s:26:\"live_search_min_char_count\";s:1:\"4\";s:28:\"live_search_results_per_page\";s:3:\"100\";s:26:\"live_search_results_height\";s:3:\"250\";s:34:\"live_search_display_featured_image\";s:1:\"1\";s:29:\"live_search_display_post_type\";s:1:\"1\";s:13:\"search_layout\";s:4:\"grid\";s:23:\"search_results_per_page\";s:2:\"10\";s:22:\"search_pagination_type\";s:10:\"pagination\";s:19:\"search_grid_columns\";s:1:\"3\";s:26:\"search_grid_column_spacing\";s:2:\"40\";s:21:\"search_content_length\";s:7:\"no_text\";s:21:\"search_excerpt_length\";s:2:\"55\";s:25:\"search_strip_html_excerpt\";s:1:\"1\";s:22:\"search_featured_images\";s:1:\"1\";s:11:\"search_meta\";a:5:{i:0;s:6:\"author\";i:1;s:4:\"date\";i:2;s:10:\"categories\";i:3;s:8:\"comments\";i:4;s:9:\"read_more\";}s:26:\"search_new_search_position\";s:3:\"top\";s:18:\"gfonts_load_method\";s:3:\"cdn\";s:14:\"privacy_embeds\";s:1:\"0\";s:14:\"privacy_expiry\";s:2:\"30\";s:19:\"privacy_embed_types\";a:8:{i:0;s:7:\"youtube\";i:1;s:5:\"vimeo\";i:2;s:10:\"soundcloud\";i:3;s:8:\"facebook\";i:4;s:6:\"flickr\";i:5;s:7:\"twitter\";i:6;s:5:\"gmaps\";i:7;s:8:\"tracking\";}s:22:\"privacy_embed_defaults\";a:0:{}s:16:\"privacy_bg_color\";s:15:\"rgba(0,0,0,0.1)\";s:13:\"privacy_color\";s:15:\"rgba(0,0,0,0.3)\";s:11:\"privacy_bar\";s:1:\"0\";s:19:\"privacy_bar_padding\";a:4:{s:3:\"top\";s:4:\"15px\";s:5:\"right\";s:4:\"30px\";s:6:\"bottom\";s:4:\"15px\";s:4:\"left\";s:4:\"30px\";}s:20:\"privacy_bar_bg_color\";s:7:\"#363839\";s:21:\"privacy_bar_font_size\";s:4:\"13px\";s:17:\"privacy_bar_color\";s:7:\"#8C8989\";s:22:\"privacy_bar_link_color\";s:7:\"#bfbfbf\";s:28:\"privacy_bar_link_hover_color\";s:7:\"#65bc7b\";s:16:\"privacy_bar_text\";s:51:\"This website uses cookies and third party services.\";s:23:\"privacy_bar_button_text\";s:2:\"Ok\";s:23:\"privacy_bar_button_save\";s:1:\"0\";s:16:\"privacy_bar_more\";s:1:\"0\";s:21:\"privacy_bar_more_text\";s:8:\"Settings\";s:23:\"privacy_bar_update_text\";s:15:\"Update Settings\";s:30:\"privacy_bar_headings_font_size\";s:4:\"13px\";s:26:\"privacy_bar_headings_color\";s:7:\"#dddddd\";s:19:\"privacy_bar_content\";a:4:{s:25:\"fusionredux_repeater_data\";a:1:{i:0;a:1:{s:5:\"title\";s:0:\"\";}}s:4:\"type\";a:1:{i:0;s:0:\"\";}s:5:\"title\";a:1:{i:0;s:0:\"\";}s:11:\"description\";a:1:{i:0;s:0:\"\";}}s:16:\"sidenav_behavior\";s:5:\"hover\";s:26:\"featured_image_placeholder\";s:1:\"1\";s:12:\"excerpt_base\";s:5:\"words\";s:16:\"disable_excerpts\";s:1:\"1\";s:14:\"link_read_more\";s:1:\"0\";s:12:\"avatar_shape\";s:6:\"square\";s:14:\"comments_pages\";s:1:\"0\";s:21:\"featured_images_pages\";s:1:\"1\";s:21:\"nofollow_social_links\";s:1:\"0\";s:16:\"social_icons_new\";s:1:\"1\";s:14:\"totop_position\";s:5:\"right\";s:19:\"totop_border_radius\";s:1:\"4\";s:22:\"totop_scroll_down_only\";s:1:\"0\";s:20:\"related_posts_layout\";s:17:\"title_on_rollover\";s:20:\"number_related_posts\";s:1:\"5\";s:21:\"related_posts_columns\";s:1:\"5\";s:28:\"related_posts_column_spacing\";s:2:\"44\";s:24:\"related_posts_image_size\";s:7:\"cropped\";s:22:\"related_posts_autoplay\";s:1:\"0\";s:19:\"related_posts_speed\";s:4:\"2500\";s:24:\"related_posts_navigation\";s:1:\"1\";s:19:\"related_posts_swipe\";s:1:\"0\";s:25:\"related_posts_swipe_items\";s:1:\"0\";s:14:\"image_rollover\";s:1:\"1\";s:24:\"image_rollover_direction\";s:4:\"left\";s:24:\"image_rollover_icon_size\";s:4:\"15px\";s:19:\"link_image_rollover\";s:1:\"1\";s:19:\"zoom_image_rollover\";s:1:\"1\";s:20:\"title_image_rollover\";s:1:\"1\";s:19:\"cats_image_rollover\";s:1:\"1\";s:26:\"icon_circle_image_rollover\";s:1:\"1\";s:24:\"image_gradient_top_color\";s:20:\"rgba(160,206,78,0.8)\";s:27:\"image_gradient_bottom_color\";s:7:\"#a0ce4e\";s:25:\"image_rollover_text_color\";s:7:\"#333333\";s:25:\"image_rollover_icon_color\";s:7:\"#ffffff\";s:17:\"pagination_sizing\";s:7:\"padding\";s:23:\"pagination_width_height\";s:2:\"30\";s:22:\"pagination_box_padding\";a:2:{s:5:\"width\";s:3:\"6px\";s:6:\"height\";s:3:\"2px\";}s:23:\"pagination_border_width\";s:1:\"1\";s:24:\"pagination_border_radius\";s:1:\"0\";s:23:\"pagination_text_display\";s:1:\"1\";s:20:\"pagination_font_size\";s:4:\"12px\";s:16:\"pagination_range\";s:1:\"1\";s:26:\"pagination_start_end_range\";s:1:\"0\";s:17:\"form_input_height\";s:4:\"29px\";s:13:\"form_bg_color\";s:7:\"#ffffff\";s:14:\"form_text_size\";s:4:\"13px\";s:15:\"form_text_color\";s:7:\"#aaa9a9\";s:17:\"form_border_width\";a:4:{s:3:\"top\";s:3:\"1px\";s:5:\"right\";s:3:\"1px\";s:6:\"bottom\";s:3:\"1px\";s:4:\"left\";s:3:\"1px\";}s:17:\"form_border_color\";s:7:\"#d2d2d2\";s:23:\"form_focus_border_color\";s:7:\"#d2d2d2\";s:18:\"form_border_radius\";s:1:\"0\";s:17:\"timeline_bg_color\";s:19:\"rgba(255,255,255,0)\";s:14:\"timeline_color\";s:7:\"#ebeaea\";s:25:\"grid_separator_style_type\";s:12:\"double|solid\";s:20:\"grid_separator_color\";s:7:\"#e0dede\";s:18:\"masonry_grid_ratio\";s:3:\"1.0\";s:20:\"masonry_width_double\";s:4:\"2000\";s:16:\"google_analytics\";s:0:\"\";s:10:\"space_head\";s:0:\"\";s:10:\"space_body\";s:0:\"\";s:19:\"dependencies_status\";s:1:\"1\";s:15:\"pw_jpeg_quality\";s:2:\"82\";s:16:\"smooth_scrolling\";s:1:\"0\";s:27:\"disable_code_block_encoding\";s:1:\"1\";s:16:\"disable_megamenu\";s:1:\"1\";s:16:\"avada_rev_styles\";s:1:\"1\";s:22:\"avada_styles_dropdowns\";s:1:\"1\";s:27:\"disable_mobile_image_hovers\";s:1:\"0\";s:9:\"status_yt\";s:1:\"1\";s:12:\"status_vimeo\";s:1:\"1\";s:11:\"status_gmap\";s:1:\"1\";s:12:\"status_totop\";s:18:\"desktop_and_mobile\";s:20:\"status_fusion_slider\";s:1:\"1\";s:14:\"status_eslider\";s:1:\"1\";s:18:\"status_fontawesome\";a:3:{i:0;s:3:\"fab\";i:1;s:3:\"far\";i:2;s:3:\"fas\";}s:28:\"fontawesome_v4_compatibility\";s:1:\"1\";s:22:\"status_fontawesome_pro\";s:1:\"0\";s:14:\"status_outline\";s:1:\"0\";s:16:\"status_opengraph\";s:1:\"1\";s:31:\"disable_date_rich_snippet_pages\";s:1:\"1\";s:26:\"disable_rich_snippet_title\";s:1:\"1\";s:27:\"disable_rich_snippet_author\";s:1:\"1\";s:25:\"disable_rich_snippet_date\";s:1:\"1\";s:34:\"enable_block_editor_backend_styles\";s:1:\"1\";s:9:\"lazy_load\";s:4:\"none\";s:17:\"font_face_display\";s:5:\"block\";s:15:\"emojis_disabled\";s:7:\"enabled\";s:12:\"defer_styles\";s:1:\"0\";s:16:\"css_cache_method\";s:4:\"file\";s:19:\"media_queries_async\";s:1:\"0\";s:8:\"css_vars\";s:1:\"0\";s:15:\"cache_server_ip\";s:0:\"\";s:11:\"js_compiler\";s:1:\"1\";s:10:\"custom_css\";s:0:\"\";s:13:\"info_bg_color\";s:7:\"#ffffff\";s:17:\"info_accent_color\";s:19:\"rgba(128,128,128,1)\";s:15:\"danger_bg_color\";s:7:\"#f2dede\";s:19:\"danger_accent_color\";s:17:\"rgba(166,66,66,1)\";s:16:\"success_bg_color\";s:7:\"#dff0d8\";s:20:\"success_accent_color\";s:17:\"rgba(92,163,64,1)\";s:16:\"warning_bg_color\";s:7:\"#fcf8e3\";s:20:\"warning_accent_color\";s:18:\"rgba(217,185,23,1)\";s:20:\"alert_box_text_align\";s:6:\"center\";s:24:\"alert_box_text_transform\";s:10:\"capitalize\";s:21:\"alert_box_dismissable\";s:5:\"boxed\";s:16:\"alert_box_shadow\";s:2:\"no\";s:17:\"alert_border_size\";s:1:\"1\";s:16:\"animation_offset\";s:13:\"top-into-view\";s:17:\"blog_grid_columns\";s:1:\"3\";s:24:\"blog_grid_column_spacing\";s:2:\"40\";s:17:\"blog_grid_padding\";a:4:{s:3:\"top\";s:4:\"30px\";s:5:\"right\";s:4:\"25px\";s:6:\"bottom\";s:4:\"20px\";s:4:\"left\";s:4:\"25px\";}s:12:\"blog_excerpt\";s:3:\"yes\";s:19:\"blog_excerpt_length\";s:2:\"10\";s:11:\"button_size\";s:5:\"Large\";s:11:\"button_span\";s:2:\"no\";s:11:\"button_type\";s:4:\"Flat\";s:17:\"button_typography\";a:11:{s:11:\"font-family\";s:9:\"Quicksand\";s:12:\"font-options\";s:0:\"\";s:6:\"google\";s:1:\"1\";s:11:\"font-backup\";s:28:\"Arial, Helvetica, sans-serif\";s:11:\"font-weight\";s:7:\"regular\";s:10:\"font-style\";s:0:\"\";s:7:\"subsets\";s:0:\"\";s:14:\"letter-spacing\";s:3:\"0px\";s:9:\"font-size\";s:4:\"14px\";s:11:\"line-height\";s:4:\"17px\";s:14:\"text-transform\";s:4:\"none\";}s:21:\"button_text_transform\";s:4:\"none\";s:25:\"button_gradient_top_color\";s:7:\"#a0ce4e\";s:28:\"button_gradient_bottom_color\";s:21:\"rgba(160,206,78,0.33)\";s:31:\"button_gradient_top_color_hover\";s:7:\"#749935\";s:34:\"button_gradient_bottom_color_hover\";s:7:\"#c6ef56\";s:19:\"button_accent_color\";s:7:\"#000000\";s:25:\"button_accent_hover_color\";s:7:\"#ffffff\";s:18:\"button_bevel_color\";s:7:\"#54770F\";s:19:\"button_border_width\";a:4:{s:3:\"top\";s:3:\"0px\";s:5:\"right\";s:3:\"0px\";s:6:\"bottom\";s:3:\"0px\";s:4:\"left\";s:3:\"0px\";}s:18:\"carousel_nav_color\";s:7:\"#999999\";s:20:\"carousel_hover_color\";s:7:\"#808080\";s:14:\"carousel_speed\";s:4:\"2500\";s:21:\"chart_legend_position\";s:3:\"top\";s:19:\"chart_show_tooltips\";s:3:\"yes\";s:14:\"chart_bg_color\";s:19:\"rgba(255,255,255,0)\";s:21:\"chart_axis_text_color\";s:7:\"#666666\";s:20:\"chart_gridline_color\";s:15:\"rgba(0,0,0,0.1)\";s:21:\"checklist_icons_color\";s:7:\"#ffffff\";s:16:\"checklist_circle\";s:1:\"1\";s:22:\"checklist_circle_color\";s:7:\"#a0ce4e\";s:19:\"checklist_item_size\";s:4:\"14px\";s:17:\"checklist_divider\";s:2:\"no\";s:23:\"checklist_divider_color\";s:7:\"#e0dede\";s:10:\"col_margin\";a:2:{s:3:\"top\";s:3:\"0px\";s:6:\"bottom\";s:4:\"20px\";}s:25:\"container_padding_default\";a:4:{s:3:\"top\";s:3:\"0px\";s:5:\"right\";s:3:\"0px\";s:6:\"bottom\";s:3:\"0px\";s:4:\"left\";s:3:\"0px\";}s:21:\"container_padding_100\";a:4:{s:3:\"top\";s:3:\"0px\";s:5:\"right\";s:4:\"30px\";s:6:\"bottom\";s:3:\"0px\";s:4:\"left\";s:4:\"30px\";}s:19:\"full_width_bg_color\";s:19:\"rgba(255,255,255,0)\";s:22:\"full_width_border_size\";s:1:\"0\";s:23:\"full_width_border_color\";s:7:\"#eae9e9\";s:29:\"container_scroll_nav_bg_color\";s:18:\"rgba(0, 0, 0, 0.2)\";s:33:\"container_scroll_nav_bullet_color\";s:7:\"#eeeeee\";s:39:\"container_hundred_percent_height_mobile\";s:1:\"0\";s:20:\"content_box_bg_color\";s:19:\"rgba(255,255,255,0)\";s:22:\"content_box_title_size\";s:2:\"18\";s:23:\"content_box_title_color\";s:7:\"#333333\";s:22:\"content_box_body_color\";s:7:\"#747474\";s:21:\"content_box_icon_size\";s:4:\"21px\";s:22:\"content_box_icon_color\";s:7:\"#ffffff\";s:23:\"content_box_icon_circle\";s:3:\"yes\";s:30:\"content_box_icon_circle_radius\";s:3:\"50%\";s:25:\"content_box_icon_bg_color\";s:7:\"#333333\";s:38:\"content_box_icon_bg_inner_border_color\";s:7:\"#333333\";s:37:\"content_box_icon_bg_inner_border_size\";s:1:\"1\";s:38:\"content_box_icon_bg_outer_border_color\";s:19:\"rgba(255,255,255,0)\";s:37:\"content_box_icon_bg_outer_border_size\";s:1:\"0\";s:27:\"content_box_icon_hover_type\";s:4:\"fade\";s:40:\"content_box_hover_animation_accent_color\";s:7:\"#a0ce4e\";s:21:\"content_box_link_type\";s:4:\"text\";s:23:\"content_box_button_span\";s:2:\"no\";s:21:\"content_box_link_area\";s:9:\"link-icon\";s:23:\"content_box_link_target\";s:5:\"_self\";s:18:\"content_box_margin\";a:2:{s:3:\"top\";s:3:\"0px\";s:6:\"bottom\";s:4:\"60px\";}s:18:\"countdown_timezone\";s:9:\"site_time\";s:20:\"countdown_show_weeks\";s:2:\"no\";s:26:\"countdown_background_color\";s:7:\"#a0ce4e\";s:26:\"countdown_background_image\";a:5:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";s:6:\"height\";s:0:\"\";s:5:\"width\";s:0:\"\";s:9:\"thumbnail\";s:0:\"\";}s:27:\"countdown_background_repeat\";s:9:\"no-repeat\";s:29:\"countdown_background_position\";s:13:\"center center\";s:27:\"countdown_counter_box_color\";s:7:\"#333333\";s:28:\"countdown_counter_text_color\";s:7:\"#ffffff\";s:28:\"countdown_heading_text_color\";s:7:\"#ffffff\";s:31:\"countdown_subheading_text_color\";s:7:\"#ffffff\";s:25:\"countdown_link_text_color\";s:7:\"#ffffff\";s:21:\"countdown_link_target\";s:5:\"_self\";s:17:\"counter_box_speed\";s:4:\"1000\";s:17:\"counter_box_color\";s:7:\"#a0ce4e\";s:22:\"counter_box_title_size\";s:4:\"50px\";s:21:\"counter_box_icon_size\";s:4:\"50px\";s:22:\"counter_box_body_color\";s:7:\"#747474\";s:21:\"counter_box_body_size\";s:4:\"13px\";s:24:\"counter_box_border_color\";s:7:\"#e0dede\";s:20:\"counter_box_icon_top\";s:2:\"no\";s:20:\"counter_filled_color\";s:7:\"#a0ce4e\";s:22:\"counter_unfilled_color\";s:7:\"#f6f6f6\";s:13:\"dropcap_color\";s:7:\"#a0ce4e\";s:18:\"faq_featured_image\";s:1:\"0\";s:11:\"faq_filters\";s:3:\"yes\";s:18:\"faq_accordion_type\";s:10:\"accordions\";s:24:\"faq_accordion_boxed_mode\";s:1:\"0\";s:25:\"faq_accordion_border_size\";s:1:\"1\";s:26:\"faq_accordian_border_color\";s:7:\"#cccccc\";s:30:\"faq_accordian_background_color\";s:7:\"#ffffff\";s:25:\"faq_accordian_hover_color\";s:7:\"#f9f9f9\";s:26:\"faq_accordion_divider_line\";s:1:\"1\";s:23:\"faq_accordion_icon_size\";s:2:\"13\";s:24:\"faq_accordian_icon_color\";s:7:\"#ffffff\";s:24:\"faq_accordion_icon_boxed\";s:1:\"1\";s:28:\"faq_accordian_inactive_color\";s:7:\"#333333\";s:24:\"faq_accordion_icon_align\";s:4:\"left\";s:26:\"faq_accordian_active_color\";s:7:\"#a0ce4e\";s:22:\"flip_boxes_flip_effect\";s:7:\"classic\";s:25:\"flip_boxes_flip_direction\";s:5:\"right\";s:24:\"flip_boxes_flip_duration\";s:3:\"0.4\";s:24:\"flip_boxes_equal_heights\";s:2:\"no\";s:19:\"flip_boxes_front_bg\";s:7:\"#f6f6f6\";s:24:\"flip_boxes_front_heading\";s:7:\"#333333\";s:21:\"flip_boxes_front_text\";s:7:\"#747474\";s:18:\"flip_boxes_back_bg\";s:7:\"#a0ce4e\";s:23:\"flip_boxes_back_heading\";s:7:\"#eeeded\";s:20:\"flip_boxes_back_text\";s:7:\"#ffffff\";s:22:\"flip_boxes_border_size\";s:1:\"1\";s:23:\"flip_boxes_border_color\";s:19:\"rgba(255,255,255,0)\";s:24:\"flip_boxes_border_radius\";s:3:\"4px\";s:17:\"icon_circle_color\";s:7:\"#333333\";s:17:\"icon_border_color\";s:7:\"#333333\";s:10:\"icon_color\";s:7:\"#ffffff\";s:20:\"gallery_picture_size\";s:4:\"auto\";s:14:\"gallery_layout\";s:4:\"grid\";s:15:\"gallery_columns\";s:1:\"3\";s:22:\"gallery_column_spacing\";s:2:\"10\";s:18:\"gallery_hover_type\";s:4:\"none\";s:24:\"gallery_lightbox_content\";s:4:\"none\";s:19:\"gallery_border_size\";s:1:\"0\";s:20:\"gallery_border_color\";s:7:\"#f6f6f6\";s:21:\"gallery_border_radius\";s:3:\"0px\";s:19:\"google_map_api_type\";s:2:\"js\";s:17:\"before_after_type\";s:12:\"before_after\";s:22:\"before_after_font_size\";s:2:\"13\";s:25:\"before_after_accent_color\";s:7:\"#ffffff\";s:28:\"before_after_label_placement\";s:14:\"image-centered\";s:24:\"before_after_handle_type\";s:7:\"default\";s:25:\"before_after_handle_color\";s:7:\"#ffffff\";s:22:\"before_after_handle_bg\";s:19:\"rgba(255,255,255,0)\";s:19:\"before_after_offset\";s:2:\"50\";s:24:\"before_after_orientation\";s:10:\"horizontal\";s:28:\"before_after_handle_movement\";s:10:\"drag_click\";s:28:\"before_after_transition_time\";s:3:\"0.5\";s:21:\"imageframe_style_type\";s:4:\"none\";s:15:\"imageframe_blur\";s:1:\"3\";s:20:\"imgframe_style_color\";s:7:\"#000000\";s:22:\"imageframe_border_size\";s:1:\"0\";s:21:\"imgframe_border_color\";s:7:\"#f6f6f6\";s:24:\"imageframe_border_radius\";s:3:\"0px\";s:14:\"modal_bg_color\";s:7:\"#f6f6f6\";s:18:\"modal_border_color\";s:7:\"#ebebeb\";s:23:\"person_background_color\";s:13:\"rgba(0,0,0,0)\";s:16:\"person_pic_style\";s:4:\"none\";s:21:\"person_pic_style_blur\";s:1:\"3\";s:18:\"person_style_color\";s:7:\"#000000\";s:19:\"person_border_color\";s:7:\"#f6f6f6\";s:18:\"person_border_size\";s:1:\"0\";s:20:\"person_border_radius\";s:3:\"0px\";s:16:\"person_alignment\";s:4:\"Left\";s:20:\"person_icon_position\";s:3:\"Top\";s:24:\"popover_heading_bg_color\";s:7:\"#f6f6f6\";s:24:\"popover_content_bg_color\";s:7:\"#ffffff\";s:20:\"popover_border_color\";s:7:\"#ebebeb\";s:18:\"popover_text_color\";s:7:\"#747474\";s:17:\"popover_placement\";s:3:\"Top\";s:29:\"portfolio_featured_image_size\";s:7:\"cropped\";s:17:\"portfolio_columns\";s:1:\"3\";s:24:\"portfolio_column_spacing\";s:2:\"12\";s:15:\"portfolio_items\";s:2:\"10\";s:21:\"portfolio_text_layout\";s:7:\"unboxed\";s:24:\"portfolio_content_length\";s:7:\"excerpt\";s:24:\"portfolio_excerpt_length\";s:2:\"55\";s:28:\"portfolio_strip_html_excerpt\";s:1:\"1\";s:23:\"portfolio_title_display\";s:3:\"all\";s:24:\"portfolio_text_alignment\";s:4:\"left\";s:24:\"portfolio_layout_padding\";a:4:{s:3:\"top\";s:4:\"25px\";s:5:\"right\";s:4:\"25px\";s:6:\"bottom\";s:4:\"25px\";s:4:\"left\";s:4:\"25px\";}s:25:\"portfolio_pagination_type\";s:10:\"pagination\";s:36:\"full_boxed_pricing_box_heading_color\";s:7:\"#333333\";s:29:\"sep_pricing_box_heading_color\";s:7:\"#333333\";s:17:\"pricing_box_color\";s:7:\"#a0ce4e\";s:16:\"pricing_bg_color\";s:7:\"#ffffff\";s:30:\"pricing_background_color_hover\";s:7:\"#f8f8f8\";s:20:\"pricing_border_color\";s:7:\"#f8f8f8\";s:21:\"pricing_divider_color\";s:7:\"#ededed\";s:18:\"progressbar_height\";s:4:\"37px\";s:25:\"progressbar_text_position\";s:6:\"on_bar\";s:24:\"progressbar_filled_color\";s:7:\"#a0ce4e\";s:31:\"progressbar_filled_border_color\";s:7:\"#ffffff\";s:30:\"progressbar_filled_border_size\";s:1:\"0\";s:26:\"progressbar_unfilled_color\";s:7:\"#f6f6f6\";s:22:\"progressbar_text_color\";s:7:\"#ffffff\";s:23:\"section_sep_border_size\";s:1:\"1\";s:14:\"section_sep_bg\";s:7:\"#f6f6f6\";s:24:\"section_sep_border_color\";s:7:\"#f6f6f6\";s:20:\"separator_style_type\";s:6:\"double\";s:9:\"sep_color\";s:7:\"#e0dede\";s:21:\"separator_border_size\";s:1:\"1\";s:16:\"separator_circle\";s:1:\"1\";s:25:\"separator_circle_bg_color\";s:19:\"rgba(255,255,255,0)\";s:22:\"social_links_font_size\";s:4:\"16px\";s:23:\"social_links_color_type\";s:6:\"custom\";s:23:\"social_links_icon_color\";s:7:\"#bebdbd\";s:18:\"social_links_boxed\";s:1:\"0\";s:22:\"social_links_box_color\";s:7:\"#e8e8e8\";s:25:\"social_links_boxed_radius\";s:3:\"4px\";s:26:\"social_links_boxed_padding\";s:3:\"8px\";s:30:\"social_links_tooltip_placement\";s:3:\"Top\";s:24:\"syntax_highlighter_theme\";s:7:\"default\";s:31:\"syntax_highlighter_line_numbers\";s:3:\"yes\";s:47:\"syntax_highlighter_line_number_background_color\";s:0:\"\";s:41:\"syntax_highlighter_line_number_text_color\";s:0:\"\";s:32:\"syntax_highlighter_line_wrapping\";s:6:\"scroll\";s:36:\"syntax_highlighter_copy_to_clipboard\";s:3:\"yes\";s:41:\"syntax_highlighter_copy_to_clipboard_text\";s:17:\"Copy to Clipboard\";s:28:\"syntax_highlighter_font_size\";s:2:\"14\";s:35:\"syntax_highlighter_background_color\";s:0:\"\";s:30:\"syntax_highlighter_border_size\";s:1:\"1\";s:31:\"syntax_highlighter_border_color\";s:7:\"#e0dede\";s:31:\"syntax_highlighter_border_style\";s:5:\"solid\";s:25:\"syntax_highlighter_margin\";a:4:{s:3:\"top\";s:3:\"0px\";s:5:\"right\";s:3:\"0px\";s:6:\"bottom\";s:3:\"0px\";s:4:\"left\";s:3:\"0px\";}s:13:\"tabs_bg_color\";s:7:\"#ffffff\";s:19:\"tabs_inactive_color\";s:7:\"#ebeaea\";s:17:\"tabs_border_color\";s:7:\"#ebeaea\";s:18:\"tabs_icon_position\";s:4:\"left\";s:14:\"tabs_icon_size\";s:2:\"13\";s:10:\"tagline_bg\";s:7:\"#f6f6f6\";s:20:\"tagline_border_color\";s:7:\"#f6f6f6\";s:14:\"tagline_margin\";a:2:{s:3:\"top\";s:3:\"0px\";s:6:\"bottom\";s:4:\"84px\";}s:20:\"testimonial_bg_color\";s:7:\"#f6f6f6\";s:22:\"testimonial_text_color\";s:7:\"#747474\";s:18:\"testimonials_speed\";s:4:\"4000\";s:19:\"testimonials_random\";s:1:\"0\";s:12:\"text_columns\";s:1:\"1\";s:21:\"text_column_min_width\";s:5:\"100px\";s:19:\"text_column_spacing\";s:3:\"2em\";s:15:\"text_rule_style\";s:4:\"none\";s:14:\"text_rule_size\";s:1:\"1\";s:15:\"text_rule_color\";s:7:\"#e0dede\";s:16:\"title_style_type\";s:12:\"double solid\";s:18:\"title_border_color\";s:7:\"#e0dede\";s:12:\"title_margin\";a:4:{s:3:\"top\";s:3:\"0px\";s:6:\"bottom\";s:4:\"31px\";s:4:\"left\";s:3:\"0px\";s:5:\"right\";s:3:\"0px\";}s:19:\"title_margin_mobile\";a:4:{s:3:\"top\";s:3:\"0px\";s:6:\"bottom\";s:4:\"20px\";s:4:\"left\";s:3:\"0px\";s:5:\"right\";s:3:\"0px\";}s:14:\"accordion_type\";s:10:\"accordions\";s:20:\"accordion_boxed_mode\";s:1:\"0\";s:21:\"accordion_border_size\";s:1:\"1\";s:22:\"accordian_border_color\";s:7:\"#cccccc\";s:26:\"accordian_background_color\";s:7:\"#ffffff\";s:21:\"accordian_hover_color\";s:7:\"#f9f9f9\";s:22:\"accordion_divider_line\";s:1:\"1\";s:19:\"accordion_icon_size\";s:2:\"13\";s:20:\"accordian_icon_color\";s:7:\"#ffffff\";s:20:\"accordion_icon_boxed\";s:1:\"1\";s:24:\"accordian_inactive_color\";s:7:\"#333333\";s:22:\"accordian_active_color\";s:7:\"#a0ce4e\";s:20:\"accordion_icon_align\";s:4:\"left\";s:21:\"user_login_text_align\";s:6:\"center\";s:28:\"user_login_form_field_layout\";s:7:\"stacked\";s:27:\"user_login_form_show_labels\";s:2:\"no\";s:33:\"user_login_form_show_placeholders\";s:3:\"yes\";s:32:\"user_login_form_show_remember_me\";s:2:\"no\";s:32:\"user_login_form_background_color\";s:7:\"#f6f6f6\";s:16:\"visibility_small\";s:3:\"640\";s:17:\"visibility_medium\";s:4:\"1024\";s:22:\"widget_area_title_size\";s:4:\"13px\";s:23:\"widget_area_title_color\";s:7:\"#333333\";s:20:\"button_border_radius\";a:4:{s:8:\"top_left\";s:3:\"2px\";s:9:\"top_right\";s:3:\"2px\";s:11:\"bottom_left\";s:3:\"2px\";s:12:\"bottom_right\";s:3:\"2px\";}s:19:\"button_border_color\";s:7:\"#000000\";s:25:\"button_border_hover_color\";s:7:\"#ffffff\";s:21:\"status_css_animations\";s:7:\"desktop\";s:19:\"separator_icon_size\";i:14;s:52:\"blog_element_load_more_posts_hover_button_text_color\";s:4:\"#333\";s:50:\"blog_element_load_more_posts_hover_button_bg_color\";s:21:\"rgba(235,234,234,0.8)\";s:46:\"blog_element_load_more_posts_button_text_color\";s:4:\"#333\";s:44:\"blog_element_load_more_posts_button_bg_color\";s:7:\"#ebeaea\";s:57:\"portfolio_element_load_more_posts_hover_button_text_color\";s:4:\"#333\";s:55:\"portfolio_element_load_more_posts_hover_button_bg_color\";s:21:\"rgba(235,234,234,0.8)\";s:51:\"portfolio_element_load_more_posts_button_text_color\";s:4:\"#333\";s:49:\"portfolio_element_load_more_posts_button_bg_color\";s:7:\"#ebeaea\";s:57:\"portfolio_archive_load_more_posts_hover_button_text_color\";s:4:\"#333\";s:55:\"portfolio_archive_load_more_posts_hover_button_bg_color\";s:21:\"rgba(235,234,234,0.8)\";s:51:\"portfolio_archive_load_more_posts_button_text_color\";s:4:\"#333\";s:44:\"blog_load_more_posts_hover_button_text_color\";s:4:\"#333\";s:42:\"blog_load_more_posts_hover_button_bg_color\";s:21:\"rgba(235,234,234,0.8)\";s:38:\"blog_load_more_posts_button_text_color\";s:4:\"#333\";s:25:\"show_first_featured_image\";s:1:\"0\";s:16:\"icon_color_hover\";s:7:\"#ffffff\";s:23:\"icon_circle_color_hover\";s:7:\"#333333\";s:23:\"icon_border_color_hover\";s:7:\"#333333\";s:21:\"countdown_label_color\";s:7:\"#ffffff\";s:20:\"image_rollover_icons\";s:8:\"linkzoom\";s:17:\"load_block_styles\";s:4:\"auto\";s:44:\"container_hundred_percent_scroll_sensitivity\";d:450;s:24:\"container_legacy_support\";s:1:\"1\";s:23:\"full_width_border_sizes\";a:4:{s:3:\"top\";s:3:\"0px\";s:6:\"bottom\";s:3:\"0px\";s:4:\"left\";s:3:\"0px\";s:5:\"right\";s:3:\"0px\";}s:20:\"separator_icon_color\";s:0:\"\";s:12:\"sharing_xing\";s:1:\"0\";s:16:\"col_width_medium\";s:3:\"1_1\";s:19:\"status_fusion_forms\";s:1:\"1\";s:35:\"woocommerce_gallery_thumbnail_width\";i:100;s:39:\"woocommerce_archive_grid_column_spacing\";s:2:\"20\";s:13:\"preload_fonts\";s:4:\"none\";s:14:\"social_sharing\";a:2:{i:0;s:8:\"facebook\";i:1;s:5:\"email\";}s:14:\"button_presets\";s:1:\"1\";s:30:\"css_combine_third_party_assets\";s:1:\"1\";s:19:\"status_avada_studio\";s:1:\"1\";s:18:\"icon_border_radius\";a:4:{s:8:\"top_left\";s:3:\"50%\";s:9:\"top_right\";s:3:\"50%\";s:11:\"bottom_left\";s:3:\"50%\";s:12:\"bottom_right\";s:3:\"50%\";}s:16:\"button_font_size\";s:4:\"14px\";s:18:\"button_line_height\";s:4:\"17px\";s:14:\"button_padding\";a:4:{s:3:\"top\";s:4:\"13px\";s:5:\"right\";s:4:\"29px\";s:6:\"bottom\";s:4:\"13px\";s:4:\"left\";s:4:\"29px\";}s:13:\"qty_font_size\";s:4:\"14px\";s:8:\"qty_size\";a:2:{s:5:\"width\";s:4:\"42px\";s:6:\"height\";s:4:\"40px\";}s:21:\"button_gradient_start\";s:1:\"0\";s:19:\"button_gradient_end\";s:3:\"100\";s:20:\"button_gradient_type\";s:6:\"linear\";s:21:\"button_gradient_angle\";s:3:\"180\";s:24:\"button_bevel_color_hover\";s:7:\"#54770F\";s:25:\"checklist_odd_row_bgcolor\";s:19:\"rgba(255,255,255,0)\";s:26:\"checklist_even_row_bgcolor\";s:19:\"rgba(255,255,255,0)\";s:22:\"checklist_item_padding\";a:4:{s:3:\"top\";s:6:\"0.35em\";s:5:\"right\";s:1:\"0\";s:6:\"bottom\";s:6:\"0.35em\";s:4:\"left\";s:1:\"0\";}s:20:\"checklist_text_color\";s:7:\"#747474\";s:21:\"status_awb_Off_Canvas\";s:1:\"1\";s:29:\"social_links_icon_color_hover\";s:21:\"rgba(190,189,189,0.8)\";s:28:\"social_links_box_color_hover\";s:21:\"rgba(232,232,232,0.8)\";s:23:\"accordion_divider_color\";s:7:\"#e0dede\";s:29:\"accordion_divider_hover_color\";s:7:\"#e0dede\";s:26:\"accordion_title_typography\";a:4:{s:11:\"font-family\";s:10:\"Antic Slab\";s:11:\"font-weight\";s:7:\"regular\";s:5:\"color\";s:7:\"#333333\";s:9:\"font-size\";s:4:\"13px\";}s:28:\"accordion_content_typography\";a:4:{s:11:\"font-family\";s:9:\"Quicksand\";s:11:\"font-weight\";s:3:\"400\";s:9:\"font-size\";s:4:\"14px\";s:5:\"color\";s:7:\"#747474\";}s:29:\"accordian_active_accent_color\";s:0:\"\";s:27:\"faq_accordion_divider_color\";s:7:\"#e0dede\";s:33:\"faq_accordion_divider_hover_color\";s:7:\"#e0dede\";s:30:\"faq_accordion_title_typography\";a:4:{s:11:\"font-family\";s:10:\"Antic Slab\";s:11:\"font-weight\";s:7:\"regular\";s:5:\"color\";s:7:\"#333333\";s:9:\"font-size\";s:4:\"13px\";}s:32:\"faq_accordion_content_typography\";a:4:{s:11:\"font-family\";s:9:\"Quicksand\";s:11:\"font-weight\";s:3:\"400\";s:9:\"font-size\";s:4:\"14px\";s:5:\"color\";s:7:\"#747474\";}s:33:\"faq_accordian_active_accent_color\";s:0:\"\";s:8:\"fav_icon\";a:5:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";s:6:\"height\";s:0:\"\";s:5:\"width\";s:0:\"\";s:9:\"thumbnail\";s:0:\"\";}s:20:\"fav_icon_apple_touch\";a:5:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";s:6:\"height\";s:0:\"\";s:5:\"width\";s:0:\"\";s:9:\"thumbnail\";s:0:\"\";}s:16:\"fav_icon_android\";a:5:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";s:6:\"height\";s:0:\"\";s:5:\"width\";s:0:\"\";s:9:\"thumbnail\";s:0:\"\";}s:13:\"fav_icon_edge\";a:5:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";s:6:\"height\";s:0:\"\";s:5:\"width\";s:0:\"\";s:9:\"thumbnail\";s:0:\"\";}s:13:\"gallery_limit\";s:2:\"-1\";s:23:\"gallery_pagination_type\";s:6:\"button\";s:29:\"gallery_load_more_button_text\";s:9:\"Load More\";s:13:\"page_template\";s:10:\"site_width\";s:16:\"link_hover_color\";s:7:\"#778dae\";s:19:\"status_widget_areas\";s:1:\"1\";s:22:\"social_sharing_padding\";a:4:{s:3:\"top\";s:6:\"1.33em\";s:5:\"right\";s:4:\"20px\";s:6:\"bottom\";s:6:\"1.33em\";s:4:\"left\";s:4:\"20px\";}s:22:\"tabs_mobile_breakpoint\";s:5:\"small\";s:22:\"totop_background_hover\";s:7:\"#778dae\";s:16:\"totop_background\";s:7:\"#333333\";s:16:\"totop_icon_color\";s:7:\"#ffffff\";s:16:\"totop_icon_hover\";s:7:\"#ffffff\";s:30:\"testimonial_name_company_color\";s:7:\"#747474\";}', 'yes');
INSERT INTO `wp_options` (`option_id`, `option_name`, `option_value`, `autoload`) VALUES
(25260, 'fusion_registration_data', 'a:1:{s:5:\"avada\";a:5:{s:13:\"purchase_code\";s:36:\"********-****-****-****-************\";s:8:\"is_valid\";b:1;s:5:\"token\";s:0:\"\";s:6:\"scopes\";a:0:{}s:6:\"errors\";s:0:\"\";}}', 'yes'),
(25261, 'avada_page_options', 'a:0:{}', 'yes');
INSERT INTO `wp_options` (`option_id`, `option_name`, `option_value`, `autoload`) VALUES
(25320, '_site_transient_fusion_wordpress_org_plugins', 'a:5:{s:11:\"woocommerce\";a:27:{s:4:\"name\";s:11:\"WooCommerce\";s:4:\"slug\";s:11:\"woocommerce\";s:7:\"version\";s:5:\"3.8.0\";s:6:\"author\";s:48:\"<a href=\"https://woocommerce.com\">Automattic</a>\";s:14:\"author_profile\";s:40:\"https://profiles.wordpress.org/woothemes\";s:12:\"contributors\";a:8:{s:10:\"automattic\";a:3:{s:7:\"profile\";s:41:\"https://profiles.wordpress.org/automattic\";s:6:\"avatar\";s:82:\"http://0.gravatar.com/avatar/687b3bf96c41800814e3b93766444283?s=96&d=monsterid&r=g\";s:12:\"display_name\";s:10:\"Automattic\";}s:10:\"mikejolley\";a:3:{s:7:\"profile\";s:41:\"https://profiles.wordpress.org/mikejolley\";s:6:\"avatar\";s:82:\"http://0.gravatar.com/avatar/9b87f99f47e30735e1136c5141531fdf?s=96&d=monsterid&r=g\";s:12:\"display_name\";s:11:\"Mike Jolley\";}s:11:\"jameskoster\";a:3:{s:7:\"profile\";s:42:\"https://profiles.wordpress.org/jameskoster\";s:6:\"avatar\";s:82:\"http://1.gravatar.com/avatar/19a6a101c57df54bc1c40adcfba785d8?s=96&d=monsterid&r=g\";s:12:\"display_name\";s:12:\"James Koster\";}s:14:\"claudiosanches\";a:3:{s:7:\"profile\";s:45:\"https://profiles.wordpress.org/claudiosanches\";s:6:\"avatar\";s:82:\"http://0.gravatar.com/avatar/908480753c07509e76322dc17d305c8b?s=96&d=monsterid&r=g\";s:12:\"display_name\";s:15:\"Claudio Sanches\";}s:5:\"kloon\";a:3:{s:7:\"profile\";s:36:\"https://profiles.wordpress.org/kloon\";s:6:\"avatar\";s:82:\"http://2.gravatar.com/avatar/e5aff129655270463bb81a469440e5fc?s=96&d=monsterid&r=g\";s:12:\"display_name\";s:17:\"Gerhard Potgieter\";}s:13:\"rodrigosprimo\";a:3:{s:7:\"profile\";s:44:\"https://profiles.wordpress.org/rodrigosprimo\";s:6:\"avatar\";s:82:\"http://0.gravatar.com/avatar/f2271ae6814a29d8cbf38ae2d0305a72?s=96&d=monsterid&r=g\";s:12:\"display_name\";s:13:\"Rodrigo Primo\";}s:15:\"peterfabian1000\";a:3:{s:7:\"profile\";s:46:\"https://profiles.wordpress.org/peterfabian1000\";s:6:\"avatar\";s:82:\"http://2.gravatar.com/avatar/be249b86dddbf495565a36196625d77a?s=96&d=monsterid&r=g\";s:12:\"display_name\";s:15:\"peterfabian1000\";}s:7:\"vedjain\";a:3:{s:7:\"profile\";s:38:\"https://profiles.wordpress.org/vedjain\";s:6:\"avatar\";s:82:\"http://1.gravatar.com/avatar/7a640eb2847d9a0a0d5e6af385e21881?s=96&d=monsterid&r=g\";s:12:\"display_name\";s:13:\"Vedanshu Jain\";}}s:8:\"requires\";s:3:\"4.9\";s:6:\"tested\";s:5:\"5.2.4\";s:12:\"requires_php\";s:3:\"5.6\";s:6:\"rating\";i:92;s:7:\"ratings\";a:5:{i:5;i:2902;i:4;i:142;i:3;i:68;i:2;i:71;i:1;i:236;}s:11:\"num_ratings\";i:3419;s:15:\"support_threads\";i:1441;s:24:\"support_threads_resolved\";i:1096;s:15:\"active_installs\";i:5000000;s:12:\"last_updated\";s:22:\"2019-11-05 11:33am GMT\";s:5:\"added\";s:10:\"2011-09-27\";s:8:\"homepage\";s:24:\"https://woocommerce.com/\";s:8:\"sections\";a:6:{s:11:\"description\";s:16157:\"<p>WooCommerce is a flexible, open-source eCommerce solution built on WordPress. Whether you&#8217;re launching a business, taking an existing brick and mortar store online, or designing sites for clients you can get started quickly and build exactly the store you want.</p>\n<p>Activate the free WooCommerce plugin on a new or existing WordPress site, follow the optional guided tour, and set up a new store in minutes with:</p>\n<ul>\n<li>Product, Cart, and Checkout pages</li>\n<li>Secure payments by credit card and alternatives</li>\n<li>Configurable shipping options, including flat rates and <a href=\"https://woocommerce.com/products/shipping/?utm_source=wp%20org%20repo%20listing&amp;utm_content=3.6\" rel=\"nofollow\">label printing</a></li>\n<li>Integrate content and commerce across your site via modular blocks</li>\n<li><a href=\"https://woocommerce.com/products/tax/?utm_source=wp%20org%20repo%20listing&amp;utm_content=3.6\" rel=\"nofollow\">Automated tax calculations</a></li>\n<li><a href=\"https://woocommerce.com/products/woocommerce-google-analytics/?utm_source=wp%20org%20repo%20listing&amp;utm_content=3.6\" rel=\"nofollow\">Google Analytics</a>, <a href=\"https://woocommerce.com/products/mailchimp-for-woocommerce/?utm_source=wp%20org%20repo%20listing&amp;utm_content=3.6\" rel=\"nofollow\">MailChimp</a>, and <a href=\"https://woocommerce.com/products/facebook/?utm_source=wp%20org%20repo%20listing&amp;utm_content=3.6\" rel=\"nofollow\">Facebook</a> integration</li>\n<li><a href=\"https://woocommerce.com/posts/woocommerce-admin-a-new-central-dashboard-for-woocommerce/?utm_source=wp%20org%20repo%20listing&amp;utm_content=3.6\" rel=\"nofollow\">Central store dashboard</a> with key metrics, and more.</li>\n</ul>\n<p>Beyond the basics, WooCommerce is fully customizable and extendable:</p>\n<ul>\n<li>Choose a design to suit your brand and industry.</li>\n<li>Enhance your store with free and paid extensions: add features and integrate with local and global eCommerce web services.</li>\n<li>Inspect and modify any aspect of the core plugin code.</li>\n<li>Leverage hooks and filters to modify functions.</li>\n<li>Build on top of the REST API and webhooks.</li>\n</ul>\n<p>Open-source freedoms mean full ownership of content and data forever – plus the expertise of a friendly <a href=\"https://woocommerce.com/meetups/?utm_source=wp%20org%20repo%20listing&amp;utm_content=3.6\" rel=\"nofollow\">global community</a>.</p>\n<p>WooCommerce is built to allow store managers to run an eCommerce site themselves, no web developer needed. There is also a free WooCommerce <a href=\"https://woocommerce.com/mobile/?utm_source=wp%20org%20repo%20listing&amp;utm_content=3.6\" rel=\"nofollow\">mobile app</a> (Android and iOS) for store management on the go.</p>\n<p>WooCommerce is developed and supported by Automattic, the creators of Jetpack and WordPress.com, along with independent contributors. The <a href=\"https://woocommerce.com/product-category/woocommerce-extensions/?utm_source=wp%20org%20repo%20listing&amp;utm_content=3.6\" rel=\"nofollow\">official extension marketplace</a> is on WooCommerce.com.</p>\n<h4>From subscriptions to gym classes to luxury cars</h4>\n<p>With WooCommerce, you can sell both physical and digital goods in all shapes and sizes, offer product variations, complex configurations, and instant downloads to shoppers; and even sell affiliate goods from online marketplaces.</p>\n<p>And those are just the out-of-the-box options. With paid extensions, you can extend your WooCommerce store to take bookings, offer memberships, set up recurring payments by subscription, create dynamic pricing rules, and much more.</p>\n<p>Start a monthly wine subscription box, offer a discount on yoga mats to members who’ve attended 10+ classes, offer configurable hampers or personalized jewelry – it’s all possible with WooCommerce.</p>\n<h4>Comprehensive payment options</h4>\n<p>WooCommerce comes bundled with the ability to accept major credit cards, alternative payment methods, BACS (bank transfers), and cash on delivery.</p>\n<p>For additional options, WooCommerce also integrates with more than 140 region-specific gateways including popular choices like <a href=\"https://woocommerce.com/products/stripe/?utm_source=wp%20org%20repo%20listing&amp;utm_content=3.6\" rel=\"nofollow\">Stripe</a>, <a href=\"https://woocommerce.com/products/woocommerce-gateway-paypal-checkout/?utm_source=wp%20org%20repo%20listing&amp;utm_content=3.6\" rel=\"nofollow\">PayPal</a>, <a href=\"https://woocommerce.com/products/square/?utm_source=wp%20org%20repo%20listing&amp;utm_content=3.6\" rel=\"nofollow\">Square</a> and <a href=\"https://woocommerce.com/products/pay-with-amazon/?utm_source=wp%20org%20repo%20listing&amp;utm_content=3.6\" rel=\"nofollow\">Amazon Pay</a>. <a href=\"https://woocommerce.com/apple-pay/?utm_source=wp%20org%20repo%20listing&amp;utm_content=3.6\" rel=\"nofollow\">Apple Pay</a> and Google Pay are also supported.</p>\n<p>Search for your payment service provider of choice on the <a href=\"https://woocommerce.com/product-category/woocommerce-extensions/payment-gateways/?utm_source=wp%20org%20repo%20listing&amp;utm_content=3.6\" rel=\"nofollow\">official marketplace</a>.</p>\n<h4>Ship locally and globally</h4>\n<p>Shipping with WooCommerce is highly configurable. Adjust the built-in settings to offer free shipping or flat rate shipping, limit your shipments to specific countries by setting up shipping zones, or open your store up to the world.</p>\n<p>Official extensions connect you with hundreds of local and international carriers – including <a href=\"https://woocommerce.com/products/royal-mail/?utm_source=wp%20org%20repo%20listing&amp;utm_content=3.6\" rel=\"nofollow\">Royal Mail</a>, <a href=\"https://woocommerce.com/products/fedex-shipping-module/?utm_source=wp%20org%20repo%20listing&amp;utm_content=3.6\" rel=\"nofollow\">FedEx</a>, and <a href=\"https://woocommerce.com/products/australia-post-shipping-method/?utm_source=wp%20org%20repo%20listing&amp;utm_content=3.6\" rel=\"nofollow\">Australia Post</a> – and let you integrate with <a href=\"https://woocommerce.com/product-category/woocommerce-extensions/shipping-methods/inventory-fulfillment/?utm_source=wp%20org%20repo%20listing&amp;utm_content=3.6\" rel=\"nofollow\">inventory management and fulfilment providers</a>.</p>\n<p>There are also extensions available to add <a href=\"https://woocommerce.com/product-category/woocommerce-extensions/shipping-methods/delivery-shipping-options/?utm_source=wp%20org%20repo%20listing&amp;utm_content=3.6\" rel=\"nofollow\">delivery and shipping options</a> and support strategies like buy-one-get-one free, free gifts, and add-ons. <a href=\"https://woocommerce.com/products/shipping/?utm_source=wp%20org%20repo%20listing&amp;utm_content=3.6\" rel=\"nofollow\">WooCommerce Shipping</a> supports real-time calculations and printing labels at home.</p>\n<h4>Design your store with themes and blocks</h4>\n<p>WooCommerce store design starts with a theme of your choice. There are hundreds of free and paid themes available, including <a href=\"https://woocommerce.com/storefront/?utm_source=wp%20org%20repo%20listing&amp;utm_content=3.6\" rel=\"nofollow\">Storefront</a> by Automattic &#8212; it&#8217;s free to all stores and you can choose to have it installed for you during the guided setup.</p>\n<p>Storefront offers deep WooCommerce integration and prioritizes speed and uptime. You can add your brand and define your style by customizing Storefront yourself or adding one of several industry-themed <a href=\"https://woocommerce.com/product-category/themes/storefront-child-theme-themes/?utm_source=wp%20org%20repo%20listing&amp;utm_content=3.6\" rel=\"nofollow\">Storefront child themes</a>.</p>\n<p>Personalize your store&#8217;s design even more with WooCommerce Blocks (available in WooCommerce 3.6 and above) &#8212; use them to add selections of or single products to any page, for a seamless blending of commerce into content.</p>\n<h4>Customize your store with extensions</h4>\n<p>The easiest way to add features and functionality to a WooCommerce store is with an extension:</p>\n<ul>\n<li>Sell anything &#8211; <a href=\"https://woocommerce.com/products/woocommerce-subscriptions/?utm_source=wp%20org%20repo%20listing&amp;utm_content=3.6\" rel=\"nofollow\">Subscriptions</a>, <a href=\"https://woocommerce.com/products/woocommerce-memberships/?utm_source=wp%20org%20repo%20listing&amp;utm_content=3.6\" rel=\"nofollow\">Memberships</a>, <a href=\"https://woocommerce.com/products/woocommerce-bookings/?utm_source=wp%20org%20repo%20listing&amp;utm_content=3.6\" rel=\"nofollow\">Bookings</a>, <a href=\"https://woocommerce.com/products/product-bundles/?utm_source=wp%20org%20repo%20listing&amp;utm_content=3.6\" rel=\"nofollow\">Product Bundles</a>, and <a href=\"https://woocommerce.com/product-category/woocommerce-extensions/product-type/\" rel=\"nofollow\">more</a>. </li>\n<li>Make your store, your way &#8211; <a href=\"https://woocommerce.com/products/product-add-ons/?utm_source=wp%20org%20repo%20listing&amp;utm_content=3.6\" rel=\"nofollow\">Product Add-Ons</a>, <a href=\"https://woocommerce.com/products/woocommerce-checkout-field-editor/?utm_source=wp%20org%20repo%20listing&amp;utm_content=3.6\" rel=\"nofollow\">Checkout Field Editor</a>, <a href=\"https://woocommerce.com/products/woocommerce-additional-variation-images/?utm_source=wp%20org%20repo%20listing&amp;utm_content=3.6\" rel=\"nofollow\">Additional Variation Images</a>, and <a href=\"https://woocommerce.com/customize-product-pages?utm_source=wp%20org%20repo%20listing&amp;utm_content=3.6\" rel=\"nofollow\">more</a>.</li>\n<li>Customize your shipping options &#8211; <a href=\"https://woocommerce.com/products/table-rate-shipping/?utm_source=wp%20org%20repo%20listing&amp;utm_content=3.6\" rel=\"nofollow\">Table Rate Shipping</a>, <a href=\"https://woocommerce.com/products/shipment-tracking/?utm_source=wp%20org%20repo%20listing&amp;utm_content=3.6\" rel=\"nofollow\">Shipment Tracking</a>, live rates from <a href=\"https://woocommerce.com/product-category/woocommerce-extensions/shipping-methods/shipping-carriers/?utm_source=wp%20org%20repo%20listing&amp;utm_content=3.6\" rel=\"nofollow\">top carriers</a>, and <a href=\"https://woocommerce.com/product-category/woocommerce-extensions/shipping-methods/?utm_source=wp%20org%20repo%20listing&amp;utm_content=3.6\" rel=\"nofollow\">more</a>.</li>\n<li>Find your audience, market to them your way &#8211; <a href=\"https://woocommerce.com/products/google-product-feed/?utm_source=wp%20org%20repo%20listing&amp;utm_content=3.6\" rel=\"nofollow\">Google Product Feed</a>, <a href=\"https://woocommerce.com/products/livechat/?utm_source=wp%20org%20repo%20listing&amp;utm_content=3.6\" rel=\"nofollow\">LiveChat</a>, <a href=\"https://woocommerce.com/products/amazon-ebay-integration/?utm_source=wp%20org%20repo%20listing&amp;utm_content=3.6\" rel=\"nofollow\">Amazon/eBay marketplace integration</a>, and <a href=\"https://woocommerce.com/product-category/woocommerce-extensions/marketing-extensions/?utm_source=wp%20org%20repo%20listing&amp;utm_content=3.6\" rel=\"nofollow\">more</a>.</li>\n<li>Drive sales – <a href=\"https://woocommerce.com/products/dynamic-pricing/?utm_source=wp%20org%20repo%20listing&amp;utm_content=3.6\" rel=\"nofollow\">Dynamic Pricing</a>, <a href=\"https://woocommerce.com/products/smart-coupons/?utm_source=wp%20org%20repo%20listing&amp;utm_content=3.6\" rel=\"nofollow\">Smart Coupons</a>, <a href=\"https://woocommerce.com/products/google-ads/?utm_source=wp%20org%20repo%20listing&amp;utm_content=3.6\" rel=\"nofollow\">Google Ads</a>, and <a href=\"https://woocommerce.com/product-category/woocommerce-extensions/marketing-extensions/promotions/?utm_source=wp%20org%20repo%20listing&amp;utm_content=3.6\" rel=\"nofollow\">more</a>.</li>\n</ul>\n<p>There are hundreds of official extensions reviewed by WooCommerce developers available on the WooCommerce.com marketplace, and many in the WordPress.org repository and on the wider web.</p>\n<h4>Control your data forever</h4>\n<p>WooCommerce gives you complete control – from taxes to stock levels to customer accounts. Add and remove extensions, change your store’s design, and switch themes or hosts or payment service providers, all as you please.</p>\n<p>In a world increasingly aware of the importance of data protection, WooCommerce gives you full ownership over what is tracked and stored. If you opt to share <a href=\"https://woocommerce.com/usage-tracking/?utm_source=wp%20org%20repo%20listing&amp;utm_content=3.6\" rel=\"nofollow\">usage data</a> with us, your data is anonymized and kept secure. At any stage, you can opt out of all forms of tracking while still enjoying all of WooCommerce&#8217;s capabilities.</p>\n<p>With WooCommerce, your data belongs to you. One of the risks of using a hosted eCommerce platform the risk of losing your store if the provider closes. WooCommerce store data is future-proof &#8212; you’re are free to export all your content and take your site  wherever you choose.</p>\n<h4>Why developers like WooCommerce</h4>\n<p>WooCommerce was originally created with developers in mind. Built with a REST API, it integrates with virtually any service. Store data can be accessed anywhere, anytime, 100% securely.</p>\n<p>WooCommerce allows developers to easily create, modify, and scale a store that meets client’s specifications, and to make enhancements either with extensions or with customs solution.</p>\n<p>No matter the size of the store you want to build, WooCommerce has a robust framework that supports stores from basic to enterprise – with content and commerce in a single, central location.</p>\n<p>WooCommerce is audited by a dedicated team of developers who work across time zones to identify and patch any and all discovered bugs. There is comprehensive, easily-accessible documentation that is updated with each release. With our docs, you’ll learn how to create the site your client needs.</p>\n<h4>Join our growing community</h4>\n<p>WooCommerce is one of the fastest-growing eCommerce communities. We’re proud that the helpfulness of the community and wealth of resources available online are frequently cited as reasons our users love it.</p>\n<p>There are 80+ <a href=\"https://woocommerce.com/woocommerce/meetups/?utm_source=wp%20org%20repo%20listing&amp;utm_content=3.6\" rel=\"nofollow\">WooCommerce Meetups</a> taking place in cities across the world that you can attend for free and even get involved in running. WooCommerce also has a regular presence at WordCamps across the globe – and we’d love to meet you.</p>\n<p>If you’re interested in contributing to WooCommerce we’ve got more than 350 contributors, and there’s always room for more. Head to the <a href=\"https://github.com/woocommerce/woocommerce?utm_source=wp%20org%20repo%20listing&amp;utm_content=3.6\" rel=\"nofollow\">WooCommerce GitHub Repository</a> to find out how you can pitch in.</p>\n<p>WooCommerce is currently 100% translated into 24 languages, including Danish, Ukrainian, and Persian. If you’re interested in helping to localize WooCommerce by adding your local language, visit <a href=\"https://translate.wordpress.org/projects/wp-plugins/woocommerce?utm_source=wp%20org%20repo%20listing&amp;utm_content=3.6\" rel=\"nofollow\">translate.wordpress.org</a>.</p>\n<h3>Contributors &amp; Developers</h3>\n<p>“WooCommerce” has been translated into 55 locales. Thank you to <a href=\"https://translate.wordpress.org/projects/wp-plugins/woocommerce/contributors\" rel=\"nofollow\">the translators</a> for their contributions. <a href=\"https://translate.wordpress.org/projects/wp-plugins/woocommerce?utm_source=wp%20org%20repo%20listing&amp;utm_content=3.6\" rel=\"nofollow\">Translate “WooCommerce” into your language</a>.</p>\n<p>INTERESTED IN DEVELOPMENT?<br />\n<a href=\"https://plugins.trac.wordpress.org/browser/woocommerce/\" rel=\"nofollow\">Browse the code</a>, check out the <a href=\"https://plugins.svn.wordpress.org/woocommerce/\" rel=\"nofollow\">SVN repository</a>, or subscribe to the <a href=\"https://plugins.trac.wordpress.org/log/woocommerce/\" rel=\"nofollow\">development log</a> by <a href=\"https://plugins.trac.wordpress.org/log/woocommerce/?limit=100&amp;mode=stop_on_copy&amp;format=rss\" rel=\"nofollow\">RSS</a>.</p>\n\";s:12:\"installation\";s:2294:\"<h4>Minimum Requirements</h4>\n<ul>\n<li>PHP 7.2 or greater is recommended</li>\n<li>MySQL 5.6 or greater is recommended</li>\n</ul>\n<p>Visit the <a href=\"https://docs.woocommerce.com/document/server-requirements/?utm_source=wp%20org%20repo%20listing&amp;utm_content=3.6\" rel=\"nofollow\">WooCommerce server requirements documentation</a> for a detailed list of server requirements.</p>\n<h4>Automatic installation</h4>\n<p>Automatic installation is the easiest option &#8212; WordPress will handles the file transfer, and you won’t need to leave your web browser. To do an automatic install of WooCommerce, log in to your WordPress dashboard, navigate to the Plugins menu, and click “Add New.”</p>\n<p>In the search field type “WooCommerce,” then click “Search Plugins.” Once you’ve found us,  you can view details about it such as the point release, rating, and description. Most importantly of course, you can install it by! Click “Install Now,” and WordPress will take it from there.</p>\n<h4>Manual installation</h4>\n<p>Manual installation method requires downloading the WooCommerce plugin and uploading it to your web server via your favorite FTP application. The WordPress codex contains <a href=\"https://wordpress.org/support/article/managing-plugins/#manual-plugin-installation\">instructions on how to do this here</a>.</p>\n<h4>Updating</h4>\n<p>Automatic updates should work smoothly, but we still recommend you back up your site.</p>\n<p>If you encounter issues with the shop/category pages after an update, flush the permalinks by going to WordPress &gt; Settings &gt; Permalinks and hitting “Save.” That should return things to normal.</p>\n<h4>Sample data</h4>\n<p>WooCommerce comes with some sample data you can use to see how products look; import sample_products.xml via the <a href=\"https://wordpress.org/plugins/wordpress-importer/\">WordPress importer</a>. You can also use the core <a href=\"https://docs.woocommerce.com/document/product-csv-importer-exporter/?utm_source=wp%20org%20repo%20listing&amp;utm_content=3.6\" rel=\"nofollow\">CSV importer</a> or our <a href=\"https://woocommerce.com/products/product-csv-import-suite/?utm_source=wp%20org%20repo%20listing&amp;utm_content=3.6\" rel=\"nofollow\">CSV Import Suite extension</a> to import sample_products.csv</p>\n\";s:3:\"faq\";s:2755:\"\n<h4>Where can I find WooCommerce documentation and user guides?</h4>\n<p>\n<p>For help setting up and configuring WooCommerce please refer to our <a href=\"https://docs.woocommerce.com/documentation/plugins/woocommerce/getting-started/?utm_source=wp%20org%20repo%20listing&amp;utm_content=3.6\" rel=\"nofollow\">user guide</a></p>\n<p>For extending or theming WooCommerce, see our <a href=\"https://docs.woocommerce.com/documentation/plugins/woocommerce/woocommerce-codex/?utm_source=wp%20org%20repo%20listing&amp;utm_content=3.6\" rel=\"nofollow\">codex</a>.</p>\n</p>\n<h4>Where can I get support or talk to other users?</h4>\n<p>\n<p>If you get stuck, you can ask for help in the <a href=\"https://wordpress.org/support/plugin/woocommerce\">WooCommerce Plugin Forum</a>.</p>\n<p>For help with paid extensions from WooCommerce.com, use <a href=\"https://woocommerce.com/my-account/tickets/?utm_source=wp%20org%20repo%20listing&amp;utm_content=3.6\" rel=\"nofollow\">our helpdesk</a>.</p>\n</p>\n<h4>Will WooCommerce work with my theme?</h4>\n<p>\n<p>Yes! WooCommerce will work with any theme, but may require some styling. Please see our <a href=\"https://docs.woocommerce.com/documentation/plugins/woocommerce/woocommerce-codex/?utm_source=wp%20org%20repo%20listing&amp;utm_content=3.6\" rel=\"nofollow\">codex</a> for help. If you&#8217;re looking for a theme with built in WooCommerce integration we recommend <a href=\"https://woocommerce.com/storefront/?utm_source=wp%20org%20repo%20listing&amp;utm_content=3.6\" rel=\"nofollow\">Storefront</a>.</p>\n</p>\n<h4>Where can I request new features, eCommerce themes, and extensions?</h4>\n<p>\n<p>You can vote on and request new features and extensions on our <a href=\"http://ideas.woocommerce.com/forums/133476-woocommerce?utm_source=wp%20org%20repo%20listing&amp;utm_content=3.6\" rel=\"nofollow\">WooIdeas board</a></p>\n</p>\n<h4>Where can I report bugs or contribute to the project?</h4>\n<p>\n<p>Report bugs on the <a href=\"https://github.com/woocommerce/woocommerce/issues?utm_source=wp%20org%20repo%20listing&amp;utm_content=3.6\" rel=\"nofollow\">WooCommerce GitHub repository</a>. You can also report them in our <a href=\"https://wordpress.org/support/plugin/woocommerce\">support forum</a>.</p>\n</p>\n<h4>Where can I find the REST API documentation?</h4>\n<p>\n<p>You can find the documentation of our REST API on the <a href=\"https://woocommerce.github.io/woocommerce-rest-api-docs/?utm_source=wp%20org%20repo%20listing&amp;utm_content=3.6\" rel=\"nofollow\">WooCommerce REST API Docs</a>.</p>\n</p>\n<h4>WooCommerce is awesome! Can I contribute?</h4>\n<p>\n<p>Yes you can! Join in on our <a href=\"https://github.com/woocommerce/woocommerce/?utm_source=wp%20org%20repo%20listing&amp;utm_content=3.6\" rel=\"nofollow\">GitHub repository</a>.</p>\n</p>\n\n\";s:9:\"changelog\";s:12267:\"<h4>3.8.0 &#8211; 2019-01-10</h4>\n<ul>\n<li>Enhancement &#8211; Show error message in &#8220;My Account &#8211; view order&#8221; if order does not exist. #24435</li>\n<li>Enhancement &#8211; Add support to allow connect and install for in-app purchase flow. #24451</li>\n<li>Enhancement &#8211; Declared support to Unicode CLDR. #24564</li>\n<li>Enhancement &#8211; Declared support for PHP 7.4 in CI by removing PHP 7.4 from list of allowed failures. #24668</li>\n<li>Enhancement &#8211; Update the recommended PHP version to 7.0 and the recommended WP version to 5.0. #24730</li>\n<li>Enhancement &#8211; Change On Boarding Wizard to opt out of usage tracking by default. #24680</li>\n<li>Enhancement &#8211; Add <code>Available on backorder</code> message for products available on backorder. #24559</li>\n<li>Tweak &#8211; Hide Vietnam&#8217;s state field. #24158</li>\n<li>Tweak &#8211; Better wording when no downloads are available on My Account &gt; Downloads. #24172</li>\n<li>Tweak &#8211; Only consider orders created via checkout to hold stock. #24159</li>\n<li>Tweak &#8211; Stop to load order data twice in &#8220;View order&#8221; screen on &#8220;My Account&#8221; page. #24437</li>\n<li>Tweak &#8211; Prevent PHP warnings in tracker if order doesn&#8217;t have a created date yet. #24441</li>\n<li>Tweak &#8211; Use <code>wc_get_checkout_url()</code> to get checkout URL. #24544</li>\n<li>Tweak &#8211; Maintain value of select fields in credit card form. #24720</li>\n<li>Tweak &#8211; Prevent filter per category while exporting product variations. #24517</li>\n<li>Tweak &#8211; Better wording for subtotal of items in cart and review order. #24440</li>\n<li>Tweak &#8211; Prevent new lines in product quantity in checkout details. #24311</li>\n<li>Tweak &#8211; Add a tooltip in the &#8220;Coupon expity date&#8221; field. #24749</li>\n<li>Tweak &#8211; CSS styling changes for WP 5.3. #24832</li>\n<li>Template &#8211; Moved HTML for displaying product price filter widget to a new template <code>product price filter widget</code>. #23384</li>\n<li>Accessibility &#8211; Make $subtext color darker. #24739</li>\n<li>Dev &#8211; Consistent register/login submit button css class names. Preserve old class names as well for backwards compatibility. #23701</li>\n<li>Dev &#8211; Added woocommerce_disable_password_change_notification filter, set to false by default. #24154</li>\n<li>Dev &#8211; Add filter <code>woocommerce_cart_item_removed_message</code> and <code>woocommerce_cart_product_cannot_be_purchased_message</code> to filter notice content when an item is removed from cart, or when a product cannot be purchased. #24176</li>\n<li>Dev &#8211; Prevent fatal error if trying to run <code>wc_load_cart()</code> before <code>before_woocommerce_init</code>. #24198</li>\n<li>Dev &#8211; Add woocommerce_get_zone_criteria filter hook to add custom criteria for matching zone ID. #24199</li>\n<li>Dev &#8211; Fire actions <code>woocommerce_before_delete_product_variation</code>, <code>woocommerce_delete_product_variation</code> and <code>woocommerce_trash_product_variation</code> appropriately when deleting or trashing product variations. #24239</li>\n<li>Dev &#8211; In filter <code>woocommerce_update_product_stock_query</code> use <code>$new_stock</code> instead of <code>$stock_quantity</code>. #24229</li>\n<li>Dev &#8211; Introduced woocommerce_prevent_adjust_line_item_product_stock filter. #24279</li>\n<li>Dev &#8211; Introduced <code>woocommerce_logout_default_redirect_url</code> filter to allow custom default URL. #24282</li>\n<li>Dev &#8211; Added woocommerce_sort_fees_callback filter. #24280</li>\n<li>Dev &#8211; Remove deprecated i18n/states directory. #24364</li>\n<li>Dev &#8211; Add filter <code>woocommerce_shipping_show_shipping_calculator</code> for showing shipping calculator. #24375</li>\n<li>Dev &#8211; Corrected UG states location. #24388</li>\n<li>Dev &#8211; Remove deprecations notices with PHP 7.4 by changing parameter order for <code>implode</code>. #24396</li>\n<li>Dev &#8211; Add &#8220;$this` param to email filter for additional_content added in 3.7. #24399</li>\n<li>Dev &#8211; Add <code>woocommerce_product_import_process_item_data</code> filter to allow modifying a row before importing. #24412</li>\n<li>Dev &#8211; Fixed warnings when error_get_last() returns null. #24442</li>\n<li>Dev &#8211; Use brackets instead of braces to avoid deprecation notice in PHP 7.4. #24460</li>\n<li>Dev &#8211; Implement Puppeteer&#8217;s architecture for running E2E tests locally. #24479</li>\n<li>Dev &#8211; Remove call to get_magic_quotes_runtime() as it is deprecated as of PHP 7.4. #24485</li>\n<li>Dev &#8211; Return value of <code>$mailer-&gt;send()</code> in <code>wc_mail</code> function. #24505</li>\n<li>Dev &#8211; Remove Selenium e2e tests &amp; add Puppeteer new product e2e test. #24513</li>\n<li>Dev &#8211; Add a filter <code>woocommerce_ajax_add_order_item_validation</code> to allow validations in <code>add_order_item</code> function. #24518</li>\n<li>Dev &#8211; Use <code>wc_get_cart_url</code> instead of <code>wc_get_page_permalink( \'cart\' )</code> because former has a filter <code>woocommerce_get_cart_url</code> to allow customization. #24530</li>\n<li>Dev &#8211; New <code>woocommerce_product_after_tabs</code> action hook added. #24694</li>\n<li>Dev &#8211; Enable append hashes on custom events (like ajax requests) #24665 </li>\n<li>Dev &#8211; Introduced <code>woocommerce_order_get_formatted_billing_address</code> and <code>woocommerce_order_get_formatted_shipping_address</code> filters. #24677</li>\n<li>Dev &#8211; WC_Abstract_Order::recalculate_coupons() is public now. #24740</li>\n<li>Dev &#8211; Added &#8216;applied_coupon&#8217; trigger to checkout.js. #24406</li>\n<li>Dev &#8211; Introduced woocommerce_output_cart_shortcode_content filter. #24738</li>\n<li>Dev &#8211; Add WPML compatibility to the geolocation URL. #24722</li>\n<li>Dev &#8211; Validate server requirements in WCCCOM Site Installer endpoints. #24690</li>\n<li>Dev &#8211; Introduced woocommerce_payment_token_class filter. #24542</li>\n<li>Dev &#8211; Add support for post type count to system status report. #24536</li>\n<li>Dev &#8211; Check for max discount to be -ve to prevent overwriting refunded fee amount. #24341</li>\n<li>Dev: Add filter woocommerce_european_union_countries to the method WC_Countries::get_european_union_countries(). #24741</li>\n<li>Dev &#8211; Allow WC_Product_Query sort products by include order. #24294</li>\n<li>Dev &#8211; Removed duplicated include of WC_Admin_Importers. #24751</li>\n<li>Dev &#8211; Refactor minimum requirement notice to use constant for easier changes in the future. #24830</li>\n<li>Fix &#8211; Clean products transients when term is removed. #23991</li>\n<li>Fix &#8211; Only add the image node to structured data if product has image. #24191</li>\n<li>Fix &#8211; Product attribute terms endpoint in legacy REST API v3 by converting <code>attribute_id</code> to int. #24203</li>\n<li>Fix &#8211; Prevent duplicate processing/stock reduction when IPN or PDT notifications are enabled by checking if order is not already in <code>processing</code> or <code>completed</code> status. #24249</li>\n<li>Fix &#8211; Position of ID section in mobile rows actions when displaying the list of products in the admin. #24277</li>\n<li>Fix &#8211; Endpoints URLs to follow slashes preferences from WordPress permalinks. #24283</li>\n<li>Fix &#8211; Ensure that postcode validation doesn&#8217;t return any whitespace on beginning and end of a postcode. #24284</li>\n<li>Fix &#8211; Shipping classes sort under products alphabetically. #24291</li>\n<li>Fix &#8211; Shipping rates layout in admin settings. #24327</li>\n<li>Fix &#8211; Retain the focus on the select box when product variation is changed. #24339</li>\n<li>Fix &#8211; Prevent PHP notice in WC_Order_Item_Data_Store::get_order_item_type() when there is no entry in the database for the order item ID passed. #24353</li>\n<li>Fix &#8211; Add translation in class-wc-shipping.php for matching zone message. #24366</li>\n<li>Fix &#8211; Previewing email template. #24380</li>\n<li>Fix &#8211; Check if order exist before generate hash for downloads. #24384</li>\n<li>Fix &#8211; Ensure WC_Product_Data_Store_CPT::is_existing_sku() return boolean. #24385</li>\n<li>Fix &#8211; <code>function_exists</code> check for wc_hex_is_light(). #24391</li>\n<li>Fix &#8211; Removed Emoji from default additional email content due problem on some database that doesn&#8217;t allow Emojis. #24450</li>\n<li>Fix &#8211; Fixed escaping on an attribute in <code>class-wc-admin-menus.php</code>. #24466</li>\n<li>Fix &#8211; Add translation for image alt attribute text in multiple places. #24467, #24468, #24469</li>\n<li>Fix &#8211; Uneven padding in the input field with class &#8220;location-input&#8221; in on boarding wizard. #24476</li>\n<li>Fix &#8211; Duplicate id in pages settings. #24478</li>\n<li>Fix &#8211; Use <code>esc_attr_e</code> instead of <code>esc_html_e</code> for escaping an attribute in multiple places. #24481, #24520, #24521, #24522, #24523, #24524</li>\n<li>Fix &#8211; Use <code>esc_attr__</code> instead of <code>esc_html__</code> in escaping attributes string. #24525, #24529</li>\n<li>Fix &#8211; Typo fix in payment captured error message. #24501</li>\n<li>Fix &#8211; Documentation URL in failed order email content. #24535</li>\n<li>Fix &#8211; &#8220;Add to cart&#8221; links in feed. #24545</li>\n<li>Fix &#8211; Escaping in Storefront banner. #24546</li>\n<li>Fix &#8211; Use <code>wp_kses_post</code> to allow certain html tags in extensions page. #24589</li>\n<li>Fix &#8211; Escape <code>$prefix</code> in item download links. #24601</li>\n<li>Fix &#8211; Use <code>esc_attr</code> instead of <code>esc_html</code> in multiple places for proper escaping. #24613, #24614</li>\n<li>Fix &#8211; Use <code>esc_html</code> instead of <code>esc_attr</code> in multiple places for proper escaping. #24616</li>\n<li>Fix &#8211; Use <code>esc_html_e</code> instead of <code>_e</code> in multiple places for proper escaping. #24615, #24618, #24630</li>\n<li>Fix &#8211; Use <code>esc_html__</code> instead of <code>esc_html</code> for proper escaping and some typo fixes. #24639</li>\n<li>Fix &#8211; Add no-store and remove max-age header (no longer needed). #24652</li>\n<li>Fix &#8211; Use correct meta value for <code>downloadable</code> column in product lookup table regenerate function. #24681</li>\n<li>Fix &#8211; Admin sub-menus becoming unaligned when scrolling down in the orders page when there are no orders. #24688</li>\n<li>Fix &#8211; OWB country and sell in person alignment. #24700</li>\n<li>Fix &#8211; Domain replacement script now replaces both double and single quoted <code>woo-gutenberg-products-block</code> with <code>woocommerce</code> in both PHP and JavaScript files. #24696</li>\n<li>Fix &#8211; Convert <code>current_user_id</code> to string in some places to prevent unnecessary session database updates. #24016</li>\n<li>Fix &#8211; Fixed description of failed order emails. #24737</li>\n<li>Fix &#8211; Fixed Photoswipe styles. #24296</li>\n<li>Fix &#8211; Also consider refunded item when updating order and adjusting stocks. #24745</li>\n<li>Fix &#8211; Handle 0 attribute value for variations correctly. #24750</li>\n<li>Fix &#8211; Fixed spaces in form fields of External Products. #24295</li>\n<li>Fix &#8211; Removed links to downloadable products from refund emails. #24952</li>\n<li>Localization &#8211; Add Zambia&#8217;s Provinces to the list of states. #24307</li>\n<li>Localization &#8211; Adaptation of the order of last name and first name and addresses in Japan. #24336</li>\n<li>Localization &#8211; Fixed Namibian dollar symbol. #24438</li>\n<li>Localization &#8211; Change localization tag <code>action-scheduler</code> to <code>woocommerce</code>. #24474</li>\n<li>Localization &#8211; Fixed missing US Minor Outlying Islands states. #24826</li>\n<li>Security &#8211; Add an exit after the redirect when checking author archive capabilities for customers.</li>\n<li>Security &#8211; Ensure 404 pages with single product urls cannot be exploited using Open Redirect.</li>\n</ul>\n<p><a href=\"https://raw.githubusercontent.com/woocommerce/woocommerce/master/CHANGELOG.txt\" rel=\"nofollow\">See changelog for all versions</a>.</p>\n\";s:11:\"screenshots\";s:1035:\"<ol><li><a href=\"https://ps.w.org/woocommerce/assets/screenshot-1.jpg?rev=2074177\"><img src=\"https://ps.w.org/woocommerce/assets/screenshot-1.jpg?rev=2074177\" alt=\"\"></a></li><li><a href=\"https://ps.w.org/woocommerce/assets/screenshot-2.jpg?rev=2074177\"><img src=\"https://ps.w.org/woocommerce/assets/screenshot-2.jpg?rev=2074177\" alt=\"\"></a></li><li><a href=\"https://ps.w.org/woocommerce/assets/screenshot-3.jpg?rev=2074177\"><img src=\"https://ps.w.org/woocommerce/assets/screenshot-3.jpg?rev=2074177\" alt=\"\"></a></li><li><a href=\"https://ps.w.org/woocommerce/assets/screenshot-4.jpg?rev=2074177\"><img src=\"https://ps.w.org/woocommerce/assets/screenshot-4.jpg?rev=2074177\" alt=\"\"></a></li><li><a href=\"https://ps.w.org/woocommerce/assets/screenshot-5.jpg?rev=2074177\"><img src=\"https://ps.w.org/woocommerce/assets/screenshot-5.jpg?rev=2074177\" alt=\"\"></a></li><li><a href=\"https://ps.w.org/woocommerce/assets/screenshot-6.jpg?rev=2074177\"><img src=\"https://ps.w.org/woocommerce/assets/screenshot-6.jpg?rev=2074177\" alt=\"\"></a></li></ol>\";s:7:\"reviews\";s:14547:\"<div class=\"review\">\n	<div class=\"review-head\">\n		<div class=\"reviewer-info\">\n			<div class=\"review-title-section\">\n				<h4 class=\"review-title\">No price by attribute ? !!! Every other e-commerce platform has it!</h4>\n				<div class=\"star-rating\">\n				<div class=\"wporg-ratings\" aria-label=\"1 out of 5 stars\" data-title-template=\"%s out of 5 stars\" data-rating=\"1\" style=\"color:#ffb900;\"><span class=\"star dashicons dashicons-star-filled\"></span><span class=\"star dashicons dashicons-star-empty\"></span><span class=\"star dashicons dashicons-star-empty\"></span><span class=\"star dashicons dashicons-star-empty\"></span><span class=\"star dashicons dashicons-star-empty\"></span></div>				</div>\n			</div>\n			<p class=\"reviewer\">\n				By <a href=\"https://profiles.wordpress.org/tazmandev\"><img alt=\'\' src=\'http://1.gravatar.com/avatar/49b295a4eef36bdb5c3e43a3eee0d2ec?s=16&#038;d=monsterid&#038;r=g\' srcset=\'http://1.gravatar.com/avatar/49b295a4eef36bdb5c3e43a3eee0d2ec?s=32&#038;d=monsterid&#038;r=g 2x\' class=\'avatar avatar-16 photo\' height=\'16\' width=\'16\' /></a><a href=\"https://profiles.wordpress.org/tazmandev\" class=\"reviewer-name\">tazmandev</a> on <span class=\"review-date\">November 13, 2019</span>			</p>\n		</div>\n	</div>\n	<div class=\"review-body\">As incredible as it is, WooCommerce DOES NOT have the simple option to set a price/cost by attribute. \nFor example +5$ for \"\"gift wrapping\"\nor  +10% for some large size. \n\nIt is only possible with payed plugins, BUT, these plugins create other problems, as they do use the native attributes for pricing, thus, when you need other options, like price by quantity, you cannot combine them. So you get stuck, and go back to Prestashop or Opencart or any other cart system that have these basic options integrated by default. \n\nUnfortunately, you only get to discover this things after you worked hard to setup your shop and payed for some decent woocommerce theme.  \n\nI will change my rating if you can provide a decent reason (other than offering it in premium plugins)</div>\n</div>\n<div class=\"review\">\n	<div class=\"review-head\">\n		<div class=\"reviewer-info\">\n			<div class=\"review-title-section\">\n				<h4 class=\"review-title\">variable product function does not work</h4>\n				<div class=\"star-rating\">\n				<div class=\"wporg-ratings\" aria-label=\"1 out of 5 stars\" data-title-template=\"%s out of 5 stars\" data-rating=\"1\" style=\"color:#ffb900;\"><span class=\"star dashicons dashicons-star-filled\"></span><span class=\"star dashicons dashicons-star-empty\"></span><span class=\"star dashicons dashicons-star-empty\"></span><span class=\"star dashicons dashicons-star-empty\"></span><span class=\"star dashicons dashicons-star-empty\"></span></div>				</div>\n			</div>\n			<p class=\"reviewer\">\n				By <a href=\"https://profiles.wordpress.org/bethca\"><img alt=\'\' src=\'http://2.gravatar.com/avatar/be2a3144a2f0f6a544dba3435d02528b?s=16&#038;d=monsterid&#038;r=g\' srcset=\'http://2.gravatar.com/avatar/be2a3144a2f0f6a544dba3435d02528b?s=32&#038;d=monsterid&#038;r=g 2x\' class=\'avatar avatar-16 photo\' height=\'16\' width=\'16\' /></a><a href=\"https://profiles.wordpress.org/bethca\" class=\"reviewer-name\">bethca</a> on <span class=\"review-date\">November 12, 2019</span>			</p>\n		</div>\n	</div>\n	<div class=\"review-body\">Zero support. Variable product function does not work at all. \n\nif you want to sell variations of one product (ie small, medium, large) this won\'t work for you. \n\nDon\'t bother trying to get support. </div>\n</div>\n<div class=\"review\">\n	<div class=\"review-head\">\n		<div class=\"reviewer-info\">\n			<div class=\"review-title-section\">\n				<h4 class=\"review-title\">It&#039;s my go-to e-commerce solution.</h4>\n				<div class=\"star-rating\">\n				<div class=\"wporg-ratings\" aria-label=\"4 out of 5 stars\" data-title-template=\"%s out of 5 stars\" data-rating=\"4\" style=\"color:#ffb900;\"><span class=\"star dashicons dashicons-star-filled\"></span><span class=\"star dashicons dashicons-star-filled\"></span><span class=\"star dashicons dashicons-star-filled\"></span><span class=\"star dashicons dashicons-star-filled\"></span><span class=\"star dashicons dashicons-star-empty\"></span></div>				</div>\n			</div>\n			<p class=\"reviewer\">\n				By <a href=\"https://profiles.wordpress.org/1sky\"><img alt=\'\' src=\'http://0.gravatar.com/avatar/f5e2667e84dd87bd0b65e91c03336995?s=16&#038;d=monsterid&#038;r=g\' srcset=\'http://0.gravatar.com/avatar/f5e2667e84dd87bd0b65e91c03336995?s=32&#038;d=monsterid&#038;r=g 2x\' class=\'avatar avatar-16 photo\' height=\'16\' width=\'16\' /></a><a href=\"https://profiles.wordpress.org/1sky\" class=\"reviewer-name\">1sky</a> on <span class=\"review-date\">November 9, 2019</span>			</p>\n		</div>\n	</div>\n	<div class=\"review-body\">I love the price and the customization options of WooCommerce. Those two facets of WooCommerce alone are worth 4 stars to me. I subtract the 5th star because there are tons of tweaks I like to make to try to get my site to look and behave just right which is very time-consuming. I\'ve never gotten a totally perfect final website because so many tweaks take so much time to research and ask for help with that sometimes I will just accept how something looks or works, even if I don\'t love it. Learning how to code PHP stuff would probably make tweaking a Wordpress.org site a little easier, but I haven\'t taken that step yet. For now, I am doing okay by googling things and asking for help in support forums. </div>\n</div>\n<div class=\"review\">\n	<div class=\"review-head\">\n		<div class=\"reviewer-info\">\n			<div class=\"review-title-section\">\n				<h4 class=\"review-title\">Best e-commerce solution</h4>\n				<div class=\"star-rating\">\n				<div class=\"wporg-ratings\" aria-label=\"5 out of 5 stars\" data-title-template=\"%s out of 5 stars\" data-rating=\"5\" style=\"color:#ffb900;\"><span class=\"star dashicons dashicons-star-filled\"></span><span class=\"star dashicons dashicons-star-filled\"></span><span class=\"star dashicons dashicons-star-filled\"></span><span class=\"star dashicons dashicons-star-filled\"></span><span class=\"star dashicons dashicons-star-filled\"></span></div>				</div>\n			</div>\n			<p class=\"reviewer\">\n				By <a href=\"https://profiles.wordpress.org/wellwisher\"><img alt=\'\' src=\'http://2.gravatar.com/avatar/b890d7e1bd374989462dc021f836e024?s=16&#038;d=monsterid&#038;r=g\' srcset=\'http://2.gravatar.com/avatar/b890d7e1bd374989462dc021f836e024?s=32&#038;d=monsterid&#038;r=g 2x\' class=\'avatar avatar-16 photo\' height=\'16\' width=\'16\' /></a><a href=\"https://profiles.wordpress.org/wellwisher\" class=\"reviewer-name\">Jamsheer K <small>(wellwisher)</small></a> on <span class=\"review-date\">November 9, 2019</span>			</p>\n		</div>\n	</div>\n	<div class=\"review-body\">Woocommerce is Best among the all e-commerce solutions</div>\n</div>\n<div class=\"review\">\n	<div class=\"review-head\">\n		<div class=\"reviewer-info\">\n			<div class=\"review-title-section\">\n				<h4 class=\"review-title\">Harika</h4>\n				<div class=\"star-rating\">\n				<div class=\"wporg-ratings\" aria-label=\"5 out of 5 stars\" data-title-template=\"%s out of 5 stars\" data-rating=\"5\" style=\"color:#ffb900;\"><span class=\"star dashicons dashicons-star-filled\"></span><span class=\"star dashicons dashicons-star-filled\"></span><span class=\"star dashicons dashicons-star-filled\"></span><span class=\"star dashicons dashicons-star-filled\"></span><span class=\"star dashicons dashicons-star-filled\"></span></div>				</div>\n			</div>\n			<p class=\"reviewer\">\n				By <a href=\"https://profiles.wordpress.org/hasandogan\"><img alt=\'\' src=\'http://0.gravatar.com/avatar/37a8cdcc1741adfe76c9d86b46f4c1a8?s=16&#038;d=monsterid&#038;r=g\' srcset=\'http://0.gravatar.com/avatar/37a8cdcc1741adfe76c9d86b46f4c1a8?s=32&#038;d=monsterid&#038;r=g 2x\' class=\'avatar avatar-16 photo\' height=\'16\' width=\'16\' /></a><a href=\"https://profiles.wordpress.org/hasandogan\" class=\"reviewer-name\">hasandogan</a> on <span class=\"review-date\">November 8, 2019</span>			</p>\n		</div>\n	</div>\n	<div class=\"review-body\">Gerçekten çok beyendim. teşekürler</div>\n</div>\n<div class=\"review\">\n	<div class=\"review-head\">\n		<div class=\"reviewer-info\">\n			<div class=\"review-title-section\">\n				<h4 class=\"review-title\">Great Product!</h4>\n				<div class=\"star-rating\">\n				<div class=\"wporg-ratings\" aria-label=\"5 out of 5 stars\" data-title-template=\"%s out of 5 stars\" data-rating=\"5\" style=\"color:#ffb900;\"><span class=\"star dashicons dashicons-star-filled\"></span><span class=\"star dashicons dashicons-star-filled\"></span><span class=\"star dashicons dashicons-star-filled\"></span><span class=\"star dashicons dashicons-star-filled\"></span><span class=\"star dashicons dashicons-star-filled\"></span></div>				</div>\n			</div>\n			<p class=\"reviewer\">\n				By <a href=\"https://profiles.wordpress.org/shach\"><img alt=\'\' src=\'http://2.gravatar.com/avatar/e53639c06ab582700de96fdbf13cdf42?s=16&#038;d=monsterid&#038;r=g\' srcset=\'http://2.gravatar.com/avatar/e53639c06ab582700de96fdbf13cdf42?s=32&#038;d=monsterid&#038;r=g 2x\' class=\'avatar avatar-16 photo\' height=\'16\' width=\'16\' /></a><a href=\"https://profiles.wordpress.org/shach\" class=\"reviewer-name\">shach</a> on <span class=\"review-date\">November 8, 2019</span>			</p>\n		</div>\n	</div>\n	<div class=\"review-body\">keep on developing a very easy to use product, and easy to implement!</div>\n</div>\n<div class=\"review\">\n	<div class=\"review-head\">\n		<div class=\"reviewer-info\">\n			<div class=\"review-title-section\">\n				<h4 class=\"review-title\">You know that you are wonderful</h4>\n				<div class=\"star-rating\">\n				<div class=\"wporg-ratings\" aria-label=\"5 out of 5 stars\" data-title-template=\"%s out of 5 stars\" data-rating=\"5\" style=\"color:#ffb900;\"><span class=\"star dashicons dashicons-star-filled\"></span><span class=\"star dashicons dashicons-star-filled\"></span><span class=\"star dashicons dashicons-star-filled\"></span><span class=\"star dashicons dashicons-star-filled\"></span><span class=\"star dashicons dashicons-star-filled\"></span></div>				</div>\n			</div>\n			<p class=\"reviewer\">\n				By <a href=\"https://profiles.wordpress.org/sepehramiri1370\"><img alt=\'\' src=\'http://2.gravatar.com/avatar/5b216ae9be019962b93922ab1fdc2519?s=16&#038;d=monsterid&#038;r=g\' srcset=\'http://2.gravatar.com/avatar/5b216ae9be019962b93922ab1fdc2519?s=32&#038;d=monsterid&#038;r=g 2x\' class=\'avatar avatar-16 photo\' height=\'16\' width=\'16\' /></a><a href=\"https://profiles.wordpress.org/sepehramiri1370\" class=\"reviewer-name\">sepehramiri1370</a> on <span class=\"review-date\">November 8, 2019</span>			</p>\n		</div>\n	</div>\n	<div class=\"review-body\">A complete, flawlessly developed system that can build your store beyond effective expectation</div>\n</div>\n<div class=\"review\">\n	<div class=\"review-head\">\n		<div class=\"reviewer-info\">\n			<div class=\"review-title-section\">\n				<h4 class=\"review-title\">Best Channel for us</h4>\n				<div class=\"star-rating\">\n				<div class=\"wporg-ratings\" aria-label=\"5 out of 5 stars\" data-title-template=\"%s out of 5 stars\" data-rating=\"5\" style=\"color:#ffb900;\"><span class=\"star dashicons dashicons-star-filled\"></span><span class=\"star dashicons dashicons-star-filled\"></span><span class=\"star dashicons dashicons-star-filled\"></span><span class=\"star dashicons dashicons-star-filled\"></span><span class=\"star dashicons dashicons-star-filled\"></span></div>				</div>\n			</div>\n			<p class=\"reviewer\">\n				By <a href=\"https://profiles.wordpress.org/anthoneydisouza4\"><img alt=\'\' src=\'http://0.gravatar.com/avatar/665c8c6dd54c9b946a18d213ab904dfd?s=16&#038;d=monsterid&#038;r=g\' srcset=\'http://0.gravatar.com/avatar/665c8c6dd54c9b946a18d213ab904dfd?s=32&#038;d=monsterid&#038;r=g 2x\' class=\'avatar avatar-16 photo\' height=\'16\' width=\'16\' /></a><a href=\"https://profiles.wordpress.org/anthoneydisouza4\" class=\"reviewer-name\">anthoneydisouza4</a> on <span class=\"review-date\">November 7, 2019</span>			</p>\n		</div>\n	</div>\n	<div class=\"review-body\">\nI am glad to use, its friendly and easy to manage for the person like me without much technical knowledge. \n\nvery good customer service &amp; technical support by the team. \n\nThanks...</div>\n</div>\n<div class=\"review\">\n	<div class=\"review-head\">\n		<div class=\"reviewer-info\">\n			<div class=\"review-title-section\">\n				<h4 class=\"review-title\">Ottimo E-commerce</h4>\n				<div class=\"star-rating\">\n				<div class=\"wporg-ratings\" aria-label=\"5 out of 5 stars\" data-title-template=\"%s out of 5 stars\" data-rating=\"5\" style=\"color:#ffb900;\"><span class=\"star dashicons dashicons-star-filled\"></span><span class=\"star dashicons dashicons-star-filled\"></span><span class=\"star dashicons dashicons-star-filled\"></span><span class=\"star dashicons dashicons-star-filled\"></span><span class=\"star dashicons dashicons-star-filled\"></span></div>				</div>\n			</div>\n			<p class=\"reviewer\">\n				By <a href=\"https://profiles.wordpress.org/luciotipicosalento\"><img alt=\'\' src=\'http://2.gravatar.com/avatar/e6dcfab0e3752f916b80827a6f5ad5ca?s=16&#038;d=monsterid&#038;r=g\' srcset=\'http://2.gravatar.com/avatar/e6dcfab0e3752f916b80827a6f5ad5ca?s=32&#038;d=monsterid&#038;r=g 2x\' class=\'avatar avatar-16 photo\' height=\'16\' width=\'16\' /></a><a href=\"https://profiles.wordpress.org/luciotipicosalento\" class=\"reviewer-name\">luciotipicosalento</a> on <span class=\"review-date\">November 6, 2019</span>			</p>\n		</div>\n	</div>\n	<div class=\"review-body\">Ottimo plugin per ecommerce, facile da usare.</div>\n</div>\n<div class=\"review\">\n	<div class=\"review-head\">\n		<div class=\"reviewer-info\">\n			<div class=\"review-title-section\">\n				<h4 class=\"review-title\">Works Great For Me.</h4>\n				<div class=\"star-rating\">\n				<div class=\"wporg-ratings\" aria-label=\"5 out of 5 stars\" data-title-template=\"%s out of 5 stars\" data-rating=\"5\" style=\"color:#ffb900;\"><span class=\"star dashicons dashicons-star-filled\"></span><span class=\"star dashicons dashicons-star-filled\"></span><span class=\"star dashicons dashicons-star-filled\"></span><span class=\"star dashicons dashicons-star-filled\"></span><span class=\"star dashicons dashicons-star-filled\"></span></div>				</div>\n			</div>\n			<p class=\"reviewer\">\n				By <a href=\"https://profiles.wordpress.org/snappaguy\"><img alt=\'\' src=\'http://1.gravatar.com/avatar/7afc04ae9507841d3f5a114e34eb081c?s=16&#038;d=monsterid&#038;r=g\' srcset=\'http://1.gravatar.com/avatar/7afc04ae9507841d3f5a114e34eb081c?s=32&#038;d=monsterid&#038;r=g 2x\' class=\'avatar avatar-16 photo\' height=\'16\' width=\'16\' /></a><a href=\"https://profiles.wordpress.org/snappaguy\" class=\"reviewer-name\">SnappaGuy</a> on <span class=\"review-date\">November 5, 2019</span>			</p>\n		</div>\n	</div>\n	<div class=\"review-body\">Thanks for this awesome plugin and all your hard work.</div>\n</div>\n\";}s:13:\"download_link\";s:60:\"https://downloads.wordpress.org/plugin/woocommerce.3.8.0.zip\";s:11:\"screenshots\";a:6:{i:1;a:2:{s:3:\"src\";s:64:\"https://ps.w.org/woocommerce/assets/screenshot-1.jpg?rev=2074177\";s:7:\"caption\";b:0;}i:2;a:2:{s:3:\"src\";s:64:\"https://ps.w.org/woocommerce/assets/screenshot-2.jpg?rev=2074177\";s:7:\"caption\";b:0;}i:3;a:2:{s:3:\"src\";s:64:\"https://ps.w.org/woocommerce/assets/screenshot-3.jpg?rev=2074177\";s:7:\"caption\";b:0;}i:4;a:2:{s:3:\"src\";s:64:\"https://ps.w.org/woocommerce/assets/screenshot-4.jpg?rev=2074177\";s:7:\"caption\";b:0;}i:5;a:2:{s:3:\"src\";s:64:\"https://ps.w.org/woocommerce/assets/screenshot-5.jpg?rev=2074177\";s:7:\"caption\";b:0;}i:6;a:2:{s:3:\"src\";s:64:\"https://ps.w.org/woocommerce/assets/screenshot-6.jpg?rev=2074177\";s:7:\"caption\";b:0;}}s:4:\"tags\";a:5:{s:10:\"e-commerce\";s:10:\"e-commerce\";s:9:\"ecommerce\";s:9:\"ecommerce\";s:5:\"sales\";s:5:\"sales\";s:4:\"sell\";s:4:\"sell\";s:5:\"store\";s:5:\"store\";}s:8:\"versions\";a:69:{s:5:\"3.0.0\";s:60:\"https://downloads.wordpress.org/plugin/woocommerce.3.0.0.zip\";s:5:\"3.0.1\";s:60:\"https://downloads.wordpress.org/plugin/woocommerce.3.0.1.zip\";s:5:\"3.0.2\";s:60:\"https://downloads.wordpress.org/plugin/woocommerce.3.0.2.zip\";s:5:\"3.0.3\";s:60:\"https://downloads.wordpress.org/plugin/woocommerce.3.0.3.zip\";s:5:\"3.0.4\";s:60:\"https://downloads.wordpress.org/plugin/woocommerce.3.0.4.zip\";s:5:\"3.0.5\";s:60:\"https://downloads.wordpress.org/plugin/woocommerce.3.0.5.zip\";s:5:\"3.0.6\";s:60:\"https://downloads.wordpress.org/plugin/woocommerce.3.0.6.zip\";s:5:\"3.0.7\";s:60:\"https://downloads.wordpress.org/plugin/woocommerce.3.0.7.zip\";s:5:\"3.0.8\";s:60:\"https://downloads.wordpress.org/plugin/woocommerce.3.0.8.zip\";s:5:\"3.0.9\";s:60:\"https://downloads.wordpress.org/plugin/woocommerce.3.0.9.zip\";s:5:\"3.1.0\";s:60:\"https://downloads.wordpress.org/plugin/woocommerce.3.1.0.zip\";s:5:\"3.1.1\";s:60:\"https://downloads.wordpress.org/plugin/woocommerce.3.1.1.zip\";s:5:\"3.1.2\";s:60:\"https://downloads.wordpress.org/plugin/woocommerce.3.1.2.zip\";s:5:\"3.2.0\";s:60:\"https://downloads.wordpress.org/plugin/woocommerce.3.2.0.zip\";s:5:\"3.2.1\";s:60:\"https://downloads.wordpress.org/plugin/woocommerce.3.2.1.zip\";s:5:\"3.2.2\";s:60:\"https://downloads.wordpress.org/plugin/woocommerce.3.2.2.zip\";s:5:\"3.2.3\";s:60:\"https://downloads.wordpress.org/plugin/woocommerce.3.2.3.zip\";s:5:\"3.2.4\";s:60:\"https://downloads.wordpress.org/plugin/woocommerce.3.2.4.zip\";s:5:\"3.2.5\";s:60:\"https://downloads.wordpress.org/plugin/woocommerce.3.2.5.zip\";s:5:\"3.2.6\";s:60:\"https://downloads.wordpress.org/plugin/woocommerce.3.2.6.zip\";s:5:\"3.3.0\";s:60:\"https://downloads.wordpress.org/plugin/woocommerce.3.3.0.zip\";s:5:\"3.3.1\";s:60:\"https://downloads.wordpress.org/plugin/woocommerce.3.3.1.zip\";s:5:\"3.3.2\";s:60:\"https://downloads.wordpress.org/plugin/woocommerce.3.3.2.zip\";s:10:\"3.3.2-rc.1\";s:65:\"https://downloads.wordpress.org/plugin/woocommerce.3.3.2-rc.1.zip\";s:5:\"3.3.3\";s:60:\"https://downloads.wordpress.org/plugin/woocommerce.3.3.3.zip\";s:5:\"3.3.4\";s:60:\"https://downloads.wordpress.org/plugin/woocommerce.3.3.4.zip\";s:5:\"3.3.5\";s:60:\"https://downloads.wordpress.org/plugin/woocommerce.3.3.5.zip\";s:5:\"3.4.0\";s:60:\"https://downloads.wordpress.org/plugin/woocommerce.3.4.0.zip\";s:12:\"3.4.0-beta.1\";s:67:\"https://downloads.wordpress.org/plugin/woocommerce.3.4.0-beta.1.zip\";s:10:\"3.4.0-rc.2\";s:65:\"https://downloads.wordpress.org/plugin/woocommerce.3.4.0-rc.2.zip\";s:5:\"3.4.1\";s:60:\"https://downloads.wordpress.org/plugin/woocommerce.3.4.1.zip\";s:5:\"3.4.2\";s:60:\"https://downloads.wordpress.org/plugin/woocommerce.3.4.2.zip\";s:5:\"3.4.3\";s:60:\"https://downloads.wordpress.org/plugin/woocommerce.3.4.3.zip\";s:5:\"3.4.4\";s:60:\"https://downloads.wordpress.org/plugin/woocommerce.3.4.4.zip\";s:5:\"3.4.5\";s:60:\"https://downloads.wordpress.org/plugin/woocommerce.3.4.5.zip\";s:5:\"3.4.6\";s:60:\"https://downloads.wordpress.org/plugin/woocommerce.3.4.6.zip\";s:5:\"3.4.7\";s:60:\"https://downloads.wordpress.org/plugin/woocommerce.3.4.7.zip\";s:5:\"3.5.0\";s:60:\"https://downloads.wordpress.org/plugin/woocommerce.3.5.0.zip\";s:12:\"3.5.0-beta.1\";s:67:\"https://downloads.wordpress.org/plugin/woocommerce.3.5.0-beta.1.zip\";s:10:\"3.5.0-rc.1\";s:65:\"https://downloads.wordpress.org/plugin/woocommerce.3.5.0-rc.1.zip\";s:10:\"3.5.0-rc.2\";s:65:\"https://downloads.wordpress.org/plugin/woocommerce.3.5.0-rc.2.zip\";s:5:\"3.5.1\";s:60:\"https://downloads.wordpress.org/plugin/woocommerce.3.5.1.zip\";s:5:\"3.5.2\";s:60:\"https://downloads.wordpress.org/plugin/woocommerce.3.5.2.zip\";s:5:\"3.5.3\";s:60:\"https://downloads.wordpress.org/plugin/woocommerce.3.5.3.zip\";s:5:\"3.5.4\";s:60:\"https://downloads.wordpress.org/plugin/woocommerce.3.5.4.zip\";s:5:\"3.5.5\";s:60:\"https://downloads.wordpress.org/plugin/woocommerce.3.5.5.zip\";s:5:\"3.5.6\";s:60:\"https://downloads.wordpress.org/plugin/woocommerce.3.5.6.zip\";s:5:\"3.5.7\";s:60:\"https://downloads.wordpress.org/plugin/woocommerce.3.5.7.zip\";s:5:\"3.5.8\";s:60:\"https://downloads.wordpress.org/plugin/woocommerce.3.5.8.zip\";s:5:\"3.6.0\";s:60:\"https://downloads.wordpress.org/plugin/woocommerce.3.6.0.zip\";s:12:\"3.6.0-beta.1\";s:67:\"https://downloads.wordpress.org/plugin/woocommerce.3.6.0-beta.1.zip\";s:10:\"3.6.0-rc.1\";s:65:\"https://downloads.wordpress.org/plugin/woocommerce.3.6.0-rc.1.zip\";s:10:\"3.6.0-rc.2\";s:65:\"https://downloads.wordpress.org/plugin/woocommerce.3.6.0-rc.2.zip\";s:10:\"3.6.0-rc.3\";s:65:\"https://downloads.wordpress.org/plugin/woocommerce.3.6.0-rc.3.zip\";s:5:\"3.6.1\";s:60:\"https://downloads.wordpress.org/plugin/woocommerce.3.6.1.zip\";s:5:\"3.6.2\";s:60:\"https://downloads.wordpress.org/plugin/woocommerce.3.6.2.zip\";s:5:\"3.6.3\";s:60:\"https://downloads.wordpress.org/plugin/woocommerce.3.6.3.zip\";s:5:\"3.6.4\";s:60:\"https://downloads.wordpress.org/plugin/woocommerce.3.6.4.zip\";s:5:\"3.6.5\";s:60:\"https://downloads.wordpress.org/plugin/woocommerce.3.6.5.zip\";s:5:\"3.7.0\";s:60:\"https://downloads.wordpress.org/plugin/woocommerce.3.7.0.zip\";s:12:\"3.7.0-beta.1\";s:67:\"https://downloads.wordpress.org/plugin/woocommerce.3.7.0-beta.1.zip\";s:10:\"3.7.0-rc.1\";s:65:\"https://downloads.wordpress.org/plugin/woocommerce.3.7.0-rc.1.zip\";s:10:\"3.7.0-rc.2\";s:65:\"https://downloads.wordpress.org/plugin/woocommerce.3.7.0-rc.2.zip\";s:5:\"3.7.1\";s:60:\"https://downloads.wordpress.org/plugin/woocommerce.3.7.1.zip\";s:5:\"3.8.0\";s:60:\"https://downloads.wordpress.org/plugin/woocommerce.3.8.0.zip\";s:12:\"3.8.0-beta.1\";s:67:\"https://downloads.wordpress.org/plugin/woocommerce.3.8.0-beta.1.zip\";s:10:\"3.8.0-rc.1\";s:65:\"https://downloads.wordpress.org/plugin/woocommerce.3.8.0-rc.1.zip\";s:10:\"3.8.0-rc.2\";s:65:\"https://downloads.wordpress.org/plugin/woocommerce.3.8.0-rc.2.zip\";s:5:\"trunk\";s:54:\"https://downloads.wordpress.org/plugin/woocommerce.zip\";}s:11:\"donate_link\";s:0:\"\";s:7:\"banners\";a:2:{s:3:\"low\";s:66:\"https://ps.w.org/woocommerce/assets/banner-772x250.png?rev=2075035\";s:4:\"high\";s:67:\"https://ps.w.org/woocommerce/assets/banner-1544x500.png?rev=2075035\";}s:18:\"author_block_count\";i:1;s:19:\"author_block_rating\";i:92;}s:13:\"wordpress-seo\";a:27:{s:4:\"name\";s:9:\"Yoast SEO\";s:4:\"slug\";s:13:\"wordpress-seo\";s:7:\"version\";s:4:\"12.5\";s:6:\"author\";s:43:\"<a href=\"https://yoa.st/1uk\">Team Yoast</a>\";s:14:\"author_profile\";s:42:\"https://profiles.wordpress.org/joostdevalk\";s:12:\"contributors\";a:6:{s:5:\"yoast\";a:3:{s:7:\"profile\";s:36:\"https://profiles.wordpress.org/yoast\";s:6:\"avatar\";s:82:\"http://2.gravatar.com/avatar/2d6543ef6d3e1336c47d008809b87816?s=96&d=monsterid&r=g\";s:12:\"display_name\";s:5:\"Yoast\";}s:11:\"joostdevalk\";a:3:{s:7:\"profile\";s:42:\"https://profiles.wordpress.org/joostdevalk\";s:6:\"avatar\";s:82:\"http://0.gravatar.com/avatar/f08c3c3253bf14b5616b4db53cea6b78?s=96&d=monsterid&r=g\";s:12:\"display_name\";s:13:\"Joost de Valk\";}s:9:\"tacoverdo\";a:3:{s:7:\"profile\";s:40:\"https://profiles.wordpress.org/tacoverdo\";s:6:\"avatar\";s:82:\"http://1.gravatar.com/avatar/d2d3ecb38cacd521926979b5c678297b?s=96&d=monsterid&r=g\";s:12:\"display_name\";s:16:\"Taco Verdonschot\";}s:9:\"omarreiss\";a:3:{s:7:\"profile\";s:40:\"https://profiles.wordpress.org/omarreiss\";s:6:\"avatar\";s:82:\"http://2.gravatar.com/avatar/86aaa606a1904e7e0cf9857a663c376e?s=96&d=monsterid&r=g\";s:12:\"display_name\";s:10:\"Omar Reiss\";}s:7:\"atimmer\";a:3:{s:7:\"profile\";s:38:\"https://profiles.wordpress.org/atimmer\";s:6:\"avatar\";s:82:\"http://2.gravatar.com/avatar/b3acbabfdd208ecbf950d864b86fe968?s=96&d=monsterid&r=g\";s:12:\"display_name\";s:16:\"Anton Timmermans\";}s:8:\"jipmoors\";a:3:{s:7:\"profile\";s:39:\"https://profiles.wordpress.org/jipmoors\";s:6:\"avatar\";s:82:\"http://1.gravatar.com/avatar/1751c5afc377ef4ec07a50791db1bc52?s=96&d=monsterid&r=g\";s:12:\"display_name\";s:9:\"Jip Moors\";}}s:8:\"requires\";s:3:\"5.2\";s:6:\"tested\";s:3:\"5.3\";s:12:\"requires_php\";s:6:\"5.6.20\";s:6:\"rating\";i:98;s:7:\"ratings\";a:6:{i:5;i:25509;i:4;i:603;i:3;i:142;i:2;i:108;i:1;i:520;i:0;i:1;}s:11:\"num_ratings\";i:26883;s:15:\"support_threads\";i:484;s:24:\"support_threads_resolved\";i:402;s:15:\"active_installs\";i:5000000;s:12:\"last_updated\";s:21:\"2019-11-13 7:52am GMT\";s:5:\"added\";s:10:\"2010-10-11\";s:8:\"homepage\";s:18:\"https://yoa.st/1uj\";s:8:\"sections\";a:6:{s:11:\"description\";s:8352:\"<h3>Yoast SEO: the #1 WordPress SEO plugin</h3>\n<p>Since 2008 Yoast SEO has helped millions of websites worldwide to rank higher in search engines. This WordPress SEO plugin helps you with your search engine optimization. Are you not entirely convinced? Yoast SEO is the favorite WordPress SEO plugin of millions of users worldwide!</p>\n<p>As Yoast’s mission is <strong>SEO for Everyone</strong>, the plugin’s users range from the bakery around the corner to some of the most popular sites on the planet.</p>\n<h4>DON’T LET YOUR COMPETITORS WIN</h4>\n<p>Do you know who your competitors are in your niche? There’s a reason why they are your competitors: they do what you do. And they might even do it better right now. That does not mean you can&#8217;t win from them, but it does mean you need all the help to get on top and stay on top! Yoast SEO is here to help you out as we’ve helped millions of people worldwide with their WordPress SEO efforts.</p>\n<h4>TAKING CARE OF YOUR WORDPRESS SEO</h4>\n<p>Yoast SEO does everything in its power to please both visitors and search engine spiders. A dedicated team of developers, testers, architects and SEO experts work daily to improve the plugin with every release. Yoast SEO offers:</p>\n<ul>\n<li>Title and meta description templating for better branding and consistent snippets in the search results.</li>\n<li>A state-of-the-art Schema implementation helps search engines make sense of your site and increases the chance on those coveted rich results.</li>\n<li>The most advanced XML Sitemaps functionality at the push of a button.</li>\n<li>Full control over your site&#8217;s breadcrumbs.</li>\n<li>Automatically set canonical URLs to avoid duplicate content.</li>\n<li><strong>[Premium]</strong> support for our <a href=\"https://yoa.st/1v8\" rel=\"nofollow\">Yoast SEO Premium</a> users.</li>\n<li><strong>[Premium]</strong> the ability to expand Yoast SEO with the <a href=\"https://yoa.st/1uv\" rel=\"nofollow\">News SEO</a>, <a href=\"https://yoa.st/1uw\" rel=\"nofollow\">Video SEO</a>, <a href=\"https://yoa.st/1uu\" rel=\"nofollow\">Local SEO</a> and <a href=\"https://yoa.st/3rh\" rel=\"nofollow\">WooCommerce SEO</a> extensions.</li>\n</ul>\n<h4>WRITE KILLER CONTENT WITH YOAST SEO</h4>\n<p>We know content is king, that&#8217;s why Yoast SEO is famous for its readability analysis and its SEO analysis. Yoast SEO gives you:</p>\n<ul>\n<li>The SEO analysis: an invaluable tool to write SEO-friendly texts with the right (focus) keywords in mind.</li>\n<li>The readability analysis: make sure that you are writing easy-to-digest, engaging content for both visitors and search engines.</li>\n<li>Our snippet preview that shows you how your post or page will look in the search results. Even on mobile! </li>\n<li>An <strong>FAQ</strong> and <strong>HowTo</strong> block for the WordPress editor so search engines know when you are serving a FAQ page or HowTo guides.</li>\n<li><strong>[Premium]</strong> Social previews to show you how your content will be shown on Twitter and Facebook.</li>\n<li><strong>[Premium]</strong> The Insights tool that shows you what your text focuses on. This way you can keep your article in line with your keyphrases.</li>\n<li><strong>[Premium]</strong> The ability to optimize your article for synonyms and related keyphrases.</li>\n<li><strong>[Premium]</strong> We now recognize different word forms of your keyphrase, like singular and plurals, but also different tenses of verbs (just in English for now). It helps you improve your text in a more natural way.</li>\n<li><strong>[Premium]</strong> Automatic internal linking suggestions: write your article and automatically get suggested posts to link to! </li>\n</ul>\n<h4>KEEP YOUR SITE IN PERFECT SHAPE</h4>\n<p>Whether you are a <strong>business owner</strong> or <strong>blogger</strong>, a <strong>content creator</strong>, a <strong>developer</strong> or an <strong>SEO expert</strong>: Yoast SEO helps you keep your website in perfect shape. Yoast SEO:</p>\n<ul>\n<li>Tunes the engine of your website so you can focus on creating great content.</li>\n<li>Gives you cornerstone content and internal linking features to help you rank for the right keywords with the right pages.</li>\n<li>Helps you manage your team&#8217;s WordPress SEO efforts: with our SEO roles you can give colleagues access to specific sections of the Yoast SEO plugin.</li>\n<li>Has a bulk editor so you can make large-scale edits to the titles and meta descriptions of your website.</li>\n<li>Translates your content to structured data where possible to help search engines understand your website.</li>\n<li><strong>[Premium]</strong> Gives you social previews to manage the way your page is shared on social networks like Facebook and Twitter.</li>\n<li><strong>[Premium]</strong> Has a full redirect manager to keep your site healthy by easily redirecting deleted pages and changed URLs.</li>\n</ul>\n<h3>Premium support</h3>\n<p>The Yoast team aims to provide regular support for the Yoast SEO plugin on the WordPress.org forums. But please understand that we do prioritize our premium support. This one-on-one email support is available to people who <a href=\"https://yoa.st/1v8\" rel=\"nofollow\">bought Yoast SEO Premium</a>.</p>\n<p>Did you know that the <a href=\"https://yoa.st/1v8\" rel=\"nofollow\">Yoast SEO Premium</a> also has several extra features:</p>\n<ul>\n<li>It gives you the option to have <strong>synonyms and related keyphrases</strong>.</li>\n<li>A <strong>redirect manager</strong> that f.i. helps you prevent 404 Page Not Found errors.</li>\n<li><strong>Internal linking</strong> suggestions while you write.</li>\n<li>Write more natural with our automatic <strong>recognition of word forms</strong></li>\n<li><strong>Cornerstone content checks</strong> to point search engines to your main pages.</li>\n</ul>\n<p>The <a href=\"https://yoa.st/1v8\" rel=\"nofollow\">Yoast SEO Premium plugin</a> is well worth your investment!</p>\n<h4>Our addons to further improve your WordPress SEO</h4>\n<p>You should also check out these other products by Yoast:</p>\n<ul>\n<li><strong><a href=\"https://yoa.st/1uu\" rel=\"nofollow\">Yoast Local SEO</a></strong> to optimize all website that serve a local audience, like certain small businesses, or businesses with multiple locations.</li>\n<li><strong><a href=\"https://yoa.st/1uw\" rel=\"nofollow\">Yoast Video SEO</a></strong> to make sure Google understands what you video is about, thus increasing your chances to rank in video results.</li>\n<li><strong><a href=\"https://yoa.st/1uv\" rel=\"nofollow\">Yoast News SEO</a></strong> for websites that are in Google News and what to optimize all news articles for the best indexation and ranking.</li>\n<li><strong><a href=\"https://yoa.st/3rh\" rel=\"nofollow\">WooCommerce SEO</a></strong> for all online shops that want to perform better in search engines and on social platforms.</li>\n</ul>\n<p>They work with the FREE version of Yoast SEO already, and these premium extensions of course come with support too.</p>\n<p>Oh, and don&#8217;t forget: our <strong><a href=\"https://yoa.st/3ri\" rel=\"nofollow\">Yoast Academy</a></strong> is for all the business owners, bloggers and everyone else who wants to learn more about optimizing websites, improving their WordPress SEO and taking their online content to the next level.</p>\n<h3>Bug reports</h3>\n<p>Bug reports for Yoast SEO are welcomed in our WordPress SEO <a href=\"https://github.com/Yoast/wordpress-seo\" rel=\"nofollow\">repository on GitHub</a>. Please note that GitHub is not a support forum, and that issues that aren’t properly qualified as bugs will be closed.</p>\n<h3>Further Reading</h3>\n<p>For more info on search engine optimization and WordPress SEO in specific, check out the following:</p>\n<ul>\n<li>The <a href=\"https://yoa.st/1v8\" rel=\"nofollow\">Yoast SEO Plugin</a> official homepage.</li>\n<li>The <a href=\"https://yoa.st/1va\" rel=\"nofollow\">Yoast SEO Knowledgebase</a>.</li>\n<li><a href=\"https://yoa.st/1v6\" rel=\"nofollow\">WordPress SEO &#8211; The definitive Guide by Yoast</a>.</li>\n<li>Other <a href=\"https://yoa.st/1v9\" rel=\"nofollow\">WordPress Plugins</a> by the same team.</li>\n<li>Follow Yoast on <a href=\"https://facebook.com/yoast\" rel=\"nofollow\">Facebook</a>, <a href=\"https://www.instagram.com/yoast/\" rel=\"nofollow\">Instagram</a> &amp; <a href=\"https://twitter.com/yoast\" rel=\"nofollow\">Twitter</a>.</li>\n</ul>\n\";s:12:\"installation\";s:1037:\"<p>Starting with Yoast SEO consists of just two steps: installing and setting up the plugin. Yoast SEO is designed to work with your site’s specific needs, so don’t forget to go through the Yoast SEO configuration wizard as explained in the ‘after activation’ step!</p>\n<h3>INSTALL YOAST SEO FROM WITHIN WORDPRESS</h3>\n<ol>\n<li>Visit the plugins page within your dashboard and select ‘Add New’;</li>\n<li>Search for ‘Yoast SEO’;</li>\n<li>Activate Yoast SEO from your Plugins page;</li>\n<li>Go to ‘after activation’ below.</li>\n</ol>\n<h3>INSTALL YOAST SEO MANUALLY</h3>\n<ol>\n<li>Upload the ‘wordpress-seo’ folder to the /wp-content/plugins/ directory;</li>\n<li>Activate the Yoast SEO plugin through the ‘Plugins’ menu in WordPress;</li>\n<li>Go to ‘after activation’ below.</li>\n</ol>\n<h3>AFTER ACTIVATION</h3>\n<ol>\n<li>You should see (a notice to start) the Yoast SEO configuration wizard;</li>\n<li>Go through the configuration wizard and set up the plugin for your site;</li>\n<li>You’re done!</li>\n</ol>\n\";s:3:\"faq\";s:5121:\"\n<h4>How do the XML Sitemaps in the Yoast SEO plugin work?</h4>\n<p>\n<p>Having an XML sitemap can be beneficial for SEO, as Google can retrieve essential pages of a website very fast, even if the internal linking of a site isn’t flawless.<br />\nThe sitemap index and individual sitemaps are updated automatically as you add or remove content and will include the post types you want search engines to index. Post Types marked as noindex will not appear in the sitemap. <a href=\"https://yoa.st/3qt\" rel=\"nofollow\">Learn more about XML Sitemaps</a>.</p>\n</p>\n<h4>How can I add my website to Google Search Console?</h4>\n<p>\n<p>It is straightforward to add your website to Google Search Console.<br />\n1. Create a Google Search Console account and login into your account.<br />\n1. Click ‘Add a property’ under the search drop-down.<br />\n1. Enter your website URL in the box and click ‘Continue’.<br />\n1. Click the arrow next to ‘HTML tag’ to expand the option.<br />\n1. Copy the meta tag.<br />\n1. Log in to your WordPress website.<br />\n1. Click on ‘SEO’ in the dashboard.<br />\n1. Click on ‘General’.<br />\n1. Click on the ‘Webmaster Tools’ tab.<br />\n1. Paste the code in the Google field and click ‘Save Changes’.<br />\n1. Go back to Google Search Console and click ‘Verify’.</p>\n<p>If you want more details steps, please visit <a href=\"https://yoa.st/3qu\" rel=\"nofollow\">our article on our knowledge base</a>.</p>\n</p>\n<h4>How do I implement Yoast SEO breadcrumbs?</h4>\n<p>\n<p>The steps below are a temporary solution as manual edits made to theme files may be overwritten with future theme updates. Please contact the theme developer for a permanent solution. We’ve written an article about the <a href=\"https://yoa.st/3qv\" rel=\"nofollow\">importance of breadcrumbs for SEO</a>.</p>\n<p>To implement the [breadcrumbs]https://yoa.st/3qw) function in Yoast SEO, you will have to edit your theme. We recommend that prior to any editing of the theme files, a backup is taken. Your host provider can help you take a backup.<br />\nCopy the following code into your theme where you want the breadcrumbs to be. If you are not sure, you will need to experiment with placement:</p>\n<pre><code>`\n</code></pre>\n<p>&lt;?php<br />\n*if* ( function_exists(‘yoast_breadcrumb’) ) {<br />\n  yoast_breadcrumb( ‘</p>\n<p>’,’</p>\n<p>’ );<br />\n}<br />\n?&gt;<br />\n    `</p>\n<p>Common places where you could place your breadcrumbs are inside your <code>single.php</code> and/or <code>page.php</code> file just above the page’s title. Another option that makes it really easy in some themes is by just pasting the code in <code>header.php</code>at the very end.</p>\n<p>In most non-WooTheme themes, this code snippet should not be added to your <code>functions.php</code> file.<br />\nAlternatively, you can manually add the breadcrumb shortcode to individual posts or pages: <code>[wpseo_breadcrumb]</code></p>\n<p>If you need more details or a step by step guide, read our <a href=\"https://yoa.st/3qx\" rel=\"nofollow\">Implementation guide for Yoast SEO breadcrumbs</a>.</p>\n</p>\n<h4>How do I noindex URLS?</h4>\n<p>\n<p>Yoast SEO provides multiple options for setting a URL or group of URLs to noindex. <a href=\"https://yoa.st/3qy/\" rel=\"nofollow\">Read more about how to do this in this guide</a>.</p>\n</p>\n<h4>Google shows the wrong description, how do I fix this?</h4>\n<p>\n<p>If you’ve crafted nice meta descriptions for your blog posts, nothing is more annoying than Google showing another description for your site completely in the search result snippet.</p>\n<p>Possible causes could be:<br />\n1. wrong description in code<br />\n2. Google cache is outdated<br />\n3. Search term manipulation<br />\n4. Google ignored the meta description</p>\n<p>You can <a href=\"https://yoa.st/3qz\" rel=\"nofollow\">read more here on how to solve the issue with the wrong description</a>.</p>\n</p>\n<h4>How often is Yoast SEO updated?</h4>\n<p>\n<p>Yoast SEO is updated every two weeks. If you want to know why, please read <a href=\"https://yoa.st/3q-\" rel=\"nofollow\">this post on why we release every two weeks</a>!</p>\n</p>\n<h4>How do I get support?</h4>\n<p>\n<p>As our free plugin is used by millions of people worldwide, we cannot offer you all one on one support. If you have trouble with the Yoast SEO for WordPress plugin, you can get help on the support forums here at <a href=\"https://wordpress.org/support/plugin/wordpress-seo/\">wordpress.org</a> or by checking out or knowledge base at <a href=\"https://yoa.st/3r1\" rel=\"nofollow\">kb.yoast.com</a>.</p>\n<p>The plugins you buy at Yoast are called ‘premium plugins’ (even if Premium isn’t in its name) and include a complete year of free updates and premium support. This means you can contact our support team if you have any questions about that plugin.</p>\n<p><a href=\"https://yoa.st/3r2\" rel=\"nofollow\">Read more on how to get support</a></p>\n</p>\n<h4>I have a different question than listed here</h4>\n<p>\n<p>Your question has most likely been answered on our knowledge base: <a href=\"https://yoa.st/1va\" rel=\"nofollow\">kb.yoast.com</a>.</p>\n</p>\n\n\";s:9:\"changelog\";s:2764:\"<h4>12.5.0</h4>\n<p>Release Date: November 13th, 2019</p>\n<p>These last couple of months here at Yoast SEO HQ have all been about building better things. Behind the scenes, we’re making good progress at getting our flagship plugins ready for the future. While we’re busy building the future, we also stick to our regular two-week release schedule, which means it’s time to introduce Yoast SEO 12.5. Find out more in <a href=\"https://yoa.st/release-12-5\" rel=\"nofollow\">our 12.5 release post</a>!</p>\n<p>Bugfixes:</p>\n<ul>\n<li>Fixes a bug for terms where keywords and snippet preview data would be synced across all languages in a MultilingualPress multisite environment.</li>\n<li>Fixes a bug where the visually hidden text in the snippet preview was misplaced.</li>\n</ul>\n<p>Other:</p>\n<ul>\n<li>Deprecates the Google Search Console.</li>\n</ul>\n<h4>12.4.0</h4>\n<p>Release Date: October 29th, 2019</p>\n<p>After releasing several updates to our snippet preview in previous releases, Yoast SEO 12.4 now shows an image for your post in the mobile snippet preview, just like Google would. We have several other improvements and fixes for you in store with Yoast SEO 12.4. Find out more in <a href=\"https://yoa.st/release-12-4\" rel=\"nofollow\">our 12.4 release post</a>!</p>\n<p>Enhancements:</p>\n<ul>\n<li>Adds &#8220;schema&#8221; as keyword to the structured data blocks to make them show up for that search term in the block search as well.</li>\n<li>Adds an image to the mobile snippet preview for posts and terms.</li>\n<li>Changes the readability score for empty content from &#8220;Needs Improvement&#8221; with a red icon to &#8220;Not Available&#8221; with a gray icon. Props to <a href=\"https://github.com/emilyatmobtown\" rel=\"nofollow\">emilyatmobtown</a>.</li>\n<li>Updates the URLs used to ping Google and Bing about the location of a sitemap. Props to <a href=\"https://github.com/emilyatmobtown\" rel=\"nofollow\">@emilyatmobtown</a>.</li>\n<li>Makes the notice about running an old WordPress version more specific by showing the installed WordPress version and the latest WordPress version.</li>\n<li>Adds information about enabling Open Graph to the Twitter settings. Props to <a href=\"https://github.com/stevenfranks\" rel=\"nofollow\">@stevenfranks</a>.</li>\n</ul>\n<p>Bugfixes:</p>\n<ul>\n<li>Fixes a bug where no Twitter and Facebook image could be set for attachment pages.</li>\n<li>Fixes a bug where a nested paragraph would be present in the &#8220;noindex&#8221; metabox warning.</li>\n<li>Fixes a bug where Google+ data would still be exported in the settings export.</li>\n</ul>\n<h4>Earlier versions</h4>\n<p>For the changelog of earlier versions, please refer to <a href=\"https://yoa.st/yoast-seo-changelog\" rel=\"nofollow\">the changelog on yoast.com</a>.</p>\n\";s:11:\"screenshots\";s:1928:\"<ol><li><a href=\"https://ps.w.org/wordpress-seo/assets/screenshot-1.png?rev=2119958\"><img src=\"https://ps.w.org/wordpress-seo/assets/screenshot-1.png?rev=2119958\" alt=\"The Yoast SEO plugin general meta box. You&#039;ll see this on edit post pages, for posts, pages and custom post types.\"></a><p>The Yoast SEO plugin general meta box. You\'ll see this on edit post pages, for posts, pages and custom post types.</p></li><li><a href=\"https://ps.w.org/wordpress-seo/assets/screenshot-2.png?rev=2119958\"><img src=\"https://ps.w.org/wordpress-seo/assets/screenshot-2.png?rev=2119958\" alt=\"Example of the SEO analysis functionality.\"></a><p>Example of the SEO analysis functionality.</p></li><li><a href=\"https://ps.w.org/wordpress-seo/assets/screenshot-3.png?rev=2119958\"><img src=\"https://ps.w.org/wordpress-seo/assets/screenshot-3.png?rev=2119958\" alt=\"Example of the readability analysis functionality.\"></a><p>Example of the readability analysis functionality.</p></li><li><a href=\"https://ps.w.org/wordpress-seo/assets/screenshot-4.png?rev=1834347\"><img src=\"https://ps.w.org/wordpress-seo/assets/screenshot-4.png?rev=1834347\" alt=\"Overview of site-wide SEO problems and possible improvements.\"></a><p>Overview of site-wide SEO problems and possible improvements.</p></li><li><a href=\"https://ps.w.org/wordpress-seo/assets/screenshot-5.png?rev=1834347\"><img src=\"https://ps.w.org/wordpress-seo/assets/screenshot-5.png?rev=1834347\" alt=\"Control over which features you want to use.\"></a><p>Control over which features you want to use.</p></li><li><a href=\"https://ps.w.org/wordpress-seo/assets/screenshot-6.png?rev=1834347\"><img src=\"https://ps.w.org/wordpress-seo/assets/screenshot-6.png?rev=1834347\" alt=\"Easily import SEO data from other SEO plugins like All In One SEO pack, HeadSpace2 SEO and wpSEO.de.\"></a><p>Easily import SEO data from other SEO plugins like All In One SEO pack, HeadSpace2 SEO and wpSEO.de.</p></li></ol>\";s:7:\"reviews\";s:13221:\"<div class=\"review\">\n	<div class=\"review-head\">\n		<div class=\"reviewer-info\">\n			<div class=\"review-title-section\">\n				<h4 class=\"review-title\">Class WPSEO_Courses_Overview is missing!</h4>\n				<div class=\"star-rating\">\n				<div class=\"wporg-ratings\" aria-label=\"5 out of 5 stars\" data-title-template=\"%s out of 5 stars\" data-rating=\"5\" style=\"color:#ffb900;\"><span class=\"star dashicons dashicons-star-filled\"></span><span class=\"star dashicons dashicons-star-filled\"></span><span class=\"star dashicons dashicons-star-filled\"></span><span class=\"star dashicons dashicons-star-filled\"></span><span class=\"star dashicons dashicons-star-filled\"></span></div>				</div>\n			</div>\n			<p class=\"reviewer\">\n				By <a href=\"https://profiles.wordpress.org/crossmediapool\"><img alt=\'\' src=\'http://0.gravatar.com/avatar/33342a8d2c5a9772875b1880c86ba7b6?s=16&#038;d=monsterid&#038;r=g\' srcset=\'http://0.gravatar.com/avatar/33342a8d2c5a9772875b1880c86ba7b6?s=32&#038;d=monsterid&#038;r=g 2x\' class=\'avatar avatar-16 photo\' height=\'16\' width=\'16\' /></a><a href=\"https://profiles.wordpress.org/crossmediapool\" class=\"reviewer-name\">crossmediapool</a> on <span class=\"review-date\">November 12, 2019</span>			</p>\n		</div>\n	</div>\n	<div class=\"review-body\">Killed my installation:\nError thrown\nClass \'WPSEO_Courses_Overview\' not found\n\nQuick fixed with manual File:\n/wp-content/plugins/wordpress-seo/inc/class-wpseo-courses_overview.php\n&lt;?php\n\nclass WPSEO_Courses_Overview {}\n\n?&gt;</div>\n</div>\n<div class=\"review\">\n	<div class=\"review-head\">\n		<div class=\"reviewer-info\">\n			<div class=\"review-title-section\">\n				<h4 class=\"review-title\">I like it!</h4>\n				<div class=\"star-rating\">\n				<div class=\"wporg-ratings\" aria-label=\"5 out of 5 stars\" data-title-template=\"%s out of 5 stars\" data-rating=\"5\" style=\"color:#ffb900;\"><span class=\"star dashicons dashicons-star-filled\"></span><span class=\"star dashicons dashicons-star-filled\"></span><span class=\"star dashicons dashicons-star-filled\"></span><span class=\"star dashicons dashicons-star-filled\"></span><span class=\"star dashicons dashicons-star-filled\"></span></div>				</div>\n			</div>\n			<p class=\"reviewer\">\n				By <a href=\"https://profiles.wordpress.org/juliettdou\"><img alt=\'\' src=\'http://0.gravatar.com/avatar/cb2f394b42089f2bddec4a26f62525f2?s=16&#038;d=monsterid&#038;r=g\' srcset=\'http://0.gravatar.com/avatar/cb2f394b42089f2bddec4a26f62525f2?s=32&#038;d=monsterid&#038;r=g 2x\' class=\'avatar avatar-16 photo\' height=\'16\' width=\'16\' /></a><a href=\"https://profiles.wordpress.org/juliettdou\" class=\"reviewer-name\">Juliette Douffet <small>(juliettdou)</small></a> on <span class=\"review-date\">November 10, 2019</span>			</p>\n		</div>\n	</div>\n	<div class=\"review-body\">I like how this plugin analyzes and suggests things about your content. Best in the category!</div>\n</div>\n<div class=\"review\">\n	<div class=\"review-head\">\n		<div class=\"reviewer-info\">\n			<div class=\"review-title-section\">\n				<h4 class=\"review-title\">perfect</h4>\n				<div class=\"star-rating\">\n				<div class=\"wporg-ratings\" aria-label=\"5 out of 5 stars\" data-title-template=\"%s out of 5 stars\" data-rating=\"5\" style=\"color:#ffb900;\"><span class=\"star dashicons dashicons-star-filled\"></span><span class=\"star dashicons dashicons-star-filled\"></span><span class=\"star dashicons dashicons-star-filled\"></span><span class=\"star dashicons dashicons-star-filled\"></span><span class=\"star dashicons dashicons-star-filled\"></span></div>				</div>\n			</div>\n			<p class=\"reviewer\">\n				By <a href=\"https://profiles.wordpress.org/moniksagrera\"><img alt=\'\' src=\'http://0.gravatar.com/avatar/08c073d2d9404c1942f7ed8bd3f2aa0d?s=16&#038;d=monsterid&#038;r=g\' srcset=\'http://0.gravatar.com/avatar/08c073d2d9404c1942f7ed8bd3f2aa0d?s=32&#038;d=monsterid&#038;r=g 2x\' class=\'avatar avatar-16 photo\' height=\'16\' width=\'16\' /></a><a href=\"https://profiles.wordpress.org/moniksagrera\" class=\"reviewer-name\">moniksagrera</a> on <span class=\"review-date\">November 7, 2019</span>			</p>\n		</div>\n	</div>\n	<div class=\"review-body\">perfectr, thank you</div>\n</div>\n<div class=\"review\">\n	<div class=\"review-head\">\n		<div class=\"reviewer-info\">\n			<div class=\"review-title-section\">\n				<h4 class=\"review-title\">great plugin</h4>\n				<div class=\"star-rating\">\n				<div class=\"wporg-ratings\" aria-label=\"5 out of 5 stars\" data-title-template=\"%s out of 5 stars\" data-rating=\"5\" style=\"color:#ffb900;\"><span class=\"star dashicons dashicons-star-filled\"></span><span class=\"star dashicons dashicons-star-filled\"></span><span class=\"star dashicons dashicons-star-filled\"></span><span class=\"star dashicons dashicons-star-filled\"></span><span class=\"star dashicons dashicons-star-filled\"></span></div>				</div>\n			</div>\n			<p class=\"reviewer\">\n				By <a href=\"https://profiles.wordpress.org/amitel\"><img alt=\'\' src=\'http://0.gravatar.com/avatar/cd2966ff5ec16f396eeb2d98c7f29423?s=16&#038;d=monsterid&#038;r=g\' srcset=\'http://0.gravatar.com/avatar/cd2966ff5ec16f396eeb2d98c7f29423?s=32&#038;d=monsterid&#038;r=g 2x\' class=\'avatar avatar-16 photo\' height=\'16\' width=\'16\' /></a><a href=\"https://profiles.wordpress.org/amitel\" class=\"reviewer-name\">amitel</a> on <span class=\"review-date\">November 7, 2019</span>			</p>\n		</div>\n	</div>\n	<div class=\"review-body\">The plugin helped me make the site search engine friendly. Flexible TDX setup for all pages and posts. Thank!</div>\n</div>\n<div class=\"review\">\n	<div class=\"review-head\">\n		<div class=\"reviewer-info\">\n			<div class=\"review-title-section\">\n				<h4 class=\"review-title\">Jetpack is better</h4>\n				<div class=\"star-rating\">\n				<div class=\"wporg-ratings\" aria-label=\"1 out of 5 stars\" data-title-template=\"%s out of 5 stars\" data-rating=\"1\" style=\"color:#ffb900;\"><span class=\"star dashicons dashicons-star-filled\"></span><span class=\"star dashicons dashicons-star-empty\"></span><span class=\"star dashicons dashicons-star-empty\"></span><span class=\"star dashicons dashicons-star-empty\"></span><span class=\"star dashicons dashicons-star-empty\"></span></div>				</div>\n			</div>\n			<p class=\"reviewer\">\n				By <a href=\"https://profiles.wordpress.org/carlodelano\"><img alt=\'\' src=\'http://1.gravatar.com/avatar/42e4c40a8a978063769f9f2b9e47f2f7?s=16&#038;d=monsterid&#038;r=g\' srcset=\'http://1.gravatar.com/avatar/42e4c40a8a978063769f9f2b9e47f2f7?s=32&#038;d=monsterid&#038;r=g 2x\' class=\'avatar avatar-16 photo\' height=\'16\' width=\'16\' /></a><a href=\"https://profiles.wordpress.org/carlodelano\" class=\"reviewer-name\">carlodelano</a> on <span class=\"review-date\">November 6, 2019</span>			</p>\n		</div>\n	</div>\n	<div class=\"review-body\">Jetpack is better</div>\n</div>\n<div class=\"review\">\n	<div class=\"review-head\">\n		<div class=\"reviewer-info\">\n			<div class=\"review-title-section\">\n				<h4 class=\"review-title\">Tôi thích nó</h4>\n				<div class=\"star-rating\">\n				<div class=\"wporg-ratings\" aria-label=\"5 out of 5 stars\" data-title-template=\"%s out of 5 stars\" data-rating=\"5\" style=\"color:#ffb900;\"><span class=\"star dashicons dashicons-star-filled\"></span><span class=\"star dashicons dashicons-star-filled\"></span><span class=\"star dashicons dashicons-star-filled\"></span><span class=\"star dashicons dashicons-star-filled\"></span><span class=\"star dashicons dashicons-star-filled\"></span></div>				</div>\n			</div>\n			<p class=\"reviewer\">\n				By <a href=\"https://profiles.wordpress.org/tranhoangvien\"><img alt=\'\' src=\'http://1.gravatar.com/avatar/420a5cc2068317d8f8cf470ca4748e95?s=16&#038;d=monsterid&#038;r=g\' srcset=\'http://1.gravatar.com/avatar/420a5cc2068317d8f8cf470ca4748e95?s=32&#038;d=monsterid&#038;r=g 2x\' class=\'avatar avatar-16 photo\' height=\'16\' width=\'16\' /></a><a href=\"https://profiles.wordpress.org/tranhoangvien\" class=\"reviewer-name\">Trần Hoàng Viện <small>(tranhoangvien)</small></a> on <span class=\"review-date\">November 6, 2019</span>			</p>\n		</div>\n	</div>\n	<div class=\"review-body\">Từ khi có Yoast mọi thứ trở nên dễ dàng hơn.</div>\n</div>\n<div class=\"review\">\n	<div class=\"review-head\">\n		<div class=\"reviewer-info\">\n			<div class=\"review-title-section\">\n				<h4 class=\"review-title\">It&#039;s a cool plugin</h4>\n				<div class=\"star-rating\">\n				<div class=\"wporg-ratings\" aria-label=\"5 out of 5 stars\" data-title-template=\"%s out of 5 stars\" data-rating=\"5\" style=\"color:#ffb900;\"><span class=\"star dashicons dashicons-star-filled\"></span><span class=\"star dashicons dashicons-star-filled\"></span><span class=\"star dashicons dashicons-star-filled\"></span><span class=\"star dashicons dashicons-star-filled\"></span><span class=\"star dashicons dashicons-star-filled\"></span></div>				</div>\n			</div>\n			<p class=\"reviewer\">\n				By <a href=\"https://profiles.wordpress.org/nurulazim\"><img alt=\'\' src=\'http://1.gravatar.com/avatar/720403d0a7d9a25eace541c74a8355e9?s=16&#038;d=monsterid&#038;r=g\' srcset=\'http://1.gravatar.com/avatar/720403d0a7d9a25eace541c74a8355e9?s=32&#038;d=monsterid&#038;r=g 2x\' class=\'avatar avatar-16 photo\' height=\'16\' width=\'16\' /></a><a href=\"https://profiles.wordpress.org/nurulazim\" class=\"reviewer-name\">nurulazim</a> on <span class=\"review-date\">November 5, 2019</span>			</p>\n		</div>\n	</div>\n	<div class=\"review-body\">I will definitely request to author to make it more functional. Like plugin will create an appropriate meta description where it needed. And one click will be submitted in each item.</div>\n</div>\n<div class=\"review\">\n	<div class=\"review-head\">\n		<div class=\"reviewer-info\">\n			<div class=\"review-title-section\">\n				<h4 class=\"review-title\">Fairly effective</h4>\n				<div class=\"star-rating\">\n				<div class=\"wporg-ratings\" aria-label=\"4 out of 5 stars\" data-title-template=\"%s out of 5 stars\" data-rating=\"4\" style=\"color:#ffb900;\"><span class=\"star dashicons dashicons-star-filled\"></span><span class=\"star dashicons dashicons-star-filled\"></span><span class=\"star dashicons dashicons-star-filled\"></span><span class=\"star dashicons dashicons-star-filled\"></span><span class=\"star dashicons dashicons-star-empty\"></span></div>				</div>\n			</div>\n			<p class=\"reviewer\">\n				By <a href=\"https://profiles.wordpress.org/yachiew24\"><img alt=\'\' src=\'http://2.gravatar.com/avatar/b46f55d10ea5015f1b51ec0cad28bf62?s=16&#038;d=monsterid&#038;r=g\' srcset=\'http://2.gravatar.com/avatar/b46f55d10ea5015f1b51ec0cad28bf62?s=32&#038;d=monsterid&#038;r=g 2x\' class=\'avatar avatar-16 photo\' height=\'16\' width=\'16\' /></a><a href=\"https://profiles.wordpress.org/yachiew24\" class=\"reviewer-name\">yachiew24</a> on <span class=\"review-date\">November 5, 2019</span>			</p>\n		</div>\n	</div>\n	<div class=\"review-body\">Effect seen almost instantly.</div>\n</div>\n<div class=\"review\">\n	<div class=\"review-head\">\n		<div class=\"reviewer-info\">\n			<div class=\"review-title-section\">\n				<h4 class=\"review-title\">Nice</h4>\n				<div class=\"star-rating\">\n				<div class=\"wporg-ratings\" aria-label=\"5 out of 5 stars\" data-title-template=\"%s out of 5 stars\" data-rating=\"5\" style=\"color:#ffb900;\"><span class=\"star dashicons dashicons-star-filled\"></span><span class=\"star dashicons dashicons-star-filled\"></span><span class=\"star dashicons dashicons-star-filled\"></span><span class=\"star dashicons dashicons-star-filled\"></span><span class=\"star dashicons dashicons-star-filled\"></span></div>				</div>\n			</div>\n			<p class=\"reviewer\">\n				By <a href=\"https://profiles.wordpress.org/contactwbnews\"><img alt=\'\' src=\'http://2.gravatar.com/avatar/5ba560951e1baad3d2c9f85fe11d967c?s=16&#038;d=monsterid&#038;r=g\' srcset=\'http://2.gravatar.com/avatar/5ba560951e1baad3d2c9f85fe11d967c?s=32&#038;d=monsterid&#038;r=g 2x\' class=\'avatar avatar-16 photo\' height=\'16\' width=\'16\' /></a><a href=\"https://profiles.wordpress.org/contactwbnews\" class=\"reviewer-name\">contactwbnews</a> on <span class=\"review-date\">November 10, 2019</span>			</p>\n		</div>\n	</div>\n	<div class=\"review-body\">Very nice my site http://wbnews24x7.com \n</div>\n</div>\n<div class=\"review\">\n	<div class=\"review-head\">\n		<div class=\"reviewer-info\">\n			<div class=\"review-title-section\">\n				<h4 class=\"review-title\">#YoastSEO</h4>\n				<div class=\"star-rating\">\n				<div class=\"wporg-ratings\" aria-label=\"5 out of 5 stars\" data-title-template=\"%s out of 5 stars\" data-rating=\"5\" style=\"color:#ffb900;\"><span class=\"star dashicons dashicons-star-filled\"></span><span class=\"star dashicons dashicons-star-filled\"></span><span class=\"star dashicons dashicons-star-filled\"></span><span class=\"star dashicons dashicons-star-filled\"></span><span class=\"star dashicons dashicons-star-filled\"></span></div>				</div>\n			</div>\n			<p class=\"reviewer\">\n				By <a href=\"https://profiles.wordpress.org/rinoth\"><img alt=\'\' src=\'http://0.gravatar.com/avatar/f1257d09b112f3e9a2d63df63714e882?s=16&#038;d=monsterid&#038;r=g\' srcset=\'http://0.gravatar.com/avatar/f1257d09b112f3e9a2d63df63714e882?s=32&#038;d=monsterid&#038;r=g 2x\' class=\'avatar avatar-16 photo\' height=\'16\' width=\'16\' /></a><a href=\"https://profiles.wordpress.org/rinoth\" class=\"reviewer-name\">Rinoth</a> on <span class=\"review-date\">November 2, 2019</span>			</p>\n		</div>\n	</div>\n	<div class=\"review-body\">I use it across all of my sites (20+) and never had anny issues with it.\nYou want to do basic SEO - you got it\nAdvanced stuff - no problem\nSitemaps and redirections  - Done &amp; Done</div>\n</div>\n\";}s:13:\"download_link\";s:61:\"https://downloads.wordpress.org/plugin/wordpress-seo.12.5.zip\";s:11:\"screenshots\";a:6:{i:1;a:2:{s:3:\"src\";s:66:\"https://ps.w.org/wordpress-seo/assets/screenshot-1.png?rev=2119958\";s:7:\"caption\";s:114:\"The Yoast SEO plugin general meta box. You\'ll see this on edit post pages, for posts, pages and custom post types.\";}i:2;a:2:{s:3:\"src\";s:66:\"https://ps.w.org/wordpress-seo/assets/screenshot-2.png?rev=2119958\";s:7:\"caption\";s:42:\"Example of the SEO analysis functionality.\";}i:3;a:2:{s:3:\"src\";s:66:\"https://ps.w.org/wordpress-seo/assets/screenshot-3.png?rev=2119958\";s:7:\"caption\";s:50:\"Example of the readability analysis functionality.\";}i:4;a:2:{s:3:\"src\";s:66:\"https://ps.w.org/wordpress-seo/assets/screenshot-4.png?rev=1834347\";s:7:\"caption\";s:61:\"Overview of site-wide SEO problems and possible improvements.\";}i:5;a:2:{s:3:\"src\";s:66:\"https://ps.w.org/wordpress-seo/assets/screenshot-5.png?rev=1834347\";s:7:\"caption\";s:44:\"Control over which features you want to use.\";}i:6;a:2:{s:3:\"src\";s:66:\"https://ps.w.org/wordpress-seo/assets/screenshot-6.png?rev=1834347\";s:7:\"caption\";s:100:\"Easily import SEO data from other SEO plugins like All In One SEO pack, HeadSpace2 SEO and wpSEO.de.\";}}s:4:\"tags\";a:4:{s:16:\"content-analysis\";s:16:\"Content analysis\";s:11:\"readability\";s:11:\"Readability\";s:3:\"seo\";s:3:\"seo\";s:11:\"xml-sitemap\";s:11:\"xml sitemap\";}s:8:\"versions\";a:67:{s:4:\"10.0\";s:61:\"https://downloads.wordpress.org/plugin/wordpress-seo.10.0.zip\";s:6:\"10.0.1\";s:63:\"https://downloads.wordpress.org/plugin/wordpress-seo.10.0.1.zip\";s:4:\"10.1\";s:61:\"https://downloads.wordpress.org/plugin/wordpress-seo.10.1.zip\";s:6:\"10.1.1\";s:63:\"https://downloads.wordpress.org/plugin/wordpress-seo.10.1.1.zip\";s:6:\"10.1.2\";s:63:\"https://downloads.wordpress.org/plugin/wordpress-seo.10.1.2.zip\";s:6:\"10.1.3\";s:63:\"https://downloads.wordpress.org/plugin/wordpress-seo.10.1.3.zip\";s:4:\"11.0\";s:61:\"https://downloads.wordpress.org/plugin/wordpress-seo.11.0.zip\";s:4:\"11.1\";s:61:\"https://downloads.wordpress.org/plugin/wordpress-seo.11.1.zip\";s:6:\"11.1.1\";s:63:\"https://downloads.wordpress.org/plugin/wordpress-seo.11.1.1.zip\";s:4:\"11.2\";s:61:\"https://downloads.wordpress.org/plugin/wordpress-seo.11.2.zip\";s:6:\"11.2.1\";s:63:\"https://downloads.wordpress.org/plugin/wordpress-seo.11.2.1.zip\";s:4:\"11.3\";s:61:\"https://downloads.wordpress.org/plugin/wordpress-seo.11.3.zip\";s:4:\"11.4\";s:61:\"https://downloads.wordpress.org/plugin/wordpress-seo.11.4.zip\";s:4:\"11.5\";s:61:\"https://downloads.wordpress.org/plugin/wordpress-seo.11.5.zip\";s:4:\"11.6\";s:61:\"https://downloads.wordpress.org/plugin/wordpress-seo.11.6.zip\";s:4:\"11.7\";s:61:\"https://downloads.wordpress.org/plugin/wordpress-seo.11.7.zip\";s:4:\"11.8\";s:61:\"https://downloads.wordpress.org/plugin/wordpress-seo.11.8.zip\";s:4:\"11.9\";s:61:\"https://downloads.wordpress.org/plugin/wordpress-seo.11.9.zip\";s:4:\"12.0\";s:61:\"https://downloads.wordpress.org/plugin/wordpress-seo.12.0.zip\";s:4:\"12.1\";s:61:\"https://downloads.wordpress.org/plugin/wordpress-seo.12.1.zip\";s:4:\"12.2\";s:61:\"https://downloads.wordpress.org/plugin/wordpress-seo.12.2.zip\";s:4:\"12.3\";s:61:\"https://downloads.wordpress.org/plugin/wordpress-seo.12.3.zip\";s:4:\"12.4\";s:61:\"https://downloads.wordpress.org/plugin/wordpress-seo.12.4.zip\";s:4:\"12.5\";s:61:\"https://downloads.wordpress.org/plugin/wordpress-seo.12.5.zip\";s:3:\"7.0\";s:60:\"https://downloads.wordpress.org/plugin/wordpress-seo.7.0.zip\";s:5:\"7.0.1\";s:62:\"https://downloads.wordpress.org/plugin/wordpress-seo.7.0.1.zip\";s:5:\"7.0.2\";s:62:\"https://downloads.wordpress.org/plugin/wordpress-seo.7.0.2.zip\";s:5:\"7.0.3\";s:62:\"https://downloads.wordpress.org/plugin/wordpress-seo.7.0.3.zip\";s:3:\"7.1\";s:60:\"https://downloads.wordpress.org/plugin/wordpress-seo.7.1.zip\";s:3:\"7.2\";s:60:\"https://downloads.wordpress.org/plugin/wordpress-seo.7.2.zip\";s:3:\"7.3\";s:60:\"https://downloads.wordpress.org/plugin/wordpress-seo.7.3.zip\";s:3:\"7.4\";s:60:\"https://downloads.wordpress.org/plugin/wordpress-seo.7.4.zip\";s:5:\"7.4.1\";s:62:\"https://downloads.wordpress.org/plugin/wordpress-seo.7.4.1.zip\";s:5:\"7.4.2\";s:62:\"https://downloads.wordpress.org/plugin/wordpress-seo.7.4.2.zip\";s:3:\"7.5\";s:60:\"https://downloads.wordpress.org/plugin/wordpress-seo.7.5.zip\";s:5:\"7.5.1\";s:62:\"https://downloads.wordpress.org/plugin/wordpress-seo.7.5.1.zip\";s:5:\"7.5.3\";s:62:\"https://downloads.wordpress.org/plugin/wordpress-seo.7.5.3.zip\";s:3:\"7.6\";s:60:\"https://downloads.wordpress.org/plugin/wordpress-seo.7.6.zip\";s:5:\"7.6.1\";s:62:\"https://downloads.wordpress.org/plugin/wordpress-seo.7.6.1.zip\";s:3:\"7.7\";s:60:\"https://downloads.wordpress.org/plugin/wordpress-seo.7.7.zip\";s:5:\"7.7.1\";s:62:\"https://downloads.wordpress.org/plugin/wordpress-seo.7.7.1.zip\";s:5:\"7.7.2\";s:62:\"https://downloads.wordpress.org/plugin/wordpress-seo.7.7.2.zip\";s:5:\"7.7.3\";s:62:\"https://downloads.wordpress.org/plugin/wordpress-seo.7.7.3.zip\";s:3:\"7.8\";s:60:\"https://downloads.wordpress.org/plugin/wordpress-seo.7.8.zip\";s:3:\"7.9\";s:60:\"https://downloads.wordpress.org/plugin/wordpress-seo.7.9.zip\";s:5:\"7.9.1\";s:62:\"https://downloads.wordpress.org/plugin/wordpress-seo.7.9.1.zip\";s:3:\"8.0\";s:60:\"https://downloads.wordpress.org/plugin/wordpress-seo.8.0.zip\";s:3:\"8.1\";s:60:\"https://downloads.wordpress.org/plugin/wordpress-seo.8.1.zip\";s:5:\"8.1.1\";s:62:\"https://downloads.wordpress.org/plugin/wordpress-seo.8.1.1.zip\";s:5:\"8.1.2\";s:62:\"https://downloads.wordpress.org/plugin/wordpress-seo.8.1.2.zip\";s:3:\"8.2\";s:60:\"https://downloads.wordpress.org/plugin/wordpress-seo.8.2.zip\";s:5:\"8.2.1\";s:62:\"https://downloads.wordpress.org/plugin/wordpress-seo.8.2.1.zip\";s:3:\"8.3\";s:60:\"https://downloads.wordpress.org/plugin/wordpress-seo.8.3.zip\";s:3:\"8.4\";s:60:\"https://downloads.wordpress.org/plugin/wordpress-seo.8.4.zip\";s:3:\"9.0\";s:60:\"https://downloads.wordpress.org/plugin/wordpress-seo.9.0.zip\";s:5:\"9.0.1\";s:62:\"https://downloads.wordpress.org/plugin/wordpress-seo.9.0.1.zip\";s:5:\"9.0.2\";s:62:\"https://downloads.wordpress.org/plugin/wordpress-seo.9.0.2.zip\";s:5:\"9.0.3\";s:62:\"https://downloads.wordpress.org/plugin/wordpress-seo.9.0.3.zip\";s:3:\"9.1\";s:60:\"https://downloads.wordpress.org/plugin/wordpress-seo.9.1.zip\";s:3:\"9.2\";s:60:\"https://downloads.wordpress.org/plugin/wordpress-seo.9.2.zip\";s:5:\"9.2.1\";s:62:\"https://downloads.wordpress.org/plugin/wordpress-seo.9.2.1.zip\";s:3:\"9.3\";s:60:\"https://downloads.wordpress.org/plugin/wordpress-seo.9.3.zip\";s:3:\"9.4\";s:60:\"https://downloads.wordpress.org/plugin/wordpress-seo.9.4.zip\";s:3:\"9.5\";s:60:\"https://downloads.wordpress.org/plugin/wordpress-seo.9.5.zip\";s:3:\"9.6\";s:60:\"https://downloads.wordpress.org/plugin/wordpress-seo.9.6.zip\";s:3:\"9.7\";s:60:\"https://downloads.wordpress.org/plugin/wordpress-seo.9.7.zip\";s:5:\"trunk\";s:56:\"https://downloads.wordpress.org/plugin/wordpress-seo.zip\";}s:11:\"donate_link\";s:18:\"https://yoa.st/1up\";s:7:\"banners\";a:2:{s:3:\"low\";s:68:\"https://ps.w.org/wordpress-seo/assets/banner-772x250.png?rev=1843435\";s:4:\"high\";s:69:\"https://ps.w.org/wordpress-seo/assets/banner-1544x500.png?rev=1843435\";}s:18:\"author_block_count\";i:0;s:19:\"author_block_rating\";i:98;}s:7:\"bbpress\";a:27:{s:4:\"name\";s:7:\"bbPress\";s:4:\"slug\";s:7:\"bbpress\";s:7:\"version\";s:5:\"2.6.0\";s:6:\"author\";s:58:\"<a href=\"https://bbpress.org\">The bbPress Contributors</a>\";s:14:\"author_profile\";s:46:\"https://profiles.wordpress.org/johnjamesjacoby\";s:12:\"contributors\";a:5:{s:4:\"matt\";a:3:{s:7:\"profile\";s:35:\"https://profiles.wordpress.org/matt\";s:6:\"avatar\";s:88:\"https://secure.gravatar.com/avatar/767fc9c115a1b989744c755db47feb60?s=96&d=monsterid&r=g\";s:12:\"display_name\";s:14:\"Matt Mullenweg\";}s:15:\"johnjamesjacoby\";a:3:{s:7:\"profile\";s:46:\"https://profiles.wordpress.org/johnjamesjacoby\";s:6:\"avatar\";s:88:\"https://secure.gravatar.com/avatar/7a2644fb53ae2f7bfd7143b504af396c?s=96&d=monsterid&r=g\";s:12:\"display_name\";s:17:\"John James Jacoby\";}s:6:\"jmdodd\";a:3:{s:7:\"profile\";s:37:\"https://profiles.wordpress.org/jmdodd\";s:6:\"avatar\";s:88:\"https://secure.gravatar.com/avatar/6a7c997edea340616bcc6d0fe03f65dd?s=96&d=monsterid&r=g\";s:12:\"display_name\";s:16:\"Jennifer M. Dodd\";}s:6:\"netweb\";a:3:{s:7:\"profile\";s:37:\"https://profiles.wordpress.org/netweb\";s:6:\"avatar\";s:88:\"https://secure.gravatar.com/avatar/97e1620b501da675315ba7cfb740e80f?s=96&d=monsterid&r=g\";s:12:\"display_name\";s:13:\"Stephen Edgar\";}s:14:\"sergeybiryukov\";a:3:{s:7:\"profile\";s:45:\"https://profiles.wordpress.org/sergeybiryukov\";s:6:\"avatar\";s:88:\"https://secure.gravatar.com/avatar/750b7b0fcd855389264c2b1294d61bd6?s=96&d=monsterid&r=g\";s:12:\"display_name\";s:15:\"Sergey Biryukov\";}}s:8:\"requires\";s:3:\"4.7\";s:6:\"tested\";s:3:\"5.3\";s:12:\"requires_php\";b:0;s:6:\"rating\";i:80;s:7:\"ratings\";a:5:{i:5;i:181;i:4;i:39;i:3;i:22;i:2;i:19;i:1;i:38;}s:11:\"num_ratings\";i:299;s:15:\"support_threads\";i:1;s:24:\"support_threads_resolved\";i:0;s:15:\"active_installs\";i:300000;s:12:\"last_updated\";s:21:\"2019-11-12 9:51pm GMT\";s:5:\"added\";s:10:\"2010-01-13\";s:8:\"homepage\";s:19:\"https://bbpress.org\";s:8:\"sections\";a:5:{s:11:\"description\";s:291:\"<p>Are you looking for a timeless, elegant, and streamlined discussion board? bbPress is easy to integrate, easy to use, and is built to scale with your growing community.</p>\n<p>bbPress is intentionally simple yet infinitely powerful forum software, built by contributors to WordPress.</p>\n\";s:12:\"installation\";s:1835:\"<h4>From your WordPress dashboard</h4>\n<ol>\n<li>Visit &#8216;Plugins &gt; Add New&#8217;</li>\n<li>Search for &#8216;bbPress&#8217;</li>\n<li>Activate bbPress from your Plugins page. (You will be greeted with a Welcome page.)</li>\n</ol>\n<h4>From WordPress.org</h4>\n<ol>\n<li>Download bbPress.</li>\n<li>Upload the &#8216;bbpress&#8217; directory to your &#8216;/wp-content/plugins/&#8217; directory, using your favorite method (ftp, sftp, scp, etc&#8230;)</li>\n<li>Activate bbPress from your Plugins page. (You will be greeted with a Welcome page.)</li>\n</ol>\n<h4>Once Activated</h4>\n<ol>\n<li>Visit &#8216;Forums &gt; Add New&#8217; and create some forums. (You can always delete these later.)</li>\n<li>If you have pretty permalinks enabled, visit example.com/forums/, or if you do not have pretty permalinks enabled, visit example.com?post_type=forum</li>\n<li>Visit &#8216;Settings &gt; Forums&#8217; and configure the settings to best match the needs of your community.</li>\n<li>Visit &#8216;Tools &gt; Forums &gt; Import Forums&#8217; if you have an existing forum to convert to bbPress.</li>\n</ol>\n<h4>Once Configured</h4>\n<ul>\n<li>bbPress comes with a robust theme-compatibility API that does its best to make bbPress look and feel right with just-about any WordPress theme. You may need to adjust some styling on your own to make everything look pristine.</li>\n<li>You may want to customize the register/activation/sign-in/lost-password flows, to better suit your site. bbPress comes with a bevy of shortcodes to make this possible, listed here: https://codex.bbpress.org/shortcodes/</li>\n<li>bbPress also comes with built-in support for Akismet and BuddyPress, two very popular and very powerful WordPress plugins. If you&#8217;re using either, visit your Forum Settings page and ensure that integration appears correct.</li>\n</ul>\n\";s:9:\"changelog\";s:11153:\"<h4>2.6.0</h4>\n<ul>\n<li>\n<p>Released on November 12, 2019</p>\n</li>\n<li>\n<p>Per-Forum Moderation</p>\n</li>\n<li>Engagements API</li>\n<li>Support for PHP 7.1 and higher</li>\n<li>Improved Importer (and more platforms!)</li>\n<li>Improved Voices, Favorites, Subscriptions</li>\n<li>Improved Topic &amp; Reply moderation UI</li>\n<li>Improved Item Counts</li>\n<li>Improved Upgrades</li>\n<li>Improved Tools</li>\n<li>Improved Admin-area Experience</li>\n<li>420 total improvements</li>\n</ul>\n<h4>2.5.14</h4>\n<ul>\n<li>\n<p>Released on September 9, 2016</p>\n</li>\n<li>\n<p>Improved support for PHP 7.1 and higher</p>\n</li>\n<li>Improved pagination for non-public post statuses</li>\n<li>Fixed converter row-limit boundaries</li>\n</ul>\n<h4>2.5.13</h4>\n<ul>\n<li>\n<p>Released on May 18, 2017</p>\n</li>\n<li>\n<p>Improved support for <code>post_parent__in</code> type queries</p>\n</li>\n</ul>\n<h4>2.5.12</h4>\n<ul>\n<li>\n<p>Released on December 8, 2016</p>\n</li>\n<li>\n<p>Bump minimum WordPress version to 4.7</p>\n</li>\n<li>Use &#8216;wp_roles_init&#8217; action for dynamic roles</li>\n</ul>\n<h4>2.5.11</h4>\n<ul>\n<li>\n<p>Released on September 9, 2016</p>\n</li>\n<li>\n<p>Improved support for WordPress 4.7</p>\n</li>\n<li>Improved localization of role names</li>\n<li>Increase minimum WordPress version to 4.2</li>\n</ul>\n<h4>2.5.10</h4>\n<ul>\n<li>\n<p>Released on July 13, 2016</p>\n</li>\n<li>\n<p>Improved user display-name rendering</p>\n</li>\n</ul>\n<h4>2.5.9</h4>\n<ul>\n<li>\n<p>Released on May 2, 2016</p>\n</li>\n<li>\n<p>Improved user mentions</p>\n</li>\n</ul>\n<h4>2.5.8</h4>\n<ul>\n<li>\n<p>Released on July 7, 2015</p>\n</li>\n<li>\n<p>Improved ajax actions</p>\n</li>\n<li>Improved user query parsing</li>\n<li>Fixed BuddyPress Groups notice</li>\n</ul>\n<h4>2.5.7</h4>\n<ul>\n<li>\n<p>Released on April 20, 2015</p>\n</li>\n<li>\n<p>Improved output of certain URLs</p>\n</li>\n</ul>\n<h4>2.5.6</h4>\n<ul>\n<li>\n<p>Released on March 16, 2015</p>\n</li>\n<li>\n<p>Improved notification &amp; subscription email sending</p>\n</li>\n</ul>\n<h4>2.5.5</h4>\n<ul>\n<li>\n<p>Released on March 6, 2015</p>\n</li>\n<li>\n<p>Improved bulk editing of users</p>\n</li>\n<li>Improved suggesting of topics &amp; authors for moderators</li>\n<li>Improved converter tool access</li>\n</ul>\n<h4>2.5.4</h4>\n<ul>\n<li>\n<p>Released on June 6, 2014</p>\n</li>\n<li>\n<p>Fixed reply editing causing polluted hierarchy</p>\n</li>\n<li>Added tool for repairing reply positions within topics</li>\n<li>Improved custom slug and displayed user field sanitization</li>\n<li>Improved SSL support when relying on theme compatibility</li>\n</ul>\n<h4>2.5.3</h4>\n<ul>\n<li>\n<p>Released on January 11, 2014</p>\n</li>\n<li>\n<p>WordPress 3.8 support (dashicons, new color schemes)</p>\n</li>\n<li>Fixed dropdown selects in settings pages</li>\n<li>Fixed accidental topic subscription removal on reply form</li>\n<li>Fixed poor grammar in profile title element</li>\n<li>Fixed admin area SSL support</li>\n</ul>\n<h4>2.5.2</h4>\n<ul>\n<li>\n<p>Released on December 27, 2013</p>\n</li>\n<li>\n<p>Fixed BuddyPress (1.9.1) Notification integration</p>\n</li>\n</ul>\n<h4>2.5.1</h4>\n<ul>\n<li>\n<p>Released on December 3, 2013</p>\n</li>\n<li>\n<p>Updated subscriptions setting description</p>\n</li>\n<li>Fixed forum subscriptions not appearing on profiles for some users</li>\n<li>Allow links to have targets</li>\n<li>Improved Windows compatibility</li>\n</ul>\n<h4>2.5.0</h4>\n<ul>\n<li>\n<p>Released on November 25, 2013</p>\n</li>\n<li>\n<p>Added forum subscriptions</p>\n</li>\n<li>Added importers for AEF, Drupal, FluxBB, Kunena Forums (Joomla), MyBB, Phorum, PHPFox, PHPWind, PunBB, SMF, Xenforo and XMB</li>\n<li>Added BuddyPress Notifications integration</li>\n<li>Added ability to enqueue scripts and styles in the template stack</li>\n<li>Fixed various existing importer scripts</li>\n<li>Fixed forum visibility meta saving</li>\n<li>Fixed Akismet anonymous user meta checking</li>\n<li>Fixed inconsistent bbp_dropdown() results</li>\n<li>Fixed topic and reply ping-status inconsistencies</li>\n</ul>\n<h4>2.4.1</h4>\n<ul>\n<li>\n<p>Released on October 10, 2013</p>\n</li>\n<li>\n<p>Fixed forum status saving</p>\n</li>\n<li>Fixed widget settings saving</li>\n<li>Fixed custom wp_title compatibility</li>\n<li>Fixed search results custom permalink compatibility</li>\n<li>Fixed custom user topics &amp; replies pages</li>\n<li>Fixed hierarchical reply handling in converter</li>\n</ul>\n<h4>2.4.0</h4>\n<ul>\n<li>\n<p>Released on August 24, 2013</p>\n</li>\n<li>\n<p>Added hierarchical reply support</p>\n</li>\n<li>Added ability to disable forum search</li>\n<li>Reorganized settings page</li>\n<li>Improved rewrite rules</li>\n<li>Improved responsive CSS</li>\n<li>Improved code posting</li>\n<li>Improved user capability integration</li>\n<li>Improved cache getting and setting</li>\n<li>Audit strict type comparisons</li>\n<li>Audit GlotPress string escaping</li>\n<li>Audit title attribute usage</li>\n<li>Audit WordPress core function usage</li>\n<li>General code clean-up</li>\n</ul>\n<h4>2.3.2</h4>\n<ul>\n<li>\n<p>Released on May 6, 2013</p>\n</li>\n<li>\n<p>Improved posting of preformatted code</p>\n</li>\n<li>Improved theme compatibility CSS</li>\n<li>Improved BuddyPress Activity Streams integration</li>\n</ul>\n<h4>2.3.1</h4>\n<ul>\n<li>\n<p>Released on April 26, 2013</p>\n</li>\n<li>\n<p>Improved posting of preformatted code</p>\n</li>\n<li>Fixed deleting of post cache group</li>\n<li>Fixed moderators not having view_trash capability</li>\n</ul>\n<h4>2.3.0</h4>\n<ul>\n<li>\n<p>Released on April 13, 2013</p>\n</li>\n<li>\n<p>Added forum search functionality</p>\n</li>\n<li>Improved BuddyPress Group Forums integration</li>\n<li>Improved allowed tags in topics and replies</li>\n<li>Added template stack support to theme compatability</li>\n<li>Added more forum migration options</li>\n</ul>\n<h4>2.2.4</h4>\n<ul>\n<li>\n<p>Released on January 24, 2013</p>\n</li>\n<li>\n<p>Prepare converter queries</p>\n</li>\n<li>Improved validation and sanitization of form values</li>\n</ul>\n<h4>2.2.3</h4>\n<ul>\n<li>\n<p>Released on December 11, 2012</p>\n</li>\n<li>\n<p>Improved compatibility with some themes</p>\n</li>\n<li>Fixed integration with BuddyPress Group Forums</li>\n<li>Fixed BuddyPress Activity Stream integration</li>\n</ul>\n<h4>2.2.2</h4>\n<ul>\n<li>\n<p>Released on November 23, 2012</p>\n</li>\n<li>\n<p>RTL and i18n fixes</p>\n</li>\n<li>Improved user profile theme compatibility</li>\n<li>Fixed incorrect link in credits page</li>\n<li>Fixed admin area JS issues related to topic suggest</li>\n<li>Fixed template part reference in extras user edit template</li>\n</ul>\n<h4>2.2.1</h4>\n<ul>\n<li>\n<p>Released on November 19, 2012</p>\n</li>\n<li>\n<p>Fixed role mapping for non-WordPress roles</p>\n</li>\n<li>Fixed issue with private forums being blocked</li>\n<li>Allow moderators to see hidden forums</li>\n</ul>\n<h4>2.2.0</h4>\n<ul>\n<li>\n<p>Released on November 9, 2012</p>\n</li>\n<li>\n<p>Improved user roles and capabilities</p>\n</li>\n<li>Improved theme compatibility</li>\n<li>Improved BuddyPress Group Forums integration</li>\n<li>Improved forums conversion tool</li>\n<li>Improved forums tools and settings</li>\n<li>Improved multisite support</li>\n<li>Added What&#8217;s New and Credits pages</li>\n<li>WordPress 3.5 and BuddyPress 1.7 ready</li>\n</ul>\n<h4>2.1.2</h4>\n<ul>\n<li>\n<p>Released on July 31, 2012</p>\n</li>\n<li>\n<p>Fixed admin-side help verbiage</p>\n</li>\n<li>Fixed reply height CSS</li>\n<li>Fixed password converter</li>\n<li>Fixed child post trash and delete functions</li>\n</ul>\n<h4>2.1.1</h4>\n<ul>\n<li>\n<p>Released on July 23, 2012</p>\n</li>\n<li>\n<p>Fixed Invision, phpBB, and vBulletin importers</p>\n</li>\n<li>Fixed private/hidden forum bugs</li>\n<li>Fixed topic split meta values</li>\n<li>Fixed theme compatibility logic error</li>\n<li>Fixed role mask issues for shared user installs</li>\n<li>Fixed missing function cruft</li>\n<li>Fixed missing filter on displayed user fields</li>\n</ul>\n<h4>2.1.0</h4>\n<ul>\n<li>\n<p>Released on July 8, 2012</p>\n</li>\n<li>\n<p>WordPress 3.4 compatibility</p>\n</li>\n<li>Deprecate $bbp global, use bbpress() singleton</li>\n<li>Private forums now visible to registered users</li>\n<li>Updated forum converter</li>\n<li>Topic and reply edits now ran through Akismet</li>\n<li>Fixed Akismet edit bug</li>\n<li>Fixed Widgets nooping globals</li>\n<li>Fixed translation load order</li>\n<li>Fixed user-edit bugs</li>\n<li>Fixed settings screen regressions</li>\n<li>Improved post cache invalidation</li>\n<li>Improved admin-side nonce checks</li>\n<li>Improved admin settings API</li>\n<li>Improved bbPress 1.1 converter</li>\n<li>Improved BuddyPress integration</li>\n<li>Improved Theme-Compatibility</li>\n<li>Improved template coverage</li>\n<li>Improved query performance</li>\n<li>Improved breadcrumb behavior</li>\n<li>Improved multisite integration</li>\n<li>Improved code clarity</li>\n<li>Improved RTL styling</li>\n<li>Added 2x menu icons for HiDPI displays</li>\n<li>Added fancy editor support</li>\n<li>Added fallback theme picker</li>\n<li>Added tools for importing, resetting, and removing</li>\n</ul>\n<h4>2.0.2</h4>\n<ul>\n<li>Released on November 28, 2011</li>\n</ul>\n<h4>2.0.1</h4>\n<ul>\n<li>Released on November 23, 2011</li>\n</ul>\n<h4>2.0.0</h4>\n<ul>\n<li>\n<p>Released on September 21, 2011</p>\n</li>\n<li>\n<p>Initial plugin release &lt;3</p>\n</li>\n<li>BuddyPress @mention integration</li>\n<li>BuddyPress activity action integration</li>\n<li>GlotPress integration</li>\n<li>Multisite integration</li>\n<li>Akismet integration</li>\n<li>RTL support</li>\n<li>More future proofing internal API&#8217;s</li>\n<li>Green admin color scheme for WordPress 3.2</li>\n<li>Audit usage of get strings for moderator level and above users</li>\n<li>Normalize theme, shortcodes, and template parts</li>\n<li>Added strict moderation support</li>\n<li>Added actions to topic/reply forms</li>\n<li>Added Forum Participant role for multisite use</li>\n<li>Added humans.txt</li>\n<li>Added empty index.php files to prevent snooping</li>\n<li>Added max length to topic titles (default 80 chars)</li>\n<li>Added home link support to breadcrumb</li>\n<li>Added filters for future anti-spam support</li>\n<li>Added missing breadcrumbs to various template files</li>\n<li>Improved templates and CSS</li>\n<li>Improved Theme Compatibility</li>\n<li>Improved Theme Compat class</li>\n<li>Improved Akismet user agent handling</li>\n<li>Improved support for future ajaxification</li>\n<li>Improved unpretty permalink support</li>\n<li>Improved importer</li>\n<li>Improved multisite support</li>\n<li>Fixed Genesis incompatibilities</li>\n<li>Fixed BuddyPress activity stream issues</li>\n<li>Fixed Subscription email sending issues</li>\n<li>Fixed Theme Compat display issues for some themes</li>\n<li>Fixed spam/deleted user handling</li>\n<li>Fixed activation/deactivation</li>\n<li>Fixed a bushel of bugs</li>\n<li>Fixed tag pagination again</li>\n<li>Fixed ajax priority loading</li>\n<li>Fixed tag pagination</li>\n<li>Fixed regression in forum index theme compatibility template</li>\n<li>Fixed replies within wp-admin</li>\n<li>Fixed reply notification links</li>\n<li>Fixed inconsistent breadcrumb behavior</li>\n<li>Fixed theme compatibility issues</li>\n<li>Fixed archive and page conflicts</li>\n<li>Fixed forum archive bug</li>\n<li>Fixed and improvements to importer</li>\n<li>Fixed topic/reply trash</li>\n</ul>\n\";s:11:\"screenshots\";s:1543:\"<ol><li><a href=\"https://ps.w.org/bbpress/assets/screenshot-1.png?rev=872931\"><img src=\"https://ps.w.org/bbpress/assets/screenshot-1.png?rev=872931\" alt=\"Forums - Admin Interface\"></a><p>Forums - Admin Interface</p></li><li><a href=\"https://ps.w.org/bbpress/assets/screenshot-2.png?rev=872931\"><img src=\"https://ps.w.org/bbpress/assets/screenshot-2.png?rev=872931\" alt=\"Topics - Admin Interface\"></a><p>Topics - Admin Interface</p></li><li><a href=\"https://ps.w.org/bbpress/assets/screenshot-3.png?rev=872931\"><img src=\"https://ps.w.org/bbpress/assets/screenshot-3.png?rev=872931\" alt=\"Replies - Admin Interface\"></a><p>Replies - Admin Interface</p></li><li><a href=\"https://ps.w.org/bbpress/assets/screenshot-4.png?rev=872931\"><img src=\"https://ps.w.org/bbpress/assets/screenshot-4.png?rev=872931\" alt=\"Settings - Admin Interface\"></a><p>Settings - Admin Interface</p></li><li><a href=\"https://ps.w.org/bbpress/assets/screenshot-5.png?rev=872931\"><img src=\"https://ps.w.org/bbpress/assets/screenshot-5.png?rev=872931\" alt=\"Settings 2 - Admin Interface\"></a><p>Settings 2 - Admin Interface</p></li><li><a href=\"https://ps.w.org/bbpress/assets/screenshot-6.png?rev=872931\"><img src=\"https://ps.w.org/bbpress/assets/screenshot-6.png?rev=872931\" alt=\"Themes - Admin Interface\"></a><p>Themes - Admin Interface</p></li><li><a href=\"https://ps.w.org/bbpress/assets/screenshot-7.png?rev=872931\"><img src=\"https://ps.w.org/bbpress/assets/screenshot-7.png?rev=872931\" alt=\"Single Forum - Default Theme\"></a><p>Single Forum - Default Theme</p></li></ol>\";s:7:\"reviews\";s:13832:\"<div class=\"review\">\n	<div class=\"review-head\">\n		<div class=\"reviewer-info\">\n			<div class=\"review-title-section\">\n				<h4 class=\"review-title\">Great pice, please keep it up</h4>\n				<div class=\"star-rating\">\n				<div class=\"wporg-ratings\" aria-label=\"5 out of 5 stars\" data-title-template=\"%s out of 5 stars\" data-rating=\"5\" style=\"color:#ffb900;\"><span class=\"star dashicons dashicons-star-filled\"></span><span class=\"star dashicons dashicons-star-filled\"></span><span class=\"star dashicons dashicons-star-filled\"></span><span class=\"star dashicons dashicons-star-filled\"></span><span class=\"star dashicons dashicons-star-filled\"></span></div>				</div>\n			</div>\n			<p class=\"reviewer\">\n				By <a href=\"https://profiles.wordpress.org/juliettdou\"><img alt=\'\' src=\'https://secure.gravatar.com/avatar/cb2f394b42089f2bddec4a26f62525f2?s=16&#038;d=monsterid&#038;r=g\' srcset=\'https://secure.gravatar.com/avatar/cb2f394b42089f2bddec4a26f62525f2?s=32&#038;d=monsterid&#038;r=g 2x\' class=\'avatar avatar-16 photo\' height=\'16\' width=\'16\' /></a><a href=\"https://profiles.wordpress.org/juliettdou\" class=\"reviewer-name\">Juliette Douffet <small>(juliettdou)</small></a> on <span class=\"review-date\">November 10, 2019</span>			</p>\n		</div>\n	</div>\n	<div class=\"review-body\">We are using BBPress since 2013 to power our forum with over 100000 replies. Too bad the developer seems to abandon it. Please keep it up!!!</div>\n</div>\n<div class=\"review\">\n	<div class=\"review-head\">\n		<div class=\"reviewer-info\">\n			<div class=\"review-title-section\">\n				<h4 class=\"review-title\">A oublier</h4>\n				<div class=\"star-rating\">\n				<div class=\"wporg-ratings\" aria-label=\"1 out of 5 stars\" data-title-template=\"%s out of 5 stars\" data-rating=\"1\" style=\"color:#ffb900;\"><span class=\"star dashicons dashicons-star-filled\"></span><span class=\"star dashicons dashicons-star-empty\"></span><span class=\"star dashicons dashicons-star-empty\"></span><span class=\"star dashicons dashicons-star-empty\"></span><span class=\"star dashicons dashicons-star-empty\"></span></div>				</div>\n			</div>\n			<p class=\"reviewer\">\n				By <a href=\"https://profiles.wordpress.org/permasilva\"><img alt=\'\' src=\'https://secure.gravatar.com/avatar/a9ca158d5487e39eef7e39abd9af3b98?s=16&#038;d=monsterid&#038;r=g\' srcset=\'https://secure.gravatar.com/avatar/a9ca158d5487e39eef7e39abd9af3b98?s=32&#038;d=monsterid&#038;r=g 2x\' class=\'avatar avatar-16 photo\' height=\'16\' width=\'16\' /></a><a href=\"https://profiles.wordpress.org/permasilva\" class=\"reviewer-name\">permasilva</a> on <span class=\"review-date\">November 3, 2019</span>			</p>\n		</div>\n	</div>\n	<div class=\"review-body\">J\'ai perdu plusieurs journées pour essayer de configurer ce module. J\'ai même réinstaller complètement mon site, 30 pages, croyant à une erreur d\'un plugin. Mais non, c\'est Bbpress qui génère un code pourri au niveau du rendu.\n\nJ\'ai d\'abord eu des grands placards blancs, généré pour une div de simple-translate, qui apparaissaient sous mes forums. Après réinstallation, totale, sur une installation fraiche, le rendu complètement pourri, illisible.\n\nJ\'ai installé Asgaros Forum avec une facilité déconcertante.\n\nA fuir</div>\n</div>\n<div class=\"review\">\n	<div class=\"review-head\">\n		<div class=\"reviewer-info\">\n			<div class=\"review-title-section\">\n				<h4 class=\"review-title\">Very oldfashioned cracked my website</h4>\n				<div class=\"star-rating\">\n				<div class=\"wporg-ratings\" aria-label=\"2 out of 5 stars\" data-title-template=\"%s out of 5 stars\" data-rating=\"2\" style=\"color:#ffb900;\"><span class=\"star dashicons dashicons-star-filled\"></span><span class=\"star dashicons dashicons-star-filled\"></span><span class=\"star dashicons dashicons-star-empty\"></span><span class=\"star dashicons dashicons-star-empty\"></span><span class=\"star dashicons dashicons-star-empty\"></span></div>				</div>\n			</div>\n			<p class=\"reviewer\">\n				By <a href=\"https://profiles.wordpress.org/anant01\"><img alt=\'\' src=\'https://secure.gravatar.com/avatar/f8a30f714b2e721fa82244016ae6f3ec?s=16&#038;d=monsterid&#038;r=g\' srcset=\'https://secure.gravatar.com/avatar/f8a30f714b2e721fa82244016ae6f3ec?s=32&#038;d=monsterid&#038;r=g 2x\' class=\'avatar avatar-16 photo\' height=\'16\' width=\'16\' /></a><a href=\"https://profiles.wordpress.org/anant01\" class=\"reviewer-name\">anant01</a> on <span class=\"review-date\">October 31, 2019</span>			</p>\n		</div>\n	</div>\n	<div class=\"review-body\">Seems to work for some people, very oldfashioned and missing usability... looks awful and broke my website ... so what. Delete it.</div>\n</div>\n<div class=\"review\">\n	<div class=\"review-head\">\n		<div class=\"reviewer-info\">\n			<div class=\"review-title-section\">\n				<h4 class=\"review-title\">Working as my expectations</h4>\n				<div class=\"star-rating\">\n				<div class=\"wporg-ratings\" aria-label=\"5 out of 5 stars\" data-title-template=\"%s out of 5 stars\" data-rating=\"5\" style=\"color:#ffb900;\"><span class=\"star dashicons dashicons-star-filled\"></span><span class=\"star dashicons dashicons-star-filled\"></span><span class=\"star dashicons dashicons-star-filled\"></span><span class=\"star dashicons dashicons-star-filled\"></span><span class=\"star dashicons dashicons-star-filled\"></span></div>				</div>\n			</div>\n			<p class=\"reviewer\">\n				By <a href=\"https://profiles.wordpress.org/hackysharma\"><img alt=\'\' src=\'https://secure.gravatar.com/avatar/dd406c293e9447c61bd5b5ba5bb07ac3?s=16&#038;d=monsterid&#038;r=g\' srcset=\'https://secure.gravatar.com/avatar/dd406c293e9447c61bd5b5ba5bb07ac3?s=32&#038;d=monsterid&#038;r=g 2x\' class=\'avatar avatar-16 photo\' height=\'16\' width=\'16\' /></a><a href=\"https://profiles.wordpress.org/hackysharma\" class=\"reviewer-name\">hackysharma</a> on <span class=\"review-date\">September 10, 2019</span>			</p>\n		</div>\n	</div>\n	<div class=\"review-body\">Great plugin and works nice</div>\n</div>\n<div class=\"review\">\n	<div class=\"review-head\">\n		<div class=\"reviewer-info\">\n			<div class=\"review-title-section\">\n				<h4 class=\"review-title\">☆ ☆ ☆ ☆ ☆</h4>\n				<div class=\"star-rating\">\n				<div class=\"wporg-ratings\" aria-label=\"5 out of 5 stars\" data-title-template=\"%s out of 5 stars\" data-rating=\"5\" style=\"color:#ffb900;\"><span class=\"star dashicons dashicons-star-filled\"></span><span class=\"star dashicons dashicons-star-filled\"></span><span class=\"star dashicons dashicons-star-filled\"></span><span class=\"star dashicons dashicons-star-filled\"></span><span class=\"star dashicons dashicons-star-filled\"></span></div>				</div>\n			</div>\n			<p class=\"reviewer\">\n				By <a href=\"https://profiles.wordpress.org/imhodom\"><img alt=\'\' src=\'https://secure.gravatar.com/avatar/775c9091cbc3fcad9ff9277341f35d41?s=16&#038;d=monsterid&#038;r=g\' srcset=\'https://secure.gravatar.com/avatar/775c9091cbc3fcad9ff9277341f35d41?s=32&#038;d=monsterid&#038;r=g 2x\' class=\'avatar avatar-16 photo\' height=\'16\' width=\'16\' /></a><a href=\"https://profiles.wordpress.org/imhodom\" class=\"reviewer-name\">imhodom</a> on <span class=\"review-date\">September 5, 2019</span>			</p>\n		</div>\n	</div>\n	<div class=\"review-body\">Good job! 10x !</div>\n</div>\n<div class=\"review\">\n	<div class=\"review-head\">\n		<div class=\"reviewer-info\">\n			<div class=\"review-title-section\">\n				<h4 class=\"review-title\">Useful plugin!</h4>\n				<div class=\"star-rating\">\n				<div class=\"wporg-ratings\" aria-label=\"5 out of 5 stars\" data-title-template=\"%s out of 5 stars\" data-rating=\"5\" style=\"color:#ffb900;\"><span class=\"star dashicons dashicons-star-filled\"></span><span class=\"star dashicons dashicons-star-filled\"></span><span class=\"star dashicons dashicons-star-filled\"></span><span class=\"star dashicons dashicons-star-filled\"></span><span class=\"star dashicons dashicons-star-filled\"></span></div>				</div>\n			</div>\n			<p class=\"reviewer\">\n				By <a href=\"https://profiles.wordpress.org/matthewwilliams\"><img alt=\'\' src=\'https://secure.gravatar.com/avatar/e4657f75d0497e39388cb10c62d43e62?s=16&#038;d=monsterid&#038;r=g\' srcset=\'https://secure.gravatar.com/avatar/e4657f75d0497e39388cb10c62d43e62?s=32&#038;d=monsterid&#038;r=g 2x\' class=\'avatar avatar-16 photo\' height=\'16\' width=\'16\' /></a><a href=\"https://profiles.wordpress.org/matthewwilliams\" class=\"reviewer-name\">matthewwilliams</a> on <span class=\"review-date\">September 4, 2019</span>			</p>\n		</div>\n	</div>\n	<div class=\"review-body\"> </div>\n</div>\n<div class=\"review\">\n	<div class=\"review-head\">\n		<div class=\"reviewer-info\">\n			<div class=\"review-title-section\">\n				<h4 class=\"review-title\">Awesome Work</h4>\n				<div class=\"star-rating\">\n				<div class=\"wporg-ratings\" aria-label=\"5 out of 5 stars\" data-title-template=\"%s out of 5 stars\" data-rating=\"5\" style=\"color:#ffb900;\"><span class=\"star dashicons dashicons-star-filled\"></span><span class=\"star dashicons dashicons-star-filled\"></span><span class=\"star dashicons dashicons-star-filled\"></span><span class=\"star dashicons dashicons-star-filled\"></span><span class=\"star dashicons dashicons-star-filled\"></span></div>				</div>\n			</div>\n			<p class=\"reviewer\">\n				By <a href=\"https://profiles.wordpress.org/gailfindley\"><img alt=\'\' src=\'https://secure.gravatar.com/avatar/798c700cb8c1b38c5aa03867e5abc461?s=16&#038;d=monsterid&#038;r=g\' srcset=\'https://secure.gravatar.com/avatar/798c700cb8c1b38c5aa03867e5abc461?s=32&#038;d=monsterid&#038;r=g 2x\' class=\'avatar avatar-16 photo\' height=\'16\' width=\'16\' /></a><a href=\"https://profiles.wordpress.org/gailfindley\" class=\"reviewer-name\">gailfindley</a> on <span class=\"review-date\">August 26, 2019</span>			</p>\n		</div>\n	</div>\n	<div class=\"review-body\">Thanks for creating.</div>\n</div>\n<div class=\"review\">\n	<div class=\"review-head\">\n		<div class=\"reviewer-info\">\n			<div class=\"review-title-section\">\n				<h4 class=\"review-title\">Akismet is the only anti-spam option</h4>\n				<div class=\"star-rating\">\n				<div class=\"wporg-ratings\" aria-label=\"5 out of 5 stars\" data-title-template=\"%s out of 5 stars\" data-rating=\"5\" style=\"color:#ffb900;\"><span class=\"star dashicons dashicons-star-filled\"></span><span class=\"star dashicons dashicons-star-filled\"></span><span class=\"star dashicons dashicons-star-filled\"></span><span class=\"star dashicons dashicons-star-filled\"></span><span class=\"star dashicons dashicons-star-filled\"></span></div>				</div>\n			</div>\n			<p class=\"reviewer\">\n				By <a href=\"https://profiles.wordpress.org/rushoverinc\"><img alt=\'\' src=\'https://secure.gravatar.com/avatar/81e5345153c750a9567cebfbaf2992c5?s=16&#038;d=monsterid&#038;r=g\' srcset=\'https://secure.gravatar.com/avatar/81e5345153c750a9567cebfbaf2992c5?s=32&#038;d=monsterid&#038;r=g 2x\' class=\'avatar avatar-16 photo\' height=\'16\' width=\'16\' /></a><a href=\"https://profiles.wordpress.org/rushoverinc\" class=\"reviewer-name\">rushoverinc</a> on <span class=\"review-date\">August 10, 2019</span>			</p>\n		</div>\n	</div>\n	<div class=\"review-body\">There never was, and there never will be any kind of anti-spam plugin made for BBpress. You\'re better off switching to a non-WordPress-based forum software. There\'s nothing that WordPress can do about spam unless you pay monthly for it. Sad how WordPress used to be a free, open-source kind of community and now all it is, is fake-free plugins.\n\nedit: So it\'s not abandonware, I\'ve changed the title.\nedit2: WP-Spamshield what people are looking for, not Akismet.</div>\n</div>\n<div class=\"review\">\n	<div class=\"review-head\">\n		<div class=\"reviewer-info\">\n			<div class=\"review-title-section\">\n				<h4 class=\"review-title\">Best plugin</h4>\n				<div class=\"star-rating\">\n				<div class=\"wporg-ratings\" aria-label=\"5 out of 5 stars\" data-title-template=\"%s out of 5 stars\" data-rating=\"5\" style=\"color:#ffb900;\"><span class=\"star dashicons dashicons-star-filled\"></span><span class=\"star dashicons dashicons-star-filled\"></span><span class=\"star dashicons dashicons-star-filled\"></span><span class=\"star dashicons dashicons-star-filled\"></span><span class=\"star dashicons dashicons-star-filled\"></span></div>				</div>\n			</div>\n			<p class=\"reviewer\">\n				By <a href=\"https://profiles.wordpress.org/vverma\"><img alt=\'\' src=\'https://secure.gravatar.com/avatar/ce6c43785dcc98f4ae55ec6d10151112?s=16&#038;d=monsterid&#038;r=g\' srcset=\'https://secure.gravatar.com/avatar/ce6c43785dcc98f4ae55ec6d10151112?s=32&#038;d=monsterid&#038;r=g 2x\' class=\'avatar avatar-16 photo\' height=\'16\' width=\'16\' /></a><a href=\"https://profiles.wordpress.org/vverma\" class=\"reviewer-name\">vverma</a> on <span class=\"review-date\">August 8, 2019</span>			</p>\n		</div>\n	</div>\n	<div class=\"review-body\">Its a very useful forum plugin</div>\n</div>\n<div class=\"review\">\n	<div class=\"review-head\">\n		<div class=\"reviewer-info\">\n			<div class=\"review-title-section\">\n				<h4 class=\"review-title\">The best forum</h4>\n				<div class=\"star-rating\">\n				<div class=\"wporg-ratings\" aria-label=\"5 out of 5 stars\" data-title-template=\"%s out of 5 stars\" data-rating=\"5\" style=\"color:#ffb900;\"><span class=\"star dashicons dashicons-star-filled\"></span><span class=\"star dashicons dashicons-star-filled\"></span><span class=\"star dashicons dashicons-star-filled\"></span><span class=\"star dashicons dashicons-star-filled\"></span><span class=\"star dashicons dashicons-star-filled\"></span></div>				</div>\n			</div>\n			<p class=\"reviewer\">\n				By <a href=\"https://profiles.wordpress.org/neidenunes385\"><img alt=\'\' src=\'https://secure.gravatar.com/avatar/910d5c16a36484b5655ffb10015c8812?s=16&#038;d=monsterid&#038;r=g\' srcset=\'https://secure.gravatar.com/avatar/910d5c16a36484b5655ffb10015c8812?s=32&#038;d=monsterid&#038;r=g 2x\' class=\'avatar avatar-16 photo\' height=\'16\' width=\'16\' /></a><a href=\"https://profiles.wordpress.org/neidenunes385\" class=\"reviewer-name\">Neide Nunes <small>(neidenunes385)</small></a> on <span class=\"review-date\">August 2, 2019</span>			</p>\n		</div>\n	</div>\n	<div class=\"review-body\">Amazing forum plugin, a lot of addons and compatibility! </div>\n</div>\n\";}s:13:\"download_link\";s:56:\"https://downloads.wordpress.org/plugin/bbpress.2.6.0.zip\";s:11:\"screenshots\";a:7:{i:1;a:2:{s:3:\"src\";s:59:\"https://ps.w.org/bbpress/assets/screenshot-1.png?rev=872931\";s:7:\"caption\";s:24:\"Forums - Admin Interface\";}i:2;a:2:{s:3:\"src\";s:59:\"https://ps.w.org/bbpress/assets/screenshot-2.png?rev=872931\";s:7:\"caption\";s:24:\"Topics - Admin Interface\";}i:3;a:2:{s:3:\"src\";s:59:\"https://ps.w.org/bbpress/assets/screenshot-3.png?rev=872931\";s:7:\"caption\";s:25:\"Replies - Admin Interface\";}i:4;a:2:{s:3:\"src\";s:59:\"https://ps.w.org/bbpress/assets/screenshot-4.png?rev=872931\";s:7:\"caption\";s:26:\"Settings - Admin Interface\";}i:5;a:2:{s:3:\"src\";s:59:\"https://ps.w.org/bbpress/assets/screenshot-5.png?rev=872931\";s:7:\"caption\";s:28:\"Settings 2 - Admin Interface\";}i:6;a:2:{s:3:\"src\";s:59:\"https://ps.w.org/bbpress/assets/screenshot-6.png?rev=872931\";s:7:\"caption\";s:24:\"Themes - Admin Interface\";}i:7;a:2:{s:3:\"src\";s:59:\"https://ps.w.org/bbpress/assets/screenshot-7.png?rev=872931\";s:7:\"caption\";s:28:\"Single Forum - Default Theme\";}}s:4:\"tags\";a:5:{s:7:\"akismet\";s:7:\"akismet\";s:10:\"discussion\";s:10:\"discussion\";s:6:\"forums\";s:6:\"forums\";s:7:\"support\";s:7:\"support\";s:5:\"theme\";s:5:\"theme\";}s:8:\"versions\";a:56:{s:3:\"2.0\";s:54:\"https://downloads.wordpress.org/plugin/bbpress.2.0.zip\";s:10:\"2.0-beta-1\";s:61:\"https://downloads.wordpress.org/plugin/bbpress.2.0-beta-1.zip\";s:11:\"2.0-beta-2b\";s:62:\"https://downloads.wordpress.org/plugin/bbpress.2.0-beta-2b.zip\";s:10:\"2.0-beta-3\";s:61:\"https://downloads.wordpress.org/plugin/bbpress.2.0-beta-3.zip\";s:11:\"2.0-beta-3b\";s:62:\"https://downloads.wordpress.org/plugin/bbpress.2.0-beta-3b.zip\";s:8:\"2.0-rc-2\";s:59:\"https://downloads.wordpress.org/plugin/bbpress.2.0-rc-2.zip\";s:8:\"2.0-rc-3\";s:59:\"https://downloads.wordpress.org/plugin/bbpress.2.0-rc-3.zip\";s:8:\"2.0-rc-4\";s:59:\"https://downloads.wordpress.org/plugin/bbpress.2.0-rc-4.zip\";s:8:\"2.0-rc-5\";s:59:\"https://downloads.wordpress.org/plugin/bbpress.2.0-rc-5.zip\";s:5:\"2.0.1\";s:56:\"https://downloads.wordpress.org/plugin/bbpress.2.0.1.zip\";s:5:\"2.0.2\";s:56:\"https://downloads.wordpress.org/plugin/bbpress.2.0.2.zip\";s:5:\"2.0.3\";s:56:\"https://downloads.wordpress.org/plugin/bbpress.2.0.3.zip\";s:3:\"2.1\";s:54:\"https://downloads.wordpress.org/plugin/bbpress.2.1.zip\";s:10:\"2.1-beta-1\";s:61:\"https://downloads.wordpress.org/plugin/bbpress.2.1-beta-1.zip\";s:7:\"2.1-rc1\";s:58:\"https://downloads.wordpress.org/plugin/bbpress.2.1-rc1.zip\";s:7:\"2.1-rc2\";s:58:\"https://downloads.wordpress.org/plugin/bbpress.2.1-rc2.zip\";s:7:\"2.1-rc3\";s:58:\"https://downloads.wordpress.org/plugin/bbpress.2.1-rc3.zip\";s:7:\"2.1-rc4\";s:58:\"https://downloads.wordpress.org/plugin/bbpress.2.1-rc4.zip\";s:5:\"2.1.1\";s:56:\"https://downloads.wordpress.org/plugin/bbpress.2.1.1.zip\";s:5:\"2.1.2\";s:56:\"https://downloads.wordpress.org/plugin/bbpress.2.1.2.zip\";s:5:\"2.1.3\";s:56:\"https://downloads.wordpress.org/plugin/bbpress.2.1.3.zip\";s:3:\"2.2\";s:54:\"https://downloads.wordpress.org/plugin/bbpress.2.2.zip\";s:5:\"2.2.1\";s:56:\"https://downloads.wordpress.org/plugin/bbpress.2.2.1.zip\";s:5:\"2.2.2\";s:56:\"https://downloads.wordpress.org/plugin/bbpress.2.2.2.zip\";s:5:\"2.2.3\";s:56:\"https://downloads.wordpress.org/plugin/bbpress.2.2.3.zip\";s:5:\"2.2.4\";s:56:\"https://downloads.wordpress.org/plugin/bbpress.2.2.4.zip\";s:3:\"2.3\";s:54:\"https://downloads.wordpress.org/plugin/bbpress.2.3.zip\";s:9:\"2.3-beta1\";s:60:\"https://downloads.wordpress.org/plugin/bbpress.2.3-beta1.zip\";s:5:\"2.3.1\";s:56:\"https://downloads.wordpress.org/plugin/bbpress.2.3.1.zip\";s:5:\"2.3.2\";s:56:\"https://downloads.wordpress.org/plugin/bbpress.2.3.2.zip\";s:3:\"2.4\";s:54:\"https://downloads.wordpress.org/plugin/bbpress.2.4.zip\";s:5:\"2.4.1\";s:56:\"https://downloads.wordpress.org/plugin/bbpress.2.4.1.zip\";s:3:\"2.5\";s:54:\"https://downloads.wordpress.org/plugin/bbpress.2.5.zip\";s:5:\"2.5.1\";s:56:\"https://downloads.wordpress.org/plugin/bbpress.2.5.1.zip\";s:6:\"2.5.10\";s:57:\"https://downloads.wordpress.org/plugin/bbpress.2.5.10.zip\";s:6:\"2.5.11\";s:57:\"https://downloads.wordpress.org/plugin/bbpress.2.5.11.zip\";s:6:\"2.5.12\";s:57:\"https://downloads.wordpress.org/plugin/bbpress.2.5.12.zip\";s:6:\"2.5.13\";s:57:\"https://downloads.wordpress.org/plugin/bbpress.2.5.13.zip\";s:6:\"2.5.14\";s:57:\"https://downloads.wordpress.org/plugin/bbpress.2.5.14.zip\";s:5:\"2.5.2\";s:56:\"https://downloads.wordpress.org/plugin/bbpress.2.5.2.zip\";s:5:\"2.5.3\";s:56:\"https://downloads.wordpress.org/plugin/bbpress.2.5.3.zip\";s:5:\"2.5.4\";s:56:\"https://downloads.wordpress.org/plugin/bbpress.2.5.4.zip\";s:5:\"2.5.5\";s:56:\"https://downloads.wordpress.org/plugin/bbpress.2.5.5.zip\";s:5:\"2.5.6\";s:56:\"https://downloads.wordpress.org/plugin/bbpress.2.5.6.zip\";s:5:\"2.5.7\";s:56:\"https://downloads.wordpress.org/plugin/bbpress.2.5.7.zip\";s:5:\"2.5.8\";s:56:\"https://downloads.wordpress.org/plugin/bbpress.2.5.8.zip\";s:5:\"2.5.9\";s:56:\"https://downloads.wordpress.org/plugin/bbpress.2.5.9.zip\";s:10:\"2.6-beta-1\";s:61:\"https://downloads.wordpress.org/plugin/bbpress.2.6-beta-1.zip\";s:10:\"2.6-beta-2\";s:61:\"https://downloads.wordpress.org/plugin/bbpress.2.6-beta-2.zip\";s:8:\"2.6-rc-1\";s:59:\"https://downloads.wordpress.org/plugin/bbpress.2.6-rc-1.zip\";s:8:\"2.6-rc-3\";s:59:\"https://downloads.wordpress.org/plugin/bbpress.2.6-rc-3.zip\";s:8:\"2.6-rc-5\";s:59:\"https://downloads.wordpress.org/plugin/bbpress.2.6-rc-5.zip\";s:8:\"2.6-rc-6\";s:59:\"https://downloads.wordpress.org/plugin/bbpress.2.6-rc-6.zip\";s:8:\"2.6-rc-7\";s:59:\"https://downloads.wordpress.org/plugin/bbpress.2.6-rc-7.zip\";s:5:\"2.6.0\";s:56:\"https://downloads.wordpress.org/plugin/bbpress.2.6.0.zip\";s:5:\"trunk\";s:50:\"https://downloads.wordpress.org/plugin/bbpress.zip\";}s:11:\"donate_link\";s:0:\"\";s:7:\"banners\";a:2:{s:3:\"low\";s:61:\"https://ps.w.org/bbpress/assets/banner-772x250.png?rev=478663\";s:4:\"high\";s:62:\"https://ps.w.org/bbpress/assets/banner-1544x500.png?rev=567403\";}s:18:\"author_block_count\";i:0;s:19:\"author_block_rating\";i:80;}s:19:\"the-events-calendar\";a:27:{s:4:\"name\";s:19:\"The Events Calendar\";s:4:\"slug\";s:19:\"the-events-calendar\";s:7:\"version\";s:6:\"4.9.11\";s:6:\"author\";s:51:\"<a href=\"http://m.tri.be/1x\">Modern Tribe, Inc.</a>\";s:14:\"author_profile\";s:42:\"https://profiles.wordpress.org/moderntribe\";s:12:\"contributors\";a:30:{s:11:\"moderntribe\";a:3:{s:7:\"profile\";s:42:\"https://profiles.wordpress.org/moderntribe\";s:6:\"avatar\";s:88:\"https://secure.gravatar.com/avatar/9bfb26600a68a2e1bbadb259d323ccba?s=96&d=monsterid&r=g\";s:12:\"display_name\";s:18:\"Modern Tribe, Inc.\";}s:7:\"borkweb\";a:3:{s:7:\"profile\";s:38:\"https://profiles.wordpress.org/borkweb\";s:6:\"avatar\";s:88:\"https://secure.gravatar.com/avatar/1e656e49ac69899daa3ff81232b041eb?s=96&d=monsterid&r=g\";s:12:\"display_name\";s:18:\"Matthew Batchelder\";}s:13:\"barryhughes-1\";a:3:{s:7:\"profile\";s:44:\"https://profiles.wordpress.org/barryhughes-1\";s:6:\"avatar\";s:88:\"https://secure.gravatar.com/avatar/4d7aea8e7879e3ea257ddb4a99a300f1?s=96&d=monsterid&r=g\";s:12:\"display_name\";s:5:\"Barry\";}s:7:\"bordoni\";a:3:{s:7:\"profile\";s:38:\"https://profiles.wordpress.org/bordoni\";s:6:\"avatar\";s:88:\"https://secure.gravatar.com/avatar/c412fa91c51f4e2cff375f74efb663e3?s=96&d=monsterid&r=g\";s:12:\"display_name\";s:15:\"Gustavo Bordoni\";}s:11:\"brianjessee\";a:3:{s:7:\"profile\";s:42:\"https://profiles.wordpress.org/brianjessee\";s:6:\"avatar\";s:88:\"https://secure.gravatar.com/avatar/a35212d9e01d2ca4e96ecdd05b110b4a?s=96&d=monsterid&r=g\";s:12:\"display_name\";s:5:\"Brian\";}s:6:\"aguseo\";a:3:{s:7:\"profile\";s:37:\"https://profiles.wordpress.org/aguseo\";s:6:\"avatar\";s:88:\"https://secure.gravatar.com/avatar/57554805e57d21c1036c8b91f944c8ca?s=96&d=monsterid&r=g\";s:12:\"display_name\";s:12:\"Andr?s Guseo\";}s:12:\"cliffpaulick\";a:3:{s:7:\"profile\";s:43:\"https://profiles.wordpress.org/cliffpaulick\";s:6:\"avatar\";s:88:\"https://secure.gravatar.com/avatar/9d6a1dc1b8a9d8ae30091df24801a166?s=96&d=monsterid&r=g\";s:12:\"display_name\";s:16:\"Clifford Paulick\";}s:9:\"courane01\";a:3:{s:7:\"profile\";s:40:\"https://profiles.wordpress.org/courane01\";s:6:\"avatar\";s:88:\"https://secure.gravatar.com/avatar/03ff681abf60368b6ce5f5edcf9be310?s=96&d=monsterid&r=g\";s:12:\"display_name\";s:24:\"Courtney Engle Robertson\";}s:9:\"faction23\";a:3:{s:7:\"profile\";s:40:\"https://profiles.wordpress.org/faction23\";s:6:\"avatar\";s:88:\"https://secure.gravatar.com/avatar/0e35ddcfbeff4291fbe9759e0dc6d78e?s=96&d=monsterid&r=g\";s:12:\"display_name\";s:9:\"faction23\";}s:8:\"geoffbel\";a:3:{s:7:\"profile\";s:39:\"https://profiles.wordpress.org/geoffbel\";s:6:\"avatar\";s:88:\"https://secure.gravatar.com/avatar/7d6fd85658178125baa17b6055dd3be1?s=96&d=monsterid&r=g\";s:12:\"display_name\";s:8:\"GeoffBel\";}s:11:\"geoffgraham\";a:3:{s:7:\"profile\";s:42:\"https://profiles.wordpress.org/geoffgraham\";s:6:\"avatar\";s:88:\"https://secure.gravatar.com/avatar/ac0d6274a6cea04669e66a20ec0ea204?s=96&d=monsterid&r=g\";s:12:\"display_name\";s:11:\"geoffgraham\";}s:6:\"ggwicz\";a:3:{s:7:\"profile\";s:37:\"https://profiles.wordpress.org/ggwicz\";s:6:\"avatar\";s:88:\"https://secure.gravatar.com/avatar/134aea3f08741f478b809cb861c47029?s=96&d=monsterid&r=g\";s:12:\"display_name\";s:6:\"ggwicz\";}s:8:\"jbrinley\";a:3:{s:7:\"profile\";s:39:\"https://profiles.wordpress.org/jbrinley\";s:6:\"avatar\";s:88:\"https://secure.gravatar.com/avatar/8398939a88a8ac7bb49e36a4ed0001f5?s=96&d=monsterid&r=g\";s:12:\"display_name\";s:16:\"Jonathan Brinley\";}s:7:\"jentheo\";a:3:{s:7:\"profile\";s:38:\"https://profiles.wordpress.org/jentheo\";s:6:\"avatar\";s:88:\"https://secure.gravatar.com/avatar/e02959cfbac1b4fab42cd6019c0e70c6?s=96&d=monsterid&r=g\";s:12:\"display_name\";s:8:\"Jennifer\";}s:11:\"leahkoerper\";a:3:{s:7:\"profile\";s:42:\"https://profiles.wordpress.org/leahkoerper\";s:6:\"avatar\";s:88:\"https://secure.gravatar.com/avatar/9fe5fa3836f54c58936a3979212da076?s=96&d=monsterid&r=g\";s:12:\"display_name\";s:11:\"leahkoerper\";}s:8:\"lucatume\";a:3:{s:7:\"profile\";s:39:\"https://profiles.wordpress.org/lucatume\";s:6:\"avatar\";s:88:\"https://secure.gravatar.com/avatar/d393fcb75e0801c42fe5559ae1e846e6?s=96&d=monsterid&r=g\";s:12:\"display_name\";s:8:\"lucatume\";}s:10:\"mastromktg\";a:3:{s:7:\"profile\";s:41:\"https://profiles.wordpress.org/mastromktg\";s:6:\"avatar\";s:88:\"https://secure.gravatar.com/avatar/2b00cd58bc464b8c7f42444f4859489f?s=96&d=monsterid&r=g\";s:12:\"display_name\";s:10:\"mastromktg\";}s:6:\"mzaweb\";a:3:{s:7:\"profile\";s:37:\"https://profiles.wordpress.org/mzaweb\";s:6:\"avatar\";s:88:\"https://secure.gravatar.com/avatar/e59d0777ab3367f9f0716a34cf0f2519?s=96&d=monsterid&r=g\";s:12:\"display_name\";s:14:\"Daniel Dvorkin\";}s:11:\"neillmcshea\";a:3:{s:7:\"profile\";s:42:\"https://profiles.wordpress.org/neillmcshea\";s:6:\"avatar\";s:88:\"https://secure.gravatar.com/avatar/43599a71b1b6506a26d029221f1d61a9?s=96&d=monsterid&r=g\";s:12:\"display_name\";s:11:\"neillmcshea\";}s:10:\"nicosantos\";a:3:{s:7:\"profile\";s:41:\"https://profiles.wordpress.org/nicosantos\";s:6:\"avatar\";s:88:\"https://secure.gravatar.com/avatar/95c71861e932eb1fa3ae45787414b256?s=96&d=monsterid&r=g\";s:12:\"display_name\";s:10:\"nicosantos\";}s:19:\"patriciahillebrandt\";a:3:{s:7:\"profile\";s:50:\"https://profiles.wordpress.org/patriciahillebrandt\";s:6:\"avatar\";s:88:\"https://secure.gravatar.com/avatar/c03a2dae8f08c2a6073d0f71b436314b?s=96&d=monsterid&r=g\";s:12:\"display_name\";s:19:\"patriciahillebrandt\";}s:12:\"peterchester\";a:3:{s:7:\"profile\";s:43:\"https://profiles.wordpress.org/peterchester\";s:6:\"avatar\";s:88:\"https://secure.gravatar.com/avatar/651c904bff2b7ba2365a3c9a798360d3?s=96&d=monsterid&r=g\";s:12:\"display_name\";s:13:\"Peter Chester\";}s:12:\"reidpeifer-1\";a:3:{s:7:\"profile\";s:43:\"https://profiles.wordpress.org/reidpeifer-1\";s:6:\"avatar\";s:88:\"https://secure.gravatar.com/avatar/d64a708c47677a16cf4a89c6cc23a6ca?s=96&d=monsterid&r=g\";s:12:\"display_name\";s:11:\"reid.peifer\";}s:10:\"roblagatta\";a:3:{s:7:\"profile\";s:41:\"https://profiles.wordpress.org/roblagatta\";s:6:\"avatar\";s:88:\"https://secure.gravatar.com/avatar/c2717ee8bd708182011d2bc1fd1da67d?s=96&d=monsterid&r=g\";s:12:\"display_name\";s:12:\"Rob La Gatta\";}s:10:\"ryancurban\";a:3:{s:7:\"profile\";s:41:\"https://profiles.wordpress.org/ryancurban\";s:6:\"avatar\";s:88:\"https://secure.gravatar.com/avatar/11614d0224a5e19da0b7f0d3c81b6016?s=96&d=monsterid&r=g\";s:12:\"display_name\";s:10:\"Ryan Urban\";}s:13:\"shanepearlman\";a:3:{s:7:\"profile\";s:44:\"https://profiles.wordpress.org/shanepearlman\";s:6:\"avatar\";s:88:\"https://secure.gravatar.com/avatar/c1bfc093791f1d872b38a87d6e425ba2?s=96&d=monsterid&r=g\";s:12:\"display_name\";s:14:\"Shane Pearlman\";}s:9:\"tribecari\";a:3:{s:7:\"profile\";s:40:\"https://profiles.wordpress.org/tribecari\";s:6:\"avatar\";s:88:\"https://secure.gravatar.com/avatar/28fe59a13c190ef03d1c591b21f46ccc?s=96&d=monsterid&r=g\";s:12:\"display_name\";s:8:\"Caroline\";}s:6:\"vicskf\";a:3:{s:7:\"profile\";s:37:\"https://profiles.wordpress.org/vicskf\";s:6:\"avatar\";s:88:\"https://secure.gravatar.com/avatar/3a2a95b83191dc10b76ba61aba61c618?s=96&d=monsterid&r=g\";s:12:\"display_name\";s:14:\"Victor Zarranz\";}s:9:\"zbtirrell\";a:3:{s:7:\"profile\";s:40:\"https://profiles.wordpress.org/zbtirrell\";s:6:\"avatar\";s:88:\"https://secure.gravatar.com/avatar/eeb48b1ae8eca09700c2c2642a1f7dcf?s=96&d=monsterid&r=g\";s:12:\"display_name\";s:12:\"Zach Tirrell\";}s:7:\"juanfra\";a:3:{s:7:\"profile\";s:38:\"https://profiles.wordpress.org/juanfra\";s:6:\"avatar\";s:88:\"https://secure.gravatar.com/avatar/8f1aff2353626680d863c7fb4c5e7f66?s=96&d=monsterid&r=g\";s:12:\"display_name\";s:16:\"Juanfra Aldasoro\";}}s:8:\"requires\";s:3:\"4.7\";s:6:\"tested\";s:3:\"5.3\";s:12:\"requires_php\";s:3:\"5.6\";s:6:\"rating\";i:88;s:7:\"ratings\";a:5:{i:5;i:1332;i:4;i:94;i:3;i:60;i:2;i:44;i:1;i:155;}s:11:\"num_ratings\";i:1685;s:15:\"support_threads\";i:150;s:24:\"support_threads_resolved\";i:18;s:15:\"active_installs\";i:700000;s:12:\"last_updated\";s:22:\"2019-11-13 12:26am GMT\";s:5:\"added\";s:10:\"2010-01-19\";s:8:\"homepage\";s:0:\"\";s:8:\"sections\";a:6:{s:11:\"description\";s:10171:\"<p>Create an events calendar and manage it with ease. The Events Calendar plugin provides professional-level quality and features backed by a team you can trust.</p>\n<p>Packed with loads of useful features, The Events Ca`lendar by Modern Tribe is ready to go right out of the box. It’s extensible, easy to use, and completely customizable.</p>\n<p>Just getting started? Read through the <a href=\"http://m.tri.be/2d\" rel=\"nofollow\">New User Primer</a> to get set up.</p>\n<p>Looking for additional functionality including recurring events, ticket sales, publicly submitted events, automatic imports, and more?</p>\n<p><strong>Check out <a href=\"http://m.tri.be/mj\" rel=\"nofollow\">Events Calendar PRO</a> and <a href=\"http://m.tri.be/2a\" rel=\"nofollow\">other add-ons</a></strong></p>\n<blockquote>\n<p><strong>New Import Tool!</strong><br />\n  We’ve made bulk event imports easier to manage than ever. This add-on service for The Events Calendar allows you to import events from your favorite sources, including Meetup, Google Calendar, iCalendar, CSV, ICS and Other URLs (beta).<br />\n  <a href=\"http://m.tri.be/197u\" rel=\"nofollow\">Check out Event Aggregator now</a>.</p>\n</blockquote>\n<h4>Built solid &amp; supported</h4>\n<p>The Events Calendar is crafted the WordPress way with hours of strategy, design, development, and testing going into each release. We stand behind our work and offer light support weekly for the community via the WordPress.org support forums.</p>\n<p>If you need a deeper level of support or a faster response to your specific question, our Events Calendar PRO add-on includes access to our premium support forums with a 24-48 hour response time during the workweek.</p>\n<p>Enjoy using The Events Calendar, know how to customize it, and want to make money helping people? We’re growing our community team and would love to hear from you. If you’re interested, <a href=\"http://m.tri.be/mk\" rel=\"nofollow\">check this out!</a></p>\n<h4>Plug-n-play &amp; highly customizable</h4>\n<p>The Events Calendar is built to work out of the box. Just turn it on, configure the settings to match your needs and you&#8217;ll be making events in less than 5 minutes.</p>\n<p>By developers, for developers&#8230; it&#8217;s ready to be the foundation for your wildest hack sessions. Complete with a skeleton stylesheet to theme fast and efficiently, loads of tools including partial template overrides, a host of template tags, hooks and filters, <a href=\"http://m.tri.be/eu\" rel=\"nofollow\">careful documentation</a>, as well as a <a href=\"http://m.tri.be/ext\" rel=\"nofollow\">library of free extensions</a>. The Events Calendar is built FOR people who build websites.</p>\n<p>Whether your vision is big or small, you’re in good company. Hundreds of thousands of churches, eateries, small businesses, musicians, venues, and non-profits are publishing and promoting their events with The Events Calendar.</p>\n<p>The Events Calendar has been scaled to work on networks with over 25 million unique visitors per month and hundreds of thousands of events. Fortune 100 companies, major universities, government institutions, and some seriously epic startups showcase their events with our platform.</p>\n<h4>Features</h4>\n<p>Whether you’re operating a hyperlocal hub listing thousands of events, a university with many thousands of users, or you’re a sole business owner listing your classes, The Events Calendar has your back.</p>\n<ul>\n<li>Rapidly create events</li>\n<li>Saved venues &amp; organizers</li>\n<li>Calendar month view with tooltips</li>\n<li>Event List view</li>\n<li>Day view</li>\n<li>Event search</li>\n<li>Google maps</li>\n<li>Widget: Upcoming events list</li>\n<li>Events Taxonomies (Categories &amp; Tags)</li>\n<li>Google Calendar and iCal exporting</li>\n<li>WP REST API endpoints</li>\n<li>Completely ajaxified for super smooth browsing</li>\n<li>Completely responsive from mobile to tablet to desktop</li>\n<li>Tested on the major theme frameworks such as Avada, Genesis, Woo Themes, Thesis and many more.</li>\n<li>Increase your SEO with Microformats</li>\n<li>Internationalized &amp; translated</li>\n<li>Multiple stylesheets to improve integration</li>\n<li>Extensive template tags for customization</li>\n<li>Hooks &amp; filters galore</li>\n<li>Caching support</li>\n<li>Debug mode for developers</li>\n<li><a href=\"http://m.tri.be/1a0r\" rel=\"nofollow\">Library of extensions</a></li>\n</ul>\n<h4>Submitting Patches</h4>\n<p>If you’ve identified a bug and have a fix, we’d welcome it at our <a href=\"https://github.com/moderntribe/the-events-calendar\" rel=\"nofollow\">GitHub page for The Events Calendar</a>. Simply submit a pull request so we can review as part of our <a href=\"http://m.tri.be/release-schedule\" rel=\"nofollow\">release cycle</a> and merge into the codebase if appropriate from there. If a pull request is rejected, we&#8217;ll do our best to tell you why. Users whose pull requests are accepted will receive credit in the plugin&#8217;s changelog. For more information, check out the readme at our GitHub page. Happy coding!</p>\n<h3>Documentation</h3>\n<p>All of our online documentation can be found on <a href=\"http://m.tri.be/eu\" rel=\"nofollow\">our documentation site</a>.</p>\n<p>Some links you may find particularly useful are:</p>\n<ul>\n<li><a href=\"http://m.tri.be/2l\" rel=\"nofollow\">The Events Calendar New User Primer</a></li>\n<li><a href=\"http://m.tri.be/2m\" rel=\"nofollow\">The Themer&#8217;s Guide to The Events Calendar</a></li>\n<li><a href=\"http://m.tri.be/18wm\" rel=\"nofollow\">Knowledgebase</a></li>\n</ul>\n<p>If you have any questions about this plugin, you can post a thread in our <a href=\"https://wordpress.org/support/plugin/the-events-calendar\">WordPress.org forum</a>. Please search existing threads before opening a new one.</p>\n<p>The <a href=\"http://m.tri.be/2r\" rel=\"nofollow\">Modern Tribe premium support forums</a> are available for you to read. You won&#8217;t, however, be able to post a message in any forums beyond Pre-Sale Questions unless you have purchased a premium license.</p>\n<h3>Add-Ons</h3>\n<p>But wait: there&#8217;s more! We&#8217;ve got a whole stable of plugins available to help you be awesome at what you do. Check out a full list of the products below, and over on <a href=\"http://m.tri.be/18wn\" rel=\"nofollow\">our website</a>.</p>\n<p>Our Free Plugins:</p>\n<ul>\n<li><a href=\"https://wordpress.org/plugins/event-tickets/\">Event Tickets</a></li>\n<li><a href=\"https://wordpress.org/plugins/advanced-post-manager/\">Advanced Post Manager</a></li>\n<li><a href=\"https://wordpress.org/plugins/gigpress/\">GigPress</a></li>\n<li><a href=\"https://wordpress.org/plugins/image-widget/\">Image Widget</a></li>\n</ul>\n<p>Our Premium Plugins and Services:</p>\n<ul>\n<li><a href=\"http://m.tri.be/18wi\" rel=\"nofollow\">Events Calendar PRO</a></li>\n<li><a href=\"http://m.tri.be/197u\" rel=\"nofollow\">Event Aggregator</a> (service)</li>\n<li><a href=\"http://m.tri.be/18wk\" rel=\"nofollow\">Event Tickets Plus</a></li>\n<li><a href=\"http://m.tri.be/2g\" rel=\"nofollow\">Community Events</a></li>\n<li><a href=\"http://m.tri.be/18wl\" rel=\"nofollow\">Community Tickets</a></li>\n<li><a href=\"http://m.tri.be/fa\" rel=\"nofollow\">Filter Bar</a></li>\n<li><a href=\"http://m.tri.be/2e\" rel=\"nofollow\">Eventbrite Tickets</a></li>\n</ul>\n<h3>Help</h3>\n<p>Welcome to The Events Calendar, a full-featured events management system for WordPress. Thank you so much for using the labor of our love. We are Modern Tribe and we are here to help you be awesome.</p>\n<p>If you aren&#8217;t familiar with The Events Calendar, check out our <a href=\"http://m.tri.be/2p\" rel=\"nofollow\">new user primer</a>. It&#8217;ll introduce you to the basics of what the plugin has to offer and will have you creating events in no time. From there, the resources below &#8212; extensive template tag documentation, FAQs, video walkthroughs and more &#8212; will give you a leg up as you dig deeper.</p>\n<p>Additional resources available include:</p>\n<ul>\n<li><a href=\"https://theeventscalendar.com/release-schedule/\" rel=\"nofollow\">Release Schedule</a></li>\n<li><a href=\"https://theeventscalendar.com/known-issues/\" rel=\"nofollow\">Known Issues</a></li>\n<li><a href=\"http://m.tri.be/eu\" rel=\"nofollow\">Documentation</a></li>\n<li><a href=\"http://m.tri.be/2n\" rel=\"nofollow\">FAQ</a></li>\n<li><a href=\"http://m.tri.be/2t\" rel=\"nofollow\">Help Videos</a></li>\n<li><a href=\"http://m.tri.be/2u\" rel=\"nofollow\">Tutorials</a></li>\n<li><a href=\"http://m.tri.be/2v\" rel=\"nofollow\">Release Notes</a></li>\n<li><a href=\"http://m.tri.be/2r\" rel=\"nofollow\">Forums</a></li>\n</ul>\n<p>We hit the <a href=\"https://wordpress.org/support/plugin/the-events-calendar/\">The Events Calendar forum here on WordPress.org</a> about once a week, assisting users with basic troubleshooting and identifying bugs that have been reported. (If you are looking for more active support, might we suggest buying a PRO license? Our team hits the <a href=\"http://m.tri.be/2r\" rel=\"nofollow\">Premium Forums</a> daily.)</p>\n<p>Some things to consider before posting on the forum:</p>\n<ul>\n<li>Look through existing threads before posting a new one and check that there isn&#8217;t already a discussion going on for your issue.</li>\n<li>Your issue will be solved more quickly if you run a few checks before making a support request. Deactivate your plugins one by one &#8211; if the issue is fixed by deactivating a plugin you know you&#8217;ve got a plugin conflict. To test your Theme, revert to the default Twenty Twelve Theme to see if you are still experiencing the problem. If not, your Theme is the issue. Please provide this information when making your support request.</li>\n<li>Sometimes, just resetting your permalinks can fix the issue. Visit Events -&gt; Settings -&gt; Permalinks, save your permalinks with a different option and then save with your preferred choice again. This can solve events-related problems and is worth a shot before creating a new thread.</li>\n</ul>\n<p>Still not happy? Shoot us an email to support@theeventscalendar.com or tweet to <a href=\"https://twitter.com/TheEventsCal\" rel=\"nofollow\">@TheEventsCal</a> and tell us why. We&#8217;ll do what we can to make it right.</p>\n\";s:12:\"installation\";s:999:\"<h4>Install &amp; Activate</h4>\n<p>Installing the plugin is easy. Just follow these steps:</p>\n<ol>\n<li>From the dashboard of your site, navigate to Plugins &#8211;&gt; Add New.</li>\n<li>Select the Upload option and hit &#8220;Choose File.&#8221;</li>\n<li>When the popup appears select the the-events-calendar-x.x.zip file from your desktop. (The &#8216;x.x&#8217; will change depending on the current version number).</li>\n<li>Follow the on-screen instructions and wait as the upload completes.</li>\n<li>When it&#8217;s finished, activate the plugin via the prompt. A message will show confirming activation was successful. A link to access the calendar directly on the frontend will be presented here as well.</li>\n</ol>\n<p>That&#8217;s it! Just configure your settings as you see fit, and you&#8217;re on your way to creating events in style. Need help getting things started? Check out our <a href=\"http://m.tri.be/2l\" rel=\"nofollow\">new user primer</a> for help with settings and features.</p>\n\";s:3:\"faq\";s:5561:\"\n<h4>Are there any troubleshooting steps you&#8217;d suggest I try that might resolve my issue before I post a new thread?</h4>\n<p>\n<p>First, make sure that you&#8217;re running the latest version of The Events Calendar (4.6 as of this release). If you&#8217;re running Events Calendar PRO it needs to match the version number of The Events Calendar. And if you&#8217;ve got any other add-ons, make sure those are current / running the latest code as well.</p>\n<p>The most common issues we see are either plugin or theme conflicts. You can test if a plugin or theme is conflicting by manually deactivating other plugins until just The Events Calendar is running on your site. If the issue persists from there, revert to the default Twenty Fourteen theme. If the issue is resolved after deactivating a specific plugin or your theme, you&#8217;ll know that is the source of the conflict.</p>\n<p>Note that we aren&#8217;t going to say &#8220;tough luck&#8221; if you identify a plugin/theme conflict. While we can&#8217;t guarantee 100% integration with any plugin or theme out there, we will do our best (and reach out the plugin/theme author as needed) to figure out a solution that benefits everyone.</p>\n</p>\n<h4>I&#8217;m still stuck. Where do I go to file a bug or ask a question?</h4>\n<p>\n<p>Users of the free The Events Calendar should post their questions in the plugin&#8217;s <a href=\"https://wordpress.org/support/plugin/the-events-calendar/\">WordPress.org forum</a>, which we hit about once a week (usually on Wednesdays). Please make sure to read <a href=\"http://m.tri.be/19oc\" rel=\"nofollow\">our sticky post</a> providing an overview of the support we provide free users BEFORE posting. If you find you&#8217;re not getting support in as timely a fashion as you wish, you might want to consider purchasing a PRO license.</p>\n<p>If you&#8217;re already a PRO user, you&#8217;re entitled access to our more actively-monitored <a href=\"http://m.tri.be/2r\" rel=\"nofollow\">Events Calendar PRO forum</a> on our website. We can provide a deeper level of support here and hit these forums on a daily basis during the work week. Generally, except in times of increased support loads, we reply to all comments within 24-48 hours during the business week.</p>\n</p>\n<h4>Events Calendar PRO looks awesome! I&#8217;m sold! How can I get my hands on it?</h4>\n<p>\n<p>Events Calendar PRO can be purchased directly on <a href=\"http://m.tri.be/18wi\" rel=\"nofollow\">our website</a>. There are five (5) license types available, and all licenses include access to premium support, new feature releases, and regular maintenance updates.</p>\n</p>\n<h4>I&#8217;m interested in PRO or another add-on, but there are a few questions I&#8217;ve got before making the purchase. Can you help me get those addressed?</h4>\n<p>\n<p>Absolutely. If you&#8217;re not finding your questions answered on the product pages, hit up our <a href=\"http://m.tri.be/2w\" rel=\"nofollow\">pre-sales forum</a> on our site. You can save yourself some time by reviewing the threads first to verify if your question has already been asked. If it hasn&#8217;t, post a new thread as a guest. We&#8217;ll get you a reply as quickly as we can, so you can make an informed decision regarding purchase.</p>\n</p>\n<h4>What add-ons are available for The Events Calendar, and where can I read more about them?</h4>\n<p>\n<p>The following add-ons are available for The Events Calendar:</p>\n<ul>\n<li><a href=\"http://m.tri.be/18wi\" rel=\"nofollow\">Events Calendar PRO</a>, for adding premium calendar features like recurring events, advanced views, cool widgets, shortcodes, additional fields, and more!</li>\n<li><a href=\"http://m.tri.be/197u\" rel=\"nofollow\">Event Aggregator</a>, a service that effortlessly fills your calendar with events from Meetup, Google Calendar, iCalendar, Eventbrite, CSV, and ICS.</li>\n<li><a href=\"http://m.tri.be/18wj\" rel=\"nofollow\">Event Tickets</a> (free), which allows you to collect RSVPs to events. It can run alongside The Events Calendar or as a standalone plugin that adds RSVP functionality to WordPress posts and pages.</li>\n<li><a href=\"http://m.tri.be/18wk\" rel=\"nofollow\">Event Tickets Plus</a>, which allows you to sell tickets for your events using your favorite e-commerce platform.</li>\n<li><a href=\"http://m.tri.be/2g\" rel=\"nofollow\">Community Events</a>, for allowing frontend event submission from your readers.</li>\n<li><a href=\"http://m.tri.be/18wl\" rel=\"nofollow\">Community Tickets</a>, which allows event organizers to sell tickets to the events they submit via Community Events.</li>\n<li><a href=\"http://m.tri.be/fa\" rel=\"nofollow\">Filter Bar</a>, for adding advanced frontend filtering capabilities to your events calendar.</li>\n<li><a href=\"http://m.tri.be/2e\" rel=\"nofollow\">Eventbrite Tickets</a>, for selling tickets to your event directly through Eventbrite.</li>\n</ul>\n</p>\n<h4>I have a feature idea. What&#8217;s the best way to tell you about it?</h4>\n<p>\n<p>We&#8217;ve got a <a href=\"https://tribe.uservoice.com/forums/195723-feature-ideas\" rel=\"nofollow\">UserVoice page</a> where we&#8217;re actively watching for feature ideas from the community. Vote up existing feature requests or add your own, and help us shape the future of the products business in a way that best meets the community&#8217;s needs.</p>\n</p>\n<h4>I&#8217;ve still got questions. Where can I find answers?</h4>\n<p>\n<p>Check out our extensive <a href=\"http://m.tri.be/18wm\" rel=\"nofollow\">knowledgebase</a> for articles on using, tweaking, and troubleshooting our plugins.</p>\n</p>\n\n\";s:9:\"changelog\";s:146819:\"<h4>[4.9.11] 2019-11-12</h4>\n<ul>\n<li>Fix &#8211; Fixed issue where DD/MM/YYYY style dates were not supported during Event Aggregator imports [117691]</li>\n<li>Fix &#8211; Resolved issue where non YYYY-MM-DD datepicker formats resulted in unpredictable behavior while navigating views [116086, 126472, 117909]</li>\n<li>Fix &#8211; Fixed date issue where the event date was defaulting to current date when editing an event with the block editor [132735]</li>\n<li>Tweak &#8211; Added additional datepicker formats for simpler selection [116086, 126472, 117909]</li>\n<li>Tweak &#8211; Updated the Repository implementation to handle more complex <code>orderby</code> constructs [133303]</li>\n<li>Tweak &#8211; Added the <code>Tribe__Date_Utils::get_week_start_end</code> method [133303]</li>\n<li>Tweak &#8211; added the <code>tribe_events_suppress_query_filters</code> filter to allow suppressing <code>Tribe__Events__Query</code> filters [134827]</li>\n<li>Language &#8211; 5 new strings added, 23 updated, 2 fuzzied, and 13 obsoleted</li>\n</ul>\n<h4>[4.9.10] 2019-10-16</h4>\n<ul>\n<li>Tweak &#8211; added the <code>tribe_sanitize_deep</code> function to sanitize and validate input values [134427]</li>\n<li>Tweak &#8211; use the <code>tribe_sanitize_deep</code> function to sanitize the values returned by the <code>tribe_get_request_var</code> function [134427]</li>\n<li>Tweak &#8211; Rename &#8220;Datepicker Date Format&#8221; to &#8220;Compact Date Format&#8221; [134526]</li>\n<li>Tweak &#8211; Adjust Promoter loading order to increase compatibility with plugins that use authentication early in the process [134862]</li>\n<li>Tweak &#8211; Add support for Authentication using a Header when using Promoter [133922]</li>\n<li>Language &#8211; 2 new strings added, 25 updated, 0 fuzzied, and 1 obsoleted</li>\n</ul>\n<h4>[4.9.9] 2019-09-25</h4>\n<ul>\n<li>Fix &#8211; Set the start date with the current day for the &#8220;All&#8221; events page for recurring events. Thanks Andy, leapness and others for flagging this! [130350]</li>\n<li>Tweak &#8211; Updated Freemius integration code [133148]</li>\n<li>Tweak &#8211; Conform iCalendar feed to specifications by not putting quotes around the timezone ID. This fixes some custom parsers [133626]</li>\n<li>Language &#8211; 0 new strings added, 16 updated, 0 fuzzied, and 1 obsoleted</li>\n</ul>\n<h4>[4.9.8] 2019-09-04</h4>\n<ul>\n<li>Tweak &#8211; Added the Monolog logging library as alternative logging backend [120785]</li>\n<li>Tweak &#8211; Hook Monolog logger on <code>tribe_log</code> action [120785]</li>\n<li>Tweak &#8211; Add redirection of <code>tribe( \'logger\' )-&gt;log()</code> calls to the Monolog logger using the <code>tribe_log_use_action_logger</code> filter [120785]</li>\n<li>Fix &#8211; Conform iCalendar feed to specifications by not putting quotes around the timezone. This fixes Outlook compatibility [131791]</li>\n<li>Fix &#8211; Additional fields with multiple values using pipes <code>|</code> as separators are working properly on importing again. [131510]</li>\n<li>Fix &#8211; Fix default view redirection loop on mobile devices. Thanks Ricardo, cittaslow and others for flagging this! [125567]</li>\n<li>Fix &#8211; Handling of featured image setting during Event Aggregator CSV imports [127132]</li>\n<li>Language &#8211; 1 new strings added, 10 updated, 0 fuzzied, and 0 obsoleted</li>\n</ul>\n<h4>[4.9.7] 2019-08-19</h4>\n<ul>\n<li>Tweak &#8211; Update Lodash version on Block editor to prevent any possibility of a security issue with the package. From v4.17.11 to v4.17.15 [131421]</li>\n<li>Tweak &#8211; Add filter &#8216;tribe_events_js_config&#8217; to allow filtering the contents of the Javascript configuration [132567]</li>\n<li>Tweak &#8211; Updates to the shortcode Javascript code to allow disabling the URL manipulation behavior [132567]</li>\n<li>Fix &#8211; Prevent mascot image to get blown up out of proportions to a larger size on buggy CSS loading. [131910]</li>\n<li>Language &#8211; 3 new strings added, 191 updated, 1 fuzzied, and 0 obsoleted</li>\n</ul>\n<h4>[4.9.6] 2019-08-07</h4>\n<ul>\n<li>Tweak &#8211; Update Event Aggregator to include compatibility with new Meetup API requirements &#8211; <a href=\"http://m.tri.be/1afb\" rel=\"nofollow\">See more</a> [125635]</li>\n<li>Language &#8211; 5 new strings added, 120 updated, 5 fuzzied, and 10 obsoleted</li>\n</ul>\n<h4>[4.9.5] 2019-07-25</h4>\n<ul>\n<li>Tweak &#8211; Update redirection URLs for Freemius actions [130281]</li>\n<li>Fix &#8211; Location filtering for Context class moved out of construct, resolving lots of navigation problems across The Events Calendar [130754]</li>\n<li>Fix &#8211; Featured event AJAX and browser navigation working as expected for all use cases. [127272]</li>\n<li>Fix &#8211; Shortcode properly handling featured param on AJAX requests. [114002]</li>\n<li>Fix &#8211; Remove removing wpautop for gutenberg blocks to fix spacing when content comes from classic editor. [122801]</li>\n<li>Language &#8211; 4 new strings added, 16 updated, 0 fuzzied, and 0 obsoleted</li>\n</ul>\n<h4>[4.9.4] 2019-07-03</h4>\n<ul>\n<li>Tweak &#8211; Add filter <code>tribe_events_event_insert_args</code> the arguments in prior to inserting the event and meta fields. [129517]</li>\n<li>Tweak &#8211; Add filter <code>tribe_events_event_update_args</code> the arguments prior the update of an event and meta fields. [129517]</li>\n<li>Tweak &#8211; Add filter <code>tribe_events_event_prevent_update</code> to disable the update for an event via the Tribe API [129517]</li>\n<li>Tweak &#8211; Add filter <code>tribe_events_archive_get_args</code> to filter the arguments used to get the events on the archive page via REST API. [129517]</li>\n<li>Tweak &#8211; Add filter <code>tribe_events_validator_is_event_id</code> to define if is a valid event_id [129517]</li>\n<li>Tweak &#8211; Add action <code>tribe_rest_before_event_data</code> executed before the Event data is pulled before deliver the Event via REST API. [129517]</li>\n<li>Tweak &#8211; Add <code>Tribe__Events__Query::last_found_events()</code> to access the last results via the <code>Query</code> object [129517]</li>\n<li>Tweak &#8211; Wrap <code>register_rest_route</code> calls with <code>tribe_register_rest_route</code> to enable filtering on REST registration</li>\n<li>Tweak &#8211; Add filter <code>tribe_ical_feed_vtimezone</code> to filter the <code>VTIMEZONE</code> group [89999]</li>\n<li>Tweak &#8211; Include proper documentation of why the plugin has been deactivated and a knowledgebase article about how to downgrade [129726]</li>\n<li>Tweak &#8211; When trying to update The Events Calendar with an incompatible version of an Addon that is expired, it will stop the upgrade [129727]</li>\n<li>Tweak &#8211; Add filter <code>tribe_is_classic_editor_plugin_active</code> to change the output if the classic editor is active or not [121267]</li>\n<li>Tweak &#8211; Create a new key if <code>AUTH_KEY</code> is not defined or is empty and add a new filter <code>tribe_promoter_secret_key</code> to filter the result [127183]</li>\n<li>Tweak &#8211; Divide the <code>tribe-common.js</code> file to prevent that file from being bloated with external dependencies. [129526]</li>\n<li>Tweak &#8211; Make sure <code>UTC-0</code> is converted back to <code>UTC</code> instead of <code>UTC-01</code> [129240]</li>\n<li>Tweak &#8211; Add new function <code>tribe_register_rest_route</code> Wrapper around <code>register_rest_route</code> to filter the arguments when a new REST endpoint is created [129517]</li>\n<li>Tweak &#8211; Add new method <code>Tribe__Cost_Utils::parse_separators</code> to infer decimal and thousands separators from a value that might have been formatted in a local different from the current one [98061]</li>\n<li>Fix &#8211; Save of event meta data when Classic editor plugin and gutenberg blocks for events are enabled [121267]</li>\n<li>Fix &#8211; Moved The Events Calendar specific code from common Context class into The Events Calendar [129241]</li>\n<li>Fix &#8211; Fixed issue where multiday events were not returning correct end date in block editor [128033]</li>\n<li>Fix &#8211; Resolved issue where deactivation feedback was not hooked properly [128341]</li>\n<li>Fix &#8211; Added escaping to the event website URL target attribute [129565]</li>\n<li>Fix &#8211; Fix Timezone definitions for <code>*.ics</code> file on events [89999]</li>\n<li>Fix &#8211; Resolved an issue where non-English decimal and thousands event cost separators could lead to wrong cost values in REST API responses [98061]</li>\n<li>Fix &#8211; Prevent Clipboard Javascript from loading all over the place on <code>/wp-admin/</code> [129526]</li>\n<li>Fix &#8211; PHP 5.6 compatibility for <code>trait Cache_User</code> by using WP action <code>shutdown</code> instead of <code>__destruct</code> on our <code>WP_Rewrite</code> [129860]</li>\n<li>Language &#8211; 14 new strings added, 222 updated, 1 fuzzied, and 6 obsoleted</li>\n</ul>\n<h4>[4.9.3.2] 2019-06-20</h4>\n<ul>\n<li>Fix &#8211; Prevent issue where older versions of the tribe-common libraries could be bootstrapped [129478]</li>\n<li>Fix &#8211; Add Promoter PCSS file so that the proper CSS will be generated on package build [129584]</li>\n</ul>\n<h4>[4.9.3.1] 2019-06-07</h4>\n<ul>\n<li>Fix &#8211; Remove caching of rewrite base slugs which make third-party, Photo and Week work as expected [129035]</li>\n<li>Tweak &#8211; Adjust newsletter signup submission destination [129034]</li>\n</ul>\n<h4>[4.9.3] 2019-06-06</h4>\n<ul>\n<li>Fix &#8211; Fixed issue where the previous events link was not present on initial page load of the List View [127477]</li>\n<li>Language &#8211; 10 new strings added, 18 updated, 0 fuzzied, and 0 obsoleted</li>\n</ul>\n<h4>[4.9.2] 2019-05-16</h4>\n<ul>\n<li>Tweak &#8211; In the Event Repository class: filter the event cretion meta before checking it for coherency</li>\n<li>Tweak &#8211; Reduced file size by removing .po files and directing anyone creating or editing local translations to translate.wordpress.org</li>\n<li>Fix &#8211; Fix event bar issue where it was required to pick the date in order to search events via keyword or location [126158]</li>\n<li>Fix &#8211; Make back-compatibility handling more robust when dealing with classes non-existing in the older plugin versions [127173]</li>\n</ul>\n<h4>[4.9.1.1] 2019-05-06</h4>\n<ul>\n<li>Fix &#8211; Prevent Composer autoloader from throwing Fatal due to unexistent <code>setClassMapAuthoritative()</code> method [126590]</li>\n</ul>\n<h4>[4.9.1] 2019-05-02</h4>\n<ul>\n<li>Fix &#8211; Prevent recurring events all page to throw 404 when events are in the past [126790]</li>\n<li>Fix &#8211; Backwards compatibility for <code>eventDiplay</code> usage around <code>list</code> and <code>day</code> only showing upcoming events [126686]</li>\n<li>Fix &#8211; List events Widget will display events until their end date has passed [126837]</li>\n<li>Tweak &#8211; Add values for the JSON-LD object to avoid Google console errors. Fields added: <code>offers.availability</code>, <code>offers.category</code>, <code>offers.priceCurrency</code>, <code>offers.validFrom</code> and <code>performer</code> [120193]</li>\n<li>Tweak &#8211; Add <code>tribe_events_cost_unformatted</code> filter to allow WPML support for WooCommerce Multilingual</li>\n<li>Language &#8211; 0 new strings added, 168 updated, 0 fuzzied, and 5 obsoleted</li>\n</ul>\n<h4>[4.9.0.3] 2019-04-26</h4>\n<ul>\n<li>Fix &#8211; Prevent Composer autoloader from throwing Fatal due to unexistent <code>setClassMapAuthoritative()</code> method [126590]</li>\n</ul>\n<h4>[4.9.0.2] 2019-04-25</h4>\n<ul>\n<li>Fix &#8211; Avoid fatals due to Query method not been present by bumping version of Event Tickets required to 4.10.4.2</li>\n</ul>\n<h4>[4.9.0.1] 2019-04-25</h4>\n<ul>\n<li>Fix &#8211; Modifications to <code>tribe_get_events()</code> to resolve problems introduced by latest release <code>4.9.0</code></li>\n<li>Fix &#8211; Backwards compatibility for <code>\'eventDisplay\' =&gt; \'upcoming\'</code> on <code>tribe_get_events()</code>. Thanks @softwebteam, @mrwweb and @karks88 [126124]</li>\n<li>Fix &#8211; Single navigation to next and previous events using the Object Relational Mapping classes [126144]</li>\n<li>Fix &#8211; Events displayed correctly on all views, using End date instead of Start Date. Making sure events that are not over still show on upcoming [126259]</li>\n</ul>\n<h4>[4.9.0] 2019-04-17</h4>\n<ul>\n<li>Feature &#8211; Refactor the Database Connection to start using an Object Relational Mapping tool for a better tested codebase</li>\n<li>Feature &#8211; Add the <code>tribe_events()</code> function as entry-point to the Events ORM and the supporting filter code [116356, 115579]</li>\n<li>Feature &#8211; Add the <code>tribe_venues()</code> function as entry-point to the Venues ORM and the supporting filter code [116356, 115579]</li>\n<li>Feature &#8211; Add the <code>tribe_organizers()</code> function as entry-point to the Organizers ORM and the supporting filter code [116356, 115579]</li>\n<li>Feature &#8211; Add additional caching to The Events Calendar REST API archives and the Post Repository event/venue/organizer responses [117159]</li>\n<li>Feature &#8211; Include Freemius integration on to allow opt-in information collection for 10% of new users</li>\n<li>Tweak &#8211; Setting the site of Timezones will trigger queries using UTC to equalize event dates on Views</li>\n<li>Tweak &#8211; Add filter to allow deactivating Freemius <code>tribe_events_integrations_should_load_freemius</code></li>\n<li>Tweak &#8211; Include a way for third-party to handle Known Range rebuilding of events <code>tribe_events_rebuild_known_range</code></li>\n<li>Tweak &#8211; All new granular handling for UTC and Timezone saving on the Classic editor</li>\n<li>Tweak &#8211; Add support for the <code>tribe_suppress_query_filters</code> query variable to prevent the plugin&#8217;s own query filters from applying [116356, 115579]</li>\n<li>Tweak &#8211; Add the <code>tribe_events_has_next_args</code> and <code>tribe_events_has_previous_args</code> filters to allow filtering the arguments that check if next/previous archive pages or events are available [123950]</li>\n<li>Fix &#8211; Include second param for the <code>the_title</code> for Events, Venue and Organizer Rest API endpoints amd prevent warnings. Props to Alex [123317]</li>\n<li>Language &#8211; 5 new strings added, 167 updated, 0 fuzzied, and 1 obsoleted</li>\n</ul>\n<h4>[4.8.2] 2019-03-04</h4>\n<ul>\n<li>Fix &#8211; Resolve console warnings around React key usage for Blocks Editor [121198]</li>\n<li>Fix &#8211; Improve our <code>tribe_paged</code> URL parameter sanitization, preventing themes from printing the variable and causing XSS security issues [123616]</li>\n<li>Fix &#8211; Change ordering for Eventbrite Tickets on Event Aggregator, Ascending order by date is now the default [121979]</li>\n<li>Tweak &#8211; Day light savings notice will now reset 4 times per year when using any UTC Timezone [123221]</li>\n<li>Tweak &#8211; Start date for Event Aggregator is now required on Eventbrite Tickets [121979]</li>\n<li>Language &#8211; 3 new strings added, 172 updated, 0 fuzzied, and 1 obsoleted</li>\n</ul>\n<h4>[4.8.1] 2019-02-14</h4>\n<ul>\n<li>Feature &#8211; Introduced new &#8220;(do not override)&#8221; default post status for Eventbrite imports in Event Aggregator. This preserves events&#8217; original statuses from Eventbrite.com upon import (e.g., &#8220;draft&#8221; events will not be automatically set to &#8220;publish&#8221; upon import) [112346]</li>\n<li>Fix &#8211; Make sure the setting for &#8220;Default mobile view&#8221; is respected. Thanks to Kathleen, Tim and others for reporting this! [119271]</li>\n<li>Fix &#8211; Apply block closer to price block [120108]</li>\n<li>Tweak &#8211; Added new filter <code>tribe_aggregator_new_event_post_status_before_import</code> to allow for custom handling of an event&#8217;s post status before EA an import is completed [112648]</li>\n<li>Tweak &#8211; Added filters: <code>tribe_events_admin_js_ajax_url_data</code></li>\n<li>Tweak &#8211; Unload Image Widget Plus version 1.0.2 or older to Prevent it from creating fatals on The Events Calendar</li>\n<li>Language &#8211; 2 new strings added, 150 updated, 1 fuzzied, and 0 obsoleted</li>\n</ul>\n<h4>[4.8] 2019-02-04</h4>\n<ul>\n<li>Feature &#8211; Introduced new &#8220;(do not override)&#8221; default post status for Eventbrite imports in Event Aggregator. This preserves events&#8217; original statuses from Eventbrite.com upon import (e.g., &#8220;draft&#8221; events will not be automatically set to &#8220;publish&#8221; upon import) [112346]</li>\n<li>Fix &#8211; Make sure the setting for &#8220;Default mobile view&#8221; is respected. Thanks to Kathleen, Tim and others for reporting this! [119271]</li>\n<li>Fix &#8211; Apply block closer to price block [120108]</li>\n<li>Tweak &#8211; Added new filter <code>tribe_aggregator_new_event_post_status_before_import</code> to allow for custom handling of an event&#8217;s post status before EA an import is completed [112648]</li>\n<li>Tweak &#8211; Added filters: <code>tribe_events_admin_js_ajax_url_data</code></li>\n<li>Tweak &#8211; Unload Image Widget Plus version 1.0.2 or older to Prevent it from creating fatals on The Events Calendar</li>\n<li>Language &#8211; 2 new strings added, 150 updated, 1 fuzzied, and 0 obsoleted</li>\n</ul>\n<h4>[4.8.0.1] 2019-02-07</h4>\n<ul>\n<li>Fix &#8211; Modify extension dependency checking with new system to determine if it can load [122368]</li>\n<li>Tweak &#8211; Prevent most extensions from loading if Event Tickets is on an older version to prevent conflicts [122368]</li>\n</ul>\n<h4>[4.8] 2019-02-05</h4>\n<ul>\n<li>Feature &#8211; Add check and enforce PHP 5.6 as the minimum version [116282]</li>\n<li>Feature &#8211; Add system to check plugin versions to inform you to update and prevent site breaking errors [116841]</li>\n<li>Tweak &#8211; Added filters: <code>tribe_not_php_version_names</code></li>\n<li>Deprecated &#8211; Constants MIN_ET_VERSION and MIN_COMMON_VERSION in Tribe__Events__Main, use $min_et_version property and no replacement for MIN_COMMON_VERSION</li>\n<li>Deprecated &#8211; The <code>is_delayed_activation()</code>, <code>maybe_delay_activation_if_outdated_common()</code>, and <code>checkAddOnCompatibility()</code> method has been deprecated in <code>Tribe__Events__Main</code> in favor of new Dependency Checking System</li>\n<li>Language &#8211; 7 new strings added, 139 updated, 0 fuzzied, and 1 obsoleted</li>\n</ul>\n<h4>[4.7.4] 2019-01-21</h4>\n<ul>\n<li>Fix &#8211; Display the tags block delimiter in the editor [119393]</li>\n<li>Fix &#8211; Fixed a number of small layout bugs with the new Twenty Nineteen core theme [119689]</li>\n<li>Fix &#8211; Save the &#8220;Event Options&#8221; when using the block editor [120168]</li>\n<li>Fix &#8211; Filter correctly when in Classic Editor page [120137]</li>\n<li>Fix &#8211; Give the ability to switch back from all day events in date time block [120266]</li>\n<li>Fix &#8211; Properly align the search or create results [120460]</li>\n<li>Fix &#8211; iCal export content for events created with the block editor [118679]</li>\n<li>Fix &#8211; Moved the &#8220;Remove venue&#8221; button for a better user experience when removing venues from an event [120267]</li>\n<li>Fix &#8211; Date/time block conflicts when clicking to open the block options [119413]</li>\n<li>Fix &#8211; Layout bugs with the new Twenty Nineteen core theme [119689]</li>\n<li>Fix &#8211; Include UTC dates meta on the event creation from the block editor [120399]</li>\n<li>Tweak &#8211; Ensure we don&#8217;t re-apply <code>wpautop()</code> to content that has had it removed [120562]</li>\n<li>Tweak &#8211; Added <code>tribe_events_admin_js_ajax_url_data</code> filter to make filtering the JS vars of TEC&#8217;s admin JS easier [116973]</li>\n<li>Tweak &#8211; Adjusted content in the admin welcome page that users are brought to upon newly activating The Events Calendar [117795]</li>\n<li>Tweak &#8211; Changed views: <code>blocks/event-tags</code></li>\n<li>Language &#8211; 3 new strings added, 21 updated, 1 fuzzied, and 5 obsoleted</li>\n</ul>\n<h4>[4.7.3] 2018-12-19</h4>\n<ul>\n<li>Tweak &#8211; Tweak the registration of the Event, Venue, and Organizer post types so they use some new post type labels introduced in WordPress 5.0 like <code>item_updated</code>, <code>item_scheduled</code>, etc. [119451]</li>\n<li>Fix &#8211; Password protected events breaking the month view. Thanks to Lindsay, Simon and others for flagging this out! [117385]</li>\n<li>Fix &#8211; Add proper capitalization for Event Price for Blocks Editor [119140]</li>\n<li>Fix &#8211; Make sure Datetime Format for Datepickers are respected on the Blocks Editor [117428]</li>\n<li>Fix &#8211; Correct text domain and remove old <code>events-gutenberg</code> [118656]</li>\n<li>Fix &#8211; Properly display recurrence description on Blocks Editor view [119354]</li>\n<li>Fix &#8211; Point support links to the correct places [117795]</li>\n<li>Language &#8211; 27 new strings added, 106 updated, 0 fuzzied, and 13 obsoleted</li>\n</ul>\n<h4>[4.7.2] 2018-12-13</h4>\n<ul>\n<li>Feature &#8211; Added new action <code>tribe_events_before_event_template_data_date_display</code> and <code>tribe_events_after_event_template_data_date_display</code></li>\n<li>Tweak &#8211; Corrected font on time picker components in Event Date Time block [116907]</li>\n<li>Tweak &#8211; Adjusted padding on the Event Date Time block [118697]</li>\n<li>Tweak &#8211; Set default start time to 8:00am and default end time to 5:00pm in Event Date Time block [118112]</li>\n<li>Fix &#8211; Corrected an issue where feature detection of async-process support would fire too many requests [118876]</li>\n<li>Fix &#8211; Removed tribe_events_template_data()&#8217;s dependency on Events Calendar PRO, which could lead to a fatal error under some conditions [119263]</li>\n<li>Fix &#8211; Made the Event Date Time block respect the timezone settings [118682]</li>\n<li>Fix &#8211; Removed Price block dashboard gap [118683]</li>\n<li>Fix &#8211; Made sure all block editor code for Meta saving is PHP 5.2 compatible</li>\n<li>Fix &#8211; Prevented <code>undefined</code> from been displayed at the Event Date Time separator fields [119337]</li>\n<li>Fix &#8211; Solved 500 error when trying to update an event [118058]s</li>\n</ul>\n<h4>[4.7.1] 2018-12-05</h4>\n<ul>\n<li>Feature &#8211; Added additional caching to TEC REST API archives and the Post Repository event/venue/organizer responses [117159]</li>\n<li>Feature &#8211; Added new <code>tribe_events_set_month_view_events_from_cache</code> action to make it easier to listen for when Month View events are retrieved from the Month View cache [116124]</li>\n<li>Fix &#8211; Importing CSV files with whitespace at the beginning of the rows won&#8217;t remove headers and skip columns on Preview [117236]</li>\n<li>Fix &#8211; Prevent JavaScript error in Month View when the Date filter is removed from the Tribe Bar (thank you to @tyrann0us on GitHub for submitting this fix!) [116995]</li>\n<li>Fix &#8211; Facilitate automated updates for Events Calendar PRO even if it&#8217;s requirements have not been met</li>\n</ul>\n<h4>[4.7.0.1] 2018-11-30</h4>\n<ul>\n<li>Fix &#8211; Update common library to maximize compatibility with earlier PHP versions (our thanks to @megabit81 for highlighting this problem) [119073]</li>\n<li>Fix &#8211; Update common library to ensure better compatibility with addons running inside multisite networks [119044]</li>\n<li>Language &#8211; 0 new strings added, 141 updated, 0 fuzzied, and 0 obsoleted</li>\n</ul>\n<h4>[4.7] 2018-11-29</h4>\n<ul>\n<li>Feature &#8211; added new setting to activate the block editor on events for users running the WordPress 5.0 beta.</li>\n<li>Feature &#8211; added an Event Date Time block to add and display the event date and time</li>\n<li>Feature &#8211; added an Event Price block to add and display the event price and optional event description</li>\n<li>Feature &#8211; added an Event Organizer block to add and display an organizer on an event single</li>\n<li>Feature &#8211; added an Event Venue block to add and display the event venue information including optional link or map</li>\n<li>Feature &#8211; added an Event Website block to add and display an external website link as a button with custom label</li>\n<li>Feature &#8211; added an Event Sharing block to display event export options and allow for more customization</li>\n<li>Feature &#8211; added an Event Details Classic block to maintain a combined content display as in the classic editor</li>\n<li>Feature &#8211; added a Featured Image block to display an event’s featured image in the editor content</li>\n<li>Feature &#8211; added a Tags block to display an event’s tags in the editor content</li>\n<li>Feature &#8211; added an Event Categories block to display an event’s categories in the editor content</li>\n<li>Feature &#8211; added a new Events Blocks section to the block inserter</li>\n<li>Tweak &#8211; Added filters: <code>tribe_blocks_editor_update_classic_content_params</code>, <code>tribe_blocks_editor_update_classic_content</code>, <code>tribe_events_editor_default_classic_template</code>, <code>tribe_events_editor_default_template</code>, <code>tribe_events_google_maps_api</code>, <code>tribe_events_editor_assets_should_enqueue_frontend</code>, <code>tribe_events_single_map_zoom_level</code>, <code>tribe_events_single_event_time_formatted</code>, <code>tribe_events_single_event_time_title</code>, <code>tribe_events_event_block_datetime_use_yearless_format</code>, <code>tribe_get_event_website_link_target</code>, <code>tribe_events_single_event_time_formatted</code>, <code>tribe_events_single_event_time_title</code></li>\n<li>Tweak &#8211; Added actions: <code>tribe_blocks_editor_flag_post_classic_editor</code>, <code>tribe_events_editor_register_blocks</code>, <code>tribe_events_single_event_meta_primary_section_start</code>, <code>tribe_events_single_event_meta_primary_section_end</code>, <code>tribe_events_single_event_meta_secondary_section_start</code>, <code>tribe_events_single_event_meta_secondary_section_end</code>, <code>tribe_events_single_meta_details_section_start</code>, <code>tribe_events_single_meta_details_section_end</code>, <code>tribe_events_single_meta_map_section_start</code>, <code>tribe_events_single_meta_map_section_end</code>, <code>tribe_events_single_meta_organizer_section_start</code>, <code>tribe_events_single_meta_organizer_section_end</code>, <code>tribe_events_single_meta_venue_section_start</code>, <code>tribe_events_single_meta_venue_section_end</code></li>\n<li>Tweak &#8211; Changed views: <code>blocks/classic-event-details</code>, <code>blocks/event-category</code>, <code>blocks/event-datetime</code>, <code>blocks/event-links</code>, <code>blocks/event-organizer</code>, <code>blocks/event-price</code>, <code>blocks/event-tags</code>, <code>blocks/event-venue</code>, <code>blocks/event-website</code>, <code>blocks/featured-image</code>, <code>blocks/parts/details</code>, <code>blocks/parts/map</code>, <code>blocks/parts/organizer</code>, <code>blocks/parts/venue</code>, <code>silence</code>, <code>single-event-blocks</code>, <code>single-event</code>, <code>single-event/back-link</code>, <code>single-event/comments</code>, <code>single-event/content</code>, <code>single-event/footer</code>, <code>single-event/notices</code>, <code>single-event/title</code></li>\n<li>Language &#8211; 11 new strings added, 0 updated, 0 fuzzied, and 30 obsoleted</li>\n</ul>\n<h4>[4.6.26.1] 2018-11-21</h4>\n<ul>\n<li>Fix &#8211; Resolved a compatibility issue with WordPress version 4.7.11 and earlier (our thanks to @placer69 and @earthnutvt for flagging this) [118627]</li>\n</ul>\n<h4>[4.6.26] 2018-11-13</h4>\n<ul>\n<li>Fix &#8211; Fixed the setting-up of strings in the Tribe Bar datepicker to ensure they&#8217;re translatable into languages other than English [115286]</li>\n<li>Tweak &#8211; Improved the legibility of text in Featured Events that are in the Event List widget [116702]</li>\n<li>Tweak &#8211; Clarified a number of maps-related settings strings [114865]</li>\n</ul>\n<h4>[4.6.25] 2018-10-22</h4>\n<ul>\n<li>Fix &#8211; List only enabled views on the &#8220;Default View&#8221; option. Thanks to wescole, John Meuse and others for reporting! [114807]</li>\n<li>Fix &#8211; Handle left-over Facebook scheduled imports and notices [114831]</li>\n<li>Fix &#8211; Fixed event navigation when the mini calendar widget was on the event page. Props to Matt and wescole for flagging this [114359]</li>\n<li>Fix &#8211; Ensure columns without headers are handled in CSV imports [114199]</li>\n<li>Tweak &#8211; Added notice for the Events Gutenberg extension and eBook download [115543]</li>\n<li>Tweak &#8211; Avoid unnecessary HTTP calls in the Settings screens [114013]</li>\n<li>Tweak &#8211; Show only applicable refinements for the Eventbrite source types in Event Aggregator imports [107009]</li>\n<li>Tweak &#8211; Added <code>tribe_aggregator_resolve_geolocation</code> filter to allow for disabling of Geocoding using the EA service [114171]</li>\n<li>Tweak &#8211; Added <code>tribe_aggregator_clean_unsupported</code> filter to specify whether unsupported origin records should be removed or not</li>\n</ul>\n<h4>[4.6.24.1] 2018-10-08</h4>\n<ul>\n<li>Fix &#8211; Fixed an issue where a fatal error could be generated when trying to save a new Event Aggregator scheduled import [115339]</li>\n<li>Fix &#8211; Handle left-over Facebook scheduled imports and notices [114831]</li>\n<li>Tweak &#8211; Added the <code>tribe_aggregator_import_setting_origins</code> filter to the origins available for default import settings [115704]</li>\n</ul>\n<h4>[4.6.24] 2018-10-03</h4>\n<ul>\n<li>Fix &#8211; Prevent broken and low-resolution Google Maps if user has not provided a Google Maps API key of their own by providing our own fallback API key [114442]</li>\n<li>Fix &#8211; Only load widget assets when widget is active on the page [113141]</li>\n<li>Fix &#8211; Ensure that venue, organizer, and meta information doesn&#8217;t show on password-protected events [102643]</li>\n<li>Fix &#8211; Correct the Google Maps API link in the Settings help text to point to the correct API page [112322]</li>\n<li>Fix &#8211; Restores the event categories and tags creation summary in CSV imports [105888]</li>\n<li>Fix &#8211; Updated the Events Gutenberg extension install check to show only when the extension is not active [114577]</li>\n<li>Fix &#8211; Stop potential fatal errors from debug logging when running EA import actions from command line [114555]</li>\n<li>Fix &#8211; Fixed a bug where it was often not possible to un-check the &#8220;Enable JSON-LD&#8221; option in the Events List Widget (thanks to @myrunningresource and @craigwilcox for reporting this!) [113541]</li>\n<li>Fix &#8211; Ensure that the <code>tribe-events-bar-should-show</code> filter functions as aspected; if <code>__return_false</code> is passed, the Tribe Bar will be totally hidden (thanks @debranettles for reporting this!) [112260]</li>\n<li>Fix &#8211; Added checks to prevent JS Type Error in mobile view. Thanks szenenight, agrilife and others for flagging this! [113524]</li>\n<li>Tweak &#8211; Added the <code>tribe_events_month_daily_events</code> filter to the Month view [114041]</li>\n<li>Tweak &#8211; Move Google Maps API loading to tribe_assets and only load once on single views when PRO is active, thanks to info2grow first reporting [112221]</li>\n<li>Tweak &#8211; Accept 0 as an argument in tribe_get_events() so that <code>\'post_parent\' =&gt; 0</code> works, thanks Cy for the detailed report [111518]</li>\n<li>Fix &#8211; handle left-over Facebook scheduled imports and notices [114831]</li>\n<li>Tweak &#8211; Added new filters for customizing the fallback Google Maps embeds: <code>tribe_is_using_basic_gmaps_api</code>, <code>tribe_get_basic_gmap_embed_url</code>, and <code>tribe_get_basic_gmap_embed_url_args</code> [114442]</li>\n<li>Tweak &#8211; Fixed the handling of the global $post variable in some Month View templates to make it easier for themers to customize those templates [113283]</li>\n<li>Tweak &#8211; Ensure linked posts are listed alphabetically in metabox dropdowns, as they are in all other admin locations [108120]</li>\n<li>Tweak &#8211; Added the <code>tribe_events_month_daily_events</code> filter to the Month view [114041]</li>\n<li>Tweak &#8211; Move Google Maps API loading to tribe_assets and only load once on single views when PRO is active, thanks to info2grow first reporting [112221]</li>\n<li>Tweak &#8211; Accept 0 as an argument in tribe_get_events() so that <code>\'post_parent\' =&gt; 0</code> works, thanks Cy for the detailed report [111518]</li>\n<li>Tweak &#8211; Added the <code>tribe_aggregator_record_by_origin</code> filter to allow new EA origins [114652]</li>\n<li>Tweak &#8211; Added the <code>tribe_aggregator_service_post_import_args</code> filter to allow new EA origins [114652]</li>\n<li>Tweak &#8211; Added the <code>tribe_aggregator_import_validate_meta_by_origin</code> filter to allow new EA origins [114652]</li>\n<li>Tweak &#8211; Added the <code>tribe_events_aggregator_refine_keyword_exclusions</code> filter to allow new EA origins [114652]</li>\n<li>Tweak &#8211; Added the <code>tribe_events_aggregator_refine_location_exclusions</code> filter to allow new EA origins [114652]</li>\n<li>Tweak &#8211; Added the <code>tribe_aggregator_event_translate_service_data_field_map</code> filter to allow new EA origins [114652]</li>\n<li>Tweak &#8211; Added the <code>tribe_aggregator_event_translate_service_data_venue_field_map</code> filter to allow new EA origins [114652]</li>\n<li>Tweak &#8211; Added the <code>tribe_aggregator_event_translate_service_data_organizer_field_map</code> filter to allow new EA origins [114652]</li>\n<li>Tweak &#8211; Added the <code>tribe_events_status_third_party</code> action to allow new EA origins [114652]</li>\n<li>Tweak &#8211; Added the <code>tribe_events_aggregator_import_form</code> action to allow new EA origins [114652]</li>\n<li>Tweak &#8211; Added <code>$origin_show_map_options</code> parameter to the <code>tribe_aggregator_fields</code> filter to allow new EA origins to make use of them [114652]</li>\n<li>Fix &#8211; Fixed an issue where a fatal error could be generated when trying to save a new Event Aggregator scheduled import [115339]</li>\n</ul>\n<h4>[4.6.23] 2018-09-12</h4>\n<ul>\n<li>Fix &#8211; Fixed the &#8220;Full Styles&#8221; mobile view. Thanks Matthew, Laura and others for flagging this! [112301]</li>\n<li>Fix &#8211; Modify resource url function to work in mu-plugin directory, thanks to Doug for reporting it  [86104]</li>\n<li>Fix &#8211; Remove references to and settings for Facebook importing in Event Aggregator [112432]</li>\n<li>Fix &#8211; Ensure Event Aggregator allows for importing events from Eventbrite sites other than eventbrite.com, including but not limited to eventbrite.ca, .co.uk, and .co.nz [107821]</li>\n<li>Fix &#8211; Allow venue location fields to be intentionally empty on Venue Singular REST API calls [108834]</li>\n<li>Tweak &#8211; Add the WordPress Custom Fields Metabox show|hide settings from the Events Calendar Pro [109815]</li>\n<li>Tweak &#8211; Allow changing Event Aggregator import process system between the asynchronous and the cron-based one; previously only available as a filter [113418, 113475]</li>\n<li>Tweak &#8211; Allow stopping and clearing asynchronous queue processes from the admin UI [113418, 113475]</li>\n<li>Deprecated &#8211; <code>Tribe__Events__Aggregator__Record__Facebook</code></li>\n</ul>\n<h4>[4.6.22.1] 2018-08-27</h4>\n<ul>\n<li>Fix &#8211; Allow user to choose venues not created by them. Props to @integrity, @nomadadmin, and many others for reporting this! [113147]</li>\n</ul>\n<h4>[4.6.22] 2018-08-22</h4>\n<ul>\n<li>Add &#8211; Allow filtering events, in REST API requests, by their post ID with <code>include</code> [94326]</li>\n<li>Add &#8211; Enable future event display to get all events in the future that have not started [70769]</li>\n<li>Add &#8211; Allow filtering events, in REST API requests, by their post ID with <code>include</code> [94326]</li>\n<li>Add &#8211; Enable future event display to get all events in the future that have not started [70769]</li>\n<li>Fix &#8211; Prevent subsequent CSV imports from duplicating events in some instances [102745]</li>\n<li>Fix &#8211; The &#8220;Import events but preserve local changes to event fields&#8221; Event Aggregator change authority setting will now behave as expected [87443]</li>\n<li>Fix &#8211; Multiple fixes regarding linked post types (e.g. Organizers and custom post types) &#8211; props to @natureslens and others for reporting these [105116]:\n<ul>\n<li>Now correctly saves in their drag-and-drop order</li>\n<li>Deprecated the functions added in version 4.6.13 that previously attempted to fix ordering logic but was not done in a backwards-compatible way: <code>get_order_meta_key()</code> and <code>tribe_sanitize_organizers()</code></li>\n<li>We no longer rely on a separate postmeta value dedicated to ordering linked posts (e.g. <code>_EventOrganizerID_Order</code>), and you may want to remove all such values from your database after re-saving any events that have linked posts and their ordering is important</li>\n<li><code>tribe_get_linked_posts_by_post_type()</code> now works as expected, no longer returning zero results in error, nor returning all of the post type&#8217;s posts if there are none linked. The <code>tribe_events_return_all_linked_posts_if_none</code> filter was added, as it is necessary for this fix.</li>\n<li>Editing an existing event no longer loses the linked posts just because they were not part of the submission. Example of the bug in prior versions: If organizers are editable in the wp-admin event edit screen but not on the Community Events &#8220;event edit&#8221; form (via template override or other custom code), all pre-existing organizers were removed in error.</li>\n</ul>\n</li>\n<li>Fix &#8211; Handle the case where Event Aggregator import queues might get stuck when deleting import records [111856]</li>\n<li>Fix &#8211; Only show admin notice when it is a top-level page with the event slug, thanks to MikeNGarrett for the code fix! [111186]</li>\n<li>Fix &#8211; Change template_redirect to an action for some legacy view redirects, thanks barryceelen! [110463]</li>\n<li>Fix &#8211; Correctly import and set Organizers for iCal and ICS files Event Aggregator imports [96059]</li>\n<li>Fix &#8211; Retain category title in month view and month view shortcode, thanks corthoover for the first report [108258]</li>\n<li>Fix &#8211; The &#8220;Import events but preserve local changes to event fields&#8221; Event Aggregator change authority setting will now behave as expected [87443]</li>\n<li>Fix &#8211; Handle the case where Event Aggregator import queues might get stuck when deleting import records [111856]</li>\n<li>Fix &#8211; Prevent subsequent CSV imports from duplicating events in some instances [102745]</li>\n<li>Fix &#8211; Fix the classic header option not working. Thanks @hanemac, David Luyendyk and others for flagging this! [111672]</li>\n<li>Tweak &#8211; Namespace javascript debug function to prevent conflicts causing a function found, thanks to Tom-Mulvey for the fix [110462]</li>\n<li>Tweak &#8211; Add venue name to address string for iCal and gCal export, thanks for the coding from sylviavanos [110464]</li>\n<li>Tweak &#8211;  Drop the order from the query WPML linked query as it is set later in the method, thanks to dgwatkins for the PR [110459]</li>\n<li>Tweak &#8211; Display JS debug messages only if setting is set or through the <code>tribe_events_js_debug</code> filter. Thanks to Rob, @aand and others for flagging this! [82781]</li>\n</ul>\n<h4>[4.6.21] 2018-08-01</h4>\n<ul>\n<li>Add &#8211; Make global $post obj available to tribe_events_get_the_excerpt() with setup_postdata($post) [108043]</li>\n<li>Add &#8211; Added WPML metadata improvements for Organizers and Venue. Thanks to David Garcia Watkins and the entire WPML team for their contribution [106798]</li>\n<li>Fix &#8211; Ensure no console errors are being displayed if there&#8217;s no Google Maps API key present. Thanks Greg for flagging this [95312]</li>\n<li>Fix &#8211; Fixed an issue where saving Event Aggregator scheduled imports with an empty preview would generate PHP notices [110311]</li>\n<li>Fix &#8211; Escape each closing html element in month view tooltip to prevent PHP parser from exposing html, thanks to Karen for a solution [64834]</li>\n<li>Fix &#8211; Sending empty &#8216;categories&#8217; and &#8216;tags&#8217; for the REST API event endpoints when inserting and updating events [109627]</li>\n<li>Fix &#8211; Prevent selection of past dates when setting up Scheduled Other URL Imports in Event Aggregator [111227]</li>\n<li>Tweak &#8211; Manage plugin assets via <code>tribe_assets()</code> [40267]</li>\n<li>Deprecated &#8211; Tribe__Events__Asset__Abstract_Asset in favor of using <code>tribe_asset</code></li>\n<li>Deprecated &#8211; Tribe__Events__Asset__Abstract_Events_Css in favor of using <code>tribe_asset</code></li>\n<li>Deprecated &#8211; Tribe__Events__Asset__Admin_Menu in favor of using <code>tribe_asset</code></li>\n<li>Deprecated &#8211; Tribe__Events__Asset__Admin_Ui in favor of using <code>tribe_asset</code></li>\n<li>Deprecated &#8211; Tribe__Events__Asset__Admin in favor of using <code>tribe_asset</code></li>\n<li>Deprecated &#8211; Tribe__Events__Asset__Ajax_Calendar in favor of using <code>tribe_asset</code></li>\n<li>Deprecated &#8211; Tribe__Events__Asset__Ajax_Dayview in favor of using <code>tribe_asset</code></li>\n<li>Deprecated &#8211; Tribe__Events__Asset__Ajax_List in favor of using <code>tribe_asset</code></li>\n<li>Deprecated &#8211; Tribe__Events__Asset__Bootstrap_Datepicker in favor of using <code>tribe_asset</code></li>\n<li>Deprecated &#8211; Tribe__Events__Asset__Calendar_Script in favor of using <code>tribe_asset</code></li>\n<li>Deprecated &#8211; Tribe__Events__Asset__Chosen in favor of using <code>tribe_asset</code></li>\n<li>Deprecated &#8211; Tribe__Events__Asset__Datepicker in favor of using <code>tribe_asset</code></li>\n<li>Deprecated &#8211; Tribe__Events__Asset__Dialog in favor of using <code>tribe_asset</code></li>\n<li>Deprecated &#8211; Tribe__Events__Asset__Dynamic in favor of using <code>tribe_asset</code></li>\n<li>Deprecated &#8211; Tribe__Events__Asset__Ecp_Plugins in favor of using <code>tribe_asset</code></li>\n<li>Deprecated &#8211; Tribe__Events__Asset__Events_Css_Default in favor of using <code>tribe_asset</code></li>\n<li>Deprecated &#8211; Tribe__Events__Asset__Events_Css_Full in favor of using <code>tribe_asset</code></li>\n<li>Deprecated &#8211; Tribe__Events__Asset__Events_Css_Skeleton in favor of using <code>tribe_asset</code></li>\n<li>Deprecated &#8211; Tribe__Events__Asset__Events_Css in favor of using <code>tribe_asset</code></li>\n<li>Deprecated &#8211; Tribe__Events__Asset__Factory in favor of using <code>tribe_asset</code></li>\n<li>Deprecated &#8211; Tribe__Events__Asset__Jquery_Placeholder in favor of using <code>tribe_asset</code></li>\n<li>Deprecated &#8211; Tribe__Events__Asset__Jquery_Resize in favor of using <code>tribe_asset</code></li>\n<li>Deprecated &#8211; Tribe__Events__Asset__PHP_Date_Formatter in favor of using <code>tribe_asset</code></li>\n<li>Deprecated &#8211; Tribe__Events__Asset__Settings in favor of using <code>tribe_asset</code></li>\n<li>Deprecated &#8211; Tribe__Events__Asset__Smoothness in favor of using <code>tribe_asset</code></li>\n<li>Deprecated &#8211; Tribe__Events__Asset__Tribe_Events_Bar in favor of using <code>tribe_asset</code></li>\n<li>Deprecated &#8211; Tribe__Events__Asset__Tribe_Select2 in favor of using <code>tribe_asset</code></li>\n</ul>\n<h4>[4.6.20.1] 2018-07-10</h4>\n<ul>\n<li>Fix &#8211; Fix an issue where Event Aggregator imports might get blocked at 1% progress [110258]</li>\n<li>Fix &#8211; Fix the error displayed when navigating the month view via shortcode. Thanks Lam, @ltcalendar, Disk and others for flagging this! [109589]</li>\n</ul>\n<h4>[4.6.20] 2018-07-09</h4>\n<ul>\n<li>Feature &#8211; Add featured event column support for CLI imports [108027]</li>\n<li>Fix &#8211; Display the exact search term in the &#8220;no results&#8221; notice on the events page [106991]</li>\n<li>Fix &#8211; Allow venue and organizer fields to be intentionally empty on Event Singular REST API calls [109482]</li>\n<li>Fix &#8211; Added basic checks to prevent saving obviously-invalid event meta values, such as sending <code>EventStartMinute</code> of <code>60</code> (since it should be 0-59) to <code>tribe_create_event()</code>. This prevents falling back to &#8220;zero&#8221; values (e.g. Unix Epoch) when another value was intended. Thanks to @compton-bob for flagging this via our Help Desk. [109722]</li>\n<li>Fix &#8211; Add Privacy Policy guide for The Events Calendar [108454]</li>\n<li>Tweak &#8211; Added event ID parameter to <code>tribe_events_event_classes</code> filter to make it more useful [64807]</li>\n<li>Tweak &#8211; Added the <code>tribe_aggregator_record_finalized</code> action to allow developers to act before Event Aggregator imports start [109938]</li>\n</ul>\n<h4>[4.6.19] 2018-06-20</h4>\n<ul>\n<li>Feature &#8211; CSV importer now supports a featured event column [72376]</li>\n<li>Add &#8211; Add Eventbrite Icon to Third Party Accounts on the help page [105388]</li>\n<li>Add &#8211; Accessibility repair: new title-bar template for loop views included above the filter bar and content containing the page title in a <code>h1</code> tag.</li>\n<li>Fix &#8211; Accessibility repair: adjust main content container element from <code>div</code> to <code>main</code>.</li>\n<li>Fix &#8211; More robust handling of errors and exceptions during Event Aggregator imports [107929]</li>\n<li>Fix &#8211; Ensure that the &#8220;Export Events&#8221; button is properly displayed in month view when paginating. Thanks to @linpleva, Steven, Will and others for flagging this! [104751]</li>\n<li>Fix &#8211; Month view pagination for datepicker formats: YYYY.MM.DD, MM.DD.YYYY, and DD.MM.YYYY. Thanks @netzwerk, @wdburgdorf, @oliverwick and others for notifying us! [105443]</li>\n<li>Fix &#8211; Resolved customizer inconsistencies with month/week views and full styles [69758]</li>\n<li>Fix &#8211; Check the Events Aggregator license each time the page is accessed [67864]</li>\n<li>Fix &#8211; Improve Event Import message responses from Event Aggregator for certain cases where &#8220;Unknown service message&#8221; would be returned [107606]</li>\n<li>Fix &#8211; Make the date picker respect the &#8220;Start of the week&#8221; Setting. Thanks to @websource, @dsb and others for flagging this! [76320]</li>\n<li>Fix &#8211; Correct the &#8220;View All&#8221; link when using the events month view and plain permalinks. props to Kay and Robert for notifying us [72544]</li>\n<li>Fix &#8211; Keep filter bar date when changing from month to list view, with all datepicker formats. Thanks to Caio for reporting this! [83018]</li>\n<li>Fix &#8211; Correct the pagination in list view when a keyword is being searched. Thanks to @versi, @akr and Mary for reporting this! [94613]</li>\n<li>Fix &#8211; Split linked posts (Organizers and Venues) by ownership, for all users [71349]</li>\n<li>Fix &#8211; The connected status for Eventbrite under Third Party Accounts on the Help page [106868]</li>\n<li>Fix &#8211; Fixed two PHP 5.2 errors on the Events &gt; Help page [108338]</li>\n<li>Fix &#8211; Display the correct Import Settings when Eventbrite Tickets is enabled [106947]</li>\n<li>Tweak &#8211; Modify the default values for the CSV settings if there&#8217;s no EA license [94426]</li>\n<li>Tweak &#8211; Added classes to meta output in Single Event meta templates to facilitate customization [62704]</li>\n<li>Tweak &#8211; Add the <code>tribe_aggregator_async_insert_event</code> filter to allow overriding the Event Aggregator asynchronous event insertion [107929]</li>\n<li>Tweak &#8211; Add the <code>\'tribe_aggregator_async_import_event_task</code> filter to allow overriding the Event Aggregator asynchronous import task [107929]</li>\n<li>Tweak &#8211; Added venue google map link to events in Day view [91610]</li>\n<li>Tweak &#8211; Renamed the Time zone mode option &#8220;Use the local time zones for each event&#8221; to &#8220;Use manual timezones for each event&#8221; (thanks @hikeitbaby for the suggestion) [67148]</li>\n<li>Tweak &#8211; Accessibility repair: heading hierarchy improvements throughout.</li>\n<li>Tweak &#8211; Accessibility repair: make sure all elements have unique <code>id</code> attributes.</li>\n<li>Tweak &#8211; Accessibility repair: remove redundant tab stops on feature image links.</li>\n<li>Tweak &#8211; Accessibility repair: filter bar view selector adjustments.</li>\n<li>Tweak &#8211; Accessibility repair: provide meaningful aria labels for filter bar inputs.</li>\n<li>Tweak &#8211; Accessibility repair: hide Google Map embeds from screen readers.</li>\n<li>Tweak &#8211; Enable only url imports for Eventbrite when that plugin is not active [107415]</li>\n<li>Tweak &#8211; The EB 4.5 migration process to better detect events for migration and insure all fields are migrated [106623]</li>\n<li>Tweak &#8211; Add <code>tribe_events_month_has_events_filtered</code> function and filter to see if there are events on a certain month, with filters (categories, search) [67607]</li>\n<li>Language &#8211; 68 new strings added, 406 updated, 3 fuzzied, and 37 obsoleted</li>\n</ul>\n<h4>[4.6.18] 2018-06-04</h4>\n<ul>\n<li>Add &#8211; Eventbrite to Event Aggregator import origins [61172]</li>\n<li>Add &#8211; Priority attribute to Import Setting fields to be able to customize order of fields [61173]</li>\n<li>Add &#8211; Default category and change authority for Eventbrite Imports [61173]</li>\n<li>Add &#8211; Ability to schedule Eventbrite imports through Event Aggregator [35454]</li>\n<li>Add &#8211; Preview for Eventbrite events in the import screen ordered from farthest future event to closest [70130]</li>\n<li>Add &#8211; Import Eventbrite events using the Other URL import origin [81825]</li>\n<li>Add &#8211; Ability to preview and import multiple Eventbrite events using the Organizer URL [94284]</li>\n<li>Add &#8211; Import from Eventbrite Location Search URL, i.e. https://www.eventbrite.com/d/or&#8211;portland/events/ [94588]</li>\n<li>Tweak &#8211; Move Eventbrite settings from Legacy Import to Settings Import Tab [94388]</li>\n<li>Tweak &#8211; Add Eventbrite imports to the Import History Tab [81826]</li>\n<li>Tweak &#8211; Remove Legacy Imports UI [81829]</li>\n</ul>\n<h4>[4.6.17] 2018-05-29</h4>\n<ul>\n<li>Tweak &#8211; Add tribe_redirected parameter to enable a visitor to select another view after default mobile redirect, thanks to Marcella for notifying us [102743]</li>\n<li>Fix &#8211; Hide any errors generated by servers that don&#8217;t support <code>set_time_limit()</code> (props to @jsww for flagging this!) [64183]</li>\n<li>Fix &#8211; Add a warning when the site Timezone is set to UTC [105217]</li>\n<li>Fix &#8211; An issue with organizers and venues not being attached to events on Eventbrite import  [106869]</li>\n<li>Language &#8211; 4 new strings added, 170 updated, 1 fuzzied, and 0 obsoleted</li>\n</ul>\n<h4>[4.6.16] 2018-05-16</h4>\n<ul>\n<li>Tweak &#8211; Replaced the Aggregator queue processing system to run independently of WP Cron (not for CSV) [105650]</li>\n<li>Fix &#8211; Prevents notices for Events Community when handling State and Province fields [106415]</li>\n</ul>\n<h4>[4.6.15] 2018-05-09</h4>\n<ul>\n<li>Feature &#8211; Added wp-cli command to import events from a source with Event Aggregator. See <code>wp event-aggregator import-from --help</code> to know more [104426]</li>\n<li>Feature &#8211; Added wp-cli command to run scheduled imports with Event Aggregator. See <code>wp event-aggregator run-import --help</code> to know more [104426]</li>\n<li>Fix &#8211; Ensure that organizers can be deleted when an event has multiple organizers [103715]</li>\n<li>Fix &#8211; Fixed a bug where the <code>[tribe_events]</code> Month View pagination would fail when no Tribe Bar was visible and plain permalinks were being used [95720]</li>\n<li>Fix &#8211; Prevent <code>url_to_postid</code> from running when on the main events page to avoid query conflicts [94328]</li>\n<li>Fix &#8211; Prevent 404s and malformed URLs that would sometimes arise when navigating to a past-events view from the &#8220;All&#8221;-events view on a single recurring event [43925]</li>\n<li>Fix &#8211; Make the <code>[tribe_events]</code> shortcode&#8217;s output scroll to top when using the List View to match the non-shortcode List View  [81509]</li>\n<li>Fix &#8211; Ensure that default venue and address values are used throughout various venue-creation forms [63915]</li>\n<li>Tweak &#8211; Honor the return types for <code>tribe_has_next_event</code> and <code>tribe_has_previous_event</code> when the global query is null</li>\n<li>Language &#8211; 28 new strings added, 290 updated, 29 fuzzied, and 7 obsoleted</li>\n</ul>\n<h4>[4.6.14.1] 2018-04-18</h4>\n<ul>\n<li>Fix &#8211; Fixed fatal error that would sometimes arise when The Events Calendar was set to display on the front page</li>\n</ul>\n<h4>[4.6.14] 2018-04-18</h4>\n<ul>\n<li>Fix &#8211; Updated the &#8220;front page&#8221; logic to store the value in the DB instead of &#8220;mocking&#8221; the view via JS [100832]</li>\n<li>Fix &#8211; Fixed the generation of PHP warnings on retrieval of posts if the &#8220;Include events in main blog loop&#8221; option is checked (thanks to Colin Carmichael for reporting this problem) [97667]</li>\n<li>Fix &#8211; Made the <code>tribe-ea-record</code> custom post type (used to store Event Aggregator record information) private [99106]</li>\n<li>Fix &#8211; Expanded the size of the time zone input in the admin to allow for better visibility for long names [100363]</li>\n<li>Fix &#8211; If the main events page is set to be the site&#8217;s front page, ensure it shows as &#8220;selected&#8221; in the Customizer&#8217;s front page option [100832]</li>\n<li>Fix &#8211; Fixed an issue where failed Event Aggregator scheduled imports would re-attempt the import too soon [102489]</li>\n<li>Fix &#8211; Ensure the Tribe Bar displays all the available ranges of dates and times [100646]</li>\n<li>Fix &#8211; Hid the filters in the Tribe Bar if a unique view is enabled [75114]</li>\n<li>Fix &#8211; Fixed some imported-event handling so that events with no time and that aren&#8217;t all-day events do not display on the front-end [93979]</li>\n<li>Fix &#8211; Changed the HTTP status codes of empty event, venue, organizer, category, and tag archives from 404 to 200 and return empty arrays to stick with WP REST API standard [102283]</li>\n<li>Fix &#8211; Better &#8220;guessing&#8221; on column mapping during the import of CSV file (thanks to April in our Help Desk for flagging this problem!) [96162]</li>\n<li>Fix &#8211; Add new <code>tribe_events_linked_post_type_meta_key</code> filter, required to be set for each custom linked post type, to output custom linked post types in their drag-and-drop order (thanks @natureslens for highlighting the issue) [100733]</li>\n<li>Tweak &#8211; Added the <code>tribe_aggregator_find_matching_organizer</code> and <code>tribe_aggregator_find_matching_venue</code> filters in Events Aggregator to allow the definition of custom Venue and Organizer match criteria [97292]</li>\n<li>Tweak &#8211; Display the retry time for a failed Event Aggregator scheduled import in the Scheduled tab [102489]</li>\n<li>Tweak &#8211; Add new filter, <code>tribe_events_import_event_duplicate_matches</code>, to determine if an event is part of the duplicates matches [77956]</li>\n<li>Tweak &#8211; Ensure &#8220;secondary&#8221; maps, e.g. in the sidebar, have the same full-width behavior as &#8220;main&#8221; maps [74052]</li>\n<li>Tweak &#8211; Restore some missing header navigation elements [99742]</li>\n<li>Tweak &#8211; Add notice if an import is missing required columns [67886]</li>\n<li>Tweak &#8211; Save time zone and time zone abbreviation fields (if provided) even if date was not changed when saving event through API [102705]</li>\n</ul>\n<h4>[4.6.13] 2018-03-28</h4>\n<ul>\n<li>Feature &#8211; Added facilities allowing users to trash or permanently delete expired events [98826]</li>\n<li>Fix &#8211; Corrected the behavior of the previous/next event links rendered on single event pages (props to @jeremyfelt for fixing this) [101757]</li>\n<li>Fix &#8211; Save order of organizers as displayed in the admin (thanks to JobInfo and others for report) [79126]</li>\n<li>Tweak &#8211; Added Gutenberg compatibility for the Gutenberg Extension plugin</li>\n<li>Tweak &#8211; Added new filter <code>tribe_tickets_venue_action_links_edit_url</code> to modify the venue edit link for the sales and attendee reports [93923]</li>\n<li>Tweak &#8211; Altered day view to start at 00:00:00 and not 00:00:01 [99641]</li>\n</ul>\n<h4>[4.6.12] 2018-03-08</h4>\n<ul>\n<li>Fix &#8211; Resolved an oversight resulting in notice-level errors when the <code>tribe_event_is_on_date()</code> function was called incorrectly (props to @sharewisdom for pointing this out) [99117]</li>\n<li>Fix &#8211; Resolved errors within the admin environment when the &#8220;ticketed&#8221; view of events is generated [99266]</li>\n<li>Fix &#8211; Improved compatibility with WordPress SEO in relation to the default mobile events view [68716]</li>\n<li>Fix &#8211; Resolved Javascript errors in month view which were triggered under some conditions by the presence of password-protected events [99089]</li>\n<li>Fix &#8211; Improved logic responsible for identifying which events are expired (in the past) by using timezone-aware comparisons [91168]</li>\n<li>Fix &#8211; Corrected the export of upcoming events from single organizer pages (added to support changes in Events Calendar PRO) [70727]</li>\n<li>Tweak &#8211; Added safety checks around our use of the global $wp_query object (thanks @archetypalsxe for highlighting this issue!) [100199]</li>\n<li>Tweak &#8211; Renamed &#8216;Use Javascript to control date filtering&#8217; option to &#8216;Enable live refresh&#8217; and improved the associated helper text [98022]</li>\n<li>Tweak &#8211; Added caching to reduce the number of HTTP requests being made in relation to Event Aggregator within the admin environment [99486]</li>\n<li>Tweak &#8211; Improved performance by reducing the number of queries that run in single event pages (in relation to <code>tribe_get_prev_event_link()</code> and <code>tribe_get_next_event_link()</code> specifically) [94587]</li>\n<li>Tweak &#8211; Added pagination to single organizer and venue pages [97772]</li>\n<li>Tweak &#8211; Improved compatibility with the Twety Seventeen theme (ensuring the calendar is full-width if set to be the site&#8217;s homepage) [97977]</li>\n<li>Language &#8211; 3 new strings added, 161 updated, 1 fuzzied, and 2 obsoleted</li>\n</ul>\n<h4>[4.6.11.1] 2018-02-16</h4>\n<ul>\n<li>Fix &#8211; The render of the venue and organizer templates (thanks to Antonio and others for reporting this in our forums) [99550]</li>\n<li>Fix &#8211; Make sure events on calendar are not affected by DST changes [99537]</li>\n</ul>\n<h4>[4.6.11] 2018-02-14</h4>\n<ul>\n<li>Fix &#8211; Ensure parity of CSS styles between the default Month View and the embedded Month Views generated by Events Calendar PRO&#8217;s [tribe_events] shortcode (thanks @copoloff for reporting this bug!) [92329]</li>\n<li>Fix &#8211; If <code>tribe_ical_feed_calname</code>  is empty the property <code>X-WR-CALNAME</code> is not added to the .ics file [46620]</li>\n<li>Fix &#8211; Stopped modifications of the main query if is in a single post to allow custom variables don&#8217;t affect the page loading when using shortcode (our thanks to Joseph Reckley and others for highlighting this problem) [91787]</li>\n<li>Tweak &#8211; Fixed a handful of small CSS bugs in the mobile views of the Twenty Sixteen, Twenty Fifteen, and Twenty Fourteen themes [95693]</li>\n<li>Tweak &#8211; Added new hooks (<code>tribe_events_ical_before</code>, <code>tribe_events_ical_events_list_args</code> and <code>tribe_events_ical_events_list_query</code>) to allow further customization of the iCal feed [86227]</li>\n<li>Tweak &#8211; Added safeguards to reduce conflicts when lodash and underscore are used on the same site [92205]</li>\n<li>Language &#8211; 0 new strings added, 41 updated, 0 fuzzied, and 0 obsoleted</li>\n</ul>\n<h4>[4.6.10.1] 2018-01-26</h4>\n<ul>\n<li>Fix &#8211; Make sure rewrite rule for <code>/events</code> is not hardcoded and is based on dynamic option field (thanks to @earnjam and others for flagging this problem) [98463]</li>\n</ul>\n<h4>[4.6.10] 2018-01-23</h4>\n<ul>\n<li>Fix &#8211; Allow The Events Calendar REST API to be disabled using the <code>tribe_events_rest_api_enabled</code> filter [97209]</li>\n<li>Fix &#8211; Remove the errant <code>div.tribe-events-single-section</code> on the single event view when there is no venue [97615]</li>\n<li>Fix &#8211; Make sure the date for past events is set to the current date not the end of the day of the current date [71936]</li>\n<li>Fix &#8211; Use <code>featured_color_scheme_custom</code> if present as mechanism to overwrite the default color scheme for highlight color [96821]</li>\n<li>Fix &#8211; Make sure the date for past events is set to the current date not the end of the day of the current date [71936]</li>\n<li>Tweak &#8211; Trigger an event <code>map-created.tribe</code> when a map is created to allow flexibility on customization [91984]</li>\n<li>Tweak &#8211; Add a link to the knowledge base about &#8216;Setting Up Your Google Maps API Key&#8217; [89761]</li>\n<li>Tweak &#8211; Add <code>the_title</code> filter to events called by <code>tribe_events_template_data</code> [38237]</li>\n<li>Tweak &#8211; Made the &#8220;events&#8221; and &#8220;event&#8221; slugs translatable by WPML and other multilingual plugins [95026]</li>\n<li>Tweak &#8211; Introduced the <code>tribe_events_query_force_local_tz</code> filter to allow for forcing non-UTC event start and end times in Tribe__Events__Query [92948]</li>\n<li>Tweak &#8211; Prevent empty or otherwise-invalid values for various date-format options in the Display settings [94725]</li>\n<li>Tweak &#8211; Brought day number headers in the Month View into compliance with WCAG 2.0 accessibility standards when using the &#8220;Tribe Events&#8221; stylesheet [68411]</li>\n<li>Tweak &#8211; Improved the alignment of the event cost on the single-event view (props to @canberraclimbersassociation for reporting this bug) [97208]</li>\n<li>Tweak &#8211; Added some more context to the labeling of the &#8220;Number of events per page&#8221; option (thanks to Todd H. for highlighting this label) [73659]</li>\n<li>Tweak &#8211; Improve performance on Event Admin List Count by removing JOIN and use cached results [63567]</li>\n<li>Tweak &#8211; Made the &#8220;/page/&#8221; component of some views&#8217; URL string translatable [40976]</li>\n<li>Tweak &#8211; Button &#8220;Merge Duplicates&#8221; is always visible from now on [75208]</li>\n<li>Tweak &#8211; Allow queries to explicitly include or exclude events that are nominally hidden from event listings [91254]</li>\n</ul>\n<h4>[4.6.9] 2018-01-10</h4>\n<ul>\n<li>Feature &#8211; Add new utility functions tribe_is_events_home and tribe_is_events_front_page similar to native WP is_home and is_front_page [42195]</li>\n<li>Fix &#8211; Avoid issues when importing multiple organizers that specify images [96354]</li>\n<li>Fix &#8211; Make sure latitude and longitude information from iCal feeds is used if available [96363]</li>\n<li>Fix &#8211; Fixed an issue that prevented EA from importing images attached to Facebook events [96393]</li>\n<li>Fix &#8211; Remove the duplicate filter call that was running twice for <code>tribe_rest_venue_data</code> [96090]</li>\n<li>Tweak &#8211; Added new <code>tribe_aggregator_import_event_image</code>, <code>tribe_aggregator_import_venue_image</code> and <code>tribe_aggregator_import_organizer_image</code> filter so that users can control whether, during EA imports, images should be attached to post or not [96393]</li>\n<li>Tweak &#8211; Made it possible to translate the iCal feed&#8217;s description field (props @gafderks) [96677]</li>\n<li>Tweak &#8211; Improved escaping of map IDs (props LucaPipolo) [96772]</li>\n<li>Tweak &#8211; Added new REST API endpoint that allows looking up organizers by slug instead of ID at the path <code>organizers/by-slug/{slug}/</code>, it has the same functionality as the endpoint <code>organizers/{ID}</code> [96088]</li>\n<li>Tweak &#8211; Added new REST API endpoint that allows looking up venues by slug instead of ID at the path <code>venues/by-slug/{slug}/</code>, it has the same functionality as the endpoint <code>venues/{ID}</code> [96088]</li>\n<li>Tweak &#8211; Added <code>slug</code> to the REST API responses for organizer and venue data [96088]</li>\n<li>Tweak &#8211; Added <code>slug</code> to the REST API parameters allowed to use when inserting or updating an organizer or event [96088]</li>\n<li>Tweak &#8211; Added action: <code>tribe_events_venue_save</code> [96069]</li>\n<li>Tweak &#8211; Added action: <code>tribe_events_organizer_save</code> [96069]</li>\n<li>Tweak &#8211; Added filter: <code>tribe_events_rest_venue_prepare_postarr</code> [96069]</li>\n<li>Tweak &#8211; Added filter: <code>tribe_events_rest_organizer_prepare_postarr</code> [96069]</li>\n<li>Tweak &#8211; Old <code>tribe_rest_venue_data</code> filter was passing the venue and the event two the second parameter because of the duplication. Now it has the second parameter as $venue, third parameter as $event if event ID was provided [96090]</li>\n<li>Language &#8211; 5 new strings added, 30 updated, 0 fuzzied, and 0 obsoleted</li>\n</ul>\n<h4>[4.6.8] 2017-12-18</h4>\n<ul>\n<li>Fix &#8211; Preserve filter bar checkbox selections when changing views [66749]</li>\n<li>Fix &#8211; Fix radio filters so they are only included as values when switching views when checked [72954]</li>\n<li>Fix &#8211; Ensure the correct properties are set for list widget queries, to avoid problems when running alongside Events Calendar PRO (props @KZeni) [94105]</li>\n<li>Fix &#8211; Fixed some layout issues with the &#8220;Buy Now&#8221; button and stock labels on mobile list views [81115]</li>\n<li>Fix &#8211; Fixed issue where left- or right-aligned images at the bottom of event descriptions would overlap event meta on single-event pages [71134]</li>\n<li>Fix &#8211; Fixed issue where Google Maps Link would display in some situations even when there is no address information for which to generate a link. [94909]</li>\n<li>Fix &#8211; Corrected reference to a Select2 asset (our thanks to @pyxis630 for flagging this problem and props to @andrasguseo for the fix) [95348]</li>\n<li>Fix &#8211; Ensure that when start and end dates are passed to the REST API, all events within the date range are correctly retrieved (thanks @braffenberg and others for highlighting this issue!) [90005]</li>\n<li>Tweak &#8211; Added Google Maps API key to all Google Maps URLs when the key is available, allowing maps to load more reliably on some hosting environments (props to @sfdfortnight, @thor, and many others for reporting this!) [62910]</li>\n<li>Tweak &#8211; Adjusted CSS to improve the display of venue URLs/phone numbers (especially when Events Calendar PRO is also active) (our thanks to Mathew on the forums for flagging this issue) [69127]</li>\n<li>Tweak &#8211; Added new REST API endpoint that allows looking up events by slug instead of ID at the path <code>events/by-slug/{slug}/</code>, it has the same functionality as the endpoint <code>events/{ID}</code> [92825]</li>\n<li>Tweak &#8211; Added <code>slug</code> to the REST API responses for event data [92825]</li>\n<li>Tweak &#8211; Added <code>slug</code> to the REST API parameters allowed to use when inserting or updating an event [92825]</li>\n<li>Tweak &#8211; Added new <code>tribe_events_rest_use_inclusive_start_end_dates</code> filter so that users can make the REST API return events from a more literal date range [90005]</li>\n<li>Language &#8211; 3 new strings added, 68 updated, 0 fuzzied, and 0 obsoleted</li>\n</ul>\n<h4>[4.6.7] 2017-12-07</h4>\n<ul>\n<li>Fix &#8211; Fixed an issue where EA imports might not correctly create venues for iCalendar imports (thanks @starweb and others for highlighting this issue) [94323]</li>\n<li>Fix &#8211; Fixed an issue where Month View wouldn&#8217;t render correctly in X Theme with the &#8220;Events template&#8221; option set to &#8220;Default Page Template&#8221; [92554]</li>\n<li>Fix &#8211; Fixed a WPML incompatibility issue where language could be switched to the wrong one (thanks @dgwatkins) [94732]</li>\n<li>Tweak &#8211; Added the <code>tribe_events_x_theme_force_full_content()</code> filter to let users disable X Theme compatibility code [92554]</li>\n<li>Language &#8211; 0 new strings added, 2 updated, 0 fuzzied, and 0 obsoleted</li>\n</ul>\n<h4>[4.6.6] 2017-11-21</h4>\n<ul>\n<li>Feature &#8211; Added Template class which adds a few layers of filtering to any template file included</li>\n<li>Tweak &#8211; Added clear warnings and errors to prevent and limit the import of iCalendar sources missing required fields [93600]</li>\n<li>Tweak &#8211; Included <code>tribe_callback_return</code> for static returns for Hooks</li>\n<li>Tweak &#8211; Improved Aggregator notices including error data on the responses [87326]</li>\n<li>Language &#8211; 4 new strings added, 79 updated, 0 fuzzied, and 0 obsoleted</li>\n</ul>\n<h4>[4.6.5] 2017-11-16</h4>\n<ul>\n<li>Fix &#8211; Improved legacy URL redirect logic to prevent unwanted redirects (our thanks to wesleyanhq and Adam Schwartz for highlighting this issue) [86942]</li>\n<li>Fix &#8211; Modified tribe_get_template_part() to remove potential for multiple templates to be rendered in a single call [46630]</li>\n<li>Fix &#8211; Fixed an issue where Event Aggregator scheduled imports might remain stuck in pending status [90501, 92614, 91754]</li>\n<li>Fix &#8211; Removed code which was automatically populating various address fields with default values when creating a new venue from within the event editor [44732]</li>\n<li>Fix &#8211; Resolved some issues with the &#8220;Show Map&#8221; and &#8220;Show Map Link&#8221; options in CSV files not being reliably respected on import (props @joappf and many others for highlighting this issue) [82784]</li>\n<li>Fix &#8211; Added opportunities to override edit linked post links [89015]</li>\n<li>Fix &#8211; Fixed a bug where only some parts of event featured images were clickable in List Views (thanks @mattemkadia for highlighting this issue) [81392]</li>\n<li>Fix &#8211; Fixed the broken &#8216;Learn more&#8217; URL received after an unsuccessful &#8220;Other URL&#8221; import preview [92890]</li>\n<li>Fix &#8211; Fixed issue in list view navigation with backwards previous/next classes (thanks @secondtoughest) [36230]</li>\n<li>Fix &#8211; Fixed an issue where venues and organizers would not be correctly assigned to events in CSV imports with import statuses other than &#8220;Publish&#8221; [79680]</li>\n<li>Tweak &#8211; Remove net import scheduled notes for on domand imports [79079]</li>\n<li>Tweak &#8211; Allow for non-Latin characters to be used as the Events URL slug and the Single Event URL slug (thanks @daviddweb for originally reporting this) [61880]</li>\n<li>Tweak &#8211; Remove net import scheduled notes for on domand imports [79079]</li>\n<li>Tweak &#8211; Fixed some layout issues that would emerge with &#8220;Events URL Slug&#8221; option when &#8220;Plain&#8221; permalinks were enabled [92314]</li>\n<li>Tweak &#8211; Tweaked some language in Event Aggregator&#8217;s metabox on individual edit-event screens to reduce confusion around the impact of the Update Authority on CSV imports [77957]</li>\n<li>Tweak &#8211; Fix PHP 7.1 compatibility with Event Aggregator (props @BJP NEALE) [90002]</li>\n<li>Tweak &#8211; Added new filter: <code>tribe_events_force_filtered_ical_link</code>. This makes the &#8220;Export Events&#8221; URL more easily modifiable (thanks to @tdudley07 for highlighting this issue) [43908]</li>\n<li>Tweak &#8211; Made the &#8220;End of Day Cutoff&#8221; option better accommodate 24-hour and other time formats (thanks @festivalgeneral for bringing this issue to our attention!) [78621]</li>\n<li>Tweak &#8211; Made the options presented by the timezone selector filterable (via the newly added <code>tribe_events_timezone_choice</code> hook &#8211; our thanks to National University&#8217;s Marketing Department for this idea) [92909]</li>\n<li>Tweak &#8211; Improved integration with Twenty Seventeen &#8211; main events page now uses full height header when set to front page (thanks @uncovery for pointing this out) [89767]</li>\n<li>Tweak &#8211; Ensured REST API taxonomy endpoints are only registered in WordPress versions 4.7 and higher (thanks @dnaber-de for reporting this) [93227]</li>\n<li>Language &#8211; 1 new strings added, 132 updated, 0 fuzzied, and 1 obsoleted</li>\n</ul>\n<h4>[4.6.4] 2017-11-09</h4>\n<ul>\n<li>Tweak &#8211; Timepicker is now part of Tribe Common, it was removed from The Events Calendar</li>\n<li>Tweak &#8211; Required changes to make the plugin compatible with version 4.6 of Event Tickets</li>\n<li>Language &#8211; 10 new strings added, 167 updated, 0 fuzzied, and 2 obsoleted</li>\n</ul>\n<h4>[4.6.3] 2017-11-02</h4>\n<ul>\n<li>Fix &#8211; Prevent JS error when adding a Pro widget in the WP Customizer screen [72127]</li>\n<li>Fix &#8211; Fixed issue where the value of an event&#8217;s &#8220;Show Google Maps Link&#8221; option would not properly affect the displaying of the link on List View (props: @etechnologie) [75547]</li>\n<li>Fix &#8211; Added some more specification to our jquery-ui-datepicker CSS to limit conflicts with other plugins and themes [90577]</li>\n<li>Fix &#8211; Improve shortcode pagination/view change url so it is reusable (props: @der.chef and others) [70021]</li>\n<li>Fix &#8211; Ensure the <code>tribe_json_ld_{type}_object</code> filter is available to make modifications of event, venue and organizer JSON LD data possible (thanks to Mathew for flagging this problem) [89801]</li>\n<li>Fix &#8211; Improved JSON LD output for events by outputting the correct UTC offset where required (our thanks to Nina and many others for flagging this issue) [78233]</li>\n<li>Tweak &#8211; Fixed some display issues for the event schedule details (props @mia-caro)</li>\n<li>Tweak &#8211; Improved the clarity of and amount of context for some linked post labels to make translation of those labels a little easier and more nuanced (props @hnacc and others) [88589]</li>\n<li>Tweak &#8211; Changed the order in which the list view &#8220;next events&#8221; link is assembled for better translatability (with thanks to @alelouya for highlighting this problem) [72097]</li>\n<li>Tweak &#8211; Adjusted linked posts selector HTML to improve compatibility with Batcache [92049]</li>\n<li>Tweak &#8211; Improved datepicker handling so an end date on or later than the start date can always be selected [89825]</li>\n<li>Language &#8211; 0 new strings added, 7 updated, 0 fuzzied, and 0 obsoleted</li>\n</ul>\n<h4>[4.6.2] 2017-10-18</h4>\n<ul>\n<li>Fix &#8211; Restored functionality to the &#8220;currency position&#8221; options in Events Settings, and in the per-event cost settings (props @schola and many others!) [89918]</li>\n<li>Fix &#8211; Fixed issue in Month view with multi-month events not appearing on subsequent months (thanks @shinno.kei &amp; @schittly for helping isolate this) [89747]</li>\n<li>Fix &#8211; Made some changes to prevent Month View caching from breaking WPML support when in Month View (props: @mpike and many others!) [82286]</li>\n<li>Fix &#8211; Fixed start/end times being displayed in incorrect timezone in structured data (thanks @mtncreative &amp; @esosa) [42125]</li>\n<li>Fix &#8211; Fixed an issue that would cause a 404 error if the selected default view was not enabled (thanks @pruneau) [45612]</li>\n<li>Fix &#8211; Improved translatability by adding missing textdomains for a number of strings (props @pedro-mendonca) [91071]</li>\n<li>Fix &#8211; Removed unneeded escaping to ensure the organizer link displays as expected (pros @f4w-pwharton) [91074]</li>\n<li>Tweak &#8211; Improvements to the readme.txt file surrounding plugin requirements (thanks @ramiy) [90285]</li>\n<li>Tweak &#8211; Improve site identification in multisite installations using Event Aggregator to avoid throttling issues [90489]</li>\n<li>Tweak &#8211; Avoid notice level errors when a non-existent category archive is requested (our thanks to Charles Simmons for highlighting this) [90697]</li>\n<li>Tweak &#8211; Added a new filter <code>tribe_events_ical_single_event_links</code> to make customizing the iCal and gCal export links on single-event views easier [90705]</li>\n</ul>\n<h4>[4.6.1] 2017-10-04</h4>\n<ul>\n<li>Fix &#8211; Fixed &#8220;Next Events&#8221; and &#8220;Previous Events&#8221; navigation links in list views, which would sometimes make a category-filtered list view lose its category filter as a user navigated through pages of future or past events (props @forumhelpdesk and @atomicdust for reporting this!) [72013]</li>\n<li>Fix &#8211; Fixed some layout issues with the Tribe Bar datepicker that would arise when using a Twentysixteen or Twentyfifteen child them (thanks to @stefanrueegger for reporting this) [46471]</li>\n<li>Fix &#8211; Prevented modification of event titles within the loop when using TRIBE_MODIFY_GLOBAL_TITLE [89273]</li>\n<li>Fix &#8211; Fixed issue when exporting all-day multi-day events via iCal where the end date was one day early (Thank you @fairmont for reporting this!) [87775]</li>\n<li>Fix &#8211; Fixed issues with the jQuery Timepicker vendor script conflicting with other plugins&#8217; similar scripts (props: @hcny et al.) [74644]</li>\n<li>Fix &#8211; Fixed an issue that would prevent Event Aggregator scheduled imports from running [88395]</li>\n<li>Fix &#8211; Fixed the &#8220;Start Time&#8221; and &#8220;End Time&#8221; timepicker fields in the event-creation screen to make it impossible to have an end date/time that comes before the start date/time [72686]</li>\n<li>Tweak &#8211; Remove unnecessary parameters from some remove_action calls in the plugin (thanks to @JPry on GitHub for submitting this fix!) [88867]</li>\n<li>Tweak &#8211; Adjusted the EA cron start time so that it never gets created in the past [88965]</li>\n<li>Tweak &#8211; Improved options format in the Event Aggregator settings [88970]</li>\n<li>Tweak &#8211; Added a filter to CSV importer for altering the delimiter, escaping, and enclosing characters [70570]</li>\n<li>Tweak &#8211; Adjusted the <code>tribe_update_venue()</code> template tag so it no longer creates some unnecessary meta fields involving post_title, post_content, etc. (thanks @oheinrich for bringing this to our attention) [66968]</li>\n<li>Tweak &#8211; Improved the performance of The Events Calendar REST API tweaking some queries [89743]</li>\n<li>Tweak &#8211; Add support for a <code>found_posts</code> argument in <code>tribe_get_events</code>, <code>tribe_get_venues</code> and <code>tribe_get_organizers</code> functions to return the number of posts found matching the current query arguments [89743]</li>\n<li>Deprecated &#8211; Deprecated the <code>tribe-events-bar-date-search-default-value</code> filter; use <code>tribe_events_bar_date_search_default_value</code> instead [67482]</li>\n<li>Language &#8211; Improvements to aid translatability of text throughout plugin (props: @ramiy) [88982]</li>\n<li>Language &#8211; 7 new strings added, 180 updated, 4 fuzzied, and 3 obsoleted</li>\n</ul>\n<h4>[4.6] 2017-09-25</h4>\n<ul>\n<li>Feature &#8211; Added full CRUD REST support for Events, Organizers, Venues, Event Categories, and Tags</li>\n<li>Tweak &#8211; Updated Bootstrap Datepicker to v1.7.0</li>\n<li>Tweak &#8211; Added latitude/longitude to REST responses when available on venues</li>\n<li>Tweak &#8211; Added JSON-LD data to REST responses when available</li>\n<li>Tweak &#8211; Replaced deprecated first parameter of <code>tribe_get_organizers()</code> with a parameter that, when specified with a truthy value, returns only organizers with upcoming events attached to them</li>\n<li>Tweak &#8211; Added linked post filters: <code>tribe_{$this-&gt;post_type}_has_events_excluded_post_stati</code>, <code>tribe_events_tribe_organizer_create</code>, <code>tribe_events_tribe_organizer_update</code>, <code>tribe_event_venue_duplicate_post_fields</code>, <code>tribe_event_organizer_duplicate_custom_fields</code></li>\n<li>Tweak &#8211; Added action: <code>tribe_events_organizer_created</code></li>\n<li>Tweak &#8211; Added REST filters: <code>tribe_rest_organizer_default_only_with_upcoming</code>, <code>tribe_rest_venue_default_only_with_upcoming</code>, <code>tribe_events_rest_term_allow_delete</code></li>\n<li>Tweak &#8211; Added duplicate-detection filters: <code>tribe_duplicate_post_strategies</code>, <code>tribe_duplicate_post_strategy</code>, <code>tribe_duplicate_post_{$strategy}_strategy</code></li>\n<li>Language &#8211; 152 new strings added, 217 updated, 6 fuzzied, and 1 obsoleted</li>\n</ul>\n<h4>[4.5.13] 2017-09-20</h4>\n<ul>\n<li>Feature &#8211; Add link to the featured image in the Events List widget. New filter introduced to control this: <code>tribe_events_list_widget_featured_image_link</code> (props to @cabadaj007 for the feature request) [84807]</li>\n<li>Feature &#8211; Remove &#8216;France, Metropolitan&#8217; option from country list to prevent issues with Google Maps API (thanks @varesanodotfr for pointing this out) [78023]</li>\n<li>Feature &#8211; Ignored Events will restore previous status instead of setting to &#8216;publish&#8217; [82213]</li>\n<li>Fix &#8211; Patched jQuery Resize vendor library to avoid JavaScript conflicts (props to @britner for the original report) [71994]</li>\n<li>Fix &#8211; Fixed a typo in the Event List widget options [71081]</li>\n<li>Fix &#8211; Addressed some PHP notices that would sometimes emerge in tag-filtered post lists in the wp-admin (thanks to @wfsec28 and others in the forums for reporting this!) [45274]</li>\n<li>Fix &#8211; When &#8220;Full Styles&#8221; or &#8220;Tribe Events Styles&#8221; are used, prevent duplicate featured images from showing up in the Twenty Seventeen theme (props to @want2what and others in the forums for reporting this) [80955]</li>\n<li>Fix &#8211; Fixed the issue that would prevent the start date and date range parameters from being taken into account when using &#8216;Other URL&#8217; source in Event Aggregator</li>\n<li>Fix &#8211; Aggregator will no longer update comments while inactive [78890]</li>\n<li>Fix &#8211; Avoid issues when REST API archive request parameters are not in the original order (thanks @Nslaver for reporting this and providing a fix) [88748]</li>\n<li>Tweak &#8211; Aggregator prevents duplicated records with the same params from being created [68833]</li>\n<li>Tweak &#8211; Aggregator will now allow for some minor shifts in schedule execution time to help distribute requests to EA Service [86628]</li>\n<li>Tweak &#8211; Improve text in the Event Aggregator settings [77452]</li>\n<li>Tweak &#8211; Add actions before and after posts are inserted or updated by Event Aggregator to allow custom functions to kick in (<code>tribe_aggregator_before_insert_posts</code> and <code>tribe_aggregator_after_insert_posts</code>) [87530]</li>\n<li>Tweak &#8211; Allow users to import CSV with numerically-named categories by using a flag (currently <code>%n</code>) (thanks @Shamsi for reporting) [78340]</li>\n<li>Tweak &#8211; Allow date range and events count limits to be set on each type of import (except for &#8216;Other URL&#8217;) in Event Aggregator [79975]</li>\n</ul>\n<h4>[4.5.12.3] 2017-09-19</h4>\n<ul>\n<li>Fix &#8211; Display events on Month View correctly for WordPress version 4.8.2 and up (props @realcrozetva for reporting this) [88952]</li>\n</ul>\n<h4>[4.5.12.2] 2017-09-08</h4>\n<ul>\n<li>Fix &#8211; Fixed an issue where manually running Scheduled Imports would always result in a failed import [87321]</li>\n</ul>\n<h4>[4.5.12.1] 2017-09-07</h4>\n<ul>\n<li>Fix &#8211; Fixed an issue where events imported via Event Aggregator from an iCal-like source would be duplicated in place of being updated [87654]</li>\n</ul>\n<h4>[4.5.12] 2017-09-06</h4>\n<ul>\n<li>Fix &#8211; Fixed an issue where, with certain date formats chosen in the Events display settings, the &#8220;Next Month&#8221; link navigation wasn&#8217;t working (props to @tttammi and others for reporting this issue!) [86937]</li>\n<li>Fix &#8211; Fixed a typo in REST API Swagger documentation that mentioned &#8220;organizer&#8221; when it should have stated &#8220;venue&#8221;.</li>\n<li>Fix &#8211; Fixed issues with Event Aggregator queueing system where events might be duplicated or incorrectly updated [79975]</li>\n<li>Fix &#8211; Prevent notice when the Aggregator Record title is an array [82149]</li>\n<li>Fix &#8211; Allows Aggregator Google Map settings to extend the Global Setting by default (props to queerio for reporting this!) [67639]</li>\n<li>Fix &#8211; Prevent Warnings when throwing WordPress admin notices from Aggregator daily usage limit (props to cigarplanner for reporting this!) [83187]</li>\n<li>Fix &#8211; Resolved problem where Aggregator wouldn&#8217;t allow you to remove filtering terms for Records [76949]</li>\n<li>Fix &#8211; Allow any datepicker format to be used on Aggregator filtering Events (props to matthewseymour for reporting this!) [77819]</li>\n<li>Fix &#8211; Added check to see if log directory is readable before listing logs within it (thank you @rodrigochallengeday-org and @richmondmom for reporting this) [86091]</li>\n<li>Tweak &#8211; Datatables Head and Foot checkboxes will not select all items, only the current page [77395]</li>\n<li>Tweak &#8211; Included tooltip for Aggregator &#8220;Hide &amp; Ignore&#8221; button for events [67890]</li>\n<li>Tweak &#8211; Added all the Aggregator Origins to the Admin Bar [68693]</li>\n<li>Tweak &#8211; Added filters: <code>tribe_get_state_options</code></li>\n<li>Tweak &#8211; Added template tags: <code>maybe_format_from_datepicker()</code></li>\n<li>Tweak &#8211; Added the <code>tribe_rest_single_event_data</code> filter to the single event REST API endpoint to allow filtering the returned data (thanks @mwender) [88748]</li>\n<li>Language &#8211; 2 new strings added, 90 updated, 0 fuzzied, and 1 obsoleted</li>\n</ul>\n<h4>[4.5.11] 2017-08-24</h4>\n<ul>\n<li>Fix &#8211; Avoid Event Aggregator previews or scheduled imports being marked as failures [84259]</li>\n<li>Fix &#8211; Fixed start and end date limit parsing for events archive in the REST API code [78375]</li>\n<li>Fix &#8211; Fixed issue with <code>tribe_events_get_the_excerpt()</code> returning a read more link that sometimes pointed to the current page [70473]</li>\n<li>Fix &#8211; Fixed Post ID not being sent to the_title filter for Organizers and Venues (props Anna L.) [85206]</li>\n<li>Fix &#8211; Fixed issue where Month View tooltips would often go off-screen in some smaller viewport sizes [65136]</li>\n<li>Fix &#8211; Fixed an issue that would sometimes render Event Aggregator options invalid even with a valid license [78469]</li>\n<li>Fix &#8211; Fixed an issue where the mobile.php template file would often fail to include an event&#8217;s featured image [74291]</li>\n<li>Fix &#8211; Resolved issue where invalid linked post IDs prevent proper updates on linked posts (props to Mathew L. and a few others for highlighting this issue) [71802]</li>\n<li>Fix &#8211; Do not hijack the blog when the main events page is configured to appear on the site&#8217;s homepage (our thanks to Jason and others for flagging this problem) [72094]</li>\n<li>Fix &#8211; Remove extra trailing double-quotes at the end of the timepicker data-format attributes [85603]</li>\n<li>Fix &#8211; Fixed an issues where Event Aggregator scheduled imports could not run other than manually [81639]</li>\n<li>Tweak &#8211; Prevent stray commas from showing up for some event venues in the List View [72289]</li>\n<li>Tweak &#8211; Prevent stray commas from showing up for some event venues in the Day View [85429]</li>\n<li>Tweak &#8211; Modify certain event queries to widen the window of opportunity for query caching (props @garretjohnson) [84841]</li>\n<li>Tweak &#8211; Improve Event Aggregator message regarding Facebook token expiration [70376]</li>\n<li>Tweak &#8211; Support importing from URLs (Event Aggregator) where the protocol hasn&#8217;t been specified by defaulting to HTTP [76466]</li>\n<li>Tweak &#8211; Removed WP API adjustments [85996]</li>\n<li>Tweak &#8211; Added filter: <code>tribe_aggregator_meta_source</code> to filter the Event Aggregator import source</li>\n<li>Tweak &#8211; Added filter: <code>tribe_events_linked_post_meta_values_{$current_linked_post_meta_key}</code> for filtering the array of values retrieved for a specific linked post meta field</li>\n<li>Tweak &#8211; Updated views: <code>src/views/day/single-event.php</code> and <code>src/views/list/single-event.php</code></li>\n<li>Compatibility &#8211; Minimum supported version of WordPress is now 4.5</li>\n<li>Language &#8211; Improvements to various strings to improve ease of translation (props to @ramiy)</li>\n<li>Language &#8211; 5 new strings added, 56 updated, 1 fuzzied, and 3 obsoleted [the-events-calendar]</li>\n</ul>\n<h4>[4.5.10.1] 2017-08-16</h4>\n<ul>\n<li>Fix &#8211; Updates common library to resolve a range of issues preventing frontend assets from loading and breaking parts of our user interface [85017]</li>\n</ul>\n<h4>[4.5.10] 2017-08-09</h4>\n<ul>\n<li>Fix &#8211; Avoid duplicate events when importing from some iCal, Google Calendar and Facebook feeds in Event Aggregator (our thanks to Jason Sears, controlyours and many other users for highlighting these issues) [67038]</li>\n<li>Fix &#8211; Fixed bug that caused scheduled imports to get stuck in a perpetual state of failure when receiving error messages from the Event Aggregator service (our thanks to Antonio Jose and others for flagging this problem) [83767]</li>\n<li>Fix &#8211; Resolved issue where errors from the Event Aggregator service were not properly logging/visible on the History tab [83767]</li>\n<li>Tweak &#8211; Made linked post fields&#8217; auto-save features more stringently check for empty values to prevent the plugin from trying to &#8220;save&#8221; empty values (our thanks to Jean-Marie for highlighting this problem) [80282]</li>\n<li>Tweak &#8211; Moved the organizer e-mail address field label a bit to better accommodate Community Events [80426]</li>\n<li>Tweak &#8211; Added filter to tribe_get_display_end_date()&#8217;s return value [77730]</li>\n<li>Tweak &#8211; Avoid notice-level errors while processing queues within Event Aggregator (our thanks to David Sharpe and others for reporting this) [84020]</li>\n<li>Tweak &#8211; Improve compatibility and avoid Javascript errors when running alongside Twenty Seventeen [70853]</li>\n<li>Compatibility &#8211; Minimum supported version of WordPress is now 4.4</li>\n<li>Language &#8211; 1 new strings added, 119 updated, 0 fuzzied, and 0 obsoleted</li>\n</ul>\n<h4>[4.5.9] 2017-07-26</h4>\n<ul>\n<li>Fix &#8211; Send Aggregator callback URL with correct Scheme [83364]</li>\n<li>Fix &#8211; Scheduled Aggregator cron for inserting will re-enqueue to complete scheduled imports [83382]</li>\n<li>Fix &#8211; Avoid overwriting Venues and Organizers when importing FB events with similarly named Venues and Organizers [75370]</li>\n<li>Fix &#8211; Improve handling of large and/or slow Google Calendar and iCal feeds [79975]</li>\n<li>Tweak &#8211; Added period &#8220;.&#8221; separator to datepicker formats. [65282]</li>\n<li>Tweak &#8211; Added tribe_events_month_get_events_in_month filter to allow overriding of events used in month templates. [83317]</li>\n</ul>\n<h4>[4.5.8.1] 2017-07-21</h4>\n<ul>\n<li>Fix &#8211; Fixed an issue where failed EA Imports would hang for a long time before failing [83344]</li>\n</ul>\n<h4>[4.5.8] 2017-07-13</h4>\n<ul>\n<li>Fix &#8211; Remove permalink logic for recurring events (Events Calendar PRO will implement instead) [74153]</li>\n<li>Fix &#8211; Avoid type error when setting up one-time imports for Facebook URLs (our thanks to @J for flagging this!) [78664]</li>\n<li>Fix &#8211; Add a safety check in isOrganizer() function (our thanks to Kevin for flagging this!) [81645]</li>\n<li>Fix &#8211; Avoid EA Client hanging when no events are found while attempting an import from a Facebook source [82713]</li>\n<li>Fix &#8211; Improve compatibility of The Events Calendar when operating with WPML from within a subdirectory (props: @dgwatkins) [81998]</li>\n</ul>\n<h4>[4.5.7] 2017-06-28</h4>\n<ul>\n<li>Fix &#8211; Restore support for translated events category slugs when WPML is active [73478]</li>\n<li>Fix &#8211; Improve handling of shortcodes within event view excerpts (props: @awbauer) [81226]</li>\n<li>Fix &#8211; Improve compatibility with WPML in relation to event permalinks specifically (props: @dgwatkins) [81224]</li>\n<li>Fix &#8211; Improved handling of Venue fields that allows for better form validation in Community Events [76297]</li>\n<li>Tweak &#8211; Better detection and reporting of communication failures with the Event Aggregator server</li>\n<li>Tweak &#8211; Textual corrections (with thanks to @garrett-eclipse for highlighting many of these) [77196]</li>\n<li>Tweak &#8211; New filter added (&#8220;tribe_events_linked_posts_dropdown_enable_creation&#8221;) to facilitate more control over linked posts [80487]</li>\n<li>Tweak &#8211; Improve performance of theme compatibility code [71974]</li>\n<li>Tweak &#8211; Don&#8217;t show Event Aggregator system status in Help tab if there&#8217;s no Event Aggregator license in place [68506]</li>\n</ul>\n<h4>[4.5.6] 2017-06-22</h4>\n<ul>\n<li>Tweak &#8211; Improved how Cost field looks and it&#8217;s consistency across views [71092 &amp; 71094]</li>\n<li>Fix &#8211; Resolved issue where the Meta Chunker attempted to inappropriately chunk meta for post post_types [80857]</li>\n<li>Tweak &#8211; Added actions: <code>tribe_events_inside_cost</code></li>\n<li>Tweak &#8211; Changed views: <code>day/single-event</code>, <code>day/single-featured</code>, <code>list/single-event</code>, <code>list/single-featured</code></li>\n<li>Language &#8211; 1 new strings added, 15 updated, 1 fuzzied, and 1 obsoleted [the-events-calendar]</li>\n<li>Language &#8211; 0 new strings added, 0 updated, 1 fuzzied, and 0 obsoleted [tribe-common]</li>\n</ul>\n<h4>[4.5.5] 2017-06-14</h4>\n<ul>\n<li>Fix &#8211; Removed extra double quotes in organizer link output [71133]</li>\n<li>Fix &#8211; Make the list and day view styles match more closely [63599]</li>\n<li>Fix &#8211; Better sanitization on CSV imports (thanks to Valentinos Chouris from NCC Group for reporting this) [80311]</li>\n<li>Fix &#8211; Prevent tabs from being incorrectly escaped in iCal output (props: KZeni) [80452]</li>\n<li>Fix &#8211; Fixed inconsistent font styling of Tribe Bar form labels. [27252]</li>\n<li>Tweak &#8211; Removed unused Javascript (jQuery UI Dialog) to help avoid warnings (our thanks to @gama6889 for flagging this) [80766]</li>\n<li>Tweak &#8211; Added new filter hooks &#8216;tribe_events_register_event_type_args&#8217; and &#8216;tribe_events_register_event_cat_type_args&#8217; [80658]</li>\n</ul>\n<h4>[4.5.4] 2017-06-06</h4>\n<ul>\n<li>Tweak &#8211; Minor tweaks to the CSS for linked post types (Organizer/Venues)</li>\n<li>Fix &#8211; Prevent drag and drop icon showing when singular linked post type is been displayed</li>\n<li>Fix &#8211; Resolved issue where scheduled imports sometimes failed to execute [79587]</li>\n<li>Fix &#8211; Better sanitization of data (Props to Valentinos Chouris for reporting this) [80310]</li>\n<li>Language &#8211; 2 new strings added, 156 updated, 0 fuzzied, and 4 obsoleted [the-events-calendar]</li>\n<li>Language &#8211; 4 new strings added, 20 updated, 1 fuzzied, and 0 obsoleted [tribe-common]</li>\n</ul>\n<h4>[4.5.3] 2017-06-01</h4>\n<ul>\n<li>Fix &#8211; Made it easier to translate the update confirmation message (our thanks to safu9 for highlighting this) [79729]</li>\n<li>Fix &#8211; Fixed compatibility issue with WPML which caused organizers and venues to disappear on translated events [67581]</li>\n<li>Fix — Fixed bug where venues and organizers would be duplicated when their associated event is previewed. [64088]</li>\n<li>Tweak &#8211; Other fixes to the plugin verbiage (with thanks to @garrett-eclipse and others)</li>\n</ul>\n<h4>[4.5.2.1] 2017-05-19</h4>\n<ul>\n<li>Fix &#8211; Prevent fatal errors occuring in PHP 5.5 and earlier [79208]</li>\n</ul>\n<h4>[4.5.2] 2017-05-17</h4>\n<ul>\n<li>Fix &#8211; Correct REST API reference URL (our thanks to Lindsey for flagging this) [78658]</li>\n<li>Fix &#8211; Improve Event Aggregator integration to avoid situations where imports continually restart but do not complete [77988]</li>\n<li>Tweak &#8211; Make the inclusion or exclusion of the year (within the event schedule string) filterable [78070]</li>\n<li>Tweak &#8211; Adjustments to help avoid false positive security alerts being generated in relation to our customizer integration [78355]</li>\n</ul>\n<h4>[4.5.1] 2017-05-04</h4>\n<ul>\n<li>Fix &#8211; Prevented errors on EA import screen that happened in exotic circumstance. Thanks @kathryn for reporting this! [75787]</li>\n<li>Fix &#8211; Made EA preserve custom dates after reimporting a Facebook Event when option is set. [75787]</li>\n<li>Fix &#8211; Enhance month view caching to minimize impact of JSON-LD generation [74656]</li>\n<li>Tweak &#8211; Styling/layout improvements within the Event Aggregator screen [77895]</li>\n</ul>\n<h4>[4.5.0.2] 2017-05-01</h4>\n<ul>\n<li>Fix &#8211; Ensure compatibility with WordPress version 4.4 and earlier</li>\n</ul>\n<h4>[4.5.0.1] 2017-05-01</h4>\n<ul>\n<li>Fix &#8211; Resolving issue where some premium plugins were falsely claiming they were out of date</li>\n</ul>\n<h4>[4.5] 2017-05-01</h4>\n<ul>\n<li>Feature &#8211; Event Aggregator now allows users to import from other sites with The Events Calendar [68139]</li>\n<li>Feature &#8211; Include a Events REST API endpoint for read operations [70711]</li>\n<li>Feature &#8211; Include granular Scheduling for Events Aggregator</li>\n<li>Tweak &#8211; Update Authority for modified fields now will include Organizer, Venues and Taxonomy changes [71152]</li>\n<li>Tweak &#8211; Clean up direct calls to get events and use wrapper <code>tribe_get_events()</code> which has a hook for customizing</li>\n<li>Tweak &#8211; Remove including Event Tickets for backwards compatibility as a vendor library [71908]</li>\n<li>Tweak &#8211; Create a global ID to increase consistency on all of the imported items with Event Aggregator [75218]</li>\n<li>Fix &#8211; Prevent Aggregator to run on Empty Queues thus generating fatals (props to @Donald for the report here) [75377]</li>\n<li>Fix &#8211; Categories and Tags are no longer cleared when importing with Event Aggregator (thank you @Nicolas for the report) [74264]</li>\n<li>Fix &#8211; Increase consistency on Column Mapping for CSV imports [76476]</li>\n<li>Tweak &#8211; Added filters for REST API: <code>tribe_events_rest_url_prefix</code>, <code>tribe_rest_url</code>, <code>tribe_events_rest_use_builtin</code>, <code>tribe_rest_events_archive_data</code>, <code>tribe_rest_event_max_per_page</code>, <code>tribe_rest_event_data</code>, <code>tribe_rest_venue_data</code>, <code>tribe_rest_organizer_data</code>, <code>tribe_rest_event_categories_data</code>, <code>tribe_rest_event_tags_data</code>, <code>tribe_rest_event_taxonomy_term_data</code>, <code>tribe_rest_event_featured_image</code>, <code>tribe_events_rest_api_enabled</code></li>\n<li>Tweak &#8211; Added filters for REST API Documentation: <code>tribe_rest_swagger_cost_details_documentation</code>, <code>tribe_rest_swagger_date_details_documentation</code>, <code>tribe_rest_swagger_image_details_documentation</code>, <code>tribe_rest_swagger_image_size_documentation</code>, <code>tribe_rest_swagger_term_documentation</code>, <code>tribe_rest_swagger_event_documentation</code>, <code>tribe_rest_swagger_organizer_documentation</code>, <code>tribe_rest_swagger_venue_documentation</code>, <code>tribe_rest_swagger_documentation</code></li>\n<li>Tweak &#8211; Added filters for Modified fields tracking: <code>tribe_tracker_post_types</code>, <code>tribe_tracker_excluded_meta_keys</code>, <code>tribe_tracker_enabled</code>, <code>tribe_tracker_enabled_for_terms</code>, <code>tribe_tracker_taxonomies</code></li>\n<li>Tweak &#8211; Added filters for Event Aggregator: <code>tribe_aggregator_localized_data</code>, <code>tribe_aggregator_service_messages</code>, <code>tribe_aggregator_url_import_range_options</code>, <code>tribe_aggregator_url_import_range_cap</code>, <code>tribe_aggregator_url_import_range_start</code>, <code>tribe_aggregator_url_import_range_end</code></li>\n<li>Tweak &#8211; Removed filters for Event Aggregator: <code>tribe_aggregator_track_modified_fields</code></li>\n<li>Tweak &#8211; Added actions for Initialization: <code>tribe_events_bound_implementations</code></li>\n<li>Tweak &#8211; Removed methods for <code>Tribe__Events__Main</code>: <code>track_event_post_field_changes</code>, <code>maybe_load_tickets_framework</code></li>\n<li>Tweak &#8211; Removed methods for <code>Tribe__Events__Aggregator__Service</code>: <code>has_service_message</code></li>\n</ul>\n<h4>[4.4.5] 2017-03-23</h4>\n<ul>\n<li>Fix &#8211; Local changes to events should be preserved in accordance with the Event Import Authority setting (thanks to @bryan for reporting this one) [72876]</li>\n<li>Fix &#8211; Correct the value for days of the week abbreviation (thanks @mmmmartin03 for the report) [75379]</li>\n<li>Tweak &#8211; Enable the month view cache by default on new installations [74867]</li>\n<li>Tweak &#8211; External links to Google maps changed from http to https (nice find by @bjf2000 &#8211; reported via the .org support page) [74930]</li>\n<li>Tweak &#8211; Links to WordPress.org changed from http to https (ultimately this is also credited to @bjf2000&#8217;s find. Thanks!) [72273]</li>\n</ul>\n<h4>[4.4.4] 2017-03-08</h4>\n<ul>\n<li>Fix &#8211; Avoid unnecessarily removing a callback from an action while inside the same action (improves PolyLang compatibility &#8211; props @Chouby) [73122]</li>\n<li>Fix &#8211; Resolving issue where sites that overrode the wp-admin path would fail to successfully perform a Facebook OAuth with Event Aggregator [74687]</li>\n<li>Tweak &#8211; Improve template loading for easier customization by developers and better support of the template hierarchy (props @QWp6t) [72842]</li>\n</ul>\n<h4>[4.4.3] 2017-02-22</h4>\n<ul>\n<li>Fix &#8211; Resolved issue where iCal exports on month view were exporting more events than intended (thanks to @s2ldesign for reporting in our forums) [72133]</li>\n<li>Fix &#8211; Resolved meta width issue for maps when Pro is active (gracias a @ANTONIO JOSE por el reporte del error)  [69844, 72272]</li>\n<li>Fix &#8211; Resolved issue where featured images were not being imported via Event Aggregator Facebook imports (cheers to @Cody for the initial bug report) [72764]</li>\n<li>Fix &#8211; Resolved issue where translated &#8216;all&#8217; slugs were not respected (thank you @Marianne for your report in the forums) [71996]</li>\n<li>Tweak &#8211; Translation improvements and fixes (@Katja &#8211; thanks! ) [70068]</li>\n<li>Tweak &#8211; Allow &#8220;-1&#8221; when specifying the &#8220;Month view events per day&#8221; setting [70497]</li>\n</ul>\n<h4>[4.4.2] 2017-02-09</h4>\n<ul>\n<li>Fix &#8211; Ensure the global and source-specific Google Map settings for imports are respected [67228]</li>\n<li>Fix &#8211; Prevent PHP 5.2 Strict mode from throwing notices due to usage of <code>is_a</code> [72812]</li>\n<li>Fix &#8211; Ensure the events list widget&#8217;s show/hide if there are upcoming events setting is respected [72965]</li>\n<li>Tweak &#8211; Add filters for template tag functions related to dates: <code>tribe_get_start_time</code>, <code>tribe_get_end_time</code>, <code>tribe_get_start_date</code> and <code>tribe_get_end_date</code> [67759]</li>\n</ul>\n<h4>[4.4.1.1] 2017-01-26</h4>\n<ul>\n<li>Fix &#8211; Resolved fatal caused when rendering themes that override tribe styles</li>\n</ul>\n<h4>[4.4.1] 2017-01-26</h4>\n<ul>\n<li>Fix &#8211; Resolve the Fatals related to undefined methods and Memory exhaustion [71958, 71912]</li>\n<li>Fix &#8211; iCal export for Single events working again [71916]</li>\n<li>Tweak &#8211; Changes the Search label to prevent duplicate words (props @oheinrich) [72149]</li>\n<li>Tweak &#8211; Add theme version to <code>tribe-event.css</code> (props @berler) [71973]</li>\n<li>Fix &#8211; Resolve JavaScript error when jQuery was been de-registered [71369]</li>\n<li>Fix &#8211; Prevent Fatals when Importing Images on Event Aggregator [70576]</li>\n<li>Fix &#8211; Prevent Third Party notes to be escaped, anchor link working again [71872]</li>\n<li>Fix &#8211; Google Maps now are using HTTPS instead of HTTP (props @cliffordp)</li>\n<li>Fix &#8211; Prevent Fatals on Event Aggregator Cron, due to Activity logging failure [71904]</li>\n<li>Fix &#8211; Elminate some cases of problem with Facebook manual import on Event Aggregator [69137]</li>\n<li>Fix &#8211; WPML integration smaller incompatibilities [70520, 70522]</li>\n</ul>\n<h4>[4.4.0.1] 2017-01-09</h4>\n<ul>\n<li>Fix &#8211; Adds safety check to ensure a smooth activation process when earlier versions of Tribe Common are active</li>\n</ul>\n<h4>[4.4] 2017-01-09</h4>\n<ul>\n<li>Feature &#8211; Add dynamic helper text to single event editor to display the events date and time [66484]</li>\n<li>Feature &#8211; Add support for featured events [65898]</li>\n<li>Feature &#8211; Add support for placing the main events archive on the site homepage [38757]</li>\n<li>Feature &#8211; Add support for the theme customizer [67489]</li>\n<li>Feature &#8211; Make it possible to adjust map pins via the theme customizer [65889]</li>\n<li>Feature &#8211; Support for Event Aggregator in a multisite network context added [61427]</li>\n<li>Fix &#8211; Add a link to The Events Calendar Help page in the Network Administration screen of multisite installations [68665]</li>\n<li>Fix &#8211; Multisite license editing and displaying consistency [68662]</li>\n<li>Tweak &#8211; Adjusted styles and added actions for featured events in the List Widget [65923]</li>\n<li>Tweak &#8211; Organizers and Venues are now with a better and cleaner interface [68430]</li>\n<li>Tweak &#8211; Eliminate duplicate meta data for organizer posts [25084]</li>\n<li>Tweak &#8211; Improved the start/end date user interface [66486, 66487, 66550]</li>\n<li>Tweak &#8211; iCal export now includes all events &#8211; up to a reasonable limit &#8211; rather than just those in the current view [65037]</li>\n<li>Tweak &#8211; Adjustments made to the default week view color scheme [69756]</li>\n<li>Tweak &#8211; Add AJAX and improve consistency of the venue and organizer UI [38129]</li>\n</ul>\n<h4>[4.3.5] 2016-12-20</h4>\n<ul>\n<li>Tweak &#8211; Updated the template override instructions in a number of templates [68229]</li>\n<li>Tweak &#8211; Improve behavior of tribe_get_events_title() in respect of single events [46313]</li>\n<li>Tweak &#8211; Event Aggregator will only load on the Administration, prevent bigger loads for Front-End users [70812]</li>\n<li>Tweak &#8211; Allow better filtering for Organizers and Venue Meta fields (Props: @Chouby from Polylang) [70894]</li>\n<li>Fix &#8211; Prevent JavaScript Notices related to Bumpdown [69886]</li>\n<li>Fix &#8211; Assets URL on Windows Servers are fully operational again [68377]</li>\n<li>Fix &#8211; JavaScript and CSS files will respect HTTPS on all pages [69561]</li>\n<li>Fix &#8211; Fixed comment count and visibility issues due to Event Aggregator records [68297]</li>\n<li>Fix &#8211; Fixed PHP notices and warnings raised when importing .ics files [69960]</li>\n<li>Fix &#8211; Only show link to Venues if Pro is active in List View [69887]</li>\n<li>Fix &#8211; Fixed and issue that would make Event Aggregator importing notices remain stuck in the Import screen [70614]</li>\n<li>Fix &#8211; Avoid error screen when saving licenses on multisite installations [68599]</li>\n<li>Fix &#8211; Fix calendar view links in WPML language switcher [67134]</li>\n</ul>\n<h4>[4.3.4.2] 2016-12-13</h4>\n<ul>\n<li>Fix &#8211; Correct an oversight leading to breakages of the /all/ events archive for Events Calendar PRO users [70662]</li>\n</ul>\n<h4>[4.3.4.1] 2016-12-09</h4>\n<ul>\n<li>Fix &#8211; Updates Tribe Common to remove some stray characters that were impacting page layouts (props: @Aetles) [70536]</li>\n</ul>\n<h4>[4.3.4] 2016-12-08</h4>\n<ul>\n<li>Tweak &#8211; Tribe Common now is loaded only once across our plugin suite, improves performance in some cases [65755]</li>\n<li>Fix &#8211; Featured Images for Event Aggregator imports are working as expected again. [69465]</li>\n<li>Fix &#8211; Google Calendar and iCalendar files are now updating their respective events [68684]</li>\n<li>Fix &#8211; On demand Event Aggregator records will update events correctly [69542]</li>\n</ul>\n<h4>[4.3.3] 2016-11-16</h4>\n<ul>\n<li>Feature &#8211; Added Tribe Extension class and loader, to make small addons easier to build [68188]</li>\n<li>Fix &#8211; Ordering on Month view is working as expected again [69123]</li>\n<li>Fix &#8211; Enable ampersand character in mobile month view titles (thanks @kate for the report of this) [45409]</li>\n<li>Fix &#8211; Prevent notices for Event Aggregator License checking [67981]</li>\n<li>Fix &#8211; Mismatched text domains are resolved, important for translations (props to @Hans) [68462]</li>\n<li>Fix &#8211; Sticky on Month View is working as expected again [68902]</li>\n<li>Fix &#8211; Prevent HTTPS websites from pointing to Assets in HTTP [68372]</li>\n<li>Fix &#8211; On <code>WP_Query</code> we will no-longer overwrite custom <code>post__not_in</code> params [42143]</li>\n</ul>\n<h4>[4.3.2] 2016-11-02</h4>\n<ul>\n<li>Fix &#8211; Fixes an issue where the text in the Location search field was URL encoded when using the back or forward button for navigation. [61742]</li>\n<li>Fix &#8211; Aggregator Errors will not show more than once daily as comments (Thanks @Jacob for your report on the forums) [68094]</li>\n<li>Fix &#8211; Event Aggregator ICS default configuration now are been Selected Correctly [67885]</li>\n<li>Fix &#8211; Shortcode Month view now will display tooltips correctly [68094]</li>\n<li>Fix &#8211; Avoid loading the select2 JavaScript library twice when Advanced Custom Fields is activated (props to @ryan for the initial report [43605]</li>\n<li>Fix &#8211; Avoid errors and notices on calendar page when X theme and WPML plugins are active (thanks @ingrid for reporting this one) [64400]</li>\n</ul>\n<h4>[4.3.1.1] 2016-10-20</h4>\n<ul>\n<li>Fix &#8211; Corrected a packaging issue from the 4.3.1 release [67936]</li>\n</ul>\n<h4>[4.3.1] 2016-10-20</h4>\n<ul>\n<li>Tweak &#8211; Implement the pruning of Event Aggregator history records after 7 days, filterable by tribe_aggregator_record_retention [68283]</li>\n<li>Tweak &#8211; Event Aggregator will now verify that the license key has uses remaining before creating a history record [68286]</li>\n<li>Tweak &#8211; Improve <code>tribe_create_event</code> documentation (Props to Keith) [44871]</li>\n<li>Fix &#8211; Resolved an issue where scheduled Event Aggregator imports marked as &#8220;On Demand&#8221; were being run by cron [68284]</li>\n<li>Fix &#8211; Resolved a bug where empty meta fields were being inserted into Event Aggregator record post meta [68290]</li>\n<li>Fix &#8211; Resolved a bug where Venue and Organizers urls were been generated incorrectly (Thanks @Matt) [68168]</li>\n<li>Fix &#8211; Pagination links on Month view are updating correctly [67977]</li>\n<li>Fix &#8211; Resolved the support for translated event category archive slug that could lead to broken links on the front-end while using WPML (Props to Wilco in the support Forums) [62018]</li>\n<li>Fix &#8211; Resolved a bug where searching for past events in the List view would always yield no results (Thanks for the report @Davide) [61863]</li>\n<li>Fix &#8211; Resolved an issue where long file names would break plugin updates on some Windows installations (pros to @Alan [62552]</li>\n<li>Fix &#8211; Resolved an issue where the <code>/all</code> link on recurring events on non English websites could be broken (reported by @lumiest &#8211; thanks!) [68062]</li>\n<li>Fix &#8211; Pagination links on Month view are updating correctly [67977]</li>\n</ul>\n<h4>[4.3.0.1] 2016-10-14</h4>\n<ul>\n<li>Fix &#8211; Preventing legacy Facebook events from being duplicated</li>\n</ul>\n<h4>[4.3] 2016-10-13</h4>\n<ul>\n<li>Feature &#8211; Added Event Aggregator to enable service-based event imports from iCal feeds, Facebook, and Meetup</li>\n<li>Feature &#8211; Revamped the CSV import screens to work within the new Event Aggregator pages</li>\n<li>Tweak &#8211; Adjusted some view logic to support the new Event Views shortcode in Pro [44800]</li>\n<li>Tweak &#8211; Added a button to copy the system infomation on the help tab [43709]</li>\n<li>Tweak &#8211; Added an option for users to opt into automatic system infomation so our support system can grab the system information found on the help tab automatically [31645]</li>\n<li>Tweak &#8211; Use an earlier hook for iCal feed generation (props @jlambe) [64141]</li>\n<li>Tweak &#8211; Revise and simplify integration with Event Tickets attendee screen [61992]</li>\n<li>Tweak &#8211; Added context to a set of strings to make translation easier (props @pedro-mendonca) [64586]</li>\n<li>Tweak &#8211; Deprecated various disused functions and classes relating to the Meta Factory [39905]</li>\n<li>Fix &#8211; Cease using GLOB_BRACE for including deprecated files due to limited server support [63172]</li>\n<li>Fix &#8211; Avoid problems that can occur when hooking and unhooking actions (props @Chouby) [63474]</li>\n<li>Fix &#8211; Resolves an issue where we were duplicating a core WordPress hook but with a different set of parameters (props @Chouby) [66455]</li>\n<li>Fix &#8211; Correct the datetime formatting issues within the iCal feed (props @henryk) [65968]</li>\n<li>Deprecated &#8211; <code>Tribe__Events__Main::initOptions()</code> has been deprecated with no replacement</li>\n<li>Deprecated &#8211; <code>Tribe__Events__Main::set_meta_factory_global()</code> has been deprecated in favor of using the <code>Tribe__Events__Meta_Factory</code> class</li>\n<li>Deprecated &#8211; The <code>setup_meta()</code> method in both the <code>Tribe__Events__Template__Single_Event</code> and <code>Tribe__Events__Template_Factory</code> classes has been deprecated</li>\n<li>Deprecated &#8211; The <code>the_title()</code>, <code>event_date()</code>, <code>event_category()</code>, <code>event_tag()</code>, <code>event_website()</code>, <code>event_origin()</code>, <code>organizer_name()</code>, <code>organizer_email()</code>, <code>venue_name()</code>, <code>venue_address()</code>, and <code>venue_map()</code> methods have been deprecated in the <code>Tribe__Events__Advanced_Functions__Register_Meta</code> class</li>\n<li>Deprecated &#8211; The <code>register()</code>, <code>check_exists()</code>, and <code>get_args()</code> methods have been deprecated in the <code>Tribe__Events__Meta_Factory</code> class</li>\n</ul>\n<h4>[4.2.7] 2016-09-15</h4>\n<ul>\n<li>Tweak &#8211; Additional support for plugin extensions</li>\n</ul>\n<h4>[4.2.6] 2016-08-31</h4>\n<ul>\n<li>Add &#8211; tribe_is_event_past() conditional to detect if event end time is past current time (Reported by @Jonathan in our support forums &#8211; thanks Jonathan.)</li>\n</ul>\n<h4>[4.2.5] 2016-08-17</h4>\n<ul>\n<li>Fix &#8211; Fixed inconsistent template filtering logic for single event template [62525]</li>\n<li>Tweak &#8211; Restored preview for published events [64874]</li>\n</ul>\n<h4>[4.2.4] 2016-08-03</h4>\n<ul>\n<li>Tweak &#8211; Changed &#8220;Event Add-Ons&#8221; to load faster [64286]</li>\n<li>Fix &#8211; Fixed default venue setting [64628]</li>\n<li>Fix &#8211; Fixed default venue state and province settings [64629]</li>\n</ul>\n<h4>[4.2.3] 2016-07-20</h4>\n<ul>\n<li>Fix &#8211; In month view, be sure to unhook JSON-LD output when calling unhook function</li>\n<li>Fix &#8211; Incorrect JSON-LD event start and end times (thank you @jjbte for reporting on .org forums)</li>\n<li>Fix &#8211; Show Google Map and Link checkbox so they show when editing an event (Reported originally by Michael of @NailedIT in the .org forum)</li>\n<li>Fix &#8211; Use Community Events Venue Edit Link when on Community Events Forms instead of Admin (also as a result of the report abve from @NailedIT. Thanks again.)</li>\n</ul>\n<h4>[4.2.2] 2016-07-06</h4>\n<ul>\n<li>Fix &#8211; Small CSS Issue on Welcome Page</li>\n<li>Fix &#8211; Month view on mobile device width doesn&#8217;t have links to prev/next months</li>\n<li>Fix &#8211; Reimport of updated CSV removes featured image (Bug #46149)</li>\n<li>Fix &#8211; Fixed the issue that would make multiple organizers details disappear when trying to submit invalid event data using Community</li>\n<li>Fix &#8211; Add a check to avoid being unable to switch view when Filter Bar plugin is active and at least one field is set to auto-complete mode</li>\n<li>Fix &#8211; Only add the events custom post type to the tag archive queries and not custom queries with tags [45635]</li>\n<li>Fix &#8211; When using the filter tribe_events_excerpt_allow_shortcode shortcodes will be maybe be processed in event excerpts in the list views [42289]</li>\n</ul>\n<h4>[4.2.1.1] 2016-06-28</h4>\n<ul>\n<li>Fix &#8211; Ensure translations load as expected with all supported versions of WordPress (thanks to @JacobALund for originally reporting this on .org forums)</li>\n</ul>\n<h4>[4.2.1] 2016-06-22</h4>\n<ul>\n<li>Tweak &#8211; Adjust the caching rules for Month View for faster loading</li>\n<li>Fix &#8211; Replace a bad return type to avoid unnecessary notices in the error log</li>\n<li>Fix &#8211; Add missing styles for correctly hide screen reader text</li>\n<li>Fix &#8211; Fixes <code>tribe_get_event_link()</code> which wasn&#8217;t working when passing second parameter as `true&#8217;</li>\n<li>Tweak &#8211; Reduce the ginormous font size of Month View titles in skeleton styles</li>\n<li>Fix &#8211; Add styling to adjust List View description to full width</li>\n<li>Fix &#8211; Miscellaneous tweaks to improve the Month and Day views</li>\n<li>Fix &#8211; Fix a shorthand array that was causing errors in PHP 5.2 and 5.3 when importing events</li>\n</ul>\n<h4>[4.2] 2016-06-08</h4>\n<ul>\n<li>Feature &#8211; Added Google Maps API key field in the Settings tab to avoid map timeouts and errors on larger sites (Thanks to Yan for reporting this!)</li>\n<li>Feature &#8211; Added support for featured image, multiple organizers, excerpt and more custom fields in the .csv file import function for events (Thank you to Graphic Designer for posting on UserVoice!)</li>\n<li>Feature &#8211; Added support for featured image, description, map details and more custom fields in the .csv file import function for venues</li>\n<li>Feature &#8211; Added support for featured image and description in the .csv file import function for organizers (Thank you to Rebecca for posting on UserVoice!)</li>\n<li>Feature &#8211; Added an oEmbed template for events</li>\n<li>Feature &#8211; Improve performance of a query used to determine if there are free/uncosted events (Thank you @fabianmarz for the pull request!)</li>\n<li>Feature &#8211; Added support for attaching custom post types to events</li>\n<li>Tweak &#8211; Improved filtering of the <code>tribe_event_featured_image()</code> function (Cheers to @fabianmarz!)</li>\n<li>Tweak &#8211; Add an encoding class for the CSV importer to prevent non utf8 characters from preventing imports (Thanks to screenrage for the report!)</li>\n<li>Tweak &#8211; Improved our JSON-LD output to ensure consistency (Props to @garrettjohnson and Lars!)</li>\n<li>Tweak &#8211; Language files in the <code>wp-content/languages/plugins</code> path will be loaded before attempting to load internal language files (Thank you to user aafhhl for bringing this to our attention!)</li>\n<li>Tweak &#8211; Switch to HTTPS for the &#8220;Powered by The Events Calendar&#8221; link (Thank you Cynthia for reporting this!)</li>\n<li>Tweak &#8211; Switch to using HTTPS by default for interactions with Google Maps API</li>\n<li>Tweak &#8211; Improved filterability of calendar excerpts by introducing the new <code>tribe_events_get_the_excerpt</code> filter hook</li>\n<li>Tweak &#8211; Improved filtering of organizer details when importing by CSV (Props to @Geir for bringing this up!)</li>\n<li>Tweak &#8211; Adjustments for single event view in Twenty Fifteen theme</li>\n<li>Tweak &#8211; Improved performance of query used to test for events without any cost</li>\n<li>Tweak &#8211; Added missing semicolon to a laquo (Props to mwender on GitHub for the fix!)</li>\n<li>Tweak &#8211; Improve the &#8220;stickiness&#8221; of CSV import column mappings (Thank you @jamesgol!)</li>\n<li>Tweak &#8211; Consistency of JSON-LD markup improved (Cheers to @garrettjohnson for the help!)</li>\n<li>Tweak &#8211; Avoid notice-level errors when working with WP CLI on a site where The Events Calendar is also active (Thanks to @sun)</li>\n<li>Tweak &#8211; Corrected the spelling of timezone in the CSV Importer&#8217;s event field</li>\n<li>Tweak &#8211; Updated venue and organizer templates to use the new architecture for attaching custom post types to events</li>\n<li>Tweak &#8211; Move plugin CSS to PostCSS</li>\n<li>Tweak &#8211; Category default view is now set to <code>default</code> in place of hardcoding the current default view in the category base rewrite rule [31907]</li>\n<li>Deprecated &#8211; <code>Tribe__Events__PUE__Checker</code>, <code>Tribe__Events__PUE__Plugin_Info</code>, and <code>Tribe__Events__PUE__Utility</code> classes are deprecated and are replaced by <code>Tribe__PUE__Checker</code>, <code>Tribe__PUE__Plugin_Info</code>, and <code>Tribe__PUE__Utility</code> classes</li>\n<li>Fixed &#8211; Changed the use of <code>have_posts()</code> in the maybe iCal links for the main views that could cause an infinite loop</li>\n<li>Accessibility &#8211; Focus styles added for search fields</li>\n<li>Accessibility &#8211; Add ARIA labels for Month/Day/List sub nav</li>\n<li>Accessibility &#8211; Add ARIA label for events footer sub nav heading</li>\n</ul>\n<h4>[4.1.4] 2016-05-19</h4>\n<ul>\n<li>Fix &#8211; Improve accuracy of list view pagination after switching from month view</li>\n<li>Tweak &#8211; Give the multi-organizer form &#8216;sticky&#8217; properties so values persist even if the submission is initially rejected</li>\n<li>Tweak &#8211; Resolved minor CSS issues in the welcome page</li>\n</ul>\n<h4>[4.1.3] 2016-04-28</h4>\n<ul>\n<li>Fix &#8211; Month View single days are now ordered as follows: sticky events, ongoing multi-day events, all day events, then start time. In other words, all events should be ordered as you&#8217;d expect when viewing events in Month View.</li>\n<li>Fix &#8211; Updated the compatibility of CSV importer with WordPress 4.5 due to a change in the <code>post_status</code> filter. This will help prevent some of the errors you may have seen when importing events using a CSV file.</li>\n<li>Tweak &#8211; Added new event names for AJAX success to the List, Month, and Day views to help The Events Calendar&#8217;s compatibility with our other premium plugins.</li>\n</ul>\n<h4>[4.1.2] 2016-04-11</h4>\n<ul>\n<li>Tweak &#8211; Removed an unneeded hook that attempted to add a query argument to event tag links</li>\n<li>Fix &#8211; Resolved an issue where events marked as &#8220;sticky&#8221; would not display as such in Month View</li>\n<li>Fix &#8211; Dashes, hyphens, or whatever you like to call them in the events archive slug no longer breaks the URL</li>\n<li>Fix &#8211; The notice that pops up when a conflicting &#8220;events&#8221; page exists can now be dismissed</li>\n</ul>\n<h4>[4.1.1.1] 2016-04-07</h4>\n<ul>\n<li>Security &#8211; Tightened up security with post type link filtering (props to Nadal Soler for reporting this issue!)</li>\n<li>Security &#8211; Tightened up security around tribe bar submissions (props to Paul Mynarsky for reporting this issue!)</li>\n</ul>\n<h4>[4.1.1] 2016-03-30</h4>\n<ul>\n<li>Fix &#8211; Resolved bug where array notices were output on single event pages when venues were not set (props to zaxiscreative for reporting this issue!)</li>\n<li>Fix &#8211; Resolved issue where the Month View in mobile sizes retained the long day-of-week names when the abbreviations should have been used (props to Lucy for the bug report!)</li>\n<li>Fix &#8211; Fixed bug where a &#8220;0&#8221; was added to the default Venue name when creating a new event</li>\n<li>Fix &#8211; Fixed notice that caused Ajax requests to fail (props to cgrymala on WP.org for reporting this!)</li>\n<li>Fix &#8211; Removed quotes from around TZID-specified timezones in iCal feeds which causes problems with some parsers (props to factory44 for reporting the issue that lead to this fix)</li>\n<li>Fix &#8211; Resolved various capitalization issues with German translations (props to oheinrich in our forums for pointing out this issue!)</li>\n</ul>\n<h4>[4.1.0.1] 2016-03-17</h4>\n<ul>\n<li>Fix &#8211; Resolved multiple issues with the German <code>de_DE</code> language file that caused a number of site-breaking issues</li>\n</ul>\n<h4>[4.1] 2016-03-15</h4>\n<ul>\n<li>Feature &#8211; Added a tribe_get_venue_website_url() function for fetching Venue website URLs (props to fervorcreative in our forums for this request!)</li>\n<li>Performance &#8211; Lazy-load venue and organizer selector data</li>\n<li>Tweak &#8211; Allow iCal filenames to be filtered via a new filter: tribe_events_ical_feed_filename</li>\n<li>Tweak &#8211; Added a hook to allow single day queries in month view to be filtered: tribe_events_month_daily_events_query_args</li>\n<li>Tweak &#8211; Improved the logic around rebuilding known date ranges</li>\n<li>Tweak &#8211; Always show the &#8220;Merge Duplicates&#8221; button for venues and organizers in the Events General Settings page</li>\n<li>Tweak &#8211; Allow the &#8220;same slug&#8221; notice to be dismissed and fix some text in that message</li>\n<li>Tweak &#8211; Ignore alpha/beta/rc suffixes on version numbers when checking template versions</li>\n<li>Tweak &#8211; Add a filter for month view daily events query: tribe_events_month_daily_events_query_args</li>\n<li>Tweak &#8211; Added a more flexible cost range parsing function</li>\n<li>Tweak &#8211; Obfuscate license keys Events &gt; Help &gt; System Information</li>\n<li>Fix &#8211; Fixed a fatal that sometimes occurred when refreshing the import CSV page</li>\n<li>Fix &#8211; Fixed issue where some characters were not escaped appropriately for month and year formats</li>\n<li>Fix &#8211; Added missing tribe-loading@2x.gif</li>\n<li>Fix &#8211; Fixed a warning produced by passing a DateTime() object into start_date or end_date args of tribe_get_events (props to iamhexcoder for the pull request!)</li>\n<li>Fix &#8211; Fixed bug where events in month view were not always sorted in chronological order</li>\n<li>Fix &#8211; Fixed the System Info URL in Events &gt; Help</li>\n<li>Fix &#8211; Resolved issue where the default country would be &#8220;Array&#8221; if no default country is set</li>\n<li>Fix &#8211; Fixed bug where ajaxurl was sometimes undefined</li>\n</ul>\n<h4>[4.0.7] 2016-03-02</h4>\n<ul>\n<li>Fix &#8211; Resolve display issues on templates with Jetpack and a few themes</li>\n<li>Fix &#8211; Mobile breakpoints on month view working with custom breakpoints</li>\n<li>Fix &#8211; Reordering Venue and Organizer metadata no longer breaks titles</li>\n<li>Fix &#8211; Prevented notices from happening when using <code>the_title</code> filter</li>\n<li>Fix &#8211; iCal links now will respect categories on the first page</li>\n<li>Fix &#8211; Prevent third-party bugs with SEO plugins when inserting events programmatically</li>\n<li>Fix &#8211; Organizer information is showing up again correctly</li>\n<li>Fix &#8211; Modified the add-on license validation method to better explain what is happening</li>\n<li>Fix &#8211; Description on mobile views now have the correct class attribute on HTML</li>\n<li>Fix &#8211; Added missing semicolon on the list navigation for &#8220;&amp;laquo&#8221;</li>\n</ul>\n<h4>[4.0.6] 2016-02-17</h4>\n<ul>\n<li>Tweak &#8211; Adjust injection of event data into the_content from priority 10 to 9 for better 3rd-party plugin compatibility</li>\n<li>Tweak &#8211; Change mobile month view selector to load event details below the calendar for better theme compatibility</li>\n<li>Tweak &#8211; Better handling of edge cases on the post_excerpt for List View</li>\n<li>Tweak &#8211; Removal of generic CSS classes like <code>.updated</code> and <code>.published</code></li>\n<li>Fix &#8211; Prevent Notices from appearing when using <code>tribe_get_organizer()</code></li>\n<li>Fix &#8211; Make HTML Single Event Pages valid</li>\n<li>Fix &#8211; Numeric named categories URLs are now fully working</li>\n<li>Fix &#8211; Event Title now Accepts HTML on Tooltips</li>\n<li>Fix &#8211; Licenses Tab now will work with <code>DISALLOW_FILE_MODS</code> (Props to Sun for spotting and fixing this)</li>\n</ul>\n<h4>[4.0.5] 2016-01-15</h4>\n<ul>\n<li>Security &#8211; Security fix with Venues and Organizers (props to grantdayjames for reporting this!)</li>\n</ul>\n<h4>[4.0.4] 2015-12-23</h4>\n<ul>\n<li>Tweak &#8211; Including the latest embedded Event Tickets release for backward compatibility</li>\n</ul>\n<h4>[4.0.3] 2015-12-22</h4>\n<ul>\n<li>Tweak &#8211; Adjust single-event.php template to allow the &#8220;Time&#8221; title and content to be filterable (Props to Sitecrafting for highlighting this issue!)</li>\n<li>Fix &#8211; Resolved issue with an overly escaped Event Category edit URL that prevented editing categories (Thanks to Ian for the first report of this issue!)</li>\n<li>Fix &#8211; Fixed issue where clicking on columns on the Events listed in the Admin Dashboard were ALWAYS sorted by Event start/end date before sorting by the column selected (Cheers to Corrado for bringing this to our attention!)</li>\n</ul>\n<h4>[4.0.2] 2015-12-16</h4>\n<ul>\n<li>Tweak &#8211; Adding better support for non-numeric cost values on events (Props to Mirja for highlighting this!)</li>\n<li>Tweak &#8211; Avoid notice level errors when advanced events list widget settings are saved (Thank you Johan for reporting the issue!)</li>\n<li>Tweak &#8211; Improve messaging in the same-slug warning message (Thanks to Simon for bringing this to our attention!)</li>\n<li>Tweak &#8211; Hook to Event Tickets to inject event dates into ticket emails</li>\n<li>Tweak &#8211; Adding better support for default venues (Props to Karly for noting this!)</li>\n<li>Tweak &#8211; Improve handling of internationalized slugs (Cheers to Oliver for the help!)</li>\n<li>Fix &#8211; Ensure the past events list displays the correct events when accessed via ajax (Thank you Jesse for highlighting this!)</li>\n<li>Fix &#8211; Support ordering by venue/organizer within event queries (Thank you Doug for bringing this to our attention!)</li>\n<li>Fix &#8211; Fixed issue where events with the same date/time would sometimes be excluded from single-event navigation (Cheers to JeremyEnglert for the tip!)</li>\n<li>Fix &#8211; Resolved issue where events set with the explicit cost of 0 were not showing as &#8220;Free&#8221; (Thank you terrizsolo for reporting this!)</li>\n<li>Fix &#8211; Fixed bug where the datepicker in Twenty Sixteen was really ugly</li>\n<li>Fix &#8211; Fixed bug where using Quick Edit on events caused the table columns in the event list to become jumbled on save (Props to A K for the report!)</li>\n<li>Fix &#8211; Resolved bug where category links sometimes included event category 1 (Thank you Anthony for the original report of this problem!)</li>\n<li>Fix &#8211; Fixed a settings page URL (Props to Kristy for the heads up!)</li>\n</ul>\n<h4>[4.0.1] 2015-12-10</h4>\n<ul>\n<li>Tweak &#8211; Add a warning message for major updates</li>\n<li>Tweak &#8211; For SEO reasons, use an h1 for the title rather than an h2 (props to wpexplorer for this fix)</li>\n<li>Tweak &#8211; Target the calendar view grid in JS using a simpler selector</li>\n<li>Fix &#8211; Resolved WP 4.4 related fatal on the Nav Menu page that prevented the admin footer from rendering/enqueuing JS</li>\n<li>Fix &#8211; Resolved bug where visiting /events/upcoming could sometimes result in an infinite redirect loop</li>\n<li>Fix &#8211; Removed <code>wp_trim_excerpt</code> and use only it&#8217;s powers, fixing the excerpt problem</li>\n<li>Fix &#8211; Fixed bug where the mobile calendar view did not display the date for the date being viewed</li>\n<li>Fix &#8211; Fixed bug where the admin toolbar&#8217;s Events &gt; Import &gt; CSV did not link to the CSV importer page</li>\n<li>Fix &#8211; Fixed issue where the events list in the admin dashboard were not ordered in an intuitive manner</li>\n<li>Fix &#8211; Resolved bug where sorting by event category or tag resulted in an error</li>\n<li>Fix &#8211; Fixed bug where full event content text was displayed where excerpts should have been displayed</li>\n<li>Fix &#8211; Resolved issue where events imported via CSV were excluded from single event navigation</li>\n<li>Fix &#8211; Fixed bug where /events/list would sometimes 404 on a new install</li>\n<li>Fix &#8211; Resolved bug where multiday all-day events displayed the end date as one day later than it should be when the End of Day Cut-off was set to something other than 12am</li>\n<li>Fix &#8211; Timezone handling fixed within generated iCal feeds</li>\n</ul>\n<h4>[4.0] 2015-12-02</h4>\n<ul>\n<li>Security &#8211; A TON of escaping was added to our codebase thanks to the efforts of the always-helpful Andy Fragen (@afragen)</li>\n<li>Feature &#8211; Moved the Ticket framework code into its own plugin (event-tickets)</li>\n<li>Feature &#8211; The event cost now supports more international formats with the addition of the tribe_events_cost_separators filter (Thank you remokrol for bringing this to our attention!)</li>\n<li>Feature &#8211; Added support for the twentysixteen theme</li>\n<li>Feature &#8211; Created a new Add-Ons tab in Settings so that TEC add-ons can have a consolidated settings tab</li>\n<li>Feature &#8211; Improve the date formats UI by providing example output for each selected format</li>\n<li>Tweak &#8211; Restructured TEC&#8217;s core settings code for reusability with other standalone plugins like Event Tickets</li>\n<li>Tweak &#8211; Deprecate old JS event names in favor of a new JS event naming standard. Example: deprecated tribe_ev_runAjax in favor of run-ajax.tribe</li>\n<li>Tweak &#8211; Consolidated import pages for TEC and add-ons</li>\n<li>Tweak &#8211; When suggesting a UTF-8 compatibility CSV formatting tool, point to one that still exists</li>\n<li>Tweak &#8211; Added the ability to filter attendees CSV items via tribe_events_tickets_attendees_csv_items (Props to @bostondv on GitHub for this patch!)</li>\n<li>Tweak &#8211; Updated all excerpt output to use tribe_events_get_the_excerpt() to ensure a consistent display of excerpt content (Cheers to Joseph to pointing this out!)</li>\n<li>Tweak &#8211; Add support for wp_get_document_title in response to the WordPress 4.4 deprecation of wp_title</li>\n<li>Tweak &#8211; Check post creation permissions before letting users create venues and organizers from the event meta box</li>\n<li>Tweak &#8211; Only display data separators between fields that have data when rendering organizers (Thank you Bud for highlighting this issue!)</li>\n<li>Tweak &#8211; When a user cannot create organizers, prevent the auto-selection of organizers when editing an event</li>\n<li>Tweak &#8211; Remove microformat CSS classes from templates and replace with namespaced content-relevant CSS classes</li>\n<li>Tweak &#8211; Changed the &#8220;updated&#8221; CSS class to &#8220;tribe-updated&#8221; so that it is properly namespaced (Thank you vijayrajesh!)</li>\n<li>Tweak &#8211; The Plugin Update Checker will now auto-save valid plugin keys (Thanks to Denon for originally bringing this up!)</li>\n<li>Tweak &#8211; Cleaned up the output of JSON-LD data. Filterable via the new tribe_google_data_markup_json filter</li>\n<li>Tweak &#8211; Drop the use of the generic CSS class &#8220;placeholder&#8221; in favor of &#8220;tribe-event-placeholder&#8221; (Thanks to Marc on the forums!)</li>\n<li>Tweak &#8211; Adjusted the CSS padding on Admin Menu items for Events</li>\n<li>Tweak &#8211; Various codesniffer fixes</li>\n<li>Tweak &#8211; tribe_get_venue_link() no longer echoes if you ask it to return an <a> element</a></li>\n<li>Tweak &#8211; Error messages for empty Venue names</li>\n<li>Tweak &#8211; Improve our responsiveness for the widget mini calendar, allowing smaller sidebars.</li>\n<li>Tweak &#8211; No longer retrieve empty costs when fetching all costs for all events</li>\n<li>Tweak &#8211; Change the priority of bootstrapping the-events-calendar to ensure it occurs before any of the TEC addons in the event some addons are upgraded to v4.0 later than TEC</li>\n<li>Tweak &#8211; Adjust the logic used for adding a noindex/follow tag to event views</li>\n<li>Tweak &#8211; No longer hiding default address fields when default venues are selected when Pro is active</li>\n<li>Fix &#8211; Resolved issue where the iCal feed did not provide an appropriately formatted timezone in some cases (Cheers to Matt for the report!)</li>\n<li>Fix &#8211; Added support for translating some previously untranslatable strings (Props to tititou36, media325, and Stef!)</li>\n<li>Fix &#8211; Prevented duplicate CSS IDs on the mini calendars (Cheers to Corrado for the help!)</li>\n<li>Fix &#8211; Fixed bug causing tribe_get_single_ical_link() and tribe_get_ical_link() to use the same URL when it shouldn&#8217;t (Props to Ben Byrne @drywall on Twitter for the heads up!)</li>\n<li>Fix &#8211; Fixed issue where the &#8220;Add another organizer&#8221; text wasn&#8217;t using the correct singular label (Thank you MIKE for the report!)</li>\n<li>Fix &#8211; Various CSS fixes for twenty(ten-fifteen)</li>\n<li>Fix &#8211; Improved our handling of <code>get_current_screen()</code> across the plugin, avoiding notices and warnings (Thank you Mike for the help!)</li>\n<li>Fix &#8211; Fixed bug where accessing object properties on a non object errored out when saving event meta (props to @dalethedeveloper on GitHub for this fix!)</li>\n<li>Fix &#8211; Fixed bug where organizer ID meta attached sometimes included a blank record. That blank record is no longer returned in tribe_get_organizer_ids()</li>\n<li>Fix &#8211; Fixed error message returned when tabbing away from a blank event name meta box so that it properly indicates that an event name is required (Our thanks to @tapan29bd for this fix!)</li>\n<li>Fix &#8211; Resolved issue where Timezone event start/end date property name strings were malformed which guaranteed a a call to get_post_meta for Timezone date strings</li>\n<li>Fix &#8211; Fixed CSS issue where the month view calendar could sometimes extend beyond the edge of the page when Skeleton Styles were enabled</li>\n<li>Fix &#8211; Fixed a problem where iCal data was generated with incorrect dates in the case of some all days events (thanks to Matt for highlighting this)</li>\n<li>Fix &#8211; Resolved a problem causing the previous month view to appear when it should not</li>\n<li>Fix &#8211; Fixed issue in mobile month view where date was missing from heading</li>\n<li>Fix &#8211; Resolved issue that caused /events/ to 404 if it was visited on a new install before hitting &#8220;Save&#8221; on the Events &gt; Settings &gt; Display page</li>\n<li>Deprecated &#8211; The Tribe__Events__Main::defaultValueReplaceEnabled() method is being deprecated in favor of tribe_get_option(&#8216;defaultValueReplace&#8217;). Schedules for removal in v4.5</li>\n<li>Deprecated &#8211; The tribe_event_link() has been deprecated in favor of tribe_get_event_link(). Scheduled for removal in 5.0</li>\n<li>Deprecated &#8211; The third parameter of tribe_get_organizer_link() (the $echo parameter) has been deprecated and is scheduled for removal in 5.0</li>\n<li>Deprecated &#8211; Tribe__Events__Abstract_Deactivation in favor of Tribe__Abstract_Deactivation</li>\n<li>Deprecated &#8211; Tribe__Events__Admin__Helpers in favor of Tribe__Admin__Helpers</li>\n<li>Deprecated &#8211; Tribe__Events__App_Shop in favor of Tribe__App_Shop</li>\n<li>Deprecated &#8211; Tribe__Events__Autoloader in favor of Tribe__Autoloader</li>\n<li>Deprecated &#8211; Tribe__Events__Cache in favor of Tribe__Cache</li>\n<li>Deprecated &#8211; Tribe__Events__Cache_Listener in favor of Tribe__Cache_Listener</li>\n<li>Deprecated &#8211; Tribe__Events__Changelog_Reader in favor of Tribe__Changelog_Reader</li>\n<li>Deprecated &#8211; Tribe__Events__Credits in favor of Tribe__Credits</li>\n<li>Deprecated &#8211; Tribe__Events__Date_Utils in favor of Tribe__Date_Utils</li>\n<li>Deprecated &#8211; Tribe__Events__Field in favor of Tribe__Field</li>\n<li>Deprecated &#8211; Tribe__Events__Settings in favor of Tribe__Settings</li>\n<li>Deprecated &#8211; Tribe__Events__Settings_Tab in favor of Tribe__Settings_Tab</li>\n<li>Deprecated &#8211; Tribe__Events__Support in favor of Tribe__Support</li>\n<li>Deprecated &#8211; Tribe__Events__Template_Part_Cache in favor of Tribe__Template_Part_Cache</li>\n<li>Deprecated &#8211; Tribe__Events__Tickets__Attendees_Table in favor of Tribe__Tickets__Attendees_Table in the event-tickets plugin</li>\n<li>Deprecated &#8211; Tribe__Events__Tickets__Metabox in favor of Tribe__Tickets__Metabox in the event-tickets plugin</li>\n<li>Deprecated &#8211; Tribe__Events__Tickets__Ticket_Object in favor of Tribe__Tickets__Ticket_Object in the event-tickets plugin</li>\n<li>Deprecated &#8211; Tribe__Events__Tickets__Tickets in favor of Tribe__Tickets__Tickets in the event-tickets plugin</li>\n<li>Deprecated &#8211; Tribe__Events__Tickets__Tickets_Pro in favor of Tribe__Tickets__Tickets_Handler in the event-tickets plugin</li>\n<li>Deprecated &#8211; Tribe__Events__Validate in favor of Tribe__Validate</li>\n<li>Deprecated &#8211; Tribe__Events__View_Helpers in favor of Tribe__View_Helpers</li>\n<li>Deprecated &#8211; Tribe__Events__Main::OPTIONNAME in favor of Tribe__Main::OPTIONNAME</li>\n<li>Deprecated &#8211; Tribe__Events__Main::OPTIONNAMENETWORK in favor of Tribe__Main::OPTIONNAMENETWORK</li>\n<li>Deprecated &#8211; Tribe__Events__Main::addHelpAdminMenuItem() in favor of Tribe__Settings_Manager::add_help_admin_menu_item()</li>\n<li>Deprecated &#8211; Tribe__Events__Main::addNetworkOptionsPage() in favor of Tribe__Settings_Manager::add_network_options_page()</li>\n<li>Deprecated &#8211; Tribe__Events__Main::array_insert_after_key() in favor of Tribe__Main::array_insert_after_key()</li>\n<li>Deprecated &#8211; Tribe__Events__Main::array_insert_before_key() in favor of Tribe__Main::array_insert_before_key()</li>\n<li>Deprecated &#8211; Tribe__Events__Main::debug() in favor of Tribe__Debug::debug()</li>\n<li>Deprecated &#8211; Tribe__Events__Main::defaultValueReplaceEnabled() in favor of tribe_get_option( &#8216;defaultValueReplace&#8217; )</li>\n<li>Deprecated &#8211; Tribe__Events__Main::doHelpTab() in favor of Tribe__Settings_Manager::do_help_tab()</li>\n<li>Deprecated &#8211; Tribe__Events__Main::doNetworkSettingTab() in favor of Tribe__Settings_Manager::do_network_settings_tab()</li>\n<li>Deprecated &#8211; Tribe__Events__Main::doSettingTabs() in favor of Tribe__Settings_Manager::do_setting_tabs()</li>\n<li>Deprecated &#8211; Tribe__Events__Main::do_licenses_tab() in favor of Tribe__Settings_Manager::do_licenses_tab()</li>\n<li>Deprecated &#8211; Tribe__Events__Main::getNetworkOption() in favor of Tribe__Settings_Manager::get_network_option()</li>\n<li>Deprecated &#8211; Tribe__Events__Main::getNetworkOptions() in favor of Tribe__Settings_Manager::get_network_options()</li>\n<li>Deprecated &#8211; Tribe__Events__Main::getNotices() in favor of Tribe__Notices::get()</li>\n<li>Deprecated &#8211; Tribe__Events__Main::getOption() in favor of Tribe__Settings_Manager::get_option()</li>\n<li>Deprecated &#8211; Tribe__Events__Main::getOptions() in favor of Tribe__Settings_Manager::get_options()</li>\n<li>Deprecated &#8211; Tribe__Events__Main::have_addons() in favor of Tribe__Settings_Manager::have_addons()</li>\n<li>Deprecated &#8211; Tribe__Events__Main::isNotice() in favor of Tribe__Notices::is_notice()</li>\n<li>Deprecated &#8211; Tribe__Events__Main::pluginDir in favor of Tribe__Events__Main::plugin_dir</li>\n<li>Deprecated &#8211; Tribe__Events__Main::pluginName in favor of Tribe__Events__Main::plugin_name</li>\n<li>Deprecated &#8211; Tribe__Events__Main::pluginPath in favor of Tribe__Events__Main::plugin_path</li>\n<li>Deprecated &#8211; Tribe__Events__Main::pluginUrl in favor of Tribe__Events__Main::plugin_url</li>\n<li>Deprecated &#8211; Tribe__Events__Main::removeNotice() in favor of Tribe__Notices::remove_notice()</li>\n<li>Deprecated &#8211; Tribe__Events__Main::renderDebug() in favor of Tribe__Debug::render()</li>\n<li>Deprecated &#8211; Tribe__Events__Main::saveAllTabsHidden() in favor of Tribe__Settings_Manager::save_all_tabs_hidden()</li>\n<li>Deprecated &#8211; Tribe__Events__Main::setNetworkOptions() in favor of Tribe__Settings_Manager::set_network_options()</li>\n<li>Deprecated &#8211; Tribe__Events__Main::setNotice() in favor of Tribe__Notices::set_notice()</li>\n<li>Deprecated &#8211; Tribe__Events__Main::truncate() in favor of tribe_events_get_the_excerpt()</li>\n<li>Deprecated &#8211; tribe_event_beginning_of_day() in favor of tribe_beginning_of_day()</li>\n<li>Deprecated &#8211; tribe_event_end_of_day() in favor of tribe_end_of_day()</li>\n<li>Deprecated &#8211; tribe_event_format_date() in favor of tribe_format_date()</li>\n<li>Deprecated &#8211; tribe_events_the_notices() in favor of tribe_the_notices()</li>\n</ul>\n<h4>3.x and previous</h4>\n<p>For release notes from the 3.x and older lifecycles, see our <a href=\"https://theeventscalendar.com/category/products/release-notes/\" rel=\"nofollow\">full historical release notes</a>.</p>\n\";s:11:\"screenshots\";s:2685:\"<ol><li><a href=\"https://ps.w.org/the-events-calendar/assets/screenshot-1.png?rev=1679210\"><img src=\"https://ps.w.org/the-events-calendar/assets/screenshot-1.png?rev=1679210\" alt=\"Month View with hover\"></a><p>Month View with hover</p></li><li><a href=\"https://ps.w.org/the-events-calendar/assets/screenshot-2.png?rev=1679210\"><img src=\"https://ps.w.org/the-events-calendar/assets/screenshot-2.png?rev=1679210\" alt=\"Month View\"></a><p>Month View</p></li><li><a href=\"https://ps.w.org/the-events-calendar/assets/screenshot-3.png?rev=1679210\"><img src=\"https://ps.w.org/the-events-calendar/assets/screenshot-3.png?rev=1679210\" alt=\"List View\"></a><p>List View</p></li><li><a href=\"https://ps.w.org/the-events-calendar/assets/screenshot-4.png?rev=1679210\"><img src=\"https://ps.w.org/the-events-calendar/assets/screenshot-4.png?rev=1679210\" alt=\"Day View\"></a><p>Day View</p></li><li><a href=\"https://ps.w.org/the-events-calendar/assets/screenshot-5.png?rev=1679210\"><img src=\"https://ps.w.org/the-events-calendar/assets/screenshot-5.png?rev=1679210\" alt=\"Single event\"></a><p>Single event</p></li><li><a href=\"https://ps.w.org/the-events-calendar/assets/screenshot-6.png?rev=1679210\"><img src=\"https://ps.w.org/the-events-calendar/assets/screenshot-6.png?rev=1679210\" alt=\"Event Editor\"></a><p>Event Editor</p></li><li><a href=\"https://ps.w.org/the-events-calendar/assets/screenshot-7.png?rev=1679210\"><img src=\"https://ps.w.org/the-events-calendar/assets/screenshot-7.png?rev=1679210\" alt=\"Events admin listing\"></a><p>Events admin listing</p></li><li><a href=\"https://ps.w.org/the-events-calendar/assets/screenshot-8.png?rev=1679210\"><img src=\"https://ps.w.org/the-events-calendar/assets/screenshot-8.png?rev=1679210\" alt=\"General Settings\"></a><p>General Settings</p></li><li><a href=\"https://ps.w.org/the-events-calendar/assets/screenshot-9.png?rev=1679210\"><img src=\"https://ps.w.org/the-events-calendar/assets/screenshot-9.png?rev=1679210\" alt=\"Display Settings\"></a><p>Display Settings</p></li><li><a href=\"https://ps.w.org/the-events-calendar/assets/screenshot-10.png?rev=1679210\"><img src=\"https://ps.w.org/the-events-calendar/assets/screenshot-10.png?rev=1679210\" alt=\"Events List Widget\"></a><p>Events List Widget</p></li><li><a href=\"https://ps.w.org/the-events-calendar/assets/screenshot-11.png?rev=1679210\"><img src=\"https://ps.w.org/the-events-calendar/assets/screenshot-11.png?rev=1679210\" alt=\"Mobile Month View\"></a><p>Mobile Month View</p></li><li><a href=\"https://ps.w.org/the-events-calendar/assets/screenshot-12.png?rev=1679210\"><img src=\"https://ps.w.org/the-events-calendar/assets/screenshot-12.png?rev=1679210\" alt=\"CSV Importer\"></a><p>CSV Importer</p></li></ol>\";s:7:\"reviews\";s:14955:\"<div class=\"review\">\n	<div class=\"review-head\">\n		<div class=\"reviewer-info\">\n			<div class=\"review-title-section\">\n				<h4 class=\"review-title\">Good, but no RSVP ability</h4>\n				<div class=\"star-rating\">\n				<div class=\"wporg-ratings\" aria-label=\"3 out of 5 stars\" data-title-template=\"%s out of 5 stars\" data-rating=\"3\" style=\"color:#ffb900;\"><span class=\"star dashicons dashicons-star-filled\"></span><span class=\"star dashicons dashicons-star-filled\"></span><span class=\"star dashicons dashicons-star-filled\"></span><span class=\"star dashicons dashicons-star-empty\"></span><span class=\"star dashicons dashicons-star-empty\"></span></div>				</div>\n			</div>\n			<p class=\"reviewer\">\n				By <a href=\"https://profiles.wordpress.org/livingcminca\"><img alt=\'\' src=\'https://secure.gravatar.com/avatar/7da803dff35caeb532e5f3d401f45a5a?s=16&#038;d=monsterid&#038;r=g\' srcset=\'https://secure.gravatar.com/avatar/7da803dff35caeb532e5f3d401f45a5a?s=32&#038;d=monsterid&#038;r=g 2x\' class=\'avatar avatar-16 photo\' height=\'16\' width=\'16\' /></a><a href=\"https://profiles.wordpress.org/livingcminca\" class=\"reviewer-name\">Naomi <small>(livingcminca)</small></a> on <span class=\"review-date\">November 13, 2019</span>			</p>\n		</div>\n	</div>\n	<div class=\"review-body\">Great plugin to just create and list events, unfortunately, there\'s no RSVP functionality on the unpaid version of this plugin as far as I can tell so it lacks some options I would have liked. \n </div>\n</div>\n<div class=\"review\">\n	<div class=\"review-head\">\n		<div class=\"reviewer-info\">\n			<div class=\"review-title-section\">\n				<h4 class=\"review-title\">Excellent</h4>\n				<div class=\"star-rating\">\n				<div class=\"wporg-ratings\" aria-label=\"5 out of 5 stars\" data-title-template=\"%s out of 5 stars\" data-rating=\"5\" style=\"color:#ffb900;\"><span class=\"star dashicons dashicons-star-filled\"></span><span class=\"star dashicons dashicons-star-filled\"></span><span class=\"star dashicons dashicons-star-filled\"></span><span class=\"star dashicons dashicons-star-filled\"></span><span class=\"star dashicons dashicons-star-filled\"></span></div>				</div>\n			</div>\n			<p class=\"reviewer\">\n				By <a href=\"https://profiles.wordpress.org/juliettdou\"><img alt=\'\' src=\'https://secure.gravatar.com/avatar/cb2f394b42089f2bddec4a26f62525f2?s=16&#038;d=monsterid&#038;r=g\' srcset=\'https://secure.gravatar.com/avatar/cb2f394b42089f2bddec4a26f62525f2?s=32&#038;d=monsterid&#038;r=g 2x\' class=\'avatar avatar-16 photo\' height=\'16\' width=\'16\' /></a><a href=\"https://profiles.wordpress.org/juliettdou\" class=\"reviewer-name\">Juliette Douffet <small>(juliettdou)</small></a> on <span class=\"review-date\">November 10, 2019</span>			</p>\n		</div>\n	</div>\n	<div class=\"review-body\">Best in the category. Has a lot of community behind and it\'s easy to find or extend its features.</div>\n</div>\n<div class=\"review\">\n	<div class=\"review-head\">\n		<div class=\"reviewer-info\">\n			<div class=\"review-title-section\">\n				<h4 class=\"review-title\">Simple enough even in Free version</h4>\n				<div class=\"star-rating\">\n				<div class=\"wporg-ratings\" aria-label=\"4 out of 5 stars\" data-title-template=\"%s out of 5 stars\" data-rating=\"4\" style=\"color:#ffb900;\"><span class=\"star dashicons dashicons-star-filled\"></span><span class=\"star dashicons dashicons-star-filled\"></span><span class=\"star dashicons dashicons-star-filled\"></span><span class=\"star dashicons dashicons-star-filled\"></span><span class=\"star dashicons dashicons-star-empty\"></span></div>				</div>\n			</div>\n			<p class=\"reviewer\">\n				By <a href=\"https://profiles.wordpress.org/renaudbod\"><img alt=\'\' src=\'https://secure.gravatar.com/avatar/4e7836cd111dc85af93d3b6e037f69f2?s=16&#038;d=monsterid&#038;r=g\' srcset=\'https://secure.gravatar.com/avatar/4e7836cd111dc85af93d3b6e037f69f2?s=32&#038;d=monsterid&#038;r=g 2x\' class=\'avatar avatar-16 photo\' height=\'16\' width=\'16\' /></a><a href=\"https://profiles.wordpress.org/renaudbod\" class=\"reviewer-name\">renaudbod</a> on <span class=\"review-date\">November 5, 2019</span>			</p>\n		</div>\n	</div>\n	<div class=\"review-body\">Simple but powerfull\nAnyway for many advanced things we need to pay, but it\'s worth it</div>\n</div>\n<div class=\"review\">\n	<div class=\"review-head\">\n		<div class=\"reviewer-info\">\n			<div class=\"review-title-section\">\n				<h4 class=\"review-title\">Worst WP practices hinders further development</h4>\n				<div class=\"star-rating\">\n				<div class=\"wporg-ratings\" aria-label=\"1 out of 5 stars\" data-title-template=\"%s out of 5 stars\" data-rating=\"1\" style=\"color:#ffb900;\"><span class=\"star dashicons dashicons-star-filled\"></span><span class=\"star dashicons dashicons-star-empty\"></span><span class=\"star dashicons dashicons-star-empty\"></span><span class=\"star dashicons dashicons-star-empty\"></span><span class=\"star dashicons dashicons-star-empty\"></span></div>				</div>\n			</div>\n			<p class=\"reviewer\">\n				By <a href=\"https://profiles.wordpress.org/sirlouen\"><img alt=\'\' src=\'https://secure.gravatar.com/avatar/693def86b17c37187d09d05933fd050e?s=16&#038;d=monsterid&#038;r=g\' srcset=\'https://secure.gravatar.com/avatar/693def86b17c37187d09d05933fd050e?s=32&#038;d=monsterid&#038;r=g 2x\' class=\'avatar avatar-16 photo\' height=\'16\' width=\'16\' /></a><a href=\"https://profiles.wordpress.org/sirlouen\" class=\"reviewer-name\">SirLouen</a> on <span class=\"review-date\">October 31, 2019</span>			</p>\n		</div>\n	</div>\n	<div class=\"review-body\">This plugin implements the most awful Wordpress practices and this highly hinders further development using their custom CPT to interact with other plugins.\n\nThey have some hooks that partially solve this issue, but there is no month that I have to look for a workaround because they are never enough.\n\nI extremely regret that I did not create my own CPT for events it would have saved me hours of headaches. \n\nAlso the \"free plugin\" support is dreadful. They just answer those possible questions that could mean a conversion to their paid plugin.</div>\n</div>\n<div class=\"review\">\n	<div class=\"review-head\">\n		<div class=\"reviewer-info\">\n			<div class=\"review-title-section\">\n				<h4 class=\"review-title\">Great plugin!</h4>\n				<div class=\"star-rating\">\n				<div class=\"wporg-ratings\" aria-label=\"5 out of 5 stars\" data-title-template=\"%s out of 5 stars\" data-rating=\"5\" style=\"color:#ffb900;\"><span class=\"star dashicons dashicons-star-filled\"></span><span class=\"star dashicons dashicons-star-filled\"></span><span class=\"star dashicons dashicons-star-filled\"></span><span class=\"star dashicons dashicons-star-filled\"></span><span class=\"star dashicons dashicons-star-filled\"></span></div>				</div>\n			</div>\n			<p class=\"reviewer\">\n				By <a href=\"https://profiles.wordpress.org/pedrodinis\"><img alt=\'\' src=\'https://secure.gravatar.com/avatar/660e9443e8690764699f1997a9187508?s=16&#038;d=monsterid&#038;r=g\' srcset=\'https://secure.gravatar.com/avatar/660e9443e8690764699f1997a9187508?s=32&#038;d=monsterid&#038;r=g 2x\' class=\'avatar avatar-16 photo\' height=\'16\' width=\'16\' /></a><a href=\"https://profiles.wordpress.org/pedrodinis\" class=\"reviewer-name\">pedrodinis</a> on <span class=\"review-date\">October 12, 2019</span>			</p>\n		</div>\n	</div>\n	<div class=\"review-body\">Very helpful.  </div>\n</div>\n<div class=\"review\">\n	<div class=\"review-head\">\n		<div class=\"reviewer-info\">\n			<div class=\"review-title-section\">\n				<h4 class=\"review-title\">5 stars for it...</h4>\n				<div class=\"star-rating\">\n				<div class=\"wporg-ratings\" aria-label=\"5 out of 5 stars\" data-title-template=\"%s out of 5 stars\" data-rating=\"5\" style=\"color:#ffb900;\"><span class=\"star dashicons dashicons-star-filled\"></span><span class=\"star dashicons dashicons-star-filled\"></span><span class=\"star dashicons dashicons-star-filled\"></span><span class=\"star dashicons dashicons-star-filled\"></span><span class=\"star dashicons dashicons-star-filled\"></span></div>				</div>\n			</div>\n			<p class=\"reviewer\">\n				By <a href=\"https://profiles.wordpress.org/srgrafik\"><img alt=\'\' src=\'https://secure.gravatar.com/avatar/5ea4b3513d8401dc364fac73d0d9b64d?s=16&#038;d=monsterid&#038;r=g\' srcset=\'https://secure.gravatar.com/avatar/5ea4b3513d8401dc364fac73d0d9b64d?s=32&#038;d=monsterid&#038;r=g 2x\' class=\'avatar avatar-16 photo\' height=\'16\' width=\'16\' /></a><a href=\"https://profiles.wordpress.org/srgrafik\" class=\"reviewer-name\">srgrafik</a> on <span class=\"review-date\">October 11, 2019</span>			</p>\n		</div>\n	</div>\n	<div class=\"review-body\">nice and easy!!</div>\n</div>\n<div class=\"review\">\n	<div class=\"review-head\">\n		<div class=\"reviewer-info\">\n			<div class=\"review-title-section\">\n				<h4 class=\"review-title\">very good plug-in</h4>\n				<div class=\"star-rating\">\n				<div class=\"wporg-ratings\" aria-label=\"5 out of 5 stars\" data-title-template=\"%s out of 5 stars\" data-rating=\"5\" style=\"color:#ffb900;\"><span class=\"star dashicons dashicons-star-filled\"></span><span class=\"star dashicons dashicons-star-filled\"></span><span class=\"star dashicons dashicons-star-filled\"></span><span class=\"star dashicons dashicons-star-filled\"></span><span class=\"star dashicons dashicons-star-filled\"></span></div>				</div>\n			</div>\n			<p class=\"reviewer\">\n				By <a href=\"https://profiles.wordpress.org/aaseramsrud\"><img alt=\'\' src=\'https://secure.gravatar.com/avatar/03ad4573247ed40d7f33331129fe623b?s=16&#038;d=monsterid&#038;r=g\' srcset=\'https://secure.gravatar.com/avatar/03ad4573247ed40d7f33331129fe623b?s=32&#038;d=monsterid&#038;r=g 2x\' class=\'avatar avatar-16 photo\' height=\'16\' width=\'16\' /></a><a href=\"https://profiles.wordpress.org/aaseramsrud\" class=\"reviewer-name\">aaseramsrud</a> on <span class=\"review-date\">October 2, 2019</span>			</p>\n		</div>\n	</div>\n	<div class=\"review-body\">very good!</div>\n</div>\n<div class=\"review\">\n	<div class=\"review-head\">\n		<div class=\"reviewer-info\">\n			<div class=\"review-title-section\">\n				<h4 class=\"review-title\">No shortcode</h4>\n				<div class=\"star-rating\">\n				<div class=\"wporg-ratings\" aria-label=\"1 out of 5 stars\" data-title-template=\"%s out of 5 stars\" data-rating=\"1\" style=\"color:#ffb900;\"><span class=\"star dashicons dashicons-star-filled\"></span><span class=\"star dashicons dashicons-star-empty\"></span><span class=\"star dashicons dashicons-star-empty\"></span><span class=\"star dashicons dashicons-star-empty\"></span><span class=\"star dashicons dashicons-star-empty\"></span></div>				</div>\n			</div>\n			<p class=\"reviewer\">\n				By <a href=\"https://profiles.wordpress.org/ayazahmed\"><img alt=\'\' src=\'https://secure.gravatar.com/avatar/e1d6207d62b89c8dec3d6ca3d4308bd2?s=16&#038;d=monsterid&#038;r=g\' srcset=\'https://secure.gravatar.com/avatar/e1d6207d62b89c8dec3d6ca3d4308bd2?s=32&#038;d=monsterid&#038;r=g 2x\' class=\'avatar avatar-16 photo\' height=\'16\' width=\'16\' /></a><a href=\"https://profiles.wordpress.org/ayazahmed\" class=\"reviewer-name\">Ayaz Ahmed <small>(ayazahmed)</small></a> on <span class=\"review-date\">September 23, 2019</span>			</p>\n		</div>\n	</div>\n	<div class=\"review-body\">Free version should not be that limited, there is no shortcode to display calendar in any page</div>\n</div>\n<div class=\"review\">\n	<div class=\"review-head\">\n		<div class=\"reviewer-info\">\n			<div class=\"review-title-section\">\n				<h4 class=\"review-title\">Excellent plugin nothing else even close for events.</h4>\n				<div class=\"star-rating\">\n				<div class=\"wporg-ratings\" aria-label=\"5 out of 5 stars\" data-title-template=\"%s out of 5 stars\" data-rating=\"5\" style=\"color:#ffb900;\"><span class=\"star dashicons dashicons-star-filled\"></span><span class=\"star dashicons dashicons-star-filled\"></span><span class=\"star dashicons dashicons-star-filled\"></span><span class=\"star dashicons dashicons-star-filled\"></span><span class=\"star dashicons dashicons-star-filled\"></span></div>				</div>\n			</div>\n			<p class=\"reviewer\">\n				By <a href=\"https://profiles.wordpress.org/zc-web\"><img alt=\'\' src=\'https://secure.gravatar.com/avatar/52f7648d5c0962078633f69777874612?s=16&#038;d=monsterid&#038;r=g\' srcset=\'https://secure.gravatar.com/avatar/52f7648d5c0962078633f69777874612?s=32&#038;d=monsterid&#038;r=g 2x\' class=\'avatar avatar-16 photo\' height=\'16\' width=\'16\' /></a><a href=\"https://profiles.wordpress.org/zc-web\" class=\"reviewer-name\">ZC Web</a> on <span class=\"review-date\">September 11, 2019</span>			</p>\n		</div>\n	</div>\n	<div class=\"review-body\">This is a great plugin. It is superior as Free and superior as Premium compared to others on the market. Things look really good out of the box. And although you don\'t need to tweak things too much you certainly can with CSS. And if you wanted to make your own thing using the functions it is super easy. You could do amazing things with a few Google searches. There are some extremely powerful premium addons for it which can enable things you could only do with this plugin like Event notifications. It is not possible with other plugins I\'ve tried and failed. Also there are lots of random extensions that can do little addons like I recently changed the URL structure to \'courses\' from \'events\'. I was very pleased with their support which was fast and helpful. When I need events I will 100% use this one and I will be redoing the event portion of a theme I built to use this. I have to write a good review cause these guys deserve it - the least I could do.</div>\n</div>\n<div class=\"review\">\n	<div class=\"review-head\">\n		<div class=\"reviewer-info\">\n			<div class=\"review-title-section\">\n				<h4 class=\"review-title\">Super disappointing</h4>\n				<div class=\"star-rating\">\n				<div class=\"wporg-ratings\" aria-label=\"2 out of 5 stars\" data-title-template=\"%s out of 5 stars\" data-rating=\"2\" style=\"color:#ffb900;\"><span class=\"star dashicons dashicons-star-filled\"></span><span class=\"star dashicons dashicons-star-filled\"></span><span class=\"star dashicons dashicons-star-empty\"></span><span class=\"star dashicons dashicons-star-empty\"></span><span class=\"star dashicons dashicons-star-empty\"></span></div>				</div>\n			</div>\n			<p class=\"reviewer\">\n				By <a href=\"https://profiles.wordpress.org/socialdzine\"><img alt=\'\' src=\'https://secure.gravatar.com/avatar/4b5b2de66914f78ffdef29321490e65c?s=16&#038;d=monsterid&#038;r=g\' srcset=\'https://secure.gravatar.com/avatar/4b5b2de66914f78ffdef29321490e65c?s=32&#038;d=monsterid&#038;r=g 2x\' class=\'avatar avatar-16 photo\' height=\'16\' width=\'16\' /></a><a href=\"https://profiles.wordpress.org/socialdzine\" class=\"reviewer-name\">socialdzine</a> on <span class=\"review-date\">September 9, 2019</span>			</p>\n		</div>\n	</div>\n	<div class=\"review-body\">It\'s not very customizable. I have a full on black background on my event description page and I don\'t have a black background anywhere, in fact, I had black font.  \nEasy to read!!!!\nI can\'t stand this event plugin. I\'ve been frustrated and felt like my hands were tied at every turn.\nIt\'s probably excellent if you upgrade to pro but I\'m just starting this project and I don\'t have a budget so this plugin is definitely not for someone who isn\'t ready to pay for an event plugin.</div>\n</div>\n\";}s:13:\"download_link\";s:69:\"https://downloads.wordpress.org/plugin/the-events-calendar.4.9.11.zip\";s:11:\"screenshots\";a:12:{i:1;a:2:{s:3:\"src\";s:72:\"https://ps.w.org/the-events-calendar/assets/screenshot-1.png?rev=1679210\";s:7:\"caption\";s:21:\"Month View with hover\";}i:2;a:2:{s:3:\"src\";s:72:\"https://ps.w.org/the-events-calendar/assets/screenshot-2.png?rev=1679210\";s:7:\"caption\";s:10:\"Month View\";}i:3;a:2:{s:3:\"src\";s:72:\"https://ps.w.org/the-events-calendar/assets/screenshot-3.png?rev=1679210\";s:7:\"caption\";s:9:\"List View\";}i:4;a:2:{s:3:\"src\";s:72:\"https://ps.w.org/the-events-calendar/assets/screenshot-4.png?rev=1679210\";s:7:\"caption\";s:8:\"Day View\";}i:5;a:2:{s:3:\"src\";s:72:\"https://ps.w.org/the-events-calendar/assets/screenshot-5.png?rev=1679210\";s:7:\"caption\";s:12:\"Single event\";}i:6;a:2:{s:3:\"src\";s:72:\"https://ps.w.org/the-events-calendar/assets/screenshot-6.png?rev=1679210\";s:7:\"caption\";s:12:\"Event Editor\";}i:7;a:2:{s:3:\"src\";s:72:\"https://ps.w.org/the-events-calendar/assets/screenshot-7.png?rev=1679210\";s:7:\"caption\";s:20:\"Events admin listing\";}i:8;a:2:{s:3:\"src\";s:72:\"https://ps.w.org/the-events-calendar/assets/screenshot-8.png?rev=1679210\";s:7:\"caption\";s:16:\"General Settings\";}i:9;a:2:{s:3:\"src\";s:72:\"https://ps.w.org/the-events-calendar/assets/screenshot-9.png?rev=1679210\";s:7:\"caption\";s:16:\"Display Settings\";}i:10;a:2:{s:3:\"src\";s:73:\"https://ps.w.org/the-events-calendar/assets/screenshot-10.png?rev=1679210\";s:7:\"caption\";s:18:\"Events List Widget\";}i:11;a:2:{s:3:\"src\";s:73:\"https://ps.w.org/the-events-calendar/assets/screenshot-11.png?rev=1679210\";s:7:\"caption\";s:17:\"Mobile Month View\";}i:12;a:2:{s:3:\"src\";s:73:\"https://ps.w.org/the-events-calendar/assets/screenshot-12.png?rev=1679210\";s:7:\"caption\";s:12:\"CSV Importer\";}}s:4:\"tags\";a:5:{s:8:\"calendar\";s:8:\"calendar\";s:5:\"event\";s:5:\"Event\";s:6:\"events\";s:6:\"events\";s:9:\"organizer\";s:9:\"organizer\";s:5:\"venue\";s:5:\"venue\";}s:8:\"versions\";a:185:{s:3:\"1.5\";s:66:\"https://downloads.wordpress.org/plugin/the-events-calendar.1.5.zip\";s:5:\"1.5.1\";s:68:\"https://downloads.wordpress.org/plugin/the-events-calendar.1.5.1.zip\";s:5:\"1.5.2\";s:68:\"https://downloads.wordpress.org/plugin/the-events-calendar.1.5.2.zip\";s:5:\"1.5.3\";s:68:\"https://downloads.wordpress.org/plugin/the-events-calendar.1.5.3.zip\";s:5:\"1.5.4\";s:68:\"https://downloads.wordpress.org/plugin/the-events-calendar.1.5.4.zip\";s:5:\"1.5.5\";s:68:\"https://downloads.wordpress.org/plugin/the-events-calendar.1.5.5.zip\";s:5:\"1.5.6\";s:68:\"https://downloads.wordpress.org/plugin/the-events-calendar.1.5.6.zip\";s:3:\"1.6\";s:66:\"https://downloads.wordpress.org/plugin/the-events-calendar.1.6.zip\";s:5:\"1.6.1\";s:68:\"https://downloads.wordpress.org/plugin/the-events-calendar.1.6.1.zip\";s:5:\"1.6.2\";s:68:\"https://downloads.wordpress.org/plugin/the-events-calendar.1.6.2.zip\";s:5:\"1.6.3\";s:68:\"https://downloads.wordpress.org/plugin/the-events-calendar.1.6.3.zip\";s:5:\"1.6.4\";s:68:\"https://downloads.wordpress.org/plugin/the-events-calendar.1.6.4.zip\";s:5:\"1.6.5\";s:68:\"https://downloads.wordpress.org/plugin/the-events-calendar.1.6.5.zip\";s:3:\"2.0\";s:66:\"https://downloads.wordpress.org/plugin/the-events-calendar.2.0.zip\";s:5:\"2.0.1\";s:68:\"https://downloads.wordpress.org/plugin/the-events-calendar.2.0.1.zip\";s:6:\"2.0.10\";s:69:\"https://downloads.wordpress.org/plugin/the-events-calendar.2.0.10.zip\";s:6:\"2.0.11\";s:69:\"https://downloads.wordpress.org/plugin/the-events-calendar.2.0.11.zip\";s:5:\"2.0.2\";s:68:\"https://downloads.wordpress.org/plugin/the-events-calendar.2.0.2.zip\";s:5:\"2.0.3\";s:68:\"https://downloads.wordpress.org/plugin/the-events-calendar.2.0.3.zip\";s:5:\"2.0.4\";s:68:\"https://downloads.wordpress.org/plugin/the-events-calendar.2.0.4.zip\";s:5:\"2.0.5\";s:68:\"https://downloads.wordpress.org/plugin/the-events-calendar.2.0.5.zip\";s:5:\"2.0.6\";s:68:\"https://downloads.wordpress.org/plugin/the-events-calendar.2.0.6.zip\";s:5:\"2.0.7\";s:68:\"https://downloads.wordpress.org/plugin/the-events-calendar.2.0.7.zip\";s:5:\"2.0.8\";s:68:\"https://downloads.wordpress.org/plugin/the-events-calendar.2.0.8.zip\";s:5:\"2.0.9\";s:68:\"https://downloads.wordpress.org/plugin/the-events-calendar.2.0.9.zip\";s:3:\"3.0\";s:66:\"https://downloads.wordpress.org/plugin/the-events-calendar.3.0.zip\";s:5:\"3.0.1\";s:68:\"https://downloads.wordpress.org/plugin/the-events-calendar.3.0.1.zip\";s:5:\"3.0.2\";s:68:\"https://downloads.wordpress.org/plugin/the-events-calendar.3.0.2.zip\";s:5:\"3.0.3\";s:68:\"https://downloads.wordpress.org/plugin/the-events-calendar.3.0.3.zip\";s:3:\"3.1\";s:66:\"https://downloads.wordpress.org/plugin/the-events-calendar.3.1.zip\";s:4:\"3.10\";s:67:\"https://downloads.wordpress.org/plugin/the-events-calendar.3.10.zip\";s:6:\"3.10.1\";s:69:\"https://downloads.wordpress.org/plugin/the-events-calendar.3.10.1.zip\";s:4:\"3.11\";s:67:\"https://downloads.wordpress.org/plugin/the-events-calendar.3.11.zip\";s:6:\"3.11.1\";s:69:\"https://downloads.wordpress.org/plugin/the-events-calendar.3.11.1.zip\";s:6:\"3.11.2\";s:69:\"https://downloads.wordpress.org/plugin/the-events-calendar.3.11.2.zip\";s:4:\"3.12\";s:67:\"https://downloads.wordpress.org/plugin/the-events-calendar.3.12.zip\";s:6:\"3.12.1\";s:69:\"https://downloads.wordpress.org/plugin/the-events-calendar.3.12.1.zip\";s:6:\"3.12.2\";s:69:\"https://downloads.wordpress.org/plugin/the-events-calendar.3.12.2.zip\";s:6:\"3.12.3\";s:69:\"https://downloads.wordpress.org/plugin/the-events-calendar.3.12.3.zip\";s:6:\"3.12.4\";s:69:\"https://downloads.wordpress.org/plugin/the-events-calendar.3.12.4.zip\";s:6:\"3.12.5\";s:69:\"https://downloads.wordpress.org/plugin/the-events-calendar.3.12.5.zip\";s:6:\"3.12.6\";s:69:\"https://downloads.wordpress.org/plugin/the-events-calendar.3.12.6.zip\";s:3:\"3.2\";s:66:\"https://downloads.wordpress.org/plugin/the-events-calendar.3.2.zip\";s:3:\"3.3\";s:66:\"https://downloads.wordpress.org/plugin/the-events-calendar.3.3.zip\";s:5:\"3.3.1\";s:68:\"https://downloads.wordpress.org/plugin/the-events-calendar.3.3.1.zip\";s:3:\"3.4\";s:66:\"https://downloads.wordpress.org/plugin/the-events-calendar.3.4.zip\";s:5:\"3.4.1\";s:68:\"https://downloads.wordpress.org/plugin/the-events-calendar.3.4.1.zip\";s:3:\"3.5\";s:66:\"https://downloads.wordpress.org/plugin/the-events-calendar.3.5.zip\";s:5:\"3.5.1\";s:68:\"https://downloads.wordpress.org/plugin/the-events-calendar.3.5.1.zip\";s:3:\"3.6\";s:66:\"https://downloads.wordpress.org/plugin/the-events-calendar.3.6.zip\";s:5:\"3.6.1\";s:68:\"https://downloads.wordpress.org/plugin/the-events-calendar.3.6.1.zip\";s:3:\"3.7\";s:66:\"https://downloads.wordpress.org/plugin/the-events-calendar.3.7.zip\";s:3:\"3.8\";s:66:\"https://downloads.wordpress.org/plugin/the-events-calendar.3.8.zip\";s:5:\"3.8.1\";s:68:\"https://downloads.wordpress.org/plugin/the-events-calendar.3.8.1.zip\";s:3:\"3.9\";s:66:\"https://downloads.wordpress.org/plugin/the-events-calendar.3.9.zip\";s:5:\"3.9.1\";s:68:\"https://downloads.wordpress.org/plugin/the-events-calendar.3.9.1.zip\";s:5:\"3.9.2\";s:68:\"https://downloads.wordpress.org/plugin/the-events-calendar.3.9.2.zip\";s:5:\"3.9.3\";s:68:\"https://downloads.wordpress.org/plugin/the-events-calendar.3.9.3.zip\";s:3:\"4.0\";s:66:\"https://downloads.wordpress.org/plugin/the-events-calendar.4.0.zip\";s:5:\"4.0.1\";s:68:\"https://downloads.wordpress.org/plugin/the-events-calendar.4.0.1.zip\";s:5:\"4.0.2\";s:68:\"https://downloads.wordpress.org/plugin/the-events-calendar.4.0.2.zip\";s:5:\"4.0.3\";s:68:\"https://downloads.wordpress.org/plugin/the-events-calendar.4.0.3.zip\";s:5:\"4.0.4\";s:68:\"https://downloads.wordpress.org/plugin/the-events-calendar.4.0.4.zip\";s:5:\"4.0.5\";s:68:\"https://downloads.wordpress.org/plugin/the-events-calendar.4.0.5.zip\";s:5:\"4.0.6\";s:68:\"https://downloads.wordpress.org/plugin/the-events-calendar.4.0.6.zip\";s:5:\"4.0.7\";s:68:\"https://downloads.wordpress.org/plugin/the-events-calendar.4.0.7.zip\";s:3:\"4.1\";s:66:\"https://downloads.wordpress.org/plugin/the-events-calendar.4.1.zip\";s:7:\"4.1.0.1\";s:70:\"https://downloads.wordpress.org/plugin/the-events-calendar.4.1.0.1.zip\";s:5:\"4.1.1\";s:68:\"https://downloads.wordpress.org/plugin/the-events-calendar.4.1.1.zip\";s:7:\"4.1.1.1\";s:70:\"https://downloads.wordpress.org/plugin/the-events-calendar.4.1.1.1.zip\";s:5:\"4.1.2\";s:68:\"https://downloads.wordpress.org/plugin/the-events-calendar.4.1.2.zip\";s:5:\"4.1.3\";s:68:\"https://downloads.wordpress.org/plugin/the-events-calendar.4.1.3.zip\";s:5:\"4.1.4\";s:68:\"https://downloads.wordpress.org/plugin/the-events-calendar.4.1.4.zip\";s:3:\"4.2\";s:66:\"https://downloads.wordpress.org/plugin/the-events-calendar.4.2.zip\";s:5:\"4.2.1\";s:68:\"https://downloads.wordpress.org/plugin/the-events-calendar.4.2.1.zip\";s:7:\"4.2.1.1\";s:70:\"https://downloads.wordpress.org/plugin/the-events-calendar.4.2.1.1.zip\";s:5:\"4.2.2\";s:68:\"https://downloads.wordpress.org/plugin/the-events-calendar.4.2.2.zip\";s:5:\"4.2.3\";s:68:\"https://downloads.wordpress.org/plugin/the-events-calendar.4.2.3.zip\";s:5:\"4.2.4\";s:68:\"https://downloads.wordpress.org/plugin/the-events-calendar.4.2.4.zip\";s:5:\"4.2.5\";s:68:\"https://downloads.wordpress.org/plugin/the-events-calendar.4.2.5.zip\";s:5:\"4.2.6\";s:68:\"https://downloads.wordpress.org/plugin/the-events-calendar.4.2.6.zip\";s:5:\"4.2.7\";s:68:\"https://downloads.wordpress.org/plugin/the-events-calendar.4.2.7.zip\";s:3:\"4.3\";s:66:\"https://downloads.wordpress.org/plugin/the-events-calendar.4.3.zip\";s:7:\"4.3.0.1\";s:70:\"https://downloads.wordpress.org/plugin/the-events-calendar.4.3.0.1.zip\";s:5:\"4.3.1\";s:68:\"https://downloads.wordpress.org/plugin/the-events-calendar.4.3.1.zip\";s:7:\"4.3.1.1\";s:70:\"https://downloads.wordpress.org/plugin/the-events-calendar.4.3.1.1.zip\";s:5:\"4.3.2\";s:68:\"https://downloads.wordpress.org/plugin/the-events-calendar.4.3.2.zip\";s:5:\"4.3.3\";s:68:\"https://downloads.wordpress.org/plugin/the-events-calendar.4.3.3.zip\";s:5:\"4.3.4\";s:68:\"https://downloads.wordpress.org/plugin/the-events-calendar.4.3.4.zip\";s:7:\"4.3.4.1\";s:70:\"https://downloads.wordpress.org/plugin/the-events-calendar.4.3.4.1.zip\";s:7:\"4.3.4.2\";s:70:\"https://downloads.wordpress.org/plugin/the-events-calendar.4.3.4.2.zip\";s:5:\"4.3.5\";s:68:\"https://downloads.wordpress.org/plugin/the-events-calendar.4.3.5.zip\";s:3:\"4.4\";s:66:\"https://downloads.wordpress.org/plugin/the-events-calendar.4.4.zip\";s:7:\"4.4.0.1\";s:70:\"https://downloads.wordpress.org/plugin/the-events-calendar.4.4.0.1.zip\";s:5:\"4.4.1\";s:68:\"https://downloads.wordpress.org/plugin/the-events-calendar.4.4.1.zip\";s:7:\"4.4.1.1\";s:70:\"https://downloads.wordpress.org/plugin/the-events-calendar.4.4.1.1.zip\";s:5:\"4.4.2\";s:68:\"https://downloads.wordpress.org/plugin/the-events-calendar.4.4.2.zip\";s:5:\"4.4.3\";s:68:\"https://downloads.wordpress.org/plugin/the-events-calendar.4.4.3.zip\";s:5:\"4.4.4\";s:68:\"https://downloads.wordpress.org/plugin/the-events-calendar.4.4.4.zip\";s:5:\"4.4.5\";s:68:\"https://downloads.wordpress.org/plugin/the-events-calendar.4.4.5.zip\";s:3:\"4.5\";s:66:\"https://downloads.wordpress.org/plugin/the-events-calendar.4.5.zip\";s:7:\"4.5.0.1\";s:70:\"https://downloads.wordpress.org/plugin/the-events-calendar.4.5.0.1.zip\";s:7:\"4.5.0.2\";s:70:\"https://downloads.wordpress.org/plugin/the-events-calendar.4.5.0.2.zip\";s:5:\"4.5.1\";s:68:\"https://downloads.wordpress.org/plugin/the-events-calendar.4.5.1.zip\";s:6:\"4.5.10\";s:69:\"https://downloads.wordpress.org/plugin/the-events-calendar.4.5.10.zip\";s:8:\"4.5.10.1\";s:71:\"https://downloads.wordpress.org/plugin/the-events-calendar.4.5.10.1.zip\";s:6:\"4.5.11\";s:69:\"https://downloads.wordpress.org/plugin/the-events-calendar.4.5.11.zip\";s:6:\"4.5.12\";s:69:\"https://downloads.wordpress.org/plugin/the-events-calendar.4.5.12.zip\";s:8:\"4.5.12.1\";s:71:\"https://downloads.wordpress.org/plugin/the-events-calendar.4.5.12.1.zip\";s:8:\"4.5.12.2\";s:71:\"https://downloads.wordpress.org/plugin/the-events-calendar.4.5.12.2.zip\";s:8:\"4.5.12.3\";s:71:\"https://downloads.wordpress.org/plugin/the-events-calendar.4.5.12.3.zip\";s:6:\"4.5.13\";s:69:\"https://downloads.wordpress.org/plugin/the-events-calendar.4.5.13.zip\";s:5:\"4.5.2\";s:68:\"https://downloads.wordpress.org/plugin/the-events-calendar.4.5.2.zip\";s:7:\"4.5.2.1\";s:70:\"https://downloads.wordpress.org/plugin/the-events-calendar.4.5.2.1.zip\";s:5:\"4.5.3\";s:68:\"https://downloads.wordpress.org/plugin/the-events-calendar.4.5.3.zip\";s:5:\"4.5.4\";s:68:\"https://downloads.wordpress.org/plugin/the-events-calendar.4.5.4.zip\";s:5:\"4.5.5\";s:68:\"https://downloads.wordpress.org/plugin/the-events-calendar.4.5.5.zip\";s:5:\"4.5.6\";s:68:\"https://downloads.wordpress.org/plugin/the-events-calendar.4.5.6.zip\";s:5:\"4.5.7\";s:68:\"https://downloads.wordpress.org/plugin/the-events-calendar.4.5.7.zip\";s:5:\"4.5.8\";s:68:\"https://downloads.wordpress.org/plugin/the-events-calendar.4.5.8.zip\";s:7:\"4.5.8.1\";s:70:\"https://downloads.wordpress.org/plugin/the-events-calendar.4.5.8.1.zip\";s:5:\"4.5.9\";s:68:\"https://downloads.wordpress.org/plugin/the-events-calendar.4.5.9.zip\";s:3:\"4.6\";s:66:\"https://downloads.wordpress.org/plugin/the-events-calendar.4.6.zip\";s:5:\"4.6.1\";s:68:\"https://downloads.wordpress.org/plugin/the-events-calendar.4.6.1.zip\";s:6:\"4.6.10\";s:69:\"https://downloads.wordpress.org/plugin/the-events-calendar.4.6.10.zip\";s:8:\"4.6.10.1\";s:71:\"https://downloads.wordpress.org/plugin/the-events-calendar.4.6.10.1.zip\";s:6:\"4.6.11\";s:69:\"https://downloads.wordpress.org/plugin/the-events-calendar.4.6.11.zip\";s:8:\"4.6.11.1\";s:71:\"https://downloads.wordpress.org/plugin/the-events-calendar.4.6.11.1.zip\";s:6:\"4.6.12\";s:69:\"https://downloads.wordpress.org/plugin/the-events-calendar.4.6.12.zip\";s:6:\"4.6.13\";s:69:\"https://downloads.wordpress.org/plugin/the-events-calendar.4.6.13.zip\";s:6:\"4.6.14\";s:69:\"https://downloads.wordpress.org/plugin/the-events-calendar.4.6.14.zip\";s:8:\"4.6.14.1\";s:71:\"https://downloads.wordpress.org/plugin/the-events-calendar.4.6.14.1.zip\";s:6:\"4.6.15\";s:69:\"https://downloads.wordpress.org/plugin/the-events-calendar.4.6.15.zip\";s:6:\"4.6.16\";s:69:\"https://downloads.wordpress.org/plugin/the-events-calendar.4.6.16.zip\";s:6:\"4.6.17\";s:69:\"https://downloads.wordpress.org/plugin/the-events-calendar.4.6.17.zip\";s:6:\"4.6.18\";s:69:\"https://downloads.wordpress.org/plugin/the-events-calendar.4.6.18.zip\";s:6:\"4.6.19\";s:69:\"https://downloads.wordpress.org/plugin/the-events-calendar.4.6.19.zip\";s:5:\"4.6.2\";s:68:\"https://downloads.wordpress.org/plugin/the-events-calendar.4.6.2.zip\";s:6:\"4.6.20\";s:69:\"https://downloads.wordpress.org/plugin/the-events-calendar.4.6.20.zip\";s:8:\"4.6.20.1\";s:71:\"https://downloads.wordpress.org/plugin/the-events-calendar.4.6.20.1.zip\";s:6:\"4.6.21\";s:69:\"https://downloads.wordpress.org/plugin/the-events-calendar.4.6.21.zip\";s:6:\"4.6.22\";s:69:\"https://downloads.wordpress.org/plugin/the-events-calendar.4.6.22.zip\";s:8:\"4.6.22.1\";s:71:\"https://downloads.wordpress.org/plugin/the-events-calendar.4.6.22.1.zip\";s:6:\"4.6.23\";s:69:\"https://downloads.wordpress.org/plugin/the-events-calendar.4.6.23.zip\";s:6:\"4.6.24\";s:69:\"https://downloads.wordpress.org/plugin/the-events-calendar.4.6.24.zip\";s:8:\"4.6.24.1\";s:71:\"https://downloads.wordpress.org/plugin/the-events-calendar.4.6.24.1.zip\";s:6:\"4.6.25\";s:69:\"https://downloads.wordpress.org/plugin/the-events-calendar.4.6.25.zip\";s:6:\"4.6.26\";s:69:\"https://downloads.wordpress.org/plugin/the-events-calendar.4.6.26.zip\";s:8:\"4.6.26.1\";s:71:\"https://downloads.wordpress.org/plugin/the-events-calendar.4.6.26.1.zip\";s:5:\"4.6.3\";s:68:\"https://downloads.wordpress.org/plugin/the-events-calendar.4.6.3.zip\";s:5:\"4.6.4\";s:68:\"https://downloads.wordpress.org/plugin/the-events-calendar.4.6.4.zip\";s:5:\"4.6.5\";s:68:\"https://downloads.wordpress.org/plugin/the-events-calendar.4.6.5.zip\";s:5:\"4.6.6\";s:68:\"https://downloads.wordpress.org/plugin/the-events-calendar.4.6.6.zip\";s:5:\"4.6.7\";s:68:\"https://downloads.wordpress.org/plugin/the-events-calendar.4.6.7.zip\";s:5:\"4.6.8\";s:68:\"https://downloads.wordpress.org/plugin/the-events-calendar.4.6.8.zip\";s:5:\"4.6.9\";s:68:\"https://downloads.wordpress.org/plugin/the-events-calendar.4.6.9.zip\";s:3:\"4.7\";s:66:\"https://downloads.wordpress.org/plugin/the-events-calendar.4.7.zip\";s:7:\"4.7.0.1\";s:70:\"https://downloads.wordpress.org/plugin/the-events-calendar.4.7.0.1.zip\";s:5:\"4.7.1\";s:68:\"https://downloads.wordpress.org/plugin/the-events-calendar.4.7.1.zip\";s:5:\"4.7.2\";s:68:\"https://downloads.wordpress.org/plugin/the-events-calendar.4.7.2.zip\";s:5:\"4.7.3\";s:68:\"https://downloads.wordpress.org/plugin/the-events-calendar.4.7.3.zip\";s:5:\"4.7.4\";s:68:\"https://downloads.wordpress.org/plugin/the-events-calendar.4.7.4.zip\";s:3:\"4.8\";s:66:\"https://downloads.wordpress.org/plugin/the-events-calendar.4.8.zip\";s:7:\"4.8.0.1\";s:70:\"https://downloads.wordpress.org/plugin/the-events-calendar.4.8.0.1.zip\";s:5:\"4.8.1\";s:68:\"https://downloads.wordpress.org/plugin/the-events-calendar.4.8.1.zip\";s:5:\"4.8.2\";s:68:\"https://downloads.wordpress.org/plugin/the-events-calendar.4.8.2.zip\";s:5:\"4.9.0\";s:68:\"https://downloads.wordpress.org/plugin/the-events-calendar.4.9.0.zip\";s:7:\"4.9.0.1\";s:70:\"https://downloads.wordpress.org/plugin/the-events-calendar.4.9.0.1.zip\";s:7:\"4.9.0.2\";s:70:\"https://downloads.wordpress.org/plugin/the-events-calendar.4.9.0.2.zip\";s:7:\"4.9.0.3\";s:70:\"https://downloads.wordpress.org/plugin/the-events-calendar.4.9.0.3.zip\";s:5:\"4.9.1\";s:68:\"https://downloads.wordpress.org/plugin/the-events-calendar.4.9.1.zip\";s:7:\"4.9.1.1\";s:70:\"https://downloads.wordpress.org/plugin/the-events-calendar.4.9.1.1.zip\";s:6:\"4.9.10\";s:69:\"https://downloads.wordpress.org/plugin/the-events-calendar.4.9.10.zip\";s:6:\"4.9.11\";s:69:\"https://downloads.wordpress.org/plugin/the-events-calendar.4.9.11.zip\";s:5:\"4.9.2\";s:68:\"https://downloads.wordpress.org/plugin/the-events-calendar.4.9.2.zip\";s:5:\"4.9.3\";s:68:\"https://downloads.wordpress.org/plugin/the-events-calendar.4.9.3.zip\";s:7:\"4.9.3.1\";s:70:\"https://downloads.wordpress.org/plugin/the-events-calendar.4.9.3.1.zip\";s:7:\"4.9.3.2\";s:70:\"https://downloads.wordpress.org/plugin/the-events-calendar.4.9.3.2.zip\";s:5:\"4.9.4\";s:68:\"https://downloads.wordpress.org/plugin/the-events-calendar.4.9.4.zip\";s:5:\"4.9.5\";s:68:\"https://downloads.wordpress.org/plugin/the-events-calendar.4.9.5.zip\";s:5:\"4.9.6\";s:68:\"https://downloads.wordpress.org/plugin/the-events-calendar.4.9.6.zip\";s:5:\"4.9.7\";s:68:\"https://downloads.wordpress.org/plugin/the-events-calendar.4.9.7.zip\";s:5:\"4.9.8\";s:68:\"https://downloads.wordpress.org/plugin/the-events-calendar.4.9.8.zip\";s:5:\"4.9.9\";s:68:\"https://downloads.wordpress.org/plugin/the-events-calendar.4.9.9.zip\";s:5:\"trunk\";s:62:\"https://downloads.wordpress.org/plugin/the-events-calendar.zip\";}s:11:\"donate_link\";s:18:\"http://m.tri.be/29\";s:7:\"banners\";a:2:{s:3:\"low\";s:74:\"https://ps.w.org/the-events-calendar/assets/banner-772x250.png?rev=2048291\";s:4:\"high\";s:75:\"https://ps.w.org/the-events-calendar/assets/banner-1544x500.png?rev=2048291\";}s:18:\"author_block_count\";i:0;s:19:\"author_block_rating\";i:88;}s:14:\"contact-form-7\";a:27:{s:4:\"name\";s:14:\"Contact Form 7\";s:4:\"slug\";s:14:\"contact-form-7\";s:7:\"version\";s:5:\"5.1.5\";s:6:\"author\";s:62:\"<a href=\"https://ideasilo.wordpress.com/\">Takayuki Miyoshi</a>\";s:14:\"author_profile\";s:43:\"https://profiles.wordpress.org/takayukister\";s:12:\"contributors\";a:1:{s:12:\"takayukister\";a:3:{s:7:\"profile\";s:43:\"https://profiles.wordpress.org/takayukister\";s:6:\"avatar\";s:88:\"https://secure.gravatar.com/avatar/bb7bc21850c77e9eb16b44102f4a539d?s=96&d=monsterid&r=g\";s:12:\"display_name\";s:16:\"Takayuki Miyoshi\";}}s:8:\"requires\";s:3:\"4.9\";s:6:\"tested\";s:3:\"5.3\";s:12:\"requires_php\";b:0;s:6:\"rating\";i:82;s:7:\"ratings\";a:5:{i:5;i:1186;i:4;i:120;i:3;i:47;i:2;i:41;i:1;i:279;}s:11:\"num_ratings\";i:1673;s:15:\"support_threads\";i:440;s:24:\"support_threads_resolved\";i:113;s:15:\"active_installs\";i:5000000;s:12:\"last_updated\";s:21:\"2019-11-12 5:37pm GMT\";s:5:\"added\";s:10:\"2007-08-02\";s:8:\"homepage\";s:25:\"https://contactform7.com/\";s:8:\"sections\";a:6:{s:11:\"description\";s:2885:\"<p>Contact Form 7 can manage multiple contact forms, plus you can customize the form and the mail contents flexibly with simple markup. The form supports Ajax-powered submitting, CAPTCHA, Akismet spam filtering and so on.</p>\n<h4>Docs &amp; Support</h4>\n<p>You can find <a href=\"https://contactform7.com/docs/\" rel=\"nofollow\">docs</a>, <a href=\"https://contactform7.com/faq/\" rel=\"nofollow\">FAQ</a> and more detailed information about Contact Form 7 on <a href=\"https://contactform7.com/\" rel=\"nofollow\">contactform7.com</a>. If you were unable to find the answer to your question on the FAQ or in any of the documentation, you should check the <a href=\"https://wordpress.org/support/plugin/contact-form-7/\">support forum</a> on WordPress.org. If you can&#8217;t locate any topics that pertain to your particular issue, post a new topic for it.</p>\n<h4>Contact Form 7 Needs Your Support</h4>\n<p>It is hard to continue development and support for this free plugin without contributions from users like you. If you enjoy using Contact Form 7 and find it useful, please consider <a href=\"https://contactform7.com/donate/\" rel=\"nofollow\"><strong>making a donation</strong></a>. Your donation will help encourage and support the plugin&#8217;s continued development and better user support.</p>\n<h4>Privacy Notices</h4>\n<p>With the default configuration, this plugin, in itself, does not:</p>\n<ul>\n<li>track users by stealth;</li>\n<li>write any user personal data to the database;</li>\n<li>send any data to external servers;</li>\n<li>use cookies.</li>\n</ul>\n<p>If you activate certain features in this plugin, the contact form submitter&#8217;s personal data, including their IP address, may be sent to the service provider. Thus, confirming the provider&#8217;s privacy policy is recommended. These features include:</p>\n<ul>\n<li>reCAPTCHA (<a href=\"https://policies.google.com/?hl=en\" rel=\"nofollow\">Google</a>)</li>\n<li>Akismet (<a href=\"https://automattic.com/privacy/\" rel=\"nofollow\">Automattic</a>)</li>\n<li>Constant Contact (<a href=\"https://www.endurance.com/privacy\" rel=\"nofollow\">Endurance International Group</a>)</li>\n</ul>\n<h4>Recommended Plugins</h4>\n<p>The following plugins are recommended for Contact Form 7 users:</p>\n<ul>\n<li><a href=\"https://wordpress.org/plugins/flamingo/\">Flamingo</a> by Takayuki Miyoshi &#8211; With Flamingo, you can save submitted messages via contact forms in the database.</li>\n<li><a href=\"https://wordpress.org/plugins/bogo/\">Bogo</a> by Takayuki Miyoshi &#8211; Bogo is a straight-forward multilingual plugin that doesn&#8217;t cause headaches.</li>\n</ul>\n<h4>Translations</h4>\n<p>You can <a href=\"https://contactform7.com/translating-contact-form-7/\" rel=\"nofollow\">translate Contact Form 7</a> on <a href=\"https://translate.wordpress.org/projects/wp-plugins/contact-form-7\" rel=\"nofollow\"><strong>translate.wordpress.org</strong></a>.</p>\n\";s:12:\"installation\";s:414:\"<ol>\n<li>Upload the entire <code>contact-form-7</code> folder to the <code>/wp-content/plugins/</code> directory.</li>\n<li>Activate the plugin through the &#8216;Plugins&#8217; menu in WordPress.</li>\n</ol>\n<p>You will find &#8216;Contact&#8217; menu in your WordPress admin panel.</p>\n<p>For basic usage, you can also have a look at the <a href=\"https://contactform7.com/\" rel=\"nofollow\">plugin web site</a>.</p>\n\";s:3:\"faq\";s:427:\"<p>Do you have questions or issues with Contact Form 7? Use these support channels appropriately.</p>\n<ol>\n<li><a href=\"https://contactform7.com/docs/\" rel=\"nofollow\">Docs</a></li>\n<li><a href=\"https://contactform7.com/faq/\" rel=\"nofollow\">FAQ</a></li>\n<li><a href=\"https://wordpress.org/support/plugin/contact-form-7/\">Support Forum</a></li>\n</ol>\n<p><a href=\"https://contactform7.com/support/\" rel=\"nofollow\">Support</a></p>\n\";s:9:\"changelog\";s:5426:\"<p>For more information, see <a href=\"https://contactform7.com/category/releases/\" rel=\"nofollow\">Releases</a>.</p>\n<h4>5.1.5</h4>\n<ul>\n<li>Config Validator: New test item for the unavailable_html_elements error.</li>\n<li>Config Validator: New test item for the attachments_overweight error.</li>\n</ul>\n<h4>5.1.4</h4>\n<ul>\n<li>reCAPTCHA: introduces the WPCF7_RECAPTCHA_SITEKEY and WPCF7_RECAPTCHA_SECRET constants.</li>\n<li>reCAPTCHA: Introduces the wpcf7_recaptcha_sitekey and wpcf7_recaptcha_secret filter hooks.</li>\n<li>Adds $status parameter to the wpcf7_form_response_output filter.</li>\n<li>Creates a nonce only when the submitter is a logged-in user.</li>\n<li>Introduces WPCF7_ContactForm::unit_tag(), a public method that returns a unit tag.</li>\n<li>reCAPTCHA: gives a different spam log message for cases where the response token is empty.</li>\n<li>Acceptance Checkbox: supports the label_first option in an acceptance form-tag.</li>\n</ul>\n<h4>5.1.3</h4>\n<ul>\n<li>Fixes a bug making it unable to unselect an option in the Mail tab panel.</li>\n</ul>\n<h4>5.1.2</h4>\n<ul>\n<li>Constant Contact: Introduces the contact list selector.</li>\n<li>Constant Contact: Introduces the constant_contact additional setting.</li>\n<li>reCAPTCHA: Introduces the wpcf7_recaptcha_actions and wpcf7_recaptcha_threshold filter hooks.</li>\n</ul>\n<h4>5.1.1</h4>\n<ul>\n<li>reCAPTCHA: Modifies the reaction to empty response tokens.</li>\n</ul>\n<h4>5.1</h4>\n<ul>\n<li>Introduces the Constant Contact integration module.</li>\n<li>Updates the reCAPTCHA module to support reCAPTCHA v3.</li>\n<li>Adds Dark Mode style rules.</li>\n</ul>\n<h4>5.0.5</h4>\n<ul>\n<li>Fixes the inconsistency problem between get_data_option() and get_default_option() in the WPCF7_FormTag class.</li>\n<li>Suppresses PHP errors occur on unlink() calls.</li>\n<li>Introduces wpcf7_is_file_path_in_content_dir() to support the use of the UPLOADS constant.</li>\n</ul>\n<h4>5.0.4</h4>\n<ul>\n<li>Specifies the capability_type argument explicitly in the register_post_type() call to fix the privilege escalation vulnerability issue.</li>\n<li>Local File Attachment – disallows the specifying of absolute file paths referring to files outside the wp-content directory.</li>\n<li>Config Validator – adds a test item to detect invalid file attachment settings.</li>\n<li>Fixes a bug in the JavaScript fallback function for legacy browsers that do not support the HTML5 placeholder attribute.</li>\n<li>Acceptance Checkbox – unsets the form-tag&#8217;s do-not-store feature.</li>\n</ul>\n<h4>5.0.3</h4>\n<ul>\n<li>CSS: Applies the &#8220;not-allowed&#8221; cursor style to submit buttons in the &#8220;disabled&#8221; state.</li>\n<li>Acceptance Checkbox: Revises the tag-generator UI to encourage the use of better options in terms of personal data protection.</li>\n<li>Introduces wpcf7_anonymize_ip_addr() function.</li>\n<li>Introduces the consent_for:storage option for all types of form-tags.</li>\n</ul>\n<h4>5.0.2</h4>\n<ul>\n<li>Added the Privacy Notices section to the readme.txt file.</li>\n<li>Updated the Information meta-box content.</li>\n<li>Use get_user_locale() instead of get_locale() where it is more appropriate.</li>\n<li>Acceptance Checkbox: Reset submit buttons’ disabled status after a successful submission.</li>\n</ul>\n<h4>5.0.1</h4>\n<ul>\n<li>Fixed incorrect uses of _n().</li>\n<li>Config validation: Fixed incorrect count of alerts in the Additional Settings tab panel.</li>\n<li>Config validation: Fixed improper treatment for the [_site_admin_email] special mail-tag in the From mail header field.</li>\n<li>Acceptance checkbox: The class and id attributes specified were applied to the wrong HTML element.</li>\n<li>Config validation: When there is an additional mail header for mailboxes like Cc or Reply-To, but it has a possible empty value, “Invalid mailbox syntax is used” error will be returned.</li>\n<li>Explicitly specify the fourth parameter of add_action() to avoid passing unintended parameter values.</li>\n<li>Check if the target directory is empty before removing the directory.</li>\n</ul>\n<h4>5.0</h4>\n<ul>\n<li>Additional settings: on_sent_ok and on_submit have been removed.</li>\n<li>New additional setting: skip_mail</li>\n<li>Flamingo: Inbound channel title changes in conjunction with a change in the title of the corresponding contact form.</li>\n<li>DOM events: Make an entire API response object accessible through the event.detail.apiResponse property.</li>\n<li>HTML mail: Adds language-related attributes to the HTML header.</li>\n<li>File upload: Sets the accept attribute to an uploading field.</li>\n<li>Introduces the WPCF7_MailTag class.</li>\n<li>Allows aborting a mail-sending attempt using the wpcf7_before_send_mail action hook. Also, you can set a custom status and a message through the action hook.</li>\n<li>Acceptance checkbox: Allows the specifying of a statement of conditions in the form-tag’s content part.</li>\n<li>Acceptance checkbox: Supports the optional option.</li>\n<li>New special mail tags: [_site_title], [_site_description], [_site_url], [_site_admin_email], [_invalid_fields], [_user_login], [_user_email], [_user_url], [_user_first_name], [_user_last_name], [_user_nickname], and [_user_display_name]</li>\n<li>New filter hooks: wpcf7_upload_file_name, wpcf7_autop_or_not, wpcf7_posted_data_{$type}, and wpcf7_mail_tag_replaced_{$type}</li>\n<li>New form-tag features: zero-controls-container and not-for-mail</li>\n</ul>\n\";s:11:\"screenshots\";s:225:\"<ol><li><a href=\"https://ps.w.org/contact-form-7/assets/screenshot-1.png?rev=1176454\"><img src=\"https://ps.w.org/contact-form-7/assets/screenshot-1.png?rev=1176454\" alt=\"screenshot-1.png\"></a><p>screenshot-1.png</p></li></ol>\";s:7:\"reviews\";s:13723:\"<div class=\"review\">\n	<div class=\"review-head\">\n		<div class=\"reviewer-info\">\n			<div class=\"review-title-section\">\n				<h4 class=\"review-title\">All messages marked as a spam</h4>\n				<div class=\"star-rating\">\n				<div class=\"wporg-ratings\" aria-label=\"1 out of 5 stars\" data-title-template=\"%s out of 5 stars\" data-rating=\"1\" style=\"color:#ffb900;\"><span class=\"star dashicons dashicons-star-filled\"></span><span class=\"star dashicons dashicons-star-empty\"></span><span class=\"star dashicons dashicons-star-empty\"></span><span class=\"star dashicons dashicons-star-empty\"></span><span class=\"star dashicons dashicons-star-empty\"></span></div>				</div>\n			</div>\n			<p class=\"reviewer\">\n				By <a href=\"https://profiles.wordpress.org/kvvz\"><img alt=\'\' src=\'https://secure.gravatar.com/avatar/4f15aca4c2935798a0960fc69c6e4c9a?s=16&#038;d=monsterid&#038;r=g\' srcset=\'https://secure.gravatar.com/avatar/4f15aca4c2935798a0960fc69c6e4c9a?s=32&#038;d=monsterid&#038;r=g 2x\' class=\'avatar avatar-16 photo\' height=\'16\' width=\'16\' /></a><a href=\"https://profiles.wordpress.org/kvvz\" class=\"reviewer-name\">kvvz</a> on <span class=\"review-date\">November 7, 2019</span>			</p>\n		</div>\n	</div>\n	<div class=\"review-body\">After integration with ReCaptcha all messages are marked as spam or printing error of the form.  I\'m really confused.</div>\n</div>\n<div class=\"review\">\n	<div class=\"review-head\">\n		<div class=\"reviewer-info\">\n			<div class=\"review-title-section\">\n				<h4 class=\"review-title\">Best Contact form out there</h4>\n				<div class=\"star-rating\">\n				<div class=\"wporg-ratings\" aria-label=\"5 out of 5 stars\" data-title-template=\"%s out of 5 stars\" data-rating=\"5\" style=\"color:#ffb900;\"><span class=\"star dashicons dashicons-star-filled\"></span><span class=\"star dashicons dashicons-star-filled\"></span><span class=\"star dashicons dashicons-star-filled\"></span><span class=\"star dashicons dashicons-star-filled\"></span><span class=\"star dashicons dashicons-star-filled\"></span></div>				</div>\n			</div>\n			<p class=\"reviewer\">\n				By <a href=\"https://profiles.wordpress.org/noelj07\"><img alt=\'\' src=\'https://secure.gravatar.com/avatar/83ffbd0ce8fbc699b12afcb3f2d51caf?s=16&#038;d=monsterid&#038;r=g\' srcset=\'https://secure.gravatar.com/avatar/83ffbd0ce8fbc699b12afcb3f2d51caf?s=32&#038;d=monsterid&#038;r=g 2x\' class=\'avatar avatar-16 photo\' height=\'16\' width=\'16\' /></a><a href=\"https://profiles.wordpress.org/noelj07\" class=\"reviewer-name\">Jason Noel <small>(noelj07)</small></a> on <span class=\"review-date\">November 6, 2019</span>			</p>\n		</div>\n	</div>\n	<div class=\"review-body\">I\'ve never actually tried to search for another contact form plugin. I\'m a little surprised that it takes another plugin to do the redirect. Oh well, they can\'t be perfect :)</div>\n</div>\n<div class=\"review\">\n	<div class=\"review-head\">\n		<div class=\"reviewer-info\">\n			<div class=\"review-title-section\">\n				<h4 class=\"review-title\">Nice Plugin.</h4>\n				<div class=\"star-rating\">\n				<div class=\"wporg-ratings\" aria-label=\"5 out of 5 stars\" data-title-template=\"%s out of 5 stars\" data-rating=\"5\" style=\"color:#ffb900;\"><span class=\"star dashicons dashicons-star-filled\"></span><span class=\"star dashicons dashicons-star-filled\"></span><span class=\"star dashicons dashicons-star-filled\"></span><span class=\"star dashicons dashicons-star-filled\"></span><span class=\"star dashicons dashicons-star-filled\"></span></div>				</div>\n			</div>\n			<p class=\"reviewer\">\n				By <a href=\"https://profiles.wordpress.org/snappaguy\"><img alt=\'\' src=\'https://secure.gravatar.com/avatar/7afc04ae9507841d3f5a114e34eb081c?s=16&#038;d=monsterid&#038;r=g\' srcset=\'https://secure.gravatar.com/avatar/7afc04ae9507841d3f5a114e34eb081c?s=32&#038;d=monsterid&#038;r=g 2x\' class=\'avatar avatar-16 photo\' height=\'16\' width=\'16\' /></a><a href=\"https://profiles.wordpress.org/snappaguy\" class=\"reviewer-name\">SnappaGuy</a> on <span class=\"review-date\">November 5, 2019</span>			</p>\n		</div>\n	</div>\n	<div class=\"review-body\">Thanks for the nice plugin and all your hard work.</div>\n</div>\n<div class=\"review\">\n	<div class=\"review-head\">\n		<div class=\"reviewer-info\">\n			<div class=\"review-title-section\">\n				<h4 class=\"review-title\">Great plugin</h4>\n				<div class=\"star-rating\">\n				<div class=\"wporg-ratings\" aria-label=\"5 out of 5 stars\" data-title-template=\"%s out of 5 stars\" data-rating=\"5\" style=\"color:#ffb900;\"><span class=\"star dashicons dashicons-star-filled\"></span><span class=\"star dashicons dashicons-star-filled\"></span><span class=\"star dashicons dashicons-star-filled\"></span><span class=\"star dashicons dashicons-star-filled\"></span><span class=\"star dashicons dashicons-star-filled\"></span></div>				</div>\n			</div>\n			<p class=\"reviewer\">\n				By <a href=\"https://profiles.wordpress.org/zummimumi\"><img alt=\'\' src=\'https://secure.gravatar.com/avatar/d08dda9626d1691d20fe9b379ea3bed1?s=16&#038;d=monsterid&#038;r=g\' srcset=\'https://secure.gravatar.com/avatar/d08dda9626d1691d20fe9b379ea3bed1?s=32&#038;d=monsterid&#038;r=g 2x\' class=\'avatar avatar-16 photo\' height=\'16\' width=\'16\' /></a><a href=\"https://profiles.wordpress.org/zummimumi\" class=\"reviewer-name\">zummimumi</a> on <span class=\"review-date\">November 4, 2019</span>			</p>\n		</div>\n	</div>\n	<div class=\"review-body\">Great plugin, thanks for your hard work!</div>\n</div>\n<div class=\"review\">\n	<div class=\"review-head\">\n		<div class=\"reviewer-info\">\n			<div class=\"review-title-section\">\n				<h4 class=\"review-title\">Удобно, просто, функционально</h4>\n				<div class=\"star-rating\">\n				<div class=\"wporg-ratings\" aria-label=\"5 out of 5 stars\" data-title-template=\"%s out of 5 stars\" data-rating=\"5\" style=\"color:#ffb900;\"><span class=\"star dashicons dashicons-star-filled\"></span><span class=\"star dashicons dashicons-star-filled\"></span><span class=\"star dashicons dashicons-star-filled\"></span><span class=\"star dashicons dashicons-star-filled\"></span><span class=\"star dashicons dashicons-star-filled\"></span></div>				</div>\n			</div>\n			<p class=\"reviewer\">\n				By <a href=\"https://profiles.wordpress.org/vivado\"><img alt=\'\' src=\'https://secure.gravatar.com/avatar/a0f9cff85c9708683c6060f363b1ecfa?s=16&#038;d=monsterid&#038;r=g\' srcset=\'https://secure.gravatar.com/avatar/a0f9cff85c9708683c6060f363b1ecfa?s=32&#038;d=monsterid&#038;r=g 2x\' class=\'avatar avatar-16 photo\' height=\'16\' width=\'16\' /></a><a href=\"https://profiles.wordpress.org/vivado\" class=\"reviewer-name\">vivado</a> on <span class=\"review-date\">November 2, 2019</span>			</p>\n		</div>\n	</div>\n	<div class=\"review-body\">Отличный плагин для создания любых контактных форм.</div>\n</div>\n<div class=\"review\">\n	<div class=\"review-head\">\n		<div class=\"reviewer-info\">\n			<div class=\"review-title-section\">\n				<h4 class=\"review-title\">Works fine</h4>\n				<div class=\"star-rating\">\n				<div class=\"wporg-ratings\" aria-label=\"4 out of 5 stars\" data-title-template=\"%s out of 5 stars\" data-rating=\"4\" style=\"color:#ffb900;\"><span class=\"star dashicons dashicons-star-filled\"></span><span class=\"star dashicons dashicons-star-filled\"></span><span class=\"star dashicons dashicons-star-filled\"></span><span class=\"star dashicons dashicons-star-filled\"></span><span class=\"star dashicons dashicons-star-empty\"></span></div>				</div>\n			</div>\n			<p class=\"reviewer\">\n				By <a href=\"https://profiles.wordpress.org/daniellecalvarado\"><img alt=\'\' src=\'https://secure.gravatar.com/avatar/bc92bd177de2cddf0aa390c94b86fb88?s=16&#038;d=monsterid&#038;r=g\' srcset=\'https://secure.gravatar.com/avatar/bc92bd177de2cddf0aa390c94b86fb88?s=32&#038;d=monsterid&#038;r=g 2x\' class=\'avatar avatar-16 photo\' height=\'16\' width=\'16\' /></a><a href=\"https://profiles.wordpress.org/daniellecalvarado\" class=\"reviewer-name\">daniellecalvarado</a> on <span class=\"review-date\">October 30, 2019</span>			</p>\n		</div>\n	</div>\n	<div class=\"review-body\">Good contact form plugin</div>\n</div>\n<div class=\"review\">\n	<div class=\"review-head\">\n		<div class=\"reviewer-info\">\n			<div class=\"review-title-section\">\n				<h4 class=\"review-title\">Please Solve below error</h4>\n				<div class=\"star-rating\">\n				<div class=\"wporg-ratings\" aria-label=\"5 out of 5 stars\" data-title-template=\"%s out of 5 stars\" data-rating=\"5\" style=\"color:#ffb900;\"><span class=\"star dashicons dashicons-star-filled\"></span><span class=\"star dashicons dashicons-star-filled\"></span><span class=\"star dashicons dashicons-star-filled\"></span><span class=\"star dashicons dashicons-star-filled\"></span><span class=\"star dashicons dashicons-star-filled\"></span></div>				</div>\n			</div>\n			<p class=\"reviewer\">\n				By <a href=\"https://profiles.wordpress.org/mehulpxelperfect\"><img alt=\'\' src=\'https://secure.gravatar.com/avatar/087de4c04644f8313913f0e8df2f154c?s=16&#038;d=monsterid&#038;r=g\' srcset=\'https://secure.gravatar.com/avatar/087de4c04644f8313913f0e8df2f154c?s=32&#038;d=monsterid&#038;r=g 2x\' class=\'avatar avatar-16 photo\' height=\'16\' width=\'16\' /></a><a href=\"https://profiles.wordpress.org/mehulpxelperfect\" class=\"reviewer-name\">mehulpxelperfect</a> on <span class=\"review-date\">October 24, 2019</span>			</p>\n		</div>\n	</div>\n	<div class=\"review-body\">GET wp-content/plugins/contact-form-7/admin/css/styles.css?ver=5.1.4 net::ERR_ABORTED 409 (Conflict)\n\nGET wp-content/plugins/contact-form-7/admin/js/scripts.js?ver=5.1.4 net::ERR_ABORTED 409 (Conflict)\n\nGET /wp-content/plugins/contact-form-7/admin/js/tag-generator.js?ver=5.1.4 net::ERR_ABORTED 409 (Conflict)\n\nGET /wp-content/plugins/contact-form-7/admin/js/scripts.js?ver=5.1.4 net::ERR_ABORTED 409 (Conflict)\n\nGET /wp-content/plugins/contact-form-7/admin/js/tag-generator.js?ver=5.1.4 net::ERR_ABORTED 409 (Conflict)\n\n</div>\n</div>\n<div class=\"review\">\n	<div class=\"review-head\">\n		<div class=\"reviewer-info\">\n			<div class=\"review-title-section\">\n				<h4 class=\"review-title\">Just Awesome</h4>\n				<div class=\"star-rating\">\n				<div class=\"wporg-ratings\" aria-label=\"5 out of 5 stars\" data-title-template=\"%s out of 5 stars\" data-rating=\"5\" style=\"color:#ffb900;\"><span class=\"star dashicons dashicons-star-filled\"></span><span class=\"star dashicons dashicons-star-filled\"></span><span class=\"star dashicons dashicons-star-filled\"></span><span class=\"star dashicons dashicons-star-filled\"></span><span class=\"star dashicons dashicons-star-filled\"></span></div>				</div>\n			</div>\n			<p class=\"reviewer\">\n				By <a href=\"https://profiles.wordpress.org/webhasan\"><img alt=\'\' src=\'https://secure.gravatar.com/avatar/a99ee0a1609ce23f0f92e2fd6675768a?s=16&#038;d=monsterid&#038;r=g\' srcset=\'https://secure.gravatar.com/avatar/a99ee0a1609ce23f0f92e2fd6675768a?s=32&#038;d=monsterid&#038;r=g 2x\' class=\'avatar avatar-16 photo\' height=\'16\' width=\'16\' /></a><a href=\"https://profiles.wordpress.org/webhasan\" class=\"reviewer-name\">webhasan</a> on <span class=\"review-date\">October 21, 2019</span>			</p>\n		</div>\n	</div>\n	<div class=\"review-body\">Really very useful and very flexible and easy to use. Most of the projects I use this plugin. \nReally it is a great Contact form solution in WP world. </div>\n</div>\n<div class=\"review\">\n	<div class=\"review-head\">\n		<div class=\"reviewer-info\">\n			<div class=\"review-title-section\">\n				<h4 class=\"review-title\">Best of the Best</h4>\n				<div class=\"star-rating\">\n				<div class=\"wporg-ratings\" aria-label=\"5 out of 5 stars\" data-title-template=\"%s out of 5 stars\" data-rating=\"5\" style=\"color:#ffb900;\"><span class=\"star dashicons dashicons-star-filled\"></span><span class=\"star dashicons dashicons-star-filled\"></span><span class=\"star dashicons dashicons-star-filled\"></span><span class=\"star dashicons dashicons-star-filled\"></span><span class=\"star dashicons dashicons-star-filled\"></span></div>				</div>\n			</div>\n			<p class=\"reviewer\">\n				By <a href=\"https://profiles.wordpress.org/legar14\"><img alt=\'\' src=\'https://secure.gravatar.com/avatar/c76c46ada7c24acf99e6cd256664434b?s=16&#038;d=monsterid&#038;r=g\' srcset=\'https://secure.gravatar.com/avatar/c76c46ada7c24acf99e6cd256664434b?s=32&#038;d=monsterid&#038;r=g 2x\' class=\'avatar avatar-16 photo\' height=\'16\' width=\'16\' /></a><a href=\"https://profiles.wordpress.org/legar14\" class=\"reviewer-name\">legar14</a> on <span class=\"review-date\">October 20, 2019</span>			</p>\n		</div>\n	</div>\n	<div class=\"review-body\">It is wonderful, very easy to use, simple, efficient, top of the art, incredible simple and has the hability to attach files also! thank you Tamayoshi</div>\n</div>\n<div class=\"review\">\n	<div class=\"review-head\">\n		<div class=\"reviewer-info\">\n			<div class=\"review-title-section\">\n				<h4 class=\"review-title\">A GREAT PARTNER</h4>\n				<div class=\"star-rating\">\n				<div class=\"wporg-ratings\" aria-label=\"5 out of 5 stars\" data-title-template=\"%s out of 5 stars\" data-rating=\"5\" style=\"color:#ffb900;\"><span class=\"star dashicons dashicons-star-filled\"></span><span class=\"star dashicons dashicons-star-filled\"></span><span class=\"star dashicons dashicons-star-filled\"></span><span class=\"star dashicons dashicons-star-filled\"></span><span class=\"star dashicons dashicons-star-filled\"></span></div>				</div>\n			</div>\n			<p class=\"reviewer\">\n				By <a href=\"https://profiles.wordpress.org/leopedrazac2\"><img alt=\'\' src=\'https://secure.gravatar.com/avatar/9a2117199f4cdaab96b65f3af23e15c7?s=16&#038;d=monsterid&#038;r=g\' srcset=\'https://secure.gravatar.com/avatar/9a2117199f4cdaab96b65f3af23e15c7?s=32&#038;d=monsterid&#038;r=g 2x\' class=\'avatar avatar-16 photo\' height=\'16\' width=\'16\' /></a><a href=\"https://profiles.wordpress.org/leopedrazac2\" class=\"reviewer-name\">leopedrazac2</a> on <span class=\"review-date\">October 18, 2019</span>			</p>\n		</div>\n	</div>\n	<div class=\"review-body\">It is a great work tool, thanks.</div>\n</div>\n\";}s:13:\"download_link\";s:63:\"https://downloads.wordpress.org/plugin/contact-form-7.5.1.5.zip\";s:11:\"screenshots\";a:1:{i:1;a:2:{s:3:\"src\";s:67:\"https://ps.w.org/contact-form-7/assets/screenshot-1.png?rev=1176454\";s:7:\"caption\";s:16:\"screenshot-1.png\";}}s:4:\"tags\";a:5:{s:7:\"contact\";s:7:\"contact\";s:12:\"contact-form\";s:12:\"contact form\";s:5:\"email\";s:5:\"email\";s:8:\"feedback\";s:8:\"feedback\";s:4:\"form\";s:4:\"form\";}s:8:\"versions\";a:138:{s:3:\"1.1\";s:61:\"https://downloads.wordpress.org/plugin/contact-form-7.1.1.zip\";s:4:\"1.10\";s:62:\"https://downloads.wordpress.org/plugin/contact-form-7.1.10.zip\";s:8:\"1.10.0.1\";s:66:\"https://downloads.wordpress.org/plugin/contact-form-7.1.10.0.1.zip\";s:6:\"1.10.1\";s:64:\"https://downloads.wordpress.org/plugin/contact-form-7.1.10.1.zip\";s:3:\"1.2\";s:61:\"https://downloads.wordpress.org/plugin/contact-form-7.1.2.zip\";s:3:\"1.3\";s:61:\"https://downloads.wordpress.org/plugin/contact-form-7.1.3.zip\";s:5:\"1.3.1\";s:63:\"https://downloads.wordpress.org/plugin/contact-form-7.1.3.1.zip\";s:5:\"1.3.2\";s:63:\"https://downloads.wordpress.org/plugin/contact-form-7.1.3.2.zip\";s:3:\"1.4\";s:61:\"https://downloads.wordpress.org/plugin/contact-form-7.1.4.zip\";s:5:\"1.4.1\";s:63:\"https://downloads.wordpress.org/plugin/contact-form-7.1.4.1.zip\";s:5:\"1.4.2\";s:63:\"https://downloads.wordpress.org/plugin/contact-form-7.1.4.2.zip\";s:5:\"1.4.3\";s:63:\"https://downloads.wordpress.org/plugin/contact-form-7.1.4.3.zip\";s:5:\"1.4.4\";s:63:\"https://downloads.wordpress.org/plugin/contact-form-7.1.4.4.zip\";s:3:\"1.5\";s:61:\"https://downloads.wordpress.org/plugin/contact-form-7.1.5.zip\";s:3:\"1.6\";s:61:\"https://downloads.wordpress.org/plugin/contact-form-7.1.6.zip\";s:5:\"1.6.1\";s:63:\"https://downloads.wordpress.org/plugin/contact-form-7.1.6.1.zip\";s:3:\"1.7\";s:61:\"https://downloads.wordpress.org/plugin/contact-form-7.1.7.zip\";s:5:\"1.7.1\";s:63:\"https://downloads.wordpress.org/plugin/contact-form-7.1.7.1.zip\";s:5:\"1.7.2\";s:63:\"https://downloads.wordpress.org/plugin/contact-form-7.1.7.2.zip\";s:5:\"1.7.4\";s:63:\"https://downloads.wordpress.org/plugin/contact-form-7.1.7.4.zip\";s:5:\"1.7.5\";s:63:\"https://downloads.wordpress.org/plugin/contact-form-7.1.7.5.zip\";s:5:\"1.7.6\";s:63:\"https://downloads.wordpress.org/plugin/contact-form-7.1.7.6.zip\";s:7:\"1.7.6.1\";s:65:\"https://downloads.wordpress.org/plugin/contact-form-7.1.7.6.1.zip\";s:5:\"1.7.7\";s:63:\"https://downloads.wordpress.org/plugin/contact-form-7.1.7.7.zip\";s:7:\"1.7.7.1\";s:65:\"https://downloads.wordpress.org/plugin/contact-form-7.1.7.7.1.zip\";s:5:\"1.7.8\";s:63:\"https://downloads.wordpress.org/plugin/contact-form-7.1.7.8.zip\";s:3:\"1.8\";s:61:\"https://downloads.wordpress.org/plugin/contact-form-7.1.8.zip\";s:7:\"1.8.0.1\";s:65:\"https://downloads.wordpress.org/plugin/contact-form-7.1.8.0.1.zip\";s:7:\"1.8.0.2\";s:65:\"https://downloads.wordpress.org/plugin/contact-form-7.1.8.0.2.zip\";s:7:\"1.8.0.3\";s:65:\"https://downloads.wordpress.org/plugin/contact-form-7.1.8.0.3.zip\";s:7:\"1.8.0.4\";s:65:\"https://downloads.wordpress.org/plugin/contact-form-7.1.8.0.4.zip\";s:5:\"1.8.1\";s:63:\"https://downloads.wordpress.org/plugin/contact-form-7.1.8.1.zip\";s:7:\"1.8.1.1\";s:65:\"https://downloads.wordpress.org/plugin/contact-form-7.1.8.1.1.zip\";s:3:\"1.9\";s:61:\"https://downloads.wordpress.org/plugin/contact-form-7.1.9.zip\";s:5:\"1.9.1\";s:63:\"https://downloads.wordpress.org/plugin/contact-form-7.1.9.1.zip\";s:5:\"1.9.2\";s:63:\"https://downloads.wordpress.org/plugin/contact-form-7.1.9.2.zip\";s:7:\"1.9.2.1\";s:65:\"https://downloads.wordpress.org/plugin/contact-form-7.1.9.2.1.zip\";s:7:\"1.9.2.2\";s:65:\"https://downloads.wordpress.org/plugin/contact-form-7.1.9.2.2.zip\";s:5:\"1.9.3\";s:63:\"https://downloads.wordpress.org/plugin/contact-form-7.1.9.3.zip\";s:5:\"1.9.4\";s:63:\"https://downloads.wordpress.org/plugin/contact-form-7.1.9.4.zip\";s:5:\"1.9.5\";s:63:\"https://downloads.wordpress.org/plugin/contact-form-7.1.9.5.zip\";s:7:\"1.9.5.1\";s:65:\"https://downloads.wordpress.org/plugin/contact-form-7.1.9.5.1.zip\";s:3:\"2.0\";s:61:\"https://downloads.wordpress.org/plugin/contact-form-7.2.0.zip\";s:8:\"2.0-beta\";s:66:\"https://downloads.wordpress.org/plugin/contact-form-7.2.0-beta.zip\";s:5:\"2.0.1\";s:63:\"https://downloads.wordpress.org/plugin/contact-form-7.2.0.1.zip\";s:5:\"2.0.2\";s:63:\"https://downloads.wordpress.org/plugin/contact-form-7.2.0.2.zip\";s:5:\"2.0.3\";s:63:\"https://downloads.wordpress.org/plugin/contact-form-7.2.0.3.zip\";s:5:\"2.0.4\";s:63:\"https://downloads.wordpress.org/plugin/contact-form-7.2.0.4.zip\";s:5:\"2.0.5\";s:63:\"https://downloads.wordpress.org/plugin/contact-form-7.2.0.5.zip\";s:5:\"2.0.6\";s:63:\"https://downloads.wordpress.org/plugin/contact-form-7.2.0.6.zip\";s:5:\"2.0.7\";s:63:\"https://downloads.wordpress.org/plugin/contact-form-7.2.0.7.zip\";s:3:\"2.1\";s:61:\"https://downloads.wordpress.org/plugin/contact-form-7.2.1.zip\";s:5:\"2.1.1\";s:63:\"https://downloads.wordpress.org/plugin/contact-form-7.2.1.1.zip\";s:5:\"2.1.2\";s:63:\"https://downloads.wordpress.org/plugin/contact-form-7.2.1.2.zip\";s:3:\"2.2\";s:61:\"https://downloads.wordpress.org/plugin/contact-form-7.2.2.zip\";s:5:\"2.2.1\";s:63:\"https://downloads.wordpress.org/plugin/contact-form-7.2.2.1.zip\";s:3:\"2.3\";s:61:\"https://downloads.wordpress.org/plugin/contact-form-7.2.3.zip\";s:5:\"2.3.1\";s:63:\"https://downloads.wordpress.org/plugin/contact-form-7.2.3.1.zip\";s:3:\"2.4\";s:61:\"https://downloads.wordpress.org/plugin/contact-form-7.2.4.zip\";s:5:\"2.4.1\";s:63:\"https://downloads.wordpress.org/plugin/contact-form-7.2.4.1.zip\";s:5:\"2.4.2\";s:63:\"https://downloads.wordpress.org/plugin/contact-form-7.2.4.2.zip\";s:5:\"2.4.3\";s:63:\"https://downloads.wordpress.org/plugin/contact-form-7.2.4.3.zip\";s:5:\"2.4.4\";s:63:\"https://downloads.wordpress.org/plugin/contact-form-7.2.4.4.zip\";s:5:\"2.4.5\";s:63:\"https://downloads.wordpress.org/plugin/contact-form-7.2.4.5.zip\";s:5:\"2.4.6\";s:63:\"https://downloads.wordpress.org/plugin/contact-form-7.2.4.6.zip\";s:3:\"3.0\";s:61:\"https://downloads.wordpress.org/plugin/contact-form-7.3.0.zip\";s:8:\"3.0-beta\";s:66:\"https://downloads.wordpress.org/plugin/contact-form-7.3.0-beta.zip\";s:5:\"3.0.1\";s:63:\"https://downloads.wordpress.org/plugin/contact-form-7.3.0.1.zip\";s:5:\"3.0.2\";s:63:\"https://downloads.wordpress.org/plugin/contact-form-7.3.0.2.zip\";s:7:\"3.0.2.1\";s:65:\"https://downloads.wordpress.org/plugin/contact-form-7.3.0.2.1.zip\";s:3:\"3.1\";s:61:\"https://downloads.wordpress.org/plugin/contact-form-7.3.1.zip\";s:5:\"3.1.1\";s:63:\"https://downloads.wordpress.org/plugin/contact-form-7.3.1.1.zip\";s:5:\"3.1.2\";s:63:\"https://downloads.wordpress.org/plugin/contact-form-7.3.1.2.zip\";s:3:\"3.2\";s:61:\"https://downloads.wordpress.org/plugin/contact-form-7.3.2.zip\";s:5:\"3.2.1\";s:63:\"https://downloads.wordpress.org/plugin/contact-form-7.3.2.1.zip\";s:3:\"3.3\";s:61:\"https://downloads.wordpress.org/plugin/contact-form-7.3.3.zip\";s:5:\"3.3.1\";s:63:\"https://downloads.wordpress.org/plugin/contact-form-7.3.3.1.zip\";s:5:\"3.3.2\";s:63:\"https://downloads.wordpress.org/plugin/contact-form-7.3.3.2.zip\";s:5:\"3.3.3\";s:63:\"https://downloads.wordpress.org/plugin/contact-form-7.3.3.3.zip\";s:3:\"3.4\";s:61:\"https://downloads.wordpress.org/plugin/contact-form-7.3.4.zip\";s:5:\"3.4.1\";s:63:\"https://downloads.wordpress.org/plugin/contact-form-7.3.4.1.zip\";s:5:\"3.4.2\";s:63:\"https://downloads.wordpress.org/plugin/contact-form-7.3.4.2.zip\";s:3:\"3.5\";s:61:\"https://downloads.wordpress.org/plugin/contact-form-7.3.5.zip\";s:5:\"3.5.1\";s:63:\"https://downloads.wordpress.org/plugin/contact-form-7.3.5.1.zip\";s:5:\"3.5.2\";s:63:\"https://downloads.wordpress.org/plugin/contact-form-7.3.5.2.zip\";s:5:\"3.5.3\";s:63:\"https://downloads.wordpress.org/plugin/contact-form-7.3.5.3.zip\";s:5:\"3.5.4\";s:63:\"https://downloads.wordpress.org/plugin/contact-form-7.3.5.4.zip\";s:3:\"3.6\";s:61:\"https://downloads.wordpress.org/plugin/contact-form-7.3.6.zip\";s:3:\"3.7\";s:61:\"https://downloads.wordpress.org/plugin/contact-form-7.3.7.zip\";s:5:\"3.7.1\";s:63:\"https://downloads.wordpress.org/plugin/contact-form-7.3.7.1.zip\";s:5:\"3.7.2\";s:63:\"https://downloads.wordpress.org/plugin/contact-form-7.3.7.2.zip\";s:3:\"3.8\";s:61:\"https://downloads.wordpress.org/plugin/contact-form-7.3.8.zip\";s:5:\"3.8.1\";s:63:\"https://downloads.wordpress.org/plugin/contact-form-7.3.8.1.zip\";s:3:\"3.9\";s:61:\"https://downloads.wordpress.org/plugin/contact-form-7.3.9.zip\";s:8:\"3.9-beta\";s:66:\"https://downloads.wordpress.org/plugin/contact-form-7.3.9-beta.zip\";s:5:\"3.9.1\";s:63:\"https://downloads.wordpress.org/plugin/contact-form-7.3.9.1.zip\";s:5:\"3.9.2\";s:63:\"https://downloads.wordpress.org/plugin/contact-form-7.3.9.2.zip\";s:5:\"3.9.3\";s:63:\"https://downloads.wordpress.org/plugin/contact-form-7.3.9.3.zip\";s:3:\"4.0\";s:61:\"https://downloads.wordpress.org/plugin/contact-form-7.4.0.zip\";s:5:\"4.0.1\";s:63:\"https://downloads.wordpress.org/plugin/contact-form-7.4.0.1.zip\";s:5:\"4.0.2\";s:63:\"https://downloads.wordpress.org/plugin/contact-form-7.4.0.2.zip\";s:5:\"4.0.3\";s:63:\"https://downloads.wordpress.org/plugin/contact-form-7.4.0.3.zip\";s:3:\"4.1\";s:61:\"https://downloads.wordpress.org/plugin/contact-form-7.4.1.zip\";s:8:\"4.1-beta\";s:66:\"https://downloads.wordpress.org/plugin/contact-form-7.4.1-beta.zip\";s:5:\"4.1.1\";s:63:\"https://downloads.wordpress.org/plugin/contact-form-7.4.1.1.zip\";s:5:\"4.1.2\";s:63:\"https://downloads.wordpress.org/plugin/contact-form-7.4.1.2.zip\";s:3:\"4.2\";s:61:\"https://downloads.wordpress.org/plugin/contact-form-7.4.2.zip\";s:8:\"4.2-beta\";s:66:\"https://downloads.wordpress.org/plugin/contact-form-7.4.2-beta.zip\";s:5:\"4.2.1\";s:63:\"https://downloads.wordpress.org/plugin/contact-form-7.4.2.1.zip\";s:5:\"4.2.2\";s:63:\"https://downloads.wordpress.org/plugin/contact-form-7.4.2.2.zip\";s:3:\"4.3\";s:61:\"https://downloads.wordpress.org/plugin/contact-form-7.4.3.zip\";s:5:\"4.3.1\";s:63:\"https://downloads.wordpress.org/plugin/contact-form-7.4.3.1.zip\";s:3:\"4.4\";s:61:\"https://downloads.wordpress.org/plugin/contact-form-7.4.4.zip\";s:5:\"4.4.1\";s:63:\"https://downloads.wordpress.org/plugin/contact-form-7.4.4.1.zip\";s:5:\"4.4.2\";s:63:\"https://downloads.wordpress.org/plugin/contact-form-7.4.4.2.zip\";s:3:\"4.5\";s:61:\"https://downloads.wordpress.org/plugin/contact-form-7.4.5.zip\";s:5:\"4.5.1\";s:63:\"https://downloads.wordpress.org/plugin/contact-form-7.4.5.1.zip\";s:3:\"4.6\";s:61:\"https://downloads.wordpress.org/plugin/contact-form-7.4.6.zip\";s:5:\"4.6.1\";s:63:\"https://downloads.wordpress.org/plugin/contact-form-7.4.6.1.zip\";s:3:\"4.7\";s:61:\"https://downloads.wordpress.org/plugin/contact-form-7.4.7.zip\";s:3:\"4.8\";s:61:\"https://downloads.wordpress.org/plugin/contact-form-7.4.8.zip\";s:5:\"4.8.1\";s:63:\"https://downloads.wordpress.org/plugin/contact-form-7.4.8.1.zip\";s:3:\"4.9\";s:61:\"https://downloads.wordpress.org/plugin/contact-form-7.4.9.zip\";s:5:\"4.9.1\";s:63:\"https://downloads.wordpress.org/plugin/contact-form-7.4.9.1.zip\";s:5:\"4.9.2\";s:63:\"https://downloads.wordpress.org/plugin/contact-form-7.4.9.2.zip\";s:3:\"5.0\";s:61:\"https://downloads.wordpress.org/plugin/contact-form-7.5.0.zip\";s:5:\"5.0.1\";s:63:\"https://downloads.wordpress.org/plugin/contact-form-7.5.0.1.zip\";s:5:\"5.0.2\";s:63:\"https://downloads.wordpress.org/plugin/contact-form-7.5.0.2.zip\";s:5:\"5.0.3\";s:63:\"https://downloads.wordpress.org/plugin/contact-form-7.5.0.3.zip\";s:5:\"5.0.4\";s:63:\"https://downloads.wordpress.org/plugin/contact-form-7.5.0.4.zip\";s:5:\"5.0.5\";s:63:\"https://downloads.wordpress.org/plugin/contact-form-7.5.0.5.zip\";s:3:\"5.1\";s:61:\"https://downloads.wordpress.org/plugin/contact-form-7.5.1.zip\";s:5:\"5.1.1\";s:63:\"https://downloads.wordpress.org/plugin/contact-form-7.5.1.1.zip\";s:5:\"5.1.2\";s:63:\"https://downloads.wordpress.org/plugin/contact-form-7.5.1.2.zip\";s:5:\"5.1.3\";s:63:\"https://downloads.wordpress.org/plugin/contact-form-7.5.1.3.zip\";s:5:\"5.1.4\";s:63:\"https://downloads.wordpress.org/plugin/contact-form-7.5.1.4.zip\";s:5:\"5.1.5\";s:63:\"https://downloads.wordpress.org/plugin/contact-form-7.5.1.5.zip\";s:5:\"trunk\";s:57:\"https://downloads.wordpress.org/plugin/contact-form-7.zip\";}s:11:\"donate_link\";s:32:\"https://contactform7.com/donate/\";s:7:\"banners\";a:2:{s:3:\"low\";s:68:\"https://ps.w.org/contact-form-7/assets/banner-772x250.png?rev=880427\";s:4:\"high\";s:69:\"https://ps.w.org/contact-form-7/assets/banner-1544x500.png?rev=860901\";}s:18:\"author_block_count\";i:0;s:19:\"author_block_rating\";i:82;}}', 'no');
INSERT INTO `wp_options` (`option_id`, `option_name`, `option_value`, `autoload`) VALUES
(25322, 'fusion_core_version', '5.11.7', 'yes'),
(25323, 'widget_fusion_author-widget', 'a:1:{s:12:\"_multiwidget\";i:1;}', 'yes'),
(25324, 'widget_avada-vertical-menu-widget', 'a:1:{s:12:\"_multiwidget\";i:1;}', 'yes'),
(25342, 'fusion_dynamic_css_time', '1713199204', 'yes'),
(25349, '_transient_timeout_fusion_dynamic_css_08cc40fc436613744fa707f57c15a7c1', '1573649187', 'no'),
(25351, 'fusion_builder_version', '3.11.7', 'yes'),
(25411, 'fusion_applied_patches', 'a:6:{i:0;i:417126;i:1;i:417127;i:2;i:417137;i:3;i:417139;i:4;i:417158;i:5;i:417159;}', 'no'),
(25468, '_transient_timeout_fusion_dynamic_css_b8467ea07e17865cd2725253eb7360a0', '1573649507', 'no'),
(25473, 'avada_500_backup_fusion_slider_data', 'a:1:{i:24;a:1:{s:13:\"pyre_button_1\";s:430:\"[button link=\"https://msla.co.za/lodge/reservations/\" color=\"default\" size=\"xlarge\" type=\"\" shape=\"\" target=\"_self\" title=\"\" gradient_colors=\"|\" gradient_hover_colors=\"|\" accent_color=\"\" accent_hover_color=\"\" bevel_color=\"\" border_width=\"0px\" shadow=\"no\" icon=\"\" icon_divider=\"yes\" icon_position=\"left\" modal=\"\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" class=\"\" id=\"\"]MAKE A RESERVATION INQUIRY[/button]\";}}', 'yes'),
(25474, 'avada_500_backup_widget_text', 'a:4:{i:1;a:0:{}i:2;a:3:{s:5:\"title\";s:21:\"WEEKEND ONLY SPECIALS\";s:4:\"text\";s:42:\"15% Discount. Arrive Friday Depart Sunday.\";s:6:\"filter\";b:0;}i:3;a:3:{s:5:\"title\";s:21:\"WEEKDAY ONLY SPECIALS\";s:4:\"text\";s:86:\"Book any 3 weekdays, Monday, Tuesday, Wednesday or Thursday, and only pay for 2 days. \";s:6:\"filter\";b:0;}s:12:\"_multiwidget\";i:1;}', 'yes');
INSERT INTO `wp_options` (`option_id`, `option_name`, `option_value`, `autoload`) VALUES
(25475, 'fusion_options_500_backup', 'a:1195:{s:10:\"responsive\";s:1:\"1\";s:12:\"ipad_potrait\";s:1:\"0\";s:16:\"google_analytics\";s:0:\"\";s:10:\"space_head\";s:0:\"\";s:10:\"space_body\";s:0:\"\";s:6:\"layout\";s:4:\"wide\";s:10:\"site_width\";s:6:\"1100px\";s:13:\"content_width\";s:3:\"77%\";s:13:\"sidebar_width\";s:3:\"23%\";s:15:\"content_width_2\";s:3:\"58%\";s:17:\"sidebar_2_1_width\";s:3:\"21%\";s:17:\"sidebar_2_2_width\";s:3:\"21%\";s:15:\"header_position\";s:3:\"top\";s:13:\"header_layout\";s:2:\"v3\";s:17:\"side_header_width\";i:280;s:23:\"side_header_break_point\";i:1023;s:13:\"header_shadow\";s:1:\"0\";s:16:\"header_100_width\";s:1:\"0\";s:15:\"slider_position\";s:5:\"below\";s:19:\"header_left_content\";s:12:\"contact_info\";s:20:\"header_right_content\";s:10:\"navigation\";s:17:\"header_v4_content\";s:18:\"tagline_and_search\";s:13:\"header_number\";s:25:\"Call Us Today! 0317656046\";s:12:\"header_email\";s:15:\"info@msla.co.za\";s:18:\"header_banner_code\";s:0:\"\";s:14:\"header_tagline\";s:19:\"Insert Tagline Here\";s:15:\"header_bg_image\";s:0:\"\";s:14:\"header_bg_full\";s:1:\"0\";s:18:\"header_bg_parallax\";s:1:\"1\";s:16:\"header_bg_repeat\";s:6:\"repeat\";s:17:\"margin_header_top\";s:3:\"0px\";s:20:\"margin_header_bottom\";s:3:\"0px\";s:19:\"padding_header_left\";s:3:\"0px\";s:20:\"padding_header_right\";s:3:\"0px\";s:29:\"header_social_links_font_size\";s:4:\"16px\";s:30:\"header_social_links_icon_color\";s:7:\"#ffffff\";s:25:\"header_social_links_boxed\";s:1:\"0\";s:29:\"header_social_links_box_color\";s:7:\"#e8e8e8\";s:32:\"header_social_links_boxed_radius\";s:3:\"4px\";s:33:\"header_social_links_boxed_padding\";s:3:\"8px\";s:37:\"header_social_links_tooltip_placement\";s:6:\"bottom\";s:13:\"header_sticky\";s:1:\"1\";s:20:\"header_sticky_tablet\";s:1:\"0\";s:20:\"header_sticky_mobile\";s:1:\"0\";s:26:\"header_sticky_type2_layout\";s:13:\"menu_and_logo\";s:25:\"header_sticky_nav_padding\";s:2:\"45\";s:27:\"header_sticky_nav_font_size\";s:4:\"14px\";s:4:\"logo\";a:3:{s:3:\"url\";s:65:\"http://msla.co.za/lodge/wp-content/uploads/2016/10/SMALL-LOGO.png\";s:5:\"width\";i:205;s:6:\"height\";i:60;}s:11:\"logo_retina\";s:0:\"\";s:17:\"retina_logo_width\";s:0:\"\";s:18:\"retina_logo_height\";s:0:\"\";s:18:\"sticky_header_logo\";a:3:{s:3:\"url\";s:67:\"http://msla.co.za/lodge/wp-content/uploads/2016/10/SMALL-LOGO-1.png\";s:5:\"width\";i:205;s:6:\"height\";i:60;}s:25:\"sticky_header_logo_retina\";s:0:\"\";s:24:\"sticky_retina_logo_width\";s:0:\"\";s:25:\"sticky_retina_logo_height\";s:0:\"\";s:11:\"mobile_logo\";s:0:\"\";s:18:\"mobile_logo_retina\";s:0:\"\";s:24:\"mobile_retina_logo_width\";s:0:\"\";s:25:\"mobile_retina_logo_height\";s:0:\"\";s:14:\"logo_alignment\";s:4:\"left\";s:16:\"margin_logo_left\";s:3:\"0px\";s:17:\"margin_logo_right\";s:3:\"0px\";s:15:\"margin_logo_top\";s:4:\"31px\";s:18:\"margin_logo_bottom\";s:4:\"31px\";s:7:\"favicon\";s:0:\"\";s:11:\"iphone_icon\";s:0:\"\";s:18:\"iphone_icon_retina\";s:0:\"\";s:9:\"ipad_icon\";s:0:\"\";s:16:\"ipad_icon_retina\";s:0:\"\";s:15:\"menu_text_align\";s:4:\"left\";s:10:\"nav_height\";i:86;s:20:\"nav_highlight_border\";i:3;s:11:\"nav_padding\";i:45;s:19:\"dropdown_menu_width\";i:170;s:23:\"topmenu_dropwdown_width\";i:100;s:18:\"megamenu_max_width\";i:1100;s:19:\"megamenu_title_size\";s:4:\"18px\";s:15:\"megamenu_shadow\";s:1:\"1\";s:20:\"main_nav_search_icon\";s:1:\"0\";s:20:\"main_nav_icon_circle\";s:1:\"0\";s:18:\"mobile_menu_design\";s:7:\"classic\";s:18:\"mobile_nav_padding\";i:25;s:22:\"mobile_menu_text_align\";s:4:\"left\";s:28:\"mobile_menu_icons_top_margin\";i:0;s:22:\"mobile_menu_nav_height\";i:35;s:27:\"mobile_nav_submenu_slideout\";s:1:\"1\";s:14:\"page_title_bar\";s:15:\"bar_and_content\";s:19:\"page_title_bar_text\";s:1:\"1\";s:20:\"page_title_100_width\";s:1:\"0\";s:17:\"page_title_height\";s:4:\"87px\";s:24:\"page_title_mobile_height\";s:4:\"70px\";s:20:\"page_title_alignment\";s:4:\"left\";s:13:\"page_title_bg\";a:1:{s:3:\"url\";s:85:\"http://localhost/assagaylodge/wp-content/themes/Avada/assets/images/page_title_bg.png\";}s:20:\"page_title_bg_retina\";s:0:\"\";s:18:\"page_title_bg_full\";s:1:\"0\";s:22:\"page_title_bg_parallax\";s:1:\"0\";s:17:\"page_title_fading\";s:1:\"0\";s:17:\"page_title_bar_bs\";s:11:\"breadcrumbs\";s:17:\"breadcrumb_mobile\";s:1:\"0\";s:16:\"breacrumb_prefix\";s:0:\"\";s:20:\"breadcrumb_separator\";s:1:\"/\";s:33:\"breadcrumb_show_post_type_archive\";s:1:\"0\";s:26:\"breadcrumb_show_categories\";s:1:\"1\";s:18:\"slidingbar_widgets\";s:1:\"0\";s:25:\"mobile_slidingbar_widgets\";s:1:\"1\";s:23:\"slidingbar_open_on_load\";s:1:\"0\";s:26:\"slidingbar_widgets_columns\";i:2;s:16:\"footer_100_width\";s:1:\"0\";s:22:\"footer_special_effects\";s:4:\"none\";s:20:\"footer_sticky_height\";s:1:\"0\";s:14:\"footer_widgets\";s:1:\"1\";s:22:\"footer_widgets_columns\";i:4;s:16:\"footerw_bg_image\";s:0:\"\";s:15:\"footerw_bg_full\";s:1:\"0\";s:17:\"footerw_bg_repeat\";s:6:\"repeat\";s:14:\"footerw_bg_pos\";s:13:\"center center\";s:23:\"footer_area_top_padding\";s:4:\"43px\";s:26:\"footer_area_bottom_padding\";s:4:\"40px\";s:24:\"footer_area_left_padding\";s:3:\"0px\";s:25:\"footer_area_right_padding\";s:3:\"0px\";s:16:\"footer_copyright\";s:1:\"1\";s:11:\"footer_text\";s:57:\"Copyright 1998 Assagay Forest Lodge | All Rights Reserved\";s:21:\"copyright_top_padding\";s:4:\"18px\";s:24:\"copyright_bottom_padding\";s:4:\"16px\";s:12:\"icons_footer\";s:1:\"1\";s:29:\"footer_social_links_font_size\";s:4:\"20px\";s:30:\"footer_social_links_icon_color\";s:7:\"#46494a\";s:25:\"footer_social_links_boxed\";s:1:\"0\";s:29:\"footer_social_links_box_color\";s:7:\"#222222\";s:32:\"footer_social_links_boxed_radius\";s:3:\"4px\";s:33:\"footer_social_links_boxed_padding\";s:3:\"8px\";s:37:\"footer_social_links_tooltip_placement\";s:3:\"top\";s:20:\"pages_global_sidebar\";s:1:\"0\";s:13:\"pages_sidebar\";s:4:\"None\";s:15:\"pages_sidebar_2\";s:4:\"None\";s:19:\"default_sidebar_pos\";s:5:\"Right\";s:24:\"portfolio_global_sidebar\";s:1:\"0\";s:17:\"portfolio_sidebar\";s:4:\"None\";s:19:\"portfolio_sidebar_2\";s:4:\"None\";s:26:\"portfolio_sidebar_position\";s:5:\"Right\";s:25:\"portfolio_archive_sidebar\";s:4:\"None\";s:27:\"portfolio_archive_sidebar_2\";s:4:\"None\";s:20:\"posts_global_sidebar\";s:1:\"0\";s:13:\"posts_sidebar\";s:4:\"None\";s:15:\"posts_sidebar_2\";s:4:\"None\";s:21:\"blog_sidebar_position\";s:5:\"Right\";s:20:\"blog_archive_sidebar\";s:4:\"None\";s:22:\"blog_archive_sidebar_2\";s:4:\"None\";s:18:\"woo_global_sidebar\";s:1:\"0\";s:11:\"woo_sidebar\";s:4:\"None\";s:13:\"woo_sidebar_2\";s:4:\"None\";s:20:\"woo_sidebar_position\";s:5:\"Right\";s:27:\"woocommerce_archive_sidebar\";s:4:\"None\";s:29:\"woocommerce_archive_sidebar_2\";s:4:\"None\";s:22:\"bbpress_global_sidebar\";s:1:\"0\";s:15:\"ppbress_sidebar\";s:4:\"None\";s:17:\"ppbress_sidebar_2\";s:4:\"None\";s:24:\"bbpress_sidebar_position\";s:5:\"Right\";s:14:\"search_sidebar\";s:12:\"Blog Sidebar\";s:16:\"search_sidebar_2\";s:4:\"None\";s:23:\"search_sidebar_position\";s:5:\"Right\";s:8:\"bg_image\";s:0:\"\";s:7:\"bg_full\";s:1:\"0\";s:9:\"bg_repeat\";s:6:\"repeat\";s:8:\"bg_color\";s:7:\"#ffffff\";s:17:\"bg_pattern_option\";s:1:\"0\";s:10:\"bg_pattern\";s:8:\"pattern1\";s:16:\"content_bg_image\";s:0:\"\";s:15:\"content_bg_full\";s:1:\"0\";s:17:\"content_bg_repeat\";s:6:\"repeat\";s:16:\"custom_font_woff\";s:0:\"\";s:15:\"custom_font_ttf\";s:0:\"\";s:15:\"custom_font_svg\";s:0:\"\";s:15:\"custom_font_eot\";s:0:\"\";s:11:\"google_body\";s:7:\"PT Sans\";s:10:\"google_nav\";s:10:\"Antic Slab\";s:15:\"google_headings\";s:10:\"Antic Slab\";s:22:\"google_footer_headings\";s:7:\"PT Sans\";s:13:\"google_button\";s:7:\"PT Sans\";s:14:\"gfont_settings\";s:40:\"400,400italic,700,700italic&subset=latin\";s:13:\"standard_body\";s:11:\"Select Font\";s:12:\"standard_nav\";s:11:\"Select Font\";s:17:\"standard_headings\";s:11:\"Select Font\";s:24:\"standard_footer_headings\";s:11:\"Select Font\";s:15:\"standard_button\";s:11:\"Select Font\";s:21:\"typography_responsive\";s:1:\"0\";s:22:\"typography_sensitivity\";d:0.59999999999999997779553950749686919152736663818359375;s:17:\"typography_factor\";d:1.5;s:14:\"body_font_size\";s:2:\"13\";s:22:\"nav_dropdown_font_size\";s:4:\"13px\";s:14:\"snav_font_size\";s:4:\"12px\";s:18:\"side_nav_font_size\";s:4:\"14px\";s:21:\"mobile_menu_font_size\";s:4:\"12px\";s:21:\"breadcrumbs_font_size\";s:4:\"10px\";s:15:\"sidew_font_size\";s:4:\"13px\";s:20:\"slidingbar_font_size\";s:4:\"13px\";s:15:\"footw_font_size\";s:2:\"13\";s:19:\"copyright_font_size\";s:4:\"12px\";s:12:\"h1_font_size\";s:2:\"34\";s:12:\"h2_font_size\";s:2:\"18\";s:12:\"h3_font_size\";s:2:\"16\";s:12:\"h4_font_size\";s:2:\"13\";s:12:\"h5_font_size\";s:2:\"12\";s:12:\"h6_font_size\";s:2:\"11\";s:17:\"tagline_font_size\";s:4:\"16px\";s:14:\"meta_font_size\";s:4:\"12px\";s:20:\"page_title_font_size\";s:4:\"18px\";s:30:\"page_title_subheader_font_size\";s:4:\"14px\";s:20:\"pagination_font_size\";s:4:\"12px\";s:18:\"woo_icon_font_size\";s:4:\"12px\";s:12:\"body_font_lh\";s:2:\"20\";s:10:\"h1_font_lh\";s:2:\"48\";s:10:\"h2_font_lh\";s:2:\"27\";s:10:\"h3_font_lh\";s:2:\"24\";s:10:\"h4_font_lh\";s:2:\"20\";s:10:\"h5_font_lh\";s:2:\"18\";s:10:\"h6_font_lh\";s:2:\"17\";s:11:\"sec_menu_lh\";s:4:\"44px\";s:16:\"font_weight_body\";s:3:\"400\";s:16:\"font_weight_menu\";s:3:\"400\";s:20:\"font_weight_headings\";s:3:\"400\";s:27:\"font_weight_footer_headings\";s:3:\"400\";s:18:\"font_weight_button\";s:3:\"700\";s:12:\"menu_font_ls\";s:1:\"0\";s:14:\"button_font_ls\";s:1:\"0\";s:13:\"h1_top_margin\";s:4:\"0.67\";s:16:\"h1_bottom_margin\";s:4:\"0.67\";s:13:\"h2_top_margin\";s:1:\"0\";s:16:\"h2_bottom_margin\";s:3:\"1.1\";s:13:\"h3_top_margin\";s:1:\"1\";s:16:\"h3_bottom_margin\";s:1:\"1\";s:13:\"h4_top_margin\";s:4:\"1.33\";s:16:\"h4_bottom_margin\";s:4:\"1.33\";s:13:\"h5_top_margin\";s:4:\"1.67\";s:16:\"h5_bottom_margin\";s:4:\"1.67\";s:13:\"h6_top_margin\";s:4:\"2.33\";s:16:\"h6_bottom_margin\";s:4:\"2.33\";s:11:\"scheme_type\";s:5:\"light\";s:12:\"color_scheme\";s:5:\"Green\";s:13:\"primary_color\";s:7:\"#a0ce4e\";s:19:\"slidingbar_bg_color\";s:7:\"#363839\";s:15:\"header_bg_color\";s:7:\"#ffffff\";s:22:\"header_sticky_bg_color\";s:22:\"rgba(255,255,255,0.97)\";s:19:\"header_border_color\";s:7:\"#e5e5e5\";s:19:\"header_top_bg_color\";s:7:\"#a0ce4e\";s:19:\"page_title_bg_color\";s:7:\"#F6F6F6\";s:23:\"page_title_border_color\";s:7:\"#d2d3d4\";s:16:\"content_bg_color\";s:7:\"#ffffff\";s:16:\"sidebar_bg_color\";s:19:\"rgba(255,255,255,0)\";s:15:\"footer_bg_color\";s:7:\"#363839\";s:19:\"footer_border_color\";s:7:\"#e9eaee\";s:18:\"copyright_bg_color\";s:7:\"#282a2b\";s:22:\"copyright_border_color\";s:7:\"#4b4c4d\";s:24:\"image_gradient_top_color\";s:20:\"rgba(160,206,78,0.8)\";s:27:\"image_gradient_bottom_color\";s:7:\"#a0ce4e\";s:25:\"image_rollover_text_color\";s:7:\"#333333\";s:25:\"image_rollover_icon_color\";s:7:\"#ffffff\";s:28:\"slidingbar_toggle_icon_color\";s:7:\"#ffffff\";s:24:\"slidingbar_divider_color\";s:7:\"#282A2B\";s:20:\"footer_divider_color\";s:7:\"#505152\";s:13:\"form_bg_color\";s:7:\"#ffffff\";s:15:\"form_text_color\";s:7:\"#aaa9a9\";s:17:\"form_border_color\";s:7:\"#d2d2d2\";s:17:\"timeline_bg_color\";s:19:\"rgba(255,255,255,0)\";s:14:\"timeline_color\";s:7:\"#ebeaea\";s:31:\"load_more_posts_button_bg_color\";s:7:\"#ebeaea\";s:12:\"qty_bg_color\";s:7:\"#fbfaf9\";s:18:\"qty_bg_hover_color\";s:7:\"#ffffff\";s:21:\"woo_dropdown_bg_color\";s:7:\"#fbfaf9\";s:23:\"woo_dropdown_text_color\";s:7:\"#333333\";s:25:\"woo_dropdown_border_color\";s:7:\"#dbdbdb\";s:19:\"bbp_forum_header_bg\";s:7:\"#ebeaea\";s:22:\"bbp_forum_border_color\";s:7:\"#ebeaea\";s:16:\"main_top_padding\";s:4:\"55px\";s:19:\"main_bottom_padding\";s:4:\"40px\";s:16:\"hundredp_padding\";s:4:\"30px\";s:15:\"sidebar_padding\";s:3:\"0px\";s:14:\"col_top_margin\";s:3:\"0px\";s:17:\"col_bottom_margin\";s:4:\"20px\";s:22:\"slidingbar_text_shadow\";s:1:\"1\";s:20:\"rollover_text_shadow\";s:1:\"1\";s:18:\"footer_text_shadow\";s:1:\"1\";s:18:\"tagline_font_color\";s:7:\"#747474\";s:16:\"page_title_color\";s:7:\"#333333\";s:8:\"h1_color\";s:7:\"#333333\";s:8:\"h2_color\";s:7:\"#333333\";s:8:\"h3_color\";s:7:\"#333333\";s:8:\"h4_color\";s:7:\"#333333\";s:8:\"h5_color\";s:7:\"#333333\";s:8:\"h6_color\";s:7:\"#333333\";s:15:\"body_text_color\";s:7:\"#747474\";s:10:\"link_color\";s:7:\"#333333\";s:22:\"breadcrumbs_text_color\";s:7:\"#333333\";s:25:\"slidingbar_headings_color\";s:7:\"#DDDDDD\";s:21:\"slidingbar_text_color\";s:7:\"#8C8989\";s:21:\"slidingbar_link_color\";s:7:\"#BFBFBF\";s:21:\"sidebar_heading_color\";s:7:\"#333333\";s:21:\"footer_headings_color\";s:7:\"#DDDDDD\";s:17:\"footer_text_color\";s:7:\"#8C8989\";s:17:\"footer_link_color\";s:7:\"#BFBFBF\";s:17:\"menu_h45_bg_color\";s:7:\"#FFFFFF\";s:22:\"menu_hover_first_color\";s:7:\"#a0ce4e\";s:17:\"menu_sub_bg_color\";s:7:\"#f2efef\";s:19:\"menu_bg_hover_color\";s:7:\"#f8f8f8\";s:14:\"menu_sub_color\";s:7:\"#333333\";s:18:\"menu_sub_sep_color\";s:7:\"#dcdadb\";s:17:\"woo_cart_bg_color\";s:7:\"#fafafa\";s:10:\"snav_color\";s:7:\"#ffffff\";s:29:\"header_top_first_border_color\";s:7:\"#ffffff\";s:23:\"header_top_sub_bg_color\";s:7:\"#ffffff\";s:25:\"header_top_menu_sub_color\";s:7:\"#747474\";s:30:\"header_top_menu_bg_hover_color\";s:7:\"#fafafa\";s:31:\"header_top_menu_sub_hover_color\";s:7:\"#333333\";s:29:\"header_top_menu_sub_sep_color\";s:7:\"#e5e5e5\";s:22:\"mobile_header_bg_color\";s:16:\"rgb(255,255,255)\";s:28:\"mobile_menu_background_color\";s:7:\"#f9f9f9\";s:24:\"mobile_menu_border_color\";s:7:\"#dadada\";s:23:\"mobile_menu_hover_color\";s:7:\"#f6f6f6\";s:22:\"mobile_menu_font_color\";s:7:\"#333333\";s:24:\"mobile_menu_toggle_color\";s:7:\"#dadada\";s:15:\"dates_box_color\";s:7:\"#eef0f2\";s:11:\"button_size\";s:5:\"Large\";s:12:\"button_shape\";s:5:\"Round\";s:11:\"button_type\";s:4:\"Flat\";s:25:\"button_gradient_top_color\";s:7:\"#a0ce4e\";s:28:\"button_gradient_bottom_color\";s:7:\"#a0ce4e\";s:31:\"button_gradient_top_color_hover\";s:7:\"#96c346\";s:34:\"button_gradient_bottom_color_hover\";s:7:\"#96c346\";s:19:\"button_accent_color\";s:7:\"#ffffff\";s:25:\"button_accent_hover_color\";s:7:\"#ffffff\";s:18:\"button_bevel_color\";s:7:\"#54770F\";s:19:\"button_border_width\";i:0;s:18:\"carousel_nav_color\";s:7:\"#999999\";s:20:\"carousel_hover_color\";s:7:\"#808080\";s:16:\"checklist_circle\";s:1:\"1\";s:22:\"checklist_circle_color\";s:7:\"#a0ce4e\";s:21:\"checklist_icons_color\";s:7:\"#ffffff\";s:20:\"content_box_bg_color\";s:19:\"rgba(255,255,255,0)\";s:22:\"content_box_title_size\";s:4:\"18px\";s:23:\"content_box_icon_circle\";s:3:\"yes\";s:21:\"content_box_icon_size\";s:4:\"21px\";s:22:\"content_box_margin_top\";s:3:\"0px\";s:25:\"content_box_margin_bottom\";s:4:\"60px\";s:17:\"counter_box_color\";s:7:\"#a0ce4e\";s:22:\"counter_box_title_size\";s:4:\"50px\";s:21:\"counter_box_icon_size\";s:4:\"50px\";s:22:\"counter_box_body_color\";s:7:\"#747474\";s:21:\"counter_box_body_size\";s:4:\"13px\";s:24:\"counter_box_border_color\";s:7:\"#e0dede\";s:20:\"counter_box_icon_top\";s:2:\"no\";s:20:\"counter_filled_color\";s:7:\"#a0ce4e\";s:22:\"counter_unfilled_color\";s:7:\"#f6f6f6\";s:13:\"dropcap_color\";s:7:\"#a0ce4e\";s:19:\"flip_boxes_front_bg\";s:7:\"#f6f6f6\";s:24:\"flip_boxes_front_heading\";s:7:\"#333333\";s:21:\"flip_boxes_front_text\";s:7:\"#747474\";s:18:\"flip_boxes_back_bg\";s:7:\"#a0ce4e\";s:23:\"flip_boxes_back_heading\";s:7:\"#eeeded\";s:20:\"flip_boxes_back_text\";s:7:\"#ffffff\";s:22:\"flip_boxes_border_size\";i:1;s:23:\"flip_boxes_border_color\";s:19:\"rgba(255,255,255,0)\";s:24:\"flip_boxes_border_radius\";s:3:\"4px\";s:19:\"full_width_bg_color\";s:19:\"rgba(255,255,255,0)\";s:22:\"full_width_border_size\";i:0;s:23:\"full_width_border_color\";s:7:\"#eae9e9\";s:17:\"icon_circle_color\";s:7:\"#333333\";s:17:\"icon_border_color\";s:7:\"#333333\";s:10:\"icon_color\";s:7:\"#ffffff\";s:21:\"imgframe_border_color\";s:7:\"#f6f6f6\";s:22:\"imageframe_border_size\";i:0;s:24:\"imageframe_border_radius\";s:3:\"0px\";s:20:\"imgframe_style_color\";s:7:\"#000000\";s:14:\"modal_bg_color\";s:7:\"#f6f6f6\";s:18:\"modal_border_color\";s:7:\"#ebebeb\";s:19:\"person_border_color\";s:7:\"#f6f6f6\";s:18:\"person_border_size\";i:0;s:20:\"person_border_radius\";s:3:\"0px\";s:18:\"person_style_color\";s:7:\"#000000\";s:24:\"popover_heading_bg_color\";s:7:\"#f6f6f6\";s:24:\"popover_content_bg_color\";s:7:\"#ffffff\";s:20:\"popover_border_color\";s:7:\"#ebebeb\";s:18:\"popover_text_color\";s:7:\"#747474\";s:17:\"popover_placement\";s:3:\"Top\";s:36:\"full_boxed_pricing_box_heading_color\";s:7:\"#333333\";s:29:\"sep_pricing_box_heading_color\";s:7:\"#333333\";s:17:\"pricing_box_color\";s:7:\"#a0ce4e\";s:16:\"pricing_bg_color\";s:7:\"#ffffff\";s:20:\"pricing_border_color\";s:7:\"#f8f8f8\";s:21:\"pricing_divider_color\";s:7:\"#ededed\";s:24:\"progressbar_filled_color\";s:7:\"#a0ce4e\";s:26:\"progressbar_unfilled_color\";s:7:\"#f6f6f6\";s:22:\"progressbar_text_color\";s:7:\"#ffffff\";s:23:\"section_sep_border_size\";i:1;s:14:\"section_sep_bg\";s:7:\"#f6f6f6\";s:24:\"section_sep_border_color\";s:7:\"#f6f6f6\";s:9:\"sep_color\";s:7:\"#e0dede\";s:16:\"separator_circle\";s:1:\"1\";s:21:\"separator_border_size\";i:1;s:20:\"sharing_box_bg_color\";s:7:\"#f6f6f6\";s:30:\"sharing_box_tagline_text_color\";s:7:\"#333333\";s:22:\"social_links_font_size\";s:4:\"16px\";s:23:\"social_links_icon_color\";s:7:\"#bebdbd\";s:18:\"social_links_boxed\";s:1:\"0\";s:22:\"social_links_box_color\";s:7:\"#e8e8e8\";s:25:\"social_links_boxed_radius\";s:3:\"4px\";s:26:\"social_links_boxed_padding\";s:3:\"8px\";s:30:\"social_links_tooltip_placement\";s:3:\"Top\";s:13:\"tabs_bg_color\";s:7:\"#ffffff\";s:19:\"tabs_inactive_color\";s:7:\"#ebeaea\";s:17:\"tabs_border_color\";s:7:\"#ebeaea\";s:10:\"tagline_bg\";s:7:\"#f6f6f6\";s:20:\"tagline_border_color\";s:7:\"#f6f6f6\";s:18:\"tagline_margin_top\";s:0:\"\";s:21:\"tagline_margin_bottom\";s:2:\"84\";s:20:\"testimonial_bg_color\";s:7:\"#f6f6f6\";s:22:\"testimonial_text_color\";s:7:\"#747474\";s:18:\"testimonials_speed\";d:4000;s:19:\"testimonials_random\";s:1:\"0\";s:16:\"title_style_type\";s:12:\"double solid\";s:18:\"title_border_color\";s:7:\"#e0dede\";s:24:\"accordian_inactive_color\";s:7:\"#333333\";s:10:\"blog_title\";s:4:\"Blog\";s:13:\"blog_subtitle\";s:0:\"\";s:24:\"blog_show_page_title_bar\";s:15:\"bar_and_content\";s:11:\"blog_layout\";s:5:\"large\";s:19:\"blog_archive_layout\";s:5:\"large\";s:20:\"blog_pagination_type\";s:10:\"pagination\";s:17:\"blog_grid_columns\";s:1:\"3\";s:24:\"blog_grid_column_spacing\";s:2:\"40\";s:14:\"content_length\";s:7:\"excerpt\";s:19:\"excerpt_length_blog\";i:55;s:18:\"strip_html_excerpt\";s:1:\"1\";s:15:\"featured_images\";s:1:\"1\";s:32:\"alternate_date_format_month_year\";s:4:\"m, Y\";s:25:\"alternate_date_format_day\";s:1:\"j\";s:20:\"timeline_date_format\";s:3:\"F Y\";s:22:\"featured_images_single\";s:1:\"1\";s:11:\"blog_pn_nav\";s:1:\"1\";s:15:\"blog_post_title\";s:1:\"1\";s:11:\"author_info\";s:1:\"1\";s:18:\"social_sharing_box\";s:1:\"1\";s:13:\"related_posts\";s:1:\"0\";s:13:\"blog_comments\";s:1:\"1\";s:9:\"post_meta\";s:1:\"1\";s:16:\"post_meta_author\";s:1:\"1\";s:14:\"post_meta_date\";s:1:\"1\";s:14:\"post_meta_cats\";s:1:\"1\";s:18:\"post_meta_comments\";s:1:\"1\";s:14:\"post_meta_read\";s:1:\"1\";s:14:\"post_meta_tags\";s:1:\"0\";s:11:\"date_format\";s:7:\"F jS, Y\";s:15:\"portfolio_items\";i:10;s:24:\"portfolio_archive_layout\";s:4:\"grid\";s:24:\"portfolio_column_spacing\";i:12;s:24:\"portfolio_content_length\";s:7:\"excerpt\";s:28:\"portfolio_strip_html_excerpt\";s:1:\"1\";s:21:\"portfolio_text_layout\";s:7:\"unboxed\";s:14:\"portfolio_slug\";s:15:\"portfolio-items\";s:29:\"portfolio_featured_image_size\";s:7:\"cropped\";s:25:\"portfolio_featured_images\";s:1:\"1\";s:16:\"portfolio_pn_nav\";s:1:\"1\";s:18:\"portfolio_comments\";s:1:\"0\";s:16:\"portfolio_author\";s:1:\"0\";s:28:\"portfolio_social_sharing_box\";s:1:\"1\";s:23:\"portfolio_related_posts\";s:1:\"1\";s:15:\"social_bg_color\";s:7:\"#f6f6f6\";s:30:\"sharing_social_links_font_size\";s:4:\"18px\";s:31:\"sharing_social_links_icon_color\";s:7:\"#bebdbd\";s:26:\"sharing_social_links_boxed\";s:1:\"0\";s:30:\"sharing_social_links_box_color\";s:7:\"#e8e8e8\";s:33:\"sharing_social_links_boxed_radius\";s:3:\"4px\";s:34:\"sharing_social_links_boxed_padding\";s:3:\"8px\";s:38:\"sharing_social_links_tooltip_placement\";s:3:\"top\";s:16:\"sharing_facebook\";s:1:\"1\";s:15:\"sharing_twitter\";s:1:\"0\";s:14:\"sharing_reddit\";s:1:\"0\";s:16:\"sharing_linkedin\";s:1:\"0\";s:14:\"sharing_google\";s:1:\"1\";s:14:\"sharing_tumblr\";s:1:\"0\";s:17:\"sharing_pinterest\";s:1:\"0\";s:10:\"sharing_vk\";s:1:\"0\";s:13:\"sharing_email\";s:1:\"1\";s:13:\"facebook_link\";s:81:\"https://www.facebook.com/pages/Assagay-Forest-Lodge/696704640356039?ref=bookmarks\";s:15:\"social_sorter_1\";s:13:\"facebook_link\";s:11:\"flickr_link\";s:0:\"\";s:15:\"social_sorter_2\";s:11:\"flickr_link\";s:8:\"rss_link\";s:0:\"\";s:15:\"social_sorter_3\";s:8:\"rss_link\";s:12:\"twitter_link\";s:0:\"\";s:15:\"social_sorter_4\";s:12:\"twitter_link\";s:10:\"vimeo_link\";s:0:\"\";s:15:\"social_sorter_5\";s:10:\"vimeo_link\";s:12:\"youtube_link\";s:0:\"\";s:15:\"social_sorter_6\";s:12:\"youtube_link\";s:14:\"instagram_link\";s:0:\"\";s:15:\"social_sorter_7\";s:14:\"instagram_link\";s:14:\"pinterest_link\";s:0:\"\";s:15:\"social_sorter_8\";s:14:\"pinterest_link\";s:11:\"tumblr_link\";s:0:\"\";s:15:\"social_sorter_9\";s:11:\"tumblr_link\";s:11:\"google_link\";s:81:\"https://plus.google.com/b/102888140860425533320/+AssagayGuestLodgeHillcrest/about\";s:16:\"social_sorter_10\";s:11:\"google_link\";s:13:\"dribbble_link\";s:0:\"\";s:16:\"social_sorter_11\";s:13:\"dribbble_link\";s:9:\"digg_link\";s:0:\"\";s:16:\"social_sorter_12\";s:9:\"digg_link\";s:13:\"linkedin_link\";s:0:\"\";s:16:\"social_sorter_13\";s:13:\"linkedin_link\";s:12:\"blogger_link\";s:0:\"\";s:16:\"social_sorter_14\";s:12:\"blogger_link\";s:10:\"skype_link\";s:0:\"\";s:16:\"social_sorter_15\";s:10:\"skype_link\";s:11:\"forrst_link\";s:0:\"\";s:16:\"social_sorter_16\";s:11:\"forrst_link\";s:12:\"myspace_link\";s:0:\"\";s:16:\"social_sorter_17\";s:12:\"myspace_link\";s:15:\"deviantart_link\";s:0:\"\";s:16:\"social_sorter_18\";s:15:\"deviantart_link\";s:10:\"yahoo_link\";s:0:\"\";s:16:\"social_sorter_19\";s:10:\"yahoo_link\";s:11:\"reddit_link\";s:0:\"\";s:16:\"social_sorter_20\";s:11:\"reddit_link\";s:11:\"paypal_link\";s:0:\"\";s:16:\"social_sorter_21\";s:11:\"paypal_link\";s:12:\"dropbox_link\";s:0:\"\";s:16:\"social_sorter_22\";s:12:\"dropbox_link\";s:15:\"soundcloud_link\";s:0:\"\";s:16:\"social_sorter_23\";s:15:\"soundcloud_link\";s:7:\"vk_link\";s:0:\"\";s:16:\"social_sorter_24\";s:7:\"vk_link\";s:10:\"email_link\";s:23:\"assagaylodge@msla.co.za\";s:16:\"social_sorter_25\";s:10:\"email_link\";s:13:\"social_sorter\";s:415:\"social_sorter_1,social_sorter_2,social_sorter_3,social_sorter_4,social_sorter_5,social_sorter_6,social_sorter_7,social_sorter_8,social_sorter_9,social_sorter_10,social_sorter_11,social_sorter_12,social_sorter_13,social_sorter_14,social_sorter_15,social_sorter_16,social_sorter_17,social_sorter_18,social_sorter_19,social_sorter_20,social_sorter_21,social_sorter_22,social_sorter_23,social_sorter_24,social_sorter_25\";s:16:\"custom_icon_name\";s:0:\"\";s:17:\"custom_icon_image\";s:0:\"\";s:24:\"custom_icon_image_retina\";s:0:\"\";s:17:\"retina_icon_width\";s:0:\"\";s:18:\"retina_icon_height\";s:0:\"\";s:16:\"custom_icon_link\";s:0:\"\";s:22:\"posts_slideshow_number\";i:5;s:18:\"slideshow_autoplay\";s:1:\"1\";s:23:\"slideshow_smooth_height\";s:1:\"0\";s:15:\"slideshow_speed\";d:7000;s:22:\"pagination_video_slide\";s:1:\"0\";s:17:\"tfes_slider_width\";s:4:\"100%\";s:18:\"tfes_slider_height\";s:5:\"400px\";s:14:\"tfes_animation\";s:5:\"sides\";s:13:\"tfes_autoplay\";s:1:\"1\";s:13:\"tfes_interval\";d:3000;s:10:\"tfes_speed\";d:800;s:10:\"tfes_width\";i:150;s:18:\"es_title_font_size\";s:4:\"42px\";s:20:\"es_caption_font_size\";s:4:\"20px\";s:14:\"es_title_color\";s:7:\"#333333\";s:16:\"es_caption_color\";s:7:\"#747474\";s:15:\"status_lightbox\";s:1:\"1\";s:22:\"status_lightbox_single\";s:1:\"1\";s:17:\"lightbox_behavior\";s:3:\"all\";s:13:\"lightbox_skin\";s:11:\"metro-white\";s:13:\"lightbox_path\";s:8:\"vertical\";s:24:\"lightbox_animation_speed\";s:6:\"normal\";s:15:\"lightbox_arrows\";s:1:\"1\";s:16:\"lightbox_gallery\";s:1:\"1\";s:17:\"lightbox_autoplay\";s:1:\"0\";s:24:\"lightbox_slideshow_speed\";d:5000;s:16:\"lightbox_opacity\";d:0.90000000000000002220446049250313080847263336181640625;s:14:\"lightbox_title\";s:1:\"1\";s:13:\"lightbox_desc\";s:1:\"1\";s:15:\"lightbox_social\";s:1:\"1\";s:20:\"lightbox_deeplinking\";s:1:\"1\";s:20:\"lightbox_post_images\";s:1:\"1\";s:13:\"email_address\";s:23:\"assagaylodge@msla.co.za\";s:16:\"recaptcha_public\";s:0:\"\";s:17:\"recaptcha_private\";s:0:\"\";s:22:\"recaptcha_color_scheme\";s:5:\"light\";s:9:\"gmap_type\";s:7:\"roadmap\";s:10:\"gmap_width\";s:4:\"100%\";s:11:\"gmap_height\";s:5:\"415px\";s:14:\"gmap_topmargin\";s:4:\"55px\";s:12:\"gmap_address\";s:15:\"4 Williams Road\";s:14:\"map_zoom_level\";i:13;s:7:\"map_pin\";s:1:\"0\";s:18:\"gmap_pin_animation\";s:1:\"0\";s:9:\"map_popup\";s:1:\"0\";s:15:\"map_scrollwheel\";s:1:\"1\";s:9:\"map_scale\";s:1:\"1\";s:15:\"map_zoomcontrol\";s:1:\"1\";s:11:\"map_styling\";s:7:\"default\";s:17:\"map_overlay_color\";s:7:\"#a0ce4e\";s:19:\"map_infobox_styling\";s:7:\"default\";s:19:\"map_infobox_content\";s:0:\"\";s:20:\"map_infobox_bg_color\";s:19:\"rgba(255,255,255,0)\";s:22:\"map_infobox_text_color\";s:7:\"#ffffff\";s:22:\"map_custom_marker_icon\";s:0:\"\";s:13:\"search_layout\";s:4:\"grid\";s:14:\"search_content\";a:6:{i:0;s:4:\"post\";i:1;s:4:\"page\";i:2;s:15:\"avada_portfolio\";i:3;s:9:\"avada_faq\";i:4;s:7:\"product\";i:5;s:12:\"tribe_events\";}s:14:\"search_excerpt\";s:1:\"0\";s:23:\"search_results_per_page\";i:10;s:22:\"search_featured_images\";s:1:\"1\";s:18:\"search_form_height\";s:4:\"33px\";s:16:\"sidenav_behavior\";s:5:\"hover\";s:26:\"featured_image_placeholder\";s:1:\"1\";s:12:\"excerpt_base\";s:5:\"words\";s:16:\"disable_excerpts\";s:1:\"1\";s:14:\"link_read_more\";s:1:\"0\";s:14:\"comments_pages\";s:1:\"0\";s:21:\"featured_images_pages\";s:1:\"1\";s:18:\"faq_featured_image\";s:1:\"0\";s:11:\"faq_filters\";s:3:\"yes\";s:21:\"nofollow_social_links\";s:1:\"0\";s:16:\"social_icons_new\";s:1:\"1\";s:20:\"number_related_posts\";i:5;s:21:\"related_posts_columns\";i:5;s:28:\"related_posts_column_spacing\";i:44;s:20:\"related_posts_layout\";s:17:\"title_on_rollover\";s:24:\"related_posts_image_size\";s:7:\"cropped\";s:22:\"related_posts_autoplay\";s:1:\"0\";s:24:\"related_posts_navigation\";s:1:\"1\";s:19:\"related_posts_swipe\";s:1:\"0\";s:25:\"related_posts_swipe_items\";s:0:\"\";s:14:\"image_rollover\";s:1:\"1\";s:24:\"image_rollover_direction\";s:4:\"left\";s:24:\"image_rollover_icon_size\";s:4:\"15px\";s:19:\"link_image_rollover\";s:1:\"1\";s:19:\"zoom_image_rollover\";s:1:\"1\";s:20:\"title_image_rollover\";s:1:\"1\";s:19:\"cats_image_rollover\";s:1:\"1\";s:26:\"icon_circle_image_rollover\";s:1:\"1\";s:16:\"smooth_scrolling\";s:1:\"0\";s:15:\"disable_builder\";s:1:\"1\";s:27:\"disable_code_block_encoding\";s:1:\"1\";s:16:\"disable_megamenu\";s:1:\"1\";s:16:\"avada_rev_styles\";s:1:\"1\";s:22:\"avada_styles_dropdowns\";s:1:\"1\";s:15:\"use_animate_css\";s:1:\"1\";s:26:\"disable_mobile_animate_css\";s:1:\"0\";s:9:\"status_yt\";s:1:\"1\";s:12:\"status_vimeo\";s:1:\"1\";s:11:\"status_gmap\";s:1:\"1\";s:12:\"status_totop\";s:18:\"desktop_and_mobile\";s:20:\"status_fusion_slider\";s:1:\"1\";s:14:\"status_eslider\";s:1:\"1\";s:18:\"status_fontawesome\";a:3:{i:0;s:3:\"fab\";i:1;s:3:\"far\";i:2;s:3:\"fas\";}s:16:\"status_opengraph\";s:1:\"1\";s:31:\"disable_date_rich_snippet_pages\";s:1:\"1\";s:19:\"disable_woo_gallery\";s:1:\"1\";s:8:\"dev_mode\";s:1:\"0\";s:13:\"less_compiler\";s:1:\"0\";s:15:\"cache_server_ip\";s:0:\"\";s:9:\"woo_items\";i:12;s:29:\"woocommerce_shop_page_columns\";i:4;s:27:\"woocommerce_related_columns\";i:4;s:32:\"woocommerce_archive_page_columns\";i:3;s:30:\"woocommerce_product_tab_design\";s:8:\"vertical\";s:26:\"woocommerce_avada_ordering\";s:1:\"1\";s:29:\"woocommerce_one_page_checkout\";s:1:\"0\";s:30:\"woocommerce_enable_order_notes\";s:1:\"1\";s:28:\"woocommerce_acc_link_top_nav\";s:1:\"1\";s:29:\"woocommerce_cart_link_top_nav\";s:1:\"1\";s:29:\"woocommerce_acc_link_main_nav\";s:1:\"0\";s:30:\"woocommerce_cart_link_main_nav\";s:1:\"1\";s:24:\"woocommerce_social_links\";s:1:\"1\";s:28:\"woocommerce_toggle_grid_list\";s:1:\"1\";s:13:\"woo_acc_msg_1\";s:55:\"Need Assistance? Call customer service at 888-555-5555.\";s:13:\"woo_acc_msg_2\";s:32:\"E-mail them at info@yourshop.com\";s:10:\"custom_css\";s:0:\"\";s:15:\"heading_general\";s:0:\"\";s:4:\"code\";s:81:\"<h3 style=\'margin: 0;\'>Tracking / Space Before Head / Space Before Body Code</h3>\";s:18:\"heading_site_width\";s:0:\"\";s:21:\"content_sidebar_width\";s:139:\"<h3 style=\'margin: 0;\'>Content + Sidebar Width</h3><p>These settings are used on pages with 1 sidebar. Total values must add up to 100.</p>\";s:29:\"content_sidebar_sidebar_width\";s:150:\"<h3 style=\'margin: 0;\'>Content + Sidebar + Sidebar Width</h3><p>These settings are used on pages with 2 sidebars. Total values must add up to 100.</p>\";s:14:\"heading_header\";s:0:\"\";s:13:\"header_info_1\";s:50:\"<h3 style=\'margin: 0;\'>Header Content Options</h3>\";s:13:\"header_info_2\";s:45:\"<h3 style=\'margin: 0;\'>Header Background</h3>\";s:13:\"header_info_3\";s:47:\"<h3 style=\'margin: 0;\'>Header Social Icons</h3>\";s:21:\"heading_sticky_header\";s:0:\"\";s:18:\"sticky_header_info\";s:49:\"<h3 style=\'margin: 0;\'>Sticky Header Options</h3>\";s:12:\"heading_logo\";s:0:\"\";s:11:\"header_info\";s:46:\"<h3 style=\'margin: 0;\'>Breadcrumb Options</h3>\";s:19:\"sticky_logo_wrapper\";s:46:\"<h3 style=\'margin: 0;\'>Sticky Header Logo</h3>\";s:19:\"mobile_logo_wrapper\";s:39:\"<h3 style=\'margin: 0;\'>Mobile Logo</h3>\";s:21:\"logo_settings_wrapper\";s:41:\"<h3 style=\'margin: 0;\'>Logo Settings</h3>\";s:8:\"favicons\";s:43:\"<h3 style=\'margin: 0;\'>Favicon Options</h3>\";s:12:\"heading_menu\";s:0:\"\";s:19:\"mobile_menu_options\";s:47:\"<h3 style=\'margin: 0;\'>Mobile Menu Options</h3>\";s:22:\"heading_page_title_bar\";s:0:\"\";s:19:\"heading_sliding_bar\";s:0:\"\";s:11:\"sliding_bar\";s:47:\"<h3 style=\'margin: 0;\'>Sliding Bar Options</h3>\";s:14:\"heading_footer\";s:0:\"\";s:25:\"footer_widgets_area_title\";s:55:\"<h3 style=\'margin: 0;\'>Footer Widgets Area Options</h3>\";s:27:\"footer_parallax_effect_info\";s:59:\"This enables a fixed footer with parallax scrolling effect.\";s:28:\"footer_area_bg_parallax_info\";s:115:\"This enables a parallax effect on the background image selected in \'Background Image For Footer Widget Area\' field.\";s:18:\"footer_sticky_info\";s:144:\"This enables a sticky footer. The entire footer area will always be \'below the fold\'. IMPORTANT: \'Sticky Footer Height\' field must be filled in.\";s:41:\"footer_sticky_with_parallax_bg_image_info\";s:200:\"This enables a sticky footer together with a parallax effect on the background image. The entire footer area will always be \'below the fold\'. IMPORTANT: \'Sticky Footer Height\' field must be filled in.\";s:20:\"copyright_area_title\";s:57:\"<h3 style=\'margin: 0;\'>Footer Copyright Area Options</h3>\";s:24:\"footer_social_icon_title\";s:47:\"<h3 style=\'margin: 0;\'>Social Icon Options</h3>\";s:16:\"heading_sidebars\";s:0:\"\";s:14:\"pages_sidebars\";s:33:\"<h3 style=\'margin: 0;\'>Pages</h3>\";s:12:\"bbpress_only\";s:35:\"<h3 style=\'margin: 0;\'>BBPress</h3>\";s:11:\"search_only\";s:39:\"<h3 style=\'margin: 0;\'>Search Page</h3>\";s:18:\"heading_background\";s:0:\"\";s:15:\"boxed_mode_only\";s:76:\"<h3 style=\'margin: 0;\'>Background options below only work in boxed mode</h3>\";s:15:\"both_modes_only\";s:79:\"<h3 style=\'margin: 0;\'>Background Options Below Work For Boxed & Wide Mode</h3>\";s:18:\"heading_typography\";s:0:\"\";s:19:\"custom_heading_font\";s:174:\"<h3 style=\'margin: 0;\'>Custom Font For Menus And Headings</h3><p style=\'margin-bottom:0;\'>This will override the google / standard font options. All 4 files are required.</p>\";s:18:\"google_fonts_intro\";s:113:\"<h3 style=\'margin: 0;\'>Google Fonts</h3><p style=\'margin-bottom:0;\'>This will override standard font options.</p>\";s:20:\"standard_fonts_intro\";s:42:\"<h3 style=\'margin: 0;\'>Standard Fonts</h3>\";s:15:\"font_size_intro\";s:38:\"<h3 style=\'margin: 0;\'>Font Sizes</h3>\";s:25:\"font_line_heights_wrapper\";s:45:\"<h3 style=\'margin: 0;\'>Font Line Heights</h3>\";s:20:\"font_weights_wrapper\";s:40:\"<h3 style=\'margin: 0;\'>Font Weights</h3>\";s:24:\"font_weights_description\";s:414:\"<ul class=\'list\'><li>If you use a custom font, the font weight will correspond to the font weight of the uploaded files, thus these settings do not apply.</li><li>If you use a google font, make sure to load the font weight in \'Google Font Settings\' field that corresponds to the one in parenthesis here.</li><li>Browser standard fonts in general support only \'Normal (400)\' and \'Bold (700)\' font weights.</li></ul>\";s:27:\"font_letter_spacing_wrapper\";s:47:\"<h3 style=\'margin: 0;\'>Font Letter Spacing</h3>\";s:20:\"font_margins_wrapper\";s:40:\"<h3 style=\'margin: 0;\'>Font Margins</h3>\";s:15:\"heading_styling\";s:0:\"\";s:17:\"bg_colors_wrapper\";s:45:\"<h3 style=\'margin: 0;\'>Background Colors</h3>\";s:22:\"element_colors_wrapper\";s:42:\"<h3 style=\'margin: 0;\'>Element Colors</h3>\";s:23:\"element_options_wrapper\";s:42:\"<h3 style=\'margin: 0;\'>Layout Options</h3>\";s:19:\"font_colors_wrapper\";s:39:\"<h3 style=\'margin: 0;\'>Font Colors</h3>\";s:24:\"main_menu_colors_wrapper\";s:44:\"<h3 style=\'margin: 0;\'>Main Menu Colors</h3>\";s:17:\"menu_colors_intro\";s:49:\"<h3 style=\'margin: 0;\'>Secondary Menu Colors</h3>\";s:26:\"mobile_menu_colors_wrapper\";s:46:\"<h3 style=\'margin: 0;\'>Mobile Menu Colors</h3>\";s:25:\"heading_shortcode_styling\";s:0:\"\";s:14:\"blog_shortcode\";s:42:\"<h3 style=\'margin: 0;\'>Blog Shortcode</h3>\";s:16:\"button_shortcode\";s:44:\"<h3 style=\'margin: 0;\'>Button Shortcode</h3>\";s:18:\"carousel_shortcode\";s:46:\"<h3 style=\'margin: 0;\'>Carousel Shortcode</h3>\";s:19:\"checklist_shortcode\";s:47:\"<h3 style=\'margin: 0;\'>Checklist Shortcode</h3>\";s:12:\"cb_shortcode\";s:49:\"<h3 style=\'margin: 0;\'>Content Box Shortcode</h3>\";s:18:\"counterb_shortcode\";s:51:\"<h3 style=\'margin: 0;\'>Counter Boxes Shortcode</h3>\";s:12:\"cc_shortcode\";s:52:\"<h3 style=\'margin: 0;\'>Counter Circle Shortcode</h3>\";s:17:\"dropcap_shortcode\";s:45:\"<h3 style=\'margin: 0;\'>Dropcap Shortcode</h3>\";s:15:\"flipb_shortcode\";s:48:\"<h3 style=\'margin: 0;\'>Flip Boxes Shortcode</h3>\";s:19:\"fullwidth_shortcode\";s:48:\"<h3 style=\'margin: 0;\'>Full Width Shortcode</h3>\";s:14:\"icon_shortcode\";s:42:\"<h3 style=\'margin: 0;\'>Icon Shortcode</h3>\";s:14:\"imgf_shortcode\";s:49:\"<h3 style=\'margin: 0;\'>Image Frame Shortcode</h3>\";s:15:\"modal_shortcode\";s:43:\"<h3 style=\'margin: 0;\'>Modal Shortcode</h3>\";s:16:\"person_shortcode\";s:44:\"<h3 style=\'margin: 0;\'>Person Shortcode</h3>\";s:17:\"popover_shortcode\";s:45:\"<h3 style=\'margin: 0;\'>Popover Shortcode</h3>\";s:22:\"pricingtable_shortcode\";s:51:\"<h3 style=\'margin: 0;\'>Pricing Table Shortcode</h3>\";s:21:\"progressbar_shortcode\";s:50:\"<h3 style=\'margin: 0;\'>Progress Bar Shortcode</h3>\";s:26:\"sectionseparator_shortcode\";s:55:\"<h3 style=\'margin: 0;\'>Section Separator Shortcode</h3>\";s:19:\"separator_shortcode\";s:47:\"<h3 style=\'margin: 0;\'>Separator Shortcode</h3>\";s:20:\"sharingbox_shortcode\";s:49:\"<h3 style=\'margin: 0;\'>Sharing Box Shortcode</h3>\";s:21:\"sociallinks_shortcode\";s:50:\"<h3 style=\'margin: 0;\'>Social Links Shortcode</h3>\";s:14:\"tabs_shortcode\";s:42:\"<h3 style=\'margin: 0;\'>Tabs Shortcode</h3>\";s:17:\"tagline_shortcode\";s:45:\"<h3 style=\'margin: 0;\'>Tagline Shortcode</h3>\";s:22:\"testimonials_shortcode\";s:50:\"<h3 style=\'margin: 0;\'>Testimonials Shortcode</h3>\";s:15:\"title_shortcode\";s:43:\"<h3 style=\'margin: 0;\'>Title Shortcode</h3>\";s:19:\"accordion_shortcode\";s:45:\"<h3 style=\'margin: 0;\'>Toggles Shortcode</h3>\";s:12:\"heading_blog\";s:0:\"\";s:16:\"blog_single_post\";s:62:\"<h3 style=\'margin: 0;\'>Portfolio Single Post Page Options</h3>\";s:9:\"blog_meta\";s:45:\"<h3 style=\'margin: 0;\'>Blog Meta Options</h3>\";s:17:\"heading_portfolio\";s:0:\"\";s:26:\"heading_social_sharing_box\";s:0:\"\";s:35:\"social_share_box_icon_options_title\";s:57:\"<h3 style=\'margin: 0;\'>Social Share Box Icon Options</h3>\";s:28:\"social_share_box_links_title\";s:50:\"<h3 style=\'margin: 0;\'>Social Share Box Links</h3>\";s:20:\"heading_social_media\";s:0:\"\";s:27:\"custom_color_scheme_element\";s:46:\"<h3 style=\'margin: 0;\'>Custom Social Icon</h3>\";s:18:\"heading_slideshows\";s:0:\"\";s:22:\"heading_elastic_slider\";s:0:\"\";s:16:\"heading_lightbox\";s:0:\"\";s:8:\"lightbox\";s:44:\"<h3 style=\'margin: 0;\'>Lightbox Options</h3>\";s:15:\"heading_contact\";s:0:\"\";s:9:\"recaptcha\";s:50:\"<h3 style=\'margin: 0;\'>ReCaptcha Spam Options</h3>\";s:10:\"google_map\";s:53:\"<h3 style=\'margin: 0;\'>Google Map Design Styling</h3>\";s:19:\"heading_search_page\";s:0:\"\";s:6:\"search\";s:42:\"<h3 style=\'margin: 0;\'>Search Options</h3>\";s:13:\"heading_extra\";s:0:\"\";s:12:\"misc_options\";s:49:\"<h3 style=\'margin: 0;\'>Miscellaneous Options</h3>\";s:9:\"rollovers\";s:50:\"<h3 style=\'margin: 0;\'>Image Rollover Options</h3>\";s:16:\"heading_advanced\";s:0:\"\";s:22:\"enable_disable_heading\";s:76:\"<h3 style=\'margin: 0;\'>Enable / Disable Theme Features & Plugin Support</h3>\";s:21:\"less_compiler_heading\";s:311:\"<h3 style=\'margin: 0;\'>Compile all the dynamic CSS generated by theme options through LESS CSS. LESS compiler demands a lot more memory compared to PHP compiler which is used by default. Alternatively, each theme option might require clearing all kinds of cache e.g. w3 total cache, cloudflare and varnish.</h3>\";s:19:\"heading_woocommerce\";s:0:\"\";s:18:\"heading_custom_css\";s:0:\"\";s:18:\"advanced_css_intro\";s:55:\"<h3 style=\'margin: 0;\'>Advanced CSS Customizations</h3>\";s:15:\"custom_css_info\";s:254:\"Paste your CSS code, do not include any tags or HTML in the field. Any custom CSS entered here will override the theme CSS. In some cases, the !important tag may be needed. Don\'t URL encode image or svg paths. Contents of this field will be auto encoded.\";s:14:\"heading_backup\";s:0:\"\";s:9:\"of_backup\";s:0:\"\";s:11:\"of_transfer\";s:0:\"\";s:24:\"contact_comment_position\";s:5:\"below\";s:34:\"mainmenu_dropdown_vertical_padding\";s:1:\"7\";s:30:\"megamenu_item_vertical_padding\";s:1:\"5\";s:21:\"grid_main_break_point\";s:4:\"1000\";s:19:\"content_break_point\";s:3:\"800\";s:18:\"footer_border_size\";s:2:\"12\";s:21:\"copyright_border_size\";s:1:\"1\";s:14:\"carousel_speed\";s:4:\"2500\";s:37:\"content_box_icon_bg_inner_border_size\";s:1:\"1\";s:37:\"content_box_icon_bg_outer_border_size\";s:1:\"0\";s:17:\"counter_box_speed\";s:4:\"1000\";s:30:\"progressbar_filled_border_size\";s:1:\"0\";s:19:\"related_posts_speed\";s:4:\"2500\";s:15:\"pw_jpeg_quality\";s:2:\"82\";s:17:\"ec_text_font_size\";s:2:\"14\";s:33:\"mainmenu_dropdown_display_divider\";s:1:\"1\";s:31:\"menu_display_dropdown_indicator\";s:4:\"none\";s:29:\"megamenu_item_display_divider\";s:1:\"0\";s:11:\"mobile_zoom\";s:1:\"1\";s:23:\"header_sticky_shrinkage\";s:1:\"1\";s:29:\"footer_widgets_center_content\";s:1:\"0\";s:31:\"footer_copyright_center_content\";s:1:\"0\";s:17:\"ec_global_sidebar\";s:1:\"0\";s:22:\"accordion_divider_line\";s:1:\"1\";s:14:\"blog_width_100\";s:1:\"0\";s:38:\"portfolio_disable_first_featured_image\";s:1:\"0\";s:19:\"portfolio_width_100\";s:1:\"0\";s:28:\"portfolio_project_desc_title\";s:1:\"1\";s:25:\"portfolio_project_details\";s:1:\"1\";s:26:\"portfolio_link_icon_target\";s:1:\"0\";s:23:\"pagination_text_display\";s:1:\"1\";s:27:\"disable_mobile_image_hovers\";s:1:\"0\";s:36:\"woocommerce_disable_crossfade_effect\";s:1:\"0\";s:24:\"woocommerce_cart_counter\";s:1:\"0\";s:25:\"events_social_sharing_box\";s:1:\"1\";s:16:\"ec_sidebar_width\";s:3:\"32%\";s:20:\"ec_sidebar_2_1_width\";s:3:\"21%\";s:20:\"ec_sidebar_2_2_width\";s:3:\"21%\";s:26:\"flyout_menu_icon_font_size\";s:4:\"20px\";s:30:\"content_box_icon_circle_radius\";s:3:\"50%\";s:18:\"progressbar_height\";s:4:\"37px\";s:17:\"slider_arrow_size\";s:4:\"14px\";s:17:\"form_input_height\";s:4:\"29px\";s:18:\"ec_sidebar_padding\";s:2:\"4%\";s:18:\"ec_sidew_font_size\";s:4:\"17px\";s:30:\"footer_social_links_color_type\";s:6:\"custom\";s:30:\"header_social_links_color_type\";s:6:\"custom\";s:18:\"social_media_icons\";a:3:{s:4:\"icon\";a:3:{i:0;s:8:\"facebook\";i:1;s:5:\"gplus\";i:2;s:5:\"email\";}s:3:\"url\";a:3:{i:0;s:81:\"https://www.facebook.com/pages/Assagay-Forest-Lodge/696704640356039?ref=bookmarks\";i:1;s:81:\"https://plus.google.com/b/102888140860425533320/+AssagayGuestLodgeHillcrest/about\";i:2;s:23:\"assagaylodge@msla.co.za\";}s:25:\"fusionredux_repeater_data\";a:3:{i:0;a:1:{s:5:\"title\";s:0:\"\";}i:1;a:1:{s:5:\"title\";s:0:\"\";}i:2;a:1:{s:5:\"title\";s:0:\"\";}}}s:31:\"sharing_social_links_color_type\";s:6:\"custom\";s:22:\"flyout_menu_icon_color\";s:7:\"#333333\";s:28:\"flyout_menu_icon_hover_color\";s:7:\"#a0ce4e\";s:23:\"content_box_title_color\";s:7:\"#333333\";s:22:\"content_box_body_color\";s:7:\"#747474\";s:22:\"content_box_icon_color\";s:7:\"#ffffff\";s:28:\"countdown_counter_text_color\";s:7:\"#ffffff\";s:28:\"countdown_heading_text_color\";s:7:\"#ffffff\";s:31:\"countdown_subheading_text_color\";s:7:\"#ffffff\";s:25:\"countdown_link_text_color\";s:7:\"#ffffff\";s:27:\"bbp_forum_header_font_color\";s:7:\"#747474\";s:26:\"primary_overlay_text_color\";s:7:\"#ffffff\";s:17:\"ec_bar_text_color\";s:7:\"#747474\";s:21:\"ec_tooltip_body_color\";s:7:\"#747474\";s:24:\"ec_sidebar_heading_color\";s:7:\"#333333\";s:21:\"ec_sidebar_text_color\";s:7:\"#747474\";s:21:\"ec_sidebar_link_color\";s:7:\"#333333\";s:12:\"main_padding\";a:2:{s:3:\"top\";s:4:\"55px\";s:6:\"bottom\";s:4:\"40px\";}s:10:\"col_margin\";a:2:{s:3:\"top\";s:3:\"0px\";s:6:\"bottom\";s:4:\"20px\";}s:14:\"header_padding\";a:4:{s:3:\"top\";s:3:\"0px\";s:6:\"bottom\";s:3:\"0px\";s:4:\"left\";s:3:\"0px\";s:5:\"right\";s:3:\"0px\";}s:11:\"logo_margin\";a:4:{s:3:\"top\";s:4:\"31px\";s:6:\"bottom\";s:4:\"31px\";s:4:\"left\";s:3:\"0px\";s:5:\"right\";s:3:\"0px\";}s:19:\"footer_area_padding\";a:4:{s:3:\"top\";s:4:\"43px\";s:6:\"bottom\";s:4:\"40px\";s:4:\"left\";s:3:\"0px\";s:5:\"right\";s:3:\"0px\";}s:17:\"copyright_padding\";a:2:{s:3:\"top\";s:4:\"18px\";s:6:\"bottom\";s:4:\"16px\";}s:18:\"content_box_margin\";a:2:{s:3:\"top\";s:3:\"0px\";s:6:\"bottom\";s:4:\"60px\";}s:14:\"tagline_margin\";a:2:{s:3:\"top\";s:3:\"0px\";s:6:\"bottom\";s:4:\"84px\";}s:12:\"title_margin\";a:2:{s:3:\"top\";s:3:\"0px\";s:6:\"bottom\";s:4:\"31px\";}s:14:\"nav_typography\";a:7:{s:11:\"font-family\";s:10:\"Antic Slab\";s:6:\"google\";s:4:\"true\";s:11:\"font-backup\";s:28:\"Arial, Helvetica, sans-serif\";s:11:\"font-weight\";i:400;s:14:\"letter-spacing\";s:3:\"0px\";s:9:\"font-size\";s:4:\"14px\";s:5:\"color\";s:7:\"#333333\";}s:15:\"body_typography\";a:7:{s:11:\"font-family\";s:7:\"PT Sans\";s:6:\"google\";s:4:\"true\";s:11:\"font-backup\";s:28:\"Arial, Helvetica, sans-serif\";s:9:\"font-size\";s:4:\"13px\";s:11:\"line-height\";d:1.54000000000000003552713678800500929355621337890625;s:11:\"font-weight\";i:400;s:5:\"color\";s:7:\"#747474\";}s:13:\"h1_typography\";a:9:{s:11:\"font-backup\";s:28:\"Arial, Helvetica, sans-serif\";s:11:\"font-family\";s:10:\"Antic Slab\";s:6:\"google\";s:4:\"true\";s:9:\"font-size\";s:4:\"34px\";s:11:\"line-height\";d:1.4099999999999999200639422269887290894985198974609375;s:11:\"font-weight\";i:400;s:5:\"color\";s:7:\"#333333\";s:10:\"margin-top\";s:6:\"0.67em\";s:13:\"margin-bottom\";s:6:\"0.67em\";}s:13:\"h2_typography\";a:9:{s:11:\"font-backup\";s:28:\"Arial, Helvetica, sans-serif\";s:11:\"font-family\";s:10:\"Antic Slab\";s:6:\"google\";s:4:\"true\";s:9:\"font-size\";s:4:\"18px\";s:11:\"line-height\";d:1.5;s:11:\"font-weight\";i:400;s:5:\"color\";s:7:\"#333333\";s:10:\"margin-top\";s:3:\"0em\";s:13:\"margin-bottom\";s:5:\"1.1em\";}s:13:\"h3_typography\";a:9:{s:11:\"font-backup\";s:28:\"Arial, Helvetica, sans-serif\";s:11:\"font-family\";s:10:\"Antic Slab\";s:6:\"google\";s:4:\"true\";s:9:\"font-size\";s:4:\"16px\";s:11:\"line-height\";d:1.5;s:11:\"font-weight\";i:400;s:5:\"color\";s:7:\"#333333\";s:10:\"margin-top\";s:3:\"1em\";s:13:\"margin-bottom\";s:3:\"1em\";}s:26:\"footer_headings_typography\";a:6:{s:11:\"font-backup\";s:28:\"Arial, Helvetica, sans-serif\";s:11:\"font-family\";s:7:\"PT Sans\";s:6:\"google\";s:4:\"true\";s:9:\"font-size\";s:4:\"13px\";s:11:\"font-weight\";i:400;s:5:\"color\";s:7:\"#DDDDDD\";}s:13:\"h4_typography\";a:9:{s:11:\"font-backup\";s:28:\"Arial, Helvetica, sans-serif\";s:11:\"font-family\";s:10:\"Antic Slab\";s:6:\"google\";s:4:\"true\";s:9:\"font-size\";s:4:\"13px\";s:11:\"line-height\";d:1.54000000000000003552713678800500929355621337890625;s:11:\"font-weight\";i:400;s:5:\"color\";s:7:\"#333333\";s:10:\"margin-top\";s:6:\"1.33em\";s:13:\"margin-bottom\";s:6:\"1.33em\";}s:13:\"h5_typography\";a:9:{s:11:\"font-backup\";s:28:\"Arial, Helvetica, sans-serif\";s:11:\"font-family\";s:10:\"Antic Slab\";s:6:\"google\";s:4:\"true\";s:9:\"font-size\";s:4:\"12px\";s:11:\"line-height\";d:1.5;s:11:\"font-weight\";i:400;s:5:\"color\";s:7:\"#333333\";s:10:\"margin-top\";s:6:\"1.67em\";s:13:\"margin-bottom\";s:6:\"1.67em\";}s:13:\"h6_typography\";a:9:{s:11:\"font-backup\";s:28:\"Arial, Helvetica, sans-serif\";s:11:\"font-family\";s:10:\"Antic Slab\";s:6:\"google\";s:4:\"true\";s:9:\"font-size\";s:4:\"11px\";s:11:\"line-height\";d:1.5500000000000000444089209850062616169452667236328125;s:11:\"font-weight\";i:400;s:5:\"color\";s:7:\"#333333\";s:10:\"margin-top\";s:6:\"2.33em\";s:13:\"margin-bottom\";s:6:\"2.33em\";}s:17:\"button_typography\";a:5:{s:11:\"font-backup\";s:28:\"Arial, Helvetica, sans-serif\";s:11:\"font-family\";s:7:\"PT Sans\";s:6:\"google\";s:4:\"true\";s:11:\"font-weight\";i:700;s:14:\"letter-spacing\";s:3:\"0px\";}s:25:\"slider_nav_box_dimensions\";a:2:{s:5:\"width\";s:4:\"30px\";s:6:\"height\";s:4:\"30px\";}s:15:\"tfes_dimensions\";a:2:{s:5:\"width\";s:4:\"100%\";s:6:\"height\";s:5:\"400px\";}s:15:\"gmap_dimensions\";a:2:{s:5:\"width\";s:4:\"100%\";s:6:\"height\";s:5:\"415px\";}s:25:\"lightbox_video_dimensions\";a:2:{s:5:\"width\";s:6:\"1280px\";s:6:\"height\";s:5:\"720px\";}s:36:\"blog_load_more_posts_button_bg_color\";s:7:\"#ebeaea\";s:41:\"portfolio_load_more_posts_button_bg_color\";s:7:\"#ebeaea\";s:28:\"flyout_menu_background_color\";s:22:\"rgba(255,255,255,0.95)\";s:21:\"flyout_menu_direction\";s:4:\"fade\";s:23:\"sidebar_widget_bg_color\";s:19:\"rgba(255,255,255,0)\";s:12:\"custom_fonts\";a:0:{}s:16:\"animation_offset\";s:13:\"top-into-view\";s:11:\"button_span\";s:2:\"no\";s:25:\"content_box_icon_bg_color\";s:7:\"#333333\";s:38:\"content_box_icon_bg_inner_border_color\";s:7:\"#333333\";s:38:\"content_box_icon_bg_outer_border_color\";s:19:\"rgba(255,255,255,0)\";s:27:\"content_box_icon_hover_type\";s:4:\"fade\";s:40:\"content_box_hover_animation_accent_color\";s:7:\"#a0ce4e\";s:21:\"content_box_link_type\";s:4:\"text\";s:21:\"content_box_link_area\";s:9:\"link-icon\";s:23:\"content_box_link_target\";s:5:\"_self\";s:18:\"countdown_timezone\";s:9:\"site_time\";s:20:\"countdown_show_weeks\";s:2:\"no\";s:26:\"countdown_background_color\";s:7:\"#a0ce4e\";s:26:\"countdown_background_image\";a:0:{}s:27:\"countdown_background_repeat\";s:9:\"no-repeat\";s:29:\"countdown_background_position\";s:13:\"center center\";s:27:\"countdown_counter_box_color\";s:7:\"#333333\";s:21:\"countdown_link_target\";s:5:\"_self\";s:23:\"person_background_color\";s:13:\"rgba(0,0,0,0)\";s:16:\"person_alignment\";s:4:\"Left\";s:20:\"person_icon_position\";s:3:\"Top\";s:25:\"progressbar_text_position\";s:6:\"on_bar\";s:31:\"progressbar_filled_border_color\";s:7:\"#ffffff\";s:23:\"social_links_color_type\";s:6:\"custom\";s:21:\"user_login_text_align\";s:6:\"center\";s:32:\"user_login_form_background_color\";s:7:\"#f6f6f6\";s:30:\"portfolio_featured_image_width\";s:4:\"full\";s:22:\"sharing_social_tagline\";s:39:\"Share This Story, Choose Your Platform!\";s:26:\"search_new_search_position\";s:3:\"top\";s:22:\"pagination_box_padding\";a:2:{s:5:\"width\";s:3:\"6px\";s:6:\"height\";s:3:\"2px\";}s:31:\"woocommerce_single_gallery_size\";s:5:\"500px\";s:16:\"css_cache_method\";s:4:\"file\";s:25:\"portfolio_archive_columns\";i:1;s:29:\"portfolio_archive_text_layout\";s:7:\"unboxed\";s:42:\"portfolio_archive_one_column_text_position\";s:7:\"floated\";s:37:\"portfolio_archive_featured_image_size\";s:7:\"cropped\";s:32:\"portfolio_archive_column_spacing\";i:12;s:23:\"portfolio_archive_items\";s:2:\"10\";s:24:\"portfolio_excerpt_length\";i:55;s:32:\"portfolio_archive_excerpt_length\";i:55;s:36:\"portfolio_archive_strip_html_excerpt\";s:1:\"1\";s:49:\"portfolio_archive_load_more_posts_button_bg_color\";s:7:\"#ebeaea\";s:32:\"portfolio_archive_content_length\";s:7:\"excerpt\";s:25:\"portfolio_pagination_type\";s:10:\"pagination\";s:33:\"portfolio_archive_pagination_type\";s:10:\"pagination\";s:22:\"mobile_menu_typography\";a:6:{s:11:\"font-family\";s:7:\"PT Sans\";s:11:\"font-weight\";i:400;s:14:\"letter-spacing\";N;s:9:\"font-size\";s:4:\"12px\";s:11:\"line-height\";s:4:\"35px\";s:5:\"color\";s:7:\"#333333\";}s:28:\"mobile_menu_font_hover_color\";s:7:\"#333333\";s:17:\"slidingbar_border\";s:1:\"0\";s:17:\"slidingbar_sticky\";i:0;s:24:\"portfolio_meta_font_size\";s:4:\"13px\";s:20:\"grid_separator_color\";s:7:\"#e0dede\";s:24:\"flyout_nav_icons_padding\";i:45;s:19:\"blog_page_title_bar\";s:15:\"bar_and_content\";s:27:\"slidingbar_link_color_hover\";s:7:\"#a0ce4e\";s:21:\"post_title_typography\";a:11:{s:11:\"font-weight\";i:400;s:11:\"font-family\";s:10:\"Antic Slab\";s:10:\"font-style\";N;s:12:\"font-options\";N;s:11:\"font-backup\";s:28:\"Arial, Helvetica, sans-serif\";s:7:\"subsets\";N;s:6:\"google\";s:4:\"true\";s:14:\"letter-spacing\";N;s:5:\"color\";s:7:\"#333333\";s:11:\"line-height\";s:4:\"27px\";s:9:\"font-size\";s:4:\"18px\";}s:29:\"post_titles_extras_typography\";a:11:{s:11:\"font-weight\";i:400;s:11:\"font-family\";s:10:\"Antic Slab\";s:10:\"font-style\";N;s:12:\"font-options\";N;s:11:\"font-backup\";s:28:\"Arial, Helvetica, sans-serif\";s:7:\"subsets\";N;s:6:\"google\";s:4:\"true\";s:14:\"letter-spacing\";N;s:5:\"color\";s:7:\"#333333\";s:11:\"line-height\";s:3:\"1.5\";s:9:\"font-size\";s:4:\"18px\";}s:18:\"masonry_grid_ratio\";s:3:\"1.0\";s:20:\"masonry_width_double\";i:2000;s:26:\"slidingbar_content_padding\";a:4:{s:3:\"top\";s:4:\"60px\";s:5:\"right\";s:4:\"30px\";s:6:\"bottom\";s:4:\"60px\";s:4:\"left\";s:4:\"30px\";}s:25:\"blog_archive_grid_columns\";i:3;s:32:\"blog_archive_grid_column_spacing\";i:40;s:28:\"breadcrumbs_text_hover_color\";s:7:\"#333333\";s:14:\"sidebar_gutter\";s:4:\"80px\";s:19:\"dual_sidebar_gutter\";s:4:\"40px\";s:17:\"info_accent_color\";s:19:\"rgba(128,128,128,1)\";s:19:\"danger_accent_color\";s:17:\"rgba(166,66,66,1)\";s:20:\"success_accent_color\";s:17:\"rgba(92,163,64,1)\";s:20:\"warning_accent_color\";s:18:\"rgba(217,185,23,1)\";s:23:\"archive_header_bg_color\";s:16:\"rgb(255,255,255)\";s:16:\"sharing_whatsapp\";s:1:\"0\";s:18:\"mobile_menu_search\";s:1:\"0\";s:21:\"events_column_spacing\";s:2:\"-1\";s:30:\"mobile_archive_header_bg_color\";s:16:\"rgb(255,255,255)\";s:26:\"page_title_subheader_color\";s:7:\"#333333\";s:28:\"fontawesome_v4_compatibility\";s:1:\"1\";s:24:\"flyout_menu_item_padding\";d:30;s:23:\"form_focus_border_color\";s:7:\"#d2d2d2\";s:17:\"recaptcha_version\";s:2:\"v2\";s:17:\"pagination_sizing\";s:7:\"padding\";s:22:\"search_pagination_type\";s:10:\"pagination\";s:19:\"search_grid_columns\";i:3;s:27:\"searche_grid_column_spacing\";i:40;s:21:\"search_excerpt_length\";i:55;s:21:\"search_content_length\";s:7:\"no_text\";s:25:\"search_strip_html_excerpt\";s:1:\"1\";s:11:\"search_meta\";a:5:{i:0;s:6:\"author\";i:1;s:4:\"date\";i:2;s:10:\"categories\";i:3;s:8:\"comments\";i:4;s:9:\"read_more\";}s:21:\"search_filter_results\";s:1:\"1\";s:21:\"menu_icon_hover_color\";s:7:\"#a0ce4e\";s:23:\"footer_link_color_hover\";s:7:\"#a0ce4e\";s:20:\"copyright_text_color\";s:7:\"#8C8989\";s:20:\"copyright_link_color\";s:7:\"#BFBFBF\";s:26:\"copyright_link_color_hover\";s:7:\"#a0ce4e\";s:26:\"faq_accordian_active_color\";s:7:\"#a0ce4e\";s:22:\"accordian_active_color\";s:7:\"#a0ce4e\";s:14:\"megamenu_width\";s:12:\"custom_width\";s:13:\"margin_offset\";a:2:{s:3:\"top\";s:3:\"0px\";s:6:\"bottom\";s:3:\"0px\";}s:13:\"scroll_offset\";s:4:\"full\";s:18:\"boxed_modal_shadow\";s:4:\"None\";s:19:\"sidebar_break_point\";s:3:\"800\";s:13:\"color_palette\";s:71:\"#f44336|#E91E63|#03A9F4|#00BCD4|#8BC34A|#FFEB3B|#FFC107|#FF9800|#607D8B\";s:20:\"header_sticky_shadow\";s:1:\"1\";s:24:\"header_sticky_menu_color\";s:7:\"#333333\";s:20:\"menu_highlight_style\";s:3:\"bar\";s:25:\"menu_highlight_background\";s:7:\"#65bc7b\";s:15:\"menu_arrow_size\";a:2:{s:5:\"width\";s:4:\"23px\";s:6:\"height\";s:4:\"12px\";}s:28:\"main_menu_sub_menu_animation\";s:4:\"fade\";s:29:\"dropdown_menu_top_border_size\";s:1:\"3\";s:25:\"main_nav_highlight_radius\";s:3:\"0px\";s:29:\"mobile_menu_submenu_indicator\";s:1:\"1\";s:31:\"megamenu_interior_content_width\";s:14:\"viewport_width\";s:18:\"menu_icon_position\";s:4:\"left\";s:14:\"menu_icon_size\";i:14;s:15:\"menu_icon_color\";s:7:\"#333333\";s:19:\"menu_thumbnail_size\";a:2:{s:5:\"width\";s:4:\"26px\";s:6:\"height\";s:4:\"14px\";}s:15:\"logo_background\";s:1:\"0\";s:21:\"logo_background_color\";s:7:\"#65bc7b\";s:16:\"logo_custom_link\";s:0:\"\";s:22:\"page_title_line_height\";d:1.4099999999999999200639422269887290894985198974609375;s:19:\"slidingbar_position\";s:3:\"top\";s:16:\"slidingbar_width\";s:5:\"300px\";s:27:\"slidingbar_column_alignment\";s:7:\"stacked\";s:24:\"slidingbar_content_align\";s:4:\"left\";s:23:\"slidingbar_toggle_style\";s:8:\"triangle\";s:19:\"footer_divider_line\";s:1:\"0\";s:24:\"footer_divider_line_size\";s:1:\"1\";s:25:\"footer_divider_line_style\";s:5:\"solid\";s:22:\"footer_widgets_padding\";s:4:\"15px\";s:24:\"responsive_sidebar_order\";s:25:\"content,sidebar,sidebar-2\";s:14:\"sidebar_sticky\";s:4:\"none\";s:18:\"blog_equal_heights\";i:0;s:25:\"blog_archive_grid_padding\";a:4:{s:3:\"top\";s:4:\"30px\";s:6:\"bottom\";s:4:\"20px\";s:4:\"left\";s:4:\"25px\";s:5:\"right\";s:4:\"25px\";}s:21:\"blog_layout_alignment\";s:0:\"\";s:23:\"blog_post_meta_position\";s:13:\"below_article\";s:23:\"portfolio_equal_heights\";i:0;s:31:\"portfolio_archive_title_display\";s:3:\"all\";s:32:\"portfolio_archive_text_alignment\";s:4:\"left\";s:32:\"portfolio_archive_layout_padding\";a:4:{s:3:\"top\";s:4:\"25px\";s:6:\"bottom\";s:4:\"25px\";s:4:\"left\";s:4:\"25px\";s:5:\"right\";s:4:\"25px\";}s:29:\"contact_form_privacy_checkbox\";s:1:\"0\";s:26:\"contact_form_privacy_label\";s:152:\"By checking this box, you confirm that you have read and are agreeing to our terms of use regarding the storage of the data submitted through this form.\";s:15:\"recaptcha_score\";s:3:\"0.5\";s:24:\"recaptcha_badge_position\";s:6:\"inline\";s:8:\"gmap_api\";s:0:\"\";s:13:\"gmap_api_type\";s:2:\"js\";s:18:\"gmap_embed_address\";s:0:\"\";s:19:\"gmap_embed_map_type\";s:7:\"roadmap\";s:27:\"search_limit_to_post_titles\";s:1:\"0\";s:18:\"search_form_design\";s:7:\"classic\";s:11:\"live_search\";s:1:\"0\";s:26:\"live_search_min_char_count\";s:1:\"4\";s:28:\"live_search_results_per_page\";s:3:\"100\";s:26:\"live_search_results_height\";s:3:\"250\";s:34:\"live_search_display_featured_image\";s:1:\"1\";s:29:\"live_search_display_post_type\";s:1:\"1\";s:26:\"search_grid_column_spacing\";s:2:\"40\";s:18:\"gfonts_load_method\";s:3:\"cdn\";s:14:\"privacy_embeds\";s:1:\"0\";s:14:\"privacy_expiry\";s:2:\"30\";s:19:\"privacy_embed_types\";a:8:{i:0;s:7:\"youtube\";i:1;s:5:\"vimeo\";i:2;s:10:\"soundcloud\";i:3;s:8:\"facebook\";i:4;s:6:\"flickr\";i:5;s:7:\"twitter\";i:6;s:5:\"gmaps\";i:7;s:8:\"tracking\";}s:22:\"privacy_embed_defaults\";a:0:{}s:16:\"privacy_bg_color\";s:15:\"rgba(0,0,0,0.1)\";s:13:\"privacy_color\";s:15:\"rgba(0,0,0,0.3)\";s:11:\"privacy_bar\";s:1:\"0\";s:19:\"privacy_bar_padding\";a:4:{s:3:\"top\";s:4:\"15px\";s:6:\"bottom\";s:4:\"15px\";s:4:\"left\";s:4:\"30px\";s:5:\"right\";s:4:\"30px\";}s:20:\"privacy_bar_bg_color\";s:7:\"#363839\";s:21:\"privacy_bar_font_size\";s:4:\"13px\";s:17:\"privacy_bar_color\";s:7:\"#8C8989\";s:22:\"privacy_bar_link_color\";s:7:\"#bfbfbf\";s:28:\"privacy_bar_link_hover_color\";s:7:\"#65bc7b\";s:16:\"privacy_bar_text\";s:51:\"This website uses cookies and third party services.\";s:23:\"privacy_bar_button_text\";s:2:\"Ok\";s:23:\"privacy_bar_button_save\";s:1:\"0\";s:16:\"privacy_bar_more\";s:1:\"0\";s:21:\"privacy_bar_more_text\";s:8:\"Settings\";s:23:\"privacy_bar_update_text\";s:15:\"Update Settings\";s:30:\"privacy_bar_headings_font_size\";s:4:\"13px\";s:26:\"privacy_bar_headings_color\";s:7:\"#dddddd\";s:19:\"privacy_bar_content\";a:0:{}s:12:\"avatar_shape\";s:6:\"square\";s:14:\"totop_position\";s:5:\"right\";s:19:\"totop_border_radius\";s:1:\"4\";s:22:\"totop_scroll_down_only\";s:1:\"0\";s:23:\"pagination_width_height\";s:2:\"30\";s:23:\"pagination_border_width\";s:1:\"1\";s:24:\"pagination_border_radius\";s:1:\"0\";s:16:\"pagination_range\";s:1:\"1\";s:26:\"pagination_start_end_range\";s:1:\"0\";s:14:\"form_text_size\";s:4:\"13px\";s:17:\"form_border_width\";s:1:\"1\";s:18:\"form_border_radius\";s:1:\"0\";s:25:\"grid_separator_style_type\";s:12:\"double|solid\";s:19:\"dependencies_status\";s:1:\"1\";s:22:\"status_fontawesome_pro\";s:1:\"0\";s:14:\"status_outline\";s:1:\"0\";s:26:\"disable_rich_snippet_title\";s:1:\"1\";s:27:\"disable_rich_snippet_author\";s:1:\"1\";s:25:\"disable_rich_snippet_date\";s:1:\"1\";s:34:\"enable_block_editor_backend_styles\";s:1:\"1\";s:9:\"lazy_load\";s:1:\"0\";s:17:\"font_face_display\";s:5:\"block\";s:15:\"emojis_disabled\";s:7:\"enabled\";s:12:\"defer_styles\";s:1:\"0\";s:19:\"media_queries_async\";s:1:\"0\";s:8:\"css_vars\";s:1:\"0\";s:11:\"js_compiler\";s:1:\"1\";s:19:\"reset_caches_button\";s:0:\"\";s:13:\"info_bg_color\";s:7:\"#ffffff\";s:15:\"danger_bg_color\";s:7:\"#f2dede\";s:16:\"success_bg_color\";s:7:\"#dff0d8\";s:16:\"warning_bg_color\";s:7:\"#fcf8e3\";s:20:\"alert_box_text_align\";s:6:\"center\";s:24:\"alert_box_text_transform\";s:10:\"capitalize\";s:21:\"alert_box_dismissable\";s:3:\"yes\";s:16:\"alert_box_shadow\";s:2:\"no\";s:17:\"alert_border_size\";s:1:\"1\";s:17:\"blog_grid_padding\";a:4:{s:3:\"top\";s:4:\"30px\";s:6:\"bottom\";s:4:\"20px\";s:4:\"left\";s:4:\"25px\";s:5:\"right\";s:4:\"25px\";}s:12:\"blog_excerpt\";s:3:\"yes\";s:19:\"blog_excerpt_length\";s:2:\"10\";s:21:\"button_text_transform\";s:9:\"uppercase\";s:21:\"chart_legend_position\";s:3:\"top\";s:19:\"chart_show_tooltips\";s:3:\"yes\";s:14:\"chart_bg_color\";s:19:\"rgba(255,255,255,0)\";s:21:\"chart_axis_text_color\";s:7:\"#666666\";s:20:\"chart_gridline_color\";s:15:\"rgba(0,0,0,0.1)\";s:19:\"checklist_item_size\";s:4:\"14px\";s:17:\"checklist_divider\";s:2:\"no\";s:23:\"checklist_divider_color\";s:7:\"#e0dede\";s:25:\"container_padding_default\";a:4:{s:3:\"top\";s:3:\"0px\";s:6:\"bottom\";s:3:\"0px\";s:4:\"left\";s:3:\"0px\";s:5:\"right\";s:3:\"0px\";}s:21:\"container_padding_100\";a:4:{s:3:\"top\";s:3:\"0px\";s:6:\"bottom\";s:3:\"0px\";s:4:\"left\";s:4:\"30px\";s:5:\"right\";s:4:\"30px\";}s:29:\"container_scroll_nav_bg_color\";s:18:\"rgba(0, 0, 0, 0.2)\";s:33:\"container_scroll_nav_bullet_color\";s:7:\"#eeeeee\";s:39:\"container_hundred_percent_height_mobile\";s:1:\"0\";s:23:\"content_box_button_span\";s:2:\"no\";s:18:\"faq_accordion_type\";s:10:\"accordions\";s:24:\"faq_accordion_boxed_mode\";s:1:\"0\";s:25:\"faq_accordion_border_size\";s:1:\"1\";s:26:\"faq_accordian_border_color\";s:7:\"#cccccc\";s:30:\"faq_accordian_background_color\";s:7:\"#ffffff\";s:25:\"faq_accordian_hover_color\";s:7:\"#f9f9f9\";s:26:\"faq_accordion_divider_line\";s:1:\"1\";s:29:\"faq_accordion_title_font_size\";s:4:\"13px\";s:23:\"faq_accordion_icon_size\";s:2:\"13\";s:24:\"faq_accordian_icon_color\";s:7:\"#ffffff\";s:24:\"faq_accordion_icon_boxed\";s:1:\"1\";s:28:\"faq_accordian_inactive_color\";s:7:\"#333333\";s:24:\"faq_accordion_icon_align\";s:4:\"left\";s:22:\"flip_boxes_flip_effect\";s:7:\"classic\";s:25:\"flip_boxes_flip_direction\";s:5:\"right\";s:24:\"flip_boxes_flip_duration\";s:3:\"0.4\";s:24:\"flip_boxes_equal_heights\";s:2:\"no\";s:20:\"gallery_picture_size\";s:4:\"auto\";s:14:\"gallery_layout\";s:4:\"grid\";s:15:\"gallery_columns\";s:1:\"3\";s:22:\"gallery_column_spacing\";s:2:\"10\";s:18:\"gallery_hover_type\";s:4:\"none\";s:24:\"gallery_lightbox_content\";s:4:\"none\";s:19:\"gallery_border_size\";s:1:\"0\";s:20:\"gallery_border_color\";s:7:\"#f6f6f6\";s:21:\"gallery_border_radius\";s:3:\"0px\";s:19:\"google_map_api_type\";s:2:\"js\";s:17:\"before_after_type\";s:12:\"before_after\";s:22:\"before_after_font_size\";s:2:\"13\";s:25:\"before_after_accent_color\";s:7:\"#ffffff\";s:28:\"before_after_label_placement\";s:14:\"image-centered\";s:24:\"before_after_handle_type\";s:7:\"default\";s:25:\"before_after_handle_color\";s:7:\"#ffffff\";s:22:\"before_after_handle_bg\";s:19:\"rgba(255,255,255,0)\";s:19:\"before_after_offset\";s:2:\"50\";s:24:\"before_after_orientation\";s:10:\"horizontal\";s:28:\"before_after_handle_movement\";s:10:\"drag_click\";s:28:\"before_after_transition_time\";s:3:\"0.5\";s:21:\"imageframe_style_type\";s:4:\"none\";s:15:\"imageframe_blur\";s:1:\"3\";s:16:\"person_pic_style\";s:4:\"none\";s:21:\"person_pic_style_blur\";s:1:\"3\";s:17:\"portfolio_columns\";i:3;s:23:\"portfolio_title_display\";s:3:\"all\";s:24:\"portfolio_text_alignment\";s:4:\"left\";s:24:\"portfolio_layout_padding\";a:4:{s:3:\"top\";s:4:\"25px\";s:6:\"bottom\";s:4:\"25px\";s:4:\"left\";s:4:\"25px\";s:5:\"right\";s:4:\"25px\";}s:30:\"pricing_background_color_hover\";s:7:\"#f8f8f8\";s:20:\"separator_style_type\";s:6:\"double\";s:25:\"separator_circle_bg_color\";s:19:\"rgba(255,255,255,0)\";s:24:\"syntax_highlighter_theme\";s:7:\"default\";s:31:\"syntax_highlighter_line_numbers\";s:3:\"yes\";s:47:\"syntax_highlighter_line_number_background_color\";s:0:\"\";s:41:\"syntax_highlighter_line_number_text_color\";s:0:\"\";s:32:\"syntax_highlighter_line_wrapping\";s:6:\"scroll\";s:36:\"syntax_highlighter_copy_to_clipboard\";s:3:\"yes\";s:41:\"syntax_highlighter_copy_to_clipboard_text\";s:17:\"Copy to Clipboard\";s:28:\"syntax_highlighter_font_size\";s:2:\"14\";s:35:\"syntax_highlighter_background_color\";s:0:\"\";s:30:\"syntax_highlighter_border_size\";s:1:\"1\";s:31:\"syntax_highlighter_border_color\";s:7:\"#e0dede\";s:31:\"syntax_highlighter_border_style\";s:5:\"solid\";s:25:\"syntax_highlighter_margin\";a:4:{s:3:\"top\";s:3:\"0px\";s:4:\"left\";s:3:\"0px\";s:6:\"bottom\";s:3:\"0px\";s:5:\"right\";s:3:\"0px\";}s:18:\"tabs_icon_position\";s:4:\"left\";s:14:\"tabs_icon_size\";s:2:\"13\";s:12:\"text_columns\";s:1:\"1\";s:21:\"text_column_min_width\";s:5:\"100px\";s:19:\"text_column_spacing\";s:3:\"2em\";s:15:\"text_rule_style\";s:4:\"none\";s:14:\"text_rule_size\";s:1:\"1\";s:15:\"text_rule_color\";s:7:\"#e0dede\";s:19:\"title_margin_mobile\";a:2:{s:3:\"top\";s:3:\"0px\";s:6:\"bottom\";s:4:\"20px\";}s:14:\"accordion_type\";s:10:\"accordions\";s:20:\"accordion_boxed_mode\";s:1:\"0\";s:21:\"accordion_border_size\";s:1:\"1\";s:22:\"accordian_border_color\";s:7:\"#cccccc\";s:26:\"accordian_background_color\";s:7:\"#ffffff\";s:21:\"accordian_hover_color\";s:7:\"#f9f9f9\";s:25:\"accordion_title_font_size\";s:4:\"13px\";s:19:\"accordion_icon_size\";s:2:\"13\";s:20:\"accordian_icon_color\";s:7:\"#ffffff\";s:20:\"accordion_icon_boxed\";s:1:\"1\";s:20:\"accordion_icon_align\";s:4:\"left\";s:28:\"user_login_form_field_layout\";s:7:\"stacked\";s:27:\"user_login_form_show_labels\";s:2:\"no\";s:33:\"user_login_form_show_placeholders\";s:3:\"yes\";s:32:\"user_login_form_show_remember_me\";s:2:\"no\";s:16:\"visibility_small\";s:3:\"640\";s:17:\"visibility_medium\";s:4:\"1024\";s:22:\"widget_area_title_size\";s:4:\"13px\";s:23:\"widget_area_title_color\";s:7:\"#333333\";}', 'yes');
INSERT INTO `wp_options` (`option_id`, `option_name`, `option_value`, `autoload`) VALUES
(25476, 'fusion_core_unconverted_posts_converted', '1', 'yes'),
(25483, 'akismet_comment_form_privacy_notice', 'hide', 'yes'),
(25484, 'akismet_ssl_disabled', '1573646253', 'yes'),
(25489, 'fusion_options-transients', 'a:2:{s:14:\"changed_values\";a:1:{s:15:\"header_bg_color\";s:6:\"D4A256\";}s:9:\"last_save\";i:1602163683;}', 'yes'),
(25503, 'admin_email_lifespan', '1728201632', 'yes'),
(25847, 'fusionredux_hide_ajax_notification', '1', 'yes'),
(26017, '_transient_timeout_fusion_dynamic_css_96b10b58ddbf6e90aced276b2be49556', '1573665379', 'no'),
(26107, '_transient_timeout_fusion_dynamic_css_f2369fd539b56b36de4fcace3a64065c', '1573668268', 'no'),
(30999, '_transient_timeout_fusion_dynamic_css_78e462a65e6f217f88cd7ec0184bf659', '1583242613', 'no'),
(31127, 'slide-page_children', 'a:0:{}', 'yes'),
(33878, '_transient_health-check-site-status-result', '{\"good\":15,\"recommended\":7,\"critical\":1}', 'yes'),
(38406, 'disallowed_keys', '', 'no'),
(38407, 'comment_previously_approved', '1', 'yes'),
(38408, 'auto_plugin_theme_update_emails', 'a:0:{}', 'no'),
(38409, 'finished_updating_comment_type', '1', 'yes'),
(46420, 'auto_update_core_dev', 'enabled', 'yes'),
(46421, 'auto_update_core_minor', 'enabled', 'yes'),
(46422, 'auto_update_core_major', 'unset', 'yes'),
(47264, 'https_detection_errors', 'a:0:{}', 'yes'),
(47693, 'secret_key', 'FnsHxkgzoqC&D_x]L)bf2_(;P/s,y!o@Nf#2@N4N2V`O`UR^)]j@VOC#rU`M%N+W', 'no'),
(59937, 'widget_block', 'a:1:{s:12:\"_multiwidget\";i:1;}', 'yes'),
(59940, 'wp_force_deactivated_plugins', 'a:0:{}', 'yes'),
(93303, 'wp_attachment_pages_enabled', '1', 'yes'),
(93304, 'user_count', '2', 'no'),
(93308, 'can_compress_scripts', '0', 'yes'),
(93309, '_site_transient_wp_plugin_dependencies_plugin_data', 'a:0:{}', 'no'),
(94700, '_transient_timeout_avada_googlefonts_contents', '1715730905', 'no'),
(94717, 'fusion_builder_settings', 'a:1:{s:23:\"remove_empty_attributes\";s:3:\"off\";}', 'yes'),
(94719, 'awb_site_data_status', 'a:2:{s:6:\"status\";s:11:\"show_notice\";s:4:\"date\";s:0:\"\";}', 'yes'),
(94754, '_transient_timeout_feed_bf20b258da161d0617d9fda7f9164a4a', '1715739586', 'no'),
(94777, '_transient_timeout_feed_d117b5738fbd35bd8c0391cda1f2b5d9', '1715739594', 'no'),
(94787, 'widget_form-widget', 'a:1:{s:12:\"_multiwidget\";i:1;}', 'yes'),
(94788, 'fusion_core_flush_permalinks', '1', 'yes'),
(94809, 'fusion_form_cleanup_datetime', '1743613147', 'yes');
INSERT INTO `wp_options` (`option_id`, `option_name`, `option_value`, `autoload`) VALUES
(94810, '_transient_fusion_fontawesome_en', '.fa,.fab,.fal,.far,.fas{-moz-osx-font-smoothing:grayscale;-webkit-font-smoothing:antialiased;display:inline-block;font-style:normal;font-variant:normal;text-rendering:auto;line-height:1}.fa-lg{font-size:1.33333em;line-height:.75em;vertical-align:-.0667em}.fa-xs{font-size:.75em}.fa-sm{font-size:.875em}.fa-1x{font-size:1em}.fa-2x{font-size:2em}.fa-3x{font-size:3em}.fa-4x{font-size:4em}.fa-5x{font-size:5em}.fa-6x{font-size:6em}.fa-7x{font-size:7em}.fa-8x{font-size:8em}.fa-9x{font-size:9em}.fa-10x{font-size:10em}.fa-fw{text-align:center;width:1.25em}.fa-ul{list-style-type:none;margin-left:2.5em;padding-left:0}.fa-ul>li{position:relative}.fa-li{left:-2em;position:absolute;text-align:center;width:2em;line-height:inherit}.fa-border{border:solid .08em #eee;border-radius:.1em;padding:.2em .25em .15em}.fa-pull-left{float:left}.fa-pull-right{float:right}.fa.fa-pull-left,.fab.fa-pull-left,.fal.fa-pull-left,.far.fa-pull-left,.fas.fa-pull-left{margin-right:.3em}.fa.fa-pull-right,.fab.fa-pull-right,.fal.fa-pull-right,.far.fa-pull-right,.fas.fa-pull-right{margin-left:.3em}.fa-spin{-webkit-animation:fa-spin 2s infinite linear;animation:fa-spin 2s infinite linear}.fa-pulse{-webkit-animation:fa-spin 1s infinite steps(8);animation:fa-spin 1s infinite steps(8)}@-webkit-keyframes fa-spin{0%{-webkit-transform:rotate(0);transform:rotate(0)}100%{-webkit-transform:rotate(360deg);transform:rotate(360deg)}}@keyframes fa-spin{0%{-webkit-transform:rotate(0);transform:rotate(0)}100%{-webkit-transform:rotate(360deg);transform:rotate(360deg)}}.fa-rotate-90{-webkit-transform:rotate(90deg);transform:rotate(90deg)}.fa-rotate-180{-webkit-transform:rotate(180deg);transform:rotate(180deg)}.fa-rotate-270{-webkit-transform:rotate(270deg);transform:rotate(270deg)}.fa-flip-horizontal{-webkit-transform:scale(-1,1);transform:scale(-1,1)}.fa-flip-vertical{-webkit-transform:scale(1,-1);transform:scale(1,-1)}.fa-flip-horizontal.fa-flip-vertical{-webkit-transform:scale(-1,-1);transform:scale(-1,-1)}:root .fa-flip-horizontal,:root .fa-flip-vertical,:root .fa-rotate-180,:root .fa-rotate-270,:root .fa-rotate-90{-webkit-filter:none;filter:none}.fa-stack{display:inline-block;height:2em;line-height:2em;position:relative;vertical-align:middle;width:2.5em}.fa-stack-1x,.fa-stack-2x{left:0;position:absolute;text-align:center;width:100%}.fa-stack-1x{line-height:inherit}.fa-stack-2x{font-size:2em}.fa-inverse{color:#fff}@font-face{font-family:\"Font Awesome 5 Brands\";font-style:normal;font-weight:normal;src:url(//msla.co.za/lodge/wp-content/themes/Avada/includes/lib/assets/fonts/fontawesome/webfonts/fa-brands-400.eot);src:url(//msla.co.za/lodge/wp-content/themes/Avada/includes/lib/assets/fonts/fontawesome/webfonts/fa-brands-400.eot?#iefix) format(\"embedded-opentype\"),url(//msla.co.za/lodge/wp-content/themes/Avada/includes/lib/assets/fonts/fontawesome/webfonts/fa-brands-400.woff2) format(\"woff2\"),url(//msla.co.za/lodge/wp-content/themes/Avada/includes/lib/assets/fonts/fontawesome/webfonts/fa-brands-400.woff) format(\"woff\"),url(//msla.co.za/lodge/wp-content/themes/Avada/includes/lib/assets/fonts/fontawesome/webfonts/fa-brands-400.ttf) format(\"truetype\"),url(//msla.co.za/lodge/wp-content/themes/Avada/includes/lib/assets/fonts/fontawesome/webfonts/fa-brands-400.svg#fontawesome) format(\"svg\");font-display: block;}.fab{font-family:\"Font Awesome 5 Brands\"}@font-face{font-family:\"Font Awesome 5 Free\";font-style:normal;font-weight:400;src:url(//msla.co.za/lodge/wp-content/themes/Avada/includes/lib/assets/fonts/fontawesome/webfonts/fa-regular-400.eot);src:url(//msla.co.za/lodge/wp-content/themes/Avada/includes/lib/assets/fonts/fontawesome/webfonts/fa-regular-400.eot?#iefix) format(\"embedded-opentype\"),url(//msla.co.za/lodge/wp-content/themes/Avada/includes/lib/assets/fonts/fontawesome/webfonts/fa-regular-400.woff2) format(\"woff2\"),url(//msla.co.za/lodge/wp-content/themes/Avada/includes/lib/assets/fonts/fontawesome/webfonts/fa-regular-400.woff) format(\"woff\"),url(//msla.co.za/lodge/wp-content/themes/Avada/includes/lib/assets/fonts/fontawesome/webfonts/fa-regular-400.ttf) format(\"truetype\"),url(//msla.co.za/lodge/wp-content/themes/Avada/includes/lib/assets/fonts/fontawesome/webfonts/fa-regular-400.svg#fontawesome) format(\"svg\");font-display: block;}.far{font-family:\"Font Awesome 5 Free\";font-weight:400;}@font-face{font-family:\"Font Awesome 5 Free\";font-style:normal;font-weight:900;src:url(//msla.co.za/lodge/wp-content/themes/Avada/includes/lib/assets/fonts/fontawesome/webfonts/fa-solid-900.eot);src:url(//msla.co.za/lodge/wp-content/themes/Avada/includes/lib/assets/fonts/fontawesome/webfonts/fa-solid-900.eot?#iefix) format(\"embedded-opentype\"),url(//msla.co.za/lodge/wp-content/themes/Avada/includes/lib/assets/fonts/fontawesome/webfonts/fa-solid-900.woff2) format(\"woff2\"),url(//msla.co.za/lodge/wp-content/themes/Avada/includes/lib/assets/fonts/fontawesome/webfonts/fa-solid-900.woff) format(\"woff\"),url(//msla.co.za/lodge/wp-content/themes/Avada/includes/lib/assets/fonts/fontawesome/webfonts/fa-solid-900.ttf) format(\"truetype\"),url(//msla.co.za/lodge/wp-content/themes/Avada/includes/lib/assets/fonts/fontawesome/webfonts/fa-solid-900.svg#fontawesome) format(\"svg\");font-display: block;}.fa,.fas{font-family:\"Font Awesome 5 Free\";font-weight:900}.fa-500px:before{content:\"\\f26e\"}.fa-accessible-icon:before{content:\"\\f368\"}.fa-accusoft:before{content:\"\\f369\"}.fa-acquisitions-incorporated:before{content:\"\\f6af\"}.fa-ad:before{content:\"\\f641\"}.fa-address-book:before{content:\"\\f2b9\"}.fa-address-card:before{content:\"\\f2bb\"}.fa-adjust:before{content:\"\\f042\"}.fa-adn:before{content:\"\\f170\"}.fa-adversal:before{content:\"\\f36a\"}.fa-affiliatetheme:before{content:\"\\f36b\"}.fa-air-freshener:before{content:\"\\f5d0\"}.fa-airbnb:before{content:\"\\f834\"}.fa-algolia:before{content:\"\\f36c\"}.fa-align-center:before{content:\"\\f037\"}.fa-align-justify:before{content:\"\\f039\"}.fa-align-left:before{content:\"\\f036\"}.fa-align-right:before{content:\"\\f038\"}.fa-alipay:before{content:\"\\f642\"}.fa-allergies:before{content:\"\\f461\"}.fa-amazon:before{content:\"\\f270\"}.fa-amazon-pay:before{content:\"\\f42c\"}.fa-ambulance:before{content:\"\\f0f9\"}.fa-american-sign-language-interpreting:before{content:\"\\f2a3\"}.fa-amilia:before{content:\"\\f36d\"}.fa-anchor:before{content:\"\\f13d\"}.fa-android:before{content:\"\\f17b\"}.fa-angellist:before{content:\"\\f209\"}.fa-angle-double-down:before{content:\"\\f103\"}.fa-angle-double-left:before{content:\"\\f100\"}.fa-angle-double-right:before{content:\"\\f101\"}.fa-angle-double-up:before{content:\"\\f102\"}.fa-angle-down:before{content:\"\\f107\"}.fa-angle-left:before{content:\"\\f104\"}.fa-angle-right:before{content:\"\\f105\"}.fa-angle-up:before{content:\"\\f106\"}.fa-angry:before{content:\"\\f556\"}.fa-angrycreative:before{content:\"\\f36e\"}.fa-angular:before{content:\"\\f420\"}.fa-ankh:before{content:\"\\f644\"}.fa-app-store:before{content:\"\\f36f\"}.fa-app-store-ios:before{content:\"\\f370\"}.fa-apper:before{content:\"\\f371\"}.fa-apple:before{content:\"\\f179\"}.fa-apple-alt:before{content:\"\\f5d1\"}.fa-apple-pay:before{content:\"\\f415\"}.fa-archive:before{content:\"\\f187\"}.fa-archway:before{content:\"\\f557\"}.fa-arrow-alt-circle-down:before{content:\"\\f358\"}.fa-arrow-alt-circle-left:before{content:\"\\f359\"}.fa-arrow-alt-circle-right:before{content:\"\\f35a\"}.fa-arrow-alt-circle-up:before{content:\"\\f35b\"}.fa-arrow-circle-down:before{content:\"\\f0ab\"}.fa-arrow-circle-left:before{content:\"\\f0a8\"}.fa-arrow-circle-right:before{content:\"\\f0a9\"}.fa-arrow-circle-up:before{content:\"\\f0aa\"}.fa-arrow-down:before{content:\"\\f063\"}.fa-arrow-left:before{content:\"\\f060\"}.fa-arrow-right:before{content:\"\\f061\"}.fa-arrow-up:before{content:\"\\f062\"}.fa-arrows-alt:before{content:\"\\f0b2\"}.fa-arrows-alt-h:before{content:\"\\f337\"}.fa-arrows-alt-v:before{content:\"\\f338\"}.fa-artstation:before{content:\"\\f77a\"}.fa-assistive-listening-systems:before{content:\"\\f2a2\"}.fa-asterisk:before{content:\"\\f069\"}.fa-asymmetrik:before{content:\"\\f372\"}.fa-at:before{content:\"\\f1fa\"}.fa-atlas:before{content:\"\\f558\"}.fa-atlassian:before{content:\"\\f77b\"}.fa-atom:before{content:\"\\f5d2\"}.fa-audible:before{content:\"\\f373\"}.fa-audio-description:before{content:\"\\f29e\"}.fa-autoprefixer:before{content:\"\\f41c\"}.fa-avianex:before{content:\"\\f374\"}.fa-aviato:before{content:\"\\f421\"}.fa-award:before{content:\"\\f559\"}.fa-aws:before{content:\"\\f375\"}.fa-baby:before{content:\"\\f77c\"}.fa-baby-carriage:before{content:\"\\f77d\"}.fa-backspace:before{content:\"\\f55a\"}.fa-backward:before{content:\"\\f04a\"}.fa-bacon:before{content:\"\\f7e5\"}.fa-bacteria:before{content:\"\\e059\"}.fa-bacterium:before{content:\"\\e05a\"}.fa-bahai:before{content:\"\\f666\"}.fa-balance-scale:before{content:\"\\f24e\"}.fa-balance-scale-left:before{content:\"\\f515\"}.fa-balance-scale-right:before{content:\"\\f516\"}.fa-ban:before{content:\"\\f05e\"}.fa-band-aid:before{content:\"\\f462\"}.fa-bandcamp:before{content:\"\\f2d5\"}.fa-barcode:before{content:\"\\f02a\"}.fa-bars:before{content:\"\\f0c9\"}.fa-baseball-ball:before{content:\"\\f433\"}.fa-basketball-ball:before{content:\"\\f434\"}.fa-bath:before{content:\"\\f2cd\"}.fa-battery-empty:before{content:\"\\f244\"}.fa-battery-full:before{content:\"\\f240\"}.fa-battery-half:before{content:\"\\f242\"}.fa-battery-quarter:before{content:\"\\f243\"}.fa-battery-three-quarters:before{content:\"\\f241\"}.fa-battle-net:before{content:\"\\f835\"}.fa-bed:before{content:\"\\f236\"}.fa-beer:before{content:\"\\f0fc\"}.fa-behance:before{content:\"\\f1b4\"}.fa-behance-square:before{content:\"\\f1b5\"}.fa-bell:before{content:\"\\f0f3\"}.fa-bell-slash:before{content:\"\\f1f6\"}.fa-bezier-curve:before{content:\"\\f55b\"}.fa-bible:before{content:\"\\f647\"}.fa-bicycle:before{content:\"\\f206\"}.fa-biking:before{content:\"\\f84a\"}.fa-bimobject:before{content:\"\\f378\"}.fa-binoculars:before{content:\"\\f1e5\"}.fa-biohazard:before{content:\"\\f780\"}.fa-birthday-cake:before{content:\"\\f1fd\"}.fa-bitbucket:before{content:\"\\f171\"}.fa-bitcoin:before{content:\"\\f379\"}.fa-bity:before{content:\"\\f37a\"}.fa-black-tie:before{content:\"\\f27e\"}.fa-blackberry:before{content:\"\\f37b\"}.fa-blender:before{content:\"\\f517\"}.fa-blender-phone:before{content:\"\\f6b6\"}.fa-blind:before{content:\"\\f29d\"}.fa-blog:before{content:\"\\f781\"}.fa-blogger:before{content:\"\\f37c\"}.fa-blogger-b:before{content:\"\\f37d\"}.fa-bluetooth:before{content:\"\\f293\"}.fa-bluetooth-b:before{content:\"\\f294\"}.fa-bold:before{content:\"\\f032\"}.fa-bolt:before{content:\"\\f0e7\"}.fa-bomb:before{content:\"\\f1e2\"}.fa-bone:before{content:\"\\f5d7\"}.fa-bong:before{content:\"\\f55c\"}.fa-book:before{content:\"\\f02d\"}.fa-book-dead:before{content:\"\\f6b7\"}.fa-book-medical:before{content:\"\\f7e6\"}.fa-book-open:before{content:\"\\f518\"}.fa-book-reader:before{content:\"\\f5da\"}.fa-bookmark:before{content:\"\\f02e\"}.fa-bootstrap:before{content:\"\\f836\"}.fa-border-all:before{content:\"\\f84c\"}.fa-border-none:before{content:\"\\f850\"}.fa-border-style:before{content:\"\\f853\"}.fa-bowling-ball:before{content:\"\\f436\"}.fa-box:before{content:\"\\f466\"}.fa-box-open:before{content:\"\\f49e\"}.fa-box-tissue:before{content:\"\\e05b\"}.fa-boxes:before{content:\"\\f468\"}.fa-braille:before{content:\"\\f2a1\"}.fa-brain:before{content:\"\\f5dc\"}.fa-bread-slice:before{content:\"\\f7ec\"}.fa-briefcase:before{content:\"\\f0b1\"}.fa-briefcase-medical:before{content:\"\\f469\"}.fa-broadcast-tower:before{content:\"\\f519\"}.fa-broom:before{content:\"\\f51a\"}.fa-brush:before{content:\"\\f55d\"}.fa-btc:before{content:\"\\f15a\"}.fa-buffer:before{content:\"\\f837\"}.fa-bug:before{content:\"\\f188\"}.fa-building:before{content:\"\\f1ad\"}.fa-bullhorn:before{content:\"\\f0a1\"}.fa-bullseye:before{content:\"\\f140\"}.fa-burn:before{content:\"\\f46a\"}.fa-buromobelexperte:before{content:\"\\f37f\"}.fa-bus:before{content:\"\\f207\"}.fa-bus-alt:before{content:\"\\f55e\"}.fa-business-time:before{content:\"\\f64a\"}.fa-buy-n-large:before{content:\"\\f8a6\"}.fa-buysellads:before{content:\"\\f20d\"}.fa-calculator:before{content:\"\\f1ec\"}.fa-calendar:before{content:\"\\f133\"}.fa-calendar-alt:before{content:\"\\f073\"}.fa-calendar-check:before{content:\"\\f274\"}.fa-calendar-day:before{content:\"\\f783\"}.fa-calendar-minus:before{content:\"\\f272\"}.fa-calendar-plus:before{content:\"\\f271\"}.fa-calendar-times:before{content:\"\\f273\"}.fa-calendar-week:before{content:\"\\f784\"}.fa-camera:before{content:\"\\f030\"}.fa-camera-retro:before{content:\"\\f083\"}.fa-campground:before{content:\"\\f6bb\"}.fa-canadian-maple-leaf:before{content:\"\\f785\"}.fa-candy-cane:before{content:\"\\f786\"}.fa-cannabis:before{content:\"\\f55f\"}.fa-capsules:before{content:\"\\f46b\"}.fa-car:before{content:\"\\f1b9\"}.fa-car-alt:before{content:\"\\f5de\"}.fa-car-battery:before{content:\"\\f5df\"}.fa-car-crash:before{content:\"\\f5e1\"}.fa-car-side:before{content:\"\\f5e4\"}.fa-caravan:before{content:\"\\f8ff\"}.fa-caret-down:before{content:\"\\f0d7\"}.fa-caret-left:before{content:\"\\f0d9\"}.fa-caret-right:before{content:\"\\f0da\"}.fa-caret-square-down:before{content:\"\\f150\"}.fa-caret-square-left:before{content:\"\\f191\"}.fa-caret-square-right:before{content:\"\\f152\"}.fa-caret-square-up:before{content:\"\\f151\"}.fa-caret-up:before{content:\"\\f0d8\"}.fa-carrot:before{content:\"\\f787\"}.fa-cart-arrow-down:before{content:\"\\f218\"}.fa-cart-plus:before{content:\"\\f217\"}.fa-cash-register:before{content:\"\\f788\"}.fa-cat:before{content:\"\\f6be\"}.fa-cc-amazon-pay:before{content:\"\\f42d\"}.fa-cc-amex:before{content:\"\\f1f3\"}.fa-cc-apple-pay:before{content:\"\\f416\"}.fa-cc-diners-club:before{content:\"\\f24c\"}.fa-cc-discover:before{content:\"\\f1f2\"}.fa-cc-jcb:before{content:\"\\f24b\"}.fa-cc-mastercard:before{content:\"\\f1f1\"}.fa-cc-paypal:before{content:\"\\f1f4\"}.fa-cc-stripe:before{content:\"\\f1f5\"}.fa-cc-visa:before{content:\"\\f1f0\"}.fa-centercode:before{content:\"\\f380\"}.fa-centos:before{content:\"\\f789\"}.fa-certificate:before{content:\"\\f0a3\"}.fa-chair:before{content:\"\\f6c0\"}.fa-chalkboard:before{content:\"\\f51b\"}.fa-chalkboard-teacher:before{content:\"\\f51c\"}.fa-charging-station:before{content:\"\\f5e7\"}.fa-chart-area:before{content:\"\\f1fe\"}.fa-chart-bar:before{content:\"\\f080\"}.fa-chart-line:before{content:\"\\f201\"}.fa-chart-pie:before{content:\"\\f200\"}.fa-check:before{content:\"\\f00c\"}.fa-check-circle:before{content:\"\\f058\"}.fa-check-double:before{content:\"\\f560\"}.fa-check-square:before{content:\"\\f14a\"}.fa-cheese:before{content:\"\\f7ef\"}.fa-chess:before{content:\"\\f439\"}.fa-chess-bishop:before{content:\"\\f43a\"}.fa-chess-board:before{content:\"\\f43c\"}.fa-chess-king:before{content:\"\\f43f\"}.fa-chess-knight:before{content:\"\\f441\"}.fa-chess-pawn:before{content:\"\\f443\"}.fa-chess-queen:before{content:\"\\f445\"}.fa-chess-rook:before{content:\"\\f447\"}.fa-chevron-circle-down:before{content:\"\\f13a\"}.fa-chevron-circle-left:before{content:\"\\f137\"}.fa-chevron-circle-right:before{content:\"\\f138\"}.fa-chevron-circle-up:before{content:\"\\f139\"}.fa-chevron-down:before{content:\"\\f078\"}.fa-chevron-left:before{content:\"\\f053\"}.fa-chevron-right:before{content:\"\\f054\"}.fa-chevron-up:before{content:\"\\f077\"}.fa-child:before{content:\"\\f1ae\"}.fa-chrome:before{content:\"\\f268\"}.fa-chromecast:before{content:\"\\f838\"}.fa-church:before{content:\"\\f51d\"}.fa-circle:before{content:\"\\f111\"}.fa-circle-notch:before{content:\"\\f1ce\"}.fa-city:before{content:\"\\f64f\"}.fa-clinic-medical:before{content:\"\\f7f2\"}.fa-clipboard:before{content:\"\\f328\"}.fa-clipboard-check:before{content:\"\\f46c\"}.fa-clipboard-list:before{content:\"\\f46d\"}.fa-clock:before{content:\"\\f017\"}.fa-clone:before{content:\"\\f24d\"}.fa-closed-captioning:before{content:\"\\f20a\"}.fa-cloud:before{content:\"\\f0c2\"}.fa-cloud-download-alt:before{content:\"\\f381\"}.fa-cloud-meatball:before{content:\"\\f73b\"}.fa-cloud-moon:before{content:\"\\f6c3\"}.fa-cloud-moon-rain:before{content:\"\\f73c\"}.fa-cloud-rain:before{content:\"\\f73d\"}.fa-cloud-showers-heavy:before{content:\"\\f740\"}.fa-cloud-sun:before{content:\"\\f6c4\"}.fa-cloud-sun-rain:before{content:\"\\f743\"}.fa-cloud-upload-alt:before{content:\"\\f382\"}.fa-cloudflare:before{content:\"\\e07d\"}.fa-cloudscale:before{content:\"\\f383\"}.fa-cloudsmith:before{content:\"\\f384\"}.fa-cloudversify:before{content:\"\\f385\"}.fa-cocktail:before{content:\"\\f561\"}.fa-code:before{content:\"\\f121\"}.fa-code-branch:before{content:\"\\f126\"}.fa-codepen:before{content:\"\\f1cb\"}.fa-codiepie:before{content:\"\\f284\"}.fa-coffee:before{content:\"\\f0f4\"}.fa-cog:before{content:\"\\f013\"}.fa-cogs:before{content:\"\\f085\"}.fa-coins:before{content:\"\\f51e\"}.fa-columns:before{content:\"\\f0db\"}.fa-comment:before{content:\"\\f075\"}.fa-comment-alt:before{content:\"\\f27a\"}.fa-comment-dollar:before{content:\"\\f651\"}.fa-comment-dots:before{content:\"\\f4ad\"}.fa-comment-medical:before{content:\"\\f7f5\"}.fa-comment-slash:before{content:\"\\f4b3\"}.fa-comments:before{content:\"\\f086\"}.fa-comments-dollar:before{content:\"\\f653\"}.fa-compact-disc:before{content:\"\\f51f\"}.fa-compass:before{content:\"\\f14e\"}.fa-compress:before{content:\"\\f066\"}.fa-compress-alt:before{content:\"\\f422\"}.fa-compress-arrows-alt:before{content:\"\\f78c\"}.fa-concierge-bell:before{content:\"\\f562\"}.fa-confluence:before{content:\"\\f78d\"}.fa-connectdevelop:before{content:\"\\f20e\"}.fa-contao:before{content:\"\\f26d\"}.fa-cookie:before{content:\"\\f563\"}.fa-cookie-bite:before{content:\"\\f564\"}.fa-copy:before{content:\"\\f0c5\"}.fa-copyright:before{content:\"\\f1f9\"}.fa-cotton-bureau:before{content:\"\\f89e\"}.fa-couch:before{content:\"\\f4b8\"}.fa-cpanel:before{content:\"\\f388\"}.fa-creative-commons:before{content:\"\\f25e\"}.fa-creative-commons-by:before{content:\"\\f4e7\"}.fa-creative-commons-nc:before{content:\"\\f4e8\"}.fa-creative-commons-nc-eu:before{content:\"\\f4e9\"}.fa-creative-commons-nc-jp:before{content:\"\\f4ea\"}.fa-creative-commons-nd:before{content:\"\\f4eb\"}.fa-creative-commons-pd:before{content:\"\\f4ec\"}.fa-creative-commons-pd-alt:before{content:\"\\f4ed\"}.fa-creative-commons-remix:before{content:\"\\f4ee\"}.fa-creative-commons-sa:before{content:\"\\f4ef\"}.fa-creative-commons-sampling:before{content:\"\\f4f0\"}.fa-creative-commons-sampling-plus:before{content:\"\\f4f1\"}.fa-creative-commons-share:before{content:\"\\f4f2\"}.fa-creative-commons-zero:before{content:\"\\f4f3\"}.fa-credit-card:before{content:\"\\f09d\"}.fa-critical-role:before{content:\"\\f6c9\"}.fa-crop:before{content:\"\\f125\"}.fa-crop-alt:before{content:\"\\f565\"}.fa-cross:before{content:\"\\f654\"}.fa-crosshairs:before{content:\"\\f05b\"}.fa-crow:before{content:\"\\f520\"}.fa-crown:before{content:\"\\f521\"}.fa-crutch:before{content:\"\\f7f7\"}.fa-css3:before{content:\"\\f13c\"}.fa-css3-alt:before{content:\"\\f38b\"}.fa-cube:before{content:\"\\f1b2\"}.fa-cubes:before{content:\"\\f1b3\"}.fa-cut:before{content:\"\\f0c4\"}.fa-cuttlefish:before{content:\"\\f38c\"}.fa-d-and-d:before{content:\"\\f38d\"}.fa-d-and-d-beyond:before{content:\"\\f6ca\"}.fa-dailymotion:before{content:\"\\e052\"}.fa-dashcube:before{content:\"\\f210\"}.fa-database:before{content:\"\\f1c0\"}.fa-deaf:before{content:\"\\f2a4\"}.fa-deezer:before{content:\"\\e077\"}.fa-delicious:before{content:\"\\f1a5\"}.fa-democrat:before{content:\"\\f747\"}.fa-deploydog:before{content:\"\\f38e\"}.fa-deskpro:before{content:\"\\f38f\"}.fa-desktop:before{content:\"\\f108\"}.fa-dev:before{content:\"\\f6cc\"}.fa-deviantart:before{content:\"\\f1bd\"}.fa-dharmachakra:before{content:\"\\f655\"}.fa-dhl:before{content:\"\\f790\"}.fa-diagnoses:before{content:\"\\f470\"}.fa-diaspora:before{content:\"\\f791\"}.fa-dice:before{content:\"\\f522\"}.fa-dice-d20:before{content:\"\\f6cf\"}.fa-dice-d6:before{content:\"\\f6d1\"}.fa-dice-five:before{content:\"\\f523\"}.fa-dice-four:before{content:\"\\f524\"}.fa-dice-one:before{content:\"\\f525\"}.fa-dice-six:before{content:\"\\f526\"}.fa-dice-three:before{content:\"\\f527\"}.fa-dice-two:before{content:\"\\f528\"}.fa-digg:before{content:\"\\f1a6\"}.fa-digital-ocean:before{content:\"\\f391\"}.fa-digital-tachograph:before{content:\"\\f566\"}.fa-directions:before{content:\"\\f5eb\"}.fa-discord:before{content:\"\\f392\"}.fa-discourse:before{content:\"\\f393\"}.fa-disease:before{content:\"\\f7fa\"}.fa-divide:before{content:\"\\f529\"}.fa-dizzy:before{content:\"\\f567\"}.fa-dna:before{content:\"\\f471\"}.fa-dochub:before{content:\"\\f394\"}.fa-docker:before{content:\"\\f395\"}.fa-dog:before{content:\"\\f6d3\"}.fa-dollar-sign:before{content:\"\\f155\"}.fa-dolly:before{content:\"\\f472\"}.fa-dolly-flatbed:before{content:\"\\f474\"}.fa-donate:before{content:\"\\f4b9\"}.fa-door-closed:before{content:\"\\f52a\"}.fa-door-open:before{content:\"\\f52b\"}.fa-dot-circle:before{content:\"\\f192\"}.fa-dove:before{content:\"\\f4ba\"}.fa-download:before{content:\"\\f019\"}.fa-draft2digital:before{content:\"\\f396\"}.fa-drafting-compass:before{content:\"\\f568\"}.fa-dragon:before{content:\"\\f6d5\"}.fa-draw-polygon:before{content:\"\\f5ee\"}.fa-dribbble:before{content:\"\\f17d\"}.fa-dribbble-square:before{content:\"\\f397\"}.fa-dropbox:before{content:\"\\f16b\"}.fa-drum:before{content:\"\\f569\"}.fa-drum-steelpan:before{content:\"\\f56a\"}.fa-drumstick-bite:before{content:\"\\f6d7\"}.fa-drupal:before{content:\"\\f1a9\"}.fa-dumbbell:before{content:\"\\f44b\"}.fa-dumpster:before{content:\"\\f793\"}.fa-dumpster-fire:before{content:\"\\f794\"}.fa-dungeon:before{content:\"\\f6d9\"}.fa-dyalog:before{content:\"\\f399\"}.fa-earlybirds:before{content:\"\\f39a\"}.fa-ebay:before{content:\"\\f4f4\"}.fa-edge:before{content:\"\\f282\"}.fa-edge-legacy:before{content:\"\\e078\"}.fa-edit:before{content:\"\\f044\"}.fa-egg:before{content:\"\\f7fb\"}.fa-eject:before{content:\"\\f052\"}.fa-elementor:before{content:\"\\f430\"}.fa-ellipsis-h:before{content:\"\\f141\"}.fa-ellipsis-v:before{content:\"\\f142\"}.fa-ello:before{content:\"\\f5f1\"}.fa-ember:before{content:\"\\f423\"}.fa-empire:before{content:\"\\f1d1\"}.fa-envelope:before{content:\"\\f0e0\"}.fa-envelope-open:before{content:\"\\f2b6\"}.fa-envelope-open-text:before{content:\"\\f658\"}.fa-envelope-square:before{content:\"\\f199\"}.fa-envira:before{content:\"\\f299\"}.fa-equals:before{content:\"\\f52c\"}.fa-eraser:before{content:\"\\f12d\"}.fa-erlang:before{content:\"\\f39d\"}.fa-ethereum:before{content:\"\\f42e\"}.fa-ethernet:before{content:\"\\f796\"}.fa-etsy:before{content:\"\\f2d7\"}.fa-euro-sign:before{content:\"\\f153\"}.fa-evernote:before{content:\"\\f839\"}.fa-exchange-alt:before{content:\"\\f362\"}.fa-exclamation:before{content:\"\\f12a\"}.fa-exclamation-circle:before{content:\"\\f06a\"}.fa-exclamation-triangle:before{content:\"\\f071\"}.fa-expand:before{content:\"\\f065\"}.fa-expand-alt:before{content:\"\\f424\"}.fa-expand-arrows-alt:before{content:\"\\f31e\"}.fa-expeditedssl:before{content:\"\\f23e\"}.fa-external-link-alt:before{content:\"\\f35d\"}.fa-external-link-square-alt:before{content:\"\\f360\"}.fa-eye:before{content:\"\\f06e\"}.fa-eye-dropper:before{content:\"\\f1fb\"}.fa-eye-slash:before{content:\"\\f070\"}.fa-facebook:before{content:\"\\f09a\"}.fa-facebook-f:before{content:\"\\f39e\"}.fa-facebook-messenger:before{content:\"\\f39f\"}.fa-facebook-square:before{content:\"\\f082\"}.fa-fan:before{content:\"\\f863\"}.fa-fantasy-flight-games:before{content:\"\\f6dc\"}.fa-fast-backward:before{content:\"\\f049\"}.fa-fast-forward:before{content:\"\\f050\"}.fa-faucet:before{content:\"\\e005\"}.fa-fax:before{content:\"\\f1ac\"}.fa-feather:before{content:\"\\f52d\"}.fa-feather-alt:before{content:\"\\f56b\"}.fa-fedex:before{content:\"\\f797\"}.fa-fedora:before{content:\"\\f798\"}.fa-female:before{content:\"\\f182\"}.fa-fighter-jet:before{content:\"\\f0fb\"}.fa-figma:before{content:\"\\f799\"}.fa-file:before{content:\"\\f15b\"}.fa-file-alt:before{content:\"\\f15c\"}.fa-file-archive:before{content:\"\\f1c6\"}.fa-file-audio:before{content:\"\\f1c7\"}.fa-file-code:before{content:\"\\f1c9\"}.fa-file-contract:before{content:\"\\f56c\"}.fa-file-csv:before{content:\"\\f6dd\"}.fa-file-download:before{content:\"\\f56d\"}.fa-file-excel:before{content:\"\\f1c3\"}.fa-file-export:before{content:\"\\f56e\"}.fa-file-image:before{content:\"\\f1c5\"}.fa-file-import:before{content:\"\\f56f\"}.fa-file-invoice:before{content:\"\\f570\"}.fa-file-invoice-dollar:before{content:\"\\f571\"}.fa-file-medical:before{content:\"\\f477\"}.fa-file-medical-alt:before{content:\"\\f478\"}.fa-file-pdf:before{content:\"\\f1c1\"}.fa-file-powerpoint:before{content:\"\\f1c4\"}.fa-file-prescription:before{content:\"\\f572\"}.fa-file-signature:before{content:\"\\f573\"}.fa-file-upload:before{content:\"\\f574\"}.fa-file-video:before{content:\"\\f1c8\"}.fa-file-word:before{content:\"\\f1c2\"}.fa-fill:before{content:\"\\f575\"}.fa-fill-drip:before{content:\"\\f576\"}.fa-film:before{content:\"\\f008\"}.fa-filter:before{content:\"\\f0b0\"}.fa-fingerprint:before{content:\"\\f577\"}.fa-fire:before{content:\"\\f06d\"}.fa-fire-alt:before{content:\"\\f7e4\"}.fa-fire-extinguisher:before{content:\"\\f134\"}.fa-firefox:before{content:\"\\f269\"}.fa-firefox-browser:before{content:\"\\e007\"}.fa-first-aid:before{content:\"\\f479\"}.fa-first-order:before{content:\"\\f2b0\"}.fa-first-order-alt:before{content:\"\\f50a\"}.fa-firstdraft:before{content:\"\\f3a1\"}.fa-fish:before{content:\"\\f578\"}.fa-fist-raised:before{content:\"\\f6de\"}.fa-flag:before{content:\"\\f024\"}.fa-flag-checkered:before{content:\"\\f11e\"}.fa-flag-usa:before{content:\"\\f74d\"}.fa-flask:before{content:\"\\f0c3\"}.fa-flickr:before{content:\"\\f16e\"}.fa-flipboard:before{content:\"\\f44d\"}.fa-flushed:before{content:\"\\f579\"}.fa-fly:before{content:\"\\f417\"}.fa-folder:before{content:\"\\f07b\"}.fa-folder-minus:before{content:\"\\f65d\"}.fa-folder-open:before{content:\"\\f07c\"}.fa-folder-plus:before{content:\"\\f65e\"}.fa-font:before{content:\"\\f031\"}.fa-font-awesome:before{content:\"\\f2b4\"}.fa-font-awesome-alt:before{content:\"\\f35c\"}.fa-font-awesome-flag:before{content:\"\\f425\"}.fa-fonticons:before{content:\"\\f280\"}.fa-fonticons-fi:before{content:\"\\f3a2\"}.fa-football-ball:before{content:\"\\f44e\"}.fa-fort-awesome:before{content:\"\\f286\"}.fa-fort-awesome-alt:before{content:\"\\f3a3\"}.fa-forumbee:before{content:\"\\f211\"}.fa-forward:before{content:\"\\f04e\"}.fa-foursquare:before{content:\"\\f180\"}.fa-free-code-camp:before{content:\"\\f2c5\"}.fa-freebsd:before{content:\"\\f3a4\"}.fa-frog:before{content:\"\\f52e\"}.fa-frown:before{content:\"\\f119\"}.fa-frown-open:before{content:\"\\f57a\"}.fa-fulcrum:before{content:\"\\f50b\"}.fa-funnel-dollar:before{content:\"\\f662\"}.fa-futbol:before{content:\"\\f1e3\"}.fa-galactic-republic:before{content:\"\\f50c\"}.fa-galactic-senate:before{content:\"\\f50d\"}.fa-gamepad:before{content:\"\\f11b\"}.fa-gas-pump:before{content:\"\\f52f\"}.fa-gavel:before{content:\"\\f0e3\"}.fa-gem:before{content:\"\\f3a5\"}.fa-genderless:before{content:\"\\f22d\"}.fa-get-pocket:before{content:\"\\f265\"}.fa-gg:before{content:\"\\f260\"}.fa-gg-circle:before{content:\"\\f261\"}.fa-ghost:before{content:\"\\f6e2\"}.fa-gift:before{content:\"\\f06b\"}.fa-gifts:before{content:\"\\f79c\"}.fa-git:before{content:\"\\f1d3\"}.fa-git-alt:before{content:\"\\f841\"}.fa-git-square:before{content:\"\\f1d2\"}.fa-github:before{content:\"\\f09b\"}.fa-github-alt:before{content:\"\\f113\"}.fa-github-square:before{content:\"\\f092\"}.fa-gitkraken:before{content:\"\\f3a6\"}.fa-gitlab:before{content:\"\\f296\"}.fa-gitter:before{content:\"\\f426\"}.fa-glass-cheers:before{content:\"\\f79f\"}.fa-glass-martini:before{content:\"\\f000\"}.fa-glass-martini-alt:before{content:\"\\f57b\"}.fa-glass-whiskey:before{content:\"\\f7a0\"}.fa-glasses:before{content:\"\\f530\"}.fa-glide:before{content:\"\\f2a5\"}.fa-glide-g:before{content:\"\\f2a6\"}.fa-globe:before{content:\"\\f0ac\"}.fa-globe-africa:before{content:\"\\f57c\"}.fa-globe-americas:before{content:\"\\f57d\"}.fa-globe-asia:before{content:\"\\f57e\"}.fa-globe-europe:before{content:\"\\f7a2\"}.fa-gofore:before{content:\"\\f3a7\"}.fa-golf-ball:before{content:\"\\f450\"}.fa-goodreads:before{content:\"\\f3a8\"}.fa-goodreads-g:before{content:\"\\f3a9\"}.fa-google:before{content:\"\\f1a0\"}.fa-google-drive:before{content:\"\\f3aa\"}.fa-google-pay:before{content:\"\\e079\"}.fa-google-play:before{content:\"\\f3ab\"}.fa-google-plus:before{content:\"\\f2b3\"}.fa-google-plus-g:before{content:\"\\f0d5\"}.fa-google-plus-square:before{content:\"\\f0d4\"}.fa-google-wallet:before{content:\"\\f1ee\"}.fa-gopuram:before{content:\"\\f664\"}.fa-graduation-cap:before{content:\"\\f19d\"}.fa-gratipay:before{content:\"\\f184\"}.fa-grav:before{content:\"\\f2d6\"}.fa-greater-than:before{content:\"\\f531\"}.fa-greater-than-equal:before{content:\"\\f532\"}.fa-grimace:before{content:\"\\f57f\"}.fa-grin:before{content:\"\\f580\"}.fa-grin-alt:before{content:\"\\f581\"}.fa-grin-beam:before{content:\"\\f582\"}.fa-grin-beam-sweat:before{content:\"\\f583\"}.fa-grin-hearts:before{content:\"\\f584\"}.fa-grin-squint:before{content:\"\\f585\"}.fa-grin-squint-tears:before{content:\"\\f586\"}.fa-grin-stars:before{content:\"\\f587\"}.fa-grin-tears:before{content:\"\\f588\"}.fa-grin-tongue:before{content:\"\\f589\"}.fa-grin-tongue-squint:before{content:\"\\f58a\"}.fa-grin-tongue-wink:before{content:\"\\f58b\"}.fa-grin-wink:before{content:\"\\f58c\"}.fa-grip-horizontal:before{content:\"\\f58d\"}.fa-grip-lines:before{content:\"\\f7a4\"}.fa-grip-lines-vertical:before{content:\"\\f7a5\"}.fa-grip-vertical:before{content:\"\\f58e\"}.fa-gripfire:before{content:\"\\f3ac\"}.fa-grunt:before{content:\"\\f3ad\"}.fa-guilded:before{content:\"\\e07e\"}.fa-guitar:before{content:\"\\f7a6\"}.fa-gulp:before{content:\"\\f3ae\"}.fa-h-square:before{content:\"\\f0fd\"}.fa-hacker-news:before{content:\"\\f1d4\"}.fa-hacker-news-square:before{content:\"\\f3af\"}.fa-hackerrank:before{content:\"\\f5f7\"}.fa-hamburger:before{content:\"\\f805\"}.fa-hammer:before{content:\"\\f6e3\"}.fa-hamsa:before{content:\"\\f665\"}.fa-hand-holding:before{content:\"\\f4bd\"}.fa-hand-holding-heart:before{content:\"\\f4be\"}.fa-hand-holding-medical:before{content:\"\\e05c\"}.fa-hand-holding-usd:before{content:\"\\f4c0\"}.fa-hand-holding-water:before{content:\"\\f4c1\"}.fa-hand-lizard:before{content:\"\\f258\"}.fa-hand-middle-finger:before{content:\"\\f806\"}.fa-hand-paper:before{content:\"\\f256\"}.fa-hand-peace:before{content:\"\\f25b\"}.fa-hand-point-down:before{content:\"\\f0a7\"}.fa-hand-point-left:before{content:\"\\f0a5\"}.fa-hand-point-right:before{content:\"\\f0a4\"}.fa-hand-point-up:before{content:\"\\f0a6\"}.fa-hand-pointer:before{content:\"\\f25a\"}.fa-hand-rock:before{content:\"\\f255\"}.fa-hand-scissors:before{content:\"\\f257\"}.fa-hand-sparkles:before{content:\"\\e05d\"}.fa-hand-spock:before{content:\"\\f259\"}.fa-hands:before{content:\"\\f4c2\"}.fa-hands-helping:before{content:\"\\f4c4\"}.fa-hands-wash:before{content:\"\\e05e\"}.fa-handshake:before{content:\"\\f2b5\"}.fa-handshake-alt-slash:before{content:\"\\e05f\"}.fa-handshake-slash:before{content:\"\\e060\"}.fa-hanukiah:before{content:\"\\f6e6\"}.fa-hard-hat:before{content:\"\\f807\"}.fa-hashtag:before{content:\"\\f292\"}.fa-hat-cowboy:before{content:\"\\f8c0\"}.fa-hat-cowboy-side:before{content:\"\\f8c1\"}.fa-hat-wizard:before{content:\"\\f6e8\"}.fa-hdd:before{content:\"\\f0a0\"}.fa-head-side-cough:before{content:\"\\e061\"}.fa-head-side-cough-slash:before{content:\"\\e062\"}.fa-head-side-mask:before{content:\"\\e063\"}.fa-head-side-virus:before{content:\"\\e064\"}.fa-heading:before{content:\"\\f1dc\"}.fa-headphones:before{content:\"\\f025\"}.fa-headphones-alt:before{content:\"\\f58f\"}.fa-headset:before{content:\"\\f590\"}.fa-heart:before{content:\"\\f004\"}.fa-heart-broken:before{content:\"\\f7a9\"}.fa-heartbeat:before{content:\"\\f21e\"}.fa-helicopter:before{content:\"\\f533\"}.fa-highlighter:before{content:\"\\f591\"}.fa-hiking:before{content:\"\\f6ec\"}.fa-hippo:before{content:\"\\f6ed\"}.fa-hips:before{content:\"\\f452\"}.fa-hire-a-helper:before{content:\"\\f3b0\"}.fa-history:before{content:\"\\f1da\"}.fa-hive:before{content:\"\\e07f\"}.fa-hockey-puck:before{content:\"\\f453\"}.fa-holly-berry:before{content:\"\\f7aa\"}.fa-home:before{content:\"\\f015\"}.fa-hooli:before{content:\"\\f427\"}.fa-hornbill:before{content:\"\\f592\"}.fa-horse:before{content:\"\\f6f0\"}.fa-horse-head:before{content:\"\\f7ab\"}.fa-hospital:before{content:\"\\f0f8\"}.fa-hospital-alt:before{content:\"\\f47d\"}.fa-hospital-symbol:before{content:\"\\f47e\"}.fa-hospital-user:before{content:\"\\f80d\"}.fa-hot-tub:before{content:\"\\f593\"}.fa-hotdog:before{content:\"\\f80f\"}.fa-hotel:before{content:\"\\f594\"}.fa-hotjar:before{content:\"\\f3b1\"}.fa-hourglass:before{content:\"\\f254\"}.fa-hourglass-end:before{content:\"\\f253\"}.fa-hourglass-half:before{content:\"\\f252\"}.fa-hourglass-start:before{content:\"\\f251\"}.fa-house-damage:before{content:\"\\f6f1\"}.fa-house-user:before{content:\"\\e065\"}.fa-houzz:before{content:\"\\f27c\"}.fa-hryvnia:before{content:\"\\f6f2\"}.fa-html5:before{content:\"\\f13b\"}.fa-hubspot:before{content:\"\\f3b2\"}.fa-i-cursor:before{content:\"\\f246\"}.fa-ice-cream:before{content:\"\\f810\"}.fa-icicles:before{content:\"\\f7ad\"}.fa-icons:before{content:\"\\f86d\"}.fa-id-badge:before{content:\"\\f2c1\"}.fa-id-card:before{content:\"\\f2c2\"}.fa-id-card-alt:before{content:\"\\f47f\"}.fa-ideal:before{content:\"\\e013\"}.fa-igloo:before{content:\"\\f7ae\"}.fa-image:before{content:\"\\f03e\"}.fa-images:before{content:\"\\f302\"}.fa-imdb:before{content:\"\\f2d8\"}.fa-inbox:before{content:\"\\f01c\"}.fa-indent:before{content:\"\\f03c\"}.fa-industry:before{content:\"\\f275\"}.fa-infinity:before{content:\"\\f534\"}.fa-info:before{content:\"\\f129\"}.fa-info-circle:before{content:\"\\f05a\"}.fa-innosoft:before{content:\"\\e080\"}.fa-instagram:before{content:\"\\f16d\"}.fa-instagram-square:before{content:\"\\e055\"}.fa-instalod:before{content:\"\\e081\"}.fa-intercom:before{content:\"\\f7af\"}.fa-internet-explorer:before{content:\"\\f26b\"}.fa-invision:before{content:\"\\f7b0\"}.fa-ioxhost:before{content:\"\\f208\"}.fa-italic:before{content:\"\\f033\"}.fa-itch-io:before{content:\"\\f83a\"}.fa-itunes:before{content:\"\\f3b4\"}.fa-itunes-note:before{content:\"\\f3b5\"}.fa-java:before{content:\"\\f4e4\"}.fa-jedi:before{content:\"\\f669\"}.fa-jedi-order:before{content:\"\\f50e\"}.fa-jenkins:before{content:\"\\f3b6\"}.fa-jira:before{content:\"\\f7b1\"}.fa-joget:before{content:\"\\f3b7\"}.fa-joint:before{content:\"\\f595\"}.fa-joomla:before{content:\"\\f1aa\"}.fa-journal-whills:before{content:\"\\f66a\"}.fa-js:before{content:\"\\f3b8\"}.fa-js-square:before{content:\"\\f3b9\"}.fa-jsfiddle:before{content:\"\\f1cc\"}.fa-kaaba:before{content:\"\\f66b\"}.fa-kaggle:before{content:\"\\f5fa\"}.fa-key:before{content:\"\\f084\"}.fa-keybase:before{content:\"\\f4f5\"}.fa-keyboard:before{content:\"\\f11c\"}.fa-keycdn:before{content:\"\\f3ba\"}.fa-khanda:before{content:\"\\f66d\"}.fa-kickstarter:before{content:\"\\f3bb\"}.fa-kickstarter-k:before{content:\"\\f3bc\"}.fa-kiss:before{content:\"\\f596\"}.fa-kiss-beam:before{content:\"\\f597\"}.fa-kiss-wink-heart:before{content:\"\\f598\"}.fa-kiwi-bird:before{content:\"\\f535\"}.fa-korvue:before{content:\"\\f42f\"}.fa-landmark:before{content:\"\\f66f\"}.fa-language:before{content:\"\\f1ab\"}.fa-laptop:before{content:\"\\f109\"}.fa-laptop-code:before{content:\"\\f5fc\"}.fa-laptop-house:before{content:\"\\e066\"}.fa-laptop-medical:before{content:\"\\f812\"}.fa-laravel:before{content:\"\\f3bd\"}.fa-lastfm:before{content:\"\\f202\"}.fa-lastfm-square:before{content:\"\\f203\"}.fa-laugh:before{content:\"\\f599\"}.fa-laugh-beam:before{content:\"\\f59a\"}.fa-laugh-squint:before{content:\"\\f59b\"}.fa-laugh-wink:before{content:\"\\f59c\"}.fa-layer-group:before{content:\"\\f5fd\"}.fa-leaf:before{content:\"\\f06c\"}.fa-leanpub:before{content:\"\\f212\"}.fa-lemon:before{content:\"\\f094\"}.fa-less:before{content:\"\\f41d\"}.fa-less-than:before{content:\"\\f536\"}.fa-less-than-equal:before{content:\"\\f537\"}.fa-level-down-alt:before{content:\"\\f3be\"}.fa-level-up-alt:before{content:\"\\f3bf\"}.fa-life-ring:before{content:\"\\f1cd\"}.fa-lightbulb:before{content:\"\\f0eb\"}.fa-line:before{content:\"\\f3c0\"}.fa-link:before{content:\"\\f0c1\"}.fa-linkedin:before{content:\"\\f08c\"}.fa-linkedin-in:before{content:\"\\f0e1\"}.fa-linode:before{content:\"\\f2b8\"}.fa-linux:before{content:\"\\f17c\"}.fa-lira-sign:before{content:\"\\f195\"}.fa-list:before{content:\"\\f03a\"}.fa-list-alt:before{content:\"\\f022\"}.fa-list-ol:before{content:\"\\f0cb\"}.fa-list-ul:before{content:\"\\f0ca\"}.fa-location-arrow:before{content:\"\\f124\"}.fa-lock:before{content:\"\\f023\"}.fa-lock-open:before{content:\"\\f3c1\"}.fa-long-arrow-alt-down:before{content:\"\\f309\"}.fa-long-arrow-alt-left:before{content:\"\\f30a\"}.fa-long-arrow-alt-right:before{content:\"\\f30b\"}.fa-long-arrow-alt-up:before{content:\"\\f30c\"}.fa-low-vision:before{content:\"\\f2a8\"}.fa-luggage-cart:before{content:\"\\f59d\"}.fa-lungs:before{content:\"\\f604\"}.fa-lungs-virus:before{content:\"\\e067\"}.fa-lyft:before{content:\"\\f3c3\"}.fa-magento:before{content:\"\\f3c4\"}.fa-magic:before{content:\"\\f0d0\"}.fa-magnet:before{content:\"\\f076\"}.fa-mail-bulk:before{content:\"\\f674\"}.fa-mailchimp:before{content:\"\\f59e\"}.fa-male:before{content:\"\\f183\"}.fa-mandalorian:before{content:\"\\f50f\"}.fa-map:before{content:\"\\f279\"}.fa-map-marked:before{content:\"\\f59f\"}.fa-map-marked-alt:before{content:\"\\f5a0\"}.fa-map-marker:before{content:\"\\f041\"}.fa-map-marker-alt:before{content:\"\\f3c5\"}.fa-map-pin:before{content:\"\\f276\"}.fa-map-signs:before{content:\"\\f277\"}.fa-markdown:before{content:\"\\f60f\"}.fa-marker:before{content:\"\\f5a1\"}.fa-mars:before{content:\"\\f222\"}.fa-mars-double:before{content:\"\\f227\"}.fa-mars-stroke:before{content:\"\\f229\"}.fa-mars-stroke-h:before{content:\"\\f22b\"}.fa-mars-stroke-v:before{content:\"\\f22a\"}.fa-mask:before{content:\"\\f6fa\"}.fa-mastodon:before{content:\"\\f4f6\"}.fa-maxcdn:before{content:\"\\f136\"}.fa-mdb:before{content:\"\\f8ca\"}.fa-medal:before{content:\"\\f5a2\"}.fa-medapps:before{content:\"\\f3c6\"}.fa-medium:before{content:\"\\f23a\"}.fa-medium-m:before{content:\"\\f3c7\"}.fa-medkit:before{content:\"\\f0fa\"}.fa-medrt:before{content:\"\\f3c8\"}.fa-meetup:before{content:\"\\f2e0\"}.fa-megaport:before{content:\"\\f5a3\"}.fa-meh:before{content:\"\\f11a\"}.fa-meh-blank:before{content:\"\\f5a4\"}.fa-meh-rolling-eyes:before{content:\"\\f5a5\"}.fa-memory:before{content:\"\\f538\"}.fa-mendeley:before{content:\"\\f7b3\"}.fa-menorah:before{content:\"\\f676\"}.fa-mercury:before{content:\"\\f223\"}.fa-meteor:before{content:\"\\f753\"}.fa-microblog:before{content:\"\\e01a\"}.fa-microchip:before{content:\"\\f2db\"}.fa-microphone:before{content:\"\\f130\"}.fa-microphone-alt:before{content:\"\\f3c9\"}.fa-microphone-alt-slash:before{content:\"\\f539\"}.fa-microphone-slash:before{content:\"\\f131\"}.fa-microscope:before{content:\"\\f610\"}.fa-microsoft:before{content:\"\\f3ca\"}.fa-minus:before{content:\"\\f068\"}.fa-minus-circle:before{content:\"\\f056\"}.fa-minus-square:before{content:\"\\f146\"}.fa-mitten:before{content:\"\\f7b5\"}.fa-mix:before{content:\"\\f3cb\"}.fa-mixcloud:before{content:\"\\f289\"}.fa-mixer:before{content:\"\\e056\"}.fa-mizuni:before{content:\"\\f3cc\"}.fa-mobile:before{content:\"\\f10b\"}.fa-mobile-alt:before{content:\"\\f3cd\"}.fa-modx:before{content:\"\\f285\"}.fa-monero:before{content:\"\\f3d0\"}.fa-money-bill:before{content:\"\\f0d6\"}.fa-money-bill-alt:before{content:\"\\f3d1\"}.fa-money-bill-wave:before{content:\"\\f53a\"}.fa-money-bill-wave-alt:before{content:\"\\f53b\"}.fa-money-check:before{content:\"\\f53c\"}.fa-money-check-alt:before{content:\"\\f53d\"}.fa-monument:before{content:\"\\f5a6\"}.fa-moon:before{content:\"\\f186\"}.fa-mortar-pestle:before{content:\"\\f5a7\"}.fa-mosque:before{content:\"\\f678\"}.fa-motorcycle:before{content:\"\\f21c\"}.fa-mountain:before{content:\"\\f6fc\"}.fa-mouse:before{content:\"\\f8cc\"}.fa-mouse-pointer:before{content:\"\\f245\"}.fa-mug-hot:before{content:\"\\f7b6\"}.fa-music:before{content:\"\\f001\"}.fa-napster:before{content:\"\\f3d2\"}.fa-neos:before{content:\"\\f612\"}.fa-network-wired:before{content:\"\\f6ff\"}.fa-neuter:before{content:\"\\f22c\"}.fa-newspaper:before{content:\"\\f1ea\"}.fa-nimblr:before{content:\"\\f5a8\"}.fa-node:before{content:\"\\f419\"}.fa-node-js:before{content:\"\\f3d3\"}.fa-not-equal:before{content:\"\\f53e\"}.fa-notes-medical:before{content:\"\\f481\"}.fa-npm:before{content:\"\\f3d4\"}.fa-ns8:before{content:\"\\f3d5\"}.fa-nutritionix:before{content:\"\\f3d6\"}.fa-object-group:before{content:\"\\f247\"}.fa-object-ungroup:before{content:\"\\f248\"}.fa-octopus-deploy:before{content:\"\\e082\"}.fa-odnoklassniki:before{content:\"\\f263\"}.fa-odnoklassniki-square:before{content:\"\\f264\"}.fa-oil-can:before{content:\"\\f613\"}.fa-old-republic:before{content:\"\\f510\"}.fa-om:before{content:\"\\f679\"}.fa-opencart:before{content:\"\\f23d\"}.fa-openid:before{content:\"\\f19b\"}.fa-opera:before{content:\"\\f26a\"}.fa-optin-monster:before{content:\"\\f23c\"}.fa-orcid:before{content:\"\\f8d2\"}.fa-osi:before{content:\"\\f41a\"}.fa-otter:before{content:\"\\f700\"}.fa-outdent:before{content:\"\\f03b\"}.fa-page4:before{content:\"\\f3d7\"}.fa-pagelines:before{content:\"\\f18c\"}.fa-pager:before{content:\"\\f815\"}.fa-paint-brush:before{content:\"\\f1fc\"}.fa-paint-roller:before{content:\"\\f5aa\"}.fa-palette:before{content:\"\\f53f\"}.fa-palfed:before{content:\"\\f3d8\"}.fa-pallet:before{content:\"\\f482\"}.fa-paper-plane:before{content:\"\\f1d8\"}.fa-paperclip:before{content:\"\\f0c6\"}.fa-parachute-box:before{content:\"\\f4cd\"}.fa-paragraph:before{content:\"\\f1dd\"}.fa-parking:before{content:\"\\f540\"}.fa-passport:before{content:\"\\f5ab\"}.fa-pastafarianism:before{content:\"\\f67b\"}.fa-paste:before{content:\"\\f0ea\"}.fa-patreon:before{content:\"\\f3d9\"}.fa-pause:before{content:\"\\f04c\"}.fa-pause-circle:before{content:\"\\f28b\"}.fa-paw:before{content:\"\\f1b0\"}.fa-paypal:before{content:\"\\f1ed\"}.fa-peace:before{content:\"\\f67c\"}.fa-pen:before{content:\"\\f304\"}.fa-pen-alt:before{content:\"\\f305\"}.fa-pen-fancy:before{content:\"\\f5ac\"}.fa-pen-nib:before{content:\"\\f5ad\"}.fa-pen-square:before{content:\"\\f14b\"}.fa-pencil-alt:before{content:\"\\f303\"}.fa-pencil-ruler:before{content:\"\\f5ae\"}.fa-penny-arcade:before{content:\"\\f704\"}.fa-people-arrows:before{content:\"\\e068\"}.fa-people-carry:before{content:\"\\f4ce\"}.fa-pepper-hot:before{content:\"\\f816\"}.fa-perbyte:before{content:\"\\e083\"}.fa-percent:before{content:\"\\f295\"}.fa-percentage:before{content:\"\\f541\"}.fa-periscope:before{content:\"\\f3da\"}.fa-person-booth:before{content:\"\\f756\"}.fa-phabricator:before{content:\"\\f3db\"}.fa-phoenix-framework:before{content:\"\\f3dc\"}.fa-phoenix-squadron:before{content:\"\\f511\"}.fa-phone:before{content:\"\\f095\"}.fa-phone-alt:before{content:\"\\f879\"}.fa-phone-slash:before{content:\"\\f3dd\"}.fa-phone-square:before{content:\"\\f098\"}.fa-phone-square-alt:before{content:\"\\f87b\"}.fa-phone-volume:before{content:\"\\f2a0\"}.fa-photo-video:before{content:\"\\f87c\"}.fa-php:before{content:\"\\f457\"}.fa-pied-piper:before{content:\"\\f2ae\"}.fa-pied-piper-alt:before{content:\"\\f1a8\"}.fa-pied-piper-hat:before{content:\"\\f4e5\"}.fa-pied-piper-pp:before{content:\"\\f1a7\"}.fa-pied-piper-square:before{content:\"\\e01e\"}.fa-piggy-bank:before{content:\"\\f4d3\"}.fa-pills:before{content:\"\\f484\"}.fa-pinterest:before{content:\"\\f0d2\"}.fa-pinterest-p:before{content:\"\\f231\"}.fa-pinterest-square:before{content:\"\\f0d3\"}.fa-pizza-slice:before{content:\"\\f818\"}.fa-place-of-worship:before{content:\"\\f67f\"}.fa-plane:before{content:\"\\f072\"}.fa-plane-arrival:before{content:\"\\f5af\"}.fa-plane-departure:before{content:\"\\f5b0\"}.fa-plane-slash:before{content:\"\\e069\"}.fa-play:before{content:\"\\f04b\"}.fa-play-circle:before{content:\"\\f144\"}.fa-playstation:before{content:\"\\f3df\"}.fa-plug:before{content:\"\\f1e6\"}.fa-plus:before{content:\"\\f067\"}.fa-plus-circle:before{content:\"\\f055\"}.fa-plus-square:before{content:\"\\f0fe\"}.fa-podcast:before{content:\"\\f2ce\"}.fa-poll:before{content:\"\\f681\"}.fa-poll-h:before{content:\"\\f682\"}.fa-poo:before{content:\"\\f2fe\"}.fa-poo-storm:before{content:\"\\f75a\"}.fa-poop:before{content:\"\\f619\"}.fa-portrait:before{content:\"\\f3e0\"}.fa-pound-sign:before{content:\"\\f154\"}.fa-power-off:before{content:\"\\f011\"}.fa-pray:before{content:\"\\f683\"}.fa-praying-hands:before{content:\"\\f684\"}.fa-prescription:before{content:\"\\f5b1\"}.fa-prescription-bottle:before{content:\"\\f485\"}.fa-prescription-bottle-alt:before{content:\"\\f486\"}.fa-print:before{content:\"\\f02f\"}.fa-procedures:before{content:\"\\f487\"}.fa-product-hunt:before{content:\"\\f288\"}.fa-project-diagram:before{content:\"\\f542\"}.fa-pump-medical:before{content:\"\\e06a\"}.fa-pump-soap:before{content:\"\\e06b\"}.fa-pushed:before{content:\"\\f3e1\"}.fa-puzzle-piece:before{content:\"\\f12e\"}.fa-python:before{content:\"\\f3e2\"}.fa-qq:before{content:\"\\f1d6\"}.fa-qrcode:before{content:\"\\f029\"}.fa-question:before{content:\"\\f128\"}.fa-question-circle:before{content:\"\\f059\"}.fa-quidditch:before{content:\"\\f458\"}.fa-quinscape:before{content:\"\\f459\"}.fa-quora:before{content:\"\\f2c4\"}.fa-quote-left:before{content:\"\\f10d\"}.fa-quote-right:before{content:\"\\f10e\"}.fa-quran:before{content:\"\\f687\"}.fa-r-project:before{content:\"\\f4f7\"}.fa-radiation:before{content:\"\\f7b9\"}.fa-radiation-alt:before{content:\"\\f7ba\"}.fa-rainbow:before{content:\"\\f75b\"}.fa-random:before{content:\"\\f074\"}.fa-raspberry-pi:before{content:\"\\f7bb\"}.fa-ravelry:before{content:\"\\f2d9\"}.fa-react:before{content:\"\\f41b\"}.fa-reacteurope:before{content:\"\\f75d\"}.fa-readme:before{content:\"\\f4d5\"}.fa-rebel:before{content:\"\\f1d0\"}.fa-receipt:before{content:\"\\f543\"}.fa-record-vinyl:before{content:\"\\f8d9\"}.fa-recycle:before{content:\"\\f1b8\"}.fa-red-river:before{content:\"\\f3e3\"}.fa-reddit:before{content:\"\\f1a1\"}.fa-reddit-alien:before{content:\"\\f281\"}.fa-reddit-square:before{content:\"\\f1a2\"}.fa-redhat:before{content:\"\\f7bc\"}.fa-redo:before{content:\"\\f01e\"}.fa-redo-alt:before{content:\"\\f2f9\"}.fa-registered:before{content:\"\\f25d\"}.fa-remove-format:before{content:\"\\f87d\"}.fa-renren:before{content:\"\\f18b\"}.fa-reply:before{content:\"\\f3e5\"}.fa-reply-all:before{content:\"\\f122\"}.fa-replyd:before{content:\"\\f3e6\"}.fa-republican:before{content:\"\\f75e\"}.fa-researchgate:before{content:\"\\f4f8\"}.fa-resolving:before{content:\"\\f3e7\"}.fa-restroom:before{content:\"\\f7bd\"}.fa-retweet:before{content:\"\\f079\"}.fa-rev:before{content:\"\\f5b2\"}.fa-ribbon:before{content:\"\\f4d6\"}.fa-ring:before{content:\"\\f70b\"}.fa-road:before{content:\"\\f018\"}.fa-robot:before{content:\"\\f544\"}.fa-rocket:before{content:\"\\f135\"}.fa-rocketchat:before{content:\"\\f3e8\"}.fa-rockrms:before{content:\"\\f3e9\"}.fa-route:before{content:\"\\f4d7\"}.fa-rss:before{content:\"\\f09e\"}.fa-rss-square:before{content:\"\\f143\"}.fa-ruble-sign:before{content:\"\\f158\"}.fa-ruler:before{content:\"\\f545\"}.fa-ruler-combined:before{content:\"\\f546\"}.fa-ruler-horizontal:before{content:\"\\f547\"}.fa-ruler-vertical:before{content:\"\\f548\"}.fa-running:before{content:\"\\f70c\"}.fa-rupee-sign:before{content:\"\\f156\"}.fa-rust:before{content:\"\\e07a\"}.fa-sad-cry:before{content:\"\\f5b3\"}.fa-sad-tear:before{content:\"\\f5b4\"}.fa-safari:before{content:\"\\f267\"}.fa-salesforce:before{content:\"\\f83b\"}.fa-sass:before{content:\"\\f41e\"}.fa-satellite:before{content:\"\\f7bf\"}.fa-satellite-dish:before{content:\"\\f7c0\"}.fa-save:before{content:\"\\f0c7\"}.fa-schlix:before{content:\"\\f3ea\"}.fa-school:before{content:\"\\f549\"}.fa-screwdriver:before{content:\"\\f54a\"}.fa-scribd:before{content:\"\\f28a\"}.fa-scroll:before{content:\"\\f70e\"}.fa-sd-card:before{content:\"\\f7c2\"}.fa-search:before{content:\"\\f002\"}.fa-search-dollar:before{content:\"\\f688\"}.fa-search-location:before{content:\"\\f689\"}.fa-search-minus:before{content:\"\\f010\"}.fa-search-plus:before{content:\"\\f00e\"}.fa-searchengin:before{content:\"\\f3eb\"}.fa-seedling:before{content:\"\\f4d8\"}.fa-sellcast:before{content:\"\\f2da\"}.fa-sellsy:before{content:\"\\f213\"}.fa-server:before{content:\"\\f233\"}.fa-servicestack:before{content:\"\\f3ec\"}.fa-shapes:before{content:\"\\f61f\"}.fa-share:before{content:\"\\f064\"}.fa-share-alt:before{content:\"\\f1e0\"}.fa-share-alt-square:before{content:\"\\f1e1\"}.fa-share-square:before{content:\"\\f14d\"}.fa-shekel-sign:before{content:\"\\f20b\"}.fa-shield-alt:before{content:\"\\f3ed\"}.fa-shield-virus:before{content:\"\\e06c\"}.fa-ship:before{content:\"\\f21a\"}.fa-shipping-fast:before{content:\"\\f48b\"}.fa-shirtsinbulk:before{content:\"\\f214\"}.fa-shoe-prints:before{content:\"\\f54b\"}.fa-shopify:before{content:\"\\e057\"}.fa-shopping-bag:before{content:\"\\f290\"}.fa-shopping-basket:before{content:\"\\f291\"}.fa-shopping-cart:before{content:\"\\f07a\"}.fa-shopware:before{content:\"\\f5b5\"}.fa-shower:before{content:\"\\f2cc\"}.fa-shuttle-van:before{content:\"\\f5b6\"}.fa-sign:before{content:\"\\f4d9\"}.fa-sign-in-alt:before{content:\"\\f2f6\"}.fa-sign-language:before{content:\"\\f2a7\"}.fa-sign-out-alt:before{content:\"\\f2f5\"}.fa-signal:before{content:\"\\f012\"}.fa-signature:before{content:\"\\f5b7\"}.fa-sim-card:before{content:\"\\f7c4\"}.fa-simplybuilt:before{content:\"\\f215\"}.fa-sink:before{content:\"\\e06d\"}.fa-sistrix:before{content:\"\\f3ee\"}.fa-sitemap:before{content:\"\\f0e8\"}.fa-sith:before{content:\"\\f512\"}.fa-skating:before{content:\"\\f7c5\"}.fa-sketch:before{content:\"\\f7c6\"}.fa-skiing:before{content:\"\\f7c9\"}.fa-skiing-nordic:before{content:\"\\f7ca\"}.fa-skull:before{content:\"\\f54c\"}.fa-skull-crossbones:before{content:\"\\f714\"}.fa-skyatlas:before{content:\"\\f216\"}.fa-skype:before{content:\"\\f17e\"}.fa-slack:before{content:\"\\f198\"}.fa-slack-hash:before{content:\"\\f3ef\"}.fa-slash:before{content:\"\\f715\"}.fa-sleigh:before{content:\"\\f7cc\"}.fa-sliders-h:before{content:\"\\f1de\"}.fa-slideshare:before{content:\"\\f1e7\"}.fa-smile:before{content:\"\\f118\"}.fa-smile-beam:before{content:\"\\f5b8\"}.fa-smile-wink:before{content:\"\\f4da\"}.fa-smog:before{content:\"\\f75f\"}.fa-smoking:before{content:\"\\f48d\"}.fa-smoking-ban:before{content:\"\\f54d\"}.fa-sms:before{content:\"\\f7cd\"}.fa-snapchat:before{content:\"\\f2ab\"}.fa-snapchat-ghost:before{content:\"\\f2ac\"}.fa-snapchat-square:before{content:\"\\f2ad\"}.fa-snowboarding:before{content:\"\\f7ce\"}.fa-snowflake:before{content:\"\\f2dc\"}.fa-snowman:before{content:\"\\f7d0\"}.fa-snowplow:before{content:\"\\f7d2\"}.fa-soap:before{content:\"\\e06e\"}.fa-socks:before{content:\"\\f696\"}.fa-solar-panel:before{content:\"\\f5ba\"}.fa-sort:before{content:\"\\f0dc\"}.fa-sort-alpha-down:before{content:\"\\f15d\"}.fa-sort-alpha-down-alt:before{content:\"\\f881\"}.fa-sort-alpha-up:before{content:\"\\f15e\"}.fa-sort-alpha-up-alt:before{content:\"\\f882\"}.fa-sort-amount-down:before{content:\"\\f160\"}.fa-sort-amount-down-alt:before{content:\"\\f884\"}.fa-sort-amount-up:before{content:\"\\f161\"}.fa-sort-amount-up-alt:before{content:\"\\f885\"}.fa-sort-down:before{content:\"\\f0dd\"}.fa-sort-numeric-down:before{content:\"\\f162\"}.fa-sort-numeric-down-alt:before{content:\"\\f886\"}.fa-sort-numeric-up:before{content:\"\\f163\"}.fa-sort-numeric-up-alt:before{content:\"\\f887\"}.fa-sort-up:before{content:\"\\f0de\"}.fa-soundcloud:before{content:\"\\f1be\"}.fa-sourcetree:before{content:\"\\f7d3\"}.fa-spa:before{content:\"\\f5bb\"}.fa-space-shuttle:before{content:\"\\f197\"}.fa-speakap:before{content:\"\\f3f3\"}.fa-speaker-deck:before{content:\"\\f83c\"}.fa-spell-check:before{content:\"\\f891\"}.fa-spider:before{content:\"\\f717\"}.fa-spinner:before{content:\"\\f110\"}.fa-splotch:before{content:\"\\f5bc\"}.fa-spotify:before{content:\"\\f1bc\"}.fa-spray-can:before{content:\"\\f5bd\"}.fa-square:before{content:\"\\f0c8\"}.fa-square-full:before{content:\"\\f45c\"}.fa-square-root-alt:before{content:\"\\f698\"}.fa-squarespace:before{content:\"\\f5be\"}.fa-stack-exchange:before{content:\"\\f18d\"}.fa-stack-overflow:before{content:\"\\f16c\"}.fa-stackpath:before{content:\"\\f842\"}.fa-stamp:before{content:\"\\f5bf\"}.fa-star:before{content:\"\\f005\"}.fa-star-and-crescent:before{content:\"\\f699\"}.fa-star-half:before{content:\"\\f089\"}.fa-star-half-alt:before{content:\"\\f5c0\"}.fa-star-of-david:before{content:\"\\f69a\"}.fa-star-of-life:before{content:\"\\f621\"}.fa-staylinked:before{content:\"\\f3f5\"}.fa-steam:before{content:\"\\f1b6\"}.fa-steam-square:before{content:\"\\f1b7\"}.fa-steam-symbol:before{content:\"\\f3f6\"}.fa-step-backward:before{content:\"\\f048\"}.fa-step-forward:before{content:\"\\f051\"}.fa-stethoscope:before{content:\"\\f0f1\"}.fa-sticker-mule:before{content:\"\\f3f7\"}.fa-sticky-note:before{content:\"\\f249\"}.fa-stop:before{content:\"\\f04d\"}.fa-stop-circle:before{content:\"\\f28d\"}.fa-stopwatch:before{content:\"\\f2f2\"}.fa-stopwatch-20:before{content:\"\\e06f\"}.fa-store:before{content:\"\\f54e\"}.fa-store-alt:before{content:\"\\f54f\"}.fa-store-alt-slash:before{content:\"\\e070\"}.fa-store-slash:before{content:\"\\e071\"}.fa-strava:before{content:\"\\f428\"}.fa-stream:before{content:\"\\f550\"}.fa-street-view:before{content:\"\\f21d\"}.fa-strikethrough:before{content:\"\\f0cc\"}.fa-stripe:before{content:\"\\f429\"}.fa-stripe-s:before{content:\"\\f42a\"}.fa-stroopwafel:before{content:\"\\f551\"}.fa-studiovinari:before{content:\"\\f3f8\"}.fa-stumbleupon:before{content:\"\\f1a4\"}.fa-stumbleupon-circle:before{content:\"\\f1a3\"}.fa-subscript:before{content:\"\\f12c\"}.fa-subway:before{content:\"\\f239\"}.fa-suitcase:before{content:\"\\f0f2\"}.fa-suitcase-rolling:before{content:\"\\f5c1\"}.fa-sun:before{content:\"\\f185\"}.fa-superpowers:before{content:\"\\f2dd\"}.fa-superscript:before{content:\"\\f12b\"}.fa-supple:before{content:\"\\f3f9\"}.fa-surprise:before{content:\"\\f5c2\"}.fa-suse:before{content:\"\\f7d6\"}.fa-swatchbook:before{content:\"\\f5c3\"}.fa-swift:before{content:\"\\f8e1\"}.fa-swimmer:before{content:\"\\f5c4\"}.fa-swimming-pool:before{content:\"\\f5c5\"}.fa-symfony:before{content:\"\\f83d\"}.fa-synagogue:before{content:\"\\f69b\"}.fa-sync:before{content:\"\\f021\"}.fa-sync-alt:before{content:\"\\f2f1\"}.fa-syringe:before{content:\"\\f48e\"}.fa-table:before{content:\"\\f0ce\"}.fa-table-tennis:before{content:\"\\f45d\"}.fa-tablet:before{content:\"\\f10a\"}.fa-tablet-alt:before{content:\"\\f3fa\"}.fa-tablets:before{content:\"\\f490\"}.fa-tachometer-alt:before{content:\"\\f3fd\"}.fa-tag:before{content:\"\\f02b\"}.fa-tags:before{content:\"\\f02c\"}.fa-tape:before{content:\"\\f4db\"}.fa-tasks:before{content:\"\\f0ae\"}.fa-taxi:before{content:\"\\f1ba\"}.fa-teamspeak:before{content:\"\\f4f9\"}.fa-teeth:before{content:\"\\f62e\"}.fa-teeth-open:before{content:\"\\f62f\"}.fa-telegram:before{content:\"\\f2c6\"}.fa-telegram-plane:before{content:\"\\f3fe\"}.fa-temperature-high:before{content:\"\\f769\"}.fa-temperature-low:before{content:\"\\f76b\"}.fa-tencent-weibo:before{content:\"\\f1d5\"}.fa-tenge:before{content:\"\\f7d7\"}.fa-terminal:before{content:\"\\f120\"}.fa-text-height:before{content:\"\\f034\"}.fa-text-width:before{content:\"\\f035\"}.fa-th:before{content:\"\\f00a\"}.fa-th-large:before{content:\"\\f009\"}.fa-th-list:before{content:\"\\f00b\"}.fa-the-red-yeti:before{content:\"\\f69d\"}.fa-theater-masks:before{content:\"\\f630\"}.fa-themeco:before{content:\"\\f5c6\"}.fa-themeisle:before{content:\"\\f2b2\"}.fa-thermometer:before{content:\"\\f491\"}.fa-thermometer-empty:before{content:\"\\f2cb\"}.fa-thermometer-full:before{content:\"\\f2c7\"}.fa-thermometer-half:before{content:\"\\f2c9\"}.fa-thermometer-quarter:before{content:\"\\f2ca\"}.fa-thermometer-three-quarters:before{content:\"\\f2c8\"}.fa-think-peaks:before{content:\"\\f731\"}.fa-thumbs-down:before{content:\"\\f165\"}.fa-thumbs-up:before{content:\"\\f164\"}.fa-thumbtack:before{content:\"\\f08d\"}.fa-ticket-alt:before{content:\"\\f3ff\"}.fa-tiktok:before{content:\"\\e07b\"}.fa-times:before{content:\"\\f00d\"}.fa-times-circle:before{content:\"\\f057\"}.fa-tint:before{content:\"\\f043\"}.fa-tint-slash:before{content:\"\\f5c7\"}.fa-tired:before{content:\"\\f5c8\"}.fa-toggle-off:before{content:\"\\f204\"}.fa-toggle-on:before{content:\"\\f205\"}.fa-toilet:before{content:\"\\f7d8\"}.fa-toilet-paper:before{content:\"\\f71e\"}.fa-toilet-paper-slash:before{content:\"\\e072\"}.fa-toolbox:before{content:\"\\f552\"}.fa-tools:before{content:\"\\f7d9\"}.fa-tooth:before{content:\"\\f5c9\"}.fa-torah:before{content:\"\\f6a0\"}.fa-torii-gate:before{content:\"\\f6a1\"}.fa-tractor:before{content:\"\\f722\"}.fa-trade-federation:before{content:\"\\f513\"}.fa-trademark:before{content:\"\\f25c\"}.fa-traffic-light:before{content:\"\\f637\"}.fa-trailer:before{content:\"\\e041\"}.fa-train:before{content:\"\\f238\"}.fa-tram:before{content:\"\\f7da\"}.fa-transgender:before{content:\"\\f224\"}.fa-transgender-alt:before{content:\"\\f225\"}.fa-trash:before{content:\"\\f1f8\"}.fa-trash-alt:before{content:\"\\f2ed\"}.fa-trash-restore:before{content:\"\\f829\"}.fa-trash-restore-alt:before{content:\"\\f82a\"}.fa-tree:before{content:\"\\f1bb\"}.fa-trello:before{content:\"\\f181\"}.fa-tripadvisor:before{content:\"\\f262\"}.fa-trophy:before{content:\"\\f091\"}.fa-truck:before{content:\"\\f0d1\"}.fa-truck-loading:before{content:\"\\f4de\"}.fa-truck-monster:before{content:\"\\f63b\"}.fa-truck-moving:before{content:\"\\f4df\"}.fa-truck-pickup:before{content:\"\\f63c\"}.fa-tshirt:before{content:\"\\f553\"}.fa-tty:before{content:\"\\f1e4\"}.fa-tumblr:before{content:\"\\f173\"}.fa-tumblr-square:before{content:\"\\f174\"}.fa-tv:before{content:\"\\f26c\"}.fa-twitch:before{content:\"\\f1e8\"}.fa-twitter:before{content:\"\\f099\"}.fa-twitter-square:before{content:\"\\f081\"}.fa-typo3:before{content:\"\\f42b\"}.fa-uber:before{content:\"\\f402\"}.fa-ubuntu:before{content:\"\\f7df\"}.fa-uikit:before{content:\"\\f403\"}.fa-umbraco:before{content:\"\\f8e8\"}.fa-umbrella:before{content:\"\\f0e9\"}.fa-umbrella-beach:before{content:\"\\f5ca\"}.fa-uncharted:before{content:\"\\e084\"}.fa-underline:before{content:\"\\f0cd\"}.fa-undo:before{content:\"\\f0e2\"}.fa-undo-alt:before{content:\"\\f2ea\"}.fa-uniregistry:before{content:\"\\f404\"}.fa-unity:before{content:\"\\e049\"}.fa-universal-access:before{content:\"\\f29a\"}.fa-university:before{content:\"\\f19c\"}.fa-unlink:before{content:\"\\f127\"}.fa-unlock:before{content:\"\\f09c\"}.fa-unlock-alt:before{content:\"\\f13e\"}.fa-unsplash:before{content:\"\\e07c\"}.fa-untappd:before{content:\"\\f405\"}.fa-upload:before{content:\"\\f093\"}.fa-ups:before{content:\"\\f7e0\"}.fa-usb:before{content:\"\\f287\"}.fa-user:before{content:\"\\f007\"}.fa-user-alt:before{content:\"\\f406\"}.fa-user-alt-slash:before{content:\"\\f4fa\"}.fa-user-astronaut:before{content:\"\\f4fb\"}.fa-user-check:before{content:\"\\f4fc\"}.fa-user-circle:before{content:\"\\f2bd\"}.fa-user-clock:before{content:\"\\f4fd\"}.fa-user-cog:before{content:\"\\f4fe\"}.fa-user-edit:before{content:\"\\f4ff\"}.fa-user-friends:before{content:\"\\f500\"}.fa-user-graduate:before{content:\"\\f501\"}.fa-user-injured:before{content:\"\\f728\"}.fa-user-lock:before{content:\"\\f502\"}.fa-user-md:before{content:\"\\f0f0\"}.fa-user-minus:before{content:\"\\f503\"}.fa-user-ninja:before{content:\"\\f504\"}.fa-user-nurse:before{content:\"\\f82f\"}.fa-user-plus:before{content:\"\\f234\"}.fa-user-secret:before{content:\"\\f21b\"}.fa-user-shield:before{content:\"\\f505\"}.fa-user-slash:before{content:\"\\f506\"}.fa-user-tag:before{content:\"\\f507\"}.fa-user-tie:before{content:\"\\f508\"}.fa-user-times:before{content:\"\\f235\"}.fa-users:before{content:\"\\f0c0\"}.fa-users-cog:before{content:\"\\f509\"}.fa-users-slash:before{content:\"\\e073\"}.fa-usps:before{content:\"\\f7e1\"}.fa-ussunnah:before{content:\"\\f407\"}.fa-utensil-spoon:before{content:\"\\f2e5\"}.fa-utensils:before{content:\"\\f2e7\"}.fa-vaadin:before{content:\"\\f408\"}.fa-vector-square:before{content:\"\\f5cb\"}.fa-venus:before{content:\"\\f221\"}.fa-venus-double:before{content:\"\\f226\"}.fa-venus-mars:before{content:\"\\f228\"}.fa-vest:before{content:\"\\e085\"}.fa-vest-patches:before{content:\"\\e086\"}.fa-viacoin:before{content:\"\\f237\"}.fa-viadeo:before{content:\"\\f2a9\"}.fa-viadeo-square:before{content:\"\\f2aa\"}.fa-vial:before{content:\"\\f492\"}.fa-vials:before{content:\"\\f493\"}.fa-viber:before{content:\"\\f409\"}.fa-video:before{content:\"\\f03d\"}.fa-video-slash:before{content:\"\\f4e2\"}.fa-vihara:before{content:\"\\f6a7\"}.fa-vimeo:before{content:\"\\f40a\"}.fa-vimeo-square:before{content:\"\\f194\"}.fa-vimeo-v:before{content:\"\\f27d\"}.fa-vine:before{content:\"\\f1ca\"}.fa-virus:before{content:\"\\e074\"}.fa-virus-slash:before{content:\"\\e075\"}.fa-viruses:before{content:\"\\e076\"}.fa-vk:before{content:\"\\f189\"}.fa-vnv:before{content:\"\\f40b\"}.fa-voicemail:before{content:\"\\f897\"}.fa-volleyball-ball:before{content:\"\\f45f\"}.fa-volume-down:before{content:\"\\f027\"}.fa-volume-mute:before{content:\"\\f6a9\"}.fa-volume-off:before{content:\"\\f026\"}.fa-volume-up:before{content:\"\\f028\"}.fa-vote-yea:before{content:\"\\f772\"}.fa-vr-cardboard:before{content:\"\\f729\"}.fa-vuejs:before{content:\"\\f41f\"}.fa-walking:before{content:\"\\f554\"}.fa-wallet:before{content:\"\\f555\"}.fa-warehouse:before{content:\"\\f494\"}.fa-watchman-monitoring:before{content:\"\\e087\"}.fa-water:before{content:\"\\f773\"}.fa-wave-square:before{content:\"\\f83e\"}.fa-waze:before{content:\"\\f83f\"}.fa-weebly:before{content:\"\\f5cc\"}.fa-weibo:before{content:\"\\f18a\"}.fa-weight:before{content:\"\\f496\"}.fa-weight-hanging:before{content:\"\\f5cd\"}.fa-weixin:before{content:\"\\f1d7\"}.fa-whatsapp:before{content:\"\\f232\"}.fa-whatsapp-square:before{content:\"\\f40c\"}.fa-wheelchair:before{content:\"\\f193\"}.fa-whmcs:before{content:\"\\f40d\"}.fa-wifi:before{content:\"\\f1eb\"}.fa-wikipedia-w:before{content:\"\\f266\"}.fa-wind:before{content:\"\\f72e\"}.fa-window-close:before{content:\"\\f410\"}.fa-window-maximize:before{content:\"\\f2d0\"}.fa-window-minimize:before{content:\"\\f2d1\"}.fa-window-restore:before{content:\"\\f2d2\"}.fa-windows:before{content:\"\\f17a\"}.fa-wine-bottle:before{content:\"\\f72f\"}.fa-wine-glass:before{content:\"\\f4e3\"}.fa-wine-glass-alt:before{content:\"\\f5ce\"}.fa-wix:before{content:\"\\f5cf\"}.fa-wizards-of-the-coast:before{content:\"\\f730\"}.fa-wodu:before{content:\"\\e088\"}.fa-wolf-pack-battalion:before{content:\"\\f514\"}.fa-won-sign:before{content:\"\\f159\"}.fa-wordpress:before{content:\"\\f19a\"}.fa-wordpress-simple:before{content:\"\\f411\"}.fa-wpbeginner:before{content:\"\\f297\"}.fa-wpexplorer:before{content:\"\\f2de\"}.fa-wpforms:before{content:\"\\f298\"}.fa-wpressr:before{content:\"\\f3e4\"}.fa-wrench:before{content:\"\\f0ad\"}.fa-x-ray:before{content:\"\\f497\"}.fa-xbox:before{content:\"\\f412\"}.fa-xing:before{content:\"\\f168\"}.fa-xing-square:before{content:\"\\f169\"}.fa-y-combinator:before{content:\"\\f23b\"}.fa-yahoo:before{content:\"\\f19e\"}.fa-yammer:before{content:\"\\f840\"}.fa-yandex:before{content:\"\\f413\"}.fa-yandex-international:before{content:\"\\f414\"}.fa-yarn:before{content:\"\\f7e3\"}.fa-yelp:before{content:\"\\f1e9\"}.fa-yen-sign:before{content:\"\\f157\"}.fa-yin-yang:before{content:\"\\f6ad\"}.fa-yoast:before{content:\"\\f2b1\"}.fa-youtube:before{content:\"\\f167\"}.fa-youtube-square:before{content:\"\\f431\"}.fa-zhihu:before{content:\"\\f63f\"}.fa.fa-glass:before{content:\"\\f000\"}.fa.fa-meetup{font-family:\"Font Awesome 5 Brands\";font-weight:400}.fa.fa-star-o{font-family:\"Font Awesome 5 Free\";font-weight:400}.fa.fa-star-o:before{content:\"\\f005\"}.fa.fa-close:before,.fa.fa-remove:before{content:\"\\f00d\"}.fa.fa-gear:before{content:\"\\f013\"}.fa.fa-trash-o{font-family:\"Font Awesome 5 Free\";font-weight:400}.fa.fa-trash-o:before{content:\"\\f2ed\"}.fa.fa-file-o{font-family:\"Font Awesome 5 Free\";font-weight:400}.fa.fa-file-o:before{content:\"\\f15b\"}.fa.fa-clock-o{font-family:\"Font Awesome 5 Free\";font-weight:400}.fa.fa-clock-o:before{content:\"\\f017\"}.fa.fa-arrow-circle-o-down{font-family:\"Font Awesome 5 Free\";font-weight:400}.fa.fa-arrow-circle-o-down:before{content:\"\\f358\"}.fa.fa-arrow-circle-o-up{font-family:\"Font Awesome 5 Free\";font-weight:400}.fa.fa-arrow-circle-o-up:before{content:\"\\f35b\"}.fa.fa-play-circle-o{font-family:\"Font Awesome 5 Free\";font-weight:400}.fa.fa-play-circle-o:before{content:\"\\f144\"}.fa.fa-repeat:before,.fa.fa-rotate-right:before{content:\"\\f01e\"}.fa.fa-refresh:before{content:\"\\f021\"}.fa.fa-list-alt{font-family:\"Font Awesome 5 Free\";font-weight:400}.fa.fa-dedent:before{content:\"\\f03b\"}.fa.fa-video-camera:before{content:\"\\f03d\"}.fa.fa-picture-o{font-family:\"Font Awesome 5 Free\";font-weight:400}.fa.fa-picture-o:before{content:\"\\f03e\"}.fa.fa-photo{font-family:\"Font Awesome 5 Free\";font-weight:400}.fa.fa-photo:before{content:\"\\f03e\"}.fa.fa-image{font-family:\"Font Awesome 5 Free\";font-weight:400}.fa.fa-image:before{content:\"\\f03e\"}.fa.fa-pencil:before{content:\"\\f303\"}.fa.fa-map-marker:before{content:\"\\f3c5\"}.fa.fa-pencil-square-o{font-family:\"Font Awesome 5 Free\";font-weight:400}.fa.fa-pencil-square-o:before{content:\"\\f044\"}.fa.fa-share-square-o{font-family:\"Font Awesome 5 Free\";font-weight:400}.fa.fa-share-square-o:before{content:\"\\f14d\"}.fa.fa-check-square-o{font-family:\"Font Awesome 5 Free\";font-weight:400}.fa.fa-check-square-o:before{content:\"\\f14a\"}.fa.fa-arrows:before{content:\"\\f0b2\"}.fa.fa-times-circle-o{font-family:\"Font Awesome 5 Free\";font-weight:400}.fa.fa-times-circle-o:before{content:\"\\f057\"}.fa.fa-check-circle-o{font-family:\"Font Awesome 5 Free\";font-weight:400}.fa.fa-check-circle-o:before{content:\"\\f058\"}.fa.fa-mail-forward:before{content:\"\\f064\"}.fa.fa-eye,.fa.fa-eye-slash{font-family:\"Font Awesome 5 Free\";font-weight:400}.fa.fa-warning:before{content:\"\\f071\"}.fa.fa-calendar:before{content:\"\\f073\"}.fa.fa-arrows-v:before{content:\"\\f338\"}.fa.fa-arrows-h:before{content:\"\\f337\"}.fa.fa-bar-chart{font-family:\"Font Awesome 5 Free\";font-weight:400}.fa.fa-bar-chart:before{content:\"\\f080\"}.fa.fa-bar-chart-o{font-family:\"Font Awesome 5 Free\";font-weight:400}.fa.fa-bar-chart-o:before{content:\"\\f080\"}.fa.fa-facebook-square,.fa.fa-twitter-square{font-family:\"Font Awesome 5 Brands\";font-weight:400}.fa.fa-gears:before{content:\"\\f085\"}.fa.fa-thumbs-o-up{font-family:\"Font Awesome 5 Free\";font-weight:400}.fa.fa-thumbs-o-up:before{content:\"\\f164\"}.fa.fa-thumbs-o-down{font-family:\"Font Awesome 5 Free\";font-weight:400}.fa.fa-thumbs-o-down:before{content:\"\\f165\"}.fa.fa-heart-o{font-family:\"Font Awesome 5 Free\";font-weight:400}.fa.fa-heart-o:before{content:\"\\f004\"}.fa.fa-sign-out:before{content:\"\\f2f5\"}.fa.fa-linkedin-square{font-family:\"Font Awesome 5 Brands\";font-weight:400}.fa.fa-linkedin-square:before{content:\"\\f08c\"}.fa.fa-thumb-tack:before{content:\"\\f08d\"}.fa.fa-external-link:before{content:\"\\f35d\"}.fa.fa-sign-in:before{content:\"\\f2f6\"}.fa.fa-github-square{font-family:\"Font Awesome 5 Brands\";font-weight:400}.fa.fa-lemon-o{font-family:\"Font Awesome 5 Free\";font-weight:400}.fa.fa-lemon-o:before{content:\"\\f094\"}.fa.fa-square-o{font-family:\"Font Awesome 5 Free\";font-weight:400}.fa.fa-square-o:before{content:\"\\f0c8\"}.fa.fa-bookmark-o{font-family:\"Font Awesome 5 Free\";font-weight:400}.fa.fa-bookmark-o:before{content:\"\\f02e\"}.fa.fa-facebook,.fa.fa-twitter{font-family:\"Font Awesome 5 Brands\";font-weight:400}.fa.fa-facebook:before{content:\"\\f39e\"}.fa.fa-facebook-f{font-family:\"Font Awesome 5 Brands\";font-weight:400}.fa.fa-facebook-f:before{content:\"\\f39e\"}.fa.fa-github{font-family:\"Font Awesome 5 Brands\";font-weight:400}.fa.fa-credit-card{font-family:\"Font Awesome 5 Free\";font-weight:400}.fa.fa-feed:before{content:\"\\f09e\"}.fa.fa-hdd-o{font-family:\"Font Awesome 5 Free\";font-weight:400}.fa.fa-hdd-o:before{content:\"\\f0a0\"}.fa.fa-hand-o-right{font-family:\"Font Awesome 5 Free\";font-weight:400}.fa.fa-hand-o-right:before{content:\"\\f0a4\"}.fa.fa-hand-o-left{font-family:\"Font Awesome 5 Free\";font-weight:400}.fa.fa-hand-o-left:before{content:\"\\f0a5\"}.fa.fa-hand-o-up{font-family:\"Font Awesome 5 Free\";font-weight:400}.fa.fa-hand-o-up:before{content:\"\\f0a6\"}.fa.fa-hand-o-down{font-family:\"Font Awesome 5 Free\";font-weight:400}.fa.fa-hand-o-down:before{content:\"\\f0a7\"}.fa.fa-arrows-alt:before{content:\"\\f31e\"}.fa.fa-group:before{content:\"\\f0c0\"}.fa.fa-chain:before{content:\"\\f0c1\"}.fa.fa-scissors:before{content:\"\\f0c4\"}.fa.fa-files-o{font-family:\"Font Awesome 5 Free\";font-weight:400}.fa.fa-files-o:before{content:\"\\f0c5\"}.fa.fa-floppy-o{font-family:\"Font Awesome 5 Free\";font-weight:400}.fa.fa-floppy-o:before{content:\"\\f0c7\"}.fa.fa-navicon:before,.fa.fa-reorder:before{content:\"\\f0c9\"}.fa.fa-google-plus,.fa.fa-google-plus-square,.fa.fa-pinterest,.fa.fa-pinterest-square{font-family:\"Font Awesome 5 Brands\";font-weight:400}.fa.fa-google-plus:before{content:\"\\f0d5\"}.fa.fa-money{font-family:\"Font Awesome 5 Free\";font-weight:400}.fa.fa-money:before{content:\"\\f3d1\"}.fa.fa-unsorted:before{content:\"\\f0dc\"}.fa.fa-sort-desc:before{content:\"\\f0dd\"}.fa.fa-sort-asc:before{content:\"\\f0de\"}.fa.fa-linkedin{font-family:\"Font Awesome 5 Brands\";font-weight:400}.fa.fa-linkedin:before{content:\"\\f0e1\"}.fa.fa-rotate-left:before{content:\"\\f0e2\"}.fa.fa-legal:before{content:\"\\f0e3\"}.fa.fa-dashboard:before,.fa.fa-tachometer:before{content:\"\\f3fd\"}.fa.fa-comment-o{font-family:\"Font Awesome 5 Free\";font-weight:400}.fa.fa-comment-o:before{content:\"\\f075\"}.fa.fa-comments-o{font-family:\"Font Awesome 5 Free\";font-weight:400}.fa.fa-comments-o:before{content:\"\\f086\"}.fa.fa-flash:before{content:\"\\f0e7\"}.fa.fa-clipboard,.fa.fa-paste{font-family:\"Font Awesome 5 Free\";font-weight:400}.fa.fa-paste:before{content:\"\\f328\"}.fa.fa-lightbulb-o{font-family:\"Font Awesome 5 Free\";font-weight:400}.fa.fa-lightbulb-o:before{content:\"\\f0eb\"}.fa.fa-exchange:before{content:\"\\f362\"}.fa.fa-cloud-download:before{content:\"\\f381\"}.fa.fa-cloud-upload:before{content:\"\\f382\"}.fa.fa-bell-o{font-family:\"Font Awesome 5 Free\";font-weight:400}.fa.fa-bell-o:before{content:\"\\f0f3\"}.fa.fa-cutlery:before{content:\"\\f2e7\"}.fa.fa-file-text-o{font-family:\"Font Awesome 5 Free\";font-weight:400}.fa.fa-file-text-o:before{content:\"\\f15c\"}.fa.fa-building-o{font-family:\"Font Awesome 5 Free\";font-weight:400}.fa.fa-building-o:before{content:\"\\f1ad\"}.fa.fa-hospital-o{font-family:\"Font Awesome 5 Free\";font-weight:400}.fa.fa-hospital-o:before{content:\"\\f0f8\"}.fa.fa-tablet:before{content:\"\\f3fa\"}.fa.fa-mobile-phone:before,.fa.fa-mobile:before{content:\"\\f3cd\"}.fa.fa-circle-o{font-family:\"Font Awesome 5 Free\";font-weight:400}.fa.fa-circle-o:before{content:\"\\f111\"}.fa.fa-mail-reply:before{content:\"\\f3e5\"}.fa.fa-github-alt{font-family:\"Font Awesome 5 Brands\";font-weight:400}.fa.fa-folder-o{font-family:\"Font Awesome 5 Free\";font-weight:400}.fa.fa-folder-o:before{content:\"\\f07b\"}.fa.fa-folder-open-o{font-family:\"Font Awesome 5 Free\";font-weight:400}.fa.fa-folder-open-o:before{content:\"\\f07c\"}.fa.fa-smile-o{font-family:\"Font Awesome 5 Free\";font-weight:400}.fa.fa-smile-o:before{content:\"\\f118\"}.fa.fa-frown-o{font-family:\"Font Awesome 5 Free\";font-weight:400}.fa.fa-frown-o:before{content:\"\\f119\"}.fa.fa-meh-o{font-family:\"Font Awesome 5 Free\";font-weight:400}.fa.fa-meh-o:before{content:\"\\f11a\"}.fa.fa-keyboard-o{font-family:\"Font Awesome 5 Free\";font-weight:400}.fa.fa-keyboard-o:before{content:\"\\f11c\"}.fa.fa-flag-o{font-family:\"Font Awesome 5 Free\";font-weight:400}.fa.fa-flag-o:before{content:\"\\f024\"}.fa.fa-mail-reply-all:before{content:\"\\f122\"}.fa.fa-star-half-o{font-family:\"Font Awesome 5 Free\";font-weight:400}.fa.fa-star-half-o:before{content:\"\\f089\"}.fa.fa-star-half-empty{font-family:\"Font Awesome 5 Free\";font-weight:400}.fa.fa-star-half-empty:before{content:\"\\f089\"}.fa.fa-star-half-full{font-family:\"Font Awesome 5 Free\";font-weight:400}.fa.fa-star-half-full:before{content:\"\\f089\"}.fa.fa-code-fork:before{content:\"\\f126\"}.fa.fa-chain-broken:before{content:\"\\f127\"}.fa.fa-shield:before{content:\"\\f3ed\"}.fa.fa-calendar-o{font-family:\"Font Awesome 5 Free\";font-weight:400}.fa.fa-calendar-o:before{content:\"\\f133\"}.fa.fa-css3,.fa.fa-html5,.fa.fa-maxcdn{font-family:\"Font Awesome 5 Brands\";font-weight:400}.fa.fa-ticket:before{content:\"\\f3ff\"}.fa.fa-minus-square-o{font-family:\"Font Awesome 5 Free\";font-weight:400}.fa.fa-minus-square-o:before{content:\"\\f146\"}.fa.fa-level-up:before{content:\"\\f3bf\"}.fa.fa-level-down:before{content:\"\\f3be\"}.fa.fa-pencil-square:before{content:\"\\f14b\"}.fa.fa-external-link-square:before{content:\"\\f360\"}.fa.fa-compass{font-family:\"Font Awesome 5 Free\";font-weight:400}.fa.fa-caret-square-o-down{font-family:\"Font Awesome 5 Free\";font-weight:400}.fa.fa-caret-square-o-down:before{content:\"\\f150\"}.fa.fa-toggle-down{font-family:\"Font Awesome 5 Free\";font-weight:400}.fa.fa-toggle-down:before{content:\"\\f150\"}.fa.fa-caret-square-o-up{font-family:\"Font Awesome 5 Free\";font-weight:400}.fa.fa-caret-square-o-up:before{content:\"\\f151\"}.fa.fa-toggle-up{font-family:\"Font Awesome 5 Free\";font-weight:400}.fa.fa-toggle-up:before{content:\"\\f151\"}.fa.fa-caret-square-o-right{font-family:\"Font Awesome 5 Free\";font-weight:400}.fa.fa-caret-square-o-right:before{content:\"\\f152\"}.fa.fa-toggle-right{font-family:\"Font Awesome 5 Free\";font-weight:400}.fa.fa-toggle-right:before{content:\"\\f152\"}.fa.fa-eur:before,.fa.fa-euro:before{content:\"\\f153\"}.fa.fa-gbp:before{content:\"\\f154\"}.fa.fa-dollar:before,.fa.fa-usd:before{content:\"\\f155\"}.fa.fa-inr:before,.fa.fa-rupee:before{content:\"\\f156\"}.fa.fa-cny:before,.fa.fa-jpy:before,.fa.fa-rmb:before,.fa.fa-yen:before{content:\"\\f157\"}.fa.fa-rouble:before,.fa.fa-rub:before,.fa.fa-ruble:before{content:\"\\f158\"}.fa.fa-krw:before,.fa.fa-won:before{content:\"\\f159\"}.fa.fa-bitcoin,.fa.fa-btc{font-family:\"Font Awesome 5 Brands\";font-weight:400}.fa.fa-bitcoin:before{content:\"\\f15a\"}.fa.fa-file-text:before{content:\"\\f15c\"}.fa.fa-sort-alpha-asc:before{content:\"\\f15d\"}.fa.fa-sort-alpha-desc:before{content:\"\\f15e\"}.fa.fa-sort-amount-asc:before{content:\"\\f160\"}.fa.fa-sort-amount-desc:before{content:\"\\f161\"}.fa.fa-sort-numeric-asc:before{content:\"\\f162\"}.fa.fa-sort-numeric-desc:before{content:\"\\f163\"}.fa.fa-xing,.fa.fa-xing-square,.fa.fa-youtube,.fa.fa-youtube-play,.fa.fa-youtube-square{font-family:\"Font Awesome 5 Brands\";font-weight:400}.fa.fa-youtube-play:before{content:\"\\f167\"}.fa.fa-adn,.fa.fa-bitbucket,.fa.fa-bitbucket-square,.fa.fa-dropbox,.fa.fa-flickr,.fa.fa-instagram,.fa.fa-stack-overflow{font-family:\"Font Awesome 5 Brands\";font-weight:400}.fa.fa-bitbucket-square:before{content:\"\\f171\"}.fa.fa-tumblr,.fa.fa-tumblr-square{font-family:\"Font Awesome 5 Brands\";font-weight:400}.fa.fa-long-arrow-down:before{content:\"\\f309\"}.fa.fa-long-arrow-up:before{content:\"\\f30c\"}.fa.fa-long-arrow-left:before{content:\"\\f30a\"}.fa.fa-long-arrow-right:before{content:\"\\f30b\"}.fa.fa-android,.fa.fa-apple,.fa.fa-dribbble,.fa.fa-foursquare,.fa.fa-gittip,.fa.fa-gratipay,.fa.fa-linux,.fa.fa-skype,.fa.fa-trello,.fa.fa-windows{font-family:\"Font Awesome 5 Brands\";font-weight:400}.fa.fa-gittip:before{content:\"\\f184\"}.fa.fa-sun-o{font-family:\"Font Awesome 5 Free\";font-weight:400}.fa.fa-sun-o:before{content:\"\\f185\"}.fa.fa-moon-o{font-family:\"Font Awesome 5 Free\";font-weight:400}.fa.fa-moon-o:before{content:\"\\f186\"}.fa.fa-pagelines,.fa.fa-renren,.fa.fa-stack-exchange,.fa.fa-vk,.fa.fa-weibo{font-family:\"Font Awesome 5 Brands\";font-weight:400}.fa.fa-arrow-circle-o-right{font-family:\"Font Awesome 5 Free\";font-weight:400}.fa.fa-arrow-circle-o-right:before{content:\"\\f35a\"}.fa.fa-arrow-circle-o-left{font-family:\"Font Awesome 5 Free\";font-weight:400}.fa.fa-arrow-circle-o-left:before{content:\"\\f359\"}.fa.fa-caret-square-o-left{font-family:\"Font Awesome 5 Free\";font-weight:400}.fa.fa-caret-square-o-left:before{content:\"\\f191\"}.fa.fa-toggle-left{font-family:\"Font Awesome 5 Free\";font-weight:400}.fa.fa-toggle-left:before{content:\"\\f191\"}.fa.fa-dot-circle-o{font-family:\"Font Awesome 5 Free\";font-weight:400}.fa.fa-dot-circle-o:before{content:\"\\f192\"}.fa.fa-vimeo-square{font-family:\"Font Awesome 5 Brands\";font-weight:400}.fa.fa-try:before,.fa.fa-turkish-lira:before{content:\"\\f195\"}.fa.fa-plus-square-o{font-family:\"Font Awesome 5 Free\";font-weight:400}.fa.fa-plus-square-o:before{content:\"\\f0fe\"}.fa.fa-openid,.fa.fa-slack,.fa.fa-wordpress{font-family:\"Font Awesome 5 Brands\";font-weight:400}.fa.fa-bank:before,.fa.fa-institution:before{content:\"\\f19c\"}.fa.fa-mortar-board:before{content:\"\\f19d\"}.fa.fa-delicious,.fa.fa-digg,.fa.fa-drupal,.fa.fa-google,.fa.fa-joomla,.fa.fa-pied-piper-alt,.fa.fa-pied-piper-pp,.fa.fa-reddit,.fa.fa-reddit-square,.fa.fa-stumbleupon,.fa.fa-stumbleupon-circle,.fa.fa-yahoo{font-family:\"Font Awesome 5 Brands\";font-weight:400}.fa.fa-spoon:before{content:\"\\f2e5\"}.fa.fa-behance,.fa.fa-behance-square,.fa.fa-steam,.fa.fa-steam-square{font-family:\"Font Awesome 5 Brands\";font-weight:400}.fa.fa-automobile:before{content:\"\\f1b9\"}.fa.fa-cab:before{content:\"\\f1ba\"}.fa.fa-envelope-o{font-family:\"Font Awesome 5 Free\";font-weight:400}.fa.fa-envelope-o:before{content:\"\\f0e0\"}.fa.fa-deviantart,.fa.fa-soundcloud{font-family:\"Font Awesome 5 Brands\";font-weight:400}.fa.fa-file-pdf-o{font-family:\"Font Awesome 5 Free\";font-weight:400}.fa.fa-file-pdf-o:before{content:\"\\f1c1\"}.fa.fa-file-word-o{font-family:\"Font Awesome 5 Free\";font-weight:400}.fa.fa-file-word-o:before{content:\"\\f1c2\"}.fa.fa-file-excel-o{font-family:\"Font Awesome 5 Free\";font-weight:400}.fa.fa-file-excel-o:before{content:\"\\f1c3\"}.fa.fa-file-powerpoint-o{font-family:\"Font Awesome 5 Free\";font-weight:400}.fa.fa-file-powerpoint-o:before{content:\"\\f1c4\"}.fa.fa-file-image-o{font-family:\"Font Awesome 5 Free\";font-weight:400}.fa.fa-file-image-o:before{content:\"\\f1c5\"}.fa.fa-file-photo-o{font-family:\"Font Awesome 5 Free\";font-weight:400}.fa.fa-file-photo-o:before{content:\"\\f1c5\"}.fa.fa-file-picture-o{font-family:\"Font Awesome 5 Free\";font-weight:400}.fa.fa-file-picture-o:before{content:\"\\f1c5\"}.fa.fa-file-archive-o{font-family:\"Font Awesome 5 Free\";font-weight:400}.fa.fa-file-archive-o:before{content:\"\\f1c6\"}.fa.fa-file-zip-o{font-family:\"Font Awesome 5 Free\";font-weight:400}.fa.fa-file-zip-o:before{content:\"\\f1c6\"}.fa.fa-file-audio-o{font-family:\"Font Awesome 5 Free\";font-weight:400}.fa.fa-file-audio-o:before{content:\"\\f1c7\"}.fa.fa-file-sound-o{font-family:\"Font Awesome 5 Free\";font-weight:400}.fa.fa-file-sound-o:before{content:\"\\f1c7\"}.fa.fa-file-video-o{font-family:\"Font Awesome 5 Free\";font-weight:400}.fa.fa-file-video-o:before{content:\"\\f1c8\"}.fa.fa-file-movie-o{font-family:\"Font Awesome 5 Free\";font-weight:400}.fa.fa-file-movie-o:before{content:\"\\f1c8\"}.fa.fa-file-code-o{font-family:\"Font Awesome 5 Free\";font-weight:400}.fa.fa-file-code-o:before{content:\"\\f1c9\"}.fa.fa-codepen,.fa.fa-jsfiddle,.fa.fa-vine{font-family:\"Font Awesome 5 Brands\";font-weight:400}.fa.fa-life-bouy,.fa.fa-life-ring{font-family:\"Font Awesome 5 Free\";font-weight:400}.fa.fa-life-bouy:before{content:\"\\f1cd\"}.fa.fa-life-buoy{font-family:\"Font Awesome 5 Free\";font-weight:400}.fa.fa-life-buoy:before{content:\"\\f1cd\"}.fa.fa-life-saver{font-family:\"Font Awesome 5 Free\";font-weight:400}.fa.fa-life-saver:before{content:\"\\f1cd\"}.fa.fa-support{font-family:\"Font Awesome 5 Free\";font-weight:400}.fa.fa-support:before{content:\"\\f1cd\"}.fa.fa-circle-o-notch:before{content:\"\\f1ce\"}.fa.fa-ra,.fa.fa-rebel{font-family:\"Font Awesome 5 Brands\";font-weight:400}.fa.fa-ra:before{content:\"\\f1d0\"}.fa.fa-resistance{font-family:\"Font Awesome 5 Brands\";font-weight:400}.fa.fa-resistance:before{content:\"\\f1d0\"}.fa.fa-empire,.fa.fa-ge{font-family:\"Font Awesome 5 Brands\";font-weight:400}.fa.fa-ge:before{content:\"\\f1d1\"}.fa.fa-git,.fa.fa-git-square,.fa.fa-hacker-news,.fa.fa-y-combinator-square{font-family:\"Font Awesome 5 Brands\";font-weight:400}.fa.fa-y-combinator-square:before{content:\"\\f1d4\"}.fa.fa-yc-square{font-family:\"Font Awesome 5 Brands\";font-weight:400}.fa.fa-yc-square:before{content:\"\\f1d4\"}.fa.fa-qq,.fa.fa-tencent-weibo,.fa.fa-wechat,.fa.fa-weixin{font-family:\"Font Awesome 5 Brands\";font-weight:400}.fa.fa-wechat:before{content:\"\\f1d7\"}.fa.fa-send:before{content:\"\\f1d8\"}.fa.fa-paper-plane-o{font-family:\"Font Awesome 5 Free\";font-weight:400}.fa.fa-paper-plane-o:before{content:\"\\f1d8\"}.fa.fa-send-o{font-family:\"Font Awesome 5 Free\";font-weight:400}.fa.fa-send-o:before{content:\"\\f1d8\"}.fa.fa-circle-thin{font-family:\"Font Awesome 5 Free\";font-weight:400}.fa.fa-circle-thin:before{content:\"\\f111\"}.fa.fa-header:before{content:\"\\f1dc\"}.fa.fa-sliders:before{content:\"\\f1de\"}.fa.fa-futbol-o{font-family:\"Font Awesome 5 Free\";font-weight:400}.fa.fa-futbol-o:before{content:\"\\f1e3\"}.fa.fa-soccer-ball-o{font-family:\"Font Awesome 5 Free\";font-weight:400}.fa.fa-soccer-ball-o:before{content:\"\\f1e3\"}.fa.fa-slideshare,.fa.fa-twitch,.fa.fa-yelp{font-family:\"Font Awesome 5 Brands\";font-weight:400}.fa.fa-newspaper-o{font-family:\"Font Awesome 5 Free\";font-weight:400}.fa.fa-newspaper-o:before{content:\"\\f1ea\"}.fa.fa-cc-amex,.fa.fa-cc-discover,.fa.fa-cc-mastercard,.fa.fa-cc-paypal,.fa.fa-cc-stripe,.fa.fa-cc-visa,.fa.fa-google-wallet,.fa.fa-paypal{font-family:\"Font Awesome 5 Brands\";font-weight:400}.fa.fa-bell-slash-o{font-family:\"Font Awesome 5 Free\";font-weight:400}.fa.fa-bell-slash-o:before{content:\"\\f1f6\"}.fa.fa-trash:before{content:\"\\f2ed\"}.fa.fa-copyright{font-family:\"Font Awesome 5 Free\";font-weight:400}.fa.fa-eyedropper:before{content:\"\\f1fb\"}.fa.fa-area-chart:before{content:\"\\f1fe\"}.fa.fa-pie-chart:before{content:\"\\f200\"}.fa.fa-line-chart:before{content:\"\\f201\"}.fa.fa-angellist,.fa.fa-ioxhost,.fa.fa-lastfm,.fa.fa-lastfm-square{font-family:\"Font Awesome 5 Brands\";font-weight:400}.fa.fa-cc{font-family:\"Font Awesome 5 Free\";font-weight:400}.fa.fa-cc:before{content:\"\\f20a\"}.fa.fa-ils:before,.fa.fa-shekel:before,.fa.fa-sheqel:before{content:\"\\f20b\"}.fa.fa-meanpath{font-family:\"Font Awesome 5 Brands\";font-weight:400}.fa.fa-meanpath:before{content:\"\\f2b4\"}.fa.fa-buysellads,.fa.fa-connectdevelop,.fa.fa-dashcube,.fa.fa-forumbee,.fa.fa-leanpub,.fa.fa-sellsy,.fa.fa-shirtsinbulk,.fa.fa-simplybuilt,.fa.fa-skyatlas{font-family:\"Font Awesome 5 Brands\";font-weight:400}.fa.fa-diamond{font-family:\"Font Awesome 5 Free\";font-weight:400}.fa.fa-diamond:before{content:\"\\f3a5\"}.fa.fa-intersex:before{content:\"\\f224\"}.fa.fa-facebook-official{font-family:\"Font Awesome 5 Brands\";font-weight:400}.fa.fa-facebook-official:before{content:\"\\f09a\"}.fa.fa-pinterest-p,.fa.fa-whatsapp{font-family:\"Font Awesome 5 Brands\";font-weight:400}.fa.fa-hotel:before{content:\"\\f236\"}.fa.fa-medium,.fa.fa-viacoin,.fa.fa-y-combinator,.fa.fa-yc{font-family:\"Font Awesome 5 Brands\";font-weight:400}.fa.fa-yc:before{content:\"\\f23b\"}.fa.fa-expeditedssl,.fa.fa-opencart,.fa.fa-optin-monster{font-family:\"Font Awesome 5 Brands\";font-weight:400}.fa.fa-battery-4:before,.fa.fa-battery:before{content:\"\\f240\"}.fa.fa-battery-3:before{content:\"\\f241\"}.fa.fa-battery-2:before{content:\"\\f242\"}.fa.fa-battery-1:before{content:\"\\f243\"}.fa.fa-battery-0:before{content:\"\\f244\"}.fa.fa-object-group,.fa.fa-object-ungroup,.fa.fa-sticky-note-o{font-family:\"Font Awesome 5 Free\";font-weight:400}.fa.fa-sticky-note-o:before{content:\"\\f249\"}.fa.fa-cc-diners-club,.fa.fa-cc-jcb{font-family:\"Font Awesome 5 Brands\";font-weight:400}.fa.fa-clone,.fa.fa-hourglass-o{font-family:\"Font Awesome 5 Free\";font-weight:400}.fa.fa-hourglass-o:before{content:\"\\f254\"}.fa.fa-hourglass-1:before{content:\"\\f251\"}.fa.fa-hourglass-2:before{content:\"\\f252\"}.fa.fa-hourglass-3:before{content:\"\\f253\"}.fa.fa-hand-rock-o{font-family:\"Font Awesome 5 Free\";font-weight:400}.fa.fa-hand-rock-o:before{content:\"\\f255\"}.fa.fa-hand-grab-o{font-family:\"Font Awesome 5 Free\";font-weight:400}.fa.fa-hand-grab-o:before{content:\"\\f255\"}.fa.fa-hand-paper-o{font-family:\"Font Awesome 5 Free\";font-weight:400}.fa.fa-hand-paper-o:before{content:\"\\f256\"}.fa.fa-hand-stop-o{font-family:\"Font Awesome 5 Free\";font-weight:400}.fa.fa-hand-stop-o:before{content:\"\\f256\"}.fa.fa-hand-scissors-o{font-family:\"Font Awesome 5 Free\";font-weight:400}.fa.fa-hand-scissors-o:before{content:\"\\f257\"}.fa.fa-hand-lizard-o{font-family:\"Font Awesome 5 Free\";font-weight:400}.fa.fa-hand-lizard-o:before{content:\"\\f258\"}.fa.fa-hand-spock-o{font-family:\"Font Awesome 5 Free\";font-weight:400}.fa.fa-hand-spock-o:before{content:\"\\f259\"}.fa.fa-hand-pointer-o{font-family:\"Font Awesome 5 Free\";font-weight:400}.fa.fa-hand-pointer-o:before{content:\"\\f25a\"}.fa.fa-hand-peace-o{font-family:\"Font Awesome 5 Free\";font-weight:400}.fa.fa-hand-peace-o:before{content:\"\\f25b\"}.fa.fa-registered{font-family:\"Font Awesome 5 Free\";font-weight:400}.fa.fa-chrome,.fa.fa-creative-commons,.fa.fa-firefox,.fa.fa-get-pocket,.fa.fa-gg,.fa.fa-gg-circle,.fa.fa-internet-explorer,.fa.fa-odnoklassniki,.fa.fa-odnoklassniki-square,.fa.fa-opera,.fa.fa-safari,.fa.fa-tripadvisor,.fa.fa-wikipedia-w{font-family:\"Font Awesome 5 Brands\";font-weight:400}.fa.fa-television:before{content:\"\\f26c\"}.fa.fa-500px,.fa.fa-amazon,.fa.fa-contao{font-family:\"Font Awesome 5 Brands\";font-weight:400}.fa.fa-calendar-plus-o{font-family:\"Font Awesome 5 Free\";font-weight:400}.fa.fa-calendar-plus-o:before{content:\"\\f271\"}.fa.fa-calendar-minus-o{font-family:\"Font Awesome 5 Free\";font-weight:400}.fa.fa-calendar-minus-o:before{content:\"\\f272\"}.fa.fa-calendar-times-o{font-family:\"Font Awesome 5 Free\";font-weight:400}.fa.fa-calendar-times-o:before{content:\"\\f273\"}.fa.fa-calendar-check-o{font-family:\"Font Awesome 5 Free\";font-weight:400}.fa.fa-calendar-check-o:before{content:\"\\f274\"}.fa.fa-map-o{font-family:\"Font Awesome 5 Free\";font-weight:400}.fa.fa-map-o:before{content:\"\\f279\"}.fa.fa-commenting:before{content:\"\\f4ad\"}.fa.fa-commenting-o{font-family:\"Font Awesome 5 Free\";font-weight:400}.fa.fa-commenting-o:before{content:\"\\f4ad\"}.fa.fa-houzz,.fa.fa-vimeo{font-family:\"Font Awesome 5 Brands\";font-weight:400}.fa.fa-vimeo:before{content:\"\\f27d\"}.fa.fa-black-tie,.fa.fa-edge,.fa.fa-fonticons,.fa.fa-reddit-alien{font-family:\"Font Awesome 5 Brands\";font-weight:400}.fa.fa-credit-card-alt:before{content:\"\\f09d\"}.fa.fa-codiepie,.fa.fa-fort-awesome,.fa.fa-mixcloud,.fa.fa-modx,.fa.fa-product-hunt,.fa.fa-scribd,.fa.fa-usb{font-family:\"Font Awesome 5 Brands\";font-weight:400}.fa.fa-pause-circle-o{font-family:\"Font Awesome 5 Free\";font-weight:400}.fa.fa-pause-circle-o:before{content:\"\\f28b\"}.fa.fa-stop-circle-o{font-family:\"Font Awesome 5 Free\";font-weight:400}.fa.fa-stop-circle-o:before{content:\"\\f28d\"}.fa.fa-bluetooth,.fa.fa-bluetooth-b,.fa.fa-envira,.fa.fa-gitlab,.fa.fa-wheelchair-alt,.fa.fa-wpbeginner,.fa.fa-wpforms{font-family:\"Font Awesome 5 Brands\";font-weight:400}.fa.fa-wheelchair-alt:before{content:\"\\f368\"}.fa.fa-question-circle-o{font-family:\"Font Awesome 5 Free\";font-weight:400}.fa.fa-question-circle-o:before{content:\"\\f059\"}.fa.fa-volume-control-phone:before{content:\"\\f2a0\"}.fa.fa-asl-interpreting:before{content:\"\\f2a3\"}.fa.fa-deafness:before,.fa.fa-hard-of-hearing:before{content:\"\\f2a4\"}.fa.fa-glide,.fa.fa-glide-g{font-family:\"Font Awesome 5 Brands\";font-weight:400}.fa.fa-signing:before{content:\"\\f2a7\"}.fa.fa-first-order,.fa.fa-google-plus-official,.fa.fa-pied-piper,.fa.fa-snapchat,.fa.fa-snapchat-ghost,.fa.fa-snapchat-square,.fa.fa-themeisle,.fa.fa-viadeo,.fa.fa-viadeo-square,.fa.fa-yoast{font-family:\"Font Awesome 5 Brands\";font-weight:400}.fa.fa-google-plus-official:before{content:\"\\f2b3\"}.fa.fa-google-plus-circle{font-family:\"Font Awesome 5 Brands\";font-weight:400}.fa.fa-google-plus-circle:before{content:\"\\f2b3\"}.fa.fa-fa,.fa.fa-font-awesome{font-family:\"Font Awesome 5 Brands\";font-weight:400}.fa.fa-fa:before{content:\"\\f2b4\"}.fa.fa-handshake-o{font-family:\"Font Awesome 5 Free\";font-weight:400}.fa.fa-handshake-o:before{content:\"\\f2b5\"}.fa.fa-envelope-open-o{font-family:\"Font Awesome 5 Free\";font-weight:400}.fa.fa-envelope-open-o:before{content:\"\\f2b6\"}.fa.fa-linode{font-family:\"Font Awesome 5 Brands\";font-weight:400}.fa.fa-address-book-o{font-family:\"Font Awesome 5 Free\";font-weight:400}.fa.fa-address-book-o:before{content:\"\\f2b9\"}.fa.fa-vcard:before{content:\"\\f2bb\"}.fa.fa-address-card-o{font-family:\"Font Awesome 5 Free\";font-weight:400}.fa.fa-address-card-o:before{content:\"\\f2bb\"}.fa.fa-vcard-o{font-family:\"Font Awesome 5 Free\";font-weight:400}.fa.fa-vcard-o:before{content:\"\\f2bb\"}.fa.fa-user-circle-o{font-family:\"Font Awesome 5 Free\";font-weight:400}.fa.fa-user-circle-o:before{content:\"\\f2bd\"}.fa.fa-user-o{font-family:\"Font Awesome 5 Free\";font-weight:400}.fa.fa-user-o:before{content:\"\\f007\"}.fa.fa-id-badge{font-family:\"Font Awesome 5 Free\";font-weight:400}.fa.fa-drivers-license:before{content:\"\\f2c2\"}.fa.fa-id-card-o{font-family:\"Font Awesome 5 Free\";font-weight:400}.fa.fa-id-card-o:before{content:\"\\f2c2\"}.fa.fa-drivers-license-o{font-family:\"Font Awesome 5 Free\";font-weight:400}.fa.fa-drivers-license-o:before{content:\"\\f2c2\"}.fa.fa-free-code-camp,.fa.fa-quora,.fa.fa-telegram{font-family:\"Font Awesome 5 Brands\";font-weight:400}.fa.fa-thermometer-4:before,.fa.fa-thermometer:before{content:\"\\f2c7\"}.fa.fa-thermometer-3:before{content:\"\\f2c8\"}.fa.fa-thermometer-2:before{content:\"\\f2c9\"}.fa.fa-thermometer-1:before{content:\"\\f2ca\"}.fa.fa-thermometer-0:before{content:\"\\f2cb\"}.fa.fa-bathtub:before,.fa.fa-s15:before{content:\"\\f2cd\"}.fa.fa-window-maximize,.fa.fa-window-restore{font-family:\"Font Awesome 5 Free\";font-weight:400}.fa.fa-times-rectangle:before{content:\"\\f410\"}.fa.fa-window-close-o{font-family:\"Font Awesome 5 Free\";font-weight:400}.fa.fa-window-close-o:before{content:\"\\f410\"}.fa.fa-times-rectangle-o{font-family:\"Font Awesome 5 Free\";font-weight:400}.fa.fa-times-rectangle-o:before{content:\"\\f410\"}.fa.fa-bandcamp,.fa.fa-eercast,.fa.fa-etsy,.fa.fa-grav,.fa.fa-imdb,.fa.fa-ravelry{font-family:\"Font Awesome 5 Brands\";font-weight:400}.fa.fa-eercast:before{content:\"\\f2da\"}.fa.fa-snowflake-o{font-family:\"Font Awesome 5 Free\";font-weight:400}.fa.fa-snowflake-o:before{content:\"\\f2dc\"}.fa.fa-spotify,.fa.fa-superpowers,.fa.fa-wpexplorer{font-family:\"Font Awesome 5 Brands\";font-weight:400}', 'yes');
INSERT INTO `wp_options` (`option_id`, `option_name`, `option_value`, `autoload`) VALUES
(94815, '_transient_fusion_dynamic_js_readable', '1', 'yes'),
(96645, '_site_transient_update_core', 'O:8:\"stdClass\":4:{s:7:\"updates\";a:4:{i:0;O:8:\"stdClass\":10:{s:8:\"response\";s:7:\"upgrade\";s:8:\"download\";s:59:\"https://downloads.wordpress.org/release/wordpress-6.7.2.zip\";s:6:\"locale\";s:5:\"en_US\";s:8:\"packages\";O:8:\"stdClass\":5:{s:4:\"full\";s:59:\"https://downloads.wordpress.org/release/wordpress-6.7.2.zip\";s:10:\"no_content\";s:70:\"https://downloads.wordpress.org/release/wordpress-6.7.2-no-content.zip\";s:11:\"new_bundled\";s:71:\"https://downloads.wordpress.org/release/wordpress-6.7.2-new-bundled.zip\";s:7:\"partial\";s:0:\"\";s:8:\"rollback\";s:0:\"\";}s:7:\"current\";s:5:\"6.7.2\";s:7:\"version\";s:5:\"6.7.2\";s:11:\"php_version\";s:6:\"7.2.24\";s:13:\"mysql_version\";s:5:\"5.5.5\";s:11:\"new_bundled\";s:3:\"6.7\";s:15:\"partial_version\";s:0:\"\";}i:1;O:8:\"stdClass\":11:{s:8:\"response\";s:10:\"autoupdate\";s:8:\"download\";s:51:\"https://downloads.w.org/release/wordpress-6.7.2.zip\";s:6:\"locale\";s:5:\"en_US\";s:8:\"packages\";O:8:\"stdClass\":5:{s:4:\"full\";s:51:\"https://downloads.w.org/release/wordpress-6.7.2.zip\";s:10:\"no_content\";s:62:\"https://downloads.w.org/release/wordpress-6.7.2-no-content.zip\";s:11:\"new_bundled\";s:63:\"https://downloads.w.org/release/wordpress-6.7.2-new-bundled.zip\";s:7:\"partial\";s:0:\"\";s:8:\"rollback\";s:0:\"\";}s:7:\"current\";s:5:\"6.7.2\";s:7:\"version\";s:5:\"6.7.2\";s:11:\"php_version\";s:6:\"7.2.24\";s:13:\"mysql_version\";s:5:\"5.5.5\";s:11:\"new_bundled\";s:3:\"6.7\";s:15:\"partial_version\";s:0:\"\";s:9:\"new_files\";s:1:\"1\";}i:2;O:8:\"stdClass\":11:{s:8:\"response\";s:10:\"autoupdate\";s:8:\"download\";s:51:\"https://downloads.w.org/release/wordpress-6.7.1.zip\";s:6:\"locale\";s:5:\"en_US\";s:8:\"packages\";O:8:\"stdClass\":5:{s:4:\"full\";s:51:\"https://downloads.w.org/release/wordpress-6.7.1.zip\";s:10:\"no_content\";s:62:\"https://downloads.w.org/release/wordpress-6.7.1-no-content.zip\";s:11:\"new_bundled\";s:63:\"https://downloads.w.org/release/wordpress-6.7.1-new-bundled.zip\";s:7:\"partial\";s:0:\"\";s:8:\"rollback\";s:0:\"\";}s:7:\"current\";s:5:\"6.7.1\";s:7:\"version\";s:5:\"6.7.1\";s:11:\"php_version\";s:6:\"7.2.24\";s:13:\"mysql_version\";s:5:\"5.5.5\";s:11:\"new_bundled\";s:3:\"6.7\";s:15:\"partial_version\";s:0:\"\";s:9:\"new_files\";s:1:\"1\";}i:3;O:8:\"stdClass\":11:{s:8:\"response\";s:10:\"autoupdate\";s:8:\"download\";s:51:\"https://downloads.w.org/release/wordpress-6.6.2.zip\";s:6:\"locale\";s:5:\"en_US\";s:8:\"packages\";O:8:\"stdClass\":5:{s:4:\"full\";s:51:\"https://downloads.w.org/release/wordpress-6.6.2.zip\";s:10:\"no_content\";s:62:\"https://downloads.w.org/release/wordpress-6.6.2-no-content.zip\";s:11:\"new_bundled\";s:63:\"https://downloads.w.org/release/wordpress-6.6.2-new-bundled.zip\";s:7:\"partial\";s:0:\"\";s:8:\"rollback\";s:0:\"\";}s:7:\"current\";s:5:\"6.6.2\";s:7:\"version\";s:5:\"6.6.2\";s:11:\"php_version\";s:6:\"7.2.24\";s:13:\"mysql_version\";s:5:\"5.5.5\";s:11:\"new_bundled\";s:3:\"6.7\";s:15:\"partial_version\";s:0:\"\";s:9:\"new_files\";s:1:\"1\";}}s:12:\"last_checked\";i:1743526743;s:15:\"version_checked\";s:5:\"6.5.5\";s:12:\"translations\";a:0:{}}', 'no'),
(109649, '_site_transient_timeout_php_check_38979a08dcd71638878b7b4419751271', '1744034164', 'no'),
(109650, '_site_transient_php_check_38979a08dcd71638878b7b4419751271', 'a:5:{s:19:\"recommended_version\";s:3:\"7.4\";s:15:\"minimum_version\";s:6:\"7.2.24\";s:12:\"is_supported\";b:1;s:9:\"is_secure\";b:1;s:13:\"is_acceptable\";b:1;}', 'no'),
(109693, '_transient_timeout_fusion_dynamic_js_filenames', '1743530844', 'no'),
(109694, '_transient_fusion_dynamic_js_filenames', 'a:2:{s:33:\"782d4caa82f99555e08895b1475ace20d\";s:32:\"31c61d62a7a98fd9a02dc480e5caf04f\";s:36:\"12020138757255628129c6d8af90362e0786\";s:32:\"82bef77018d04b2d0e7d63414cf8cc27\";}', 'no'),
(109696, '_transient_timeout_avada_premium_plugins_info', '1743613143', 'no'),
(109697, '_transient_avada_premium_plugins_info', 'a:14:{s:11:\"fusion-core\";a:18:{s:4:\"name\";s:11:\"Fusion Core\";s:11:\"plugin_name\";s:10:\"Avada Core\";s:4:\"slug\";s:11:\"fusion-core\";s:13:\"plugin_author\";s:11:\"ThemeFusion\";s:17:\"plugin_author_url\";s:17:\"https://avada.com\";s:5:\"image\";s:84:\"https://updates.theme-fusion.com/wp-content/uploads/2017/01/avada-core-thumbnail.jpg\";s:9:\"image_url\";s:84:\"https://updates.theme-fusion.com/wp-content/uploads/2017/01/avada-core-thumbnail.jpg\";s:12:\"external_url\";s:30:\"https://avada.theme-fusion.com\";s:7:\"premium\";b:1;s:14:\"latest_version\";s:6:\"5.11.7\";s:8:\"required\";b:1;s:4:\"icon\";s:86:\"https://updates.theme-fusion.com/wp-content/uploads/2017/01/avada-icon-transparent.png\";s:6:\"banner\";s:76:\"https://updates.theme-fusion.com/wp-content/uploads/2017/01/avada_banner.jpg\";s:11:\"tf_cs_image\";s:86:\"https://updates.theme-fusion.com/wp-content/uploads/2017/01/avada-core-companysite.jpg\";s:11:\"has_package\";b:1;s:7:\"version\";s:6:\"5.11.7\";s:6:\"Author\";s:11:\"ThemeFusion\";s:9:\"AuthorURI\";s:17:\"https://avada.com\";}s:14:\"fusion-builder\";a:18:{s:4:\"name\";s:14:\"Fusion Builder\";s:11:\"plugin_name\";s:13:\"Avada Builder\";s:4:\"slug\";s:14:\"fusion-builder\";s:13:\"plugin_author\";s:11:\"ThemeFusion\";s:17:\"plugin_author_url\";s:17:\"https://avada.com\";s:5:\"image\";s:87:\"https://updates.theme-fusion.com/wp-content/uploads/2017/01/avada-builder-thumbnail.jpg\";s:9:\"image_url\";s:87:\"https://updates.theme-fusion.com/wp-content/uploads/2017/01/avada-builder-thumbnail.jpg\";s:12:\"external_url\";s:30:\"https://avada.theme-fusion.com\";s:7:\"premium\";b:1;s:14:\"latest_version\";s:6:\"3.11.7\";s:8:\"required\";b:1;s:4:\"icon\";s:86:\"https://updates.theme-fusion.com/wp-content/uploads/2017/01/avada-icon-transparent.png\";s:6:\"banner\";s:76:\"https://updates.theme-fusion.com/wp-content/uploads/2017/01/avada_banner.jpg\";s:11:\"tf_cs_image\";s:89:\"https://updates.theme-fusion.com/wp-content/uploads/2017/01/avada-builder-companysite.jpg\";s:11:\"has_package\";b:1;s:7:\"version\";s:6:\"3.11.7\";s:6:\"Author\";s:11:\"ThemeFusion\";s:9:\"AuthorURI\";s:17:\"https://avada.com\";}s:27:\"fusion-white-label-branding\";a:18:{s:4:\"name\";s:27:\"Fusion White Label Branding\";s:11:\"plugin_name\";s:21:\"Avada Custom Branding\";s:4:\"slug\";s:27:\"fusion-white-label-branding\";s:13:\"plugin_author\";s:11:\"ThemeFusion\";s:17:\"plugin_author_url\";s:17:\"https://avada.com\";s:5:\"image\";s:95:\"https://updates.theme-fusion.com/wp-content/uploads/2017/12/avada-custom-branding-thumbnail.jpg\";s:9:\"image_url\";s:95:\"https://updates.theme-fusion.com/wp-content/uploads/2017/12/avada-custom-branding-thumbnail.jpg\";s:12:\"external_url\";s:0:\"\";s:7:\"premium\";b:1;s:14:\"latest_version\";s:3:\"1.2\";s:8:\"required\";b:0;s:4:\"icon\";s:86:\"https://updates.theme-fusion.com/wp-content/uploads/2017/01/avada-icon-transparent.png\";s:6:\"banner\";b:0;s:11:\"tf_cs_image\";s:96:\"https://updates.theme-fusion.com/wp-content/uploads/2017/12/avada-custombranding-companysite.jpg\";s:11:\"has_package\";b:1;s:7:\"version\";s:3:\"1.2\";s:6:\"Author\";s:11:\"ThemeFusion\";s:9:\"AuthorURI\";s:17:\"https://avada.com\";}s:9:\"revslider\";a:18:{s:4:\"name\";s:17:\"Slider Revolution\";s:11:\"plugin_name\";s:17:\"Slider Revolution\";s:4:\"slug\";s:9:\"revslider\";s:13:\"plugin_author\";s:10:\"ThemePunch\";s:17:\"plugin_author_url\";s:22:\"http://themepunch.com/\";s:5:\"image\";s:83:\"https://updates.theme-fusion.com/wp-content/uploads/2016/08/slider_revolution-1.png\";s:9:\"image_url\";s:83:\"https://updates.theme-fusion.com/wp-content/uploads/2016/08/slider_revolution-1.png\";s:12:\"external_url\";s:0:\"\";s:7:\"premium\";b:1;s:14:\"latest_version\";s:6:\"6.7.31\";s:8:\"required\";b:0;s:4:\"icon\";b:0;s:6:\"banner\";b:0;s:11:\"tf_cs_image\";s:84:\"https://updates.theme-fusion.com/wp-content/uploads/2016/08/slider_revolution_cs.png\";s:11:\"has_package\";b:1;s:7:\"version\";s:6:\"6.7.31\";s:6:\"Author\";s:10:\"ThemePunch\";s:9:\"AuthorURI\";s:22:\"http://themepunch.com/\";}s:11:\"LayerSlider\";a:18:{s:4:\"name\";s:14:\"LayerSlider WP\";s:11:\"plugin_name\";s:14:\"LayerSlider WP\";s:4:\"slug\";s:11:\"LayerSlider\";s:13:\"plugin_author\";s:14:\"Kreatura Media\";s:17:\"plugin_author_url\";s:38:\"https://layerslider.kreaturamedia.com/\";s:5:\"image\";s:89:\"https://updates.theme-fusion.com/wp-content/uploads/2017/12/layer_slider_plugin_thumb.png\";s:9:\"image_url\";s:89:\"https://updates.theme-fusion.com/wp-content/uploads/2017/12/layer_slider_plugin_thumb.png\";s:12:\"external_url\";s:0:\"\";s:7:\"premium\";b:1;s:14:\"latest_version\";s:6:\"7.14.3\";s:8:\"required\";b:0;s:4:\"icon\";b:0;s:6:\"banner\";b:0;s:11:\"tf_cs_image\";s:88:\"https://updates.theme-fusion.com/wp-content/uploads/2016/08/layerslider_company_site.jpg\";s:11:\"has_package\";b:1;s:7:\"version\";s:6:\"7.14.3\";s:6:\"Author\";s:14:\"Kreatura Media\";s:9:\"AuthorURI\";s:38:\"https://layerslider.kreaturamedia.com/\";}s:26:\"advanced-custom-fields-pro\";a:18:{s:4:\"name\";s:26:\"Advanced Custom Fields PRO\";s:11:\"plugin_name\";s:26:\"Advanced Custom Fields PRO\";s:4:\"slug\";s:26:\"advanced-custom-fields-pro\";s:13:\"plugin_author\";s:13:\"Elliot Condon\";s:17:\"plugin_author_url\";s:37:\"https://www.advancedcustomfields.com/\";s:5:\"image\";s:71:\"https://updates.theme-fusion.com/wp-content/uploads/2017/12/acf_pro.png\";s:9:\"image_url\";s:71:\"https://updates.theme-fusion.com/wp-content/uploads/2017/12/acf_pro.png\";s:12:\"external_url\";s:0:\"\";s:7:\"premium\";b:1;s:14:\"latest_version\";s:6:\"6.3.12\";s:8:\"required\";b:0;s:4:\"icon\";b:0;s:6:\"banner\";b:0;s:11:\"tf_cs_image\";s:84:\"https://updates.theme-fusion.com/wp-content/uploads/2017/12/acf_pro_company_site.jpg\";s:11:\"has_package\";b:1;s:7:\"version\";s:6:\"6.3.12\";s:6:\"Author\";s:13:\"Elliot Condon\";s:9:\"AuthorURI\";s:37:\"https://www.advancedcustomfields.com/\";}s:11:\"convertplug\";a:18:{s:4:\"name\";s:12:\"Convert Plus\";s:11:\"plugin_name\";s:12:\"Convert Plus\";s:4:\"slug\";s:11:\"convertplug\";s:13:\"plugin_author\";s:16:\"Brainstorm Force\";s:17:\"plugin_author_url\";s:31:\"https://www.brainstormforce.com\";s:5:\"image\";s:85:\"https://updates.theme-fusion.com/wp-content/uploads/2017/12/convertplus_thumbnail.jpg\";s:9:\"image_url\";s:85:\"https://updates.theme-fusion.com/wp-content/uploads/2017/12/convertplus_thumbnail.jpg\";s:12:\"external_url\";s:0:\"\";s:7:\"premium\";b:1;s:14:\"latest_version\";s:3:\"3.6\";s:8:\"required\";b:0;s:4:\"icon\";b:0;s:6:\"banner\";b:0;s:11:\"tf_cs_image\";s:98:\"https://updates.theme-fusion.com/wp-content/uploads/2017/12/convertplus_thumbnail_company_site.jpg\";s:11:\"has_package\";b:1;s:7:\"version\";s:3:\"3.6\";s:6:\"Author\";s:16:\"Brainstorm Force\";s:9:\"AuthorURI\";s:31:\"https://www.brainstormforce.com\";}s:12:\"filebird-pro\";a:18:{s:4:\"name\";s:8:\"FileBird\";s:11:\"plugin_name\";s:8:\"FileBird\";s:4:\"slug\";s:12:\"filebird-pro\";s:13:\"plugin_author\";s:10:\"Ninja Team\";s:17:\"plugin_author_url\";s:54:\"https://ninjateam.org/wordpress-media-library-folders/\";s:5:\"image\";s:109:\"https://updates.theme-fusion.com/wp-content/uploads/2020/11/99966046-a7930180-2d8d-11eb-9695-a4e6bd9c870e.jpg\";s:9:\"image_url\";s:109:\"https://updates.theme-fusion.com/wp-content/uploads/2020/11/99966046-a7930180-2d8d-11eb-9695-a4e6bd9c870e.jpg\";s:12:\"external_url\";s:0:\"\";s:7:\"premium\";b:1;s:14:\"latest_version\";s:5:\"6.4.7\";s:8:\"required\";b:0;s:4:\"icon\";b:0;s:6:\"banner\";b:0;s:11:\"tf_cs_image\";s:109:\"https://updates.theme-fusion.com/wp-content/uploads/2020/11/99966169-d3ae8280-2d8d-11eb-895e-0191ae051d45.jpg\";s:11:\"has_package\";b:1;s:7:\"version\";s:5:\"6.4.7\";s:6:\"Author\";s:10:\"Ninja Team\";s:9:\"AuthorURI\";s:54:\"https://ninjateam.org/wordpress-media-library-folders/\";}s:6:\"leadin\";a:15:{s:4:\"name\";s:7:\"HubSpot\";s:11:\"plugin_name\";s:7:\"HubSpot\";s:4:\"slug\";s:6:\"leadin\";s:13:\"plugin_author\";s:7:\"HubSpot\";s:17:\"plugin_author_url\";s:23:\"https://www.hubspot.com\";s:5:\"image\";s:84:\"https://updates.theme-fusion.com/wp-content/uploads/2019/10/hubspot_plugin_thumb.jpg\";s:9:\"image_url\";s:84:\"https://updates.theme-fusion.com/wp-content/uploads/2019/10/hubspot_plugin_thumb.jpg\";s:12:\"external_url\";s:54:\"https://downloads.wordpress.org/plugin/woocommerce.zip\";s:7:\"premium\";b:0;s:14:\"latest_version\";s:0:\"\";s:8:\"required\";b:0;s:4:\"icon\";b:0;s:6:\"banner\";b:0;s:11:\"tf_cs_image\";s:84:\"https://updates.theme-fusion.com/wp-content/uploads/2019/10/hubspot_plugin_thumb.jpg\";s:11:\"has_package\";b:0;}s:11:\"woocommerce\";a:15:{s:4:\"name\";s:11:\"WooCommerce\";s:11:\"plugin_name\";s:11:\"WooCommerce\";s:4:\"slug\";s:11:\"woocommerce\";s:13:\"plugin_author\";s:10:\"Automattic\";s:17:\"plugin_author_url\";s:23:\"https://woocommerce.com\";s:5:\"image\";s:88:\"https://updates.theme-fusion.com/wp-content/uploads/2017/12/woocommerce_plugin_thumb.png\";s:9:\"image_url\";s:88:\"https://updates.theme-fusion.com/wp-content/uploads/2017/12/woocommerce_plugin_thumb.png\";s:12:\"external_url\";s:54:\"https://downloads.wordpress.org/plugin/woocommerce.zip\";s:7:\"premium\";b:0;s:14:\"latest_version\";s:0:\"\";s:8:\"required\";b:0;s:4:\"icon\";b:0;s:6:\"banner\";b:0;s:11:\"tf_cs_image\";s:88:\"https://updates.theme-fusion.com/wp-content/uploads/2017/12/woocommerce_plugin_thumb.png\";s:11:\"has_package\";b:0;}s:19:\"the-events-calendar\";a:15:{s:4:\"name\";s:19:\"The Events Calendar\";s:11:\"plugin_name\";s:19:\"The Events Calendar\";s:4:\"slug\";s:19:\"the-events-calendar\";s:13:\"plugin_author\";s:18:\"Modern Tribe, Inc.\";s:17:\"plugin_author_url\";s:18:\"http://m.tri.be/1x\";s:5:\"image\";s:92:\"https://updates.theme-fusion.com/wp-content/uploads/2017/12/events_calendar_plugin_thumb.png\";s:9:\"image_url\";s:92:\"https://updates.theme-fusion.com/wp-content/uploads/2017/12/events_calendar_plugin_thumb.png\";s:12:\"external_url\";s:68:\"https://downloads.wordpress.org/plugin/the-events-calendar.4.6.7.zip\";s:7:\"premium\";b:0;s:14:\"latest_version\";s:0:\"\";s:8:\"required\";b:0;s:4:\"icon\";N;s:6:\"banner\";N;s:11:\"tf_cs_image\";N;s:11:\"has_package\";b:0;}s:13:\"wordpress-seo\";a:15:{s:4:\"name\";s:9:\"Yoast SEO\";s:11:\"plugin_name\";s:9:\"Yoast SEO\";s:4:\"slug\";s:13:\"wordpress-seo\";s:13:\"plugin_author\";s:10:\"Team Yoast\";s:17:\"plugin_author_url\";s:18:\"https://yoast.com/\";s:5:\"image\";s:69:\"https://updates.theme-fusion.com/wp-content/uploads/2018/03/yoast.png\";s:9:\"image_url\";s:69:\"https://updates.theme-fusion.com/wp-content/uploads/2018/03/yoast.png\";s:12:\"external_url\";s:56:\"https://downloads.wordpress.org/plugin/wordpress-seo.zip\";s:7:\"premium\";b:0;s:14:\"latest_version\";s:0:\"\";s:8:\"required\";b:0;s:4:\"icon\";b:0;s:6:\"banner\";b:0;s:11:\"tf_cs_image\";s:69:\"https://updates.theme-fusion.com/wp-content/uploads/2018/03/yoast.png\";s:11:\"has_package\";b:0;}s:7:\"bbpress\";a:15:{s:4:\"name\";s:7:\"bbPress\";s:11:\"plugin_name\";s:7:\"bbPress\";s:4:\"slug\";s:7:\"bbpress\";s:13:\"plugin_author\";s:21:\"The bbPress Community\";s:17:\"plugin_author_url\";s:19:\"https://bbpress.org\";s:5:\"image\";s:71:\"https://updates.theme-fusion.com/wp-content/uploads/2017/12/bbpress.png\";s:9:\"image_url\";s:71:\"https://updates.theme-fusion.com/wp-content/uploads/2017/12/bbpress.png\";s:12:\"external_url\";s:57:\"https://downloads.wordpress.org/plugin/bbpress.2.5.14.zip\";s:7:\"premium\";b:0;s:14:\"latest_version\";s:0:\"\";s:8:\"required\";b:0;s:4:\"icon\";N;s:6:\"banner\";N;s:11:\"tf_cs_image\";N;s:11:\"has_package\";b:0;}s:3:\"pwa\";a:15:{s:4:\"name\";s:3:\"PWA\";s:11:\"plugin_name\";s:3:\"PWA\";s:4:\"slug\";s:3:\"pwa\";s:13:\"plugin_author\";s:23:\"PWA Plugin Contributors\";s:17:\"plugin_author_url\";s:49:\"https://github.com/xwp/pwa-wp/graphs/contributors\";s:5:\"image\";s:75:\"https://updates.theme-fusion.com/wp-content/uploads/2019/01/pwa_880_660.jpg\";s:9:\"image_url\";s:75:\"https://updates.theme-fusion.com/wp-content/uploads/2019/01/pwa_880_660.jpg\";s:12:\"external_url\";s:46:\"https://downloads.wordpress.org/plugin/pwa.zip\";s:7:\"premium\";b:0;s:14:\"latest_version\";s:0:\"\";s:8:\"required\";b:0;s:4:\"icon\";s:75:\"https://updates.theme-fusion.com/wp-content/uploads/2019/01/pwa_256_256.jpg\";s:6:\"banner\";s:76:\"https://updates.theme-fusion.com/wp-content/uploads/2019/01/pwa_1544_500.jpg\";s:11:\"tf_cs_image\";s:75:\"https://updates.theme-fusion.com/wp-content/uploads/2019/01/pwa_840_438.jpg\";s:11:\"has_package\";b:0;}}', 'no'),
(109698, '_site_transient_timeout_theme_roots', '1743528544', 'no'),
(109699, '_site_transient_theme_roots', 'a:4:{s:17:\"Avada-Child-Theme\";s:7:\"/themes\";s:5:\"Avada\";s:7:\"/themes\";s:10:\"Avada_6.03\";s:7:\"/themes\";s:16:\"twentytwentyfour\";s:7:\"/themes\";}', 'no'),
(109700, '_transient_timeout_avada_dashboard_data', '1743530344', 'no'),
(109701, '_transient_avada_dashboard_data', 'a:5:{s:7:\"on_sale\";b:0;s:5:\"price\";s:3:\"$69\";s:9:\"video_url\";s:43:\"https://www.youtube.com/watch?v=b_HWpHZJDU8\";s:13:\"avada_version\";s:7:\"7.11.15\";s:13:\"bypass_active\";b:0;}', 'no'),
(109702, '_site_transient_update_themes', 'O:8:\"stdClass\":5:{s:12:\"last_checked\";i:1743526746;s:7:\"checked\";a:4:{s:17:\"Avada-Child-Theme\";s:5:\"1.0.0\";s:5:\"Avada\";s:6:\"7.11.7\";s:10:\"Avada_6.03\";s:5:\"6.0.3\";s:16:\"twentytwentyfour\";s:3:\"1.1\";}s:8:\"response\";a:2:{s:16:\"twentytwentyfour\";a:6:{s:5:\"theme\";s:16:\"twentytwentyfour\";s:11:\"new_version\";s:3:\"1.3\";s:3:\"url\";s:46:\"https://wordpress.org/themes/twentytwentyfour/\";s:7:\"package\";s:62:\"https://downloads.wordpress.org/theme/twentytwentyfour.1.3.zip\";s:8:\"requires\";s:3:\"6.4\";s:12:\"requires_php\";s:3:\"7.0\";}s:5:\"Avada\";a:6:{s:5:\"theme\";s:5:\"Avada\";s:11:\"new_version\";s:7:\"7.11.15\";s:3:\"url\";s:58:\"https://avada.com/wp-content/uploads/2023/03/changelog.txt\";s:7:\"package\";s:109:\"https://updates.theme-fusion.com/?avada_action=get_theme&ver=7.11.7&code=********-****-****-****-************\";s:8:\"required\";s:3:\"4.9\";s:12:\"requires_php\";s:3:\"5.6\";}}s:9:\"no_update\";a:0:{}s:12:\"translations\";a:0:{}}', 'no'),
(109703, '_site_transient_update_plugins', 'O:8:\"stdClass\":5:{s:12:\"last_checked\";i:1743526747;s:8:\"response\";a:4:{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.3.7\";s:3:\"url\";s:38:\"https://wordpress.org/plugins/akismet/\";s:7:\"package\";s:56:\"https://downloads.wordpress.org/plugin/akismet.5.3.7.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:2:{s:2:\"2x\";s:63:\"https://ps.w.org/akismet/assets/banner-1544x500.png?rev=2900731\";s:2:\"1x\";s:62:\"https://ps.w.org/akismet/assets/banner-772x250.png?rev=2900731\";}s:11:\"banners_rtl\";a:0:{}s:8:\"requires\";s:3:\"5.8\";s:6:\"tested\";s:5:\"6.7.2\";s:12:\"requires_php\";s:6:\"5.6.20\";s:16:\"requires_plugins\";a:0:{}}s:41:\"page-or-post-clone/page-or-post-clone.php\";O:8:\"stdClass\":13:{s:2:\"id\";s:32:\"w.org/plugins/page-or-post-clone\";s:4:\"slug\";s:18:\"page-or-post-clone\";s:6:\"plugin\";s:41:\"page-or-post-clone/page-or-post-clone.php\";s:11:\"new_version\";s:3:\"6.3\";s:3:\"url\";s:49:\"https://wordpress.org/plugins/page-or-post-clone/\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/plugin/page-or-post-clone.zip\";s:5:\"icons\";a:1:{s:2:\"1x\";s:71:\"https://ps.w.org/page-or-post-clone/assets/icon-128x128.png?rev=1564270\";}s:7:\"banners\";a:1:{s:2:\"1x\";s:73:\"https://ps.w.org/page-or-post-clone/assets/banner-772x250.png?rev=1404815\";}s:11:\"banners_rtl\";a:0:{}s:8:\"requires\";s:3:\"4.5\";s:6:\"tested\";s:5:\"6.7.2\";s:12:\"requires_php\";b:0;s:16:\"requires_plugins\";a:0:{}}s:33:\"classic-editor/classic-editor.php\";O:8:\"stdClass\":13:{s:2:\"id\";s:28:\"w.org/plugins/classic-editor\";s:4:\"slug\";s:14:\"classic-editor\";s:6:\"plugin\";s:33:\"classic-editor/classic-editor.php\";s:11:\"new_version\";s:5:\"1.6.7\";s:3:\"url\";s:45:\"https://wordpress.org/plugins/classic-editor/\";s:7:\"package\";s:63:\"https://downloads.wordpress.org/plugin/classic-editor.1.6.7.zip\";s:5:\"icons\";a:2:{s:2:\"2x\";s:67:\"https://ps.w.org/classic-editor/assets/icon-256x256.png?rev=1998671\";s:2:\"1x\";s:67:\"https://ps.w.org/classic-editor/assets/icon-128x128.png?rev=1998671\";}s:7:\"banners\";a:2:{s:2:\"2x\";s:70:\"https://ps.w.org/classic-editor/assets/banner-1544x500.png?rev=1998671\";s:2:\"1x\";s:69:\"https://ps.w.org/classic-editor/assets/banner-772x250.png?rev=1998676\";}s:11:\"banners_rtl\";a:0:{}s:8:\"requires\";s:3:\"4.9\";s:6:\"tested\";s:5:\"6.7.2\";s:12:\"requires_php\";s:5:\"5.2.4\";s:16:\"requires_plugins\";a:0:{}}s:24:\"booking-system/dopbs.php\";O:8:\"stdClass\":14:{s:2:\"id\";s:28:\"w.org/plugins/booking-system\";s:4:\"slug\";s:14:\"booking-system\";s:6:\"plugin\";s:24:\"booking-system/dopbs.php\";s:11:\"new_version\";s:9:\"2.9.9.5.4\";s:3:\"url\";s:45:\"https://wordpress.org/plugins/booking-system/\";s:7:\"package\";s:57:\"https://downloads.wordpress.org/plugin/booking-system.zip\";s:5:\"icons\";a:2:{s:2:\"2x\";s:67:\"https://ps.w.org/booking-system/assets/icon-256x256.png?rev=2192807\";s:2:\"1x\";s:67:\"https://ps.w.org/booking-system/assets/icon-128x128.png?rev=2192807\";}s:7:\"banners\";a:2:{s:2:\"2x\";s:70:\"https://ps.w.org/booking-system/assets/banner-1544x500.jpg?rev=2205114\";s:2:\"1x\";s:69:\"https://ps.w.org/booking-system/assets/banner-772x250.jpg?rev=2205114\";}s:11:\"banners_rtl\";a:0:{}s:8:\"requires\";s:3:\"5.0\";s:6:\"tested\";s:5:\"6.7.2\";s:12:\"requires_php\";b:0;s:16:\"requires_plugins\";a:0:{}s:14:\"upgrade_notice\";s:361:\"<ul>\n<li>A small tweak was made to resolve iCal library incompatibility with other plugins or themes.</li>\n<li>Frontend bug has been repaired.</li>\n<li>Grouped days in the calendar display correctly on Safari for iPhone.</li>\n<li>Security bug repaired.</li>\n<li>The &quot;Extras&quot; price now displays correctly on Chrome for Android, bug repaired.</li>\n</ul>\";}}s:12:\"translations\";a:0:{}s:9:\"no_update\";a:5:{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:\"6.0.5\";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.6.0.5.zip\";s:5:\"icons\";a:2:{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.6\";s:6:\"tested\";s:5:\"6.7.2\";s:12:\"requires_php\";s:3:\"7.4\";s:16:\"requires_plugins\";a:0:{}}s:35:\"wordpress-reset/wordpress-reset.php\";O:8:\"stdClass\":10:{s:2:\"id\";s:29:\"w.org/plugins/wordpress-reset\";s:4:\"slug\";s:15:\"wordpress-reset\";s:6:\"plugin\";s:35:\"wordpress-reset/wordpress-reset.php\";s:11:\"new_version\";s:5:\"1.4.2\";s:3:\"url\";s:46:\"https://wordpress.org/plugins/wordpress-reset/\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/plugin/wordpress-reset.1.4.2.zip\";s:5:\"icons\";a:2:{s:2:\"1x\";s:60:\"https://ps.w.org/wordpress-reset/assets/icon.svg?rev=1330992\";s:3:\"svg\";s:60:\"https://ps.w.org/wordpress-reset/assets/icon.svg?rev=1330992\";}s:7:\"banners\";a:2:{s:2:\"2x\";s:71:\"https://ps.w.org/wordpress-reset/assets/banner-1544x500.png?rev=1330994\";s:2:\"1x\";s:70:\"https://ps.w.org/wordpress-reset/assets/banner-772x250.png?rev=1330994\";}s:11:\"banners_rtl\";a:0:{}s:8:\"requires\";s:3:\"2.8\";}s:16:\"wp-edit/main.php\";O:8:\"stdClass\":10:{s:2:\"id\";s:21:\"w.org/plugins/wp-edit\";s:4:\"slug\";s:7:\"wp-edit\";s:6:\"plugin\";s:16:\"wp-edit/main.php\";s:11:\"new_version\";s:5:\"4.0.4\";s:3:\"url\";s:38:\"https://wordpress.org/plugins/wp-edit/\";s:7:\"package\";s:56:\"https://downloads.wordpress.org/plugin/wp-edit.4.0.4.zip\";s:5:\"icons\";a:1:{s:7:\"default\";s:58:\"https://s.w.org/plugins/geopattern-icon/wp-edit_ffffff.svg\";}s:7:\"banners\";a:1:{s:2:\"1x\";s:61:\"https://ps.w.org/wp-edit/assets/banner-772x250.png?rev=880227\";}s:11:\"banners_rtl\";a:0:{}s:8:\"requires\";s:3:\"3.9\";}s:33:\"fusion-builder/fusion-builder.php\";O:8:\"stdClass\":8:{s:2:\"id\";s:33:\"fusion-builder/fusion-builder.php\";s:4:\"slug\";s:14:\"fusion-builder\";s:6:\"plugin\";s:33:\"fusion-builder/fusion-builder.php\";s:11:\"new_version\";s:6:\"3.11.7\";s:3:\"url\";s:0:\"\";s:7:\"package\";s:0:\"\";s:5:\"icons\";a:2:{s:2:\"1x\";s:86:\"https://updates.theme-fusion.com/wp-content/uploads/2017/01/avada-icon-transparent.png\";s:2:\"2x\";s:86:\"https://updates.theme-fusion.com/wp-content/uploads/2017/01/avada-icon-transparent.png\";}s:7:\"banners\";a:2:{s:2:\"2x\";s:76:\"https://updates.theme-fusion.com/wp-content/uploads/2017/01/avada_banner.jpg\";s:7:\"default\";s:76:\"https://updates.theme-fusion.com/wp-content/uploads/2017/01/avada_banner.jpg\";}}s:27:\"fusion-core/fusion-core.php\";O:8:\"stdClass\":8:{s:2:\"id\";s:27:\"fusion-core/fusion-core.php\";s:4:\"slug\";s:11:\"fusion-core\";s:6:\"plugin\";s:27:\"fusion-core/fusion-core.php\";s:11:\"new_version\";s:6:\"5.11.7\";s:3:\"url\";s:0:\"\";s:7:\"package\";s:0:\"\";s:5:\"icons\";a:2:{s:2:\"1x\";s:86:\"https://updates.theme-fusion.com/wp-content/uploads/2017/01/avada-icon-transparent.png\";s:2:\"2x\";s:86:\"https://updates.theme-fusion.com/wp-content/uploads/2017/01/avada-icon-transparent.png\";}s:7:\"banners\";a:2:{s:2:\"2x\";s:76:\"https://updates.theme-fusion.com/wp-content/uploads/2017/01/avada_banner.jpg\";s:7:\"default\";s:76:\"https://updates.theme-fusion.com/wp-content/uploads/2017/01/avada_banner.jpg\";}}}s:7:\"checked\";a:14:{s:19:\"akismet/akismet.php\";s:5:\"5.3.2\";s:33:\"fusion-builder/fusion-builder.php\";s:6:\"3.11.7\";s:27:\"fusion-core/fusion-core.php\";s:6:\"5.11.7\";s:41:\"page-or-post-clone/page-or-post-clone.php\";s:3:\"6.0\";s:33:\"classic-editor/classic-editor.php\";s:5:\"1.6.3\";s:36:\"contact-form-7/wp-contact-form-7.php\";s:5:\"5.9.3\";s:55:\"contact-form-7-datepicker/contact-form-7-datepicker.php\";s:5:\"2.6.0\";s:33:\"dropbox-backup/dropbox-backup.php\";s:5:\"1.6.2\";s:27:\"LayerSlider/layerslider.php\";s:5:\"5.3.2\";s:24:\"booking-system/dopbs.php\";s:9:\"2.9.9.4.6\";s:17:\"dopbsp/dopbsp.php\";s:5:\"2.1.2\";s:23:\"revslider/revslider.php\";s:6:\"4.6.92\";s:35:\"wordpress-reset/wordpress-reset.php\";s:5:\"1.4.2\";s:16:\"wp-edit/main.php\";s:5:\"4.0.4\";}}', 'no');

-- --------------------------------------------------------

--
-- Table structure for table `wp_postmeta`
--

CREATE TABLE `wp_postmeta` (
  `meta_id` bigint(20) UNSIGNED NOT NULL,
  `post_id` bigint(20) UNSIGNED NOT NULL DEFAULT 0,
  `meta_key` varchar(255) DEFAULT NULL,
  `meta_value` longtext DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;

--
-- Dumping data for table `wp_postmeta`
--

INSERT INTO `wp_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(2, 4, '_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>'),
(3, 4, '_mail', 'a:8:{s:7:\"subject\";s:7:\"ENQUIRY\";s:6:\"sender\";s:37:\"[your-name] <assagaylodge@msla.co.za>\";s:4:\"body\";s:86:\"From: [your-name] <[your-email]>\nSubject: [your-subject]\n\nMessage Body:\n[your-message]\";s:9:\"recipient\";s:23:\"assagaylodge@msla.co.za\";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;}'),
(4, 4, '_mail_2', 'a:9:{s:6:\"active\";b:0;s:7:\"subject\";s:14:\"[your-subject]\";s:6:\"sender\";s:46:\"Assagay Forest Lodge <assagaylodge@msla.co.za>\";s:4:\"body\";s:129:\"Message Body:\n[your-message]\n\n--\nThis e-mail was sent from a contact form on Assagay Forest Lodge (http://localhost/assagaylodge)\";s:9:\"recipient\";s:12:\"[your-email]\";s:18:\"additional_headers\";s:33:\"Reply-To: assagaylodge@msla.co.za\";s:11:\"attachments\";s:0:\"\";s:8:\"use_html\";b:0;s:13:\"exclude_blank\";b:0;}'),
(5, 4, '_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.\";}'),
(6, 4, '_additional_settings', ''),
(7, 4, '_locale', 'en_US'),
(8, 234, '_wp_attached_file', '2015/01/map1.png'),
(9, 234, '_wp_attachment_metadata', 'a:5:{s:5:\"width\";i:51;s:6:\"height\";i:46;s:4:\"file\";s:16:\"2015/01/map1.png\";s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'),
(10, 474, '_wp_attached_file', '2015/01/about-us-top-image1.jpg'),
(11, 474, '_wp_attachment_metadata', 'a:5:{s:5:\"width\";i:1250;s:6:\"height\";i:300;s:4:\"file\";s:31:\"2015/01/about-us-top-image1.jpg\";s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'),
(12, 622, '_wp_attached_file', '2015/02/tab21.jpg'),
(13, 622, '_wp_attachment_metadata', 'a:5:{s:5:\"width\";i:470;s:6:\"height\";i:289;s:4:\"file\";s:17:\"2015/02/tab21.jpg\";s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'),
(14, 777, '_wp_attached_file', '2015/04/destination41.jpg'),
(15, 777, '_wp_attachment_metadata', 'a:5:{s:5:\"width\";i:800;s:6:\"height\";i:600;s:4:\"file\";s:25:\"2015/04/destination41.jpg\";s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'),
(16, 778, '_wp_attached_file', '2015/04/destination51.jpg'),
(17, 778, '_wp_attachment_metadata', 'a:5:{s:5:\"width\";i:800;s:6:\"height\";i:600;s:4:\"file\";s:25:\"2015/04/destination51.jpg\";s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'),
(18, 779, '_wp_attached_file', '2015/04/destination61.jpg'),
(19, 779, '_wp_attachment_metadata', 'a:5:{s:5:\"width\";i:800;s:6:\"height\";i:600;s:4:\"file\";s:25:\"2015/04/destination61.jpg\";s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'),
(20, 780, '_wp_attached_file', '2015/04/destination71.jpg'),
(21, 780, '_wp_attachment_metadata', 'a:5:{s:5:\"width\";i:800;s:6:\"height\";i:600;s:4:\"file\";s:25:\"2015/04/destination71.jpg\";s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'),
(22, 781, '_wp_attached_file', '2015/04/destination81.jpg'),
(23, 781, '_wp_attachment_metadata', 'a:5:{s:5:\"width\";i:800;s:6:\"height\";i:600;s:4:\"file\";s:25:\"2015/04/destination81.jpg\";s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'),
(24, 782, '_wp_attached_file', '2015/04/destination91.jpg'),
(25, 782, '_wp_attachment_metadata', 'a:5:{s:5:\"width\";i:800;s:6:\"height\";i:600;s:4:\"file\";s:25:\"2015/04/destination91.jpg\";s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'),
(26, 783, '_wp_attached_file', '2015/04/home-banner1.jpg'),
(27, 783, '_wp_attachment_metadata', 'a:5:{s:5:\"width\";i:1900;s:6:\"height\";i:1169;s:4:\"file\";s:24:\"2015/04/home-banner1.jpg\";s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'),
(28, 784, '_wp_attached_file', '2015/04/home-parallax1.jpg'),
(29, 784, '_wp_attachment_metadata', 'a:5:{s:5:\"width\";i:1900;s:6:\"height\";i:1169;s:4:\"file\";s:26:\"2015/04/home-parallax1.jpg\";s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'),
(30, 785, '_wp_attached_file', '2015/04/testimonial11.jpg'),
(31, 785, '_wp_attachment_metadata', 'a:5:{s:5:\"width\";i:152;s:6:\"height\";i:151;s:4:\"file\";s:25:\"2015/04/testimonial11.jpg\";s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'),
(32, 787, '_wp_attached_file', '2015/04/travel-logo2x11.png'),
(33, 787, '_wp_attachment_metadata', 'a:5:{s:5:\"width\";i:410;s:6:\"height\";i:120;s:4:\"file\";s:27:\"2015/04/travel-logo2x11.png\";s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'),
(34, 789, '_wp_attached_file', '2015/01/avada-destinations-111.jpg'),
(35, 789, '_wp_attachment_metadata', 'a:5:{s:5:\"width\";i:1250;s:6:\"height\";i:300;s:4:\"file\";s:34:\"2015/01/avada-destinations-111.jpg\";s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'),
(36, 800, '_wp_attached_file', '2015/04/travel_logo_1x1.png'),
(37, 800, '_wp_attachment_metadata', 'a:5:{s:5:\"width\";i:205;s:6:\"height\";i:60;s:4:\"file\";s:27:\"2015/04/travel_logo_1x1.png\";s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'),
(38, 801, '_wp_attached_file', '2015/01/logo111.png'),
(39, 801, '_wp_attachment_metadata', 'a:5:{s:5:\"width\";i:197;s:6:\"height\";i:115;s:4:\"file\";s:19:\"2015/01/logo111.png\";s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'),
(40, 802, '_wp_attached_file', '2015/01/logo211.png'),
(41, 802, '_wp_attachment_metadata', 'a:5:{s:5:\"width\";i:197;s:6:\"height\";i:115;s:4:\"file\";s:19:\"2015/01/logo211.png\";s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'),
(42, 803, '_wp_attached_file', '2015/01/logo311.png'),
(43, 803, '_wp_attachment_metadata', 'a:5:{s:5:\"width\";i:197;s:6:\"height\";i:115;s:4:\"file\";s:19:\"2015/01/logo311.png\";s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'),
(44, 804, '_wp_attached_file', '2015/01/logo411.png'),
(45, 804, '_wp_attachment_metadata', 'a:5:{s:5:\"width\";i:197;s:6:\"height\";i:115;s:4:\"file\";s:19:\"2015/01/logo411.png\";s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'),
(46, 805, '_wp_attached_file', '2015/01/logo521.png'),
(47, 805, '_wp_attachment_metadata', 'a:5:{s:5:\"width\";i:197;s:6:\"height\";i:115;s:4:\"file\";s:19:\"2015/01/logo521.png\";s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'),
(48, 50, 'slide_template', ''),
(49, 50, 'fusion_builder_status', 'inactive'),
(50, 50, 'pyre_width', 'full'),
(51, 50, 'pyre_portfolio_width_100', 'no'),
(52, 50, 'pyre_project_desc_title', 'no'),
(53, 50, 'pyre_project_details', 'no'),
(54, 50, 'pyre_show_first_featured_image', 'no'),
(55, 50, 'pyre_video', ''),
(56, 50, 'pyre_video_url', ''),
(57, 50, 'pyre_project_url', ''),
(58, 50, 'pyre_project_url_text', ''),
(59, 50, 'pyre_copy_url', ''),
(60, 50, 'pyre_copy_url_text', ''),
(61, 50, 'pyre_fimg_width', ''),
(62, 50, 'pyre_fimg_height', ''),
(63, 50, 'pyre_image_rollover_icons', 'default'),
(64, 50, 'pyre_link_icon_url', ''),
(65, 50, 'pyre_link_icon_target', 'no'),
(66, 50, 'pyre_related_posts', 'default'),
(67, 50, 'pyre_share_box', 'default'),
(68, 50, 'pyre_post_pagination', 'default'),
(69, 50, 'pyre_main_top_padding', ''),
(70, 50, 'pyre_main_bottom_padding', ''),
(71, 50, 'pyre_hundredp_padding', ''),
(72, 50, 'pyre_slider_position', 'default'),
(73, 50, 'pyre_slider_type', 'no'),
(74, 50, 'pyre_slider', '0'),
(75, 50, 'pyre_wooslider', '0'),
(76, 50, 'pyre_revslider', '0'),
(77, 50, 'pyre_elasticslider', '0'),
(78, 50, 'pyre_fallback', ''),
(79, 50, 'pyre_avada_rev_styles', 'default'),
(80, 50, 'pyre_display_header', 'yes'),
(81, 50, 'pyre_header_100_width', 'default'),
(82, 50, 'pyre_header_bg', ''),
(83, 50, 'pyre_header_bg_color', ''),
(84, 50, 'pyre_header_bg_opacity', ''),
(85, 50, 'pyre_header_bg_full', 'no'),
(86, 50, 'pyre_header_bg_repeat', 'repeat'),
(87, 50, 'pyre_displayed_menu', 'default'),
(88, 50, 'pyre_display_footer', 'default'),
(89, 50, 'pyre_display_copyright', 'default'),
(90, 50, 'pyre_footer_100_width', 'default'),
(91, 50, 'pyre_sidebar_position', 'default'),
(92, 50, 'pyre_page_bg_layout', 'default'),
(93, 50, 'pyre_page_bg', ''),
(94, 50, 'pyre_page_bg_color', ''),
(95, 50, 'pyre_page_bg_full', 'no'),
(96, 50, 'pyre_page_bg_repeat', 'repeat'),
(97, 50, 'pyre_wide_page_bg', ''),
(98, 50, 'pyre_wide_page_bg_color', ''),
(99, 50, 'pyre_wide_page_bg_full', 'no'),
(100, 50, 'pyre_wide_page_bg_repeat', 'repeat'),
(101, 50, 'pyre_page_title', 'default'),
(102, 50, 'pyre_page_title_text', 'yes'),
(103, 50, 'pyre_page_title_text_alignment', 'default'),
(104, 50, 'pyre_page_title_custom_text', ''),
(105, 50, 'pyre_page_title_100_width', 'default'),
(106, 50, 'pyre_page_title_text_size', ''),
(107, 50, 'pyre_page_title_custom_subheader', ''),
(108, 50, 'pyre_page_title_custom_subheader_text_size', ''),
(109, 50, 'pyre_page_title_font_color', ''),
(110, 50, 'pyre_page_title_height', ''),
(111, 50, 'pyre_page_title_bar_bg', ''),
(112, 50, 'pyre_page_title_bar_bg_retina', ''),
(113, 50, 'pyre_page_title_bar_bg_color', ''),
(114, 50, 'pyre_page_title_bar_bg_full', 'default'),
(115, 50, 'pyre_page_title_bg_parallax', 'default'),
(116, 50, 'pyre_page_title_breadcrumbs_search_bar', 'default'),
(117, 50, '_wp_old_slug', 'travel-destination-one'),
(118, 50, '_links_to', '#'),
(119, 50, 'pyre_sidebar_bg_color', ''),
(120, 50, 'pyre_page_title_bar_borders_color', ''),
(121, 50, 'pyre_page_title_mobile_height', ''),
(126, 806, '_wp_attached_file', '2015/01/about-parallax11.jpg'),
(127, 806, '_wp_attachment_metadata', 'a:5:{s:5:\"width\";i:1900;s:6:\"height\";i:1169;s:4:\"file\";s:28:\"2015/01/about-parallax11.jpg\";s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'),
(128, 807, '_wp_attached_file', '2015/01/person111.jpg'),
(129, 807, '_wp_attachment_metadata', 'a:5:{s:5:\"width\";i:370;s:6:\"height\";i:270;s:4:\"file\";s:21:\"2015/01/person111.jpg\";s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'),
(130, 808, '_wp_attached_file', '2015/01/person211.jpg'),
(131, 808, '_wp_attachment_metadata', 'a:5:{s:5:\"width\";i:370;s:6:\"height\";i:270;s:4:\"file\";s:21:\"2015/01/person211.jpg\";s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'),
(132, 809, '_wp_attached_file', '2015/01/person311.jpg'),
(133, 809, '_wp_attachment_metadata', 'a:5:{s:5:\"width\";i:370;s:6:\"height\";i:270;s:4:\"file\";s:21:\"2015/01/person311.jpg\";s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'),
(134, 811, '_wp_attached_file', '2015/01/about-baner111.jpg'),
(135, 811, '_wp_attachment_metadata', 'a:5:{s:5:\"width\";i:1950;s:6:\"height\";i:1200;s:4:\"file\";s:26:\"2015/01/about-baner111.jpg\";s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'),
(136, 812, '_wp_attached_file', '2015/01/destination-parallax211.jpg'),
(137, 812, '_wp_attachment_metadata', 'a:5:{s:5:\"width\";i:1900;s:6:\"height\";i:1169;s:4:\"file\";s:35:\"2015/01/destination-parallax211.jpg\";s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'),
(138, 813, '_wp_attached_file', '2015/01/destinaton-banner2111.jpg'),
(139, 813, '_wp_attachment_metadata', 'a:5:{s:5:\"width\";i:1900;s:6:\"height\";i:1169;s:4:\"file\";s:33:\"2015/01/destinaton-banner2111.jpg\";s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'),
(140, 815, '_wp_attached_file', '2015/01/page-top11.jpg'),
(141, 815, '_wp_attachment_metadata', 'a:5:{s:5:\"width\";i:1950;s:6:\"height\";i:600;s:4:\"file\";s:22:\"2015/01/page-top11.jpg\";s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'),
(142, 816, '_wp_attached_file', '2015/01/reservation2111.jpg'),
(143, 816, '_wp_attachment_metadata', 'a:5:{s:5:\"width\";i:1900;s:6:\"height\";i:1169;s:4:\"file\";s:27:\"2015/01/reservation2111.jpg\";s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'),
(144, 817, '_wp_attached_file', '2015/01/parallax-section11.jpg'),
(145, 817, '_wp_attachment_metadata', 'a:5:{s:5:\"width\";i:1900;s:6:\"height\";i:1169;s:4:\"file\";s:30:\"2015/01/parallax-section11.jpg\";s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'),
(146, 819, '_wp_attached_file', '2015/02/blog41.jpg'),
(147, 819, '_wp_attachment_metadata', 'a:5:{s:5:\"width\";i:800;s:6:\"height\";i:600;s:4:\"file\";s:18:\"2015/02/blog41.jpg\";s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'),
(148, 820, '_wp_attached_file', '2015/02/blog51.jpg'),
(149, 820, '_wp_attachment_metadata', 'a:5:{s:5:\"width\";i:800;s:6:\"height\";i:600;s:4:\"file\";s:18:\"2015/02/blog51.jpg\";s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'),
(150, 821, '_wp_attached_file', '2015/02/blog61.jpg'),
(151, 821, '_wp_attachment_metadata', 'a:5:{s:5:\"width\";i:800;s:6:\"height\";i:600;s:4:\"file\";s:18:\"2015/02/blog61.jpg\";s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'),
(152, 822, '_wp_attached_file', '2015/02/blog71.jpg'),
(153, 822, '_wp_attachment_metadata', 'a:5:{s:5:\"width\";i:800;s:6:\"height\";i:600;s:4:\"file\";s:18:\"2015/02/blog71.jpg\";s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'),
(154, 823, '_wp_attached_file', '2015/02/blog81.jpg'),
(155, 823, '_wp_attachment_metadata', 'a:5:{s:5:\"width\";i:800;s:6:\"height\";i:600;s:4:\"file\";s:18:\"2015/02/blog81.jpg\";s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'),
(156, 824, '_wp_attached_file', '2015/02/blog91.jpg'),
(157, 824, '_wp_attachment_metadata', 'a:5:{s:5:\"width\";i:800;s:6:\"height\";i:600;s:4:\"file\";s:18:\"2015/02/blog91.jpg\";s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'),
(158, 825, '_wp_attached_file', '2015/02/blog111.jpg'),
(159, 825, '_wp_attachment_metadata', 'a:5:{s:5:\"width\";i:800;s:6:\"height\";i:600;s:4:\"file\";s:19:\"2015/02/blog111.jpg\";s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'),
(160, 826, '_wp_attached_file', '2015/02/blog211.jpg'),
(161, 826, '_wp_attachment_metadata', 'a:5:{s:5:\"width\";i:800;s:6:\"height\";i:600;s:4:\"file\";s:19:\"2015/02/blog211.jpg\";s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'),
(162, 827, '_wp_attached_file', '2015/02/blog311.jpg'),
(163, 827, '_wp_attachment_metadata', 'a:5:{s:5:\"width\";i:800;s:6:\"height\";i:600;s:4:\"file\";s:19:\"2015/02/blog311.jpg\";s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'),
(164, 7, '_wp_page_template', '100-width.php'),
(165, 7, 'slide_template', 'default'),
(166, 7, 'fusion_builder_status', 'active'),
(167, 7, 'pyre_slider_position', 'below'),
(168, 7, 'pyre_slider_type', 'flex'),
(169, 7, 'pyre_slider', '0'),
(170, 7, 'pyre_wooslider', 'home2'),
(171, 7, 'pyre_revslider', '0'),
(172, 7, 'pyre_elasticslider', '0'),
(173, 7, 'pyre_fallback', 'https://msla.co.za/lodge/wp-content/uploads/2015/01/1000hills.jpg'),
(174, 7, 'pyre_avada_rev_styles', 'default'),
(175, 7, 'pyre_main_top_padding', '0px'),
(176, 7, 'pyre_main_bottom_padding', '0px'),
(177, 7, 'pyre_hundredp_padding', ''),
(178, 7, 'pyre_show_first_featured_image', 'no'),
(179, 7, 'pyre_display_header', 'yes'),
(180, 7, 'pyre_header_100_width', 'default'),
(181, 7, 'pyre_header_bg', ''),
(182, 7, 'pyre_header_bg_color', ''),
(183, 7, 'pyre_header_bg_opacity', ''),
(184, 7, 'pyre_header_bg_full', 'no'),
(185, 7, 'pyre_header_bg_repeat', 'repeat'),
(186, 7, 'pyre_displayed_menu', 'default'),
(187, 7, 'pyre_display_footer', 'default'),
(188, 7, 'pyre_display_copyright', 'default'),
(189, 7, 'pyre_footer_100_width', 'default'),
(190, 7, 'pyre_sidebar_position', 'default'),
(191, 7, 'pyre_page_bg_layout', 'wide'),
(192, 7, 'pyre_page_bg', ''),
(193, 7, 'pyre_page_bg_color', ''),
(194, 7, 'pyre_page_bg_full', 'no'),
(195, 7, 'pyre_page_bg_repeat', 'repeat'),
(196, 7, 'pyre_wide_page_bg', ''),
(197, 7, 'pyre_wide_page_bg_color', ''),
(198, 7, 'pyre_wide_page_bg_full', 'no'),
(199, 7, 'pyre_wide_page_bg_repeat', 'repeat'),
(200, 7, 'pyre_portfolio_width_100', 'no'),
(201, 7, 'pyre_portfolio_content_length', 'default'),
(202, 7, 'pyre_portfolio_excerpt', ''),
(203, 7, 'pyre_portfolio_filters', 'yes'),
(204, 7, 'pyre_portfolio_text_layout', 'default'),
(205, 7, 'pyre_portfolio_featured_image_size', 'default'),
(206, 7, 'pyre_portfolio_column_spacing', ''),
(207, 7, 'pyre_page_title', 'no'),
(208, 7, 'pyre_page_title_text', 'yes'),
(209, 7, 'pyre_page_title_text_alignment', 'default'),
(210, 7, 'pyre_page_title_custom_text', ''),
(211, 7, 'pyre_page_title_100_width', 'default'),
(212, 7, 'pyre_page_title_text_size', ''),
(213, 7, 'pyre_page_title_custom_subheader', ''),
(214, 7, 'pyre_page_title_custom_subheader_text_size', ''),
(215, 7, 'pyre_page_title_font_color', ''),
(216, 7, 'pyre_page_title_height', ''),
(217, 7, 'pyre_page_title_bar_bg', ''),
(218, 7, 'pyre_page_title_bar_bg_retina', ''),
(219, 7, 'pyre_page_title_bar_bg_color', ''),
(220, 7, 'pyre_page_title_bar_bg_full', 'default'),
(221, 7, 'pyre_page_title_bg_parallax', 'default'),
(222, 7, 'pyre_page_title_breadcrumbs_search_bar', 'default'),
(223, 7, 'pyre_sidebar_bg_color', ''),
(224, 7, 'pyre_page_title_bar_borders_color', ''),
(225, 7, 'pyre_page_title_mobile_height', ''),
(227, 7, 'fusion_builder_content', ''),
(232, 9, '_wp_page_template', '100-width.php'),
(233, 9, 'slide_template', 'default'),
(234, 9, 'fusion_builder_status', 'active'),
(235, 9, 'pyre_slider_position', 'default'),
(236, 9, 'pyre_slider_type', 'flex'),
(237, 9, 'pyre_slider', '0'),
(238, 9, 'pyre_wooslider', 'about'),
(239, 9, 'pyre_revslider', '0'),
(240, 9, 'pyre_elasticslider', '0'),
(241, 9, 'pyre_fallback', ''),
(242, 9, 'pyre_avada_rev_styles', 'default'),
(243, 9, 'pyre_main_top_padding', '0px'),
(244, 9, 'pyre_main_bottom_padding', '0px'),
(245, 9, 'pyre_hundredp_padding', ''),
(246, 9, 'pyre_show_first_featured_image', 'no'),
(247, 9, 'pyre_display_header', 'yes'),
(248, 9, 'pyre_header_100_width', 'default'),
(249, 9, 'pyre_header_bg', ''),
(250, 9, 'pyre_header_bg_color', ''),
(251, 9, 'pyre_header_bg_opacity', ''),
(252, 9, 'pyre_header_bg_full', 'no'),
(253, 9, 'pyre_header_bg_repeat', 'repeat'),
(254, 9, 'pyre_displayed_menu', 'default'),
(255, 9, 'pyre_display_footer', 'default'),
(256, 9, 'pyre_display_copyright', 'default'),
(257, 9, 'pyre_footer_100_width', 'default'),
(258, 9, 'pyre_sidebar_position', 'default'),
(259, 9, 'pyre_page_bg_layout', 'default'),
(260, 9, 'pyre_page_bg', ''),
(261, 9, 'pyre_page_bg_color', ''),
(262, 9, 'pyre_page_bg_full', 'no'),
(263, 9, 'pyre_page_bg_repeat', 'repeat'),
(264, 9, 'pyre_wide_page_bg', ''),
(265, 9, 'pyre_wide_page_bg_color', ''),
(266, 9, 'pyre_wide_page_bg_full', 'no'),
(267, 9, 'pyre_wide_page_bg_repeat', 'repeat'),
(268, 9, 'pyre_portfolio_width_100', 'no'),
(269, 9, 'pyre_portfolio_content_length', 'default'),
(270, 9, 'pyre_portfolio_excerpt', ''),
(271, 9, 'pyre_portfolio_filters', 'yes'),
(272, 9, 'pyre_portfolio_text_layout', 'default'),
(273, 9, 'pyre_portfolio_featured_image_size', 'default'),
(274, 9, 'pyre_portfolio_column_spacing', ''),
(275, 9, 'pyre_page_title', 'no'),
(276, 9, 'pyre_page_title_text', 'yes'),
(277, 9, 'pyre_page_title_text_alignment', 'default'),
(278, 9, 'pyre_page_title_custom_text', ''),
(279, 9, 'pyre_page_title_100_width', 'default'),
(280, 9, 'pyre_page_title_text_size', ''),
(281, 9, 'pyre_page_title_custom_subheader', ''),
(282, 9, 'pyre_page_title_custom_subheader_text_size', ''),
(283, 9, 'pyre_page_title_font_color', ''),
(284, 9, 'pyre_page_title_height', ''),
(285, 9, 'pyre_page_title_bar_bg', ''),
(286, 9, 'pyre_page_title_bar_bg_retina', ''),
(287, 9, 'pyre_page_title_bar_bg_color', ''),
(288, 9, 'pyre_page_title_bar_bg_full', 'default'),
(289, 9, 'pyre_page_title_bg_parallax', 'default'),
(290, 9, 'pyre_page_title_breadcrumbs_search_bar', 'default'),
(291, 9, 'pyre_sidebar_bg_color', ''),
(292, 9, 'pyre_page_title_bar_borders_color', ''),
(293, 9, 'pyre_page_title_mobile_height', ''),
(294, 9, 'sbg_selected_sidebar', 'a:1:{i:0;s:1:\"0\";}'),
(295, 9, 'sbg_selected_sidebar_replacement', 'a:1:{i:0;s:0:\"\";}'),
(296, 9, 'sbg_selected_sidebar_2', 'a:1:{i:0;s:1:\"0\";}'),
(297, 9, 'sbg_selected_sidebar_2_replacement', 'a:1:{i:0;s:0:\"\";}'),
(298, 11, '_wp_page_template', '100-width.php'),
(299, 11, 'slide_template', 'default'),
(300, 11, 'fusion_builder_status', 'active'),
(301, 11, 'pyre_slider_position', 'default'),
(302, 11, 'pyre_slider_type', 'no'),
(303, 11, 'pyre_slider', '0'),
(304, 11, 'pyre_wooslider', '0'),
(305, 11, 'pyre_revslider', '0'),
(306, 11, 'pyre_elasticslider', '0'),
(307, 11, 'pyre_fallback', ''),
(308, 11, 'pyre_avada_rev_styles', 'default'),
(309, 11, 'pyre_main_top_padding', '0px'),
(310, 11, 'pyre_main_bottom_padding', '0px'),
(311, 11, 'pyre_hundredp_padding', ''),
(312, 11, 'pyre_show_first_featured_image', 'no'),
(313, 11, 'pyre_display_header', 'yes'),
(314, 11, 'pyre_header_100_width', 'default'),
(315, 11, 'pyre_header_bg', ''),
(316, 11, 'pyre_header_bg_color', ''),
(317, 11, 'pyre_header_bg_opacity', ''),
(318, 11, 'pyre_header_bg_full', 'no'),
(319, 11, 'pyre_header_bg_repeat', 'repeat'),
(320, 11, 'pyre_displayed_menu', 'default'),
(321, 11, 'pyre_display_footer', 'default'),
(322, 11, 'pyre_display_copyright', 'default'),
(323, 11, 'pyre_footer_100_width', 'default'),
(324, 11, 'pyre_sidebar_position', 'default'),
(325, 11, 'pyre_page_bg_layout', 'default'),
(326, 11, 'pyre_page_bg', ''),
(327, 11, 'pyre_page_bg_color', ''),
(328, 11, 'pyre_page_bg_full', 'no'),
(329, 11, 'pyre_page_bg_repeat', 'repeat'),
(330, 11, 'pyre_wide_page_bg', ''),
(331, 11, 'pyre_wide_page_bg_color', ''),
(332, 11, 'pyre_wide_page_bg_full', 'no'),
(333, 11, 'pyre_wide_page_bg_repeat', 'repeat'),
(334, 11, 'pyre_portfolio_width_100', 'no'),
(335, 11, 'pyre_portfolio_content_length', 'default'),
(336, 11, 'pyre_portfolio_excerpt', ''),
(337, 11, 'pyre_portfolio_filters', 'yes'),
(338, 11, 'pyre_portfolio_text_layout', 'default'),
(339, 11, 'pyre_portfolio_featured_image_size', 'default'),
(340, 11, 'pyre_portfolio_column_spacing', ''),
(341, 11, 'pyre_page_title', 'no'),
(342, 11, 'pyre_page_title_text', 'yes'),
(343, 11, 'pyre_page_title_text_alignment', 'default'),
(344, 11, 'pyre_page_title_custom_text', ''),
(345, 11, 'pyre_page_title_100_width', 'default'),
(346, 11, 'pyre_page_title_text_size', ''),
(347, 11, 'pyre_page_title_custom_subheader', ''),
(348, 11, 'pyre_page_title_custom_subheader_text_size', ''),
(349, 11, 'pyre_page_title_font_color', ''),
(350, 11, 'pyre_page_title_height', ''),
(351, 11, 'pyre_page_title_bar_bg', ''),
(352, 11, 'pyre_page_title_bar_bg_retina', ''),
(353, 11, 'pyre_page_title_bar_bg_color', ''),
(354, 11, 'pyre_page_title_bar_bg_full', 'default'),
(355, 11, 'pyre_page_title_bg_parallax', 'default'),
(356, 11, 'pyre_page_title_breadcrumbs_search_bar', 'default'),
(357, 11, '_oembed_0e326860a4242c485e7f0f0ede6a6522', '{{unknown}}'),
(358, 11, 'pyre_sidebar_bg_color', ''),
(359, 11, 'pyre_page_title_bar_borders_color', ''),
(364, 13, '_wp_page_template', '100-width.php'),
(365, 13, 'slide_template', 'default'),
(366, 13, 'fusion_builder_status', 'active'),
(367, 13, 'pyre_slider_position', 'default'),
(368, 13, 'pyre_slider_type', 'flex'),
(369, 13, 'pyre_slider', '0'),
(370, 13, 'pyre_wooslider', '0'),
(371, 13, 'pyre_revslider', '0'),
(372, 13, 'pyre_elasticslider', '0'),
(373, 13, 'pyre_fallback', ''),
(374, 13, 'pyre_avada_rev_styles', 'default'),
(375, 13, 'pyre_main_top_padding', ''),
(376, 13, 'pyre_main_bottom_padding', ''),
(377, 13, 'pyre_hundredp_padding', ''),
(378, 13, 'pyre_show_first_featured_image', 'no'),
(379, 13, 'pyre_display_header', 'yes'),
(380, 13, 'pyre_header_100_width', 'default'),
(381, 13, 'pyre_header_bg', ''),
(382, 13, 'pyre_header_bg_color', ''),
(383, 13, 'pyre_header_bg_opacity', ''),
(384, 13, 'pyre_header_bg_full', 'no'),
(385, 13, 'pyre_header_bg_repeat', 'repeat'),
(386, 13, 'pyre_displayed_menu', 'default'),
(387, 13, 'pyre_display_footer', 'no'),
(388, 13, 'pyre_display_copyright', 'default'),
(389, 13, 'pyre_footer_100_width', 'default'),
(390, 13, 'pyre_sidebar_position', 'default'),
(391, 13, 'pyre_page_bg_layout', 'default'),
(392, 13, 'pyre_page_bg', ''),
(393, 13, 'pyre_page_bg_color', ''),
(394, 13, 'pyre_page_bg_full', 'no'),
(395, 13, 'pyre_page_bg_repeat', 'repeat'),
(396, 13, 'pyre_wide_page_bg', ''),
(397, 13, 'pyre_wide_page_bg_color', ''),
(398, 13, 'pyre_wide_page_bg_full', 'no'),
(399, 13, 'pyre_wide_page_bg_repeat', 'repeat'),
(400, 13, 'pyre_portfolio_width_100', 'no'),
(401, 13, 'pyre_portfolio_content_length', 'default'),
(402, 13, 'pyre_portfolio_excerpt', ''),
(403, 13, 'pyre_portfolio_filters', 'yes'),
(404, 13, 'pyre_portfolio_text_layout', 'default'),
(405, 13, 'pyre_portfolio_featured_image_size', 'default'),
(406, 13, 'pyre_portfolio_column_spacing', ''),
(407, 13, 'pyre_page_title', 'no'),
(408, 13, 'pyre_page_title_text', 'no'),
(409, 13, 'pyre_page_title_text_alignment', 'default'),
(410, 13, 'pyre_page_title_custom_text', ''),
(411, 13, 'pyre_page_title_100_width', 'default'),
(412, 13, 'pyre_page_title_text_size', ''),
(413, 13, 'pyre_page_title_custom_subheader', ''),
(414, 13, 'pyre_page_title_custom_subheader_text_size', ''),
(415, 13, 'pyre_page_title_font_color', ''),
(416, 13, 'pyre_page_title_height', ''),
(417, 13, 'pyre_page_title_bar_bg', ''),
(418, 13, 'pyre_page_title_bar_bg_retina', ''),
(419, 13, 'pyre_page_title_bar_bg_color', ''),
(420, 13, 'pyre_page_title_bar_bg_full', 'default'),
(421, 13, 'pyre_page_title_bg_parallax', 'default'),
(422, 13, 'pyre_page_title_breadcrumbs_search_bar', 'none'),
(423, 13, 'pyre_sidebar_bg_color', ''),
(424, 13, 'pyre_page_title_bar_borders_color', ''),
(425, 13, 'pyre_page_title_mobile_height', ''),
(430, 16, '_wp_page_template', '100-width.php'),
(431, 16, 'slide_template', 'default'),
(432, 16, 'fusion_builder_status', 'active'),
(433, 16, 'pyre_slider_position', 'default'),
(434, 16, 'pyre_slider_type', 'flex'),
(435, 16, 'pyre_slider', '0'),
(436, 16, 'pyre_wooslider', 'blog'),
(437, 16, 'pyre_revslider', '0'),
(438, 16, 'pyre_elasticslider', '0'),
(439, 16, 'pyre_fallback', ''),
(440, 16, 'pyre_avada_rev_styles', 'default'),
(441, 16, 'pyre_main_top_padding', '0px'),
(442, 16, 'pyre_main_bottom_padding', '0px'),
(443, 16, 'pyre_hundredp_padding', ''),
(444, 16, 'pyre_show_first_featured_image', 'no'),
(445, 16, 'pyre_display_header', 'yes'),
(446, 16, 'pyre_header_100_width', 'default'),
(447, 16, 'pyre_header_bg', ''),
(448, 16, 'pyre_header_bg_color', ''),
(449, 16, 'pyre_header_bg_opacity', ''),
(450, 16, 'pyre_header_bg_full', 'no'),
(451, 16, 'pyre_header_bg_repeat', 'repeat'),
(452, 16, 'pyre_displayed_menu', 'default'),
(453, 16, 'pyre_display_footer', 'default'),
(454, 16, 'pyre_display_copyright', 'default'),
(455, 16, 'pyre_footer_100_width', 'default'),
(456, 16, 'pyre_sidebar_position', 'default'),
(457, 16, 'pyre_page_bg_layout', 'default'),
(458, 16, 'pyre_page_bg', ''),
(459, 16, 'pyre_page_bg_color', ''),
(460, 16, 'pyre_page_bg_full', 'no'),
(461, 16, 'pyre_page_bg_repeat', 'repeat'),
(462, 16, 'pyre_wide_page_bg', ''),
(463, 16, 'pyre_wide_page_bg_color', ''),
(464, 16, 'pyre_wide_page_bg_full', 'no'),
(465, 16, 'pyre_wide_page_bg_repeat', 'repeat'),
(466, 16, 'pyre_portfolio_width_100', 'no'),
(467, 16, 'pyre_portfolio_content_length', 'default'),
(468, 16, 'pyre_portfolio_excerpt', ''),
(469, 16, 'pyre_portfolio_filters', 'yes'),
(470, 16, 'pyre_portfolio_text_layout', 'default'),
(471, 16, 'pyre_portfolio_featured_image_size', 'default'),
(472, 16, 'pyre_portfolio_column_spacing', ''),
(473, 16, 'pyre_page_title', 'no'),
(474, 16, 'pyre_page_title_text', 'yes'),
(475, 16, 'pyre_page_title_text_alignment', 'default'),
(476, 16, 'pyre_page_title_custom_text', ''),
(477, 16, 'pyre_page_title_100_width', 'default'),
(478, 16, 'pyre_page_title_text_size', ''),
(479, 16, 'pyre_page_title_custom_subheader', ''),
(480, 16, 'pyre_page_title_custom_subheader_text_size', ''),
(481, 16, 'pyre_page_title_font_color', ''),
(482, 16, 'pyre_page_title_height', ''),
(483, 16, 'pyre_page_title_bar_bg', ''),
(484, 16, 'pyre_page_title_bar_bg_retina', ''),
(485, 16, 'pyre_page_title_bar_bg_color', ''),
(486, 16, 'pyre_page_title_bar_bg_full', 'default'),
(487, 16, 'pyre_page_title_bg_parallax', 'default'),
(488, 16, 'pyre_page_title_breadcrumbs_search_bar', 'default'),
(489, 16, 'pyre_sidebar_bg_color', ''),
(490, 16, 'pyre_page_title_bar_borders_color', ''),
(491, 16, 'pyre_page_title_mobile_height', ''),
(492, 16, 'sbg_selected_sidebar', 'a:1:{i:0;s:1:\"0\";}'),
(493, 16, 'sbg_selected_sidebar_replacement', 'a:1:{i:0;s:0:\"\";}'),
(494, 16, 'sbg_selected_sidebar_2', 'a:1:{i:0;s:1:\"0\";}'),
(495, 16, 'sbg_selected_sidebar_2_replacement', 'a:1:{i:0;s:0:\"\";}'),
(528, 830, '_menu_item_type', 'post_type'),
(529, 830, '_menu_item_menu_item_parent', '0'),
(530, 830, '_menu_item_object_id', '11'),
(531, 830, '_menu_item_object', 'page'),
(532, 830, '_menu_item_target', ''),
(533, 830, '_menu_item_classes', 'a:1:{i:0;s:0:\"\";}'),
(534, 830, '_menu_item_xfn', ''),
(535, 830, '_menu_item_url', ''),
(560, 832, '_menu_item_type', 'post_type'),
(561, 832, '_menu_item_menu_item_parent', '0'),
(562, 832, '_menu_item_object_id', '7'),
(563, 832, '_menu_item_object', 'page'),
(564, 832, '_menu_item_target', ''),
(565, 832, '_menu_item_classes', 'a:1:{i:0;s:0:\"\";}'),
(566, 832, '_menu_item_xfn', ''),
(567, 832, '_menu_item_url', ''),
(576, 53, 'slide_template', 'default'),
(577, 53, 'fusion_builder_status', 'inactive'),
(578, 53, 'pyre_width', 'full'),
(579, 53, 'pyre_portfolio_width_100', 'no'),
(580, 53, 'pyre_project_desc_title', 'no'),
(581, 53, 'pyre_project_details', 'no'),
(582, 53, 'pyre_show_first_featured_image', 'no'),
(583, 53, 'pyre_video', ''),
(584, 53, 'pyre_video_url', ''),
(585, 53, 'pyre_project_url', ''),
(586, 53, 'pyre_project_url_text', ''),
(587, 53, 'pyre_copy_url', ''),
(588, 53, 'pyre_copy_url_text', ''),
(589, 53, 'pyre_fimg_width', ''),
(590, 53, 'pyre_fimg_height', ''),
(591, 53, 'pyre_image_rollover_icons', 'default'),
(592, 53, 'pyre_link_icon_url', ''),
(593, 53, 'pyre_link_icon_target', 'no'),
(594, 53, 'pyre_related_posts', 'default'),
(595, 53, 'pyre_share_box', 'default'),
(596, 53, 'pyre_post_pagination', 'default'),
(597, 53, 'pyre_main_top_padding', ''),
(598, 53, 'pyre_main_bottom_padding', ''),
(599, 53, 'pyre_hundredp_padding', ''),
(600, 53, 'pyre_slider_position', 'default'),
(601, 53, 'pyre_slider_type', 'no'),
(602, 53, 'pyre_slider', '0'),
(603, 53, 'pyre_wooslider', '0'),
(604, 53, 'pyre_revslider', '0'),
(605, 53, 'pyre_elasticslider', '0'),
(606, 53, 'pyre_fallback', ''),
(607, 53, 'pyre_avada_rev_styles', 'default'),
(608, 53, 'pyre_display_header', 'yes'),
(609, 53, 'pyre_header_100_width', 'default'),
(610, 53, 'pyre_header_bg', ''),
(611, 53, 'pyre_header_bg_color', ''),
(612, 53, 'pyre_header_bg_opacity', ''),
(613, 53, 'pyre_header_bg_full', 'no'),
(614, 53, 'pyre_header_bg_repeat', 'repeat'),
(615, 53, 'pyre_displayed_menu', 'default'),
(616, 53, 'pyre_display_footer', 'default'),
(617, 53, 'pyre_display_copyright', 'default'),
(618, 53, 'pyre_footer_100_width', 'default'),
(619, 53, 'pyre_sidebar_position', 'default'),
(620, 53, 'pyre_page_bg_layout', 'default'),
(621, 53, 'pyre_page_bg', ''),
(622, 53, 'pyre_page_bg_color', ''),
(623, 53, 'pyre_page_bg_full', 'no'),
(624, 53, 'pyre_page_bg_repeat', 'repeat'),
(625, 53, 'pyre_wide_page_bg', ''),
(626, 53, 'pyre_wide_page_bg_color', ''),
(627, 53, 'pyre_wide_page_bg_full', 'no'),
(628, 53, 'pyre_wide_page_bg_repeat', 'repeat'),
(629, 53, 'pyre_page_title', 'default'),
(630, 53, 'pyre_page_title_text', 'yes'),
(631, 53, 'pyre_page_title_text_alignment', 'default'),
(632, 53, 'pyre_page_title_custom_text', ''),
(633, 53, 'pyre_page_title_100_width', 'default'),
(634, 53, 'pyre_page_title_text_size', ''),
(635, 53, 'pyre_page_title_custom_subheader', ''),
(636, 53, 'pyre_page_title_custom_subheader_text_size', ''),
(637, 53, 'pyre_page_title_font_color', ''),
(638, 53, 'pyre_page_title_height', ''),
(639, 53, 'pyre_page_title_bar_bg', ''),
(640, 53, 'pyre_page_title_bar_bg_retina', ''),
(641, 53, 'pyre_page_title_bar_bg_color', ''),
(642, 53, 'pyre_page_title_bar_bg_full', 'default'),
(643, 53, 'pyre_page_title_bg_parallax', 'default'),
(644, 53, 'pyre_page_title_breadcrumbs_search_bar', 'default'),
(645, 53, '_wp_old_slug', 'travel-destination-two'),
(646, 53, '_links_to', '#'),
(647, 53, 'pyre_sidebar_bg_color', ''),
(648, 53, 'pyre_page_title_bar_borders_color', ''),
(649, 53, 'pyre_page_title_mobile_height', ''),
(654, 55, 'slide_template', 'default'),
(655, 55, 'fusion_builder_status', 'inactive'),
(656, 55, 'pyre_width', 'full'),
(657, 55, 'pyre_portfolio_width_100', 'no'),
(658, 55, 'pyre_project_desc_title', 'no'),
(659, 55, 'pyre_project_details', 'no'),
(660, 55, 'pyre_show_first_featured_image', 'no'),
(661, 55, 'pyre_video', ''),
(662, 55, 'pyre_video_url', ''),
(663, 55, 'pyre_project_url', ''),
(664, 55, 'pyre_project_url_text', ''),
(665, 55, 'pyre_copy_url', ''),
(666, 55, 'pyre_copy_url_text', ''),
(667, 55, 'pyre_fimg_width', ''),
(668, 55, 'pyre_fimg_height', ''),
(669, 55, 'pyre_image_rollover_icons', 'default'),
(670, 55, 'pyre_link_icon_url', ''),
(671, 55, 'pyre_link_icon_target', 'no'),
(672, 55, 'pyre_related_posts', 'default'),
(673, 55, 'pyre_share_box', 'default'),
(674, 55, 'pyre_post_pagination', 'default'),
(675, 55, 'pyre_main_top_padding', ''),
(676, 55, 'pyre_main_bottom_padding', ''),
(677, 55, 'pyre_hundredp_padding', ''),
(678, 55, 'pyre_slider_position', 'default'),
(679, 55, 'pyre_slider_type', 'no'),
(680, 55, 'pyre_slider', '0'),
(681, 55, 'pyre_wooslider', '0'),
(682, 55, 'pyre_revslider', '0'),
(683, 55, 'pyre_elasticslider', '0'),
(684, 55, 'pyre_fallback', ''),
(685, 55, 'pyre_avada_rev_styles', 'default'),
(686, 55, 'pyre_display_header', 'yes'),
(687, 55, 'pyre_header_100_width', 'default'),
(688, 55, 'pyre_header_bg', ''),
(689, 55, 'pyre_header_bg_color', ''),
(690, 55, 'pyre_header_bg_opacity', ''),
(691, 55, 'pyre_header_bg_full', 'no'),
(692, 55, 'pyre_header_bg_repeat', 'repeat'),
(693, 55, 'pyre_displayed_menu', 'default'),
(694, 55, 'pyre_display_footer', 'default'),
(695, 55, 'pyre_display_copyright', 'default'),
(696, 55, 'pyre_footer_100_width', 'default'),
(697, 55, 'pyre_sidebar_position', 'default'),
(698, 55, 'pyre_page_bg_layout', 'default'),
(699, 55, 'pyre_page_bg', ''),
(700, 55, 'pyre_page_bg_color', ''),
(701, 55, 'pyre_page_bg_full', 'no'),
(702, 55, 'pyre_page_bg_repeat', 'repeat'),
(703, 55, 'pyre_wide_page_bg', ''),
(704, 55, 'pyre_wide_page_bg_color', ''),
(705, 55, 'pyre_wide_page_bg_full', 'no'),
(706, 55, 'pyre_wide_page_bg_repeat', 'repeat'),
(707, 55, 'pyre_page_title', 'default'),
(708, 55, 'pyre_page_title_text', 'yes'),
(709, 55, 'pyre_page_title_text_alignment', 'default'),
(710, 55, 'pyre_page_title_custom_text', ''),
(711, 55, 'pyre_page_title_100_width', 'default'),
(712, 55, 'pyre_page_title_text_size', ''),
(713, 55, 'pyre_page_title_custom_subheader', ''),
(714, 55, 'pyre_page_title_custom_subheader_text_size', ''),
(715, 55, 'pyre_page_title_font_color', ''),
(716, 55, 'pyre_page_title_height', ''),
(717, 55, 'pyre_page_title_bar_bg', ''),
(718, 55, 'pyre_page_title_bar_bg_retina', ''),
(719, 55, 'pyre_page_title_bar_bg_color', ''),
(720, 55, 'pyre_page_title_bar_bg_full', 'default'),
(721, 55, 'pyre_page_title_bg_parallax', 'default'),
(722, 55, 'pyre_page_title_breadcrumbs_search_bar', 'default'),
(723, 55, '_wp_old_slug', 'travel-destination-three'),
(724, 55, '_links_to', '#'),
(725, 55, 'pyre_sidebar_bg_color', ''),
(726, 55, 'pyre_page_title_bar_borders_color', ''),
(727, 55, 'pyre_page_title_mobile_height', ''),
(732, 57, 'slide_template', 'default'),
(733, 57, 'fusion_builder_status', 'inactive'),
(734, 57, 'pyre_width', 'full'),
(735, 57, 'pyre_portfolio_width_100', 'no'),
(736, 57, 'pyre_project_desc_title', 'no'),
(737, 57, 'pyre_project_details', 'no'),
(738, 57, 'pyre_show_first_featured_image', 'no'),
(739, 57, 'pyre_video', ''),
(740, 57, 'pyre_video_url', ''),
(741, 57, 'pyre_project_url', ''),
(742, 57, 'pyre_project_url_text', ''),
(743, 57, 'pyre_copy_url', ''),
(744, 57, 'pyre_copy_url_text', ''),
(745, 57, 'pyre_fimg_width', ''),
(746, 57, 'pyre_fimg_height', ''),
(747, 57, 'pyre_image_rollover_icons', 'default'),
(748, 57, 'pyre_link_icon_url', ''),
(749, 57, 'pyre_link_icon_target', 'no'),
(750, 57, 'pyre_related_posts', 'default'),
(751, 57, 'pyre_share_box', 'default'),
(752, 57, 'pyre_post_pagination', 'default'),
(753, 57, 'pyre_main_top_padding', ''),
(754, 57, 'pyre_main_bottom_padding', ''),
(755, 57, 'pyre_hundredp_padding', ''),
(756, 57, 'pyre_slider_position', 'default'),
(757, 57, 'pyre_slider_type', 'no'),
(758, 57, 'pyre_slider', '0'),
(759, 57, 'pyre_wooslider', '0'),
(760, 57, 'pyre_revslider', '0'),
(761, 57, 'pyre_elasticslider', '0'),
(762, 57, 'pyre_fallback', ''),
(763, 57, 'pyre_avada_rev_styles', 'default'),
(764, 57, 'pyre_display_header', 'yes'),
(765, 57, 'pyre_header_100_width', 'default'),
(766, 57, 'pyre_header_bg', ''),
(767, 57, 'pyre_header_bg_color', ''),
(768, 57, 'pyre_header_bg_opacity', ''),
(769, 57, 'pyre_header_bg_full', 'no'),
(770, 57, 'pyre_header_bg_repeat', 'repeat'),
(771, 57, 'pyre_displayed_menu', 'default'),
(772, 57, 'pyre_display_footer', 'default'),
(773, 57, 'pyre_display_copyright', 'default'),
(774, 57, 'pyre_footer_100_width', 'default'),
(775, 57, 'pyre_sidebar_position', 'default'),
(776, 57, 'pyre_page_bg_layout', 'default'),
(777, 57, 'pyre_page_bg', ''),
(778, 57, 'pyre_page_bg_color', ''),
(779, 57, 'pyre_page_bg_full', 'no'),
(780, 57, 'pyre_page_bg_repeat', 'repeat'),
(781, 57, 'pyre_wide_page_bg', ''),
(782, 57, 'pyre_wide_page_bg_color', ''),
(783, 57, 'pyre_wide_page_bg_full', 'no'),
(784, 57, 'pyre_wide_page_bg_repeat', 'repeat'),
(785, 57, 'pyre_page_title', 'default'),
(786, 57, 'pyre_page_title_text', 'yes'),
(787, 57, 'pyre_page_title_text_alignment', 'default'),
(788, 57, 'pyre_page_title_custom_text', ''),
(789, 57, 'pyre_page_title_100_width', 'default'),
(790, 57, 'pyre_page_title_text_size', ''),
(791, 57, 'pyre_page_title_custom_subheader', ''),
(792, 57, 'pyre_page_title_custom_subheader_text_size', ''),
(793, 57, 'pyre_page_title_font_color', ''),
(794, 57, 'pyre_page_title_height', ''),
(795, 57, 'pyre_page_title_bar_bg', ''),
(796, 57, 'pyre_page_title_bar_bg_retina', ''),
(797, 57, 'pyre_page_title_bar_bg_color', ''),
(798, 57, 'pyre_page_title_bar_bg_full', 'default'),
(799, 57, 'pyre_page_title_bg_parallax', 'default'),
(800, 57, 'pyre_page_title_breadcrumbs_search_bar', 'default'),
(802, 57, '_wp_old_slug', 'travel-destination-four'),
(803, 57, '_links_to', '#'),
(804, 57, 'pyre_sidebar_bg_color', ''),
(805, 57, 'pyre_page_title_bar_borders_color', ''),
(806, 57, 'pyre_page_title_mobile_height', ''),
(811, 59, 'slide_template', 'default'),
(812, 59, 'fusion_builder_status', 'inactive'),
(813, 59, 'pyre_width', 'full'),
(814, 59, 'pyre_portfolio_width_100', 'no'),
(815, 59, 'pyre_project_desc_title', 'no'),
(816, 59, 'pyre_project_details', 'no'),
(817, 59, 'pyre_show_first_featured_image', 'no'),
(818, 59, 'pyre_video', ''),
(819, 59, 'pyre_video_url', ''),
(820, 59, 'pyre_project_url', ''),
(821, 59, 'pyre_project_url_text', ''),
(822, 59, 'pyre_copy_url', ''),
(823, 59, 'pyre_copy_url_text', ''),
(824, 59, 'pyre_fimg_width', ''),
(825, 59, 'pyre_fimg_height', ''),
(826, 59, 'pyre_image_rollover_icons', 'default'),
(827, 59, 'pyre_link_icon_url', ''),
(828, 59, 'pyre_link_icon_target', 'no'),
(829, 59, 'pyre_related_posts', 'default'),
(830, 59, 'pyre_share_box', 'default');
INSERT INTO `wp_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(831, 59, 'pyre_post_pagination', 'default'),
(832, 59, 'pyre_main_top_padding', ''),
(833, 59, 'pyre_main_bottom_padding', ''),
(834, 59, 'pyre_hundredp_padding', ''),
(835, 59, 'pyre_slider_position', 'default'),
(836, 59, 'pyre_slider_type', 'no'),
(837, 59, 'pyre_slider', '0'),
(838, 59, 'pyre_wooslider', '0'),
(839, 59, 'pyre_revslider', '0'),
(840, 59, 'pyre_elasticslider', '0'),
(841, 59, 'pyre_fallback', ''),
(842, 59, 'pyre_avada_rev_styles', 'default'),
(843, 59, 'pyre_display_header', 'yes'),
(844, 59, 'pyre_header_100_width', 'default'),
(845, 59, 'pyre_header_bg', ''),
(846, 59, 'pyre_header_bg_color', ''),
(847, 59, 'pyre_header_bg_opacity', ''),
(848, 59, 'pyre_header_bg_full', 'no'),
(849, 59, 'pyre_header_bg_repeat', 'repeat'),
(850, 59, 'pyre_displayed_menu', 'default'),
(851, 59, 'pyre_display_footer', 'default'),
(852, 59, 'pyre_display_copyright', 'default'),
(853, 59, 'pyre_footer_100_width', 'default'),
(854, 59, 'pyre_sidebar_position', 'default'),
(855, 59, 'pyre_page_bg_layout', 'default'),
(856, 59, 'pyre_page_bg', ''),
(857, 59, 'pyre_page_bg_color', ''),
(858, 59, 'pyre_page_bg_full', 'no'),
(859, 59, 'pyre_page_bg_repeat', 'repeat'),
(860, 59, 'pyre_wide_page_bg', ''),
(861, 59, 'pyre_wide_page_bg_color', ''),
(862, 59, 'pyre_wide_page_bg_full', 'no'),
(863, 59, 'pyre_wide_page_bg_repeat', 'repeat'),
(864, 59, 'pyre_page_title', 'default'),
(865, 59, 'pyre_page_title_text', 'yes'),
(866, 59, 'pyre_page_title_text_alignment', 'default'),
(867, 59, 'pyre_page_title_custom_text', ''),
(868, 59, 'pyre_page_title_100_width', 'default'),
(869, 59, 'pyre_page_title_text_size', ''),
(870, 59, 'pyre_page_title_custom_subheader', ''),
(871, 59, 'pyre_page_title_custom_subheader_text_size', ''),
(872, 59, 'pyre_page_title_font_color', ''),
(873, 59, 'pyre_page_title_height', ''),
(874, 59, 'pyre_page_title_bar_bg', ''),
(875, 59, 'pyre_page_title_bar_bg_retina', ''),
(876, 59, 'pyre_page_title_bar_bg_color', ''),
(877, 59, 'pyre_page_title_bar_bg_full', 'default'),
(878, 59, 'pyre_page_title_bg_parallax', 'default'),
(879, 59, 'pyre_page_title_breadcrumbs_search_bar', 'default'),
(881, 59, '_wp_old_slug', 'travel-destination-five'),
(882, 59, '_wp_old_slug', 'sauth-africa'),
(883, 59, '_links_to', '#'),
(884, 59, 'pyre_sidebar_bg_color', ''),
(885, 59, 'pyre_page_title_bar_borders_color', ''),
(886, 59, 'pyre_page_title_mobile_height', ''),
(891, 61, 'slide_template', 'default'),
(892, 61, 'fusion_builder_status', 'inactive'),
(893, 61, 'pyre_width', 'full'),
(894, 61, 'pyre_portfolio_width_100', 'no'),
(895, 61, 'pyre_project_desc_title', 'no'),
(896, 61, 'pyre_project_details', 'no'),
(897, 61, 'pyre_show_first_featured_image', 'no'),
(898, 61, 'pyre_video', ''),
(899, 61, 'pyre_video_url', ''),
(900, 61, 'pyre_project_url', ''),
(901, 61, 'pyre_project_url_text', ''),
(902, 61, 'pyre_copy_url', ''),
(903, 61, 'pyre_copy_url_text', ''),
(904, 61, 'pyre_fimg_width', ''),
(905, 61, 'pyre_fimg_height', ''),
(906, 61, 'pyre_image_rollover_icons', 'default'),
(907, 61, 'pyre_link_icon_url', ''),
(908, 61, 'pyre_link_icon_target', 'no'),
(909, 61, 'pyre_related_posts', 'default'),
(910, 61, 'pyre_share_box', 'default'),
(911, 61, 'pyre_post_pagination', 'default'),
(912, 61, 'pyre_main_top_padding', ''),
(913, 61, 'pyre_main_bottom_padding', ''),
(914, 61, 'pyre_hundredp_padding', ''),
(915, 61, 'pyre_slider_position', 'default'),
(916, 61, 'pyre_slider_type', 'no'),
(917, 61, 'pyre_slider', '0'),
(918, 61, 'pyre_wooslider', '0'),
(919, 61, 'pyre_revslider', '0'),
(920, 61, 'pyre_elasticslider', '0'),
(921, 61, 'pyre_fallback', ''),
(922, 61, 'pyre_avada_rev_styles', 'default'),
(923, 61, 'pyre_display_header', 'yes'),
(924, 61, 'pyre_header_100_width', 'default'),
(925, 61, 'pyre_header_bg', ''),
(926, 61, 'pyre_header_bg_color', ''),
(927, 61, 'pyre_header_bg_opacity', ''),
(928, 61, 'pyre_header_bg_full', 'no'),
(929, 61, 'pyre_header_bg_repeat', 'repeat'),
(930, 61, 'pyre_displayed_menu', 'default'),
(931, 61, 'pyre_display_footer', 'default'),
(932, 61, 'pyre_display_copyright', 'default'),
(933, 61, 'pyre_footer_100_width', 'default'),
(934, 61, 'pyre_sidebar_position', 'default'),
(935, 61, 'pyre_page_bg_layout', 'default'),
(936, 61, 'pyre_page_bg', ''),
(937, 61, 'pyre_page_bg_color', ''),
(938, 61, 'pyre_page_bg_full', 'no'),
(939, 61, 'pyre_page_bg_repeat', 'repeat'),
(940, 61, 'pyre_wide_page_bg', ''),
(941, 61, 'pyre_wide_page_bg_color', ''),
(942, 61, 'pyre_wide_page_bg_full', 'no'),
(943, 61, 'pyre_wide_page_bg_repeat', 'repeat'),
(944, 61, 'pyre_page_title', 'default'),
(945, 61, 'pyre_page_title_text', 'yes'),
(946, 61, 'pyre_page_title_text_alignment', 'default'),
(947, 61, 'pyre_page_title_custom_text', ''),
(948, 61, 'pyre_page_title_100_width', 'default'),
(949, 61, 'pyre_page_title_text_size', ''),
(950, 61, 'pyre_page_title_custom_subheader', ''),
(951, 61, 'pyre_page_title_custom_subheader_text_size', ''),
(952, 61, 'pyre_page_title_font_color', ''),
(953, 61, 'pyre_page_title_height', ''),
(954, 61, 'pyre_page_title_bar_bg', ''),
(955, 61, 'pyre_page_title_bar_bg_retina', ''),
(956, 61, 'pyre_page_title_bar_bg_color', ''),
(957, 61, 'pyre_page_title_bar_bg_full', 'default'),
(958, 61, 'pyre_page_title_bg_parallax', 'default'),
(959, 61, 'pyre_page_title_breadcrumbs_search_bar', 'default'),
(961, 61, '_wp_old_slug', 'travel-destination-six'),
(962, 61, '_links_to', '#'),
(963, 61, 'pyre_sidebar_bg_color', ''),
(964, 61, 'pyre_page_title_bar_borders_color', ''),
(965, 61, 'pyre_page_title_mobile_height', ''),
(972, 86, 'slide_template', 'default'),
(973, 86, 'fusion_builder_status', 'inactive'),
(974, 86, 'pyre_show_first_featured_image', 'no'),
(975, 86, 'pyre_portfolio_width_100', 'no'),
(976, 86, 'pyre_video', ''),
(977, 86, 'pyre_fimg_width', ''),
(978, 86, 'pyre_fimg_height', ''),
(979, 86, 'pyre_image_rollover_icons', 'linkzoom'),
(980, 86, 'pyre_link_icon_url', ''),
(981, 86, 'pyre_related_posts', 'default'),
(982, 86, 'pyre_share_box', 'default'),
(983, 86, 'pyre_post_pagination', 'default'),
(984, 86, 'pyre_author_info', 'default'),
(985, 86, 'pyre_post_meta', 'default'),
(986, 86, 'pyre_post_comments', 'default'),
(987, 86, 'pyre_main_top_padding', ''),
(988, 86, 'pyre_main_bottom_padding', ''),
(989, 86, 'pyre_hundredp_padding', ''),
(990, 86, 'pyre_slider_position', 'default'),
(991, 86, 'pyre_slider_type', 'no'),
(992, 86, 'pyre_slider', '0'),
(993, 86, 'pyre_wooslider', '0'),
(994, 86, 'pyre_revslider', '0'),
(995, 86, 'pyre_elasticslider', '0'),
(996, 86, 'pyre_fallback', ''),
(997, 86, 'pyre_avada_rev_styles', 'default'),
(998, 86, 'pyre_display_header', 'yes'),
(999, 86, 'pyre_header_100_width', 'default'),
(1000, 86, 'pyre_header_bg', ''),
(1001, 86, 'pyre_header_bg_color', ''),
(1002, 86, 'pyre_header_bg_opacity', ''),
(1003, 86, 'pyre_header_bg_full', 'no'),
(1004, 86, 'pyre_header_bg_repeat', 'repeat'),
(1005, 86, 'pyre_displayed_menu', 'default'),
(1006, 86, 'pyre_display_footer', 'default'),
(1007, 86, 'pyre_display_copyright', 'default'),
(1008, 86, 'pyre_footer_100_width', 'default'),
(1009, 86, 'pyre_sidebar_position', 'default'),
(1010, 86, 'pyre_page_bg_layout', 'default'),
(1011, 86, 'pyre_page_bg', ''),
(1012, 86, 'pyre_page_bg_color', ''),
(1013, 86, 'pyre_page_bg_full', 'no'),
(1014, 86, 'pyre_page_bg_repeat', 'repeat'),
(1015, 86, 'pyre_wide_page_bg', ''),
(1016, 86, 'pyre_wide_page_bg_color', ''),
(1017, 86, 'pyre_wide_page_bg_full', 'no'),
(1018, 86, 'pyre_wide_page_bg_repeat', 'repeat'),
(1019, 86, 'pyre_page_title', 'default'),
(1020, 86, 'pyre_page_title_text', 'yes'),
(1021, 86, 'pyre_page_title_text_alignment', 'default'),
(1022, 86, 'pyre_page_title_custom_text', ''),
(1023, 86, 'pyre_page_title_100_width', 'default'),
(1024, 86, 'pyre_page_title_text_size', ''),
(1025, 86, 'pyre_page_title_custom_subheader', ''),
(1026, 86, 'pyre_page_title_custom_subheader_text_size', ''),
(1027, 86, 'pyre_page_title_font_color', ''),
(1028, 86, 'pyre_page_title_height', ''),
(1029, 86, 'pyre_page_title_bar_bg', ''),
(1030, 86, 'pyre_page_title_bar_bg_retina', ''),
(1031, 86, 'pyre_page_title_bar_bg_color', ''),
(1032, 86, 'pyre_page_title_bar_bg_full', 'default'),
(1033, 86, 'pyre_page_title_bg_parallax', 'default'),
(1034, 86, 'pyre_page_title_breadcrumbs_search_bar', 'default'),
(1035, 86, '_links_to', '#'),
(1036, 86, '_thumbnail_id', '824'),
(1037, 86, 'pyre_post_links_target', 'no'),
(1038, 86, 'pyre_sidebar_bg_color', ''),
(1039, 86, 'pyre_page_title_bar_borders_color', ''),
(1040, 86, 'avada_post_views_count', '914'),
(1041, 86, 'pyre_page_title_mobile_height', ''),
(1042, 86, 'sbg_selected_sidebar', 'a:1:{i:0;s:1:\"0\";}'),
(1043, 86, 'sbg_selected_sidebar_replacement', 'a:1:{i:0;s:12:\"Blog Sidebar\";}'),
(1044, 86, 'sbg_selected_sidebar_2', 'a:1:{i:0;s:1:\"0\";}'),
(1045, 86, 'sbg_selected_sidebar_2_replacement', 'a:1:{i:0;s:0:\"\";}'),
(1048, 89, 'slide_template', 'default'),
(1049, 89, 'fusion_builder_status', 'inactive'),
(1050, 89, 'pyre_show_first_featured_image', 'no'),
(1051, 89, 'pyre_portfolio_width_100', 'no'),
(1052, 89, 'pyre_video', ''),
(1053, 89, 'pyre_fimg_width', ''),
(1054, 89, 'pyre_fimg_height', ''),
(1055, 89, 'pyre_image_rollover_icons', 'linkzoom'),
(1056, 89, 'pyre_link_icon_url', ''),
(1057, 89, 'pyre_related_posts', 'default'),
(1058, 89, 'pyre_share_box', 'default'),
(1059, 89, 'pyre_post_pagination', 'default'),
(1060, 89, 'pyre_author_info', 'default'),
(1061, 89, 'pyre_post_meta', 'default'),
(1062, 89, 'pyre_post_comments', 'default'),
(1063, 89, 'pyre_main_top_padding', ''),
(1064, 89, 'pyre_main_bottom_padding', ''),
(1065, 89, 'pyre_hundredp_padding', ''),
(1066, 89, 'pyre_slider_position', 'default'),
(1067, 89, 'pyre_slider_type', 'no'),
(1068, 89, 'pyre_slider', '0'),
(1069, 89, 'pyre_wooslider', '0'),
(1070, 89, 'pyre_revslider', '0'),
(1071, 89, 'pyre_elasticslider', '0'),
(1072, 89, 'pyre_fallback', ''),
(1073, 89, 'pyre_avada_rev_styles', 'default'),
(1074, 89, 'pyre_display_header', 'yes'),
(1075, 89, 'pyre_header_100_width', 'default'),
(1076, 89, 'pyre_header_bg', ''),
(1077, 89, 'pyre_header_bg_color', ''),
(1078, 89, 'pyre_header_bg_opacity', ''),
(1079, 89, 'pyre_header_bg_full', 'no'),
(1080, 89, 'pyre_header_bg_repeat', 'repeat'),
(1081, 89, 'pyre_displayed_menu', 'default'),
(1082, 89, 'pyre_display_footer', 'default'),
(1083, 89, 'pyre_display_copyright', 'default'),
(1084, 89, 'pyre_footer_100_width', 'default'),
(1085, 89, 'pyre_sidebar_position', 'default'),
(1086, 89, 'pyre_page_bg_layout', 'default'),
(1087, 89, 'pyre_page_bg', ''),
(1088, 89, 'pyre_page_bg_color', ''),
(1089, 89, 'pyre_page_bg_full', 'no'),
(1090, 89, 'pyre_page_bg_repeat', 'repeat'),
(1091, 89, 'pyre_wide_page_bg', ''),
(1092, 89, 'pyre_wide_page_bg_color', ''),
(1093, 89, 'pyre_wide_page_bg_full', 'no'),
(1094, 89, 'pyre_wide_page_bg_repeat', 'repeat'),
(1095, 89, 'pyre_page_title', 'default'),
(1096, 89, 'pyre_page_title_text', 'yes'),
(1097, 89, 'pyre_page_title_text_alignment', 'default'),
(1098, 89, 'pyre_page_title_custom_text', ''),
(1099, 89, 'pyre_page_title_100_width', 'default'),
(1100, 89, 'pyre_page_title_text_size', ''),
(1101, 89, 'pyre_page_title_custom_subheader', ''),
(1102, 89, 'pyre_page_title_custom_subheader_text_size', ''),
(1103, 89, 'pyre_page_title_font_color', ''),
(1104, 89, 'pyre_page_title_height', ''),
(1105, 89, 'pyre_page_title_bar_bg', ''),
(1106, 89, 'pyre_page_title_bar_bg_retina', ''),
(1107, 89, 'pyre_page_title_bar_bg_color', ''),
(1108, 89, 'pyre_page_title_bar_bg_full', 'default'),
(1109, 89, 'pyre_page_title_bg_parallax', 'default'),
(1110, 89, 'pyre_page_title_breadcrumbs_search_bar', 'default'),
(1111, 89, '_wp_old_slug', 'aenean-odio-mauris-aenean-odio-mauris'),
(1112, 89, '_links_to', '#'),
(1113, 89, '_thumbnail_id', '823'),
(1114, 89, 'pyre_post_links_target', 'no'),
(1115, 89, 'pyre_sidebar_bg_color', ''),
(1116, 89, 'pyre_page_title_bar_borders_color', ''),
(1117, 89, 'pyre_page_title_mobile_height', ''),
(1118, 89, 'sbg_selected_sidebar', 'a:1:{i:0;s:1:\"0\";}'),
(1119, 89, 'sbg_selected_sidebar_replacement', 'a:1:{i:0;s:12:\"Blog Sidebar\";}'),
(1120, 89, 'sbg_selected_sidebar_2', 'a:1:{i:0;s:1:\"0\";}'),
(1121, 89, 'sbg_selected_sidebar_2_replacement', 'a:1:{i:0;s:0:\"\";}'),
(1123, 358, 'slide_template', ''),
(1124, 358, 'fusion_builder_status', 'inactive'),
(1125, 358, 'pyre_width', 'full'),
(1126, 358, 'pyre_portfolio_width_100', 'no'),
(1127, 358, 'pyre_project_desc_title', 'no'),
(1128, 358, 'pyre_project_details', 'no'),
(1129, 358, 'pyre_show_first_featured_image', 'no'),
(1130, 358, 'pyre_video', ''),
(1131, 358, 'pyre_video_url', ''),
(1132, 358, 'pyre_project_url', ''),
(1133, 358, 'pyre_project_url_text', ''),
(1134, 358, 'pyre_copy_url', ''),
(1135, 358, 'pyre_copy_url_text', ''),
(1136, 358, 'pyre_fimg_width', ''),
(1137, 358, 'pyre_fimg_height', ''),
(1138, 358, 'pyre_image_rollover_icons', 'default'),
(1139, 358, 'pyre_link_icon_url', ''),
(1140, 358, 'pyre_link_icon_target', 'no'),
(1141, 358, 'pyre_related_posts', 'default'),
(1142, 358, 'pyre_share_box', 'default'),
(1143, 358, 'pyre_post_pagination', 'default'),
(1144, 358, 'pyre_main_top_padding', ''),
(1145, 358, 'pyre_main_bottom_padding', ''),
(1146, 358, 'pyre_hundredp_padding', ''),
(1147, 358, 'pyre_slider_position', 'default'),
(1148, 358, 'pyre_slider_type', 'no'),
(1149, 358, 'pyre_slider', '0'),
(1150, 358, 'pyre_wooslider', '0'),
(1151, 358, 'pyre_revslider', '0'),
(1152, 358, 'pyre_elasticslider', '0'),
(1153, 358, 'pyre_fallback', ''),
(1154, 358, 'pyre_avada_rev_styles', 'default'),
(1155, 358, 'pyre_display_header', 'yes'),
(1156, 358, 'pyre_header_100_width', 'default'),
(1157, 358, 'pyre_header_bg', ''),
(1158, 358, 'pyre_header_bg_color', ''),
(1159, 358, 'pyre_header_bg_opacity', ''),
(1160, 358, 'pyre_header_bg_full', 'no'),
(1161, 358, 'pyre_header_bg_repeat', 'repeat'),
(1162, 358, 'pyre_displayed_menu', 'default'),
(1163, 358, 'pyre_display_footer', 'default'),
(1164, 358, 'pyre_display_copyright', 'default'),
(1165, 358, 'pyre_footer_100_width', 'default'),
(1166, 358, 'pyre_sidebar_position', 'default'),
(1167, 358, 'pyre_page_bg_layout', 'default'),
(1168, 358, 'pyre_page_bg', ''),
(1169, 358, 'pyre_page_bg_color', ''),
(1170, 358, 'pyre_page_bg_full', 'no'),
(1171, 358, 'pyre_page_bg_repeat', 'repeat'),
(1172, 358, 'pyre_wide_page_bg', ''),
(1173, 358, 'pyre_wide_page_bg_color', ''),
(1174, 358, 'pyre_wide_page_bg_full', 'no'),
(1175, 358, 'pyre_wide_page_bg_repeat', 'repeat'),
(1176, 358, 'pyre_page_title', 'default'),
(1177, 358, 'pyre_page_title_text', 'yes'),
(1178, 358, 'pyre_page_title_text_alignment', 'default'),
(1179, 358, 'pyre_page_title_custom_text', ''),
(1180, 358, 'pyre_page_title_100_width', 'default'),
(1181, 358, 'pyre_page_title_text_size', ''),
(1182, 358, 'pyre_page_title_custom_subheader', ''),
(1183, 358, 'pyre_page_title_custom_subheader_text_size', ''),
(1184, 358, 'pyre_page_title_font_color', ''),
(1185, 358, 'pyre_page_title_height', ''),
(1186, 358, 'pyre_page_title_bar_bg', ''),
(1187, 358, 'pyre_page_title_bar_bg_retina', ''),
(1188, 358, 'pyre_page_title_bar_bg_color', ''),
(1189, 358, 'pyre_page_title_bar_bg_full', 'default'),
(1190, 358, 'pyre_page_title_bg_parallax', 'default'),
(1191, 358, 'pyre_page_title_breadcrumbs_search_bar', 'default'),
(1192, 358, '_links_to', '#'),
(1193, 358, 'pyre_sidebar_bg_color', ''),
(1194, 358, 'pyre_page_title_bar_borders_color', ''),
(1195, 358, 'pyre_page_title_mobile_height', ''),
(1201, 361, 'slide_template', ''),
(1202, 361, 'fusion_builder_status', 'inactive'),
(1203, 361, 'pyre_width', 'full'),
(1204, 361, 'pyre_portfolio_width_100', 'no'),
(1205, 361, 'pyre_project_desc_title', 'no'),
(1206, 361, 'pyre_project_details', 'no'),
(1207, 361, 'pyre_show_first_featured_image', 'no'),
(1208, 361, 'pyre_video', ''),
(1209, 361, 'pyre_video_url', ''),
(1210, 361, 'pyre_project_url', ''),
(1211, 361, 'pyre_project_url_text', ''),
(1212, 361, 'pyre_copy_url', ''),
(1213, 361, 'pyre_copy_url_text', ''),
(1214, 361, 'pyre_fimg_width', ''),
(1215, 361, 'pyre_fimg_height', ''),
(1216, 361, 'pyre_image_rollover_icons', 'default'),
(1217, 361, 'pyre_link_icon_url', ''),
(1218, 361, 'pyre_link_icon_target', 'no'),
(1219, 361, 'pyre_related_posts', 'default'),
(1220, 361, 'pyre_share_box', 'default'),
(1221, 361, 'pyre_post_pagination', 'default'),
(1222, 361, 'pyre_main_top_padding', ''),
(1223, 361, 'pyre_main_bottom_padding', ''),
(1224, 361, 'pyre_hundredp_padding', ''),
(1225, 361, 'pyre_slider_position', 'default'),
(1226, 361, 'pyre_slider_type', 'no'),
(1227, 361, 'pyre_slider', '0'),
(1228, 361, 'pyre_wooslider', '0'),
(1229, 361, 'pyre_revslider', '0'),
(1230, 361, 'pyre_elasticslider', '0'),
(1231, 361, 'pyre_fallback', ''),
(1232, 361, 'pyre_avada_rev_styles', 'default'),
(1233, 361, 'pyre_display_header', 'yes'),
(1234, 361, 'pyre_header_100_width', 'default'),
(1235, 361, 'pyre_header_bg', ''),
(1236, 361, 'pyre_header_bg_color', ''),
(1237, 361, 'pyre_header_bg_opacity', ''),
(1238, 361, 'pyre_header_bg_full', 'no'),
(1239, 361, 'pyre_header_bg_repeat', 'repeat'),
(1240, 361, 'pyre_displayed_menu', 'default'),
(1241, 361, 'pyre_display_footer', 'default'),
(1242, 361, 'pyre_display_copyright', 'default'),
(1243, 361, 'pyre_footer_100_width', 'default'),
(1244, 361, 'pyre_sidebar_position', 'default'),
(1245, 361, 'pyre_page_bg_layout', 'default'),
(1246, 361, 'pyre_page_bg', ''),
(1247, 361, 'pyre_page_bg_color', ''),
(1248, 361, 'pyre_page_bg_full', 'no'),
(1249, 361, 'pyre_page_bg_repeat', 'repeat'),
(1250, 361, 'pyre_wide_page_bg', ''),
(1251, 361, 'pyre_wide_page_bg_color', ''),
(1252, 361, 'pyre_wide_page_bg_full', 'no'),
(1253, 361, 'pyre_wide_page_bg_repeat', 'repeat'),
(1254, 361, 'pyre_page_title', 'default'),
(1255, 361, 'pyre_page_title_text', 'yes'),
(1256, 361, 'pyre_page_title_text_alignment', 'default'),
(1257, 361, 'pyre_page_title_custom_text', ''),
(1258, 361, 'pyre_page_title_100_width', 'default'),
(1259, 361, 'pyre_page_title_text_size', ''),
(1260, 361, 'pyre_page_title_custom_subheader', ''),
(1261, 361, 'pyre_page_title_custom_subheader_text_size', ''),
(1262, 361, 'pyre_page_title_font_color', ''),
(1263, 361, 'pyre_page_title_height', ''),
(1264, 361, 'pyre_page_title_bar_bg', ''),
(1265, 361, 'pyre_page_title_bar_bg_retina', ''),
(1266, 361, 'pyre_page_title_bar_bg_color', ''),
(1267, 361, 'pyre_page_title_bar_bg_full', 'default'),
(1268, 361, 'pyre_page_title_bg_parallax', 'default'),
(1269, 361, 'pyre_page_title_breadcrumbs_search_bar', 'default'),
(1270, 361, '_links_to', '#'),
(1271, 361, 'pyre_sidebar_bg_color', ''),
(1272, 361, 'pyre_page_title_bar_borders_color', ''),
(1273, 361, 'pyre_page_title_mobile_height', ''),
(1279, 364, 'slide_template', ''),
(1280, 364, 'fusion_builder_status', 'inactive'),
(1281, 364, 'pyre_width', 'full'),
(1282, 364, 'pyre_portfolio_width_100', 'no'),
(1283, 364, 'pyre_project_desc_title', 'no'),
(1284, 364, 'pyre_project_details', 'no'),
(1285, 364, 'pyre_show_first_featured_image', 'no'),
(1286, 364, 'pyre_video', ''),
(1287, 364, 'pyre_video_url', ''),
(1288, 364, 'pyre_project_url', ''),
(1289, 364, 'pyre_project_url_text', ''),
(1290, 364, 'pyre_copy_url', ''),
(1291, 364, 'pyre_copy_url_text', ''),
(1292, 364, 'pyre_fimg_width', ''),
(1293, 364, 'pyre_fimg_height', ''),
(1294, 364, 'pyre_image_rollover_icons', 'default'),
(1295, 364, 'pyre_link_icon_url', ''),
(1296, 364, 'pyre_link_icon_target', 'no'),
(1297, 364, 'pyre_related_posts', 'default'),
(1298, 364, 'pyre_share_box', 'default'),
(1299, 364, 'pyre_post_pagination', 'default'),
(1300, 364, 'pyre_main_top_padding', ''),
(1301, 364, 'pyre_main_bottom_padding', ''),
(1302, 364, 'pyre_hundredp_padding', ''),
(1303, 364, 'pyre_slider_position', 'default'),
(1304, 364, 'pyre_slider_type', 'no'),
(1305, 364, 'pyre_slider', '0'),
(1306, 364, 'pyre_wooslider', '0'),
(1307, 364, 'pyre_revslider', '0'),
(1308, 364, 'pyre_elasticslider', '0'),
(1309, 364, 'pyre_fallback', ''),
(1310, 364, 'pyre_avada_rev_styles', 'default'),
(1311, 364, 'pyre_display_header', 'yes'),
(1312, 364, 'pyre_header_100_width', 'default'),
(1313, 364, 'pyre_header_bg', ''),
(1314, 364, 'pyre_header_bg_color', ''),
(1315, 364, 'pyre_header_bg_opacity', ''),
(1316, 364, 'pyre_header_bg_full', 'no'),
(1317, 364, 'pyre_header_bg_repeat', 'repeat'),
(1318, 364, 'pyre_displayed_menu', 'default'),
(1319, 364, 'pyre_display_footer', 'default'),
(1320, 364, 'pyre_display_copyright', 'default'),
(1321, 364, 'pyre_footer_100_width', 'default'),
(1322, 364, 'pyre_sidebar_position', 'default'),
(1323, 364, 'pyre_page_bg_layout', 'default'),
(1324, 364, 'pyre_page_bg', ''),
(1325, 364, 'pyre_page_bg_color', ''),
(1326, 364, 'pyre_page_bg_full', 'no'),
(1327, 364, 'pyre_page_bg_repeat', 'repeat'),
(1328, 364, 'pyre_wide_page_bg', ''),
(1329, 364, 'pyre_wide_page_bg_color', ''),
(1330, 364, 'pyre_wide_page_bg_full', 'no'),
(1331, 364, 'pyre_wide_page_bg_repeat', 'repeat'),
(1332, 364, 'pyre_page_title', 'default'),
(1333, 364, 'pyre_page_title_text', 'yes'),
(1334, 364, 'pyre_page_title_text_alignment', 'default'),
(1335, 364, 'pyre_page_title_custom_text', ''),
(1336, 364, 'pyre_page_title_100_width', 'default'),
(1337, 364, 'pyre_page_title_text_size', ''),
(1338, 364, 'pyre_page_title_custom_subheader', ''),
(1339, 364, 'pyre_page_title_custom_subheader_text_size', ''),
(1340, 364, 'pyre_page_title_font_color', ''),
(1341, 364, 'pyre_page_title_height', ''),
(1342, 364, 'pyre_page_title_bar_bg', ''),
(1343, 364, 'pyre_page_title_bar_bg_retina', ''),
(1344, 364, 'pyre_page_title_bar_bg_color', ''),
(1345, 364, 'pyre_page_title_bar_bg_full', 'default'),
(1346, 364, 'pyre_page_title_bg_parallax', 'default'),
(1347, 364, 'pyre_page_title_breadcrumbs_search_bar', 'default'),
(1348, 364, '_links_to', '#'),
(1349, 364, 'pyre_sidebar_bg_color', ''),
(1350, 364, 'pyre_page_title_bar_borders_color', ''),
(1351, 364, 'pyre_page_title_mobile_height', ''),
(1357, 24, 'slide_template', 'default'),
(1358, 24, 'pyre_type', 'image'),
(1359, 24, 'pyre_youtube_id', ''),
(1360, 24, 'pyre_vimeo_id', ''),
(1361, 24, 'pyre_webm', ''),
(1362, 24, 'pyre_mp4', ''),
(1363, 24, 'pyre_ogv', ''),
(1364, 24, 'pyre_preview_image', ''),
(1365, 24, 'pyre_video_bg_color', ''),
(1366, 24, 'pyre_mute_video', 'yes'),
(1367, 24, 'pyre_autoplay_video', 'yes'),
(1368, 24, 'pyre_loop_video', 'yes'),
(1369, 24, 'pyre_hide_video_controls', 'yes'),
(1370, 24, 'pyre_content_alignment', 'center'),
(1371, 24, 'pyre_heading', 'PRIVATE GUEST ACCOMMODATION'),
(1372, 24, 'pyre_heading_font_size', '55'),
(1373, 24, 'pyre_heading_color', '#A8A6AD'),
(1374, 24, 'pyre_heading_bg', 'no'),
(1375, 24, 'pyre_heading_bg_color', ''),
(1376, 24, 'pyre_caption', 'Family, Friends, Couples and Individuals'),
(1377, 24, 'pyre_caption_font_size', '30'),
(1378, 24, 'pyre_caption_color', '#fff'),
(1379, 24, 'pyre_caption_bg', 'yes'),
(1380, 24, 'pyre_caption_bg_color', ''),
(1381, 24, 'pyre_link_type', 'button'),
(1382, 24, 'pyre_slide_link', ''),
(1383, 24, 'pyre_slide_target', 'yes'),
(1384, 24, 'pyre_button_1', '[fusion_button link=\"https://msla.co.za/lodge/reservations/\" color=\"default\" size=\"xlarge\" type=\"\" shape=\"\" target=\"_self\" title=\"\" gradient_colors=\"|\" gradient_hover_colors=\"|\" accent_color=\"\" accent_hover_color=\"\" bevel_color=\"\" border_width=\"0px\" shadow=\"no\" icon=\"\" icon_divider=\"yes\" icon_position=\"left\" modal=\"\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" class=\"\" id=\"\"]MAKE A RESERVATION INQUIRY[/fusion_button]'),
(1385, 24, 'pyre_button_2', ''),
(1386, 24, '_wp_old_slug', 'home-slide-1'),
(1389, 92, 'slide_template', 'default'),
(1390, 92, 'fusion_builder_status', 'inactive'),
(1391, 92, 'pyre_show_first_featured_image', 'no'),
(1392, 92, 'pyre_portfolio_width_100', 'no'),
(1393, 92, 'pyre_video', ''),
(1394, 92, 'pyre_fimg_width', ''),
(1395, 92, 'pyre_fimg_height', ''),
(1396, 92, 'pyre_image_rollover_icons', 'linkzoom'),
(1397, 92, 'pyre_link_icon_url', ''),
(1398, 92, 'pyre_related_posts', 'default'),
(1399, 92, 'pyre_share_box', 'default'),
(1400, 92, 'pyre_post_pagination', 'default'),
(1401, 92, 'pyre_author_info', 'default'),
(1402, 92, 'pyre_post_meta', 'default'),
(1403, 92, 'pyre_post_comments', 'default'),
(1404, 92, 'pyre_main_top_padding', ''),
(1405, 92, 'pyre_main_bottom_padding', ''),
(1406, 92, 'pyre_hundredp_padding', ''),
(1407, 92, 'pyre_slider_position', 'default'),
(1408, 92, 'pyre_slider_type', 'no'),
(1409, 92, 'pyre_slider', '0'),
(1410, 92, 'pyre_wooslider', '0'),
(1411, 92, 'pyre_revslider', '0'),
(1412, 92, 'pyre_elasticslider', '0'),
(1413, 92, 'pyre_fallback', ''),
(1414, 92, 'pyre_avada_rev_styles', 'default'),
(1415, 92, 'pyre_display_header', 'yes'),
(1416, 92, 'pyre_header_100_width', 'default'),
(1417, 92, 'pyre_header_bg', ''),
(1418, 92, 'pyre_header_bg_color', ''),
(1419, 92, 'pyre_header_bg_opacity', ''),
(1420, 92, 'pyre_header_bg_full', 'no'),
(1421, 92, 'pyre_header_bg_repeat', 'repeat'),
(1422, 92, 'pyre_displayed_menu', 'default'),
(1423, 92, 'pyre_display_footer', 'default'),
(1424, 92, 'pyre_display_copyright', 'default'),
(1425, 92, 'pyre_footer_100_width', 'default'),
(1426, 92, 'pyre_sidebar_position', 'default'),
(1427, 92, 'pyre_page_bg_layout', 'default'),
(1428, 92, 'pyre_page_bg', ''),
(1429, 92, 'pyre_page_bg_color', ''),
(1430, 92, 'pyre_page_bg_full', 'no'),
(1431, 92, 'pyre_page_bg_repeat', 'repeat'),
(1432, 92, 'pyre_wide_page_bg', ''),
(1433, 92, 'pyre_wide_page_bg_color', ''),
(1434, 92, 'pyre_wide_page_bg_full', 'no'),
(1435, 92, 'pyre_wide_page_bg_repeat', 'repeat'),
(1436, 92, 'pyre_page_title', 'default'),
(1437, 92, 'pyre_page_title_text', 'yes'),
(1438, 92, 'pyre_page_title_text_alignment', 'default'),
(1439, 92, 'pyre_page_title_custom_text', ''),
(1440, 92, 'pyre_page_title_100_width', 'default'),
(1441, 92, 'pyre_page_title_text_size', ''),
(1442, 92, 'pyre_page_title_custom_subheader', ''),
(1443, 92, 'pyre_page_title_custom_subheader_text_size', ''),
(1444, 92, 'pyre_page_title_font_color', ''),
(1445, 92, 'pyre_page_title_height', ''),
(1446, 92, 'pyre_page_title_bar_bg', ''),
(1447, 92, 'pyre_page_title_bar_bg_retina', ''),
(1448, 92, 'pyre_page_title_bar_bg_color', ''),
(1449, 92, 'pyre_page_title_bar_bg_full', 'default'),
(1450, 92, 'pyre_page_title_bg_parallax', 'default'),
(1451, 92, 'pyre_page_title_breadcrumbs_search_bar', 'default'),
(1452, 92, '_wp_old_slug', 'mauris-aenean-odio-mauris'),
(1453, 92, 'avada_post_views_count', '958'),
(1454, 92, '_links_to', '#'),
(1455, 92, '_thumbnail_id', '822'),
(1456, 92, 'pyre_post_links_target', 'no'),
(1457, 92, 'pyre_sidebar_bg_color', ''),
(1458, 92, 'pyre_page_title_bar_borders_color', ''),
(1459, 92, 'pyre_page_title_mobile_height', ''),
(1460, 92, 'sbg_selected_sidebar', 'a:1:{i:0;s:1:\"0\";}'),
(1461, 92, 'sbg_selected_sidebar_replacement', 'a:1:{i:0;s:12:\"Blog Sidebar\";}'),
(1462, 92, 'sbg_selected_sidebar_2', 'a:1:{i:0;s:1:\"0\";}'),
(1463, 92, 'sbg_selected_sidebar_2_replacement', 'a:1:{i:0;s:0:\"\";}'),
(1464, 96, 'slide_template', 'default'),
(1465, 96, 'pyre_type', 'image'),
(1466, 96, 'pyre_youtube_id', ''),
(1467, 96, 'pyre_vimeo_id', ''),
(1468, 96, 'pyre_webm', ''),
(1469, 96, 'pyre_mp4', ''),
(1470, 96, 'pyre_ogv', ''),
(1471, 96, 'pyre_preview_image', ''),
(1472, 96, 'pyre_video_bg_color', ''),
(1473, 96, 'pyre_mute_video', 'yes'),
(1474, 96, 'pyre_autoplay_video', 'yes'),
(1475, 96, 'pyre_loop_video', 'yes'),
(1476, 96, 'pyre_hide_video_controls', 'yes'),
(1477, 96, 'pyre_content_alignment', 'center'),
(1478, 96, 'pyre_heading', 'OUR DESTINATIONS'),
(1479, 96, 'pyre_heading_font_size', '60'),
(1480, 96, 'pyre_heading_color', '#ffffff'),
(1481, 96, 'pyre_heading_bg', 'no'),
(1482, 96, 'pyre_heading_bg_color', ''),
(1483, 96, 'pyre_caption', 'Our team of experts source mouth watering special offers from private islands to award winning, secluded beaches, our collection is irresistible.'),
(1484, 96, 'pyre_caption_font_size', '26'),
(1485, 96, 'pyre_caption_color', '#ffffff'),
(1486, 96, 'pyre_caption_bg', 'no'),
(1487, 96, 'pyre_caption_bg_color', ''),
(1488, 96, 'pyre_link_type', 'button'),
(1489, 96, 'pyre_slide_link', ''),
(1490, 96, 'pyre_slide_target', 'yes'),
(1491, 96, 'pyre_button_1', ''),
(1492, 96, 'pyre_button_2', ''),
(1493, 96, '_wp_old_slug', 'reservation'),
(1494, 96, '_thumbnail_id', '813'),
(1495, 152, 'slide_template', 'default'),
(1496, 152, 'pyre_type', 'image'),
(1497, 152, 'pyre_youtube_id', ''),
(1498, 152, 'pyre_vimeo_id', ''),
(1499, 152, 'pyre_webm', ''),
(1500, 152, 'pyre_mp4', ''),
(1501, 152, 'pyre_ogv', ''),
(1502, 152, 'pyre_preview_image', ''),
(1503, 152, 'pyre_video_bg_color', ''),
(1504, 152, 'pyre_mute_video', 'yes'),
(1505, 152, 'pyre_autoplay_video', 'yes'),
(1506, 152, 'pyre_loop_video', 'yes'),
(1507, 152, 'pyre_hide_video_controls', 'yes'),
(1508, 152, 'pyre_content_alignment', 'center'),
(1509, 152, 'pyre_heading', 'MAKE A RESERVATION'),
(1510, 152, 'pyre_heading_font_size', '60'),
(1511, 152, 'pyre_heading_color', '#ffffff'),
(1512, 152, 'pyre_heading_bg', 'no'),
(1513, 152, 'pyre_heading_bg_color', ''),
(1514, 152, 'pyre_caption', 'Our team of experts source mouth watering special offers from private islands to award winning, secluded beaches, our collection is irresistible.'),
(1515, 152, 'pyre_caption_font_size', '26'),
(1516, 152, 'pyre_caption_color', '#ffffff'),
(1517, 152, 'pyre_caption_bg', 'no'),
(1518, 152, 'pyre_caption_bg_color', ''),
(1519, 152, 'pyre_link_type', 'button'),
(1520, 152, 'pyre_slide_link', ''),
(1521, 152, 'pyre_slide_target', 'yes'),
(1522, 152, 'pyre_button_1', ''),
(1523, 152, 'pyre_button_2', ''),
(1524, 152, '_thumbnail_id', '816'),
(1525, 192, 'slide_template', 'default'),
(1526, 192, 'pyre_type', 'image'),
(1527, 192, 'pyre_youtube_id', ''),
(1528, 192, 'pyre_vimeo_id', ''),
(1529, 192, 'pyre_webm', ''),
(1530, 192, 'pyre_mp4', ''),
(1531, 192, 'pyre_ogv', ''),
(1532, 192, 'pyre_preview_image', ''),
(1533, 192, 'pyre_video_bg_color', ''),
(1534, 192, 'pyre_mute_video', 'yes'),
(1535, 192, 'pyre_autoplay_video', 'yes'),
(1536, 192, 'pyre_loop_video', 'yes'),
(1537, 192, 'pyre_hide_video_controls', 'yes'),
(1538, 192, 'pyre_content_alignment', 'center'),
(1539, 192, 'pyre_heading', ''),
(1540, 192, 'pyre_heading_font_size', '60'),
(1541, 192, 'pyre_heading_color', '#ffffff'),
(1542, 192, 'pyre_heading_bg', 'no'),
(1543, 192, 'pyre_heading_bg_color', ''),
(1544, 192, 'pyre_caption', ''),
(1545, 192, 'pyre_caption_font_size', '26'),
(1546, 192, 'pyre_caption_color', '#ffffff'),
(1547, 192, 'pyre_caption_bg', 'no'),
(1548, 192, 'pyre_caption_bg_color', ''),
(1549, 192, 'pyre_link_type', 'button'),
(1550, 192, 'pyre_slide_link', ''),
(1551, 192, 'pyre_slide_target', 'yes'),
(1552, 192, 'pyre_button_1', ''),
(1553, 192, 'pyre_button_2', ''),
(1554, 192, '_thumbnail_id', '1413'),
(1555, 246, '_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>Your Message<br />\n    [textarea your-message] </p>\n\n<p>[submit \"SEND MESSAGE\"]</p>'),
(1556, 246, '_mail', 'a:9:{s:6:\"active\";b:1;s:7:\"subject\";s:20:\"Assagay Forest Lodge\";s:6:\"sender\";s:37:\"[your-name] <assagaylodge@msla.co.za>\";s:9:\"recipient\";s:23:\"assagaylodge@msla.co.za\";s:4:\"body\";s:92:\"From: [your-name] <[your-email]>\nSubject: Assagay Forest Lodge\n\nMessage Body:\n[your-message]\";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;}'),
(1557, 246, '_mail_2', 'a:9:{s:6:\"active\";b:0;s:7:\"subject\";s:14:\"[your-subject]\";s:6:\"sender\";s:35:\"Travel <wordpress@theme-fusion.com>\";s:9:\"recipient\";s:12:\"[your-email]\";s:4:\"body\";s:132:\"Message Body:\n[your-message]\n\n--\nThis e-mail was sent from a contact form on Travel (http://theme-fusion.com/avada_demos_xml/travel)\";s:18:\"additional_headers\";s:27:\"Reply-To: isharis@gmail.com\";s:11:\"attachments\";s:0:\"\";s:8:\"use_html\";b:0;s:13:\"exclude_blank\";b:0;}'),
(1558, 246, '_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:26:\"Date format seems invalid.\";s:14:\"date_too_early\";s:23:\"This date is too early.\";s:13:\"date_too_late\";s:22:\"This date is too late.\";s:13:\"upload_failed\";s:22:\"Failed to upload file.\";s:24:\"upload_file_type_invalid\";s:30:\"This file type is not allowed.\";s:21:\"upload_file_too_large\";s:23:\"This file is too large.\";s:23:\"upload_failed_php_error\";s:38:\"Failed to upload file. Error occurred.\";s:14:\"invalid_number\";s:28:\"Number format seems invalid.\";s:16:\"number_too_small\";s:25:\"This number is too small.\";s:16:\"number_too_large\";s:25:\"This number is too large.\";s:23:\"quiz_answer_not_correct\";s:27:\"Your answer is not correct.\";s:17:\"captcha_not_match\";s:31:\"Your entered code is incorrect.\";s:13:\"invalid_email\";s:28:\"Email address seems invalid.\";s:11:\"invalid_url\";s:18:\"URL seems invalid.\";s:11:\"invalid_tel\";s:31:\"Telephone number seems invalid.\";}'),
(1559, 246, '_additional_settings', ''),
(1560, 246, '_locale', 'en_US'),
(1561, 319, 'slide_template', 'default'),
(1562, 319, 'pyre_type', 'image'),
(1563, 319, 'pyre_youtube_id', ''),
(1564, 319, 'pyre_vimeo_id', ''),
(1565, 319, 'pyre_webm', ''),
(1566, 319, 'pyre_mp4', ''),
(1567, 319, 'pyre_ogv', ''),
(1568, 319, 'pyre_preview_image', ''),
(1569, 319, 'pyre_video_bg_color', ''),
(1570, 319, 'pyre_mute_video', 'yes'),
(1571, 319, 'pyre_autoplay_video', 'yes'),
(1572, 319, 'pyre_loop_video', 'yes'),
(1573, 319, 'pyre_hide_video_controls', 'yes'),
(1574, 319, 'pyre_content_alignment', 'center'),
(1575, 319, 'pyre_heading', 'TRAVEL BLOG'),
(1576, 319, 'pyre_heading_font_size', '60'),
(1577, 319, 'pyre_heading_color', '#ffffff'),
(1578, 319, 'pyre_heading_bg', 'no'),
(1579, 319, 'pyre_heading_bg_color', ''),
(1580, 319, 'pyre_caption', 'Our researchers travel far and wide to bring you the very best in travel news and opinion. Why accept anything less?'),
(1581, 319, 'pyre_caption_font_size', '26'),
(1582, 319, 'pyre_caption_color', '#ffffff'),
(1583, 319, 'pyre_caption_bg', 'no'),
(1584, 319, 'pyre_caption_bg_color', ''),
(1585, 319, 'pyre_link_type', 'button'),
(1586, 319, 'pyre_slide_link', ''),
(1587, 319, 'pyre_slide_target', 'yes'),
(1588, 319, 'pyre_button_1', ''),
(1589, 319, 'pyre_button_2', ''),
(1590, 319, '_thumbnail_id', '815'),
(1593, 415, '_thumbnail_id', '821'),
(1594, 415, 'slide_template', 'default'),
(1595, 415, 'fusion_builder_status', 'inactive'),
(1596, 415, 'pyre_show_first_featured_image', 'no'),
(1597, 415, 'pyre_portfolio_width_100', 'no'),
(1598, 415, 'pyre_video', ''),
(1599, 415, 'pyre_fimg_width', ''),
(1600, 415, 'pyre_fimg_height', ''),
(1601, 415, 'pyre_image_rollover_icons', 'linkzoom'),
(1602, 415, 'pyre_link_icon_url', ''),
(1603, 415, 'pyre_related_posts', 'default'),
(1604, 415, 'pyre_share_box', 'default'),
(1605, 415, 'pyre_post_pagination', 'default'),
(1606, 415, 'pyre_author_info', 'default'),
(1607, 415, 'pyre_post_meta', 'default'),
(1608, 415, 'pyre_post_comments', 'default'),
(1609, 415, 'pyre_main_top_padding', ''),
(1610, 415, 'pyre_main_bottom_padding', ''),
(1611, 415, 'pyre_hundredp_padding', ''),
(1612, 415, 'pyre_slider_position', 'default'),
(1613, 415, 'pyre_slider_type', 'no'),
(1614, 415, 'pyre_slider', '0'),
(1615, 415, 'pyre_wooslider', '0'),
(1616, 415, 'pyre_revslider', '0'),
(1617, 415, 'pyre_elasticslider', '0'),
(1618, 415, 'pyre_fallback', ''),
(1619, 415, 'pyre_avada_rev_styles', 'default'),
(1620, 415, 'pyre_display_header', 'yes'),
(1621, 415, 'pyre_header_100_width', 'default'),
(1622, 415, 'pyre_header_bg', ''),
(1623, 415, 'pyre_header_bg_color', ''),
(1624, 415, 'pyre_header_bg_opacity', ''),
(1625, 415, 'pyre_header_bg_full', 'no'),
(1626, 415, 'pyre_header_bg_repeat', 'repeat'),
(1627, 415, 'pyre_displayed_menu', 'default'),
(1628, 415, 'pyre_display_footer', 'default'),
(1629, 415, 'pyre_display_copyright', 'default'),
(1630, 415, 'pyre_footer_100_width', 'default'),
(1631, 415, 'pyre_sidebar_position', 'default'),
(1632, 415, 'pyre_page_bg_layout', 'default'),
(1633, 415, 'pyre_page_bg', ''),
(1634, 415, 'pyre_page_bg_color', ''),
(1635, 415, 'pyre_page_bg_full', 'no'),
(1636, 415, 'pyre_page_bg_repeat', 'repeat'),
(1637, 415, 'pyre_wide_page_bg', ''),
(1638, 415, 'pyre_wide_page_bg_color', ''),
(1639, 415, 'pyre_wide_page_bg_full', 'no'),
(1640, 415, 'pyre_wide_page_bg_repeat', 'repeat'),
(1641, 415, 'pyre_page_title', 'default'),
(1642, 415, 'pyre_page_title_text', 'yes'),
(1643, 415, 'pyre_page_title_text_alignment', 'default'),
(1644, 415, 'pyre_page_title_custom_text', ''),
(1645, 415, 'pyre_page_title_100_width', 'default'),
(1646, 415, 'pyre_page_title_text_size', ''),
(1647, 415, 'pyre_page_title_custom_subheader', ''),
(1648, 415, 'pyre_page_title_custom_subheader_text_size', ''),
(1649, 415, 'pyre_page_title_font_color', ''),
(1650, 415, 'pyre_page_title_height', ''),
(1651, 415, 'pyre_page_title_bar_bg', ''),
(1652, 415, 'pyre_page_title_bar_bg_retina', ''),
(1653, 415, 'pyre_page_title_bar_bg_color', ''),
(1654, 415, 'pyre_page_title_bar_bg_full', 'default'),
(1655, 415, 'pyre_page_title_bg_parallax', 'default'),
(1656, 415, 'pyre_page_title_breadcrumbs_search_bar', 'default'),
(1657, 415, '_wp_old_slug', 'post-4'),
(1658, 415, '_links_to', '#'),
(1659, 415, 'pyre_post_links_target', 'no'),
(1660, 415, 'pyre_sidebar_bg_color', ''),
(1661, 415, 'pyre_page_title_bar_borders_color', ''),
(1662, 415, 'avada_post_views_count', '894'),
(1663, 415, 'pyre_page_title_mobile_height', ''),
(1664, 415, 'sbg_selected_sidebar', 'a:1:{i:0;s:1:\"0\";}'),
(1665, 415, 'sbg_selected_sidebar_replacement', 'a:1:{i:0;s:12:\"Blog Sidebar\";}'),
(1666, 415, 'sbg_selected_sidebar_2', 'a:1:{i:0;s:1:\"0\";}'),
(1667, 415, 'sbg_selected_sidebar_2_replacement', 'a:1:{i:0;s:0:\"\";}'),
(1685, 11, '_edit_lock', '1573664589:1'),
(1686, 11, '_edit_last', '1'),
(1691, 834, 'FB_content', ''),
(1692, 11, 'pyre_page_title_mobile_height', ''),
(1701, 835, 'FB_content', ''),
(1706, 836, 'FB_content', ''),
(1719, 837, 'FB_content', ''),
(1728, 838, '_wp_attached_file', '2015/08/lodgelogoX2.png'),
(1729, 838, '_wp_attachment_metadata', 'a:5:{s:5:\"width\";i:344;s:6:\"height\";i:102;s:4:\"file\";s:23:\"2015/08/lodgelogoX2.png\";s:5:\"sizes\";a:10:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:23:\"lodgelogoX2-150x102.png\";s:5:\"width\";i:150;s:6:\"height\";i:102;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:22:\"lodgelogoX2-300x89.png\";s:5:\"width\";i:300;s:6:\"height\";i:89;s:9:\"mime-type\";s:9:\"image/png\";}s:11:\"blog-medium\";a:4:{s:4:\"file\";s:23:\"lodgelogoX2-320x102.png\";s:5:\"width\";i:320;s:6:\"height\";i:102;s:9:\"mime-type\";s:9:\"image/png\";}s:8:\"tabs-img\";a:4:{s:4:\"file\";s:21:\"lodgelogoX2-52x50.png\";s:5:\"width\";i:52;s:6:\"height\";i:50;s:9:\"mime-type\";s:9:\"image/png\";}s:11:\"related-img\";a:4:{s:4:\"file\";s:23:\"lodgelogoX2-180x102.png\";s:5:\"width\";i:180;s:6:\"height\";i:102;s:9:\"mime-type\";s:9:\"image/png\";}s:15:\"portfolio-three\";a:4:{s:4:\"file\";s:23:\"lodgelogoX2-300x102.png\";s:5:\"width\";i:300;s:6:\"height\";i:102;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"portfolio-four\";a:4:{s:4:\"file\";s:23:\"lodgelogoX2-220x102.png\";s:5:\"width\";i:220;s:6:\"height\";i:102;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"portfolio-five\";a:4:{s:4:\"file\";s:23:\"lodgelogoX2-177x102.png\";s:5:\"width\";i:177;s:6:\"height\";i:102;s:9:\"mime-type\";s:9:\"image/png\";}s:13:\"portfolio-six\";a:4:{s:4:\"file\";s:23:\"lodgelogoX2-147x102.png\";s:5:\"width\";i:147;s:6:\"height\";i:102;s:9:\"mime-type\";s:9:\"image/png\";}s:22:\"recent-works-thumbnail\";a:4:{s:4:\"file\";s:21:\"lodgelogoX2-66x66.png\";s:5:\"width\";i:66;s:6:\"height\";i:66;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'),
(1730, 7, '_edit_lock', '1659607039:1'),
(1732, 24, '_edit_lock', '1588762243:1'),
(1733, 840, '_wp_attached_file', '2015/01/1000hills.jpg'),
(1734, 840, '_wp_attachment_metadata', 'a:5:{s:5:\"width\";i:1000;s:6:\"height\";i:288;s:4:\"file\";s:21:\"2015/01/1000hills.jpg\";s:5:\"sizes\";a:15:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:21:\"1000hills-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:20:\"1000hills-300x86.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:86;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:10:\"blog-large\";a:4:{s:4:\"file\";s:21:\"1000hills-669x272.jpg\";s:5:\"width\";i:669;s:6:\"height\";i:272;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"blog-medium\";a:4:{s:4:\"file\";s:21:\"1000hills-320x202.jpg\";s:5:\"width\";i:320;s:6:\"height\";i:202;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:8:\"tabs-img\";a:4:{s:4:\"file\";s:19:\"1000hills-52x50.jpg\";s:5:\"width\";i:52;s:6:\"height\";i:50;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"related-img\";a:4:{s:4:\"file\";s:21:\"1000hills-180x138.jpg\";s:5:\"width\";i:180;s:6:\"height\";i:138;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"portfolio-full\";a:4:{s:4:\"file\";s:21:\"1000hills-940x288.jpg\";s:5:\"width\";i:940;s:6:\"height\";i:288;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:13:\"portfolio-one\";a:4:{s:4:\"file\";s:21:\"1000hills-540x272.jpg\";s:5:\"width\";i:540;s:6:\"height\";i:272;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:13:\"portfolio-two\";a:4:{s:4:\"file\";s:21:\"1000hills-460x288.jpg\";s:5:\"width\";i:460;s:6:\"height\";i:288;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"portfolio-three\";a:4:{s:4:\"file\";s:21:\"1000hills-300x214.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:214;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"portfolio-four\";a:4:{s:4:\"file\";s:21:\"1000hills-220x161.jpg\";s:5:\"width\";i:220;s:6:\"height\";i:161;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"portfolio-five\";a:4:{s:4:\"file\";s:21:\"1000hills-177x142.jpg\";s:5:\"width\";i:177;s:6:\"height\";i:142;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:13:\"portfolio-six\";a:4:{s:4:\"file\";s:21:\"1000hills-147x118.jpg\";s:5:\"width\";i:147;s:6:\"height\";i:118;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"recent-posts\";a:4:{s:4:\"file\";s:21:\"1000hills-700x288.jpg\";s:5:\"width\";i:700;s:6:\"height\";i:288;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:22:\"recent-works-thumbnail\";a:4:{s:4:\"file\";s:19:\"1000hills-66x66.jpg\";s:5:\"width\";i:66;s:6:\"height\";i:66;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'),
(1736, 24, '_edit_last', '1'),
(1738, 841, '_wp_attached_file', '2015/08/Tha-Lodge.jpg'),
(1739, 841, '_wp_attachment_metadata', 'a:5:{s:5:\"width\";i:840;s:6:\"height\";i:270;s:4:\"file\";s:21:\"2015/08/Tha-Lodge.jpg\";s:5:\"sizes\";a:14:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:21:\"Tha-Lodge-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:20:\"Tha-Lodge-300x96.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:96;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:10:\"blog-large\";a:4:{s:4:\"file\";s:21:\"Tha-Lodge-669x270.jpg\";s:5:\"width\";i:669;s:6:\"height\";i:270;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"blog-medium\";a:4:{s:4:\"file\";s:21:\"Tha-Lodge-320x202.jpg\";s:5:\"width\";i:320;s:6:\"height\";i:202;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:8:\"tabs-img\";a:4:{s:4:\"file\";s:19:\"Tha-Lodge-52x50.jpg\";s:5:\"width\";i:52;s:6:\"height\";i:50;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"related-img\";a:4:{s:4:\"file\";s:21:\"Tha-Lodge-180x138.jpg\";s:5:\"width\";i:180;s:6:\"height\";i:138;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:13:\"portfolio-one\";a:4:{s:4:\"file\";s:21:\"Tha-Lodge-540x270.jpg\";s:5:\"width\";i:540;s:6:\"height\";i:270;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:13:\"portfolio-two\";a:4:{s:4:\"file\";s:21:\"Tha-Lodge-460x270.jpg\";s:5:\"width\";i:460;s:6:\"height\";i:270;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"portfolio-three\";a:4:{s:4:\"file\";s:21:\"Tha-Lodge-300x214.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:214;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"portfolio-four\";a:4:{s:4:\"file\";s:21:\"Tha-Lodge-220x161.jpg\";s:5:\"width\";i:220;s:6:\"height\";i:161;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"portfolio-five\";a:4:{s:4:\"file\";s:21:\"Tha-Lodge-177x142.jpg\";s:5:\"width\";i:177;s:6:\"height\";i:142;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:13:\"portfolio-six\";a:4:{s:4:\"file\";s:21:\"Tha-Lodge-147x118.jpg\";s:5:\"width\";i:147;s:6:\"height\";i:118;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"recent-posts\";a:4:{s:4:\"file\";s:21:\"Tha-Lodge-700x270.jpg\";s:5:\"width\";i:700;s:6:\"height\";i:270;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:22:\"recent-works-thumbnail\";a:4:{s:4:\"file\";s:19:\"Tha-Lodge-66x66.jpg\";s:5:\"width\";i:66;s:6:\"height\";i:66;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'),
(1741, 7, '_edit_last', '1'),
(1746, 842, 'FB_content', ''),
(1759, 843, 'FB_content', ''),
(1768, 844, '_wp_attached_file', '2015/08/WeekendRoads.jpg'),
(1769, 844, '_wp_attachment_metadata', 'a:5:{s:5:\"width\";i:840;s:6:\"height\";i:270;s:4:\"file\";s:24:\"2015/08/WeekendRoads.jpg\";s:5:\"sizes\";a:14:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:24:\"WeekendRoads-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:23:\"WeekendRoads-300x96.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:96;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:10:\"blog-large\";a:4:{s:4:\"file\";s:24:\"WeekendRoads-669x270.jpg\";s:5:\"width\";i:669;s:6:\"height\";i:270;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"blog-medium\";a:4:{s:4:\"file\";s:24:\"WeekendRoads-320x202.jpg\";s:5:\"width\";i:320;s:6:\"height\";i:202;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:8:\"tabs-img\";a:4:{s:4:\"file\";s:22:\"WeekendRoads-52x50.jpg\";s:5:\"width\";i:52;s:6:\"height\";i:50;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"related-img\";a:4:{s:4:\"file\";s:24:\"WeekendRoads-180x138.jpg\";s:5:\"width\";i:180;s:6:\"height\";i:138;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:13:\"portfolio-one\";a:4:{s:4:\"file\";s:24:\"WeekendRoads-540x270.jpg\";s:5:\"width\";i:540;s:6:\"height\";i:270;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:13:\"portfolio-two\";a:4:{s:4:\"file\";s:24:\"WeekendRoads-460x270.jpg\";s:5:\"width\";i:460;s:6:\"height\";i:270;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"portfolio-three\";a:4:{s:4:\"file\";s:24:\"WeekendRoads-300x214.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:214;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"portfolio-four\";a:4:{s:4:\"file\";s:24:\"WeekendRoads-220x161.jpg\";s:5:\"width\";i:220;s:6:\"height\";i:161;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"portfolio-five\";a:4:{s:4:\"file\";s:24:\"WeekendRoads-177x142.jpg\";s:5:\"width\";i:177;s:6:\"height\";i:142;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:13:\"portfolio-six\";a:4:{s:4:\"file\";s:24:\"WeekendRoads-147x118.jpg\";s:5:\"width\";i:147;s:6:\"height\";i:118;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"recent-posts\";a:4:{s:4:\"file\";s:24:\"WeekendRoads-700x270.jpg\";s:5:\"width\";i:700;s:6:\"height\";i:270;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:22:\"recent-works-thumbnail\";a:4:{s:4:\"file\";s:22:\"WeekendRoads-66x66.jpg\";s:5:\"width\";i:66;s:6:\"height\";i:66;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'),
(1774, 845, 'FB_content', ''),
(1783, 846, '_wp_attached_file', '2015/08/Dam.jpg');
INSERT INTO `wp_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(1784, 846, '_wp_attachment_metadata', 'a:5:{s:5:\"width\";i:840;s:6:\"height\";i:270;s:4:\"file\";s:15:\"2015/08/Dam.jpg\";s:5:\"sizes\";a:14:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:15:\"Dam-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:14:\"Dam-300x96.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:96;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:10:\"blog-large\";a:4:{s:4:\"file\";s:15:\"Dam-669x270.jpg\";s:5:\"width\";i:669;s:6:\"height\";i:270;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"blog-medium\";a:4:{s:4:\"file\";s:15:\"Dam-320x202.jpg\";s:5:\"width\";i:320;s:6:\"height\";i:202;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:8:\"tabs-img\";a:4:{s:4:\"file\";s:13:\"Dam-52x50.jpg\";s:5:\"width\";i:52;s:6:\"height\";i:50;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"related-img\";a:4:{s:4:\"file\";s:15:\"Dam-180x138.jpg\";s:5:\"width\";i:180;s:6:\"height\";i:138;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:13:\"portfolio-one\";a:4:{s:4:\"file\";s:15:\"Dam-540x270.jpg\";s:5:\"width\";i:540;s:6:\"height\";i:270;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:13:\"portfolio-two\";a:4:{s:4:\"file\";s:15:\"Dam-460x270.jpg\";s:5:\"width\";i:460;s:6:\"height\";i:270;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"portfolio-three\";a:4:{s:4:\"file\";s:15:\"Dam-300x214.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:214;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"portfolio-four\";a:4:{s:4:\"file\";s:15:\"Dam-220x161.jpg\";s:5:\"width\";i:220;s:6:\"height\";i:161;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"portfolio-five\";a:4:{s:4:\"file\";s:15:\"Dam-177x142.jpg\";s:5:\"width\";i:177;s:6:\"height\";i:142;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:13:\"portfolio-six\";a:4:{s:4:\"file\";s:15:\"Dam-147x118.jpg\";s:5:\"width\";i:147;s:6:\"height\";i:118;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"recent-posts\";a:4:{s:4:\"file\";s:15:\"Dam-700x270.jpg\";s:5:\"width\";i:700;s:6:\"height\";i:270;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:22:\"recent-works-thumbnail\";a:4:{s:4:\"file\";s:13:\"Dam-66x66.jpg\";s:5:\"width\";i:66;s:6:\"height\";i:66;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'),
(1789, 847, 'FB_content', ''),
(1802, 848, 'FB_content', ''),
(1816, 849, 'FB_content', ''),
(1825, 851, '_edit_last', '1'),
(1826, 851, '_edit_lock', '1477257171:1'),
(1827, 852, 'roomcount', '4'),
(1828, 852, 'reservations_groundprice', '120'),
(1829, 852, 'reservations_child_price', '10'),
(1830, 853, 'roomcount', '7'),
(1831, 853, 'reservations_groundprice', '250.57'),
(1832, 853, 'reservations_child_price', '20'),
(1833, 854, 'roomcount', 'a:1:{i:0;s:1:\"1\";}'),
(1834, 854, 'reservations_groundprice', '580'),
(1835, 854, 'easy-resource-interval', '86400'),
(1836, 854, 'easy-resource-roomnames', 'a:1:{i:0;s:1:\"1\";}'),
(1837, 854, 'easy_res_filter', 'a:0:{}'),
(1838, 855, '_edit_last', '1'),
(1839, 855, '_edit_lock', '1477257027:1'),
(1840, 855, '_wp_page_template', '100-width.php'),
(1845, 855, 'slide_template', 'default'),
(1846, 855, 'fusion_builder_status', 'active'),
(1847, 856, 'FB_content', ''),
(1848, 855, 'pyre_slider_position', 'default'),
(1849, 855, 'pyre_slider_type', 'no'),
(1850, 855, 'pyre_slider', '0'),
(1851, 855, 'pyre_wooslider', '0'),
(1852, 855, 'pyre_revslider', '0'),
(1853, 855, 'pyre_elasticslider', '0'),
(1854, 855, 'pyre_fallback', ''),
(1855, 855, 'pyre_avada_rev_styles', 'default'),
(1856, 855, 'pyre_main_top_padding', '0px'),
(1857, 855, 'pyre_main_bottom_padding', '0px'),
(1858, 855, 'pyre_hundredp_padding', ''),
(1859, 855, 'pyre_show_first_featured_image', 'no'),
(1860, 855, 'pyre_display_header', 'yes'),
(1861, 855, 'pyre_header_100_width', 'default'),
(1862, 855, 'pyre_header_bg', ''),
(1863, 855, 'pyre_header_bg_color', ''),
(1864, 855, 'pyre_header_bg_opacity', ''),
(1865, 855, 'pyre_header_bg_full', 'no'),
(1866, 855, 'pyre_header_bg_repeat', 'repeat'),
(1867, 855, 'pyre_displayed_menu', 'default'),
(1868, 855, 'pyre_display_footer', 'yes'),
(1869, 855, 'pyre_display_copyright', 'yes'),
(1870, 855, 'pyre_footer_100_width', 'yes'),
(1871, 855, 'pyre_sidebar_position', 'default'),
(1872, 855, 'pyre_sidebar_bg_color', ''),
(1873, 855, 'pyre_page_bg_layout', 'wide'),
(1874, 855, 'pyre_page_bg', ''),
(1875, 855, 'pyre_page_bg_color', ''),
(1876, 855, 'pyre_page_bg_full', 'yes'),
(1877, 855, 'pyre_page_bg_repeat', 'no-repeat'),
(1878, 855, 'pyre_wide_page_bg', ''),
(1879, 855, 'pyre_wide_page_bg_color', ''),
(1880, 855, 'pyre_wide_page_bg_full', 'yes'),
(1881, 855, 'pyre_wide_page_bg_repeat', 'repeat'),
(1882, 855, 'pyre_portfolio_width_100', 'no'),
(1883, 855, 'pyre_portfolio_content_length', 'default'),
(1884, 855, 'pyre_portfolio_excerpt', ''),
(1885, 855, 'pyre_portfolio_filters', 'yes'),
(1886, 855, 'pyre_portfolio_text_layout', 'default'),
(1887, 855, 'pyre_portfolio_featured_image_size', 'default'),
(1888, 855, 'pyre_portfolio_column_spacing', ''),
(1889, 855, 'pyre_page_title', 'no'),
(1890, 855, 'pyre_page_title_text', 'no'),
(1891, 855, 'pyre_page_title_text_alignment', 'default'),
(1892, 855, 'pyre_page_title_100_width', 'default'),
(1893, 855, 'pyre_page_title_custom_text', ''),
(1894, 855, 'pyre_page_title_text_size', ''),
(1895, 855, 'pyre_page_title_custom_subheader', ''),
(1896, 855, 'pyre_page_title_custom_subheader_text_size', ''),
(1897, 855, 'pyre_page_title_font_color', ''),
(1898, 855, 'pyre_page_title_height', ''),
(1899, 855, 'pyre_page_title_mobile_height', ''),
(1900, 855, 'pyre_page_title_bar_bg', ''),
(1901, 855, 'pyre_page_title_bar_bg_retina', ''),
(1902, 855, 'pyre_page_title_bar_bg_color', ''),
(1903, 855, 'pyre_page_title_bar_borders_color', ''),
(1904, 855, 'pyre_page_title_bar_bg_full', 'default'),
(1905, 855, 'pyre_page_title_bg_parallax', 'default'),
(1906, 855, 'pyre_page_title_breadcrumbs_search_bar', 'none'),
(1919, 857, 'FB_content', ''),
(1933, 859, 'FB_content', ''),
(1946, 860, 'FB_content', ''),
(1959, 861, 'FB_content', ''),
(1968, 364, '_edit_lock', '1441373216:1'),
(1969, 862, '_wp_attached_file', '2015/09/DSC01480.jpg'),
(1970, 862, '_wp_attachment_metadata', 'a:5:{s:5:\"width\";i:800;s:6:\"height\";i:532;s:4:\"file\";s:20:\"2015/09/DSC01480.jpg\";s:5:\"sizes\";a:15:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:20:\"DSC01480-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:20:\"DSC01480-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:10:\"blog-large\";a:4:{s:4:\"file\";s:20:\"DSC01480-669x272.jpg\";s:5:\"width\";i:669;s:6:\"height\";i:272;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"blog-medium\";a:4:{s:4:\"file\";s:20:\"DSC01480-320x202.jpg\";s:5:\"width\";i:320;s:6:\"height\";i:202;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:8:\"tabs-img\";a:4:{s:4:\"file\";s:18:\"DSC01480-52x50.jpg\";s:5:\"width\";i:52;s:6:\"height\";i:50;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"related-img\";a:4:{s:4:\"file\";s:20:\"DSC01480-180x138.jpg\";s:5:\"width\";i:180;s:6:\"height\";i:138;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"portfolio-full\";a:4:{s:4:\"file\";s:20:\"DSC01480-800x400.jpg\";s:5:\"width\";i:800;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:13:\"portfolio-one\";a:4:{s:4:\"file\";s:20:\"DSC01480-540x272.jpg\";s:5:\"width\";i:540;s:6:\"height\";i:272;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:13:\"portfolio-two\";a:4:{s:4:\"file\";s:20:\"DSC01480-460x295.jpg\";s:5:\"width\";i:460;s:6:\"height\";i:295;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"portfolio-three\";a:4:{s:4:\"file\";s:20:\"DSC01480-300x214.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:214;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"portfolio-four\";a:4:{s:4:\"file\";s:20:\"DSC01480-220x161.jpg\";s:5:\"width\";i:220;s:6:\"height\";i:161;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"portfolio-five\";a:4:{s:4:\"file\";s:20:\"DSC01480-177x142.jpg\";s:5:\"width\";i:177;s:6:\"height\";i:142;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:13:\"portfolio-six\";a:4:{s:4:\"file\";s:20:\"DSC01480-147x118.jpg\";s:5:\"width\";i:147;s:6:\"height\";i:118;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"recent-posts\";a:4:{s:4:\"file\";s:20:\"DSC01480-700x441.jpg\";s:5:\"width\";i:700;s:6:\"height\";i:441;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:22:\"recent-works-thumbnail\";a:4:{s:4:\"file\";s:18:\"DSC01480-66x66.jpg\";s:5:\"width\";i:66;s:6:\"height\";i:66;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;s:14:\"resized_images\";a:2:{i:0;s:8:\"1000x766\";i:1;s:7:\"500x383\";}}}'),
(1971, 863, '_wp_attached_file', '2015/09/DSC01483.jpg'),
(1972, 863, '_wp_attachment_metadata', 'a:5:{s:5:\"width\";i:800;s:6:\"height\";i:532;s:4:\"file\";s:20:\"2015/09/DSC01483.jpg\";s:5:\"sizes\";a:15:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:20:\"DSC01483-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:20:\"DSC01483-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:10:\"blog-large\";a:4:{s:4:\"file\";s:20:\"DSC01483-669x272.jpg\";s:5:\"width\";i:669;s:6:\"height\";i:272;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"blog-medium\";a:4:{s:4:\"file\";s:20:\"DSC01483-320x202.jpg\";s:5:\"width\";i:320;s:6:\"height\";i:202;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:8:\"tabs-img\";a:4:{s:4:\"file\";s:18:\"DSC01483-52x50.jpg\";s:5:\"width\";i:52;s:6:\"height\";i:50;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"related-img\";a:4:{s:4:\"file\";s:20:\"DSC01483-180x138.jpg\";s:5:\"width\";i:180;s:6:\"height\";i:138;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"portfolio-full\";a:4:{s:4:\"file\";s:20:\"DSC01483-800x400.jpg\";s:5:\"width\";i:800;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:13:\"portfolio-one\";a:4:{s:4:\"file\";s:20:\"DSC01483-540x272.jpg\";s:5:\"width\";i:540;s:6:\"height\";i:272;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:13:\"portfolio-two\";a:4:{s:4:\"file\";s:20:\"DSC01483-460x295.jpg\";s:5:\"width\";i:460;s:6:\"height\";i:295;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"portfolio-three\";a:4:{s:4:\"file\";s:20:\"DSC01483-300x214.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:214;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"portfolio-four\";a:4:{s:4:\"file\";s:20:\"DSC01483-220x161.jpg\";s:5:\"width\";i:220;s:6:\"height\";i:161;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"portfolio-five\";a:4:{s:4:\"file\";s:20:\"DSC01483-177x142.jpg\";s:5:\"width\";i:177;s:6:\"height\";i:142;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:13:\"portfolio-six\";a:4:{s:4:\"file\";s:20:\"DSC01483-147x118.jpg\";s:5:\"width\";i:147;s:6:\"height\";i:118;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"recent-posts\";a:4:{s:4:\"file\";s:20:\"DSC01483-700x441.jpg\";s:5:\"width\";i:700;s:6:\"height\";i:441;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:22:\"recent-works-thumbnail\";a:4:{s:4:\"file\";s:18:\"DSC01483-66x66.jpg\";s:5:\"width\";i:66;s:6:\"height\";i:66;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;s:14:\"resized_images\";a:2:{i:0;s:8:\"1000x766\";i:1;s:7:\"500x383\";}}}'),
(1973, 864, '_wp_attached_file', '2015/09/DSC01485.jpg'),
(1974, 864, '_wp_attachment_metadata', 'a:5:{s:5:\"width\";i:800;s:6:\"height\";i:532;s:4:\"file\";s:20:\"2015/09/DSC01485.jpg\";s:5:\"sizes\";a:15:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:20:\"DSC01485-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:20:\"DSC01485-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:10:\"blog-large\";a:4:{s:4:\"file\";s:20:\"DSC01485-669x272.jpg\";s:5:\"width\";i:669;s:6:\"height\";i:272;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"blog-medium\";a:4:{s:4:\"file\";s:20:\"DSC01485-320x202.jpg\";s:5:\"width\";i:320;s:6:\"height\";i:202;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:8:\"tabs-img\";a:4:{s:4:\"file\";s:18:\"DSC01485-52x50.jpg\";s:5:\"width\";i:52;s:6:\"height\";i:50;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"related-img\";a:4:{s:4:\"file\";s:20:\"DSC01485-180x138.jpg\";s:5:\"width\";i:180;s:6:\"height\";i:138;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"portfolio-full\";a:4:{s:4:\"file\";s:20:\"DSC01485-800x400.jpg\";s:5:\"width\";i:800;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:13:\"portfolio-one\";a:4:{s:4:\"file\";s:20:\"DSC01485-540x272.jpg\";s:5:\"width\";i:540;s:6:\"height\";i:272;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:13:\"portfolio-two\";a:4:{s:4:\"file\";s:20:\"DSC01485-460x295.jpg\";s:5:\"width\";i:460;s:6:\"height\";i:295;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"portfolio-three\";a:4:{s:4:\"file\";s:20:\"DSC01485-300x214.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:214;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"portfolio-four\";a:4:{s:4:\"file\";s:20:\"DSC01485-220x161.jpg\";s:5:\"width\";i:220;s:6:\"height\";i:161;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"portfolio-five\";a:4:{s:4:\"file\";s:20:\"DSC01485-177x142.jpg\";s:5:\"width\";i:177;s:6:\"height\";i:142;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:13:\"portfolio-six\";a:4:{s:4:\"file\";s:20:\"DSC01485-147x118.jpg\";s:5:\"width\";i:147;s:6:\"height\";i:118;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"recent-posts\";a:4:{s:4:\"file\";s:20:\"DSC01485-700x441.jpg\";s:5:\"width\";i:700;s:6:\"height\";i:441;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:22:\"recent-works-thumbnail\";a:4:{s:4:\"file\";s:18:\"DSC01485-66x66.jpg\";s:5:\"width\";i:66;s:6:\"height\";i:66;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;s:14:\"resized_images\";a:2:{i:0;s:8:\"1000x766\";i:1;s:7:\"500x383\";}}}'),
(1975, 865, '_wp_attached_file', '2015/09/DSC01487.jpg'),
(1976, 865, '_wp_attachment_metadata', 'a:5:{s:5:\"width\";i:800;s:6:\"height\";i:532;s:4:\"file\";s:20:\"2015/09/DSC01487.jpg\";s:5:\"sizes\";a:15:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:20:\"DSC01487-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:20:\"DSC01487-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:10:\"blog-large\";a:4:{s:4:\"file\";s:20:\"DSC01487-669x272.jpg\";s:5:\"width\";i:669;s:6:\"height\";i:272;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"blog-medium\";a:4:{s:4:\"file\";s:20:\"DSC01487-320x202.jpg\";s:5:\"width\";i:320;s:6:\"height\";i:202;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:8:\"tabs-img\";a:4:{s:4:\"file\";s:18:\"DSC01487-52x50.jpg\";s:5:\"width\";i:52;s:6:\"height\";i:50;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"related-img\";a:4:{s:4:\"file\";s:20:\"DSC01487-180x138.jpg\";s:5:\"width\";i:180;s:6:\"height\";i:138;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"portfolio-full\";a:4:{s:4:\"file\";s:20:\"DSC01487-800x400.jpg\";s:5:\"width\";i:800;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:13:\"portfolio-one\";a:4:{s:4:\"file\";s:20:\"DSC01487-540x272.jpg\";s:5:\"width\";i:540;s:6:\"height\";i:272;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:13:\"portfolio-two\";a:4:{s:4:\"file\";s:20:\"DSC01487-460x295.jpg\";s:5:\"width\";i:460;s:6:\"height\";i:295;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"portfolio-three\";a:4:{s:4:\"file\";s:20:\"DSC01487-300x214.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:214;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"portfolio-four\";a:4:{s:4:\"file\";s:20:\"DSC01487-220x161.jpg\";s:5:\"width\";i:220;s:6:\"height\";i:161;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"portfolio-five\";a:4:{s:4:\"file\";s:20:\"DSC01487-177x142.jpg\";s:5:\"width\";i:177;s:6:\"height\";i:142;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:13:\"portfolio-six\";a:4:{s:4:\"file\";s:20:\"DSC01487-147x118.jpg\";s:5:\"width\";i:147;s:6:\"height\";i:118;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"recent-posts\";a:4:{s:4:\"file\";s:20:\"DSC01487-700x441.jpg\";s:5:\"width\";i:700;s:6:\"height\";i:441;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:22:\"recent-works-thumbnail\";a:4:{s:4:\"file\";s:18:\"DSC01487-66x66.jpg\";s:5:\"width\";i:66;s:6:\"height\";i:66;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;s:14:\"resized_images\";a:2:{i:0;s:8:\"1000x766\";i:1;s:7:\"500x383\";}}}'),
(1977, 866, '_wp_attached_file', '2015/09/DSC01495.jpg'),
(1978, 866, '_wp_attachment_metadata', 'a:5:{s:5:\"width\";i:800;s:6:\"height\";i:532;s:4:\"file\";s:20:\"2015/09/DSC01495.jpg\";s:5:\"sizes\";a:15:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:20:\"DSC01495-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:20:\"DSC01495-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:10:\"blog-large\";a:4:{s:4:\"file\";s:20:\"DSC01495-669x272.jpg\";s:5:\"width\";i:669;s:6:\"height\";i:272;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"blog-medium\";a:4:{s:4:\"file\";s:20:\"DSC01495-320x202.jpg\";s:5:\"width\";i:320;s:6:\"height\";i:202;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:8:\"tabs-img\";a:4:{s:4:\"file\";s:18:\"DSC01495-52x50.jpg\";s:5:\"width\";i:52;s:6:\"height\";i:50;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"related-img\";a:4:{s:4:\"file\";s:20:\"DSC01495-180x138.jpg\";s:5:\"width\";i:180;s:6:\"height\";i:138;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"portfolio-full\";a:4:{s:4:\"file\";s:20:\"DSC01495-800x400.jpg\";s:5:\"width\";i:800;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:13:\"portfolio-one\";a:4:{s:4:\"file\";s:20:\"DSC01495-540x272.jpg\";s:5:\"width\";i:540;s:6:\"height\";i:272;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:13:\"portfolio-two\";a:4:{s:4:\"file\";s:20:\"DSC01495-460x295.jpg\";s:5:\"width\";i:460;s:6:\"height\";i:295;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"portfolio-three\";a:4:{s:4:\"file\";s:20:\"DSC01495-300x214.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:214;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"portfolio-four\";a:4:{s:4:\"file\";s:20:\"DSC01495-220x161.jpg\";s:5:\"width\";i:220;s:6:\"height\";i:161;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"portfolio-five\";a:4:{s:4:\"file\";s:20:\"DSC01495-177x142.jpg\";s:5:\"width\";i:177;s:6:\"height\";i:142;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:13:\"portfolio-six\";a:4:{s:4:\"file\";s:20:\"DSC01495-147x118.jpg\";s:5:\"width\";i:147;s:6:\"height\";i:118;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"recent-posts\";a:4:{s:4:\"file\";s:20:\"DSC01495-700x441.jpg\";s:5:\"width\";i:700;s:6:\"height\";i:441;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:22:\"recent-works-thumbnail\";a:4:{s:4:\"file\";s:18:\"DSC01495-66x66.jpg\";s:5:\"width\";i:66;s:6:\"height\";i:66;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;s:14:\"resized_images\";a:2:{i:0;s:8:\"1000x766\";i:1;s:7:\"500x383\";}}}'),
(1979, 867, '_wp_attached_file', '2015/09/DSC01478.jpg'),
(1980, 867, '_wp_attachment_metadata', 'a:5:{s:5:\"width\";i:800;s:6:\"height\";i:532;s:4:\"file\";s:20:\"2015/09/DSC01478.jpg\";s:5:\"sizes\";a:15:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:20:\"DSC01478-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:20:\"DSC01478-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:10:\"blog-large\";a:4:{s:4:\"file\";s:20:\"DSC01478-669x272.jpg\";s:5:\"width\";i:669;s:6:\"height\";i:272;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"blog-medium\";a:4:{s:4:\"file\";s:20:\"DSC01478-320x202.jpg\";s:5:\"width\";i:320;s:6:\"height\";i:202;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:8:\"tabs-img\";a:4:{s:4:\"file\";s:18:\"DSC01478-52x50.jpg\";s:5:\"width\";i:52;s:6:\"height\";i:50;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"related-img\";a:4:{s:4:\"file\";s:20:\"DSC01478-180x138.jpg\";s:5:\"width\";i:180;s:6:\"height\";i:138;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"portfolio-full\";a:4:{s:4:\"file\";s:20:\"DSC01478-800x400.jpg\";s:5:\"width\";i:800;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:13:\"portfolio-one\";a:4:{s:4:\"file\";s:20:\"DSC01478-540x272.jpg\";s:5:\"width\";i:540;s:6:\"height\";i:272;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:13:\"portfolio-two\";a:4:{s:4:\"file\";s:20:\"DSC01478-460x295.jpg\";s:5:\"width\";i:460;s:6:\"height\";i:295;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"portfolio-three\";a:4:{s:4:\"file\";s:20:\"DSC01478-300x214.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:214;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"portfolio-four\";a:4:{s:4:\"file\";s:20:\"DSC01478-220x161.jpg\";s:5:\"width\";i:220;s:6:\"height\";i:161;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"portfolio-five\";a:4:{s:4:\"file\";s:20:\"DSC01478-177x142.jpg\";s:5:\"width\";i:177;s:6:\"height\";i:142;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:13:\"portfolio-six\";a:4:{s:4:\"file\";s:20:\"DSC01478-147x118.jpg\";s:5:\"width\";i:147;s:6:\"height\";i:118;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"recent-posts\";a:4:{s:4:\"file\";s:20:\"DSC01478-700x441.jpg\";s:5:\"width\";i:700;s:6:\"height\";i:441;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:22:\"recent-works-thumbnail\";a:4:{s:4:\"file\";s:18:\"DSC01478-66x66.jpg\";s:5:\"width\";i:66;s:6:\"height\";i:66;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;s:14:\"resized_images\";a:2:{i:0;s:8:\"1000x766\";i:1;s:7:\"500x383\";}}}'),
(1986, 364, '_thumbnail_id', '862'),
(1988, 869, 'FB_content', ''),
(1989, 364, '_edit_last', '1'),
(1994, 870, 'FB_content', ''),
(1999, 364, '_wp_old_slug', 'australia'),
(2008, 871, 'FB_content', ''),
(2017, 869, 'FB_content', ''),
(2022, 872, 'FB_content', ''),
(2027, 364, '_wp_old_slug', 'inside'),
(2028, 364, 'sbg_selected_sidebar', 'a:1:{i:0;s:1:\"0\";}'),
(2029, 364, 'sbg_selected_sidebar_replacement', 'a:1:{i:0;s:0:\"\";}'),
(2030, 364, 'sbg_selected_sidebar_2', 'a:1:{i:0;s:1:\"0\";}'),
(2031, 364, 'sbg_selected_sidebar_2_replacement', 'a:1:{i:0;s:0:\"\";}'),
(2032, 361, '_edit_lock', '1441372613:1'),
(2033, 361, '_thumbnail_id', '867'),
(2034, 361, '_edit_last', '1'),
(2039, 873, 'FB_content', ''),
(2044, 361, '_wp_old_slug', 'argentina'),
(2045, 361, 'sbg_selected_sidebar', 'a:1:{i:0;s:1:\"0\";}'),
(2046, 361, 'sbg_selected_sidebar_replacement', 'a:1:{i:0;s:0:\"\";}'),
(2047, 361, 'sbg_selected_sidebar_2', 'a:1:{i:0;s:1:\"0\";}'),
(2048, 361, 'sbg_selected_sidebar_2_replacement', 'a:1:{i:0;s:0:\"\";}'),
(2049, 358, '_edit_lock', '1441373237:1'),
(2050, 358, '_thumbnail_id', '863'),
(2051, 874, 'FB_content', ''),
(2052, 358, '_edit_last', '1'),
(2057, 875, 'FB_content', ''),
(2062, 358, '_wp_old_slug', 'southern-italy'),
(2063, 358, 'sbg_selected_sidebar', 'a:1:{i:0;s:1:\"0\";}'),
(2064, 358, 'sbg_selected_sidebar_replacement', 'a:1:{i:0;s:0:\"\";}'),
(2065, 358, 'sbg_selected_sidebar_2', 'a:1:{i:0;s:1:\"0\";}'),
(2066, 358, 'sbg_selected_sidebar_2_replacement', 'a:1:{i:0;s:0:\"\";}'),
(2067, 61, '_edit_lock', '1441360911:1'),
(2069, 59, '_edit_lock', '1441361050:1'),
(2070, 876, 'FB_content', ''),
(2071, 877, 'FB_content', ''),
(2072, 61, '_thumbnail_id', '865'),
(2074, 61, '_edit_last', '1'),
(2079, 878, 'FB_content', ''),
(2084, 61, '_wp_old_slug', 'canada'),
(2085, 61, 'sbg_selected_sidebar', 'a:1:{i:0;s:1:\"0\";}'),
(2086, 61, 'sbg_selected_sidebar_replacement', 'a:1:{i:0;s:0:\"\";}'),
(2087, 61, 'sbg_selected_sidebar_2', 'a:1:{i:0;s:1:\"0\";}'),
(2088, 61, 'sbg_selected_sidebar_2_replacement', 'a:1:{i:0;s:0:\"\";}'),
(2089, 59, '_thumbnail_id', '866'),
(2090, 876, 'FB_content', ''),
(2091, 59, '_edit_last', '1'),
(2096, 879, 'FB_content', ''),
(2101, 59, '_wp_old_slug', 'south-africa'),
(2102, 59, 'sbg_selected_sidebar', 'a:1:{i:0;s:1:\"0\";}'),
(2103, 59, 'sbg_selected_sidebar_replacement', 'a:1:{i:0;s:0:\"\";}'),
(2104, 59, 'sbg_selected_sidebar_2', 'a:1:{i:0;s:1:\"0\";}'),
(2105, 59, 'sbg_selected_sidebar_2_replacement', 'a:1:{i:0;s:0:\"\";}'),
(2110, 880, 'FB_content', ''),
(2119, 57, '_edit_lock', '1441361271:1'),
(2120, 57, '_thumbnail_id', '864'),
(2121, 881, 'FB_content', ''),
(2122, 57, '_edit_last', '1'),
(2127, 882, 'FB_content', ''),
(2132, 57, '_wp_old_slug', 'usa'),
(2133, 57, 'sbg_selected_sidebar', 'a:1:{i:0;s:1:\"0\";}'),
(2134, 57, 'sbg_selected_sidebar_replacement', 'a:1:{i:0;s:0:\"\";}'),
(2135, 57, 'sbg_selected_sidebar_2', 'a:1:{i:0;s:1:\"0\";}'),
(2136, 57, 'sbg_selected_sidebar_2_replacement', 'a:1:{i:0;s:0:\"\";}'),
(2137, 55, '_edit_lock', '1441361721:1'),
(2138, 883, '_wp_attached_file', '2015/01/DSC01505.jpg'),
(2139, 883, '_wp_attachment_metadata', 'a:5:{s:5:\"width\";i:800;s:6:\"height\";i:532;s:4:\"file\";s:20:\"2015/01/DSC01505.jpg\";s:5:\"sizes\";a:15:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:20:\"DSC01505-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:20:\"DSC01505-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:10:\"blog-large\";a:4:{s:4:\"file\";s:20:\"DSC01505-669x272.jpg\";s:5:\"width\";i:669;s:6:\"height\";i:272;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"blog-medium\";a:4:{s:4:\"file\";s:20:\"DSC01505-320x202.jpg\";s:5:\"width\";i:320;s:6:\"height\";i:202;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:8:\"tabs-img\";a:4:{s:4:\"file\";s:18:\"DSC01505-52x50.jpg\";s:5:\"width\";i:52;s:6:\"height\";i:50;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"related-img\";a:4:{s:4:\"file\";s:20:\"DSC01505-180x138.jpg\";s:5:\"width\";i:180;s:6:\"height\";i:138;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"portfolio-full\";a:4:{s:4:\"file\";s:20:\"DSC01505-800x400.jpg\";s:5:\"width\";i:800;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:13:\"portfolio-one\";a:4:{s:4:\"file\";s:20:\"DSC01505-540x272.jpg\";s:5:\"width\";i:540;s:6:\"height\";i:272;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:13:\"portfolio-two\";a:4:{s:4:\"file\";s:20:\"DSC01505-460x295.jpg\";s:5:\"width\";i:460;s:6:\"height\";i:295;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"portfolio-three\";a:4:{s:4:\"file\";s:20:\"DSC01505-300x214.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:214;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"portfolio-four\";a:4:{s:4:\"file\";s:20:\"DSC01505-220x161.jpg\";s:5:\"width\";i:220;s:6:\"height\";i:161;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"portfolio-five\";a:4:{s:4:\"file\";s:20:\"DSC01505-177x142.jpg\";s:5:\"width\";i:177;s:6:\"height\";i:142;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:13:\"portfolio-six\";a:4:{s:4:\"file\";s:20:\"DSC01505-147x118.jpg\";s:5:\"width\";i:147;s:6:\"height\";i:118;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"recent-posts\";a:4:{s:4:\"file\";s:20:\"DSC01505-700x441.jpg\";s:5:\"width\";i:700;s:6:\"height\";i:441;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:22:\"recent-works-thumbnail\";a:4:{s:4:\"file\";s:18:\"DSC01505-66x66.jpg\";s:5:\"width\";i:66;s:6:\"height\";i:66;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'),
(2140, 884, '_wp_attached_file', '2015/01/DSC01497.jpg'),
(2141, 884, '_wp_attachment_metadata', 'a:5:{s:5:\"width\";i:800;s:6:\"height\";i:532;s:4:\"file\";s:20:\"2015/01/DSC01497.jpg\";s:5:\"sizes\";a:15:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:20:\"DSC01497-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:20:\"DSC01497-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:10:\"blog-large\";a:4:{s:4:\"file\";s:20:\"DSC01497-669x272.jpg\";s:5:\"width\";i:669;s:6:\"height\";i:272;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"blog-medium\";a:4:{s:4:\"file\";s:20:\"DSC01497-320x202.jpg\";s:5:\"width\";i:320;s:6:\"height\";i:202;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:8:\"tabs-img\";a:4:{s:4:\"file\";s:18:\"DSC01497-52x50.jpg\";s:5:\"width\";i:52;s:6:\"height\";i:50;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"related-img\";a:4:{s:4:\"file\";s:20:\"DSC01497-180x138.jpg\";s:5:\"width\";i:180;s:6:\"height\";i:138;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"portfolio-full\";a:4:{s:4:\"file\";s:20:\"DSC01497-800x400.jpg\";s:5:\"width\";i:800;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:13:\"portfolio-one\";a:4:{s:4:\"file\";s:20:\"DSC01497-540x272.jpg\";s:5:\"width\";i:540;s:6:\"height\";i:272;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:13:\"portfolio-two\";a:4:{s:4:\"file\";s:20:\"DSC01497-460x295.jpg\";s:5:\"width\";i:460;s:6:\"height\";i:295;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"portfolio-three\";a:4:{s:4:\"file\";s:20:\"DSC01497-300x214.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:214;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"portfolio-four\";a:4:{s:4:\"file\";s:20:\"DSC01497-220x161.jpg\";s:5:\"width\";i:220;s:6:\"height\";i:161;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"portfolio-five\";a:4:{s:4:\"file\";s:20:\"DSC01497-177x142.jpg\";s:5:\"width\";i:177;s:6:\"height\";i:142;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:13:\"portfolio-six\";a:4:{s:4:\"file\";s:20:\"DSC01497-147x118.jpg\";s:5:\"width\";i:147;s:6:\"height\";i:118;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"recent-posts\";a:4:{s:4:\"file\";s:20:\"DSC01497-700x441.jpg\";s:5:\"width\";i:700;s:6:\"height\";i:441;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:22:\"recent-works-thumbnail\";a:4:{s:4:\"file\";s:18:\"DSC01497-66x66.jpg\";s:5:\"width\";i:66;s:6:\"height\";i:66;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'),
(2142, 885, '_wp_attached_file', '2015/01/DSC01499.jpg'),
(2143, 885, '_wp_attachment_metadata', 'a:5:{s:5:\"width\";i:800;s:6:\"height\";i:532;s:4:\"file\";s:20:\"2015/01/DSC01499.jpg\";s:5:\"sizes\";a:15:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:20:\"DSC01499-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:20:\"DSC01499-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:10:\"blog-large\";a:4:{s:4:\"file\";s:20:\"DSC01499-669x272.jpg\";s:5:\"width\";i:669;s:6:\"height\";i:272;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"blog-medium\";a:4:{s:4:\"file\";s:20:\"DSC01499-320x202.jpg\";s:5:\"width\";i:320;s:6:\"height\";i:202;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:8:\"tabs-img\";a:4:{s:4:\"file\";s:18:\"DSC01499-52x50.jpg\";s:5:\"width\";i:52;s:6:\"height\";i:50;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"related-img\";a:4:{s:4:\"file\";s:20:\"DSC01499-180x138.jpg\";s:5:\"width\";i:180;s:6:\"height\";i:138;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"portfolio-full\";a:4:{s:4:\"file\";s:20:\"DSC01499-800x400.jpg\";s:5:\"width\";i:800;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:13:\"portfolio-one\";a:4:{s:4:\"file\";s:20:\"DSC01499-540x272.jpg\";s:5:\"width\";i:540;s:6:\"height\";i:272;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:13:\"portfolio-two\";a:4:{s:4:\"file\";s:20:\"DSC01499-460x295.jpg\";s:5:\"width\";i:460;s:6:\"height\";i:295;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"portfolio-three\";a:4:{s:4:\"file\";s:20:\"DSC01499-300x214.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:214;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"portfolio-four\";a:4:{s:4:\"file\";s:20:\"DSC01499-220x161.jpg\";s:5:\"width\";i:220;s:6:\"height\";i:161;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"portfolio-five\";a:4:{s:4:\"file\";s:20:\"DSC01499-177x142.jpg\";s:5:\"width\";i:177;s:6:\"height\";i:142;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:13:\"portfolio-six\";a:4:{s:4:\"file\";s:20:\"DSC01499-147x118.jpg\";s:5:\"width\";i:147;s:6:\"height\";i:118;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"recent-posts\";a:4:{s:4:\"file\";s:20:\"DSC01499-700x441.jpg\";s:5:\"width\";i:700;s:6:\"height\";i:441;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:22:\"recent-works-thumbnail\";a:4:{s:4:\"file\";s:18:\"DSC01499-66x66.jpg\";s:5:\"width\";i:66;s:6:\"height\";i:66;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'),
(2144, 55, '_thumbnail_id', '883'),
(2145, 55, '_edit_last', '1'),
(2150, 886, 'FB_content', ''),
(2155, 55, '_wp_old_slug', 'japan'),
(2156, 55, 'sbg_selected_sidebar', 'a:1:{i:0;s:1:\"0\";}'),
(2157, 55, 'sbg_selected_sidebar_replacement', 'a:1:{i:0;s:0:\"\";}'),
(2158, 55, 'sbg_selected_sidebar_2', 'a:1:{i:0;s:1:\"0\";}'),
(2159, 55, 'sbg_selected_sidebar_2_replacement', 'a:1:{i:0;s:0:\"\";}'),
(2164, 887, 'FB_content', ''),
(2173, 53, '_edit_lock', '1441372327:1'),
(2174, 53, '_thumbnail_id', '885'),
(2175, 888, 'FB_content', ''),
(2176, 53, '_edit_last', '1'),
(2181, 889, 'FB_content', ''),
(2186, 53, 'sbg_selected_sidebar', 'a:1:{i:0;s:1:\"0\";}'),
(2187, 53, 'sbg_selected_sidebar_replacement', 'a:1:{i:0;s:0:\"\";}'),
(2188, 53, 'sbg_selected_sidebar_2', 'a:1:{i:0;s:1:\"0\";}'),
(2189, 53, 'sbg_selected_sidebar_2_replacement', 'a:1:{i:0;s:0:\"\";}'),
(2190, 50, '_edit_lock', '1441637079:1'),
(2191, 890, 'FB_content', ''),
(2192, 50, '_thumbnail_id', '884'),
(2193, 50, '_edit_last', '1'),
(2198, 891, 'FB_content', ''),
(2203, 50, 'sbg_selected_sidebar', 'a:1:{i:0;s:1:\"0\";}'),
(2204, 50, 'sbg_selected_sidebar_replacement', 'a:1:{i:0;s:0:\"\";}'),
(2205, 50, 'sbg_selected_sidebar_2', 'a:1:{i:0;s:1:\"0\";}'),
(2206, 50, 'sbg_selected_sidebar_2_replacement', 'a:1:{i:0;s:0:\"\";}'),
(2207, 892, 'FB_content', ''),
(2208, 364, '_wp_old_slug', 'dinning-reception-area'),
(2209, 893, 'FB_content', ''),
(2210, 361, '_wp_old_slug', 'lounge-dinning'),
(2211, 894, 'FB_content', ''),
(2212, 895, 'FB_content', ''),
(2213, 364, '_wp_old_slug', 'dining-reception-area'),
(2222, 897, 'FB_content', ''),
(2231, 898, 'FB_content', ''),
(2232, 364, '_wp_old_slug', 'dining-enterance-lounge'),
(2233, 9, '_edit_lock', '1442328000:1'),
(2255, 900, 'FB_content', ''),
(2265, 901, 'FB_content', ''),
(2266, 901, 'FB_content', ''),
(2267, 901, 'FB_content', ''),
(2268, 901, 'FB_content', ''),
(2273, 902, 'FB_content', ''),
(2296, 904, 'FB_content', ''),
(2311, 906, 'FB_content', ''),
(2320, 907, '_wp_attached_file', '2015/01/DSC01516-1148-x-764.jpg'),
(2321, 907, '_wp_attachment_metadata', 'a:5:{s:5:\"width\";i:1148;s:6:\"height\";i:764;s:4:\"file\";s:31:\"2015/01/DSC01516-1148-x-764.jpg\";s:5:\"sizes\";a:16:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:31:\"DSC01516-1148-x-764-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:31:\"DSC01516-1148-x-764-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:32:\"DSC01516-1148-x-764-1024x681.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:681;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:10:\"blog-large\";a:4:{s:4:\"file\";s:31:\"DSC01516-1148-x-764-669x272.jpg\";s:5:\"width\";i:669;s:6:\"height\";i:272;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"blog-medium\";a:4:{s:4:\"file\";s:31:\"DSC01516-1148-x-764-320x202.jpg\";s:5:\"width\";i:320;s:6:\"height\";i:202;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:8:\"tabs-img\";a:4:{s:4:\"file\";s:29:\"DSC01516-1148-x-764-52x50.jpg\";s:5:\"width\";i:52;s:6:\"height\";i:50;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"related-img\";a:4:{s:4:\"file\";s:31:\"DSC01516-1148-x-764-180x138.jpg\";s:5:\"width\";i:180;s:6:\"height\";i:138;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"portfolio-full\";a:4:{s:4:\"file\";s:31:\"DSC01516-1148-x-764-940x400.jpg\";s:5:\"width\";i:940;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:13:\"portfolio-one\";a:4:{s:4:\"file\";s:31:\"DSC01516-1148-x-764-540x272.jpg\";s:5:\"width\";i:540;s:6:\"height\";i:272;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:13:\"portfolio-two\";a:4:{s:4:\"file\";s:31:\"DSC01516-1148-x-764-460x295.jpg\";s:5:\"width\";i:460;s:6:\"height\";i:295;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"portfolio-three\";a:4:{s:4:\"file\";s:31:\"DSC01516-1148-x-764-300x214.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:214;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"portfolio-four\";a:4:{s:4:\"file\";s:31:\"DSC01516-1148-x-764-220x161.jpg\";s:5:\"width\";i:220;s:6:\"height\";i:161;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"portfolio-five\";a:4:{s:4:\"file\";s:31:\"DSC01516-1148-x-764-177x142.jpg\";s:5:\"width\";i:177;s:6:\"height\";i:142;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:13:\"portfolio-six\";a:4:{s:4:\"file\";s:31:\"DSC01516-1148-x-764-147x118.jpg\";s:5:\"width\";i:147;s:6:\"height\";i:118;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"recent-posts\";a:4:{s:4:\"file\";s:31:\"DSC01516-1148-x-764-700x441.jpg\";s:5:\"width\";i:700;s:6:\"height\";i:441;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:22:\"recent-works-thumbnail\";a:4:{s:4:\"file\";s:29:\"DSC01516-1148-x-764-66x66.jpg\";s:5:\"width\";i:66;s:6:\"height\";i:66;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'),
(2326, 908, 'FB_content', ''),
(2339, 909, 'FB_content', ''),
(2352, 910, 'FB_content', ''),
(2365, 911, 'FB_content', ''),
(2378, 912, 'FB_content', ''),
(2391, 913, 'FB_content', ''),
(2404, 914, 'FB_content', ''),
(2417, 915, 'FB_content', ''),
(2430, 916, 'FB_content', ''),
(2443, 917, 'FB_content', ''),
(2456, 918, 'FB_content', ''),
(2465, 50, '_wp_old_slug', 'tibet-nepal'),
(2466, 919, '_edit_last', '1'),
(2467, 919, '_edit_lock', '1441637410:1'),
(2468, 920, '_wp_attached_file', '2015/09/DSC01512-800-x-532.jpg'),
(2469, 920, '_wp_attachment_metadata', 'a:5:{s:5:\"width\";i:800;s:6:\"height\";i:532;s:4:\"file\";s:30:\"2015/09/DSC01512-800-x-532.jpg\";s:5:\"sizes\";a:15:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:30:\"DSC01512-800-x-532-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:30:\"DSC01512-800-x-532-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:10:\"blog-large\";a:4:{s:4:\"file\";s:30:\"DSC01512-800-x-532-669x272.jpg\";s:5:\"width\";i:669;s:6:\"height\";i:272;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"blog-medium\";a:4:{s:4:\"file\";s:30:\"DSC01512-800-x-532-320x202.jpg\";s:5:\"width\";i:320;s:6:\"height\";i:202;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:8:\"tabs-img\";a:4:{s:4:\"file\";s:28:\"DSC01512-800-x-532-52x50.jpg\";s:5:\"width\";i:52;s:6:\"height\";i:50;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"related-img\";a:4:{s:4:\"file\";s:30:\"DSC01512-800-x-532-180x138.jpg\";s:5:\"width\";i:180;s:6:\"height\";i:138;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"portfolio-full\";a:4:{s:4:\"file\";s:30:\"DSC01512-800-x-532-800x400.jpg\";s:5:\"width\";i:800;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:13:\"portfolio-one\";a:4:{s:4:\"file\";s:30:\"DSC01512-800-x-532-540x272.jpg\";s:5:\"width\";i:540;s:6:\"height\";i:272;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:13:\"portfolio-two\";a:4:{s:4:\"file\";s:30:\"DSC01512-800-x-532-460x295.jpg\";s:5:\"width\";i:460;s:6:\"height\";i:295;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"portfolio-three\";a:4:{s:4:\"file\";s:30:\"DSC01512-800-x-532-300x214.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:214;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"portfolio-four\";a:4:{s:4:\"file\";s:30:\"DSC01512-800-x-532-220x161.jpg\";s:5:\"width\";i:220;s:6:\"height\";i:161;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"portfolio-five\";a:4:{s:4:\"file\";s:30:\"DSC01512-800-x-532-177x142.jpg\";s:5:\"width\";i:177;s:6:\"height\";i:142;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:13:\"portfolio-six\";a:4:{s:4:\"file\";s:30:\"DSC01512-800-x-532-147x118.jpg\";s:5:\"width\";i:147;s:6:\"height\";i:118;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"recent-posts\";a:4:{s:4:\"file\";s:30:\"DSC01512-800-x-532-700x441.jpg\";s:5:\"width\";i:700;s:6:\"height\";i:441;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:22:\"recent-works-thumbnail\";a:4:{s:4:\"file\";s:28:\"DSC01512-800-x-532-66x66.jpg\";s:5:\"width\";i:66;s:6:\"height\";i:66;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;s:14:\"resized_images\";a:2:{i:0;s:8:\"1000x766\";i:1;s:7:\"500x383\";}}}'),
(2470, 921, '_wp_attached_file', '2015/09/DSC01516-800-x-532.jpg'),
(2471, 921, '_wp_attachment_metadata', 'a:5:{s:5:\"width\";i:800;s:6:\"height\";i:532;s:4:\"file\";s:30:\"2015/09/DSC01516-800-x-532.jpg\";s:5:\"sizes\";a:15:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:30:\"DSC01516-800-x-532-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:30:\"DSC01516-800-x-532-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:10:\"blog-large\";a:4:{s:4:\"file\";s:30:\"DSC01516-800-x-532-669x272.jpg\";s:5:\"width\";i:669;s:6:\"height\";i:272;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"blog-medium\";a:4:{s:4:\"file\";s:30:\"DSC01516-800-x-532-320x202.jpg\";s:5:\"width\";i:320;s:6:\"height\";i:202;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:8:\"tabs-img\";a:4:{s:4:\"file\";s:28:\"DSC01516-800-x-532-52x50.jpg\";s:5:\"width\";i:52;s:6:\"height\";i:50;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"related-img\";a:4:{s:4:\"file\";s:30:\"DSC01516-800-x-532-180x138.jpg\";s:5:\"width\";i:180;s:6:\"height\";i:138;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"portfolio-full\";a:4:{s:4:\"file\";s:30:\"DSC01516-800-x-532-800x400.jpg\";s:5:\"width\";i:800;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:13:\"portfolio-one\";a:4:{s:4:\"file\";s:30:\"DSC01516-800-x-532-540x272.jpg\";s:5:\"width\";i:540;s:6:\"height\";i:272;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:13:\"portfolio-two\";a:4:{s:4:\"file\";s:30:\"DSC01516-800-x-532-460x295.jpg\";s:5:\"width\";i:460;s:6:\"height\";i:295;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"portfolio-three\";a:4:{s:4:\"file\";s:30:\"DSC01516-800-x-532-300x214.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:214;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"portfolio-four\";a:4:{s:4:\"file\";s:30:\"DSC01516-800-x-532-220x161.jpg\";s:5:\"width\";i:220;s:6:\"height\";i:161;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"portfolio-five\";a:4:{s:4:\"file\";s:30:\"DSC01516-800-x-532-177x142.jpg\";s:5:\"width\";i:177;s:6:\"height\";i:142;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:13:\"portfolio-six\";a:4:{s:4:\"file\";s:30:\"DSC01516-800-x-532-147x118.jpg\";s:5:\"width\";i:147;s:6:\"height\";i:118;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"recent-posts\";a:4:{s:4:\"file\";s:30:\"DSC01516-800-x-532-700x441.jpg\";s:5:\"width\";i:700;s:6:\"height\";i:441;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:22:\"recent-works-thumbnail\";a:4:{s:4:\"file\";s:28:\"DSC01516-800-x-532-66x66.jpg\";s:5:\"width\";i:66;s:6:\"height\";i:66;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;s:14:\"resized_images\";a:2:{i:0;s:8:\"1000x766\";i:1;s:7:\"500x383\";}}}'),
(2472, 922, '_wp_attached_file', '2015/09/DSC01523-800-x-532.jpg'),
(2473, 922, '_wp_attachment_metadata', 'a:5:{s:5:\"width\";i:800;s:6:\"height\";i:532;s:4:\"file\";s:30:\"2015/09/DSC01523-800-x-532.jpg\";s:5:\"sizes\";a:15:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:30:\"DSC01523-800-x-532-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:30:\"DSC01523-800-x-532-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:10:\"blog-large\";a:4:{s:4:\"file\";s:30:\"DSC01523-800-x-532-669x272.jpg\";s:5:\"width\";i:669;s:6:\"height\";i:272;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"blog-medium\";a:4:{s:4:\"file\";s:30:\"DSC01523-800-x-532-320x202.jpg\";s:5:\"width\";i:320;s:6:\"height\";i:202;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:8:\"tabs-img\";a:4:{s:4:\"file\";s:28:\"DSC01523-800-x-532-52x50.jpg\";s:5:\"width\";i:52;s:6:\"height\";i:50;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"related-img\";a:4:{s:4:\"file\";s:30:\"DSC01523-800-x-532-180x138.jpg\";s:5:\"width\";i:180;s:6:\"height\";i:138;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"portfolio-full\";a:4:{s:4:\"file\";s:30:\"DSC01523-800-x-532-800x400.jpg\";s:5:\"width\";i:800;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:13:\"portfolio-one\";a:4:{s:4:\"file\";s:30:\"DSC01523-800-x-532-540x272.jpg\";s:5:\"width\";i:540;s:6:\"height\";i:272;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:13:\"portfolio-two\";a:4:{s:4:\"file\";s:30:\"DSC01523-800-x-532-460x295.jpg\";s:5:\"width\";i:460;s:6:\"height\";i:295;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"portfolio-three\";a:4:{s:4:\"file\";s:30:\"DSC01523-800-x-532-300x214.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:214;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"portfolio-four\";a:4:{s:4:\"file\";s:30:\"DSC01523-800-x-532-220x161.jpg\";s:5:\"width\";i:220;s:6:\"height\";i:161;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"portfolio-five\";a:4:{s:4:\"file\";s:30:\"DSC01523-800-x-532-177x142.jpg\";s:5:\"width\";i:177;s:6:\"height\";i:142;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:13:\"portfolio-six\";a:4:{s:4:\"file\";s:30:\"DSC01523-800-x-532-147x118.jpg\";s:5:\"width\";i:147;s:6:\"height\";i:118;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"recent-posts\";a:4:{s:4:\"file\";s:30:\"DSC01523-800-x-532-700x441.jpg\";s:5:\"width\";i:700;s:6:\"height\";i:441;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:22:\"recent-works-thumbnail\";a:4:{s:4:\"file\";s:28:\"DSC01523-800-x-532-66x66.jpg\";s:5:\"width\";i:66;s:6:\"height\";i:66;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;s:14:\"resized_images\";a:2:{i:0;s:8:\"1000x766\";i:1;s:7:\"500x383\";}}}'),
(2474, 923, '_wp_attached_file', '2015/09/DSC01532-800-x-532.jpg');
INSERT INTO `wp_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(2475, 923, '_wp_attachment_metadata', 'a:5:{s:5:\"width\";i:800;s:6:\"height\";i:532;s:4:\"file\";s:30:\"2015/09/DSC01532-800-x-532.jpg\";s:5:\"sizes\";a:15:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:30:\"DSC01532-800-x-532-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:30:\"DSC01532-800-x-532-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:10:\"blog-large\";a:4:{s:4:\"file\";s:30:\"DSC01532-800-x-532-669x272.jpg\";s:5:\"width\";i:669;s:6:\"height\";i:272;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"blog-medium\";a:4:{s:4:\"file\";s:30:\"DSC01532-800-x-532-320x202.jpg\";s:5:\"width\";i:320;s:6:\"height\";i:202;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:8:\"tabs-img\";a:4:{s:4:\"file\";s:28:\"DSC01532-800-x-532-52x50.jpg\";s:5:\"width\";i:52;s:6:\"height\";i:50;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"related-img\";a:4:{s:4:\"file\";s:30:\"DSC01532-800-x-532-180x138.jpg\";s:5:\"width\";i:180;s:6:\"height\";i:138;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"portfolio-full\";a:4:{s:4:\"file\";s:30:\"DSC01532-800-x-532-800x400.jpg\";s:5:\"width\";i:800;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:13:\"portfolio-one\";a:4:{s:4:\"file\";s:30:\"DSC01532-800-x-532-540x272.jpg\";s:5:\"width\";i:540;s:6:\"height\";i:272;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:13:\"portfolio-two\";a:4:{s:4:\"file\";s:30:\"DSC01532-800-x-532-460x295.jpg\";s:5:\"width\";i:460;s:6:\"height\";i:295;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"portfolio-three\";a:4:{s:4:\"file\";s:30:\"DSC01532-800-x-532-300x214.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:214;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"portfolio-four\";a:4:{s:4:\"file\";s:30:\"DSC01532-800-x-532-220x161.jpg\";s:5:\"width\";i:220;s:6:\"height\";i:161;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"portfolio-five\";a:4:{s:4:\"file\";s:30:\"DSC01532-800-x-532-177x142.jpg\";s:5:\"width\";i:177;s:6:\"height\";i:142;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:13:\"portfolio-six\";a:4:{s:4:\"file\";s:30:\"DSC01532-800-x-532-147x118.jpg\";s:5:\"width\";i:147;s:6:\"height\";i:118;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"recent-posts\";a:4:{s:4:\"file\";s:30:\"DSC01532-800-x-532-700x441.jpg\";s:5:\"width\";i:700;s:6:\"height\";i:441;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:22:\"recent-works-thumbnail\";a:4:{s:4:\"file\";s:28:\"DSC01532-800-x-532-66x66.jpg\";s:5:\"width\";i:66;s:6:\"height\";i:66;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;s:14:\"resized_images\";a:2:{i:0;s:8:\"1000x766\";i:1;s:7:\"500x383\";}}}'),
(2476, 924, '_wp_attached_file', '2015/09/DSC01510-800-x-532.jpg'),
(2477, 924, '_wp_attachment_metadata', 'a:5:{s:5:\"width\";i:800;s:6:\"height\";i:532;s:4:\"file\";s:30:\"2015/09/DSC01510-800-x-532.jpg\";s:5:\"sizes\";a:15:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:30:\"DSC01510-800-x-532-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:30:\"DSC01510-800-x-532-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:10:\"blog-large\";a:4:{s:4:\"file\";s:30:\"DSC01510-800-x-532-669x272.jpg\";s:5:\"width\";i:669;s:6:\"height\";i:272;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"blog-medium\";a:4:{s:4:\"file\";s:30:\"DSC01510-800-x-532-320x202.jpg\";s:5:\"width\";i:320;s:6:\"height\";i:202;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:8:\"tabs-img\";a:4:{s:4:\"file\";s:28:\"DSC01510-800-x-532-52x50.jpg\";s:5:\"width\";i:52;s:6:\"height\";i:50;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"related-img\";a:4:{s:4:\"file\";s:30:\"DSC01510-800-x-532-180x138.jpg\";s:5:\"width\";i:180;s:6:\"height\";i:138;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"portfolio-full\";a:4:{s:4:\"file\";s:30:\"DSC01510-800-x-532-800x400.jpg\";s:5:\"width\";i:800;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:13:\"portfolio-one\";a:4:{s:4:\"file\";s:30:\"DSC01510-800-x-532-540x272.jpg\";s:5:\"width\";i:540;s:6:\"height\";i:272;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:13:\"portfolio-two\";a:4:{s:4:\"file\";s:30:\"DSC01510-800-x-532-460x295.jpg\";s:5:\"width\";i:460;s:6:\"height\";i:295;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"portfolio-three\";a:4:{s:4:\"file\";s:30:\"DSC01510-800-x-532-300x214.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:214;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"portfolio-four\";a:4:{s:4:\"file\";s:30:\"DSC01510-800-x-532-220x161.jpg\";s:5:\"width\";i:220;s:6:\"height\";i:161;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"portfolio-five\";a:4:{s:4:\"file\";s:30:\"DSC01510-800-x-532-177x142.jpg\";s:5:\"width\";i:177;s:6:\"height\";i:142;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:13:\"portfolio-six\";a:4:{s:4:\"file\";s:30:\"DSC01510-800-x-532-147x118.jpg\";s:5:\"width\";i:147;s:6:\"height\";i:118;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"recent-posts\";a:4:{s:4:\"file\";s:30:\"DSC01510-800-x-532-700x441.jpg\";s:5:\"width\";i:700;s:6:\"height\";i:441;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:22:\"recent-works-thumbnail\";a:4:{s:4:\"file\";s:28:\"DSC01510-800-x-532-66x66.jpg\";s:5:\"width\";i:66;s:6:\"height\";i:66;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;s:14:\"resized_images\";a:2:{i:0;s:8:\"1000x766\";i:1;s:7:\"500x383\";}}}'),
(2480, 919, '_thumbnail_id', '923'),
(2485, 919, 'slide_template', 'default'),
(2486, 919, 'fusion_builder_status', 'inactive'),
(2487, 926, 'FB_content', ''),
(2488, 919, 'pyre_width', 'full'),
(2489, 919, 'pyre_portfolio_width_100', 'no'),
(2490, 919, 'pyre_project_desc_title', 'yes'),
(2491, 919, 'pyre_project_details', 'yes'),
(2492, 919, 'pyre_show_first_featured_image', 'no'),
(2493, 919, 'pyre_video', ''),
(2494, 919, 'pyre_video_url', ''),
(2495, 919, 'pyre_project_url', ''),
(2496, 919, 'pyre_project_url_text', ''),
(2497, 919, 'pyre_copy_url', ''),
(2498, 919, 'pyre_copy_url_text', ''),
(2499, 919, 'pyre_fimg_width', ''),
(2500, 919, 'pyre_fimg_height', ''),
(2501, 919, 'pyre_image_rollover_icons', 'default'),
(2502, 919, 'pyre_link_icon_url', ''),
(2503, 919, 'pyre_link_icon_target', 'no'),
(2504, 919, 'pyre_related_posts', 'default'),
(2505, 919, 'pyre_share_box', 'default'),
(2506, 919, 'pyre_post_pagination', 'default'),
(2507, 919, 'pyre_main_top_padding', ''),
(2508, 919, 'pyre_main_bottom_padding', ''),
(2509, 919, 'pyre_hundredp_padding', ''),
(2510, 919, 'pyre_slider_position', 'default'),
(2511, 919, 'pyre_slider_type', 'no'),
(2512, 919, 'pyre_slider', '0'),
(2513, 919, 'pyre_wooslider', '0'),
(2514, 919, 'pyre_revslider', '0'),
(2515, 919, 'pyre_elasticslider', '0'),
(2516, 919, 'pyre_fallback', ''),
(2517, 919, 'pyre_avada_rev_styles', 'default'),
(2518, 919, 'pyre_display_header', 'yes'),
(2519, 919, 'pyre_header_100_width', 'default'),
(2520, 919, 'pyre_header_bg', ''),
(2521, 919, 'pyre_header_bg_color', ''),
(2522, 919, 'pyre_header_bg_opacity', ''),
(2523, 919, 'pyre_header_bg_full', 'no'),
(2524, 919, 'pyre_header_bg_repeat', 'repeat'),
(2525, 919, 'pyre_displayed_menu', 'default'),
(2526, 919, 'pyre_display_footer', 'default'),
(2527, 919, 'pyre_display_copyright', 'default'),
(2528, 919, 'pyre_footer_100_width', 'default'),
(2529, 919, 'pyre_sidebar_position', 'default'),
(2530, 919, 'pyre_sidebar_bg_color', ''),
(2531, 919, 'pyre_page_bg_layout', 'default'),
(2532, 919, 'pyre_page_bg', ''),
(2533, 919, 'pyre_page_bg_color', ''),
(2534, 919, 'pyre_page_bg_full', 'no'),
(2535, 919, 'pyre_page_bg_repeat', 'repeat'),
(2536, 919, 'pyre_wide_page_bg', ''),
(2537, 919, 'pyre_wide_page_bg_color', ''),
(2538, 919, 'pyre_wide_page_bg_full', 'no'),
(2539, 919, 'pyre_wide_page_bg_repeat', 'repeat'),
(2540, 919, 'pyre_page_title', 'default'),
(2541, 919, 'pyre_page_title_text', 'default'),
(2542, 919, 'pyre_page_title_text_alignment', 'default'),
(2543, 919, 'pyre_page_title_100_width', 'default'),
(2544, 919, 'pyre_page_title_custom_text', ''),
(2545, 919, 'pyre_page_title_text_size', ''),
(2546, 919, 'pyre_page_title_custom_subheader', ''),
(2547, 919, 'pyre_page_title_custom_subheader_text_size', ''),
(2548, 919, 'pyre_page_title_font_color', ''),
(2549, 919, 'pyre_page_title_height', ''),
(2550, 919, 'pyre_page_title_mobile_height', ''),
(2551, 919, 'pyre_page_title_bar_bg', ''),
(2552, 919, 'pyre_page_title_bar_bg_retina', ''),
(2553, 919, 'pyre_page_title_bar_bg_color', ''),
(2554, 919, 'pyre_page_title_bar_borders_color', ''),
(2555, 919, 'pyre_page_title_bar_bg_full', 'default'),
(2556, 919, 'pyre_page_title_bg_parallax', 'default'),
(2557, 919, 'pyre_page_title_breadcrumbs_search_bar', 'default'),
(2562, 919, 'sbg_selected_sidebar', 'a:1:{i:0;s:1:\"0\";}'),
(2563, 919, 'sbg_selected_sidebar_replacement', 'a:1:{i:0;s:0:\"\";}'),
(2564, 919, 'sbg_selected_sidebar_2', 'a:1:{i:0;s:1:\"0\";}'),
(2565, 919, 'sbg_selected_sidebar_2_replacement', 'a:1:{i:0;s:0:\"\";}'),
(2566, 927, '_edit_last', '1'),
(2567, 927, '_edit_lock', '1441637585:1'),
(2572, 928, 'FB_content', ''),
(2581, 927, '_thumbnail_id', '921'),
(2586, 927, 'slide_template', 'default'),
(2587, 927, 'fusion_builder_status', 'inactive'),
(2588, 929, 'FB_content', ''),
(2589, 927, 'pyre_width', 'full'),
(2590, 927, 'pyre_portfolio_width_100', 'no'),
(2591, 927, 'pyre_project_desc_title', 'yes'),
(2592, 927, 'pyre_project_details', 'yes'),
(2593, 927, 'pyre_show_first_featured_image', 'no'),
(2594, 927, 'pyre_video', ''),
(2595, 927, 'pyre_video_url', ''),
(2596, 927, 'pyre_project_url', ''),
(2597, 927, 'pyre_project_url_text', ''),
(2598, 927, 'pyre_copy_url', ''),
(2599, 927, 'pyre_copy_url_text', ''),
(2600, 927, 'pyre_fimg_width', ''),
(2601, 927, 'pyre_fimg_height', ''),
(2602, 927, 'pyre_image_rollover_icons', 'default'),
(2603, 927, 'pyre_link_icon_url', ''),
(2604, 927, 'pyre_link_icon_target', 'no'),
(2605, 927, 'pyre_related_posts', 'default'),
(2606, 927, 'pyre_share_box', 'default'),
(2607, 927, 'pyre_post_pagination', 'default'),
(2608, 927, 'pyre_main_top_padding', ''),
(2609, 927, 'pyre_main_bottom_padding', ''),
(2610, 927, 'pyre_hundredp_padding', ''),
(2611, 927, 'pyre_slider_position', 'default'),
(2612, 927, 'pyre_slider_type', 'no'),
(2613, 927, 'pyre_slider', '0'),
(2614, 927, 'pyre_wooslider', '0'),
(2615, 927, 'pyre_revslider', '0'),
(2616, 927, 'pyre_elasticslider', '0'),
(2617, 927, 'pyre_fallback', ''),
(2618, 927, 'pyre_avada_rev_styles', 'default'),
(2619, 927, 'pyre_display_header', 'yes'),
(2620, 927, 'pyre_header_100_width', 'default'),
(2621, 927, 'pyre_header_bg', ''),
(2622, 927, 'pyre_header_bg_color', ''),
(2623, 927, 'pyre_header_bg_opacity', ''),
(2624, 927, 'pyre_header_bg_full', 'no'),
(2625, 927, 'pyre_header_bg_repeat', 'repeat'),
(2626, 927, 'pyre_displayed_menu', 'default'),
(2627, 927, 'pyre_display_footer', 'default'),
(2628, 927, 'pyre_display_copyright', 'default'),
(2629, 927, 'pyre_footer_100_width', 'default'),
(2630, 927, 'pyre_sidebar_position', 'default'),
(2631, 927, 'pyre_sidebar_bg_color', ''),
(2632, 927, 'pyre_page_bg_layout', 'default'),
(2633, 927, 'pyre_page_bg', ''),
(2634, 927, 'pyre_page_bg_color', ''),
(2635, 927, 'pyre_page_bg_full', 'no'),
(2636, 927, 'pyre_page_bg_repeat', 'repeat'),
(2637, 927, 'pyre_wide_page_bg', ''),
(2638, 927, 'pyre_wide_page_bg_color', ''),
(2639, 927, 'pyre_wide_page_bg_full', 'no'),
(2640, 927, 'pyre_wide_page_bg_repeat', 'repeat'),
(2641, 927, 'pyre_page_title', 'default'),
(2642, 927, 'pyre_page_title_text', 'default'),
(2643, 927, 'pyre_page_title_text_alignment', 'default'),
(2644, 927, 'pyre_page_title_100_width', 'default'),
(2645, 927, 'pyre_page_title_custom_text', ''),
(2646, 927, 'pyre_page_title_text_size', ''),
(2647, 927, 'pyre_page_title_custom_subheader', ''),
(2648, 927, 'pyre_page_title_custom_subheader_text_size', ''),
(2649, 927, 'pyre_page_title_font_color', ''),
(2650, 927, 'pyre_page_title_height', ''),
(2651, 927, 'pyre_page_title_mobile_height', ''),
(2652, 927, 'pyre_page_title_bar_bg', ''),
(2653, 927, 'pyre_page_title_bar_bg_retina', ''),
(2654, 927, 'pyre_page_title_bar_bg_color', ''),
(2655, 927, 'pyre_page_title_bar_borders_color', ''),
(2656, 927, 'pyre_page_title_bar_bg_full', 'default'),
(2657, 927, 'pyre_page_title_bg_parallax', 'default'),
(2658, 927, 'pyre_page_title_breadcrumbs_search_bar', 'default'),
(2663, 927, 'sbg_selected_sidebar', 'a:1:{i:0;s:1:\"0\";}'),
(2664, 927, 'sbg_selected_sidebar_replacement', 'a:1:{i:0;s:0:\"\";}'),
(2665, 927, 'sbg_selected_sidebar_2', 'a:1:{i:0;s:1:\"0\";}'),
(2666, 927, 'sbg_selected_sidebar_2_replacement', 'a:1:{i:0;s:0:\"\";}'),
(2667, 930, '_edit_last', '1'),
(2668, 930, '_edit_lock', '1441638170:1'),
(2673, 931, 'FB_content', ''),
(2687, 930, 'slide_template', 'default'),
(2688, 930, 'fusion_builder_status', 'inactive'),
(2689, 932, 'FB_content', ''),
(2690, 930, 'pyre_width', 'full'),
(2691, 930, 'pyre_portfolio_width_100', 'no'),
(2692, 930, 'pyre_project_desc_title', 'yes'),
(2693, 930, 'pyre_project_details', 'yes'),
(2694, 930, 'pyre_show_first_featured_image', 'no'),
(2695, 930, 'pyre_video', ''),
(2696, 930, 'pyre_video_url', ''),
(2697, 930, 'pyre_project_url', ''),
(2698, 930, 'pyre_project_url_text', ''),
(2699, 930, 'pyre_copy_url', ''),
(2700, 930, 'pyre_copy_url_text', ''),
(2701, 930, 'pyre_fimg_width', ''),
(2702, 930, 'pyre_fimg_height', ''),
(2703, 930, 'pyre_image_rollover_icons', 'default'),
(2704, 930, 'pyre_link_icon_url', ''),
(2705, 930, 'pyre_link_icon_target', 'no'),
(2706, 930, 'pyre_related_posts', 'default'),
(2707, 930, 'pyre_share_box', 'default'),
(2708, 930, 'pyre_post_pagination', 'default'),
(2709, 930, 'pyre_main_top_padding', ''),
(2710, 930, 'pyre_main_bottom_padding', ''),
(2711, 930, 'pyre_hundredp_padding', ''),
(2712, 930, 'pyre_slider_position', 'default'),
(2713, 930, 'pyre_slider_type', 'no'),
(2714, 930, 'pyre_slider', '0'),
(2715, 930, 'pyre_wooslider', '0'),
(2716, 930, 'pyre_revslider', '0'),
(2717, 930, 'pyre_elasticslider', '0'),
(2718, 930, 'pyre_fallback', ''),
(2719, 930, 'pyre_avada_rev_styles', 'default'),
(2720, 930, 'pyre_display_header', 'yes'),
(2721, 930, 'pyre_header_100_width', 'default'),
(2722, 930, 'pyre_header_bg', ''),
(2723, 930, 'pyre_header_bg_color', ''),
(2724, 930, 'pyre_header_bg_opacity', ''),
(2725, 930, 'pyre_header_bg_full', 'no'),
(2726, 930, 'pyre_header_bg_repeat', 'repeat'),
(2727, 930, 'pyre_displayed_menu', 'default'),
(2728, 930, 'pyre_display_footer', 'default'),
(2729, 930, 'pyre_display_copyright', 'default'),
(2730, 930, 'pyre_footer_100_width', 'default'),
(2731, 930, 'pyre_sidebar_position', 'default'),
(2732, 930, 'pyre_sidebar_bg_color', ''),
(2733, 930, 'pyre_page_bg_layout', 'default'),
(2734, 930, 'pyre_page_bg', ''),
(2735, 930, 'pyre_page_bg_color', ''),
(2736, 930, 'pyre_page_bg_full', 'no'),
(2737, 930, 'pyre_page_bg_repeat', 'repeat'),
(2738, 930, 'pyre_wide_page_bg', ''),
(2739, 930, 'pyre_wide_page_bg_color', ''),
(2740, 930, 'pyre_wide_page_bg_full', 'no'),
(2741, 930, 'pyre_wide_page_bg_repeat', 'repeat'),
(2742, 930, 'pyre_page_title', 'default'),
(2743, 930, 'pyre_page_title_text', 'default'),
(2744, 930, 'pyre_page_title_text_alignment', 'default'),
(2745, 930, 'pyre_page_title_100_width', 'default'),
(2746, 930, 'pyre_page_title_custom_text', ''),
(2747, 930, 'pyre_page_title_text_size', ''),
(2748, 930, 'pyre_page_title_custom_subheader', ''),
(2749, 930, 'pyre_page_title_custom_subheader_text_size', ''),
(2750, 930, 'pyre_page_title_font_color', ''),
(2751, 930, 'pyre_page_title_height', ''),
(2752, 930, 'pyre_page_title_mobile_height', ''),
(2753, 930, 'pyre_page_title_bar_bg', ''),
(2754, 930, 'pyre_page_title_bar_bg_retina', ''),
(2755, 930, 'pyre_page_title_bar_bg_color', ''),
(2756, 930, 'pyre_page_title_bar_borders_color', ''),
(2757, 930, 'pyre_page_title_bar_bg_full', 'default'),
(2758, 930, 'pyre_page_title_bg_parallax', 'default'),
(2759, 930, 'pyre_page_title_breadcrumbs_search_bar', 'default'),
(2768, 933, '_wp_attached_file', '2015/09/bedsheets8001.jpg'),
(2769, 933, '_wp_attachment_metadata', 'a:5:{s:5:\"width\";i:800;s:6:\"height\";i:532;s:4:\"file\";s:25:\"2015/09/bedsheets8001.jpg\";s:5:\"sizes\";a:15:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:25:\"bedsheets8001-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:25:\"bedsheets8001-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:10:\"blog-large\";a:4:{s:4:\"file\";s:25:\"bedsheets8001-669x272.jpg\";s:5:\"width\";i:669;s:6:\"height\";i:272;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"blog-medium\";a:4:{s:4:\"file\";s:25:\"bedsheets8001-320x202.jpg\";s:5:\"width\";i:320;s:6:\"height\";i:202;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:8:\"tabs-img\";a:4:{s:4:\"file\";s:23:\"bedsheets8001-52x50.jpg\";s:5:\"width\";i:52;s:6:\"height\";i:50;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"related-img\";a:4:{s:4:\"file\";s:25:\"bedsheets8001-180x138.jpg\";s:5:\"width\";i:180;s:6:\"height\";i:138;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"portfolio-full\";a:4:{s:4:\"file\";s:25:\"bedsheets8001-800x400.jpg\";s:5:\"width\";i:800;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:13:\"portfolio-one\";a:4:{s:4:\"file\";s:25:\"bedsheets8001-540x272.jpg\";s:5:\"width\";i:540;s:6:\"height\";i:272;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:13:\"portfolio-two\";a:4:{s:4:\"file\";s:25:\"bedsheets8001-460x295.jpg\";s:5:\"width\";i:460;s:6:\"height\";i:295;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"portfolio-three\";a:4:{s:4:\"file\";s:25:\"bedsheets8001-300x214.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:214;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"portfolio-four\";a:4:{s:4:\"file\";s:25:\"bedsheets8001-220x161.jpg\";s:5:\"width\";i:220;s:6:\"height\";i:161;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"portfolio-five\";a:4:{s:4:\"file\";s:25:\"bedsheets8001-177x142.jpg\";s:5:\"width\";i:177;s:6:\"height\";i:142;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:13:\"portfolio-six\";a:4:{s:4:\"file\";s:25:\"bedsheets8001-147x118.jpg\";s:5:\"width\";i:147;s:6:\"height\";i:118;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"recent-posts\";a:4:{s:4:\"file\";s:25:\"bedsheets8001-700x441.jpg\";s:5:\"width\";i:700;s:6:\"height\";i:441;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:22:\"recent-works-thumbnail\";a:4:{s:4:\"file\";s:23:\"bedsheets8001-66x66.jpg\";s:5:\"width\";i:66;s:6:\"height\";i:66;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;s:14:\"resized_images\";a:2:{i:0;s:8:\"1000x766\";i:1;s:7:\"500x383\";}}}'),
(2770, 930, '_thumbnail_id', '933'),
(2775, 930, 'sbg_selected_sidebar', 'a:1:{i:0;s:1:\"0\";}'),
(2776, 930, 'sbg_selected_sidebar_replacement', 'a:1:{i:0;s:0:\"\";}'),
(2777, 930, 'sbg_selected_sidebar_2', 'a:1:{i:0;s:1:\"0\";}'),
(2778, 930, 'sbg_selected_sidebar_2_replacement', 'a:1:{i:0;s:0:\"\";}'),
(2779, 934, '_edit_last', '1'),
(2780, 934, '_edit_lock', '1441638375:1'),
(2781, 934, '_thumbnail_id', '924'),
(2786, 934, 'slide_template', 'default'),
(2787, 934, 'fusion_builder_status', 'inactive'),
(2788, 935, 'FB_content', ''),
(2789, 934, 'pyre_width', 'full'),
(2790, 934, 'pyre_portfolio_width_100', 'no'),
(2791, 934, 'pyre_project_desc_title', 'yes'),
(2792, 934, 'pyre_project_details', 'yes'),
(2793, 934, 'pyre_show_first_featured_image', 'no'),
(2794, 934, 'pyre_video', ''),
(2795, 934, 'pyre_video_url', ''),
(2796, 934, 'pyre_project_url', ''),
(2797, 934, 'pyre_project_url_text', ''),
(2798, 934, 'pyre_copy_url', ''),
(2799, 934, 'pyre_copy_url_text', ''),
(2800, 934, 'pyre_fimg_width', ''),
(2801, 934, 'pyre_fimg_height', ''),
(2802, 934, 'pyre_image_rollover_icons', 'default'),
(2803, 934, 'pyre_link_icon_url', ''),
(2804, 934, 'pyre_link_icon_target', 'no'),
(2805, 934, 'pyre_related_posts', 'default'),
(2806, 934, 'pyre_share_box', 'default'),
(2807, 934, 'pyre_post_pagination', 'default'),
(2808, 934, 'pyre_main_top_padding', ''),
(2809, 934, 'pyre_main_bottom_padding', ''),
(2810, 934, 'pyre_hundredp_padding', ''),
(2811, 934, 'pyre_slider_position', 'default'),
(2812, 934, 'pyre_slider_type', 'no'),
(2813, 934, 'pyre_slider', '0'),
(2814, 934, 'pyre_wooslider', '0'),
(2815, 934, 'pyre_revslider', '0'),
(2816, 934, 'pyre_elasticslider', '0'),
(2817, 934, 'pyre_fallback', ''),
(2818, 934, 'pyre_avada_rev_styles', 'default'),
(2819, 934, 'pyre_display_header', 'yes'),
(2820, 934, 'pyre_header_100_width', 'default'),
(2821, 934, 'pyre_header_bg', ''),
(2822, 934, 'pyre_header_bg_color', ''),
(2823, 934, 'pyre_header_bg_opacity', ''),
(2824, 934, 'pyre_header_bg_full', 'no'),
(2825, 934, 'pyre_header_bg_repeat', 'repeat'),
(2826, 934, 'pyre_displayed_menu', 'default'),
(2827, 934, 'pyre_display_footer', 'default'),
(2828, 934, 'pyre_display_copyright', 'default'),
(2829, 934, 'pyre_footer_100_width', 'default'),
(2830, 934, 'pyre_sidebar_position', 'default'),
(2831, 934, 'pyre_sidebar_bg_color', ''),
(2832, 934, 'pyre_page_bg_layout', 'default'),
(2833, 934, 'pyre_page_bg', ''),
(2834, 934, 'pyre_page_bg_color', ''),
(2835, 934, 'pyre_page_bg_full', 'no'),
(2836, 934, 'pyre_page_bg_repeat', 'repeat'),
(2837, 934, 'pyre_wide_page_bg', ''),
(2838, 934, 'pyre_wide_page_bg_color', ''),
(2839, 934, 'pyre_wide_page_bg_full', 'no'),
(2840, 934, 'pyre_wide_page_bg_repeat', 'repeat'),
(2841, 934, 'pyre_page_title', 'default'),
(2842, 934, 'pyre_page_title_text', 'default'),
(2843, 934, 'pyre_page_title_text_alignment', 'default'),
(2844, 934, 'pyre_page_title_100_width', 'default'),
(2845, 934, 'pyre_page_title_custom_text', ''),
(2846, 934, 'pyre_page_title_text_size', ''),
(2847, 934, 'pyre_page_title_custom_subheader', ''),
(2848, 934, 'pyre_page_title_custom_subheader_text_size', ''),
(2849, 934, 'pyre_page_title_font_color', ''),
(2850, 934, 'pyre_page_title_height', ''),
(2851, 934, 'pyre_page_title_mobile_height', ''),
(2852, 934, 'pyre_page_title_bar_bg', ''),
(2853, 934, 'pyre_page_title_bar_bg_retina', ''),
(2854, 934, 'pyre_page_title_bar_bg_color', ''),
(2855, 934, 'pyre_page_title_bar_borders_color', ''),
(2856, 934, 'pyre_page_title_bar_bg_full', 'default'),
(2857, 934, 'pyre_page_title_bg_parallax', 'default'),
(2858, 934, 'pyre_page_title_breadcrumbs_search_bar', 'default'),
(2863, 934, 'sbg_selected_sidebar', 'a:1:{i:0;s:1:\"0\";}'),
(2864, 934, 'sbg_selected_sidebar_replacement', 'a:1:{i:0;s:0:\"\";}'),
(2865, 934, 'sbg_selected_sidebar_2', 'a:1:{i:0;s:1:\"0\";}'),
(2866, 934, 'sbg_selected_sidebar_2_replacement', 'a:1:{i:0;s:0:\"\";}'),
(2867, 936, '_edit_last', '1'),
(2868, 936, '_edit_lock', '1441638552:1'),
(2869, 936, '_thumbnail_id', '922'),
(2874, 936, 'slide_template', 'default'),
(2875, 936, 'fusion_builder_status', 'inactive'),
(2876, 937, 'FB_content', ''),
(2877, 936, 'pyre_width', 'full'),
(2878, 936, 'pyre_portfolio_width_100', 'no'),
(2879, 936, 'pyre_project_desc_title', 'yes'),
(2880, 936, 'pyre_project_details', 'yes'),
(2881, 936, 'pyre_show_first_featured_image', 'no'),
(2882, 936, 'pyre_video', ''),
(2883, 936, 'pyre_video_url', ''),
(2884, 936, 'pyre_project_url', ''),
(2885, 936, 'pyre_project_url_text', ''),
(2886, 936, 'pyre_copy_url', ''),
(2887, 936, 'pyre_copy_url_text', ''),
(2888, 936, 'pyre_fimg_width', ''),
(2889, 936, 'pyre_fimg_height', ''),
(2890, 936, 'pyre_image_rollover_icons', 'default'),
(2891, 936, 'pyre_link_icon_url', ''),
(2892, 936, 'pyre_link_icon_target', 'no'),
(2893, 936, 'pyre_related_posts', 'default'),
(2894, 936, 'pyre_share_box', 'default'),
(2895, 936, 'pyre_post_pagination', 'default'),
(2896, 936, 'pyre_main_top_padding', ''),
(2897, 936, 'pyre_main_bottom_padding', ''),
(2898, 936, 'pyre_hundredp_padding', ''),
(2899, 936, 'pyre_slider_position', 'default'),
(2900, 936, 'pyre_slider_type', 'no'),
(2901, 936, 'pyre_slider', '0'),
(2902, 936, 'pyre_wooslider', '0'),
(2903, 936, 'pyre_revslider', '0'),
(2904, 936, 'pyre_elasticslider', '0'),
(2905, 936, 'pyre_fallback', ''),
(2906, 936, 'pyre_avada_rev_styles', 'default'),
(2907, 936, 'pyre_display_header', 'yes'),
(2908, 936, 'pyre_header_100_width', 'default'),
(2909, 936, 'pyre_header_bg', ''),
(2910, 936, 'pyre_header_bg_color', ''),
(2911, 936, 'pyre_header_bg_opacity', ''),
(2912, 936, 'pyre_header_bg_full', 'no'),
(2913, 936, 'pyre_header_bg_repeat', 'repeat'),
(2914, 936, 'pyre_displayed_menu', 'default'),
(2915, 936, 'pyre_display_footer', 'default'),
(2916, 936, 'pyre_display_copyright', 'default'),
(2917, 936, 'pyre_footer_100_width', 'default'),
(2918, 936, 'pyre_sidebar_position', 'default'),
(2919, 936, 'pyre_sidebar_bg_color', ''),
(2920, 936, 'pyre_page_bg_layout', 'default'),
(2921, 936, 'pyre_page_bg', ''),
(2922, 936, 'pyre_page_bg_color', ''),
(2923, 936, 'pyre_page_bg_full', 'no'),
(2924, 936, 'pyre_page_bg_repeat', 'repeat'),
(2925, 936, 'pyre_wide_page_bg', ''),
(2926, 936, 'pyre_wide_page_bg_color', ''),
(2927, 936, 'pyre_wide_page_bg_full', 'no'),
(2928, 936, 'pyre_wide_page_bg_repeat', 'repeat'),
(2929, 936, 'pyre_page_title', 'default'),
(2930, 936, 'pyre_page_title_text', 'default'),
(2931, 936, 'pyre_page_title_text_alignment', 'default'),
(2932, 936, 'pyre_page_title_100_width', 'default'),
(2933, 936, 'pyre_page_title_custom_text', ''),
(2934, 936, 'pyre_page_title_text_size', ''),
(2935, 936, 'pyre_page_title_custom_subheader', ''),
(2936, 936, 'pyre_page_title_custom_subheader_text_size', ''),
(2937, 936, 'pyre_page_title_font_color', ''),
(2938, 936, 'pyre_page_title_height', ''),
(2939, 936, 'pyre_page_title_mobile_height', ''),
(2940, 936, 'pyre_page_title_bar_bg', ''),
(2941, 936, 'pyre_page_title_bar_bg_retina', ''),
(2942, 936, 'pyre_page_title_bar_bg_color', ''),
(2943, 936, 'pyre_page_title_bar_borders_color', ''),
(2944, 936, 'pyre_page_title_bar_bg_full', 'default'),
(2945, 936, 'pyre_page_title_bg_parallax', 'default'),
(2946, 936, 'pyre_page_title_breadcrumbs_search_bar', 'default'),
(2951, 936, 'sbg_selected_sidebar', 'a:1:{i:0;s:1:\"0\";}'),
(2952, 936, 'sbg_selected_sidebar_replacement', 'a:1:{i:0;s:0:\"\";}'),
(2953, 936, 'sbg_selected_sidebar_2', 'a:1:{i:0;s:1:\"0\";}'),
(2954, 936, 'sbg_selected_sidebar_2_replacement', 'a:1:{i:0;s:0:\"\";}'),
(2955, 938, '_edit_last', '1'),
(2956, 938, '_edit_lock', '1441639168:1'),
(2957, 938, '_thumbnail_id', '920'),
(2962, 938, 'slide_template', 'default'),
(2963, 938, 'fusion_builder_status', 'inactive'),
(2964, 939, 'FB_content', ''),
(2965, 938, 'pyre_width', 'full'),
(2966, 938, 'pyre_portfolio_width_100', 'no'),
(2967, 938, 'pyre_project_desc_title', 'yes'),
(2968, 938, 'pyre_project_details', 'yes'),
(2969, 938, 'pyre_show_first_featured_image', 'no'),
(2970, 938, 'pyre_video', ''),
(2971, 938, 'pyre_video_url', ''),
(2972, 938, 'pyre_project_url', ''),
(2973, 938, 'pyre_project_url_text', ''),
(2974, 938, 'pyre_copy_url', ''),
(2975, 938, 'pyre_copy_url_text', ''),
(2976, 938, 'pyre_fimg_width', ''),
(2977, 938, 'pyre_fimg_height', ''),
(2978, 938, 'pyre_image_rollover_icons', 'default'),
(2979, 938, 'pyre_link_icon_url', ''),
(2980, 938, 'pyre_link_icon_target', 'no'),
(2981, 938, 'pyre_related_posts', 'default'),
(2982, 938, 'pyre_share_box', 'default'),
(2983, 938, 'pyre_post_pagination', 'default'),
(2984, 938, 'pyre_main_top_padding', ''),
(2985, 938, 'pyre_main_bottom_padding', ''),
(2986, 938, 'pyre_hundredp_padding', ''),
(2987, 938, 'pyre_slider_position', 'default'),
(2988, 938, 'pyre_slider_type', 'no'),
(2989, 938, 'pyre_slider', '0'),
(2990, 938, 'pyre_wooslider', '0'),
(2991, 938, 'pyre_revslider', '0'),
(2992, 938, 'pyre_elasticslider', '0'),
(2993, 938, 'pyre_fallback', ''),
(2994, 938, 'pyre_avada_rev_styles', 'default'),
(2995, 938, 'pyre_display_header', 'yes'),
(2996, 938, 'pyre_header_100_width', 'default'),
(2997, 938, 'pyre_header_bg', ''),
(2998, 938, 'pyre_header_bg_color', ''),
(2999, 938, 'pyre_header_bg_opacity', ''),
(3000, 938, 'pyre_header_bg_full', 'no'),
(3001, 938, 'pyre_header_bg_repeat', 'repeat'),
(3002, 938, 'pyre_displayed_menu', 'default'),
(3003, 938, 'pyre_display_footer', 'default'),
(3004, 938, 'pyre_display_copyright', 'default'),
(3005, 938, 'pyre_footer_100_width', 'default'),
(3006, 938, 'pyre_sidebar_position', 'default'),
(3007, 938, 'pyre_sidebar_bg_color', ''),
(3008, 938, 'pyre_page_bg_layout', 'default'),
(3009, 938, 'pyre_page_bg', ''),
(3010, 938, 'pyre_page_bg_color', ''),
(3011, 938, 'pyre_page_bg_full', 'no'),
(3012, 938, 'pyre_page_bg_repeat', 'repeat'),
(3013, 938, 'pyre_wide_page_bg', ''),
(3014, 938, 'pyre_wide_page_bg_color', ''),
(3015, 938, 'pyre_wide_page_bg_full', 'no'),
(3016, 938, 'pyre_wide_page_bg_repeat', 'repeat'),
(3017, 938, 'pyre_page_title', 'default'),
(3018, 938, 'pyre_page_title_text', 'default'),
(3019, 938, 'pyre_page_title_text_alignment', 'default'),
(3020, 938, 'pyre_page_title_100_width', 'default'),
(3021, 938, 'pyre_page_title_custom_text', ''),
(3022, 938, 'pyre_page_title_text_size', ''),
(3023, 938, 'pyre_page_title_custom_subheader', ''),
(3024, 938, 'pyre_page_title_custom_subheader_text_size', ''),
(3025, 938, 'pyre_page_title_font_color', ''),
(3026, 938, 'pyre_page_title_height', ''),
(3027, 938, 'pyre_page_title_mobile_height', ''),
(3028, 938, 'pyre_page_title_bar_bg', ''),
(3029, 938, 'pyre_page_title_bar_bg_retina', ''),
(3030, 938, 'pyre_page_title_bar_bg_color', ''),
(3031, 938, 'pyre_page_title_bar_borders_color', ''),
(3032, 938, 'pyre_page_title_bar_bg_full', 'default'),
(3033, 938, 'pyre_page_title_bg_parallax', 'default'),
(3034, 938, 'pyre_page_title_breadcrumbs_search_bar', 'default'),
(3039, 938, 'sbg_selected_sidebar', 'a:1:{i:0;s:1:\"0\";}'),
(3040, 938, 'sbg_selected_sidebar_replacement', 'a:1:{i:0;s:0:\"\";}'),
(3041, 938, 'sbg_selected_sidebar_2', 'a:1:{i:0;s:1:\"0\";}'),
(3042, 938, 'sbg_selected_sidebar_2_replacement', 'a:1:{i:0;s:0:\"\";}'),
(3048, 940, 'FB_content', ''),
(3061, 941, 'FB_content', ''),
(3071, 942, '_edit_last', '1'),
(3072, 942, '_edit_lock', '1441641586:1'),
(3073, 943, '_wp_attached_file', '2015/09/Easter-Pics-079-800-x-533.jpg'),
(3074, 943, '_wp_attachment_metadata', 'a:5:{s:5:\"width\";i:800;s:6:\"height\";i:533;s:4:\"file\";s:37:\"2015/09/Easter-Pics-079-800-x-533.jpg\";s:5:\"sizes\";a:15:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:37:\"Easter-Pics-079-800-x-533-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:37:\"Easter-Pics-079-800-x-533-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:10:\"blog-large\";a:4:{s:4:\"file\";s:37:\"Easter-Pics-079-800-x-533-669x272.jpg\";s:5:\"width\";i:669;s:6:\"height\";i:272;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"blog-medium\";a:4:{s:4:\"file\";s:37:\"Easter-Pics-079-800-x-533-320x202.jpg\";s:5:\"width\";i:320;s:6:\"height\";i:202;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:8:\"tabs-img\";a:4:{s:4:\"file\";s:35:\"Easter-Pics-079-800-x-533-52x50.jpg\";s:5:\"width\";i:52;s:6:\"height\";i:50;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"related-img\";a:4:{s:4:\"file\";s:37:\"Easter-Pics-079-800-x-533-180x138.jpg\";s:5:\"width\";i:180;s:6:\"height\";i:138;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"portfolio-full\";a:4:{s:4:\"file\";s:37:\"Easter-Pics-079-800-x-533-800x400.jpg\";s:5:\"width\";i:800;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:13:\"portfolio-one\";a:4:{s:4:\"file\";s:37:\"Easter-Pics-079-800-x-533-540x272.jpg\";s:5:\"width\";i:540;s:6:\"height\";i:272;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:13:\"portfolio-two\";a:4:{s:4:\"file\";s:37:\"Easter-Pics-079-800-x-533-460x295.jpg\";s:5:\"width\";i:460;s:6:\"height\";i:295;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"portfolio-three\";a:4:{s:4:\"file\";s:37:\"Easter-Pics-079-800-x-533-300x214.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:214;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"portfolio-four\";a:4:{s:4:\"file\";s:37:\"Easter-Pics-079-800-x-533-220x161.jpg\";s:5:\"width\";i:220;s:6:\"height\";i:161;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"portfolio-five\";a:4:{s:4:\"file\";s:37:\"Easter-Pics-079-800-x-533-177x142.jpg\";s:5:\"width\";i:177;s:6:\"height\";i:142;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:13:\"portfolio-six\";a:4:{s:4:\"file\";s:37:\"Easter-Pics-079-800-x-533-147x118.jpg\";s:5:\"width\";i:147;s:6:\"height\";i:118;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"recent-posts\";a:4:{s:4:\"file\";s:37:\"Easter-Pics-079-800-x-533-700x441.jpg\";s:5:\"width\";i:700;s:6:\"height\";i:441;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:22:\"recent-works-thumbnail\";a:4:{s:4:\"file\";s:35:\"Easter-Pics-079-800-x-533-66x66.jpg\";s:5:\"width\";i:66;s:6:\"height\";i:66;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;s:14:\"resized_images\";a:1:{i:0;s:7:\"500x383\";}}}'),
(3075, 944, '_wp_attached_file', '2015/09/Easter-Pics-031-800-x-533.jpg'),
(3076, 944, '_wp_attachment_metadata', 'a:5:{s:5:\"width\";i:800;s:6:\"height\";i:533;s:4:\"file\";s:37:\"2015/09/Easter-Pics-031-800-x-533.jpg\";s:5:\"sizes\";a:15:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:37:\"Easter-Pics-031-800-x-533-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:37:\"Easter-Pics-031-800-x-533-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:10:\"blog-large\";a:4:{s:4:\"file\";s:37:\"Easter-Pics-031-800-x-533-669x272.jpg\";s:5:\"width\";i:669;s:6:\"height\";i:272;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"blog-medium\";a:4:{s:4:\"file\";s:37:\"Easter-Pics-031-800-x-533-320x202.jpg\";s:5:\"width\";i:320;s:6:\"height\";i:202;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:8:\"tabs-img\";a:4:{s:4:\"file\";s:35:\"Easter-Pics-031-800-x-533-52x50.jpg\";s:5:\"width\";i:52;s:6:\"height\";i:50;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"related-img\";a:4:{s:4:\"file\";s:37:\"Easter-Pics-031-800-x-533-180x138.jpg\";s:5:\"width\";i:180;s:6:\"height\";i:138;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"portfolio-full\";a:4:{s:4:\"file\";s:37:\"Easter-Pics-031-800-x-533-800x400.jpg\";s:5:\"width\";i:800;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:13:\"portfolio-one\";a:4:{s:4:\"file\";s:37:\"Easter-Pics-031-800-x-533-540x272.jpg\";s:5:\"width\";i:540;s:6:\"height\";i:272;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:13:\"portfolio-two\";a:4:{s:4:\"file\";s:37:\"Easter-Pics-031-800-x-533-460x295.jpg\";s:5:\"width\";i:460;s:6:\"height\";i:295;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"portfolio-three\";a:4:{s:4:\"file\";s:37:\"Easter-Pics-031-800-x-533-300x214.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:214;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"portfolio-four\";a:4:{s:4:\"file\";s:37:\"Easter-Pics-031-800-x-533-220x161.jpg\";s:5:\"width\";i:220;s:6:\"height\";i:161;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"portfolio-five\";a:4:{s:4:\"file\";s:37:\"Easter-Pics-031-800-x-533-177x142.jpg\";s:5:\"width\";i:177;s:6:\"height\";i:142;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:13:\"portfolio-six\";a:4:{s:4:\"file\";s:37:\"Easter-Pics-031-800-x-533-147x118.jpg\";s:5:\"width\";i:147;s:6:\"height\";i:118;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"recent-posts\";a:4:{s:4:\"file\";s:37:\"Easter-Pics-031-800-x-533-700x441.jpg\";s:5:\"width\";i:700;s:6:\"height\";i:441;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:22:\"recent-works-thumbnail\";a:4:{s:4:\"file\";s:35:\"Easter-Pics-031-800-x-533-66x66.jpg\";s:5:\"width\";i:66;s:6:\"height\";i:66;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'),
(3077, 945, '_wp_attached_file', '2015/09/1069313_696715170354986_547614926_n-800-x-533.jpg'),
(3078, 945, '_wp_attachment_metadata', 'a:5:{s:5:\"width\";i:800;s:6:\"height\";i:533;s:4:\"file\";s:57:\"2015/09/1069313_696715170354986_547614926_n-800-x-533.jpg\";s:5:\"sizes\";a:15:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:57:\"1069313_696715170354986_547614926_n-800-x-533-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:57:\"1069313_696715170354986_547614926_n-800-x-533-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:10:\"blog-large\";a:4:{s:4:\"file\";s:57:\"1069313_696715170354986_547614926_n-800-x-533-669x272.jpg\";s:5:\"width\";i:669;s:6:\"height\";i:272;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"blog-medium\";a:4:{s:4:\"file\";s:57:\"1069313_696715170354986_547614926_n-800-x-533-320x202.jpg\";s:5:\"width\";i:320;s:6:\"height\";i:202;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:8:\"tabs-img\";a:4:{s:4:\"file\";s:55:\"1069313_696715170354986_547614926_n-800-x-533-52x50.jpg\";s:5:\"width\";i:52;s:6:\"height\";i:50;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"related-img\";a:4:{s:4:\"file\";s:57:\"1069313_696715170354986_547614926_n-800-x-533-180x138.jpg\";s:5:\"width\";i:180;s:6:\"height\";i:138;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"portfolio-full\";a:4:{s:4:\"file\";s:57:\"1069313_696715170354986_547614926_n-800-x-533-800x400.jpg\";s:5:\"width\";i:800;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:13:\"portfolio-one\";a:4:{s:4:\"file\";s:57:\"1069313_696715170354986_547614926_n-800-x-533-540x272.jpg\";s:5:\"width\";i:540;s:6:\"height\";i:272;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:13:\"portfolio-two\";a:4:{s:4:\"file\";s:57:\"1069313_696715170354986_547614926_n-800-x-533-460x295.jpg\";s:5:\"width\";i:460;s:6:\"height\";i:295;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"portfolio-three\";a:4:{s:4:\"file\";s:57:\"1069313_696715170354986_547614926_n-800-x-533-300x214.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:214;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"portfolio-four\";a:4:{s:4:\"file\";s:57:\"1069313_696715170354986_547614926_n-800-x-533-220x161.jpg\";s:5:\"width\";i:220;s:6:\"height\";i:161;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"portfolio-five\";a:4:{s:4:\"file\";s:57:\"1069313_696715170354986_547614926_n-800-x-533-177x142.jpg\";s:5:\"width\";i:177;s:6:\"height\";i:142;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:13:\"portfolio-six\";a:4:{s:4:\"file\";s:57:\"1069313_696715170354986_547614926_n-800-x-533-147x118.jpg\";s:5:\"width\";i:147;s:6:\"height\";i:118;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"recent-posts\";a:4:{s:4:\"file\";s:57:\"1069313_696715170354986_547614926_n-800-x-533-700x441.jpg\";s:5:\"width\";i:700;s:6:\"height\";i:441;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:22:\"recent-works-thumbnail\";a:4:{s:4:\"file\";s:55:\"1069313_696715170354986_547614926_n-800-x-533-66x66.jpg\";s:5:\"width\";i:66;s:6:\"height\";i:66;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;s:14:\"resized_images\";a:1:{i:0;s:8:\"1000x766\";}}}'),
(3079, 942, '_thumbnail_id', '945'),
(3084, 942, 'slide_template', 'default'),
(3085, 942, 'fusion_builder_status', 'inactive'),
(3086, 946, 'FB_content', ''),
(3087, 942, 'pyre_width', 'full'),
(3088, 942, 'pyre_portfolio_width_100', 'no'),
(3089, 942, 'pyre_project_desc_title', 'yes'),
(3090, 942, 'pyre_project_details', 'yes'),
(3091, 942, 'pyre_show_first_featured_image', 'no'),
(3092, 942, 'pyre_video', ''),
(3093, 942, 'pyre_video_url', ''),
(3094, 942, 'pyre_project_url', ''),
(3095, 942, 'pyre_project_url_text', ''),
(3096, 942, 'pyre_copy_url', ''),
(3097, 942, 'pyre_copy_url_text', ''),
(3098, 942, 'pyre_fimg_width', ''),
(3099, 942, 'pyre_fimg_height', ''),
(3100, 942, 'pyre_image_rollover_icons', 'default'),
(3101, 942, 'pyre_link_icon_url', ''),
(3102, 942, 'pyre_link_icon_target', 'no'),
(3103, 942, 'pyre_related_posts', 'default'),
(3104, 942, 'pyre_share_box', 'default'),
(3105, 942, 'pyre_post_pagination', 'default'),
(3106, 942, 'pyre_main_top_padding', ''),
(3107, 942, 'pyre_main_bottom_padding', ''),
(3108, 942, 'pyre_hundredp_padding', ''),
(3109, 942, 'pyre_slider_position', 'default'),
(3110, 942, 'pyre_slider_type', 'no'),
(3111, 942, 'pyre_slider', '0'),
(3112, 942, 'pyre_wooslider', '0'),
(3113, 942, 'pyre_revslider', '0'),
(3114, 942, 'pyre_elasticslider', '0'),
(3115, 942, 'pyre_fallback', ''),
(3116, 942, 'pyre_avada_rev_styles', 'default'),
(3117, 942, 'pyre_display_header', 'yes'),
(3118, 942, 'pyre_header_100_width', 'default'),
(3119, 942, 'pyre_header_bg', ''),
(3120, 942, 'pyre_header_bg_color', ''),
(3121, 942, 'pyre_header_bg_opacity', ''),
(3122, 942, 'pyre_header_bg_full', 'no'),
(3123, 942, 'pyre_header_bg_repeat', 'repeat'),
(3124, 942, 'pyre_displayed_menu', 'default'),
(3125, 942, 'pyre_display_footer', 'default'),
(3126, 942, 'pyre_display_copyright', 'default'),
(3127, 942, 'pyre_footer_100_width', 'default'),
(3128, 942, 'pyre_sidebar_position', 'default'),
(3129, 942, 'pyre_sidebar_bg_color', ''),
(3130, 942, 'pyre_page_bg_layout', 'default'),
(3131, 942, 'pyre_page_bg', ''),
(3132, 942, 'pyre_page_bg_color', ''),
(3133, 942, 'pyre_page_bg_full', 'no'),
(3134, 942, 'pyre_page_bg_repeat', 'repeat'),
(3135, 942, 'pyre_wide_page_bg', ''),
(3136, 942, 'pyre_wide_page_bg_color', ''),
(3137, 942, 'pyre_wide_page_bg_full', 'no'),
(3138, 942, 'pyre_wide_page_bg_repeat', 'repeat'),
(3139, 942, 'pyre_page_title', 'default'),
(3140, 942, 'pyre_page_title_text', 'default'),
(3141, 942, 'pyre_page_title_text_alignment', 'default'),
(3142, 942, 'pyre_page_title_100_width', 'default'),
(3143, 942, 'pyre_page_title_custom_text', ''),
(3144, 942, 'pyre_page_title_text_size', ''),
(3145, 942, 'pyre_page_title_custom_subheader', ''),
(3146, 942, 'pyre_page_title_custom_subheader_text_size', ''),
(3147, 942, 'pyre_page_title_font_color', ''),
(3148, 942, 'pyre_page_title_height', ''),
(3149, 942, 'pyre_page_title_mobile_height', ''),
(3150, 942, 'pyre_page_title_bar_bg', ''),
(3151, 942, 'pyre_page_title_bar_bg_retina', ''),
(3152, 942, 'pyre_page_title_bar_bg_color', ''),
(3153, 942, 'pyre_page_title_bar_borders_color', ''),
(3154, 942, 'pyre_page_title_bar_bg_full', 'default'),
(3155, 942, 'pyre_page_title_bg_parallax', 'default'),
(3156, 942, 'pyre_page_title_breadcrumbs_search_bar', 'default'),
(3161, 942, 'sbg_selected_sidebar', 'a:1:{i:0;s:1:\"0\";}'),
(3162, 942, 'sbg_selected_sidebar_replacement', 'a:1:{i:0;s:0:\"\";}'),
(3163, 942, 'sbg_selected_sidebar_2', 'a:1:{i:0;s:1:\"0\";}'),
(3164, 942, 'sbg_selected_sidebar_2_replacement', 'a:1:{i:0;s:0:\"\";}'),
(3169, 947, 'FB_content', ''),
(3178, 948, '_edit_last', '1'),
(3179, 948, '_edit_lock', '1461097298:1'),
(3185, 948, 'slide_template', ''),
(3186, 948, 'fusion_builder_status', 'inactive'),
(3187, 949, 'FB_content', ''),
(3188, 948, 'pyre_width', 'full'),
(3189, 948, 'pyre_portfolio_width_100', 'no'),
(3190, 948, 'pyre_project_desc_title', 'yes'),
(3191, 948, 'pyre_project_details', 'yes'),
(3192, 948, 'pyre_show_first_featured_image', 'no'),
(3193, 948, 'pyre_video', ''),
(3194, 948, 'pyre_video_url', ''),
(3195, 948, 'pyre_project_url', ''),
(3196, 948, 'pyre_project_url_text', ''),
(3197, 948, 'pyre_copy_url', ''),
(3198, 948, 'pyre_copy_url_text', ''),
(3199, 948, 'pyre_fimg_width', ''),
(3200, 948, 'pyre_fimg_height', ''),
(3201, 948, 'pyre_image_rollover_icons', 'default'),
(3202, 948, 'pyre_link_icon_url', ''),
(3203, 948, 'pyre_link_icon_target', 'no'),
(3204, 948, 'pyre_related_posts', 'default'),
(3205, 948, 'pyre_share_box', 'default'),
(3206, 948, 'pyre_post_pagination', 'default'),
(3207, 948, 'pyre_main_top_padding', ''),
(3208, 948, 'pyre_main_bottom_padding', ''),
(3209, 948, 'pyre_hundredp_padding', ''),
(3210, 948, 'pyre_slider_position', 'default'),
(3211, 948, 'pyre_slider_type', 'no'),
(3212, 948, 'pyre_slider', '0'),
(3213, 948, 'pyre_wooslider', '0'),
(3214, 948, 'pyre_revslider', '0'),
(3215, 948, 'pyre_elasticslider', '0'),
(3216, 948, 'pyre_fallback', ''),
(3217, 948, 'pyre_avada_rev_styles', 'default'),
(3218, 948, 'pyre_display_header', 'yes'),
(3219, 948, 'pyre_header_100_width', 'default'),
(3220, 948, 'pyre_header_bg', ''),
(3221, 948, 'pyre_header_bg_color', ''),
(3222, 948, 'pyre_header_bg_opacity', ''),
(3223, 948, 'pyre_header_bg_full', 'no'),
(3224, 948, 'pyre_header_bg_repeat', 'repeat'),
(3225, 948, 'pyre_displayed_menu', 'default'),
(3226, 948, 'pyre_display_footer', 'default'),
(3227, 948, 'pyre_display_copyright', 'default'),
(3228, 948, 'pyre_footer_100_width', 'default'),
(3229, 948, 'pyre_sidebar_position', 'default'),
(3230, 948, 'pyre_sidebar_bg_color', ''),
(3231, 948, 'pyre_page_bg_layout', 'default'),
(3232, 948, 'pyre_page_bg', ''),
(3233, 948, 'pyre_page_bg_color', ''),
(3234, 948, 'pyre_page_bg_full', 'no'),
(3235, 948, 'pyre_page_bg_repeat', 'repeat'),
(3236, 948, 'pyre_wide_page_bg', ''),
(3237, 948, 'pyre_wide_page_bg_color', ''),
(3238, 948, 'pyre_wide_page_bg_full', 'no'),
(3239, 948, 'pyre_wide_page_bg_repeat', 'repeat'),
(3240, 948, 'pyre_page_title', 'default'),
(3241, 948, 'pyre_page_title_text', 'default'),
(3242, 948, 'pyre_page_title_text_alignment', 'default'),
(3243, 948, 'pyre_page_title_100_width', 'default'),
(3244, 948, 'pyre_page_title_custom_text', ''),
(3245, 948, 'pyre_page_title_text_size', ''),
(3246, 948, 'pyre_page_title_custom_subheader', ''),
(3247, 948, 'pyre_page_title_custom_subheader_text_size', ''),
(3248, 948, 'pyre_page_title_font_color', ''),
(3249, 948, 'pyre_page_title_height', ''),
(3250, 948, 'pyre_page_title_mobile_height', ''),
(3251, 948, 'pyre_page_title_bar_bg', ''),
(3252, 948, 'pyre_page_title_bar_bg_retina', ''),
(3253, 948, 'pyre_page_title_bar_bg_color', ''),
(3254, 948, 'pyre_page_title_bar_borders_color', ''),
(3255, 948, 'pyre_page_title_bar_bg_full', 'default'),
(3256, 948, 'pyre_page_title_bg_parallax', 'default'),
(3257, 948, 'pyre_page_title_breadcrumbs_search_bar', 'default'),
(3266, 950, '_edit_last', '1'),
(3267, 950, '_edit_lock', '1442921659:1'),
(3268, 950, '_thumbnail_id', '943'),
(3273, 950, 'slide_template', 'default'),
(3274, 950, 'fusion_builder_status', 'inactive'),
(3275, 951, 'FB_content', ''),
(3276, 950, 'pyre_width', 'full'),
(3277, 950, 'pyre_portfolio_width_100', 'no'),
(3278, 950, 'pyre_project_desc_title', 'yes'),
(3279, 950, 'pyre_project_details', 'yes'),
(3280, 950, 'pyre_show_first_featured_image', 'no'),
(3281, 950, 'pyre_video', ''),
(3282, 950, 'pyre_video_url', ''),
(3283, 950, 'pyre_project_url', ''),
(3284, 950, 'pyre_project_url_text', ''),
(3285, 950, 'pyre_copy_url', ''),
(3286, 950, 'pyre_copy_url_text', ''),
(3287, 950, 'pyre_fimg_width', ''),
(3288, 950, 'pyre_fimg_height', ''),
(3289, 950, 'pyre_image_rollover_icons', 'default'),
(3290, 950, 'pyre_link_icon_url', ''),
(3291, 950, 'pyre_link_icon_target', 'no'),
(3292, 950, 'pyre_related_posts', 'default'),
(3293, 950, 'pyre_share_box', 'default'),
(3294, 950, 'pyre_post_pagination', 'default'),
(3295, 950, 'pyre_main_top_padding', ''),
(3296, 950, 'pyre_main_bottom_padding', ''),
(3297, 950, 'pyre_hundredp_padding', ''),
(3298, 950, 'pyre_slider_position', 'default'),
(3299, 950, 'pyre_slider_type', 'no'),
(3300, 950, 'pyre_slider', '0'),
(3301, 950, 'pyre_wooslider', '0'),
(3302, 950, 'pyre_revslider', '0'),
(3303, 950, 'pyre_elasticslider', '0'),
(3304, 950, 'pyre_fallback', ''),
(3305, 950, 'pyre_avada_rev_styles', 'default'),
(3306, 950, 'pyre_display_header', 'yes'),
(3307, 950, 'pyre_header_100_width', 'default'),
(3308, 950, 'pyre_header_bg', ''),
(3309, 950, 'pyre_header_bg_color', ''),
(3310, 950, 'pyre_header_bg_opacity', ''),
(3311, 950, 'pyre_header_bg_full', 'no'),
(3312, 950, 'pyre_header_bg_repeat', 'repeat'),
(3313, 950, 'pyre_displayed_menu', 'default'),
(3314, 950, 'pyre_display_footer', 'default'),
(3315, 950, 'pyre_display_copyright', 'default'),
(3316, 950, 'pyre_footer_100_width', 'default'),
(3317, 950, 'pyre_sidebar_position', 'default'),
(3318, 950, 'pyre_sidebar_bg_color', ''),
(3319, 950, 'pyre_page_bg_layout', 'default'),
(3320, 950, 'pyre_page_bg', ''),
(3321, 950, 'pyre_page_bg_color', ''),
(3322, 950, 'pyre_page_bg_full', 'no'),
(3323, 950, 'pyre_page_bg_repeat', 'repeat'),
(3324, 950, 'pyre_wide_page_bg', ''),
(3325, 950, 'pyre_wide_page_bg_color', ''),
(3326, 950, 'pyre_wide_page_bg_full', 'no'),
(3327, 950, 'pyre_wide_page_bg_repeat', 'repeat'),
(3328, 950, 'pyre_page_title', 'default'),
(3329, 950, 'pyre_page_title_text', 'default'),
(3330, 950, 'pyre_page_title_text_alignment', 'default'),
(3331, 950, 'pyre_page_title_100_width', 'default'),
(3332, 950, 'pyre_page_title_custom_text', ''),
(3333, 950, 'pyre_page_title_text_size', ''),
(3334, 950, 'pyre_page_title_custom_subheader', ''),
(3335, 950, 'pyre_page_title_custom_subheader_text_size', ''),
(3336, 950, 'pyre_page_title_font_color', ''),
(3337, 950, 'pyre_page_title_height', ''),
(3338, 950, 'pyre_page_title_mobile_height', ''),
(3339, 950, 'pyre_page_title_bar_bg', ''),
(3340, 950, 'pyre_page_title_bar_bg_retina', ''),
(3341, 950, 'pyre_page_title_bar_bg_color', ''),
(3342, 950, 'pyre_page_title_bar_borders_color', ''),
(3343, 950, 'pyre_page_title_bar_bg_full', 'default'),
(3344, 950, 'pyre_page_title_bg_parallax', 'default'),
(3345, 950, 'pyre_page_title_breadcrumbs_search_bar', 'default'),
(3358, 952, 'FB_content', ''),
(3371, 953, 'FB_content', ''),
(3384, 954, 'FB_content', ''),
(3397, 955, 'FB_content', ''),
(3410, 956, 'FB_content', ''),
(3423, 957, 'FB_content', ''),
(3436, 958, 'FB_content', ''),
(3449, 959, 'FB_content', ''),
(3462, 960, 'FB_content', ''),
(3475, 961, 'FB_content', ''),
(3488, 962, 'FB_content', ''),
(3501, 963, 'FB_content', ''),
(3512, 965, '_wp_attached_file', '2015/09/LOGO.png');
INSERT INTO `wp_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(3513, 965, '_wp_attachment_metadata', 'a:5:{s:5:\"width\";i:626;s:6:\"height\";i:60;s:4:\"file\";s:16:\"2015/09/LOGO.png\";s:5:\"sizes\";a:12:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:15:\"LOGO-150x60.png\";s:5:\"width\";i:150;s:6:\"height\";i:60;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:15:\"LOGO-300x29.png\";s:5:\"width\";i:300;s:6:\"height\";i:29;s:9:\"mime-type\";s:9:\"image/png\";}s:11:\"blog-medium\";a:4:{s:4:\"file\";s:15:\"LOGO-320x60.png\";s:5:\"width\";i:320;s:6:\"height\";i:60;s:9:\"mime-type\";s:9:\"image/png\";}s:8:\"tabs-img\";a:4:{s:4:\"file\";s:14:\"LOGO-52x50.png\";s:5:\"width\";i:52;s:6:\"height\";i:50;s:9:\"mime-type\";s:9:\"image/png\";}s:11:\"related-img\";a:4:{s:4:\"file\";s:15:\"LOGO-180x60.png\";s:5:\"width\";i:180;s:6:\"height\";i:60;s:9:\"mime-type\";s:9:\"image/png\";}s:13:\"portfolio-one\";a:4:{s:4:\"file\";s:15:\"LOGO-540x60.png\";s:5:\"width\";i:540;s:6:\"height\";i:60;s:9:\"mime-type\";s:9:\"image/png\";}s:13:\"portfolio-two\";a:4:{s:4:\"file\";s:15:\"LOGO-460x60.png\";s:5:\"width\";i:460;s:6:\"height\";i:60;s:9:\"mime-type\";s:9:\"image/png\";}s:15:\"portfolio-three\";a:4:{s:4:\"file\";s:15:\"LOGO-300x60.png\";s:5:\"width\";i:300;s:6:\"height\";i:60;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"portfolio-four\";a:4:{s:4:\"file\";s:15:\"LOGO-220x60.png\";s:5:\"width\";i:220;s:6:\"height\";i:60;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"portfolio-five\";a:4:{s:4:\"file\";s:15:\"LOGO-177x60.png\";s:5:\"width\";i:177;s:6:\"height\";i:60;s:9:\"mime-type\";s:9:\"image/png\";}s:13:\"portfolio-six\";a:4:{s:4:\"file\";s:15:\"LOGO-147x60.png\";s:5:\"width\";i:147;s:6:\"height\";i:60;s:9:\"mime-type\";s:9:\"image/png\";}s:22:\"recent-works-thumbnail\";a:4:{s:4:\"file\";s:14:\"LOGO-66x60.png\";s:5:\"width\";i:66;s:6:\"height\";i:60;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'),
(3514, 966, '_wp_attached_file', '2015/09/SMALL-LOGO.png'),
(3515, 966, '_wp_attachment_metadata', 'a:5:{s:5:\"width\";i:205;s:6:\"height\";i:60;s:4:\"file\";s:22:\"2015/09/SMALL-LOGO.png\";s:5:\"sizes\";a:6:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:21:\"SMALL-LOGO-150x60.png\";s:5:\"width\";i:150;s:6:\"height\";i:60;s:9:\"mime-type\";s:9:\"image/png\";}s:8:\"tabs-img\";a:4:{s:4:\"file\";s:20:\"SMALL-LOGO-52x50.png\";s:5:\"width\";i:52;s:6:\"height\";i:50;s:9:\"mime-type\";s:9:\"image/png\";}s:11:\"related-img\";a:4:{s:4:\"file\";s:21:\"SMALL-LOGO-180x60.png\";s:5:\"width\";i:180;s:6:\"height\";i:60;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"portfolio-five\";a:4:{s:4:\"file\";s:21:\"SMALL-LOGO-177x60.png\";s:5:\"width\";i:177;s:6:\"height\";i:60;s:9:\"mime-type\";s:9:\"image/png\";}s:13:\"portfolio-six\";a:4:{s:4:\"file\";s:21:\"SMALL-LOGO-147x60.png\";s:5:\"width\";i:147;s:6:\"height\";i:60;s:9:\"mime-type\";s:9:\"image/png\";}s:22:\"recent-works-thumbnail\";a:4:{s:4:\"file\";s:20:\"SMALL-LOGO-66x60.png\";s:5:\"width\";i:66;s:6:\"height\";i:60;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'),
(3537, 968, 'FB_content', ''),
(3550, 969, 'FB_content', ''),
(3571, 970, 'FB_content', ''),
(3584, 971, 'FB_content', ''),
(3593, 835, 'FB_content', ''),
(3606, 972, 'FB_content', ''),
(3619, 973, 'FB_content', ''),
(3640, 974, 'FB_content', ''),
(3654, 975, 'FB_content', ''),
(3667, 976, 'FB_content', ''),
(3680, 977, 'FB_content', ''),
(3693, 978, 'FB_content', ''),
(3706, 979, 'FB_content', ''),
(3719, 980, 'FB_content', ''),
(3732, 981, 'FB_content', ''),
(3745, 982, 'FB_content', ''),
(3758, 983, 'FB_content', ''),
(3767, 984, '_edit_last', '1'),
(3768, 984, '_edit_lock', '1505725984:1'),
(3769, 984, '_wp_page_template', 'default'),
(3774, 984, 'slide_template', 'default'),
(3775, 984, 'fusion_builder_status', 'active'),
(3776, 985, 'FB_content', ''),
(3777, 984, 'pyre_slider_position', 'default'),
(3778, 984, 'pyre_slider_type', 'no'),
(3779, 984, 'pyre_slider', '0'),
(3780, 984, 'pyre_wooslider', '0'),
(3781, 984, 'pyre_revslider', '0'),
(3782, 984, 'pyre_elasticslider', '0'),
(3783, 984, 'pyre_fallback', ''),
(3784, 984, 'pyre_avada_rev_styles', 'default'),
(3785, 984, 'pyre_main_top_padding', ''),
(3786, 984, 'pyre_main_bottom_padding', ''),
(3787, 984, 'pyre_hundredp_padding', ''),
(3788, 984, 'pyre_show_first_featured_image', 'no'),
(3789, 984, 'pyre_display_header', 'yes'),
(3790, 984, 'pyre_header_100_width', 'default'),
(3791, 984, 'pyre_header_bg', ''),
(3792, 984, 'pyre_header_bg_color', ''),
(3793, 984, 'pyre_header_bg_opacity', ''),
(3794, 984, 'pyre_header_bg_full', 'no'),
(3795, 984, 'pyre_header_bg_repeat', 'repeat'),
(3796, 984, 'pyre_displayed_menu', 'default'),
(3797, 984, 'pyre_display_footer', 'default'),
(3798, 984, 'pyre_display_copyright', 'default'),
(3799, 984, 'pyre_footer_100_width', 'default'),
(3800, 984, 'pyre_sidebar_position', 'default'),
(3801, 984, 'pyre_sidebar_bg_color', ''),
(3802, 984, 'pyre_page_bg_layout', 'default'),
(3803, 984, 'pyre_page_bg', ''),
(3804, 984, 'pyre_page_bg_color', ''),
(3805, 984, 'pyre_page_bg_full', 'no'),
(3806, 984, 'pyre_page_bg_repeat', 'repeat'),
(3807, 984, 'pyre_wide_page_bg', ''),
(3808, 984, 'pyre_wide_page_bg_color', ''),
(3809, 984, 'pyre_wide_page_bg_full', 'no'),
(3810, 984, 'pyre_wide_page_bg_repeat', 'repeat'),
(3811, 984, 'pyre_portfolio_width_100', 'no'),
(3812, 984, 'pyre_portfolio_content_length', 'default'),
(3813, 984, 'pyre_portfolio_excerpt', ''),
(3814, 984, 'pyre_portfolio_filters', 'yes'),
(3815, 984, 'pyre_portfolio_text_layout', 'default'),
(3816, 984, 'pyre_portfolio_featured_image_size', 'default'),
(3817, 984, 'pyre_portfolio_column_spacing', ''),
(3818, 984, 'pyre_page_title', 'no'),
(3819, 984, 'pyre_page_title_text', 'default'),
(3820, 984, 'pyre_page_title_text_alignment', 'default'),
(3821, 984, 'pyre_page_title_100_width', 'default'),
(3822, 984, 'pyre_page_title_custom_text', ''),
(3823, 984, 'pyre_page_title_text_size', ''),
(3824, 984, 'pyre_page_title_custom_subheader', ''),
(3825, 984, 'pyre_page_title_custom_subheader_text_size', ''),
(3826, 984, 'pyre_page_title_font_color', ''),
(3827, 984, 'pyre_page_title_height', ''),
(3828, 984, 'pyre_page_title_mobile_height', ''),
(3829, 984, 'pyre_page_title_bar_bg', ''),
(3830, 984, 'pyre_page_title_bar_bg_retina', ''),
(3831, 984, 'pyre_page_title_bar_bg_color', ''),
(3832, 984, 'pyre_page_title_bar_borders_color', ''),
(3833, 984, 'pyre_page_title_bar_bg_full', 'default'),
(3834, 984, 'pyre_page_title_bg_parallax', 'default'),
(3835, 984, 'pyre_page_title_breadcrumbs_search_bar', 'default'),
(3844, 986, 'FB_content', ''),
(3849, 987, 'FB_content', ''),
(3862, 988, 'FB_content', ''),
(3875, 989, 'FB_content', ''),
(3905, 991, 'FB_content', ''),
(3918, 992, 'FB_content', ''),
(3931, 993, 'FB_content', ''),
(3952, 994, 'FB_content', ''),
(3961, 986, 'FB_content', ''),
(3966, 995, 'FB_content', ''),
(3979, 996, 'FB_content', ''),
(3992, 997, 'FB_content', ''),
(4001, 998, '_edit_last', '1'),
(4002, 998, '_edit_lock', '1583238790:1'),
(4003, 998, '_wp_page_template', 'default'),
(4008, 998, 'slide_template', 'default'),
(4009, 998, 'fusion_builder_status', 'active'),
(4010, 999, 'FB_content', ''),
(4011, 998, 'pyre_slider_position', 'default'),
(4012, 998, 'pyre_slider_type', 'no'),
(4013, 998, 'pyre_slider', '0'),
(4014, 998, 'pyre_wooslider', '0'),
(4015, 998, 'pyre_revslider', '0'),
(4016, 998, 'pyre_elasticslider', '0'),
(4017, 998, 'pyre_fallback', ''),
(4018, 998, 'pyre_avada_rev_styles', 'default'),
(4019, 998, 'pyre_main_top_padding', ''),
(4020, 998, 'pyre_main_bottom_padding', ''),
(4021, 998, 'pyre_hundredp_padding', ''),
(4022, 998, 'pyre_show_first_featured_image', 'no'),
(4023, 998, 'pyre_display_header', 'yes'),
(4024, 998, 'pyre_header_100_width', 'default'),
(4025, 998, 'pyre_header_bg', ''),
(4026, 998, 'pyre_header_bg_color', ''),
(4027, 998, 'pyre_header_bg_opacity', ''),
(4028, 998, 'pyre_header_bg_full', 'no'),
(4029, 998, 'pyre_header_bg_repeat', 'repeat'),
(4030, 998, 'pyre_displayed_menu', 'default'),
(4031, 998, 'pyre_display_footer', 'default'),
(4032, 998, 'pyre_display_copyright', 'default'),
(4033, 998, 'pyre_footer_100_width', 'default'),
(4034, 998, 'pyre_sidebar_position', 'default'),
(4035, 998, 'pyre_sidebar_bg_color', ''),
(4036, 998, 'pyre_page_bg_layout', 'default'),
(4037, 998, 'pyre_page_bg', ''),
(4038, 998, 'pyre_page_bg_color', ''),
(4039, 998, 'pyre_page_bg_full', 'no'),
(4040, 998, 'pyre_page_bg_repeat', 'repeat'),
(4041, 998, 'pyre_wide_page_bg', ''),
(4042, 998, 'pyre_wide_page_bg_color', ''),
(4043, 998, 'pyre_wide_page_bg_full', 'no'),
(4044, 998, 'pyre_wide_page_bg_repeat', 'repeat'),
(4045, 998, 'pyre_portfolio_width_100', 'no'),
(4046, 998, 'pyre_portfolio_content_length', 'default'),
(4047, 998, 'pyre_portfolio_excerpt', ''),
(4048, 998, 'pyre_portfolio_filters', 'yes'),
(4049, 998, 'pyre_portfolio_text_layout', 'default'),
(4050, 998, 'pyre_portfolio_featured_image_size', 'default'),
(4051, 998, 'pyre_portfolio_column_spacing', ''),
(4052, 998, 'pyre_page_title', 'no'),
(4053, 998, 'pyre_page_title_text', 'default'),
(4054, 998, 'pyre_page_title_text_alignment', 'default'),
(4055, 998, 'pyre_page_title_100_width', 'default'),
(4056, 998, 'pyre_page_title_custom_text', ''),
(4057, 998, 'pyre_page_title_text_size', ''),
(4058, 998, 'pyre_page_title_custom_subheader', ''),
(4059, 998, 'pyre_page_title_custom_subheader_text_size', ''),
(4060, 998, 'pyre_page_title_font_color', ''),
(4061, 998, 'pyre_page_title_height', ''),
(4062, 998, 'pyre_page_title_mobile_height', ''),
(4063, 998, 'pyre_page_title_bar_bg', ''),
(4064, 998, 'pyre_page_title_bar_bg_retina', ''),
(4065, 998, 'pyre_page_title_bar_bg_color', ''),
(4066, 998, 'pyre_page_title_bar_borders_color', ''),
(4067, 998, 'pyre_page_title_bar_bg_full', 'default'),
(4068, 998, 'pyre_page_title_bg_parallax', 'default'),
(4069, 998, 'pyre_page_title_breadcrumbs_search_bar', 'default'),
(4082, 1000, 'FB_content', ''),
(4095, 1001, 'FB_content', ''),
(4108, 1002, 'FB_content', ''),
(4113, 1003, 'FB_content', ''),
(4126, 1004, 'FB_content', ''),
(4135, 1005, '_menu_item_type', 'post_type'),
(4136, 1005, '_menu_item_menu_item_parent', '0'),
(4137, 1005, '_menu_item_object_id', '998'),
(4138, 1005, '_menu_item_object', 'page'),
(4139, 1005, '_menu_item_target', ''),
(4140, 1005, '_menu_item_classes', 'a:1:{i:0;s:0:\"\";}'),
(4141, 1005, '_menu_item_xfn', ''),
(4142, 1005, '_menu_item_url', ''),
(4152, 1006, '_menu_item_type', 'post_type'),
(4153, 1006, '_menu_item_menu_item_parent', '0'),
(4154, 1006, '_menu_item_object_id', '984'),
(4155, 1006, '_menu_item_object', 'page'),
(4156, 1006, '_menu_item_target', ''),
(4157, 1006, '_menu_item_classes', 'a:1:{i:0;s:0:\"\";}'),
(4158, 1006, '_menu_item_xfn', ''),
(4159, 1006, '_menu_item_url', ''),
(4169, 1007, 'FB_content', ''),
(4174, 1008, 'FB_content', ''),
(4195, 1009, 'FB_content', ''),
(4208, 1010, 'FB_content', ''),
(4221, 1011, 'FB_content', ''),
(4234, 1012, 'FB_content', ''),
(4247, 1013, 'FB_content', ''),
(4256, 1007, 'FB_content', ''),
(4261, 1014, 'FB_content', ''),
(4274, 1015, 'FB_content', ''),
(4287, 1016, 'FB_content', ''),
(4301, 1017, 'FB_content', ''),
(4338, 1018, 'FB_content', ''),
(4351, 1019, 'FB_content', ''),
(4364, 1020, 'FB_content', ''),
(4377, 1021, 'FB_content', ''),
(4390, 1022, 'FB_content', ''),
(4403, 1023, 'FB_content', ''),
(4416, 1024, 'FB_content', ''),
(4429, 1025, 'FB_content', ''),
(4443, 1026, 'FB_content', ''),
(4456, 1027, 'FB_content', ''),
(4470, 1028, 'FB_content', ''),
(4484, 1029, 'FB_content', ''),
(4497, 1030, 'FB_content', ''),
(4518, 1031, 'FB_content', ''),
(4527, 1034, '_wp_attached_file', '2015/01/trees_silhouette-800-x-450.jpg'),
(4528, 1034, '_wp_attachment_metadata', 'a:5:{s:5:\"width\";i:800;s:6:\"height\";i:450;s:4:\"file\";s:38:\"2015/01/trees_silhouette-800-x-450.jpg\";s:5:\"sizes\";a:15:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:38:\"trees_silhouette-800-x-450-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:38:\"trees_silhouette-800-x-450-300x169.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:169;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:10:\"blog-large\";a:4:{s:4:\"file\";s:38:\"trees_silhouette-800-x-450-669x272.jpg\";s:5:\"width\";i:669;s:6:\"height\";i:272;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"blog-medium\";a:4:{s:4:\"file\";s:38:\"trees_silhouette-800-x-450-320x202.jpg\";s:5:\"width\";i:320;s:6:\"height\";i:202;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:8:\"tabs-img\";a:4:{s:4:\"file\";s:36:\"trees_silhouette-800-x-450-52x50.jpg\";s:5:\"width\";i:52;s:6:\"height\";i:50;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"related-img\";a:4:{s:4:\"file\";s:38:\"trees_silhouette-800-x-450-180x138.jpg\";s:5:\"width\";i:180;s:6:\"height\";i:138;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"portfolio-full\";a:4:{s:4:\"file\";s:38:\"trees_silhouette-800-x-450-800x400.jpg\";s:5:\"width\";i:800;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:13:\"portfolio-one\";a:4:{s:4:\"file\";s:38:\"trees_silhouette-800-x-450-540x272.jpg\";s:5:\"width\";i:540;s:6:\"height\";i:272;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:13:\"portfolio-two\";a:4:{s:4:\"file\";s:38:\"trees_silhouette-800-x-450-460x295.jpg\";s:5:\"width\";i:460;s:6:\"height\";i:295;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"portfolio-three\";a:4:{s:4:\"file\";s:38:\"trees_silhouette-800-x-450-300x214.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:214;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"portfolio-four\";a:4:{s:4:\"file\";s:38:\"trees_silhouette-800-x-450-220x161.jpg\";s:5:\"width\";i:220;s:6:\"height\";i:161;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"portfolio-five\";a:4:{s:4:\"file\";s:38:\"trees_silhouette-800-x-450-177x142.jpg\";s:5:\"width\";i:177;s:6:\"height\";i:142;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:13:\"portfolio-six\";a:4:{s:4:\"file\";s:38:\"trees_silhouette-800-x-450-147x118.jpg\";s:5:\"width\";i:147;s:6:\"height\";i:118;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"recent-posts\";a:4:{s:4:\"file\";s:38:\"trees_silhouette-800-x-450-700x441.jpg\";s:5:\"width\";i:700;s:6:\"height\";i:441;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:22:\"recent-works-thumbnail\";a:4:{s:4:\"file\";s:36:\"trees_silhouette-800-x-450-66x66.jpg\";s:5:\"width\";i:66;s:6:\"height\";i:66;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'),
(4533, 1035, 'FB_content', ''),
(4548, 1037, 'FB_content', ''),
(4564, 1039, 'FB_content', ''),
(4579, 1041, 'FB_content', ''),
(4588, 1042, '_wp_attached_file', '2015/01/Wood_Texture.jpg'),
(4589, 1042, '_wp_attachment_metadata', 'a:5:{s:5:\"width\";i:800;s:6:\"height\";i:600;s:4:\"file\";s:24:\"2015/01/Wood_Texture.jpg\";s:5:\"sizes\";a:15:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:24:\"Wood_Texture-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:24:\"Wood_Texture-300x225.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:225;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:10:\"blog-large\";a:4:{s:4:\"file\";s:24:\"Wood_Texture-669x272.jpg\";s:5:\"width\";i:669;s:6:\"height\";i:272;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"blog-medium\";a:4:{s:4:\"file\";s:24:\"Wood_Texture-320x202.jpg\";s:5:\"width\";i:320;s:6:\"height\";i:202;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:8:\"tabs-img\";a:4:{s:4:\"file\";s:22:\"Wood_Texture-52x50.jpg\";s:5:\"width\";i:52;s:6:\"height\";i:50;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"related-img\";a:4:{s:4:\"file\";s:24:\"Wood_Texture-180x138.jpg\";s:5:\"width\";i:180;s:6:\"height\";i:138;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"portfolio-full\";a:4:{s:4:\"file\";s:24:\"Wood_Texture-800x400.jpg\";s:5:\"width\";i:800;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:13:\"portfolio-one\";a:4:{s:4:\"file\";s:24:\"Wood_Texture-540x272.jpg\";s:5:\"width\";i:540;s:6:\"height\";i:272;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:13:\"portfolio-two\";a:4:{s:4:\"file\";s:24:\"Wood_Texture-460x295.jpg\";s:5:\"width\";i:460;s:6:\"height\";i:295;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"portfolio-three\";a:4:{s:4:\"file\";s:24:\"Wood_Texture-300x214.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:214;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"portfolio-four\";a:4:{s:4:\"file\";s:24:\"Wood_Texture-220x161.jpg\";s:5:\"width\";i:220;s:6:\"height\";i:161;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"portfolio-five\";a:4:{s:4:\"file\";s:24:\"Wood_Texture-177x142.jpg\";s:5:\"width\";i:177;s:6:\"height\";i:142;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:13:\"portfolio-six\";a:4:{s:4:\"file\";s:24:\"Wood_Texture-147x118.jpg\";s:5:\"width\";i:147;s:6:\"height\";i:118;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"recent-posts\";a:4:{s:4:\"file\";s:24:\"Wood_Texture-700x441.jpg\";s:5:\"width\";i:700;s:6:\"height\";i:441;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:22:\"recent-works-thumbnail\";a:4:{s:4:\"file\";s:22:\"Wood_Texture-66x66.jpg\";s:5:\"width\";i:66;s:6:\"height\";i:66;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'),
(4594, 1043, 'FB_content', ''),
(4607, 1044, 'FB_content', ''),
(4620, 1045, 'FB_content', ''),
(4633, 1046, 'FB_content', ''),
(4642, 1047, '_edit_last', '1'),
(4643, 1047, '_edit_lock', '1477659804:1'),
(4648, 1048, 'FB_content', ''),
(4669, 1049, 'FB_content', ''),
(4682, 1050, 'FB_content', ''),
(4695, 1051, 'FB_content', ''),
(4704, 1052, '_wp_attached_file', '2015/01/DSC01554-e1442325082893.jpg'),
(4705, 1052, '_wp_attachment_metadata', 'a:5:{s:5:\"width\";i:800;s:6:\"height\";i:390;s:4:\"file\";s:35:\"2015/01/DSC01554-e1442325082893.jpg\";s:5:\"sizes\";a:15:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:35:\"DSC01554-e1442325082893-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:35:\"DSC01554-e1442325082893-300x146.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:146;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:10:\"blog-large\";a:4:{s:4:\"file\";s:35:\"DSC01554-e1442325082893-669x272.jpg\";s:5:\"width\";i:669;s:6:\"height\";i:272;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"blog-medium\";a:4:{s:4:\"file\";s:35:\"DSC01554-e1442325082893-320x202.jpg\";s:5:\"width\";i:320;s:6:\"height\";i:202;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:8:\"tabs-img\";a:4:{s:4:\"file\";s:33:\"DSC01554-e1442325082893-52x50.jpg\";s:5:\"width\";i:52;s:6:\"height\";i:50;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"related-img\";a:4:{s:4:\"file\";s:35:\"DSC01554-e1442325082893-180x138.jpg\";s:5:\"width\";i:180;s:6:\"height\";i:138;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"portfolio-full\";a:4:{s:4:\"file\";s:20:\"DSC01554-800x400.jpg\";s:5:\"width\";i:800;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:13:\"portfolio-one\";a:4:{s:4:\"file\";s:35:\"DSC01554-e1442325082893-540x272.jpg\";s:5:\"width\";i:540;s:6:\"height\";i:272;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:13:\"portfolio-two\";a:4:{s:4:\"file\";s:35:\"DSC01554-e1442325082893-460x295.jpg\";s:5:\"width\";i:460;s:6:\"height\";i:295;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"portfolio-three\";a:4:{s:4:\"file\";s:35:\"DSC01554-e1442325082893-300x214.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:214;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"portfolio-four\";a:4:{s:4:\"file\";s:35:\"DSC01554-e1442325082893-220x161.jpg\";s:5:\"width\";i:220;s:6:\"height\";i:161;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"portfolio-five\";a:4:{s:4:\"file\";s:35:\"DSC01554-e1442325082893-177x142.jpg\";s:5:\"width\";i:177;s:6:\"height\";i:142;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:13:\"portfolio-six\";a:4:{s:4:\"file\";s:35:\"DSC01554-e1442325082893-147x118.jpg\";s:5:\"width\";i:147;s:6:\"height\";i:118;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"recent-posts\";a:4:{s:4:\"file\";s:35:\"DSC01554-e1442325082893-700x390.jpg\";s:5:\"width\";i:700;s:6:\"height\";i:390;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:22:\"recent-works-thumbnail\";a:4:{s:4:\"file\";s:33:\"DSC01554-e1442325082893-66x66.jpg\";s:5:\"width\";i:66;s:6:\"height\";i:66;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'),
(4710, 1053, 'FB_content', ''),
(4719, 1047, '_wp_page_template', 'default'),
(4724, 1047, 'slide_template', 'default'),
(4725, 1047, 'fusion_builder_status', 'inactive'),
(4726, 1054, 'FB_content', ''),
(4727, 1047, 'pyre_slider_position', 'default'),
(4728, 1047, 'pyre_slider_type', 'no'),
(4729, 1047, 'pyre_slider', '0'),
(4730, 1047, 'pyre_wooslider', '0'),
(4731, 1047, 'pyre_revslider', '0'),
(4732, 1047, 'pyre_elasticslider', '0'),
(4733, 1047, 'pyre_fallback', ''),
(4734, 1047, 'pyre_avada_rev_styles', 'default'),
(4735, 1047, 'pyre_main_top_padding', ''),
(4736, 1047, 'pyre_main_bottom_padding', ''),
(4737, 1047, 'pyre_hundredp_padding', ''),
(4738, 1047, 'pyre_show_first_featured_image', 'no'),
(4739, 1047, 'pyre_display_header', 'yes'),
(4740, 1047, 'pyre_header_100_width', 'default'),
(4741, 1047, 'pyre_header_bg', ''),
(4742, 1047, 'pyre_header_bg_color', ''),
(4743, 1047, 'pyre_header_bg_opacity', ''),
(4744, 1047, 'pyre_header_bg_full', 'no'),
(4745, 1047, 'pyre_header_bg_repeat', 'repeat'),
(4746, 1047, 'pyre_displayed_menu', 'default'),
(4747, 1047, 'pyre_display_footer', 'default'),
(4748, 1047, 'pyre_display_copyright', 'default'),
(4749, 1047, 'pyre_footer_100_width', 'default'),
(4750, 1047, 'pyre_sidebar_position', 'default'),
(4751, 1047, 'pyre_sidebar_bg_color', ''),
(4752, 1047, 'pyre_page_bg_layout', 'default'),
(4753, 1047, 'pyre_page_bg', ''),
(4754, 1047, 'pyre_page_bg_color', ''),
(4755, 1047, 'pyre_page_bg_full', 'no'),
(4756, 1047, 'pyre_page_bg_repeat', 'repeat'),
(4757, 1047, 'pyre_wide_page_bg', ''),
(4758, 1047, 'pyre_wide_page_bg_color', ''),
(4759, 1047, 'pyre_wide_page_bg_full', 'no'),
(4760, 1047, 'pyre_wide_page_bg_repeat', 'repeat'),
(4761, 1047, 'pyre_portfolio_width_100', 'no'),
(4762, 1047, 'pyre_portfolio_content_length', 'default'),
(4763, 1047, 'pyre_portfolio_excerpt', ''),
(4764, 1047, 'pyre_portfolio_filters', 'yes'),
(4765, 1047, 'pyre_portfolio_text_layout', 'default'),
(4766, 1047, 'pyre_portfolio_featured_image_size', 'default'),
(4767, 1047, 'pyre_portfolio_column_spacing', ''),
(4768, 1047, 'pyre_page_title', 'default'),
(4769, 1047, 'pyre_page_title_text', 'default'),
(4770, 1047, 'pyre_page_title_text_alignment', 'default'),
(4771, 1047, 'pyre_page_title_100_width', 'default'),
(4772, 1047, 'pyre_page_title_custom_text', ''),
(4773, 1047, 'pyre_page_title_text_size', ''),
(4774, 1047, 'pyre_page_title_custom_subheader', ''),
(4775, 1047, 'pyre_page_title_custom_subheader_text_size', ''),
(4776, 1047, 'pyre_page_title_font_color', ''),
(4777, 1047, 'pyre_page_title_height', ''),
(4778, 1047, 'pyre_page_title_mobile_height', ''),
(4779, 1047, 'pyre_page_title_bar_bg', ''),
(4780, 1047, 'pyre_page_title_bar_bg_retina', ''),
(4781, 1047, 'pyre_page_title_bar_bg_color', ''),
(4782, 1047, 'pyre_page_title_bar_borders_color', ''),
(4783, 1047, 'pyre_page_title_bar_bg_full', 'default'),
(4784, 1047, 'pyre_page_title_bg_parallax', 'default'),
(4785, 1047, 'pyre_page_title_breadcrumbs_search_bar', 'default'),
(4794, 1055, 'FB_content', ''),
(4795, 1055, 'FB_content', ''),
(4796, 1055, 'FB_content', ''),
(4797, 1055, 'FB_content', ''),
(4802, 1056, 'FB_content', ''),
(4816, 1057, 'FB_content', ''),
(4833, 1055, 'FB_content', ''),
(4834, 1055, 'FB_content', ''),
(4835, 1055, 'FB_content', ''),
(4840, 1058, 'FB_content', ''),
(4853, 1059, 'FB_content', ''),
(4862, 1052, '_wp_attachment_backup_sizes', 'a:16:{s:9:\"full-orig\";a:3:{s:5:\"width\";i:800;s:6:\"height\";i:532;s:4:\"file\";s:12:\"DSC01554.jpg\";}s:14:\"thumbnail-orig\";a:4:{s:4:\"file\";s:20:\"DSC01554-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"medium-orig\";a:4:{s:4:\"file\";s:20:\"DSC01554-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"blog-large-orig\";a:4:{s:4:\"file\";s:20:\"DSC01554-669x272.jpg\";s:5:\"width\";i:669;s:6:\"height\";i:272;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"blog-medium-orig\";a:4:{s:4:\"file\";s:20:\"DSC01554-320x202.jpg\";s:5:\"width\";i:320;s:6:\"height\";i:202;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:13:\"tabs-img-orig\";a:4:{s:4:\"file\";s:18:\"DSC01554-52x50.jpg\";s:5:\"width\";i:52;s:6:\"height\";i:50;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"related-img-orig\";a:4:{s:4:\"file\";s:20:\"DSC01554-180x138.jpg\";s:5:\"width\";i:180;s:6:\"height\";i:138;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"portfolio-full-orig\";a:4:{s:4:\"file\";s:20:\"DSC01554-800x400.jpg\";s:5:\"width\";i:800;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"portfolio-one-orig\";a:4:{s:4:\"file\";s:20:\"DSC01554-540x272.jpg\";s:5:\"width\";i:540;s:6:\"height\";i:272;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"portfolio-two-orig\";a:4:{s:4:\"file\";s:20:\"DSC01554-460x295.jpg\";s:5:\"width\";i:460;s:6:\"height\";i:295;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:20:\"portfolio-three-orig\";a:4:{s:4:\"file\";s:20:\"DSC01554-300x214.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:214;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"portfolio-four-orig\";a:4:{s:4:\"file\";s:20:\"DSC01554-220x161.jpg\";s:5:\"width\";i:220;s:6:\"height\";i:161;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"portfolio-five-orig\";a:4:{s:4:\"file\";s:20:\"DSC01554-177x142.jpg\";s:5:\"width\";i:177;s:6:\"height\";i:142;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"portfolio-six-orig\";a:4:{s:4:\"file\";s:20:\"DSC01554-147x118.jpg\";s:5:\"width\";i:147;s:6:\"height\";i:118;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:17:\"recent-posts-orig\";a:4:{s:4:\"file\";s:20:\"DSC01554-700x441.jpg\";s:5:\"width\";i:700;s:6:\"height\";i:441;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:27:\"recent-works-thumbnail-orig\";a:4:{s:4:\"file\";s:18:\"DSC01554-66x66.jpg\";s:5:\"width\";i:66;s:6:\"height\";i:66;s:9:\"mime-type\";s:10:\"image/jpeg\";}}'),
(4867, 1060, 'FB_content', ''),
(4880, 1061, 'FB_content', ''),
(4885, 1047, 'sbg_selected_sidebar', 'a:1:{i:0;s:1:\"0\";}'),
(4886, 1047, 'sbg_selected_sidebar_replacement', 'a:1:{i:0;s:0:\"\";}'),
(4887, 1047, 'sbg_selected_sidebar_2', 'a:1:{i:0;s:1:\"0\";}'),
(4888, 1047, 'sbg_selected_sidebar_2_replacement', 'a:1:{i:0;s:0:\"\";}'),
(4889, 835, 'FB_content', ''),
(4890, 835, 'FB_content', ''),
(4891, 835, 'FB_content', ''),
(4896, 1062, 'FB_content', ''),
(4909, 1063, 'FB_content', ''),
(4922, 901, 'FB_content', ''),
(4927, 1065, 'FB_content', ''),
(4940, 1066, 'FB_content', ''),
(4953, 1067, 'FB_content', ''),
(4966, 1068, 'FB_content', ''),
(5003, 1069, 'FB_content', ''),
(5024, 1070, 'FB_content', ''),
(5037, 1071, 'FB_content', ''),
(5046, 1072, '_edit_last', '1'),
(5047, 1072, '_edit_lock', '1477257670:1'),
(5052, 1073, 'FB_content', ''),
(5061, 1072, '_wp_page_template', 'default'),
(5066, 1072, 'slide_template', 'default'),
(5067, 1072, 'fusion_builder_status', 'inactive'),
(5068, 1074, 'FB_content', ''),
(5069, 1072, 'pyre_slider_position', 'default'),
(5070, 1072, 'pyre_slider_type', 'no'),
(5071, 1072, 'pyre_slider', '0'),
(5072, 1072, 'pyre_wooslider', '0'),
(5073, 1072, 'pyre_revslider', '0'),
(5074, 1072, 'pyre_elasticslider', '0'),
(5075, 1072, 'pyre_fallback', ''),
(5076, 1072, 'pyre_avada_rev_styles', 'default'),
(5077, 1072, 'pyre_main_top_padding', ''),
(5078, 1072, 'pyre_main_bottom_padding', ''),
(5079, 1072, 'pyre_hundredp_padding', ''),
(5080, 1072, 'pyre_show_first_featured_image', 'no'),
(5081, 1072, 'pyre_display_header', 'yes'),
(5082, 1072, 'pyre_header_100_width', 'default'),
(5083, 1072, 'pyre_header_bg', ''),
(5084, 1072, 'pyre_header_bg_color', ''),
(5085, 1072, 'pyre_header_bg_opacity', ''),
(5086, 1072, 'pyre_header_bg_full', 'no'),
(5087, 1072, 'pyre_header_bg_repeat', 'repeat'),
(5088, 1072, 'pyre_displayed_menu', 'default'),
(5089, 1072, 'pyre_display_footer', 'default'),
(5090, 1072, 'pyre_display_copyright', 'default'),
(5091, 1072, 'pyre_footer_100_width', 'default'),
(5092, 1072, 'pyre_sidebar_position', 'default'),
(5093, 1072, 'pyre_sidebar_bg_color', ''),
(5094, 1072, 'pyre_page_bg_layout', 'default'),
(5095, 1072, 'pyre_page_bg', ''),
(5096, 1072, 'pyre_page_bg_color', ''),
(5097, 1072, 'pyre_page_bg_full', 'no'),
(5098, 1072, 'pyre_page_bg_repeat', 'repeat'),
(5099, 1072, 'pyre_wide_page_bg', ''),
(5100, 1072, 'pyre_wide_page_bg_color', ''),
(5101, 1072, 'pyre_wide_page_bg_full', 'no'),
(5102, 1072, 'pyre_wide_page_bg_repeat', 'repeat'),
(5103, 1072, 'pyre_portfolio_width_100', 'no'),
(5104, 1072, 'pyre_portfolio_content_length', 'default'),
(5105, 1072, 'pyre_portfolio_excerpt', ''),
(5106, 1072, 'pyre_portfolio_filters', 'yes'),
(5107, 1072, 'pyre_portfolio_text_layout', 'default'),
(5108, 1072, 'pyre_portfolio_featured_image_size', 'default'),
(5109, 1072, 'pyre_portfolio_column_spacing', ''),
(5110, 1072, 'pyre_page_title', 'default'),
(5111, 1072, 'pyre_page_title_text', 'default'),
(5112, 1072, 'pyre_page_title_text_alignment', 'default'),
(5113, 1072, 'pyre_page_title_100_width', 'default'),
(5114, 1072, 'pyre_page_title_custom_text', ''),
(5115, 1072, 'pyre_page_title_text_size', ''),
(5116, 1072, 'pyre_page_title_custom_subheader', ''),
(5117, 1072, 'pyre_page_title_custom_subheader_text_size', ''),
(5118, 1072, 'pyre_page_title_font_color', ''),
(5119, 1072, 'pyre_page_title_height', ''),
(5120, 1072, 'pyre_page_title_mobile_height', ''),
(5121, 1072, 'pyre_page_title_bar_bg', ''),
(5122, 1072, 'pyre_page_title_bar_bg_retina', ''),
(5123, 1072, 'pyre_page_title_bar_bg_color', ''),
(5124, 1072, 'pyre_page_title_bar_borders_color', ''),
(5125, 1072, 'pyre_page_title_bar_bg_full', 'default'),
(5126, 1072, 'pyre_page_title_bg_parallax', 'default'),
(5127, 1072, 'pyre_page_title_breadcrumbs_search_bar', 'default'),
(5144, 1075, 'FB_content', ''),
(5157, 1076, 'FB_content', ''),
(5178, 1077, 'FB_content', ''),
(5191, 1078, 'FB_content', ''),
(5204, 1079, 'FB_content', ''),
(5217, 1080, 'FB_content', ''),
(5226, 13, '_edit_lock', '1442957959:1'),
(5235, 13, '_edit_last', '1'),
(5240, 1081, 'FB_content', ''),
(5253, 1082, 'FB_content', ''),
(5266, 1083, 'FB_content', ''),
(5279, 1084, 'FB_content', ''),
(5292, 1085, 'FB_content', ''),
(5321, 950, 'sbg_selected_sidebar', 'a:1:{i:0;s:1:\"0\";}'),
(5322, 950, 'sbg_selected_sidebar_replacement', 'a:1:{i:0;s:0:\"\";}'),
(5323, 950, 'sbg_selected_sidebar_2', 'a:1:{i:0;s:1:\"0\";}'),
(5324, 950, 'sbg_selected_sidebar_2_replacement', 'a:1:{i:0;s:0:\"\";}'),
(5325, 1087, '_wp_attached_file', '2015/01/zulu.jpg'),
(5326, 1087, '_wp_attachment_metadata', 'a:5:{s:5:\"width\";i:560;s:6:\"height\";i:340;s:4:\"file\";s:16:\"2015/01/zulu.jpg\";s:5:\"sizes\";a:13:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:16:\"zulu-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:16:\"zulu-300x182.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:182;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:10:\"blog-large\";a:4:{s:4:\"file\";s:16:\"zulu-560x272.jpg\";s:5:\"width\";i:560;s:6:\"height\";i:272;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"blog-medium\";a:4:{s:4:\"file\";s:16:\"zulu-320x202.jpg\";s:5:\"width\";i:320;s:6:\"height\";i:202;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:8:\"tabs-img\";a:4:{s:4:\"file\";s:14:\"zulu-52x50.jpg\";s:5:\"width\";i:52;s:6:\"height\";i:50;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"related-img\";a:4:{s:4:\"file\";s:16:\"zulu-180x138.jpg\";s:5:\"width\";i:180;s:6:\"height\";i:138;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:13:\"portfolio-one\";a:4:{s:4:\"file\";s:16:\"zulu-540x272.jpg\";s:5:\"width\";i:540;s:6:\"height\";i:272;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:13:\"portfolio-two\";a:4:{s:4:\"file\";s:16:\"zulu-460x295.jpg\";s:5:\"width\";i:460;s:6:\"height\";i:295;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"portfolio-three\";a:4:{s:4:\"file\";s:16:\"zulu-300x214.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:214;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"portfolio-four\";a:4:{s:4:\"file\";s:16:\"zulu-220x161.jpg\";s:5:\"width\";i:220;s:6:\"height\";i:161;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"portfolio-five\";a:4:{s:4:\"file\";s:16:\"zulu-177x142.jpg\";s:5:\"width\";i:177;s:6:\"height\";i:142;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:13:\"portfolio-six\";a:4:{s:4:\"file\";s:16:\"zulu-147x118.jpg\";s:5:\"width\";i:147;s:6:\"height\";i:118;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:22:\"recent-works-thumbnail\";a:4:{s:4:\"file\";s:14:\"zulu-66x66.jpg\";s:5:\"width\";i:66;s:6:\"height\";i:66;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'),
(5331, 1088, 'FB_content', ''),
(5344, 1089, 'FB_content', ''),
(5353, 1090, '_wp_attached_file', '2015/01/Shongweni-1.jpg'),
(5354, 1090, '_wp_attachment_metadata', 'a:5:{s:5:\"width\";i:626;s:6:\"height\";i:416;s:4:\"file\";s:23:\"2015/01/Shongweni-1.jpg\";s:5:\"sizes\";a:14:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:23:\"Shongweni-1-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:23:\"Shongweni-1-300x199.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:199;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:10:\"blog-large\";a:4:{s:4:\"file\";s:23:\"Shongweni-1-626x272.jpg\";s:5:\"width\";i:626;s:6:\"height\";i:272;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"blog-medium\";a:4:{s:4:\"file\";s:23:\"Shongweni-1-320x202.jpg\";s:5:\"width\";i:320;s:6:\"height\";i:202;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:8:\"tabs-img\";a:4:{s:4:\"file\";s:21:\"Shongweni-1-52x50.jpg\";s:5:\"width\";i:52;s:6:\"height\";i:50;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"related-img\";a:4:{s:4:\"file\";s:23:\"Shongweni-1-180x138.jpg\";s:5:\"width\";i:180;s:6:\"height\";i:138;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"portfolio-full\";a:4:{s:4:\"file\";s:23:\"Shongweni-1-626x400.jpg\";s:5:\"width\";i:626;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:13:\"portfolio-one\";a:4:{s:4:\"file\";s:23:\"Shongweni-1-540x272.jpg\";s:5:\"width\";i:540;s:6:\"height\";i:272;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:13:\"portfolio-two\";a:4:{s:4:\"file\";s:23:\"Shongweni-1-460x295.jpg\";s:5:\"width\";i:460;s:6:\"height\";i:295;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"portfolio-three\";a:4:{s:4:\"file\";s:23:\"Shongweni-1-300x214.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:214;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"portfolio-four\";a:4:{s:4:\"file\";s:23:\"Shongweni-1-220x161.jpg\";s:5:\"width\";i:220;s:6:\"height\";i:161;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"portfolio-five\";a:4:{s:4:\"file\";s:23:\"Shongweni-1-177x142.jpg\";s:5:\"width\";i:177;s:6:\"height\";i:142;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:13:\"portfolio-six\";a:4:{s:4:\"file\";s:23:\"Shongweni-1-147x118.jpg\";s:5:\"width\";i:147;s:6:\"height\";i:118;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:22:\"recent-works-thumbnail\";a:4:{s:4:\"file\";s:21:\"Shongweni-1-66x66.jpg\";s:5:\"width\";i:66;s:6:\"height\";i:66;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'),
(5355, 1091, '_wp_attached_file', '2015/01/steam-train.png'),
(5356, 1091, '_wp_attachment_metadata', 'a:5:{s:5:\"width\";i:615;s:6:\"height\";i:414;s:4:\"file\";s:23:\"2015/01/steam-train.png\";s:5:\"sizes\";a:14:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:23:\"steam-train-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:23:\"steam-train-300x202.png\";s:5:\"width\";i:300;s:6:\"height\";i:202;s:9:\"mime-type\";s:9:\"image/png\";}s:10:\"blog-large\";a:4:{s:4:\"file\";s:23:\"steam-train-615x272.png\";s:5:\"width\";i:615;s:6:\"height\";i:272;s:9:\"mime-type\";s:9:\"image/png\";}s:11:\"blog-medium\";a:4:{s:4:\"file\";s:23:\"steam-train-320x202.png\";s:5:\"width\";i:320;s:6:\"height\";i:202;s:9:\"mime-type\";s:9:\"image/png\";}s:8:\"tabs-img\";a:4:{s:4:\"file\";s:21:\"steam-train-52x50.png\";s:5:\"width\";i:52;s:6:\"height\";i:50;s:9:\"mime-type\";s:9:\"image/png\";}s:11:\"related-img\";a:4:{s:4:\"file\";s:23:\"steam-train-180x138.png\";s:5:\"width\";i:180;s:6:\"height\";i:138;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"portfolio-full\";a:4:{s:4:\"file\";s:23:\"steam-train-615x400.png\";s:5:\"width\";i:615;s:6:\"height\";i:400;s:9:\"mime-type\";s:9:\"image/png\";}s:13:\"portfolio-one\";a:4:{s:4:\"file\";s:23:\"steam-train-540x272.png\";s:5:\"width\";i:540;s:6:\"height\";i:272;s:9:\"mime-type\";s:9:\"image/png\";}s:13:\"portfolio-two\";a:4:{s:4:\"file\";s:23:\"steam-train-460x295.png\";s:5:\"width\";i:460;s:6:\"height\";i:295;s:9:\"mime-type\";s:9:\"image/png\";}s:15:\"portfolio-three\";a:4:{s:4:\"file\";s:23:\"steam-train-300x214.png\";s:5:\"width\";i:300;s:6:\"height\";i:214;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"portfolio-four\";a:4:{s:4:\"file\";s:23:\"steam-train-220x161.png\";s:5:\"width\";i:220;s:6:\"height\";i:161;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"portfolio-five\";a:4:{s:4:\"file\";s:23:\"steam-train-177x142.png\";s:5:\"width\";i:177;s:6:\"height\";i:142;s:9:\"mime-type\";s:9:\"image/png\";}s:13:\"portfolio-six\";a:4:{s:4:\"file\";s:23:\"steam-train-147x118.png\";s:5:\"width\";i:147;s:6:\"height\";i:118;s:9:\"mime-type\";s:9:\"image/png\";}s:22:\"recent-works-thumbnail\";a:4:{s:4:\"file\";s:21:\"steam-train-66x66.png\";s:5:\"width\";i:66;s:6:\"height\";i:66;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'),
(5361, 1092, 'FB_content', ''),
(5370, 1093, '_wp_attached_file', '2015/01/meander-gallery.jpg'),
(5371, 1093, '_wp_attachment_metadata', 'a:5:{s:5:\"width\";i:800;s:6:\"height\";i:566;s:4:\"file\";s:27:\"2015/01/meander-gallery.jpg\";s:5:\"sizes\";a:15:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:27:\"meander-gallery-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:27:\"meander-gallery-300x212.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:212;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:10:\"blog-large\";a:4:{s:4:\"file\";s:27:\"meander-gallery-669x272.jpg\";s:5:\"width\";i:669;s:6:\"height\";i:272;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"blog-medium\";a:4:{s:4:\"file\";s:27:\"meander-gallery-320x202.jpg\";s:5:\"width\";i:320;s:6:\"height\";i:202;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:8:\"tabs-img\";a:4:{s:4:\"file\";s:25:\"meander-gallery-52x50.jpg\";s:5:\"width\";i:52;s:6:\"height\";i:50;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"related-img\";a:4:{s:4:\"file\";s:27:\"meander-gallery-180x138.jpg\";s:5:\"width\";i:180;s:6:\"height\";i:138;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"portfolio-full\";a:4:{s:4:\"file\";s:27:\"meander-gallery-800x400.jpg\";s:5:\"width\";i:800;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:13:\"portfolio-one\";a:4:{s:4:\"file\";s:27:\"meander-gallery-540x272.jpg\";s:5:\"width\";i:540;s:6:\"height\";i:272;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:13:\"portfolio-two\";a:4:{s:4:\"file\";s:27:\"meander-gallery-460x295.jpg\";s:5:\"width\";i:460;s:6:\"height\";i:295;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"portfolio-three\";a:4:{s:4:\"file\";s:27:\"meander-gallery-300x214.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:214;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"portfolio-four\";a:4:{s:4:\"file\";s:27:\"meander-gallery-220x161.jpg\";s:5:\"width\";i:220;s:6:\"height\";i:161;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"portfolio-five\";a:4:{s:4:\"file\";s:27:\"meander-gallery-177x142.jpg\";s:5:\"width\";i:177;s:6:\"height\";i:142;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:13:\"portfolio-six\";a:4:{s:4:\"file\";s:27:\"meander-gallery-147x118.jpg\";s:5:\"width\";i:147;s:6:\"height\";i:118;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"recent-posts\";a:4:{s:4:\"file\";s:27:\"meander-gallery-700x441.jpg\";s:5:\"width\";i:700;s:6:\"height\";i:441;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:22:\"recent-works-thumbnail\";a:4:{s:4:\"file\";s:25:\"meander-gallery-66x66.jpg\";s:5:\"width\";i:66;s:6:\"height\";i:66;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'),
(5372, 1094, '_wp_attached_file', '2015/01/Durban.jpg'),
(5373, 1094, '_wp_attachment_metadata', 'a:5:{s:5:\"width\";i:630;s:6:\"height\";i:400;s:4:\"file\";s:18:\"2015/01/Durban.jpg\";s:5:\"sizes\";a:14:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:18:\"Durban-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:18:\"Durban-300x190.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:190;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:10:\"blog-large\";a:4:{s:4:\"file\";s:18:\"Durban-630x272.jpg\";s:5:\"width\";i:630;s:6:\"height\";i:272;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"blog-medium\";a:4:{s:4:\"file\";s:18:\"Durban-320x202.jpg\";s:5:\"width\";i:320;s:6:\"height\";i:202;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:8:\"tabs-img\";a:4:{s:4:\"file\";s:16:\"Durban-52x50.jpg\";s:5:\"width\";i:52;s:6:\"height\";i:50;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"related-img\";a:4:{s:4:\"file\";s:18:\"Durban-180x138.jpg\";s:5:\"width\";i:180;s:6:\"height\";i:138;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"portfolio-full\";a:4:{s:4:\"file\";s:18:\"Durban-630x400.jpg\";s:5:\"width\";i:630;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:13:\"portfolio-one\";a:4:{s:4:\"file\";s:18:\"Durban-540x272.jpg\";s:5:\"width\";i:540;s:6:\"height\";i:272;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:13:\"portfolio-two\";a:4:{s:4:\"file\";s:18:\"Durban-460x295.jpg\";s:5:\"width\";i:460;s:6:\"height\";i:295;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"portfolio-three\";a:4:{s:4:\"file\";s:18:\"Durban-300x214.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:214;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"portfolio-four\";a:4:{s:4:\"file\";s:18:\"Durban-220x161.jpg\";s:5:\"width\";i:220;s:6:\"height\";i:161;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"portfolio-five\";a:4:{s:4:\"file\";s:18:\"Durban-177x142.jpg\";s:5:\"width\";i:177;s:6:\"height\";i:142;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:13:\"portfolio-six\";a:4:{s:4:\"file\";s:18:\"Durban-147x118.jpg\";s:5:\"width\";i:147;s:6:\"height\";i:118;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:22:\"recent-works-thumbnail\";a:4:{s:4:\"file\";s:16:\"Durban-66x66.jpg\";s:5:\"width\";i:66;s:6:\"height\";i:66;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'),
(5374, 1095, '_wp_attached_file', '2015/01/Mountains.jpg'),
(5375, 1095, '_wp_attachment_metadata', 'a:5:{s:5:\"width\";i:600;s:6:\"height\";i:375;s:4:\"file\";s:21:\"2015/01/Mountains.jpg\";s:5:\"sizes\";a:13:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:21:\"Mountains-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:21:\"Mountains-300x188.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:188;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:10:\"blog-large\";a:4:{s:4:\"file\";s:21:\"Mountains-600x272.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:272;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"blog-medium\";a:4:{s:4:\"file\";s:21:\"Mountains-320x202.jpg\";s:5:\"width\";i:320;s:6:\"height\";i:202;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:8:\"tabs-img\";a:4:{s:4:\"file\";s:19:\"Mountains-52x50.jpg\";s:5:\"width\";i:52;s:6:\"height\";i:50;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"related-img\";a:4:{s:4:\"file\";s:21:\"Mountains-180x138.jpg\";s:5:\"width\";i:180;s:6:\"height\";i:138;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:13:\"portfolio-one\";a:4:{s:4:\"file\";s:21:\"Mountains-540x272.jpg\";s:5:\"width\";i:540;s:6:\"height\";i:272;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:13:\"portfolio-two\";a:4:{s:4:\"file\";s:21:\"Mountains-460x295.jpg\";s:5:\"width\";i:460;s:6:\"height\";i:295;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"portfolio-three\";a:4:{s:4:\"file\";s:21:\"Mountains-300x214.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:214;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"portfolio-four\";a:4:{s:4:\"file\";s:21:\"Mountains-220x161.jpg\";s:5:\"width\";i:220;s:6:\"height\";i:161;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"portfolio-five\";a:4:{s:4:\"file\";s:21:\"Mountains-177x142.jpg\";s:5:\"width\";i:177;s:6:\"height\";i:142;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:13:\"portfolio-six\";a:4:{s:4:\"file\";s:21:\"Mountains-147x118.jpg\";s:5:\"width\";i:147;s:6:\"height\";i:118;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:22:\"recent-works-thumbnail\";a:4:{s:4:\"file\";s:19:\"Mountains-66x66.jpg\";s:5:\"width\";i:66;s:6:\"height\";i:66;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'),
(5376, 1096, '_wp_attached_file', '2015/01/Karkloof-Canopy.jpg'),
(5377, 1096, '_wp_attachment_metadata', 'a:5:{s:5:\"width\";i:538;s:6:\"height\";i:302;s:4:\"file\";s:27:\"2015/01/Karkloof-Canopy.jpg\";s:5:\"sizes\";a:13:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:27:\"Karkloof-Canopy-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:27:\"Karkloof-Canopy-300x168.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:168;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:10:\"blog-large\";a:4:{s:4:\"file\";s:27:\"Karkloof-Canopy-538x272.jpg\";s:5:\"width\";i:538;s:6:\"height\";i:272;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"blog-medium\";a:4:{s:4:\"file\";s:27:\"Karkloof-Canopy-320x202.jpg\";s:5:\"width\";i:320;s:6:\"height\";i:202;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:8:\"tabs-img\";a:4:{s:4:\"file\";s:25:\"Karkloof-Canopy-52x50.jpg\";s:5:\"width\";i:52;s:6:\"height\";i:50;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"related-img\";a:4:{s:4:\"file\";s:27:\"Karkloof-Canopy-180x138.jpg\";s:5:\"width\";i:180;s:6:\"height\";i:138;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:13:\"portfolio-one\";a:4:{s:4:\"file\";s:27:\"Karkloof-Canopy-538x272.jpg\";s:5:\"width\";i:538;s:6:\"height\";i:272;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:13:\"portfolio-two\";a:4:{s:4:\"file\";s:27:\"Karkloof-Canopy-460x295.jpg\";s:5:\"width\";i:460;s:6:\"height\";i:295;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"portfolio-three\";a:4:{s:4:\"file\";s:27:\"Karkloof-Canopy-300x214.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:214;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"portfolio-four\";a:4:{s:4:\"file\";s:27:\"Karkloof-Canopy-220x161.jpg\";s:5:\"width\";i:220;s:6:\"height\";i:161;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"portfolio-five\";a:4:{s:4:\"file\";s:27:\"Karkloof-Canopy-177x142.jpg\";s:5:\"width\";i:177;s:6:\"height\";i:142;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:13:\"portfolio-six\";a:4:{s:4:\"file\";s:27:\"Karkloof-Canopy-147x118.jpg\";s:5:\"width\";i:147;s:6:\"height\";i:118;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:22:\"recent-works-thumbnail\";a:4:{s:4:\"file\";s:25:\"Karkloof-Canopy-66x66.jpg\";s:5:\"width\";i:66;s:6:\"height\";i:66;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";d:7.0999999999999996447286321199499070644378662109375;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:13:\"Canon EOS 20D\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:1240749305;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:2:\"85\";s:3:\"iso\";s:3:\"400\";s:13:\"shutter_speed\";s:7:\"0.00625\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:1;}}'),
(5378, 1097, '_wp_attached_file', '2015/01/Tala-Phezulu.jpg');
INSERT INTO `wp_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(5379, 1097, '_wp_attachment_metadata', 'a:5:{s:5:\"width\";i:500;s:6:\"height\";i:394;s:4:\"file\";s:24:\"2015/01/Tala-Phezulu.jpg\";s:5:\"sizes\";a:13:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:24:\"Tala-Phezulu-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:24:\"Tala-Phezulu-300x236.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:236;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:10:\"blog-large\";a:4:{s:4:\"file\";s:24:\"Tala-Phezulu-500x272.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:272;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"blog-medium\";a:4:{s:4:\"file\";s:24:\"Tala-Phezulu-320x202.jpg\";s:5:\"width\";i:320;s:6:\"height\";i:202;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:8:\"tabs-img\";a:4:{s:4:\"file\";s:22:\"Tala-Phezulu-52x50.jpg\";s:5:\"width\";i:52;s:6:\"height\";i:50;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"related-img\";a:4:{s:4:\"file\";s:24:\"Tala-Phezulu-180x138.jpg\";s:5:\"width\";i:180;s:6:\"height\";i:138;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:13:\"portfolio-one\";a:4:{s:4:\"file\";s:24:\"Tala-Phezulu-500x272.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:272;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:13:\"portfolio-two\";a:4:{s:4:\"file\";s:24:\"Tala-Phezulu-460x295.jpg\";s:5:\"width\";i:460;s:6:\"height\";i:295;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"portfolio-three\";a:4:{s:4:\"file\";s:24:\"Tala-Phezulu-300x214.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:214;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"portfolio-four\";a:4:{s:4:\"file\";s:24:\"Tala-Phezulu-220x161.jpg\";s:5:\"width\";i:220;s:6:\"height\";i:161;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"portfolio-five\";a:4:{s:4:\"file\";s:24:\"Tala-Phezulu-177x142.jpg\";s:5:\"width\";i:177;s:6:\"height\";i:142;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:13:\"portfolio-six\";a:4:{s:4:\"file\";s:24:\"Tala-Phezulu-147x118.jpg\";s:5:\"width\";i:147;s:6:\"height\";i:118;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:22:\"recent-works-thumbnail\";a:4:{s:4:\"file\";s:22:\"Tala-Phezulu-66x66.jpg\";s:5:\"width\";i:66;s:6:\"height\";i:66;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'),
(5380, 1098, '_wp_attached_file', '2015/01/Shongweni-Dam.jpg'),
(5381, 1098, '_wp_attachment_metadata', 'a:5:{s:5:\"width\";i:500;s:6:\"height\";i:312;s:4:\"file\";s:25:\"2015/01/Shongweni-Dam.jpg\";s:5:\"sizes\";a:13:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:25:\"Shongweni-Dam-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:25:\"Shongweni-Dam-300x187.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:187;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:10:\"blog-large\";a:4:{s:4:\"file\";s:25:\"Shongweni-Dam-500x272.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:272;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"blog-medium\";a:4:{s:4:\"file\";s:25:\"Shongweni-Dam-320x202.jpg\";s:5:\"width\";i:320;s:6:\"height\";i:202;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:8:\"tabs-img\";a:4:{s:4:\"file\";s:23:\"Shongweni-Dam-52x50.jpg\";s:5:\"width\";i:52;s:6:\"height\";i:50;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"related-img\";a:4:{s:4:\"file\";s:25:\"Shongweni-Dam-180x138.jpg\";s:5:\"width\";i:180;s:6:\"height\";i:138;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:13:\"portfolio-one\";a:4:{s:4:\"file\";s:25:\"Shongweni-Dam-500x272.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:272;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:13:\"portfolio-two\";a:4:{s:4:\"file\";s:25:\"Shongweni-Dam-460x295.jpg\";s:5:\"width\";i:460;s:6:\"height\";i:295;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"portfolio-three\";a:4:{s:4:\"file\";s:25:\"Shongweni-Dam-300x214.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:214;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"portfolio-four\";a:4:{s:4:\"file\";s:25:\"Shongweni-Dam-220x161.jpg\";s:5:\"width\";i:220;s:6:\"height\";i:161;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"portfolio-five\";a:4:{s:4:\"file\";s:25:\"Shongweni-Dam-177x142.jpg\";s:5:\"width\";i:177;s:6:\"height\";i:142;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:13:\"portfolio-six\";a:4:{s:4:\"file\";s:25:\"Shongweni-Dam-147x118.jpg\";s:5:\"width\";i:147;s:6:\"height\";i:118;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:22:\"recent-works-thumbnail\";a:4:{s:4:\"file\";s:23:\"Shongweni-Dam-66x66.jpg\";s:5:\"width\";i:66;s:6:\"height\";i:66;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'),
(5386, 1099, 'FB_content', ''),
(5395, 1100, '_wp_attached_file', '2015/01/camelot.jpg'),
(5396, 1100, '_wp_attachment_metadata', 'a:5:{s:5:\"width\";i:701;s:6:\"height\";i:519;s:4:\"file\";s:19:\"2015/01/camelot.jpg\";s:5:\"sizes\";a:15:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:19:\"camelot-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:19:\"camelot-300x222.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:222;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:10:\"blog-large\";a:4:{s:4:\"file\";s:19:\"camelot-669x272.jpg\";s:5:\"width\";i:669;s:6:\"height\";i:272;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"blog-medium\";a:4:{s:4:\"file\";s:19:\"camelot-320x202.jpg\";s:5:\"width\";i:320;s:6:\"height\";i:202;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:8:\"tabs-img\";a:4:{s:4:\"file\";s:17:\"camelot-52x50.jpg\";s:5:\"width\";i:52;s:6:\"height\";i:50;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"related-img\";a:4:{s:4:\"file\";s:19:\"camelot-180x138.jpg\";s:5:\"width\";i:180;s:6:\"height\";i:138;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"portfolio-full\";a:4:{s:4:\"file\";s:19:\"camelot-701x400.jpg\";s:5:\"width\";i:701;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:13:\"portfolio-one\";a:4:{s:4:\"file\";s:19:\"camelot-540x272.jpg\";s:5:\"width\";i:540;s:6:\"height\";i:272;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:13:\"portfolio-two\";a:4:{s:4:\"file\";s:19:\"camelot-460x295.jpg\";s:5:\"width\";i:460;s:6:\"height\";i:295;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"portfolio-three\";a:4:{s:4:\"file\";s:19:\"camelot-300x214.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:214;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"portfolio-four\";a:4:{s:4:\"file\";s:19:\"camelot-220x161.jpg\";s:5:\"width\";i:220;s:6:\"height\";i:161;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"portfolio-five\";a:4:{s:4:\"file\";s:19:\"camelot-177x142.jpg\";s:5:\"width\";i:177;s:6:\"height\";i:142;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:13:\"portfolio-six\";a:4:{s:4:\"file\";s:19:\"camelot-147x118.jpg\";s:5:\"width\";i:147;s:6:\"height\";i:118;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"recent-posts\";a:4:{s:4:\"file\";s:19:\"camelot-700x441.jpg\";s:5:\"width\";i:700;s:6:\"height\";i:441;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:22:\"recent-works-thumbnail\";a:4:{s:4:\"file\";s:17:\"camelot-66x66.jpg\";s:5:\"width\";i:66;s:6:\"height\";i:66;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'),
(5397, 1101, '_wp_attached_file', '2015/01/shongweni-dressarge.jpg'),
(5398, 1101, '_wp_attachment_metadata', 'a:5:{s:5:\"width\";i:1100;s:6:\"height\";i:733;s:4:\"file\";s:31:\"2015/01/shongweni-dressarge.jpg\";s:5:\"sizes\";a:16:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:31:\"shongweni-dressarge-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:31:\"shongweni-dressarge-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:32:\"shongweni-dressarge-1024x682.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:682;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:10:\"blog-large\";a:4:{s:4:\"file\";s:31:\"shongweni-dressarge-669x272.jpg\";s:5:\"width\";i:669;s:6:\"height\";i:272;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"blog-medium\";a:4:{s:4:\"file\";s:31:\"shongweni-dressarge-320x202.jpg\";s:5:\"width\";i:320;s:6:\"height\";i:202;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:8:\"tabs-img\";a:4:{s:4:\"file\";s:29:\"shongweni-dressarge-52x50.jpg\";s:5:\"width\";i:52;s:6:\"height\";i:50;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"related-img\";a:4:{s:4:\"file\";s:31:\"shongweni-dressarge-180x138.jpg\";s:5:\"width\";i:180;s:6:\"height\";i:138;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"portfolio-full\";a:4:{s:4:\"file\";s:31:\"shongweni-dressarge-940x400.jpg\";s:5:\"width\";i:940;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:13:\"portfolio-one\";a:4:{s:4:\"file\";s:31:\"shongweni-dressarge-540x272.jpg\";s:5:\"width\";i:540;s:6:\"height\";i:272;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:13:\"portfolio-two\";a:4:{s:4:\"file\";s:31:\"shongweni-dressarge-460x295.jpg\";s:5:\"width\";i:460;s:6:\"height\";i:295;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"portfolio-three\";a:4:{s:4:\"file\";s:31:\"shongweni-dressarge-300x214.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:214;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"portfolio-four\";a:4:{s:4:\"file\";s:31:\"shongweni-dressarge-220x161.jpg\";s:5:\"width\";i:220;s:6:\"height\";i:161;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"portfolio-five\";a:4:{s:4:\"file\";s:31:\"shongweni-dressarge-177x142.jpg\";s:5:\"width\";i:177;s:6:\"height\";i:142;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:13:\"portfolio-six\";a:4:{s:4:\"file\";s:31:\"shongweni-dressarge-147x118.jpg\";s:5:\"width\";i:147;s:6:\"height\";i:118;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"recent-posts\";a:4:{s:4:\"file\";s:31:\"shongweni-dressarge-700x441.jpg\";s:5:\"width\";i:700;s:6:\"height\";i:441;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:22:\"recent-works-thumbnail\";a:4:{s:4:\"file\";s:29:\"shongweni-dressarge-66x66.jpg\";s:5:\"width\";i:66;s:6:\"height\";i:66;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'),
(5399, 1102, '_wp_attached_file', '2015/01/Golf.jpg'),
(5400, 1102, '_wp_attachment_metadata', 'a:5:{s:5:\"width\";i:590;s:6:\"height\";i:390;s:4:\"file\";s:16:\"2015/01/Golf.jpg\";s:5:\"sizes\";a:13:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:16:\"Golf-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:16:\"Golf-300x198.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:198;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:10:\"blog-large\";a:4:{s:4:\"file\";s:16:\"Golf-590x272.jpg\";s:5:\"width\";i:590;s:6:\"height\";i:272;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"blog-medium\";a:4:{s:4:\"file\";s:16:\"Golf-320x202.jpg\";s:5:\"width\";i:320;s:6:\"height\";i:202;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:8:\"tabs-img\";a:4:{s:4:\"file\";s:14:\"Golf-52x50.jpg\";s:5:\"width\";i:52;s:6:\"height\";i:50;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"related-img\";a:4:{s:4:\"file\";s:16:\"Golf-180x138.jpg\";s:5:\"width\";i:180;s:6:\"height\";i:138;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:13:\"portfolio-one\";a:4:{s:4:\"file\";s:16:\"Golf-540x272.jpg\";s:5:\"width\";i:540;s:6:\"height\";i:272;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:13:\"portfolio-two\";a:4:{s:4:\"file\";s:16:\"Golf-460x295.jpg\";s:5:\"width\";i:460;s:6:\"height\";i:295;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"portfolio-three\";a:4:{s:4:\"file\";s:16:\"Golf-300x214.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:214;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"portfolio-four\";a:4:{s:4:\"file\";s:16:\"Golf-220x161.jpg\";s:5:\"width\";i:220;s:6:\"height\";i:161;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"portfolio-five\";a:4:{s:4:\"file\";s:16:\"Golf-177x142.jpg\";s:5:\"width\";i:177;s:6:\"height\";i:142;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:13:\"portfolio-six\";a:4:{s:4:\"file\";s:16:\"Golf-147x118.jpg\";s:5:\"width\";i:147;s:6:\"height\";i:118;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:22:\"recent-works-thumbnail\";a:4:{s:4:\"file\";s:14:\"Golf-66x66.jpg\";s:5:\"width\";i:66;s:6:\"height\";i:66;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'),
(5405, 1103, 'FB_content', ''),
(5418, 1104, 'FB_content', ''),
(5435, 1105, '_wp_attached_file', '2015/01/Tala.jpg'),
(5436, 1105, '_wp_attachment_metadata', 'a:5:{s:5:\"width\";i:900;s:6:\"height\";i:600;s:4:\"file\";s:16:\"2015/01/Tala.jpg\";s:5:\"sizes\";a:15:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:16:\"Tala-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:16:\"Tala-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:10:\"blog-large\";a:4:{s:4:\"file\";s:16:\"Tala-669x272.jpg\";s:5:\"width\";i:669;s:6:\"height\";i:272;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"blog-medium\";a:4:{s:4:\"file\";s:16:\"Tala-320x202.jpg\";s:5:\"width\";i:320;s:6:\"height\";i:202;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:8:\"tabs-img\";a:4:{s:4:\"file\";s:14:\"Tala-52x50.jpg\";s:5:\"width\";i:52;s:6:\"height\";i:50;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"related-img\";a:4:{s:4:\"file\";s:16:\"Tala-180x138.jpg\";s:5:\"width\";i:180;s:6:\"height\";i:138;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"portfolio-full\";a:4:{s:4:\"file\";s:16:\"Tala-900x400.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:13:\"portfolio-one\";a:4:{s:4:\"file\";s:16:\"Tala-540x272.jpg\";s:5:\"width\";i:540;s:6:\"height\";i:272;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:13:\"portfolio-two\";a:4:{s:4:\"file\";s:16:\"Tala-460x295.jpg\";s:5:\"width\";i:460;s:6:\"height\";i:295;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"portfolio-three\";a:4:{s:4:\"file\";s:16:\"Tala-300x214.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:214;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"portfolio-four\";a:4:{s:4:\"file\";s:16:\"Tala-220x161.jpg\";s:5:\"width\";i:220;s:6:\"height\";i:161;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"portfolio-five\";a:4:{s:4:\"file\";s:16:\"Tala-177x142.jpg\";s:5:\"width\";i:177;s:6:\"height\";i:142;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:13:\"portfolio-six\";a:4:{s:4:\"file\";s:16:\"Tala-147x118.jpg\";s:5:\"width\";i:147;s:6:\"height\";i:118;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"recent-posts\";a:4:{s:4:\"file\";s:16:\"Tala-700x441.jpg\";s:5:\"width\";i:700;s:6:\"height\";i:441;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:22:\"recent-works-thumbnail\";a:4:{s:4:\"file\";s:14:\"Tala-66x66.jpg\";s:5:\"width\";i:66;s:6:\"height\";i:66;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'),
(5441, 1106, 'FB_content', ''),
(5462, 1107, 'FB_content', ''),
(5467, 13, 'sbg_selected_sidebar', 'a:1:{i:0;s:1:\"0\";}'),
(5468, 13, 'sbg_selected_sidebar_replacement', 'a:1:{i:0;s:0:\"\";}'),
(5469, 13, 'sbg_selected_sidebar_2', 'a:1:{i:0;s:1:\"0\";}'),
(5470, 13, 'sbg_selected_sidebar_2_replacement', 'a:1:{i:0;s:0:\"\";}'),
(5471, 854, '_edit_lock', '1469466979:1'),
(5472, 854, '_edit_last', '1'),
(5477, 854, 'slide_template', 'default'),
(5478, 854, 'pyre_show_first_featured_image', 'no'),
(5479, 854, 'pyre_portfolio_width_100', 'no'),
(5480, 854, 'pyre_video', ''),
(5481, 854, 'pyre_fimg_width', ''),
(5482, 854, 'pyre_fimg_height', ''),
(5483, 854, 'pyre_image_rollover_icons', 'default'),
(5484, 854, 'pyre_link_icon_url', ''),
(5485, 854, 'pyre_post_links_target', 'no'),
(5486, 854, 'pyre_related_posts', 'default'),
(5487, 854, 'pyre_share_box', 'default'),
(5488, 854, 'pyre_post_pagination', 'default'),
(5489, 854, 'pyre_author_info', 'default'),
(5490, 854, 'pyre_post_meta', 'default'),
(5491, 854, 'pyre_post_comments', 'default'),
(5492, 854, 'pyre_main_top_padding', ''),
(5493, 854, 'pyre_main_bottom_padding', ''),
(5494, 854, 'pyre_hundredp_padding', ''),
(5495, 854, 'pyre_slider_position', 'default'),
(5496, 854, 'pyre_slider_type', 'no'),
(5497, 854, 'pyre_slider', '0'),
(5498, 854, 'pyre_wooslider', '0'),
(5499, 854, 'pyre_revslider', '0'),
(5500, 854, 'pyre_elasticslider', '0'),
(5501, 854, 'pyre_fallback', ''),
(5502, 854, 'pyre_avada_rev_styles', 'default'),
(5503, 854, 'pyre_display_header', 'yes'),
(5504, 854, 'pyre_header_100_width', 'default'),
(5505, 854, 'pyre_header_bg', ''),
(5506, 854, 'pyre_header_bg_color', ''),
(5507, 854, 'pyre_header_bg_opacity', ''),
(5508, 854, 'pyre_header_bg_full', 'no'),
(5509, 854, 'pyre_header_bg_repeat', 'repeat'),
(5510, 854, 'pyre_displayed_menu', 'default'),
(5511, 854, 'pyre_display_footer', 'default'),
(5512, 854, 'pyre_display_copyright', 'default'),
(5513, 854, 'pyre_footer_100_width', 'default'),
(5514, 854, 'pyre_sidebar_position', 'default'),
(5515, 854, 'pyre_sidebar_bg_color', ''),
(5516, 854, 'pyre_page_bg_layout', 'default'),
(5517, 854, 'pyre_page_bg', ''),
(5518, 854, 'pyre_page_bg_color', ''),
(5519, 854, 'pyre_page_bg_full', 'no'),
(5520, 854, 'pyre_page_bg_repeat', 'repeat'),
(5521, 854, 'pyre_wide_page_bg', ''),
(5522, 854, 'pyre_wide_page_bg_color', ''),
(5523, 854, 'pyre_wide_page_bg_full', 'no'),
(5524, 854, 'pyre_wide_page_bg_repeat', 'repeat'),
(5525, 854, 'pyre_page_title', 'default'),
(5526, 854, 'pyre_page_title_text', 'default'),
(5527, 854, 'pyre_page_title_text_alignment', 'default'),
(5528, 854, 'pyre_page_title_100_width', 'default'),
(5529, 854, 'pyre_page_title_custom_text', ''),
(5530, 854, 'pyre_page_title_text_size', ''),
(5531, 854, 'pyre_page_title_custom_subheader', ''),
(5532, 854, 'pyre_page_title_custom_subheader_text_size', ''),
(5533, 854, 'pyre_page_title_font_color', ''),
(5534, 854, 'pyre_page_title_height', ''),
(5535, 854, 'pyre_page_title_mobile_height', ''),
(5536, 854, 'pyre_page_title_bar_bg', ''),
(5537, 854, 'pyre_page_title_bar_bg_retina', ''),
(5538, 854, 'pyre_page_title_bar_bg_color', ''),
(5539, 854, 'pyre_page_title_bar_borders_color', ''),
(5540, 854, 'pyre_page_title_bar_bg_full', 'default'),
(5541, 854, 'pyre_page_title_bg_parallax', 'default'),
(5542, 854, 'pyre_page_title_breadcrumbs_search_bar', 'default'),
(5547, 854, 'easy-resource-req', 'a:6:{s:10:\"nights-min\";s:1:\"1\";s:10:\"nights-max\";s:2:\"14\";s:8:\"pers-min\";s:1:\"1\";s:8:\"pers-max\";s:2:\"10\";s:8:\"start-on\";i:0;s:6:\"end-on\";i:0;}'),
(5548, 854, 'easy-resource-price', 'a:2:{i:0;i:1;i:1;i:0;}'),
(5549, 854, 'easy-resource-permission', 'switch_themes'),
(5550, 854, 'easy-resource-taxes', 'a:0:{}'),
(5551, 851, '_wp_page_template', '100-width.php'),
(5556, 851, 'slide_template', 'default'),
(5557, 851, 'fusion_builder_status', 'active'),
(5558, 1108, 'FB_content', ''),
(5559, 851, 'pyre_slider_position', 'default'),
(5560, 851, 'pyre_slider_type', 'no'),
(5561, 851, 'pyre_slider', '0'),
(5562, 851, 'pyre_wooslider', '0'),
(5563, 851, 'pyre_revslider', '0'),
(5564, 851, 'pyre_elasticslider', '0'),
(5565, 851, 'pyre_fallback', ''),
(5566, 851, 'pyre_avada_rev_styles', 'default'),
(5567, 851, 'pyre_main_top_padding', ''),
(5568, 851, 'pyre_main_bottom_padding', ''),
(5569, 851, 'pyre_hundredp_padding', ''),
(5570, 851, 'pyre_show_first_featured_image', 'no'),
(5571, 851, 'pyre_display_header', 'yes'),
(5572, 851, 'pyre_header_100_width', 'default'),
(5573, 851, 'pyre_header_bg', ''),
(5574, 851, 'pyre_header_bg_color', ''),
(5575, 851, 'pyre_header_bg_opacity', ''),
(5576, 851, 'pyre_header_bg_full', 'no'),
(5577, 851, 'pyre_header_bg_repeat', 'repeat'),
(5578, 851, 'pyre_displayed_menu', 'default'),
(5579, 851, 'pyre_display_footer', 'default'),
(5580, 851, 'pyre_display_copyright', 'default'),
(5581, 851, 'pyre_footer_100_width', 'default'),
(5582, 851, 'pyre_sidebar_position', 'default'),
(5583, 851, 'pyre_sidebar_bg_color', ''),
(5584, 851, 'pyre_page_bg_layout', 'default'),
(5585, 851, 'pyre_page_bg', ''),
(5586, 851, 'pyre_page_bg_color', ''),
(5587, 851, 'pyre_page_bg_full', 'no'),
(5588, 851, 'pyre_page_bg_repeat', 'repeat'),
(5589, 851, 'pyre_wide_page_bg', ''),
(5590, 851, 'pyre_wide_page_bg_color', ''),
(5591, 851, 'pyre_wide_page_bg_full', 'no'),
(5592, 851, 'pyre_wide_page_bg_repeat', 'repeat'),
(5593, 851, 'pyre_portfolio_width_100', 'no'),
(5594, 851, 'pyre_portfolio_content_length', 'default'),
(5595, 851, 'pyre_portfolio_excerpt', ''),
(5596, 851, 'pyre_portfolio_filters', 'yes'),
(5597, 851, 'pyre_portfolio_text_layout', 'default'),
(5598, 851, 'pyre_portfolio_featured_image_size', 'default'),
(5599, 851, 'pyre_portfolio_column_spacing', ''),
(5600, 851, 'pyre_page_title', 'no'),
(5601, 851, 'pyre_page_title_text', 'no'),
(5602, 851, 'pyre_page_title_text_alignment', 'default'),
(5603, 851, 'pyre_page_title_100_width', 'default'),
(5604, 851, 'pyre_page_title_custom_text', ''),
(5605, 851, 'pyre_page_title_text_size', ''),
(5606, 851, 'pyre_page_title_custom_subheader', ''),
(5607, 851, 'pyre_page_title_custom_subheader_text_size', ''),
(5608, 851, 'pyre_page_title_font_color', ''),
(5609, 851, 'pyre_page_title_height', ''),
(5610, 851, 'pyre_page_title_mobile_height', ''),
(5611, 851, 'pyre_page_title_bar_bg', ''),
(5612, 851, 'pyre_page_title_bar_bg_retina', ''),
(5613, 851, 'pyre_page_title_bar_bg_color', ''),
(5614, 851, 'pyre_page_title_bar_borders_color', ''),
(5615, 851, 'pyre_page_title_bar_bg_full', 'default'),
(5616, 851, 'pyre_page_title_bg_parallax', 'default'),
(5617, 851, 'pyre_page_title_breadcrumbs_search_bar', 'none'),
(5626, 1109, 'FB_content', ''),
(5631, 1110, 'FB_content', ''),
(5644, 1111, 'FB_content', ''),
(5661, 1109, 'FB_content', ''),
(5666, 1112, 'FB_content', ''),
(5679, 1113, 'FB_content', ''),
(5692, 1114, 'FB_content', ''),
(5705, 1115, 'FB_content', ''),
(5718, 1116, 'FB_content', ''),
(5731, 1117, 'FB_content', ''),
(5744, 1118, 'FB_content', ''),
(5757, 1119, 'FB_content', ''),
(5770, 854, 'sbg_selected_sidebar', 'a:1:{i:0;s:1:\"0\";}'),
(5771, 854, 'sbg_selected_sidebar_replacement', 'a:1:{i:0;s:0:\"\";}'),
(5772, 854, 'sbg_selected_sidebar_2', 'a:1:{i:0;s:1:\"0\";}'),
(5773, 854, 'sbg_selected_sidebar_2_replacement', 'a:1:{i:0;s:0:\"\";}'),
(5774, 901, 'FB_content', ''),
(5775, 1121, '_edit_last', '1'),
(5776, 1121, '_edit_lock', '1659607264:1'),
(5781, 1122, 'FB_content', ''),
(5794, 1123, 'FB_content', ''),
(5807, 1124, 'FB_content', ''),
(5820, 1125, 'FB_content', ''),
(5833, 1126, 'FB_content', ''),
(5846, 1127, 'FB_content', ''),
(5859, 1128, 'FB_content', ''),
(5873, 1129, 'FB_content', ''),
(5886, 1130, 'FB_content', ''),
(5899, 1131, 'FB_content', ''),
(5936, 1132, 'FB_content', ''),
(5949, 1133, 'FB_content', ''),
(5962, 1134, 'FB_content', ''),
(5975, 1135, 'FB_content', ''),
(5988, 1136, 'FB_content', ''),
(6001, 1137, 'FB_content', ''),
(6014, 1138, 'FB_content', ''),
(6027, 1139, 'FB_content', ''),
(6036, 1121, '_wp_page_template', 'default'),
(6041, 1121, 'slide_template', 'default'),
(6042, 1121, 'fusion_builder_status', 'active'),
(6043, 1140, 'FB_content', ''),
(6044, 1121, 'pyre_slider_position', 'default'),
(6045, 1121, 'pyre_slider_type', 'no'),
(6046, 1121, 'pyre_slider', '0'),
(6047, 1121, 'pyre_wooslider', '0'),
(6048, 1121, 'pyre_revslider', '0'),
(6049, 1121, 'pyre_elasticslider', '0'),
(6050, 1121, 'pyre_fallback', ''),
(6051, 1121, 'pyre_avada_rev_styles', 'default'),
(6052, 1121, 'pyre_main_top_padding', ''),
(6053, 1121, 'pyre_main_bottom_padding', ''),
(6054, 1121, 'pyre_hundredp_padding', ''),
(6055, 1121, 'pyre_show_first_featured_image', 'no'),
(6056, 1121, 'pyre_display_header', 'yes'),
(6057, 1121, 'pyre_header_100_width', 'default'),
(6058, 1121, 'pyre_header_bg', ''),
(6059, 1121, 'pyre_header_bg_color', ''),
(6060, 1121, 'pyre_header_bg_opacity', ''),
(6061, 1121, 'pyre_header_bg_full', 'no'),
(6062, 1121, 'pyre_header_bg_repeat', 'repeat'),
(6063, 1121, 'pyre_displayed_menu', '31'),
(6064, 1121, 'pyre_display_footer', 'default'),
(6065, 1121, 'pyre_display_copyright', 'default'),
(6066, 1121, 'pyre_footer_100_width', 'default'),
(6067, 1121, 'pyre_sidebar_position', 'default'),
(6068, 1121, 'pyre_sidebar_bg_color', ''),
(6069, 1121, 'pyre_page_bg_layout', 'default'),
(6070, 1121, 'pyre_page_bg', ''),
(6071, 1121, 'pyre_page_bg_color', ''),
(6072, 1121, 'pyre_page_bg_full', 'no'),
(6073, 1121, 'pyre_page_bg_repeat', 'repeat'),
(6074, 1121, 'pyre_wide_page_bg', ''),
(6075, 1121, 'pyre_wide_page_bg_color', ''),
(6076, 1121, 'pyre_wide_page_bg_full', 'no'),
(6077, 1121, 'pyre_wide_page_bg_repeat', 'repeat'),
(6078, 1121, 'pyre_portfolio_width_100', 'no'),
(6079, 1121, 'pyre_portfolio_content_length', 'default'),
(6080, 1121, 'pyre_portfolio_excerpt', ''),
(6081, 1121, 'pyre_portfolio_filters', 'yes'),
(6082, 1121, 'pyre_portfolio_text_layout', 'default'),
(6083, 1121, 'pyre_portfolio_featured_image_size', 'default'),
(6084, 1121, 'pyre_portfolio_column_spacing', ''),
(6085, 1121, 'pyre_page_title', 'no'),
(6086, 1121, 'pyre_page_title_text', 'no'),
(6087, 1121, 'pyre_page_title_text_alignment', 'default'),
(6088, 1121, 'pyre_page_title_100_width', 'default'),
(6089, 1121, 'pyre_page_title_custom_text', ''),
(6090, 1121, 'pyre_page_title_text_size', ''),
(6091, 1121, 'pyre_page_title_custom_subheader', ''),
(6092, 1121, 'pyre_page_title_custom_subheader_text_size', ''),
(6093, 1121, 'pyre_page_title_font_color', ''),
(6094, 1121, 'pyre_page_title_height', ''),
(6095, 1121, 'pyre_page_title_mobile_height', ''),
(6096, 1121, 'pyre_page_title_bar_bg', ''),
(6097, 1121, 'pyre_page_title_bar_bg_retina', ''),
(6098, 1121, 'pyre_page_title_bar_bg_color', ''),
(6099, 1121, 'pyre_page_title_bar_borders_color', ''),
(6100, 1121, 'pyre_page_title_bar_bg_full', 'default'),
(6101, 1121, 'pyre_page_title_bg_parallax', 'default'),
(6102, 1121, 'pyre_page_title_breadcrumbs_search_bar', 'default'),
(6115, 1141, 'FB_content', ''),
(6124, 1142, 'FB_content', ''),
(6130, 1143, 'FB_content', ''),
(6139, 1142, 'FB_content', ''),
(6140, 1142, 'FB_content', ''),
(6145, 1144, 'FB_content', ''),
(6158, 1145, 'FB_content', ''),
(6168, 1142, 'FB_content', ''),
(6169, 1142, 'FB_content', ''),
(6170, 1142, 'FB_content', ''),
(6171, 1142, 'FB_content', ''),
(6172, 1142, 'FB_content', ''),
(6173, 1142, 'FB_content', ''),
(6178, 1146, 'FB_content', ''),
(6191, 1147, 'FB_content', ''),
(6204, 1148, 'FB_content', ''),
(6213, 1142, 'FB_content', ''),
(6214, 1142, 'FB_content', ''),
(6215, 1149, '_menu_item_type', 'post_type'),
(6216, 1149, '_menu_item_menu_item_parent', '0'),
(6217, 1149, '_menu_item_object_id', '1121'),
(6218, 1149, '_menu_item_object', 'page'),
(6219, 1149, '_menu_item_target', ''),
(6220, 1149, '_menu_item_classes', 'a:1:{i:0;s:0:\"\";}'),
(6221, 1149, '_menu_item_xfn', ''),
(6222, 1149, '_menu_item_url', ''),
(6232, 1142, 'FB_content', ''),
(6254, 1151, 'FB_content', ''),
(6267, 1152, 'FB_content', ''),
(6280, 1153, 'FB_content', ''),
(6289, 1142, 'FB_content', ''),
(6294, 1154, 'FB_content', ''),
(6307, 1155, 'FB_content', ''),
(6320, 1156, 'FB_content', ''),
(6329, 1142, 'FB_content', ''),
(6334, 1157, 'FB_content', ''),
(6347, 1160, 'FB_content', ''),
(6360, 1161, 'FB_content', ''),
(6369, 901, 'FB_content', ''),
(6370, 1, 'avada_post_views_count', '1265'),
(6371, 89, 'avada_post_views_count', '946'),
(6372, 417, 'avada_post_views_count', '889'),
(6378, 1164, 'FB_content', ''),
(6392, 1165, 'FB_content', ''),
(6406, 1166, 'FB_content', ''),
(6419, 1167, 'FB_content', ''),
(6433, 1168, 'FB_content', ''),
(6446, 1169, 'FB_content', ''),
(6459, 1170, 'FB_content', ''),
(6472, 1171, 'FB_content', ''),
(6486, 1172, 'FB_content', ''),
(6499, 1173, 'FB_content', ''),
(6512, 1174, 'FB_content', ''),
(6526, 1176, 'FB_content', ''),
(6539, 1177, 'FB_content', ''),
(6553, 1178, 'FB_content', ''),
(6566, 1179, 'FB_content', ''),
(6579, 1180, 'FB_content', ''),
(6592, 1181, 'FB_content', ''),
(6601, 152, '_edit_lock', '1561965308:1'),
(6602, 1182, '_edit_last', '1'),
(6603, 1182, '_edit_lock', '1616318133:1'),
(6604, 854, 'reservations_child_price', ''),
(6617, 1185, 'FB_content', ''),
(6630, 1186, 'FB_content', ''),
(6639, 1142, 'FB_content', ''),
(6645, 1187, 'FB_content', ''),
(6659, 1188, 'FB_content', ''),
(6680, 1189, 'FB_content', ''),
(6707, 1190, '_wp_attached_file', '2016/04/13265_696714407021729_1413850846_n.jpg'),
(6708, 1190, '_wp_attachment_metadata', 'a:5:{s:5:\"width\";i:795;s:6:\"height\";i:480;s:4:\"file\";s:46:\"2016/04/13265_696714407021729_1413850846_n.jpg\";s:5:\"sizes\";a:16:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:46:\"13265_696714407021729_1413850846_n-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:46:\"13265_696714407021729_1413850846_n-300x181.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:181;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:46:\"13265_696714407021729_1413850846_n-768x464.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:464;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:10:\"blog-large\";a:4:{s:4:\"file\";s:46:\"13265_696714407021729_1413850846_n-669x272.jpg\";s:5:\"width\";i:669;s:6:\"height\";i:272;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"blog-medium\";a:4:{s:4:\"file\";s:46:\"13265_696714407021729_1413850846_n-320x202.jpg\";s:5:\"width\";i:320;s:6:\"height\";i:202;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:8:\"tabs-img\";a:4:{s:4:\"file\";s:44:\"13265_696714407021729_1413850846_n-52x50.jpg\";s:5:\"width\";i:52;s:6:\"height\";i:50;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"related-img\";a:4:{s:4:\"file\";s:46:\"13265_696714407021729_1413850846_n-180x138.jpg\";s:5:\"width\";i:180;s:6:\"height\";i:138;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"portfolio-full\";a:4:{s:4:\"file\";s:46:\"13265_696714407021729_1413850846_n-795x400.jpg\";s:5:\"width\";i:795;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:13:\"portfolio-one\";a:4:{s:4:\"file\";s:46:\"13265_696714407021729_1413850846_n-540x272.jpg\";s:5:\"width\";i:540;s:6:\"height\";i:272;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:13:\"portfolio-two\";a:4:{s:4:\"file\";s:46:\"13265_696714407021729_1413850846_n-460x295.jpg\";s:5:\"width\";i:460;s:6:\"height\";i:295;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"portfolio-three\";a:4:{s:4:\"file\";s:46:\"13265_696714407021729_1413850846_n-300x214.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:214;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"portfolio-four\";a:4:{s:4:\"file\";s:46:\"13265_696714407021729_1413850846_n-220x161.jpg\";s:5:\"width\";i:220;s:6:\"height\";i:161;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"portfolio-five\";a:4:{s:4:\"file\";s:46:\"13265_696714407021729_1413850846_n-177x142.jpg\";s:5:\"width\";i:177;s:6:\"height\";i:142;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:13:\"portfolio-six\";a:4:{s:4:\"file\";s:46:\"13265_696714407021729_1413850846_n-147x118.jpg\";s:5:\"width\";i:147;s:6:\"height\";i:118;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"recent-posts\";a:4:{s:4:\"file\";s:46:\"13265_696714407021729_1413850846_n-700x441.jpg\";s:5:\"width\";i:700;s:6:\"height\";i:441;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:22:\"recent-works-thumbnail\";a:4:{s:4:\"file\";s:44:\"13265_696714407021729_1413850846_n-66x66.jpg\";s:5:\"width\";i:66;s:6:\"height\";i:66;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(6709, 1191, '_wp_attached_file', '2016/04/526469_716126638413839_847766485_n.jpg'),
(6710, 1191, '_wp_attachment_metadata', 'a:5:{s:5:\"width\";i:640;s:6:\"height\";i:480;s:4:\"file\";s:46:\"2016/04/526469_716126638413839_847766485_n.jpg\";s:5:\"sizes\";a:15:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:46:\"526469_716126638413839_847766485_n-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:46:\"526469_716126638413839_847766485_n-300x225.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:225;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:10:\"blog-large\";a:4:{s:4:\"file\";s:46:\"526469_716126638413839_847766485_n-640x272.jpg\";s:5:\"width\";i:640;s:6:\"height\";i:272;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"blog-medium\";a:4:{s:4:\"file\";s:46:\"526469_716126638413839_847766485_n-320x202.jpg\";s:5:\"width\";i:320;s:6:\"height\";i:202;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:8:\"tabs-img\";a:4:{s:4:\"file\";s:44:\"526469_716126638413839_847766485_n-52x50.jpg\";s:5:\"width\";i:52;s:6:\"height\";i:50;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"related-img\";a:4:{s:4:\"file\";s:46:\"526469_716126638413839_847766485_n-180x138.jpg\";s:5:\"width\";i:180;s:6:\"height\";i:138;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"portfolio-full\";a:4:{s:4:\"file\";s:46:\"526469_716126638413839_847766485_n-640x400.jpg\";s:5:\"width\";i:640;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:13:\"portfolio-one\";a:4:{s:4:\"file\";s:46:\"526469_716126638413839_847766485_n-540x272.jpg\";s:5:\"width\";i:540;s:6:\"height\";i:272;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:13:\"portfolio-two\";a:4:{s:4:\"file\";s:46:\"526469_716126638413839_847766485_n-460x295.jpg\";s:5:\"width\";i:460;s:6:\"height\";i:295;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"portfolio-three\";a:4:{s:4:\"file\";s:46:\"526469_716126638413839_847766485_n-300x214.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:214;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"portfolio-four\";a:4:{s:4:\"file\";s:46:\"526469_716126638413839_847766485_n-220x161.jpg\";s:5:\"width\";i:220;s:6:\"height\";i:161;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"portfolio-five\";a:4:{s:4:\"file\";s:46:\"526469_716126638413839_847766485_n-177x142.jpg\";s:5:\"width\";i:177;s:6:\"height\";i:142;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:13:\"portfolio-six\";a:4:{s:4:\"file\";s:46:\"526469_716126638413839_847766485_n-147x118.jpg\";s:5:\"width\";i:147;s:6:\"height\";i:118;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"recent-posts\";a:4:{s:4:\"file\";s:46:\"526469_716126638413839_847766485_n-640x441.jpg\";s:5:\"width\";i:640;s:6:\"height\";i:441;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:22:\"recent-works-thumbnail\";a:4:{s:4:\"file\";s:44:\"526469_716126638413839_847766485_n-66x66.jpg\";s:5:\"width\";i:66;s:6:\"height\";i:66;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(6711, 1192, '_wp_attached_file', '2016/04/598476_718334754859694_1050256252_n.jpg'),
(6712, 1192, '_wp_attachment_metadata', 'a:5:{s:5:\"width\";i:640;s:6:\"height\";i:480;s:4:\"file\";s:47:\"2016/04/598476_718334754859694_1050256252_n.jpg\";s:5:\"sizes\";a:15:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:47:\"598476_718334754859694_1050256252_n-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:47:\"598476_718334754859694_1050256252_n-300x225.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:225;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:10:\"blog-large\";a:4:{s:4:\"file\";s:47:\"598476_718334754859694_1050256252_n-640x272.jpg\";s:5:\"width\";i:640;s:6:\"height\";i:272;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"blog-medium\";a:4:{s:4:\"file\";s:47:\"598476_718334754859694_1050256252_n-320x202.jpg\";s:5:\"width\";i:320;s:6:\"height\";i:202;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:8:\"tabs-img\";a:4:{s:4:\"file\";s:45:\"598476_718334754859694_1050256252_n-52x50.jpg\";s:5:\"width\";i:52;s:6:\"height\";i:50;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"related-img\";a:4:{s:4:\"file\";s:47:\"598476_718334754859694_1050256252_n-180x138.jpg\";s:5:\"width\";i:180;s:6:\"height\";i:138;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"portfolio-full\";a:4:{s:4:\"file\";s:47:\"598476_718334754859694_1050256252_n-640x400.jpg\";s:5:\"width\";i:640;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:13:\"portfolio-one\";a:4:{s:4:\"file\";s:47:\"598476_718334754859694_1050256252_n-540x272.jpg\";s:5:\"width\";i:540;s:6:\"height\";i:272;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:13:\"portfolio-two\";a:4:{s:4:\"file\";s:47:\"598476_718334754859694_1050256252_n-460x295.jpg\";s:5:\"width\";i:460;s:6:\"height\";i:295;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"portfolio-three\";a:4:{s:4:\"file\";s:47:\"598476_718334754859694_1050256252_n-300x214.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:214;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"portfolio-four\";a:4:{s:4:\"file\";s:47:\"598476_718334754859694_1050256252_n-220x161.jpg\";s:5:\"width\";i:220;s:6:\"height\";i:161;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"portfolio-five\";a:4:{s:4:\"file\";s:47:\"598476_718334754859694_1050256252_n-177x142.jpg\";s:5:\"width\";i:177;s:6:\"height\";i:142;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:13:\"portfolio-six\";a:4:{s:4:\"file\";s:47:\"598476_718334754859694_1050256252_n-147x118.jpg\";s:5:\"width\";i:147;s:6:\"height\";i:118;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"recent-posts\";a:4:{s:4:\"file\";s:47:\"598476_718334754859694_1050256252_n-640x441.jpg\";s:5:\"width\";i:640;s:6:\"height\";i:441;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:22:\"recent-works-thumbnail\";a:4:{s:4:\"file\";s:45:\"598476_718334754859694_1050256252_n-66x66.jpg\";s:5:\"width\";i:66;s:6:\"height\";i:66;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:13:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}s:14:\"resized_images\";a:2:{i:0;s:7:\"500x383\";i:1;s:8:\"1000x766\";}}}'),
(6713, 1193, '_wp_attached_file', '2016/04/971958_716239841735852_1273877130_n.jpg'),
(6714, 1193, '_wp_attachment_metadata', 'a:5:{s:5:\"width\";i:640;s:6:\"height\";i:480;s:4:\"file\";s:47:\"2016/04/971958_716239841735852_1273877130_n.jpg\";s:5:\"sizes\";a:15:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:47:\"971958_716239841735852_1273877130_n-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:47:\"971958_716239841735852_1273877130_n-300x225.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:225;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:10:\"blog-large\";a:4:{s:4:\"file\";s:47:\"971958_716239841735852_1273877130_n-640x272.jpg\";s:5:\"width\";i:640;s:6:\"height\";i:272;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"blog-medium\";a:4:{s:4:\"file\";s:47:\"971958_716239841735852_1273877130_n-320x202.jpg\";s:5:\"width\";i:320;s:6:\"height\";i:202;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:8:\"tabs-img\";a:4:{s:4:\"file\";s:45:\"971958_716239841735852_1273877130_n-52x50.jpg\";s:5:\"width\";i:52;s:6:\"height\";i:50;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"related-img\";a:4:{s:4:\"file\";s:47:\"971958_716239841735852_1273877130_n-180x138.jpg\";s:5:\"width\";i:180;s:6:\"height\";i:138;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"portfolio-full\";a:4:{s:4:\"file\";s:47:\"971958_716239841735852_1273877130_n-640x400.jpg\";s:5:\"width\";i:640;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:13:\"portfolio-one\";a:4:{s:4:\"file\";s:47:\"971958_716239841735852_1273877130_n-540x272.jpg\";s:5:\"width\";i:540;s:6:\"height\";i:272;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:13:\"portfolio-two\";a:4:{s:4:\"file\";s:47:\"971958_716239841735852_1273877130_n-460x295.jpg\";s:5:\"width\";i:460;s:6:\"height\";i:295;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"portfolio-three\";a:4:{s:4:\"file\";s:47:\"971958_716239841735852_1273877130_n-300x214.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:214;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"portfolio-four\";a:4:{s:4:\"file\";s:47:\"971958_716239841735852_1273877130_n-220x161.jpg\";s:5:\"width\";i:220;s:6:\"height\";i:161;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"portfolio-five\";a:4:{s:4:\"file\";s:47:\"971958_716239841735852_1273877130_n-177x142.jpg\";s:5:\"width\";i:177;s:6:\"height\";i:142;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:13:\"portfolio-six\";a:4:{s:4:\"file\";s:47:\"971958_716239841735852_1273877130_n-147x118.jpg\";s:5:\"width\";i:147;s:6:\"height\";i:118;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"recent-posts\";a:4:{s:4:\"file\";s:47:\"971958_716239841735852_1273877130_n-640x441.jpg\";s:5:\"width\";i:640;s:6:\"height\";i:441;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:22:\"recent-works-thumbnail\";a:4:{s:4:\"file\";s:45:\"971958_716239841735852_1273877130_n-66x66.jpg\";s:5:\"width\";i:66;s:6:\"height\";i:66;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:13:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}s:14:\"resized_images\";a:2:{i:0;s:7:\"500x383\";i:1;s:8:\"1000x766\";}}}'),
(6715, 1194, '_wp_attached_file', '2016/04/1069952_696713320355171_1760801696_n.jpg'),
(6716, 1194, '_wp_attachment_metadata', 'a:5:{s:5:\"width\";i:640;s:6:\"height\";i:480;s:4:\"file\";s:48:\"2016/04/1069952_696713320355171_1760801696_n.jpg\";s:5:\"sizes\";a:15:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:48:\"1069952_696713320355171_1760801696_n-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:48:\"1069952_696713320355171_1760801696_n-300x225.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:225;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:10:\"blog-large\";a:4:{s:4:\"file\";s:48:\"1069952_696713320355171_1760801696_n-640x272.jpg\";s:5:\"width\";i:640;s:6:\"height\";i:272;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"blog-medium\";a:4:{s:4:\"file\";s:48:\"1069952_696713320355171_1760801696_n-320x202.jpg\";s:5:\"width\";i:320;s:6:\"height\";i:202;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:8:\"tabs-img\";a:4:{s:4:\"file\";s:46:\"1069952_696713320355171_1760801696_n-52x50.jpg\";s:5:\"width\";i:52;s:6:\"height\";i:50;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"related-img\";a:4:{s:4:\"file\";s:48:\"1069952_696713320355171_1760801696_n-180x138.jpg\";s:5:\"width\";i:180;s:6:\"height\";i:138;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"portfolio-full\";a:4:{s:4:\"file\";s:48:\"1069952_696713320355171_1760801696_n-640x400.jpg\";s:5:\"width\";i:640;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:13:\"portfolio-one\";a:4:{s:4:\"file\";s:48:\"1069952_696713320355171_1760801696_n-540x272.jpg\";s:5:\"width\";i:540;s:6:\"height\";i:272;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:13:\"portfolio-two\";a:4:{s:4:\"file\";s:48:\"1069952_696713320355171_1760801696_n-460x295.jpg\";s:5:\"width\";i:460;s:6:\"height\";i:295;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"portfolio-three\";a:4:{s:4:\"file\";s:48:\"1069952_696713320355171_1760801696_n-300x214.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:214;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"portfolio-four\";a:4:{s:4:\"file\";s:48:\"1069952_696713320355171_1760801696_n-220x161.jpg\";s:5:\"width\";i:220;s:6:\"height\";i:161;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"portfolio-five\";a:4:{s:4:\"file\";s:48:\"1069952_696713320355171_1760801696_n-177x142.jpg\";s:5:\"width\";i:177;s:6:\"height\";i:142;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:13:\"portfolio-six\";a:4:{s:4:\"file\";s:48:\"1069952_696713320355171_1760801696_n-147x118.jpg\";s:5:\"width\";i:147;s:6:\"height\";i:118;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"recent-posts\";a:4:{s:4:\"file\";s:48:\"1069952_696713320355171_1760801696_n-640x441.jpg\";s:5:\"width\";i:640;s:6:\"height\";i:441;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:22:\"recent-works-thumbnail\";a:4:{s:4:\"file\";s:46:\"1069952_696713320355171_1760801696_n-66x66.jpg\";s:5:\"width\";i:66;s:6:\"height\";i:66;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:13:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}s:14:\"resized_images\";a:2:{i:0;s:7:\"500x383\";i:1;s:8:\"1000x766\";}}}'),
(6717, 1195, '_wp_attached_file', '2016/04/1186319_717077018318801_1461397372_n.jpg'),
(6718, 1195, '_wp_attachment_metadata', 'a:5:{s:5:\"width\";i:635;s:6:\"height\";i:480;s:4:\"file\";s:48:\"2016/04/1186319_717077018318801_1461397372_n.jpg\";s:5:\"sizes\";a:15:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:48:\"1186319_717077018318801_1461397372_n-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:48:\"1186319_717077018318801_1461397372_n-300x227.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:227;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:10:\"blog-large\";a:4:{s:4:\"file\";s:48:\"1186319_717077018318801_1461397372_n-635x272.jpg\";s:5:\"width\";i:635;s:6:\"height\";i:272;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"blog-medium\";a:4:{s:4:\"file\";s:48:\"1186319_717077018318801_1461397372_n-320x202.jpg\";s:5:\"width\";i:320;s:6:\"height\";i:202;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:8:\"tabs-img\";a:4:{s:4:\"file\";s:46:\"1186319_717077018318801_1461397372_n-52x50.jpg\";s:5:\"width\";i:52;s:6:\"height\";i:50;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"related-img\";a:4:{s:4:\"file\";s:48:\"1186319_717077018318801_1461397372_n-180x138.jpg\";s:5:\"width\";i:180;s:6:\"height\";i:138;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"portfolio-full\";a:4:{s:4:\"file\";s:48:\"1186319_717077018318801_1461397372_n-635x400.jpg\";s:5:\"width\";i:635;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:13:\"portfolio-one\";a:4:{s:4:\"file\";s:48:\"1186319_717077018318801_1461397372_n-540x272.jpg\";s:5:\"width\";i:540;s:6:\"height\";i:272;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:13:\"portfolio-two\";a:4:{s:4:\"file\";s:48:\"1186319_717077018318801_1461397372_n-460x295.jpg\";s:5:\"width\";i:460;s:6:\"height\";i:295;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"portfolio-three\";a:4:{s:4:\"file\";s:48:\"1186319_717077018318801_1461397372_n-300x214.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:214;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"portfolio-four\";a:4:{s:4:\"file\";s:48:\"1186319_717077018318801_1461397372_n-220x161.jpg\";s:5:\"width\";i:220;s:6:\"height\";i:161;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"portfolio-five\";a:4:{s:4:\"file\";s:48:\"1186319_717077018318801_1461397372_n-177x142.jpg\";s:5:\"width\";i:177;s:6:\"height\";i:142;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:13:\"portfolio-six\";a:4:{s:4:\"file\";s:48:\"1186319_717077018318801_1461397372_n-147x118.jpg\";s:5:\"width\";i:147;s:6:\"height\";i:118;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"recent-posts\";a:4:{s:4:\"file\";s:48:\"1186319_717077018318801_1461397372_n-635x441.jpg\";s:5:\"width\";i:635;s:6:\"height\";i:441;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:22:\"recent-works-thumbnail\";a:4:{s:4:\"file\";s:46:\"1186319_717077018318801_1461397372_n-66x66.jpg\";s:5:\"width\";i:66;s:6:\"height\";i:66;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:13:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}s:14:\"resized_images\";a:2:{i:0;s:7:\"500x383\";i:1;s:8:\"1000x766\";}}}'),
(6719, 1196, '_edit_last', '1'),
(6720, 1196, '_edit_lock', '1461074035:1'),
(6721, 1196, '_thumbnail_id', '1195'),
(6722, 1197, '_wp_attached_file', '2016/04/easter-pics-015b.jpg');
INSERT INTO `wp_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(6723, 1197, '_wp_attachment_metadata', 'a:5:{s:5:\"width\";i:300;s:6:\"height\";i:200;s:4:\"file\";s:28:\"2016/04/easter-pics-015b.jpg\";s:5:\"sizes\";a:9:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:28:\"easter-pics-015b-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:28:\"easter-pics-015b-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:8:\"tabs-img\";a:4:{s:4:\"file\";s:26:\"easter-pics-015b-52x50.jpg\";s:5:\"width\";i:52;s:6:\"height\";i:50;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"related-img\";a:4:{s:4:\"file\";s:28:\"easter-pics-015b-180x138.jpg\";s:5:\"width\";i:180;s:6:\"height\";i:138;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"portfolio-three\";a:4:{s:4:\"file\";s:28:\"easter-pics-015b-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"portfolio-four\";a:4:{s:4:\"file\";s:28:\"easter-pics-015b-220x161.jpg\";s:5:\"width\";i:220;s:6:\"height\";i:161;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"portfolio-five\";a:4:{s:4:\"file\";s:28:\"easter-pics-015b-177x142.jpg\";s:5:\"width\";i:177;s:6:\"height\";i:142;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:13:\"portfolio-six\";a:4:{s:4:\"file\";s:28:\"easter-pics-015b-147x118.jpg\";s:5:\"width\";i:147;s:6:\"height\";i:118;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:22:\"recent-works-thumbnail\";a:4:{s:4:\"file\";s:26:\"easter-pics-015b-66x66.jpg\";s:5:\"width\";i:66;s:6:\"height\";i:66;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:13:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}s:14:\"resized_images\";a:1:{i:0;s:7:\"500x383\";}}}'),
(6728, 1196, 'slide_template', 'default'),
(6729, 1196, 'fusion_builder_status', 'inactive'),
(6730, 1198, 'FB_content', ''),
(6731, 1196, 'pyre_width', 'full'),
(6732, 1196, 'pyre_portfolio_width_100', 'no'),
(6733, 1196, 'pyre_project_desc_title', 'yes'),
(6734, 1196, 'pyre_project_details', 'yes'),
(6735, 1196, 'pyre_show_first_featured_image', 'no'),
(6736, 1196, 'pyre_video', ''),
(6737, 1196, 'pyre_video_url', ''),
(6738, 1196, 'pyre_project_url', ''),
(6739, 1196, 'pyre_project_url_text', ''),
(6740, 1196, 'pyre_copy_url', ''),
(6741, 1196, 'pyre_copy_url_text', ''),
(6742, 1196, 'pyre_fimg_width', ''),
(6743, 1196, 'pyre_fimg_height', ''),
(6744, 1196, 'pyre_image_rollover_icons', 'default'),
(6745, 1196, 'pyre_link_icon_url', ''),
(6746, 1196, 'pyre_link_icon_target', 'no'),
(6747, 1196, 'pyre_related_posts', 'default'),
(6748, 1196, 'pyre_share_box', 'default'),
(6749, 1196, 'pyre_post_pagination', 'default'),
(6750, 1196, 'pyre_main_top_padding', ''),
(6751, 1196, 'pyre_main_bottom_padding', ''),
(6752, 1196, 'pyre_hundredp_padding', ''),
(6753, 1196, 'pyre_slider_position', 'default'),
(6754, 1196, 'pyre_slider_type', 'no'),
(6755, 1196, 'pyre_slider', '0'),
(6756, 1196, 'pyre_wooslider', '0'),
(6757, 1196, 'pyre_revslider', '0'),
(6758, 1196, 'pyre_elasticslider', '0'),
(6759, 1196, 'pyre_fallback', ''),
(6760, 1196, 'pyre_avada_rev_styles', 'default'),
(6761, 1196, 'pyre_display_header', 'yes'),
(6762, 1196, 'pyre_header_100_width', 'default'),
(6763, 1196, 'pyre_header_bg', ''),
(6764, 1196, 'pyre_header_bg_color', ''),
(6765, 1196, 'pyre_header_bg_opacity', ''),
(6766, 1196, 'pyre_header_bg_full', 'no'),
(6767, 1196, 'pyre_header_bg_repeat', 'repeat'),
(6768, 1196, 'pyre_displayed_menu', 'default'),
(6769, 1196, 'pyre_display_footer', 'default'),
(6770, 1196, 'pyre_display_copyright', 'default'),
(6771, 1196, 'pyre_footer_100_width', 'default'),
(6772, 1196, 'pyre_sidebar_position', 'default'),
(6773, 1196, 'pyre_sidebar_bg_color', ''),
(6774, 1196, 'pyre_page_bg_layout', 'default'),
(6775, 1196, 'pyre_page_bg', ''),
(6776, 1196, 'pyre_page_bg_color', ''),
(6777, 1196, 'pyre_page_bg_full', 'no'),
(6778, 1196, 'pyre_page_bg_repeat', 'repeat'),
(6779, 1196, 'pyre_wide_page_bg', ''),
(6780, 1196, 'pyre_wide_page_bg_color', ''),
(6781, 1196, 'pyre_wide_page_bg_full', 'no'),
(6782, 1196, 'pyre_wide_page_bg_repeat', 'repeat'),
(6783, 1196, 'pyre_page_title', 'default'),
(6784, 1196, 'pyre_page_title_text', 'default'),
(6785, 1196, 'pyre_page_title_text_alignment', 'default'),
(6786, 1196, 'pyre_page_title_100_width', 'default'),
(6787, 1196, 'pyre_page_title_custom_text', ''),
(6788, 1196, 'pyre_page_title_text_size', ''),
(6789, 1196, 'pyre_page_title_custom_subheader', ''),
(6790, 1196, 'pyre_page_title_custom_subheader_text_size', ''),
(6791, 1196, 'pyre_page_title_font_color', ''),
(6792, 1196, 'pyre_page_title_height', ''),
(6793, 1196, 'pyre_page_title_mobile_height', ''),
(6794, 1196, 'pyre_page_title_bar_bg', ''),
(6795, 1196, 'pyre_page_title_bar_bg_retina', ''),
(6796, 1196, 'pyre_page_title_bar_bg_color', ''),
(6797, 1196, 'pyre_page_title_bar_borders_color', ''),
(6798, 1196, 'pyre_page_title_bar_bg_full', 'default'),
(6799, 1196, 'pyre_page_title_bg_parallax', 'default'),
(6800, 1196, 'pyre_page_title_breadcrumbs_search_bar', 'default'),
(6805, 1196, 'sbg_selected_sidebar', 'a:1:{i:0;s:1:\"0\";}'),
(6806, 1196, 'sbg_selected_sidebar_replacement', 'a:1:{i:0;s:0:\"\";}'),
(6807, 1196, 'sbg_selected_sidebar_2', 'a:1:{i:0;s:1:\"0\";}'),
(6808, 1196, 'sbg_selected_sidebar_2_replacement', 'a:1:{i:0;s:0:\"\";}'),
(6809, 1199, '_edit_last', '1'),
(6810, 1199, '_edit_lock', '1461074176:1'),
(6811, 1199, '_thumbnail_id', '1193'),
(6812, 948, '_thumbnail_id', '1197'),
(6817, 1199, 'slide_template', 'default'),
(6818, 1199, 'fusion_builder_status', 'inactive'),
(6819, 1200, 'FB_content', ''),
(6820, 1199, 'pyre_width', 'full'),
(6821, 1199, 'pyre_portfolio_width_100', 'no'),
(6822, 1199, 'pyre_project_desc_title', 'yes'),
(6823, 1199, 'pyre_project_details', 'yes'),
(6824, 1199, 'pyre_show_first_featured_image', 'no'),
(6825, 1199, 'pyre_video', ''),
(6826, 1199, 'pyre_video_url', ''),
(6827, 1199, 'pyre_project_url', ''),
(6828, 1199, 'pyre_project_url_text', ''),
(6829, 1199, 'pyre_copy_url', ''),
(6830, 1199, 'pyre_copy_url_text', ''),
(6831, 1199, 'pyre_fimg_width', ''),
(6832, 1199, 'pyre_fimg_height', ''),
(6833, 1199, 'pyre_image_rollover_icons', 'default'),
(6834, 1199, 'pyre_link_icon_url', ''),
(6835, 1199, 'pyre_link_icon_target', 'no'),
(6836, 1199, 'pyre_related_posts', 'default'),
(6837, 1199, 'pyre_share_box', 'default'),
(6838, 1199, 'pyre_post_pagination', 'default'),
(6839, 1199, 'pyre_main_top_padding', ''),
(6840, 1199, 'pyre_main_bottom_padding', ''),
(6841, 1199, 'pyre_hundredp_padding', ''),
(6842, 1199, 'pyre_slider_position', 'default'),
(6843, 1199, 'pyre_slider_type', 'no'),
(6844, 1199, 'pyre_slider', '0'),
(6845, 1199, 'pyre_wooslider', '0'),
(6846, 1199, 'pyre_revslider', '0'),
(6847, 1199, 'pyre_elasticslider', '0'),
(6848, 1199, 'pyre_fallback', ''),
(6849, 1199, 'pyre_avada_rev_styles', 'default'),
(6850, 1199, 'pyre_display_header', 'yes'),
(6851, 1199, 'pyre_header_100_width', 'default'),
(6852, 1199, 'pyre_header_bg', ''),
(6853, 1199, 'pyre_header_bg_color', ''),
(6854, 1199, 'pyre_header_bg_opacity', ''),
(6855, 1199, 'pyre_header_bg_full', 'no'),
(6856, 1199, 'pyre_header_bg_repeat', 'repeat'),
(6857, 1199, 'pyre_displayed_menu', 'default'),
(6858, 1199, 'pyre_display_footer', 'default'),
(6859, 1199, 'pyre_display_copyright', 'default'),
(6860, 1199, 'pyre_footer_100_width', 'default'),
(6861, 1199, 'pyre_sidebar_position', 'default'),
(6862, 1199, 'pyre_sidebar_bg_color', ''),
(6863, 1199, 'pyre_page_bg_layout', 'default'),
(6864, 1199, 'pyre_page_bg', ''),
(6865, 1199, 'pyre_page_bg_color', ''),
(6866, 1199, 'pyre_page_bg_full', 'no'),
(6867, 1199, 'pyre_page_bg_repeat', 'repeat'),
(6868, 1199, 'pyre_wide_page_bg', ''),
(6869, 1199, 'pyre_wide_page_bg_color', ''),
(6870, 1199, 'pyre_wide_page_bg_full', 'no'),
(6871, 1199, 'pyre_wide_page_bg_repeat', 'repeat'),
(6872, 1199, 'pyre_page_title', 'default'),
(6873, 1199, 'pyre_page_title_text', 'default'),
(6874, 1199, 'pyre_page_title_text_alignment', 'default'),
(6875, 1199, 'pyre_page_title_100_width', 'default'),
(6876, 1199, 'pyre_page_title_custom_text', ''),
(6877, 1199, 'pyre_page_title_text_size', ''),
(6878, 1199, 'pyre_page_title_custom_subheader', ''),
(6879, 1199, 'pyre_page_title_custom_subheader_text_size', ''),
(6880, 1199, 'pyre_page_title_font_color', ''),
(6881, 1199, 'pyre_page_title_height', ''),
(6882, 1199, 'pyre_page_title_mobile_height', ''),
(6883, 1199, 'pyre_page_title_bar_bg', ''),
(6884, 1199, 'pyre_page_title_bar_bg_retina', ''),
(6885, 1199, 'pyre_page_title_bar_bg_color', ''),
(6886, 1199, 'pyre_page_title_bar_borders_color', ''),
(6887, 1199, 'pyre_page_title_bar_bg_full', 'default'),
(6888, 1199, 'pyre_page_title_bg_parallax', 'default'),
(6889, 1199, 'pyre_page_title_breadcrumbs_search_bar', 'default'),
(6894, 1199, 'sbg_selected_sidebar', 'a:1:{i:0;s:1:\"0\";}'),
(6895, 1199, 'sbg_selected_sidebar_replacement', 'a:1:{i:0;s:0:\"\";}'),
(6896, 1199, 'sbg_selected_sidebar_2', 'a:1:{i:0;s:1:\"0\";}'),
(6897, 1199, 'sbg_selected_sidebar_2_replacement', 'a:1:{i:0;s:0:\"\";}'),
(6902, 948, 'sbg_selected_sidebar', 'a:1:{i:0;s:1:\"0\";}'),
(6903, 948, 'sbg_selected_sidebar_replacement', 'a:1:{i:0;s:0:\"\";}'),
(6904, 948, 'sbg_selected_sidebar_2', 'a:1:{i:0;s:1:\"0\";}'),
(6905, 948, 'sbg_selected_sidebar_2_replacement', 'a:1:{i:0;s:0:\"\";}'),
(6906, 1201, '_edit_last', '1'),
(6907, 1201, '_edit_lock', '1461074307:1'),
(6908, 1202, '_edit_last', '1'),
(6909, 1202, '_edit_lock', '1461074313:1'),
(6910, 1201, '_thumbnail_id', '1194'),
(6911, 1202, '_thumbnail_id', '1192'),
(6916, 1201, 'slide_template', 'default'),
(6917, 1201, 'fusion_builder_status', 'inactive'),
(6918, 1203, 'FB_content', ''),
(6919, 1201, 'pyre_width', 'full'),
(6920, 1201, 'pyre_portfolio_width_100', 'no'),
(6921, 1201, 'pyre_project_desc_title', 'yes'),
(6922, 1201, 'pyre_project_details', 'yes'),
(6923, 1201, 'pyre_show_first_featured_image', 'no'),
(6924, 1201, 'pyre_video', ''),
(6925, 1201, 'pyre_video_url', ''),
(6926, 1201, 'pyre_project_url', ''),
(6927, 1201, 'pyre_project_url_text', ''),
(6928, 1201, 'pyre_copy_url', ''),
(6929, 1201, 'pyre_copy_url_text', ''),
(6930, 1201, 'pyre_fimg_width', ''),
(6931, 1201, 'pyre_fimg_height', ''),
(6932, 1201, 'pyre_image_rollover_icons', 'default'),
(6933, 1201, 'pyre_link_icon_url', ''),
(6934, 1201, 'pyre_link_icon_target', 'no'),
(6935, 1201, 'pyre_related_posts', 'default'),
(6936, 1201, 'pyre_share_box', 'default'),
(6937, 1201, 'pyre_post_pagination', 'default'),
(6938, 1201, 'pyre_main_top_padding', ''),
(6939, 1201, 'pyre_main_bottom_padding', ''),
(6940, 1201, 'pyre_hundredp_padding', ''),
(6941, 1201, 'pyre_slider_position', 'default'),
(6942, 1201, 'pyre_slider_type', 'no'),
(6943, 1201, 'pyre_slider', '0'),
(6944, 1201, 'pyre_wooslider', '0'),
(6945, 1201, 'pyre_revslider', '0'),
(6946, 1201, 'pyre_elasticslider', '0'),
(6947, 1201, 'pyre_fallback', ''),
(6948, 1201, 'pyre_avada_rev_styles', 'default'),
(6949, 1201, 'pyre_display_header', 'yes'),
(6950, 1201, 'pyre_header_100_width', 'default'),
(6951, 1201, 'pyre_header_bg', ''),
(6952, 1201, 'pyre_header_bg_color', ''),
(6953, 1201, 'pyre_header_bg_opacity', ''),
(6954, 1201, 'pyre_header_bg_full', 'no'),
(6955, 1201, 'pyre_header_bg_repeat', 'repeat'),
(6956, 1201, 'pyre_displayed_menu', 'default'),
(6957, 1201, 'pyre_display_footer', 'default'),
(6958, 1201, 'pyre_display_copyright', 'default'),
(6959, 1201, 'pyre_footer_100_width', 'default'),
(6960, 1201, 'pyre_sidebar_position', 'default'),
(6961, 1201, 'pyre_sidebar_bg_color', ''),
(6962, 1201, 'pyre_page_bg_layout', 'default'),
(6963, 1201, 'pyre_page_bg', ''),
(6964, 1201, 'pyre_page_bg_color', ''),
(6965, 1201, 'pyre_page_bg_full', 'no'),
(6966, 1201, 'pyre_page_bg_repeat', 'repeat'),
(6967, 1201, 'pyre_wide_page_bg', ''),
(6968, 1201, 'pyre_wide_page_bg_color', ''),
(6969, 1201, 'pyre_wide_page_bg_full', 'no'),
(6970, 1201, 'pyre_wide_page_bg_repeat', 'repeat'),
(6971, 1201, 'pyre_page_title', 'default'),
(6972, 1201, 'pyre_page_title_text', 'default'),
(6973, 1201, 'pyre_page_title_text_alignment', 'default'),
(6974, 1201, 'pyre_page_title_100_width', 'default'),
(6975, 1201, 'pyre_page_title_custom_text', ''),
(6976, 1201, 'pyre_page_title_text_size', ''),
(6977, 1201, 'pyre_page_title_custom_subheader', ''),
(6978, 1201, 'pyre_page_title_custom_subheader_text_size', ''),
(6979, 1201, 'pyre_page_title_font_color', ''),
(6980, 1201, 'pyre_page_title_height', ''),
(6981, 1201, 'pyre_page_title_mobile_height', ''),
(6982, 1201, 'pyre_page_title_bar_bg', ''),
(6983, 1201, 'pyre_page_title_bar_bg_retina', ''),
(6984, 1201, 'pyre_page_title_bar_bg_color', ''),
(6985, 1201, 'pyre_page_title_bar_borders_color', ''),
(6986, 1201, 'pyre_page_title_bar_bg_full', 'default'),
(6987, 1201, 'pyre_page_title_bg_parallax', 'default'),
(6988, 1201, 'pyre_page_title_breadcrumbs_search_bar', 'default'),
(6993, 1201, 'sbg_selected_sidebar', 'a:1:{i:0;s:1:\"0\";}'),
(6994, 1201, 'sbg_selected_sidebar_replacement', 'a:1:{i:0;s:0:\"\";}'),
(6995, 1201, 'sbg_selected_sidebar_2', 'a:1:{i:0;s:1:\"0\";}'),
(6996, 1201, 'sbg_selected_sidebar_2_replacement', 'a:1:{i:0;s:0:\"\";}'),
(7001, 1202, 'slide_template', 'default'),
(7002, 1202, 'fusion_builder_status', 'inactive'),
(7003, 1204, 'FB_content', ''),
(7004, 1202, 'pyre_width', 'full'),
(7005, 1202, 'pyre_portfolio_width_100', 'no'),
(7006, 1202, 'pyre_project_desc_title', 'yes'),
(7007, 1202, 'pyre_project_details', 'yes'),
(7008, 1202, 'pyre_show_first_featured_image', 'no'),
(7009, 1202, 'pyre_video', ''),
(7010, 1202, 'pyre_video_url', ''),
(7011, 1202, 'pyre_project_url', ''),
(7012, 1202, 'pyre_project_url_text', ''),
(7013, 1202, 'pyre_copy_url', ''),
(7014, 1202, 'pyre_copy_url_text', ''),
(7015, 1202, 'pyre_fimg_width', ''),
(7016, 1202, 'pyre_fimg_height', ''),
(7017, 1202, 'pyre_image_rollover_icons', 'default'),
(7018, 1202, 'pyre_link_icon_url', ''),
(7019, 1202, 'pyre_link_icon_target', 'no'),
(7020, 1202, 'pyre_related_posts', 'default'),
(7021, 1202, 'pyre_share_box', 'default'),
(7022, 1202, 'pyre_post_pagination', 'default'),
(7023, 1202, 'pyre_main_top_padding', ''),
(7024, 1202, 'pyre_main_bottom_padding', ''),
(7025, 1202, 'pyre_hundredp_padding', ''),
(7026, 1202, 'pyre_slider_position', 'default'),
(7027, 1202, 'pyre_slider_type', 'no'),
(7028, 1202, 'pyre_slider', '0'),
(7029, 1202, 'pyre_wooslider', '0'),
(7030, 1202, 'pyre_revslider', '0'),
(7031, 1202, 'pyre_elasticslider', '0'),
(7032, 1202, 'pyre_fallback', ''),
(7033, 1202, 'pyre_avada_rev_styles', 'default'),
(7034, 1202, 'pyre_display_header', 'yes'),
(7035, 1202, 'pyre_header_100_width', 'default'),
(7036, 1202, 'pyre_header_bg', ''),
(7037, 1202, 'pyre_header_bg_color', ''),
(7038, 1202, 'pyre_header_bg_opacity', ''),
(7039, 1202, 'pyre_header_bg_full', 'no'),
(7040, 1202, 'pyre_header_bg_repeat', 'repeat'),
(7041, 1202, 'pyre_displayed_menu', 'default'),
(7042, 1202, 'pyre_display_footer', 'default'),
(7043, 1202, 'pyre_display_copyright', 'default'),
(7044, 1202, 'pyre_footer_100_width', 'default'),
(7045, 1202, 'pyre_sidebar_position', 'default'),
(7046, 1202, 'pyre_sidebar_bg_color', ''),
(7047, 1202, 'pyre_page_bg_layout', 'default'),
(7048, 1202, 'pyre_page_bg', ''),
(7049, 1202, 'pyre_page_bg_color', ''),
(7050, 1202, 'pyre_page_bg_full', 'no'),
(7051, 1202, 'pyre_page_bg_repeat', 'repeat'),
(7052, 1202, 'pyre_wide_page_bg', ''),
(7053, 1202, 'pyre_wide_page_bg_color', ''),
(7054, 1202, 'pyre_wide_page_bg_full', 'no'),
(7055, 1202, 'pyre_wide_page_bg_repeat', 'repeat'),
(7056, 1202, 'pyre_page_title', 'default'),
(7057, 1202, 'pyre_page_title_text', 'default'),
(7058, 1202, 'pyre_page_title_text_alignment', 'default'),
(7059, 1202, 'pyre_page_title_100_width', 'default'),
(7060, 1202, 'pyre_page_title_custom_text', ''),
(7061, 1202, 'pyre_page_title_text_size', ''),
(7062, 1202, 'pyre_page_title_custom_subheader', ''),
(7063, 1202, 'pyre_page_title_custom_subheader_text_size', ''),
(7064, 1202, 'pyre_page_title_font_color', ''),
(7065, 1202, 'pyre_page_title_height', ''),
(7066, 1202, 'pyre_page_title_mobile_height', ''),
(7067, 1202, 'pyre_page_title_bar_bg', ''),
(7068, 1202, 'pyre_page_title_bar_bg_retina', ''),
(7069, 1202, 'pyre_page_title_bar_bg_color', ''),
(7070, 1202, 'pyre_page_title_bar_borders_color', ''),
(7071, 1202, 'pyre_page_title_bar_bg_full', 'default'),
(7072, 1202, 'pyre_page_title_bg_parallax', 'default'),
(7073, 1202, 'pyre_page_title_breadcrumbs_search_bar', 'default'),
(7078, 1202, 'sbg_selected_sidebar', 'a:1:{i:0;s:1:\"0\";}'),
(7079, 1202, 'sbg_selected_sidebar_replacement', 'a:1:{i:0;s:0:\"\";}'),
(7080, 1202, 'sbg_selected_sidebar_2', 'a:1:{i:0;s:1:\"0\";}'),
(7081, 1202, 'sbg_selected_sidebar_2_replacement', 'a:1:{i:0;s:0:\"\";}'),
(7086, 1205, 'FB_content', ''),
(7100, 1207, 'FB_content', ''),
(7113, 1208, 'FB_content', ''),
(7134, 1209, 'FB_content', ''),
(7147, 1212, 'FB_content', ''),
(7160, 1213, 'FB_content', ''),
(7173, 1214, 'FB_content', ''),
(7186, 1215, 'FB_content', ''),
(7199, 1216, 'FB_content', ''),
(7212, 1217, 'FB_content', ''),
(7225, 1218, 'FB_content', ''),
(7238, 1219, 'FB_content', ''),
(7251, 1220, 'FB_content', ''),
(7264, 1221, 'FB_content', ''),
(7277, 1222, 'FB_content', ''),
(7290, 1223, 'FB_content', ''),
(7303, 1224, 'FB_content', ''),
(7312, 835, 'FB_content', ''),
(7317, 1225, 'FB_content', ''),
(7326, 901, 'FB_content', ''),
(7331, 1227, 'FB_content', ''),
(7344, 1228, 'FB_content', ''),
(7358, 1230, 'FB_content', ''),
(7372, 1231, 'FB_content', ''),
(7386, 1232, 'FB_content', ''),
(7400, 1233, 'FB_content', ''),
(7413, 1234, 'FB_content', ''),
(7426, 1235, 'FB_content', ''),
(7435, 1236, '_wp_attached_file', '2016/07/AIRBNB-LOGO-VECTOR-150x150-e1469467765851.png'),
(7436, 1236, '_wp_attachment_metadata', 'a:5:{s:5:\"width\";i:80;s:6:\"height\";i:85;s:4:\"file\";s:53:\"2016/07/AIRBNB-LOGO-VECTOR-150x150-e1469467765851.png\";s:5:\"sizes\";a:5:{s:8:\"tabs-img\";a:4:{s:4:\"file\";s:36:\"AIRBNB-LOGO-VECTOR-150x150-52x50.png\";s:5:\"width\";i:52;s:6:\"height\";i:50;s:9:\"mime-type\";s:9:\"image/png\";}s:11:\"related-img\";a:4:{s:4:\"file\";s:38:\"AIRBNB-LOGO-VECTOR-150x150-150x138.png\";s:5:\"width\";i:150;s:6:\"height\";i:138;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"portfolio-five\";a:4:{s:4:\"file\";s:38:\"AIRBNB-LOGO-VECTOR-150x150-150x142.png\";s:5:\"width\";i:150;s:6:\"height\";i:142;s:9:\"mime-type\";s:9:\"image/png\";}s:13:\"portfolio-six\";a:4:{s:4:\"file\";s:38:\"AIRBNB-LOGO-VECTOR-150x150-147x118.png\";s:5:\"width\";i:147;s:6:\"height\";i:118;s:9:\"mime-type\";s:9:\"image/png\";}s:22:\"recent-works-thumbnail\";a:4:{s:4:\"file\";s:36:\"AIRBNB-LOGO-VECTOR-150x150-66x66.png\";s:5:\"width\";i:66;s:6:\"height\";i:66;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:{}}}'),
(7441, 1236, '_edit_lock', '1469446824:1'),
(7463, 1238, 'FB_content', ''),
(7477, 1239, 'FB_content', ''),
(7493, 1241, 'FB_content', ''),
(7506, 1242, 'FB_content', ''),
(7527, 1243, 'FB_content', ''),
(7552, 1244, '_wp_attached_file', '2015/01/tripadv-e1469482990381.jpg'),
(7553, 1244, '_wp_attachment_metadata', 'a:5:{s:5:\"width\";i:100;s:6:\"height\";i:100;s:4:\"file\";s:34:\"2015/01/tripadv-e1469482990381.jpg\";s:5:\"sizes\";a:12:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:19:\"tripadv-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:10:\"blog-large\";a:4:{s:4:\"file\";s:19:\"tripadv-300x272.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:272;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"blog-medium\";a:4:{s:4:\"file\";s:19:\"tripadv-300x202.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:202;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:8:\"tabs-img\";a:4:{s:4:\"file\";s:17:\"tripadv-52x50.jpg\";s:5:\"width\";i:52;s:6:\"height\";i:50;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"related-img\";a:4:{s:4:\"file\";s:19:\"tripadv-180x138.jpg\";s:5:\"width\";i:180;s:6:\"height\";i:138;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:13:\"portfolio-one\";a:4:{s:4:\"file\";s:19:\"tripadv-300x272.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:272;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:13:\"portfolio-two\";a:4:{s:4:\"file\";s:19:\"tripadv-300x295.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:295;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"portfolio-three\";a:4:{s:4:\"file\";s:19:\"tripadv-300x214.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:214;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"portfolio-four\";a:4:{s:4:\"file\";s:19:\"tripadv-220x161.jpg\";s:5:\"width\";i:220;s:6:\"height\";i:161;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"portfolio-five\";a:4:{s:4:\"file\";s:19:\"tripadv-177x142.jpg\";s:5:\"width\";i:177;s:6:\"height\";i:142;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:13:\"portfolio-six\";a:4:{s:4:\"file\";s:19:\"tripadv-147x118.jpg\";s:5:\"width\";i:147;s:6:\"height\";i:118;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:22:\"recent-works-thumbnail\";a:4:{s:4:\"file\";s:17:\"tripadv-66x66.jpg\";s:5:\"width\";i:66;s:6:\"height\";i:66;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(7558, 1245, 'FB_content', ''),
(7567, 1246, '_wp_attached_file', '2015/01/bookingcom-e1469483041455.png'),
(7568, 1246, '_wp_attachment_metadata', 'a:5:{s:5:\"width\";i:117;s:6:\"height\";i:100;s:4:\"file\";s:37:\"2015/01/bookingcom-e1469483041455.png\";s:5:\"sizes\";a:10:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:22:\"bookingcom-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:22:\"bookingcom-300x256.png\";s:5:\"width\";i:300;s:6:\"height\";i:256;s:9:\"mime-type\";s:9:\"image/png\";}s:11:\"blog-medium\";a:4:{s:4:\"file\";s:22:\"bookingcom-310x202.png\";s:5:\"width\";i:310;s:6:\"height\";i:202;s:9:\"mime-type\";s:9:\"image/png\";}s:8:\"tabs-img\";a:4:{s:4:\"file\";s:20:\"bookingcom-52x50.png\";s:5:\"width\";i:52;s:6:\"height\";i:50;s:9:\"mime-type\";s:9:\"image/png\";}s:11:\"related-img\";a:4:{s:4:\"file\";s:22:\"bookingcom-180x138.png\";s:5:\"width\";i:180;s:6:\"height\";i:138;s:9:\"mime-type\";s:9:\"image/png\";}s:15:\"portfolio-three\";a:4:{s:4:\"file\";s:22:\"bookingcom-300x214.png\";s:5:\"width\";i:300;s:6:\"height\";i:214;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"portfolio-four\";a:4:{s:4:\"file\";s:22:\"bookingcom-220x161.png\";s:5:\"width\";i:220;s:6:\"height\";i:161;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"portfolio-five\";a:4:{s:4:\"file\";s:22:\"bookingcom-177x142.png\";s:5:\"width\";i:177;s:6:\"height\";i:142;s:9:\"mime-type\";s:9:\"image/png\";}s:13:\"portfolio-six\";a:4:{s:4:\"file\";s:22:\"bookingcom-147x118.png\";s:5:\"width\";i:147;s:6:\"height\";i:118;s:9:\"mime-type\";s:9:\"image/png\";}s:22:\"recent-works-thumbnail\";a:4:{s:4:\"file\";s:20:\"bookingcom-66x66.png\";s:5:\"width\";i:66;s:6:\"height\";i:66;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:{}}}'),
(7569, 1247, '_wp_attached_file', '2015/01/bookiing.com_.png'),
(7570, 1247, '_wp_attachment_metadata', 'a:5:{s:5:\"width\";i:151;s:6:\"height\";i:151;s:4:\"file\";s:25:\"2015/01/bookiing.com_.png\";s:5:\"sizes\";a:6:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:25:\"bookiing.com_-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:8:\"tabs-img\";a:4:{s:4:\"file\";s:23:\"bookiing.com_-52x50.png\";s:5:\"width\";i:52;s:6:\"height\";i:50;s:9:\"mime-type\";s:9:\"image/png\";}s:11:\"related-img\";a:4:{s:4:\"file\";s:25:\"bookiing.com_-151x138.png\";s:5:\"width\";i:151;s:6:\"height\";i:138;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"portfolio-five\";a:4:{s:4:\"file\";s:25:\"bookiing.com_-151x142.png\";s:5:\"width\";i:151;s:6:\"height\";i:142;s:9:\"mime-type\";s:9:\"image/png\";}s:13:\"portfolio-six\";a:4:{s:4:\"file\";s:25:\"bookiing.com_-147x118.png\";s:5:\"width\";i:147;s:6:\"height\";i:118;s:9:\"mime-type\";s:9:\"image/png\";}s:22:\"recent-works-thumbnail\";a:4:{s:4:\"file\";s:23:\"bookiing.com_-66x66.png\";s:5:\"width\";i:66;s:6:\"height\";i:66;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:{}}}'),
(7571, 1246, '_wp_attachment_backup_sizes', 'a:2:{s:9:\"full-orig\";a:3:{s:5:\"width\";i:310;s:6:\"height\";i:265;s:4:\"file\";s:14:\"bookingcom.png\";}s:18:\"full-1469483041455\";a:3:{s:5:\"width\";i:176;s:6:\"height\";i:150;s:4:\"file\";s:29:\"bookingcom-e1469460864693.png\";}}'),
(7577, 1248, 'FB_content', ''),
(7586, 1236, '_wp_attachment_backup_sizes', 'a:1:{s:9:\"full-orig\";a:3:{s:5:\"width\";i:150;s:6:\"height\";i:150;s:4:\"file\";s:30:\"AIRBNB-LOGO-VECTOR-150x150.png\";}}'),
(7587, 1249, '_wp_attached_file', '2015/01/squarelogoywRsy1445248847-e1469482946977.png'),
(7588, 1249, '_wp_attachment_metadata', 'a:5:{s:5:\"width\";i:100;s:6:\"height\";i:83;s:4:\"file\";s:52:\"2015/01/squarelogoywRsy1445248847-e1469482946977.png\";s:5:\"sizes\";a:13:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:52:\"squarelogoywRsy1445248847-e1469468383248-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:37:\"squarelogoywRsy1445248847-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:10:\"blog-large\";a:4:{s:4:\"file\";s:37:\"squarelogoywRsy1445248847-329x272.png\";s:5:\"width\";i:329;s:6:\"height\";i:272;s:9:\"mime-type\";s:9:\"image/png\";}s:11:\"blog-medium\";a:4:{s:4:\"file\";s:37:\"squarelogoywRsy1445248847-320x202.png\";s:5:\"width\";i:320;s:6:\"height\";i:202;s:9:\"mime-type\";s:9:\"image/png\";}s:8:\"tabs-img\";a:4:{s:4:\"file\";s:50:\"squarelogoywRsy1445248847-e1469468383248-52x50.png\";s:5:\"width\";i:52;s:6:\"height\";i:50;s:9:\"mime-type\";s:9:\"image/png\";}s:11:\"related-img\";a:4:{s:4:\"file\";s:52:\"squarelogoywRsy1445248847-e1469468383248-180x138.png\";s:5:\"width\";i:180;s:6:\"height\";i:138;s:9:\"mime-type\";s:9:\"image/png\";}s:13:\"portfolio-one\";a:4:{s:4:\"file\";s:37:\"squarelogoywRsy1445248847-329x272.png\";s:5:\"width\";i:329;s:6:\"height\";i:272;s:9:\"mime-type\";s:9:\"image/png\";}s:13:\"portfolio-two\";a:4:{s:4:\"file\";s:37:\"squarelogoywRsy1445248847-329x295.png\";s:5:\"width\";i:329;s:6:\"height\";i:295;s:9:\"mime-type\";s:9:\"image/png\";}s:15:\"portfolio-three\";a:4:{s:4:\"file\";s:37:\"squarelogoywRsy1445248847-300x214.png\";s:5:\"width\";i:300;s:6:\"height\";i:214;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"portfolio-four\";a:4:{s:4:\"file\";s:52:\"squarelogoywRsy1445248847-e1469468383248-220x161.png\";s:5:\"width\";i:220;s:6:\"height\";i:161;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"portfolio-five\";a:4:{s:4:\"file\";s:52:\"squarelogoywRsy1445248847-e1469468383248-177x142.png\";s:5:\"width\";i:177;s:6:\"height\";i:142;s:9:\"mime-type\";s:9:\"image/png\";}s:13:\"portfolio-six\";a:4:{s:4:\"file\";s:52:\"squarelogoywRsy1445248847-e1469468383248-147x118.png\";s:5:\"width\";i:147;s:6:\"height\";i:118;s:9:\"mime-type\";s:9:\"image/png\";}s:22:\"recent-works-thumbnail\";a:4:{s:4:\"file\";s:50:\"squarelogoywRsy1445248847-e1469468383248-66x66.png\";s:5:\"width\";i:66;s:6:\"height\";i:66;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:{}}}'),
(7589, 1249, '_wp_attachment_backup_sizes', 'a:17:{s:9:\"full-orig\";a:3:{s:5:\"width\";i:329;s:6:\"height\";i:329;s:4:\"file\";s:29:\"squarelogoywRsy1445248847.png\";}s:14:\"thumbnail-orig\";a:4:{s:4:\"file\";s:37:\"squarelogoywRsy1445248847-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:11:\"medium-orig\";a:4:{s:4:\"file\";s:37:\"squarelogoywRsy1445248847-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:15:\"blog-large-orig\";a:4:{s:4:\"file\";s:37:\"squarelogoywRsy1445248847-329x272.png\";s:5:\"width\";i:329;s:6:\"height\";i:272;s:9:\"mime-type\";s:9:\"image/png\";}s:16:\"blog-medium-orig\";a:4:{s:4:\"file\";s:37:\"squarelogoywRsy1445248847-320x202.png\";s:5:\"width\";i:320;s:6:\"height\";i:202;s:9:\"mime-type\";s:9:\"image/png\";}s:13:\"tabs-img-orig\";a:4:{s:4:\"file\";s:35:\"squarelogoywRsy1445248847-52x50.png\";s:5:\"width\";i:52;s:6:\"height\";i:50;s:9:\"mime-type\";s:9:\"image/png\";}s:16:\"related-img-orig\";a:4:{s:4:\"file\";s:37:\"squarelogoywRsy1445248847-180x138.png\";s:5:\"width\";i:180;s:6:\"height\";i:138;s:9:\"mime-type\";s:9:\"image/png\";}s:18:\"portfolio-one-orig\";a:4:{s:4:\"file\";s:37:\"squarelogoywRsy1445248847-329x272.png\";s:5:\"width\";i:329;s:6:\"height\";i:272;s:9:\"mime-type\";s:9:\"image/png\";}s:18:\"portfolio-two-orig\";a:4:{s:4:\"file\";s:37:\"squarelogoywRsy1445248847-329x295.png\";s:5:\"width\";i:329;s:6:\"height\";i:295;s:9:\"mime-type\";s:9:\"image/png\";}s:20:\"portfolio-three-orig\";a:4:{s:4:\"file\";s:37:\"squarelogoywRsy1445248847-300x214.png\";s:5:\"width\";i:300;s:6:\"height\";i:214;s:9:\"mime-type\";s:9:\"image/png\";}s:19:\"portfolio-four-orig\";a:4:{s:4:\"file\";s:37:\"squarelogoywRsy1445248847-220x161.png\";s:5:\"width\";i:220;s:6:\"height\";i:161;s:9:\"mime-type\";s:9:\"image/png\";}s:19:\"portfolio-five-orig\";a:4:{s:4:\"file\";s:37:\"squarelogoywRsy1445248847-177x142.png\";s:5:\"width\";i:177;s:6:\"height\";i:142;s:9:\"mime-type\";s:9:\"image/png\";}s:18:\"portfolio-six-orig\";a:4:{s:4:\"file\";s:37:\"squarelogoywRsy1445248847-147x118.png\";s:5:\"width\";i:147;s:6:\"height\";i:118;s:9:\"mime-type\";s:9:\"image/png\";}s:27:\"recent-works-thumbnail-orig\";a:4:{s:4:\"file\";s:35:\"squarelogoywRsy1445248847-66x66.png\";s:5:\"width\";i:66;s:6:\"height\";i:66;s:9:\"mime-type\";s:9:\"image/png\";}s:18:\"full-1469468416234\";a:3:{s:5:\"width\";i:226;s:6:\"height\";i:189;s:4:\"file\";s:44:\"squarelogoywRsy1445248847-e1469468383248.png\";}s:18:\"full-1469482930499\";a:3:{s:5:\"width\";i:150;s:6:\"height\";i:125;s:4:\"file\";s:44:\"squarelogoywRsy1445248847-e1469468416234.png\";}s:18:\"full-1469482946977\";a:3:{s:5:\"width\";i:120;s:6:\"height\";i:100;s:4:\"file\";s:44:\"squarelogoywRsy1445248847-e1469482930499.png\";}}'),
(7594, 1250, 'FB_content', ''),
(7607, 1251, 'FB_content', ''),
(7616, 1244, '_wp_attachment_backup_sizes', 'a:1:{s:9:\"full-orig\";a:3:{s:5:\"width\";i:300;s:6:\"height\";i:300;s:4:\"file\";s:11:\"tripadv.jpg\";}}'),
(7621, 1252, 'FB_content', ''),
(7630, 835, 'FB_content', ''),
(7635, 1253, 'FB_content', ''),
(7648, 1254, 'FB_content', ''),
(7661, 1255, 'FB_content', ''),
(7670, 1075, 'FB_content', ''),
(7671, 1075, 'FB_content', ''),
(7672, 1075, 'FB_content', ''),
(7677, 1258, 'FB_content', ''),
(7690, 1260, 'FB_content', ''),
(7703, 1261, 'FB_content', ''),
(7716, 1262, 'FB_content', ''),
(7729, 1263, 'FB_content', ''),
(7742, 1264, 'FB_content', ''),
(7755, 1265, 'FB_content', ''),
(7768, 1266, 'FB_content', ''),
(7781, 1267, 'FB_content', ''),
(7790, 1007, 'FB_content', ''),
(7795, 1268, 'FB_content', ''),
(7808, 1269, 'FB_content', ''),
(7821, 1270, 'FB_content', ''),
(7862, 1075, 'FB_content', ''),
(7867, 1271, 'FB_content', ''),
(7876, 1075, 'FB_content', ''),
(7877, 1075, 'FB_content', ''),
(7878, 1075, 'FB_content', ''),
(7883, 1272, 'FB_content', ''),
(7892, 1075, 'FB_content', ''),
(7893, 1075, 'FB_content', ''),
(7894, 1075, 'FB_content', ''),
(7895, 1075, 'FB_content', ''),
(7896, 1075, 'FB_content', ''),
(7903, 1274, 'FB_content', ''),
(7912, 1276, '_form', '<div class=\"clearfix\">\n    <div id=\"left\">\n        First name [text firstname] <br/>\n        Last Name [text lastname] <br/>\n    </div>\n    <div id=\"right\">\n        Email [email* your-email] <br/>\n        Phone [text your-phone] <br/>\n        Include Breakfast [checkbox checkbox-941 exclusive \"YES\"] <br/>\n        Include Service [checkbox checkbox-857 exclusive \"YES\"] <br/>\n        Arrival [date date-372 id:Arrival date-format:mm/dd/yy inline] Departure [date date-410 id:Departure date-format:mm/dd/yy inline]<br>\n    </div>\n \nSubject [text* your-subject] <br/>\nMessage [textarea* your-message] <br/>\n[submit \"Send\"]'),
(7913, 1276, '_mail', 'a:9:{s:6:\"active\";b:1;s:7:\"subject\";s:20:\"Assagay Forest Lodge\";s:6:\"sender\";s:37:\"[your-name] <assagaylodge@msla.co.za>\";s:9:\"recipient\";s:23:\"assagaylodge@msla.co.za\";s:4:\"body\";s:187:\"From: [your-name] <[your-email]>\nSubject: Assagay Forest Lodge\n\nMessage Body:\n[your-message]\n\n--\nThis e-mail was sent from a contact form on Assagay Forest Lodge (http://msla.co.za/lodge)\";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;}'),
(7914, 1276, '_mail_2', 'a:9:{s:6:\"active\";b:0;s:7:\"subject\";s:37:\"Assagay Forest Lodge \"[your-subject]\"\";s:6:\"sender\";s:46:\"Assagay Forest Lodge <assagaylodge@msla.co.za>\";s:9:\"recipient\";s:12:\"[your-email]\";s:4:\"body\";s:123:\"Message Body:\n[your-message]\n\n--\nThis e-mail was sent from a contact form on Assagay Forest Lodge (http://msla.co.za/lodge)\";s:18:\"additional_headers\";s:33:\"Reply-To: assagaylodge@msla.co.za\";s:11:\"attachments\";s:0:\"\";s:8:\"use_html\";b:0;s:13:\"exclude_blank\";b:0;}'),
(7915, 1276, '_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.\";}'),
(7916, 1276, '_additional_settings', ''),
(7917, 1276, '_locale', 'en_US'),
(7918, 1277, 'FB_content', ''),
(7923, 1278, 'FB_content', ''),
(7932, 1109, 'FB_content', ''),
(7937, 1279, 'FB_content', ''),
(7950, 1280, 'FB_content', ''),
(7961, 1282, '_wp_attached_file', '2016/10/SMALL-LOGO.png'),
(7962, 1282, '_wp_attachment_metadata', 'a:5:{s:5:\"width\";i:205;s:6:\"height\";i:60;s:4:\"file\";s:22:\"2016/10/SMALL-LOGO.png\";s:5:\"sizes\";a:4:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:21:\"SMALL-LOGO-150x60.png\";s:5:\"width\";i:150;s:6:\"height\";i:60;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"portfolio-five\";a:4:{s:4:\"file\";s:21:\"SMALL-LOGO-177x60.png\";s:5:\"width\";i:177;s:6:\"height\";i:60;s:9:\"mime-type\";s:9:\"image/png\";}s:22:\"recent-works-thumbnail\";a:4:{s:4:\"file\";s:20:\"SMALL-LOGO-66x60.png\";s:5:\"width\";i:66;s:6:\"height\";i:60;s:9:\"mime-type\";s:9:\"image/png\";}i:200;a:4:{s:4:\"file\";s:21:\"SMALL-LOGO-200x59.png\";s:5:\"width\";i:200;s:6:\"height\";i:59;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:{}}}'),
(7963, 1283, '_wp_attached_file', '2016/10/SMALL-LOGO-1.png'),
(7964, 1283, '_wp_attachment_metadata', 'a:5:{s:5:\"width\";i:205;s:6:\"height\";i:60;s:4:\"file\";s:24:\"2016/10/SMALL-LOGO-1.png\";s:5:\"sizes\";a:4:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:23:\"SMALL-LOGO-1-150x60.png\";s:5:\"width\";i:150;s:6:\"height\";i:60;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"portfolio-five\";a:4:{s:4:\"file\";s:23:\"SMALL-LOGO-1-177x60.png\";s:5:\"width\";i:177;s:6:\"height\";i:60;s:9:\"mime-type\";s:9:\"image/png\";}s:22:\"recent-works-thumbnail\";a:4:{s:4:\"file\";s:22:\"SMALL-LOGO-1-66x60.png\";s:5:\"width\";i:66;s:6:\"height\";i:60;s:9:\"mime-type\";s:9:\"image/png\";}i:200;a:4:{s:4:\"file\";s:23:\"SMALL-LOGO-1-200x59.png\";s:5:\"width\";i:200;s:6:\"height\";i:59;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:{}}}'),
(7973, 1284, 'FB_content', ''),
(8010, 1285, 'FB_content', ''),
(8031, 1286, 'FB_content', ''),
(8036, 1075, 'FB_content', ''),
(8037, 1075, 'FB_content', ''),
(8038, 1075, 'FB_content', ''),
(8039, 1075, 'FB_content', ''),
(8040, 1075, 'FB_content', ''),
(8041, 1075, 'FB_content', ''),
(8042, 1075, 'FB_content', ''),
(8051, 1287, 'FB_content', ''),
(8056, 1075, 'FB_content', ''),
(8057, 1075, 'FB_content', ''),
(8058, 1075, 'FB_content', ''),
(8067, 1288, 'FB_content', ''),
(8072, 1075, 'FB_content', ''),
(8073, 1075, 'FB_content', ''),
(8074, 1075, 'FB_content', ''),
(8075, 1075, 'FB_content', ''),
(8084, 1289, 'FB_content', ''),
(8103, 1293, 'FB_content', ''),
(8124, 1294, 'FB_content', ''),
(8129, 1182, '_wp_page_template', 'default'),
(8134, 1182, 'slide_template', 'default'),
(8139, 1182, 'pyre_slider_position', 'default'),
(8140, 1182, 'pyre_slider_type', 'no'),
(8141, 1182, 'pyre_slider', '0'),
(8142, 1182, 'pyre_wooslider', '0'),
(8143, 1182, 'pyre_revslider', '0'),
(8144, 1182, 'pyre_elasticslider', '0'),
(8145, 1182, 'pyre_fallback', ''),
(8146, 1182, 'pyre_avada_rev_styles', 'default'),
(8147, 1182, 'pyre_main_top_padding', ''),
(8148, 1182, 'pyre_main_bottom_padding', ''),
(8149, 1182, 'pyre_hundredp_padding', ''),
(8150, 1182, 'pyre_show_first_featured_image', 'no'),
(8151, 1182, 'pyre_display_header', 'yes'),
(8152, 1182, 'pyre_header_100_width', 'default'),
(8153, 1182, 'pyre_header_bg', ''),
(8154, 1182, 'pyre_header_bg_color', ''),
(8155, 1182, 'pyre_header_bg_opacity', ''),
(8156, 1182, 'pyre_header_bg_full', 'no'),
(8157, 1182, 'pyre_header_bg_repeat', 'repeat'),
(8158, 1182, 'pyre_displayed_menu', 'default'),
(8159, 1182, 'pyre_display_footer', 'no'),
(8160, 1182, 'pyre_display_copyright', 'no'),
(8161, 1182, 'pyre_footer_100_width', 'no'),
(8162, 1182, 'pyre_sidebar_position', 'default'),
(8163, 1182, 'pyre_sidebar_bg_color', ''),
(8164, 1182, 'pyre_page_bg_layout', 'wide'),
(8165, 1182, 'pyre_page_bg', ''),
(8166, 1182, 'pyre_page_bg_color', ''),
(8167, 1182, 'pyre_page_bg_full', 'yes'),
(8168, 1182, 'pyre_page_bg_repeat', 'no-repeat'),
(8169, 1182, 'pyre_wide_page_bg', 'https://msla.co.za/lodge/wp-content/uploads/2019/11/homepage-background-01.jpg'),
(8170, 1182, 'pyre_wide_page_bg_color', ''),
(8171, 1182, 'pyre_wide_page_bg_full', 'yes'),
(8172, 1182, 'pyre_wide_page_bg_repeat', 'no-repeat'),
(8173, 1182, 'pyre_portfolio_width_100', 'no'),
(8174, 1182, 'pyre_portfolio_content_length', 'default'),
(8175, 1182, 'pyre_portfolio_excerpt', ''),
(8176, 1182, 'pyre_portfolio_filters', 'yes'),
(8177, 1182, 'pyre_portfolio_text_layout', 'default'),
(8178, 1182, 'pyre_portfolio_featured_image_size', 'default'),
(8179, 1182, 'pyre_portfolio_column_spacing', ''),
(8180, 1182, 'pyre_page_title', 'no'),
(8181, 1182, 'pyre_page_title_text', 'no'),
(8182, 1182, 'pyre_page_title_text_alignment', 'default'),
(8183, 1182, 'pyre_page_title_100_width', 'default'),
(8184, 1182, 'pyre_page_title_custom_text', ''),
(8185, 1182, 'pyre_page_title_text_size', ''),
(8186, 1182, 'pyre_page_title_custom_subheader', ''),
(8187, 1182, 'pyre_page_title_custom_subheader_text_size', ''),
(8188, 1182, 'pyre_page_title_font_color', ''),
(8189, 1182, 'pyre_page_title_height', ''),
(8190, 1182, 'pyre_page_title_mobile_height', ''),
(8191, 1182, 'pyre_page_title_bar_bg', ''),
(8192, 1182, 'pyre_page_title_bar_bg_retina', ''),
(8193, 1182, 'pyre_page_title_bar_bg_color', ''),
(8194, 1182, 'pyre_page_title_bar_borders_color', ''),
(8195, 1182, 'pyre_page_title_bar_bg_full', 'default'),
(8196, 1182, 'pyre_page_title_bg_parallax', 'default'),
(8197, 1182, 'pyre_page_title_breadcrumbs_search_bar', 'default'),
(8198, 1182, 'fusion_builder_status', 'active'),
(8199, 1295, 'FB_content', ''),
(8212, 1296, 'FB_content', ''),
(8225, 1297, '_edit_last', '1'),
(8226, 1297, '_edit_lock', '1477224492:1'),
(8227, 1297, '_wp_page_template', 'default'),
(8232, 1297, 'slide_template', 'default'),
(8237, 1297, 'pyre_slider_position', 'default'),
(8238, 1297, 'pyre_slider_type', 'no'),
(8239, 1297, 'pyre_slider', '0'),
(8240, 1297, 'pyre_wooslider', '0'),
(8241, 1297, 'pyre_revslider', '0'),
(8242, 1297, 'pyre_elasticslider', '0'),
(8243, 1297, 'pyre_fallback', ''),
(8244, 1297, 'pyre_avada_rev_styles', 'default'),
(8245, 1297, 'pyre_main_top_padding', ''),
(8246, 1297, 'pyre_main_bottom_padding', ''),
(8247, 1297, 'pyre_hundredp_padding', ''),
(8248, 1297, 'pyre_show_first_featured_image', 'no'),
(8249, 1297, 'pyre_display_header', 'yes'),
(8250, 1297, 'pyre_header_100_width', 'default'),
(8251, 1297, 'pyre_header_bg', ''),
(8252, 1297, 'pyre_header_bg_color', ''),
(8253, 1297, 'pyre_header_bg_opacity', ''),
(8254, 1297, 'pyre_header_bg_full', 'no'),
(8255, 1297, 'pyre_header_bg_repeat', 'repeat'),
(8256, 1297, 'pyre_displayed_menu', 'default'),
(8257, 1297, 'pyre_display_footer', 'default'),
(8258, 1297, 'pyre_display_copyright', 'default'),
(8259, 1297, 'pyre_footer_100_width', 'default'),
(8260, 1297, 'pyre_sidebar_position', 'default'),
(8261, 1297, 'pyre_sidebar_bg_color', ''),
(8262, 1297, 'pyre_page_bg_layout', 'default'),
(8263, 1297, 'pyre_page_bg', ''),
(8264, 1297, 'pyre_page_bg_color', ''),
(8265, 1297, 'pyre_page_bg_full', 'no'),
(8266, 1297, 'pyre_page_bg_repeat', 'repeat'),
(8267, 1297, 'pyre_wide_page_bg', ''),
(8268, 1297, 'pyre_wide_page_bg_color', ''),
(8269, 1297, 'pyre_wide_page_bg_full', 'no'),
(8270, 1297, 'pyre_wide_page_bg_repeat', 'repeat'),
(8271, 1297, 'pyre_portfolio_width_100', 'no'),
(8272, 1297, 'pyre_portfolio_content_length', 'default'),
(8273, 1297, 'pyre_portfolio_excerpt', ''),
(8274, 1297, 'pyre_portfolio_filters', 'yes'),
(8275, 1297, 'pyre_portfolio_text_layout', 'default'),
(8276, 1297, 'pyre_portfolio_featured_image_size', 'default'),
(8277, 1297, 'pyre_portfolio_column_spacing', ''),
(8278, 1297, 'pyre_page_title', 'default'),
(8279, 1297, 'pyre_page_title_text', 'default'),
(8280, 1297, 'pyre_page_title_text_alignment', 'default'),
(8281, 1297, 'pyre_page_title_100_width', 'default'),
(8282, 1297, 'pyre_page_title_custom_text', ''),
(8283, 1297, 'pyre_page_title_text_size', ''),
(8284, 1297, 'pyre_page_title_custom_subheader', ''),
(8285, 1297, 'pyre_page_title_custom_subheader_text_size', ''),
(8286, 1297, 'pyre_page_title_font_color', ''),
(8287, 1297, 'pyre_page_title_height', ''),
(8288, 1297, 'pyre_page_title_mobile_height', ''),
(8289, 1297, 'pyre_page_title_bar_bg', ''),
(8290, 1297, 'pyre_page_title_bar_bg_retina', ''),
(8291, 1297, 'pyre_page_title_bar_bg_color', ''),
(8292, 1297, 'pyre_page_title_bar_borders_color', ''),
(8293, 1297, 'pyre_page_title_bar_bg_full', 'default'),
(8294, 1297, 'pyre_page_title_bg_parallax', 'default'),
(8295, 1297, 'pyre_page_title_breadcrumbs_search_bar', 'default'),
(8296, 1297, 'fusion_builder_status', 'inactive'),
(8297, 1298, 'FB_content', ''),
(8310, 1299, 'FB_content', ''),
(8315, 1300, '_edit_last', '1'),
(8316, 1300, '_edit_lock', '1477149352:1'),
(8317, 1300, '_wp_page_template', 'default'),
(8322, 1300, 'slide_template', 'default'),
(8327, 1300, 'pyre_slider_position', 'default'),
(8328, 1300, 'pyre_slider_type', 'no'),
(8329, 1300, 'pyre_slider', '0'),
(8330, 1300, 'pyre_wooslider', '0'),
(8331, 1300, 'pyre_revslider', '0'),
(8332, 1300, 'pyre_elasticslider', '0'),
(8333, 1300, 'pyre_fallback', ''),
(8334, 1300, 'pyre_avada_rev_styles', 'default'),
(8335, 1300, 'pyre_main_top_padding', ''),
(8336, 1300, 'pyre_main_bottom_padding', ''),
(8337, 1300, 'pyre_hundredp_padding', ''),
(8338, 1300, 'pyre_show_first_featured_image', 'no'),
(8339, 1300, 'pyre_display_header', 'yes'),
(8340, 1300, 'pyre_header_100_width', 'default'),
(8341, 1300, 'pyre_header_bg', ''),
(8342, 1300, 'pyre_header_bg_color', ''),
(8343, 1300, 'pyre_header_bg_opacity', ''),
(8344, 1300, 'pyre_header_bg_full', 'no'),
(8345, 1300, 'pyre_header_bg_repeat', 'repeat'),
(8346, 1300, 'pyre_displayed_menu', 'default'),
(8347, 1300, 'pyre_display_footer', 'default'),
(8348, 1300, 'pyre_display_copyright', 'default'),
(8349, 1300, 'pyre_footer_100_width', 'default'),
(8350, 1300, 'pyre_sidebar_position', 'default'),
(8351, 1300, 'pyre_sidebar_bg_color', ''),
(8352, 1300, 'pyre_page_bg_layout', 'default'),
(8353, 1300, 'pyre_page_bg', ''),
(8354, 1300, 'pyre_page_bg_color', ''),
(8355, 1300, 'pyre_page_bg_full', 'no'),
(8356, 1300, 'pyre_page_bg_repeat', 'repeat'),
(8357, 1300, 'pyre_wide_page_bg', ''),
(8358, 1300, 'pyre_wide_page_bg_color', ''),
(8359, 1300, 'pyre_wide_page_bg_full', 'no'),
(8360, 1300, 'pyre_wide_page_bg_repeat', 'repeat'),
(8361, 1300, 'pyre_portfolio_width_100', 'no'),
(8362, 1300, 'pyre_portfolio_content_length', 'default'),
(8363, 1300, 'pyre_portfolio_excerpt', ''),
(8364, 1300, 'pyre_portfolio_filters', 'yes'),
(8365, 1300, 'pyre_portfolio_text_layout', 'default'),
(8366, 1300, 'pyre_portfolio_featured_image_size', 'default'),
(8367, 1300, 'pyre_portfolio_column_spacing', ''),
(8368, 1300, 'pyre_page_title', 'default'),
(8369, 1300, 'pyre_page_title_text', 'default'),
(8370, 1300, 'pyre_page_title_text_alignment', 'default'),
(8371, 1300, 'pyre_page_title_100_width', 'default'),
(8372, 1300, 'pyre_page_title_custom_text', ''),
(8373, 1300, 'pyre_page_title_text_size', ''),
(8374, 1300, 'pyre_page_title_custom_subheader', ''),
(8375, 1300, 'pyre_page_title_custom_subheader_text_size', ''),
(8376, 1300, 'pyre_page_title_font_color', ''),
(8377, 1300, 'pyre_page_title_height', ''),
(8378, 1300, 'pyre_page_title_mobile_height', ''),
(8379, 1300, 'pyre_page_title_bar_bg', ''),
(8380, 1300, 'pyre_page_title_bar_bg_retina', ''),
(8381, 1300, 'pyre_page_title_bar_bg_color', ''),
(8382, 1300, 'pyre_page_title_bar_borders_color', ''),
(8383, 1300, 'pyre_page_title_bar_bg_full', 'default'),
(8384, 1300, 'pyre_page_title_bg_parallax', 'default'),
(8385, 1300, 'pyre_page_title_breadcrumbs_search_bar', 'default'),
(8386, 1300, 'fusion_builder_status', 'inactive'),
(8387, 1301, 'FB_content', ''),
(8388, 1300, 'sbg_selected_sidebar', 'a:1:{i:0;s:1:\"0\";}'),
(8389, 1300, 'sbg_selected_sidebar_replacement', 'a:1:{i:0;s:0:\"\";}'),
(8390, 1300, 'sbg_selected_sidebar_2', 'a:1:{i:0;s:1:\"0\";}'),
(8391, 1300, 'sbg_selected_sidebar_2_replacement', 'a:1:{i:0;s:0:\"\";}'),
(8400, 1302, 'FB_content', ''),
(8413, 1303, 'FB_content', ''),
(8414, 1297, 'sbg_selected_sidebar', 'a:1:{i:0;s:1:\"0\";}'),
(8415, 1297, 'sbg_selected_sidebar_replacement', 'a:1:{i:0;s:0:\"\";}'),
(8416, 1297, 'sbg_selected_sidebar_2', 'a:1:{i:0;s:1:\"0\";}'),
(8417, 1297, 'sbg_selected_sidebar_2_replacement', 'a:1:{i:0;s:0:\"\";}'),
(8426, 1304, 'FB_content', ''),
(8439, 1305, 'FB_content', ''),
(8452, 1306, 'FB_content', ''),
(8465, 1307, 'FB_content', ''),
(8478, 1308, 'FB_content', ''),
(8491, 1309, 'FB_content', ''),
(8504, 1310, 'FB_content', ''),
(8517, 1311, 'FB_content', ''),
(8530, 1312, 'FB_content', ''),
(8543, 1313, 'FB_content', ''),
(8556, 1314, 'FB_content', ''),
(8569, 1315, 'FB_content', ''),
(8590, 1316, 'FB_content', ''),
(8595, 1317, '_menu_item_type', 'post_type'),
(8596, 1317, '_menu_item_menu_item_parent', '0'),
(8597, 1317, '_menu_item_object_id', '1182'),
(8598, 1317, '_menu_item_object', 'page'),
(8599, 1317, '_menu_item_target', ''),
(8600, 1317, '_menu_item_classes', 'a:1:{i:0;s:0:\"\";}'),
(8601, 1317, '_menu_item_xfn', ''),
(8602, 1317, '_menu_item_url', ''),
(8621, 1318, 'FB_content', ''),
(8634, 1319, 'FB_content', ''),
(8647, 1320, 'FB_content', ''),
(8660, 1321, 'FB_content', ''),
(8673, 1322, 'FB_content', ''),
(8686, 1323, 'FB_content', ''),
(8695, 855, 'sbg_selected_sidebar', 'a:1:{i:0;s:1:\"0\";}'),
(8696, 855, 'sbg_selected_sidebar_replacement', 'a:1:{i:0;s:0:\"\";}'),
(8697, 855, 'sbg_selected_sidebar_2', 'a:1:{i:0;s:1:\"0\";}'),
(8698, 855, 'sbg_selected_sidebar_2_replacement', 'a:1:{i:0;s:0:\"\";}'),
(8703, 851, 'sbg_selected_sidebar', 'a:1:{i:0;s:1:\"0\";}'),
(8704, 851, 'sbg_selected_sidebar_replacement', 'a:1:{i:0;s:0:\"\";}'),
(8705, 851, 'sbg_selected_sidebar_2', 'a:1:{i:0;s:1:\"0\";}'),
(8706, 851, 'sbg_selected_sidebar_2_replacement', 'a:1:{i:0;s:0:\"\";}'),
(8711, 1072, 'sbg_selected_sidebar', 'a:1:{i:0;s:1:\"0\";}'),
(8712, 1072, 'sbg_selected_sidebar_replacement', 'a:1:{i:0;s:0:\"\";}');
INSERT INTO `wp_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(8713, 1072, 'sbg_selected_sidebar_2', 'a:1:{i:0;s:1:\"0\";}'),
(8714, 1072, 'sbg_selected_sidebar_2_replacement', 'a:1:{i:0;s:0:\"\";}'),
(8723, 1325, 'FB_content', ''),
(8728, 1326, '_edit_last', '1'),
(8729, 1326, '_edit_lock', '1477643284:1'),
(8730, 1327, '_wp_page_template', '100-width.php'),
(8731, 1327, 'slide_template', 'default'),
(8732, 1327, 'fusion_builder_status', 'active'),
(8733, 1327, 'pyre_slider_position', 'default'),
(8734, 1327, 'pyre_slider_type', 'flex'),
(8735, 1327, 'pyre_slider', '0'),
(8736, 1327, 'pyre_wooslider', '0'),
(8737, 1327, 'pyre_revslider', '0'),
(8738, 1327, 'pyre_elasticslider', '0'),
(8739, 1327, 'pyre_fallback', ''),
(8740, 1327, 'pyre_avada_rev_styles', 'default'),
(8741, 1327, 'pyre_main_top_padding', '0px'),
(8742, 1327, 'pyre_main_bottom_padding', '0px'),
(8743, 1327, 'pyre_hundredp_padding', ''),
(8744, 1327, 'pyre_show_first_featured_image', 'no'),
(8745, 1327, 'pyre_display_header', 'yes'),
(8746, 1327, 'pyre_header_100_width', 'default'),
(8747, 1327, 'pyre_header_bg', ''),
(8748, 1327, 'pyre_header_bg_color', ''),
(8749, 1327, 'pyre_header_bg_opacity', ''),
(8750, 1327, 'pyre_header_bg_full', 'no'),
(8751, 1327, 'pyre_header_bg_repeat', 'repeat'),
(8752, 1327, 'pyre_displayed_menu', 'default'),
(8753, 1327, 'pyre_display_footer', 'default'),
(8754, 1327, 'pyre_display_copyright', 'default'),
(8755, 1327, 'pyre_footer_100_width', 'default'),
(8756, 1327, 'pyre_sidebar_position', 'default'),
(8757, 1327, 'pyre_page_bg_layout', 'default'),
(8758, 1327, 'pyre_page_bg', ''),
(8759, 1327, 'pyre_page_bg_color', ''),
(8760, 1327, 'pyre_page_bg_full', 'no'),
(8761, 1327, 'pyre_page_bg_repeat', 'repeat'),
(8762, 1327, 'pyre_wide_page_bg', ''),
(8763, 1327, 'pyre_wide_page_bg_color', ''),
(8764, 1327, 'pyre_wide_page_bg_full', 'no'),
(8765, 1327, 'pyre_wide_page_bg_repeat', 'repeat'),
(8766, 1327, 'pyre_portfolio_width_100', 'no'),
(8767, 1327, 'pyre_portfolio_content_length', 'default'),
(8768, 1327, 'pyre_portfolio_excerpt', ''),
(8769, 1327, 'pyre_portfolio_filters', 'yes'),
(8770, 1327, 'pyre_portfolio_text_layout', 'default'),
(8771, 1327, 'pyre_portfolio_featured_image_size', 'default'),
(8772, 1327, 'pyre_portfolio_column_spacing', ''),
(8773, 1327, 'pyre_page_title', 'no'),
(8774, 1327, 'pyre_page_title_text', 'yes'),
(8775, 1327, 'pyre_page_title_text_alignment', 'default'),
(8776, 1327, 'pyre_page_title_custom_text', ''),
(8777, 1327, 'pyre_page_title_100_width', 'default'),
(8778, 1327, 'pyre_page_title_text_size', ''),
(8779, 1327, 'pyre_page_title_custom_subheader', ''),
(8780, 1327, 'pyre_page_title_custom_subheader_text_size', ''),
(8781, 1327, 'pyre_page_title_font_color', ''),
(8782, 1327, 'pyre_page_title_height', ''),
(8783, 1327, 'pyre_page_title_bar_bg', ''),
(8784, 1327, 'pyre_page_title_bar_bg_retina', ''),
(8785, 1327, 'pyre_page_title_bar_bg_color', ''),
(8786, 1327, 'pyre_page_title_bar_bg_full', 'default'),
(8787, 1327, 'pyre_page_title_bg_parallax', 'default'),
(8788, 1327, 'pyre_page_title_breadcrumbs_search_bar', 'default'),
(8789, 1327, '_oembed_0e326860a4242c485e7f0f0ede6a6522', '{{unknown}}'),
(8790, 1327, 'pyre_sidebar_bg_color', ''),
(8791, 1327, 'pyre_page_title_bar_borders_color', ''),
(8792, 1327, '_edit_lock', '1477659546:1'),
(8793, 1327, '_edit_last', '1'),
(8794, 1327, 'pyre_page_title_mobile_height', ''),
(8865, 1328, 'FB_content', ''),
(8886, 1329, 'FB_content', ''),
(8899, 1330, 'FB_content', ''),
(8912, 1331, 'FB_content', ''),
(8913, 1327, 'sbg_selected_sidebar', 'a:1:{i:0;s:1:\"0\";}'),
(8914, 1327, 'sbg_selected_sidebar_replacement', 'a:1:{i:0;s:0:\"\";}'),
(8915, 1327, 'sbg_selected_sidebar_2', 'a:1:{i:0;s:1:\"0\";}'),
(8916, 1327, 'sbg_selected_sidebar_2_replacement', 'a:1:{i:0;s:0:\"\";}'),
(8925, 1332, 'FB_content', ''),
(8938, 1333, 'FB_content', ''),
(8951, 1334, 'FB_content', ''),
(8964, 1335, 'FB_content', ''),
(8977, 1336, 'FB_content', ''),
(8990, 986, 'FB_content', ''),
(8999, 1339, 'FB_content', ''),
(9012, 1340, 'FB_content', ''),
(9025, 1341, 'FB_content', ''),
(9038, 1342, 'FB_content', ''),
(9051, 1343, 'FB_content', ''),
(9064, 1344, 'FB_content', ''),
(9077, 1345, 'FB_content', ''),
(9090, 1346, 'FB_content', ''),
(9103, 1347, 'FB_content', ''),
(9116, 1348, 'FB_content', ''),
(9129, 1350, 'FB_content', ''),
(9142, 1351, 'FB_content', ''),
(9155, 1352, 'FB_content', ''),
(9168, 1353, 'FB_content', ''),
(9169, 984, 'sbg_selected_sidebar', 'a:1:{i:0;s:1:\"0\";}'),
(9170, 984, 'sbg_selected_sidebar_replacement', 'a:1:{i:0;s:0:\"\";}'),
(9171, 984, 'sbg_selected_sidebar_2', 'a:1:{i:0;s:1:\"0\";}'),
(9172, 984, 'sbg_selected_sidebar_2_replacement', 'a:1:{i:0;s:0:\"\";}'),
(9173, 841, '_edit_lock', '1525294896:1'),
(9174, 24, 'pyre_aspect_ratio', ''),
(9175, 24, 'pyre_heading_separator', 'none'),
(9176, 24, 'pyre_caption_separator', 'none'),
(9185, 1358, '_wp_attached_file', '2019/11/homepage-background-01.jpg'),
(9186, 1358, '_wp_attachment_metadata', 'a:5:{s:5:\"width\";i:1800;s:6:\"height\";i:877;s:4:\"file\";s:34:\"2019/11/homepage-background-01.jpg\";s:5:\"sizes\";a:18:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:34:\"homepage-background-01-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:34:\"homepage-background-01-300x146.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:146;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:34:\"homepage-background-01-768x374.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:374;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:35:\"homepage-background-01-1024x499.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:499;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:10:\"blog-large\";a:4:{s:4:\"file\";s:34:\"homepage-background-01-669x272.jpg\";s:5:\"width\";i:669;s:6:\"height\";i:272;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"blog-medium\";a:4:{s:4:\"file\";s:34:\"homepage-background-01-320x202.jpg\";s:5:\"width\";i:320;s:6:\"height\";i:202;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"portfolio-full\";a:4:{s:4:\"file\";s:34:\"homepage-background-01-940x400.jpg\";s:5:\"width\";i:940;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:13:\"portfolio-one\";a:4:{s:4:\"file\";s:34:\"homepage-background-01-540x272.jpg\";s:5:\"width\";i:540;s:6:\"height\";i:272;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:13:\"portfolio-two\";a:4:{s:4:\"file\";s:34:\"homepage-background-01-460x295.jpg\";s:5:\"width\";i:460;s:6:\"height\";i:295;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"portfolio-three\";a:4:{s:4:\"file\";s:34:\"homepage-background-01-300x214.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:214;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"portfolio-five\";a:4:{s:4:\"file\";s:34:\"homepage-background-01-177x142.jpg\";s:5:\"width\";i:177;s:6:\"height\";i:142;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"recent-posts\";a:4:{s:4:\"file\";s:34:\"homepage-background-01-700x441.jpg\";s:5:\"width\";i:700;s:6:\"height\";i:441;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:22:\"recent-works-thumbnail\";a:4:{s:4:\"file\";s:32:\"homepage-background-01-66x66.jpg\";s:5:\"width\";i:66;s:6:\"height\";i:66;s:9:\"mime-type\";s:10:\"image/jpeg\";}i:200;a:4:{s:4:\"file\";s:33:\"homepage-background-01-200x97.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:97;s:9:\"mime-type\";s:10:\"image/jpeg\";}i:400;a:4:{s:4:\"file\";s:34:\"homepage-background-01-400x195.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:195;s:9:\"mime-type\";s:10:\"image/jpeg\";}i:600;a:4:{s:4:\"file\";s:34:\"homepage-background-01-600x292.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:292;s:9:\"mime-type\";s:10:\"image/jpeg\";}i:800;a:4:{s:4:\"file\";s:34:\"homepage-background-01-800x390.jpg\";s:5:\"width\";i:800;s:6:\"height\";i:390;s:9:\"mime-type\";s:10:\"image/jpeg\";}i:1200;a:4:{s:4:\"file\";s:35:\"homepage-background-01-1200x585.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:585;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(9211, 1317, '_menu_item_fusion_megamenu', 'a:17:{s:6:\"status\";s:0:\"\";s:5:\"width\";s:0:\"\";s:7:\"columns\";s:4:\"auto\";s:5:\"title\";s:0:\"\";s:10:\"widgetarea\";s:0:\"\";s:11:\"columnwidth\";s:0:\"\";s:4:\"icon\";s:0:\"\";s:5:\"modal\";s:0:\"\";s:9:\"thumbnail\";s:0:\"\";s:5:\"style\";s:0:\"\";s:8:\"icononly\";s:0:\"\";s:15:\"highlight_label\";s:0:\"\";s:26:\"highlight_label_background\";s:0:\"\";s:21:\"highlight_label_color\";s:0:\"\";s:28:\"highlight_label_border_color\";s:0:\"\";s:12:\"thumbnail_id\";s:0:\"\";s:16:\"background_image\";s:0:\"\";}'),
(9212, 1149, '_menu_item_fusion_megamenu', 'a:11:{s:6:\"status\";s:0:\"\";s:5:\"width\";s:0:\"\";s:7:\"columns\";s:4:\"auto\";s:5:\"title\";s:0:\"\";s:10:\"widgetarea\";s:1:\"0\";s:11:\"columnwidth\";s:0:\"\";s:4:\"icon\";s:0:\"\";s:5:\"modal\";s:0:\"\";s:9:\"thumbnail\";s:0:\"\";s:5:\"style\";s:0:\"\";s:8:\"icononly\";s:0:\"\";}'),
(9213, 1005, '_menu_item_fusion_megamenu', 'a:11:{s:6:\"status\";s:0:\"\";s:5:\"width\";s:0:\"\";s:7:\"columns\";s:4:\"auto\";s:5:\"title\";s:0:\"\";s:10:\"widgetarea\";s:1:\"0\";s:11:\"columnwidth\";s:0:\"\";s:4:\"icon\";s:0:\"\";s:5:\"modal\";s:0:\"\";s:9:\"thumbnail\";s:0:\"\";s:5:\"style\";s:0:\"\";s:8:\"icononly\";s:0:\"\";}'),
(9214, 1006, '_menu_item_fusion_megamenu', 'a:11:{s:6:\"status\";s:0:\"\";s:5:\"width\";s:0:\"\";s:7:\"columns\";s:4:\"auto\";s:5:\"title\";s:0:\"\";s:10:\"widgetarea\";s:1:\"0\";s:11:\"columnwidth\";s:0:\"\";s:4:\"icon\";s:0:\"\";s:5:\"modal\";s:0:\"\";s:9:\"thumbnail\";s:0:\"\";s:5:\"style\";s:0:\"\";s:8:\"icononly\";s:0:\"\";}'),
(9215, 832, '_menu_item_fusion_megamenu', 'a:17:{s:6:\"status\";s:0:\"\";s:5:\"width\";s:0:\"\";s:7:\"columns\";s:4:\"auto\";s:5:\"title\";s:0:\"\";s:10:\"widgetarea\";s:1:\"0\";s:11:\"columnwidth\";s:0:\"\";s:4:\"icon\";s:11:\"fa-home fas\";s:5:\"modal\";s:0:\"\";s:9:\"thumbnail\";s:0:\"\";s:5:\"style\";s:0:\"\";s:8:\"icononly\";s:8:\"icononly\";s:15:\"highlight_label\";s:0:\"\";s:26:\"highlight_label_background\";s:7:\"#e2cda7\";s:21:\"highlight_label_color\";s:0:\"\";s:28:\"highlight_label_border_color\";s:7:\"#e2cda7\";s:12:\"thumbnail_id\";s:0:\"\";s:16:\"background_image\";s:0:\"\";}'),
(9216, 830, '_menu_item_fusion_megamenu', 'a:17:{s:6:\"status\";s:0:\"\";s:5:\"width\";s:0:\"\";s:7:\"columns\";s:4:\"auto\";s:5:\"title\";s:0:\"\";s:10:\"widgetarea\";s:1:\"0\";s:11:\"columnwidth\";s:0:\"\";s:4:\"icon\";s:0:\"\";s:5:\"modal\";s:0:\"\";s:9:\"thumbnail\";s:0:\"\";s:5:\"style\";s:0:\"\";s:8:\"icononly\";s:0:\"\";s:15:\"highlight_label\";s:0:\"\";s:26:\"highlight_label_background\";s:0:\"\";s:21:\"highlight_label_color\";s:0:\"\";s:28:\"highlight_label_border_color\";s:0:\"\";s:12:\"thumbnail_id\";s:0:\"\";s:16:\"background_image\";s:0:\"\";}'),
(9220, 1327, 'fusion_builder_content_backup', '[fullwidth background_color=\"\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"70px\" padding_bottom=\"75px\" padding_left=\"0px\" padding_right=\"0px\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][fusion_text]\r\n<h3>Thank you for your booking enquiry.</h3>\r\n<h3>We will get back to you as soon as possible and let you know if we can definitely confirm availability for the date/s requested.</h3>\r\n[/fusion_text][one_half last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][fusion_text]\r\n<h1>Contact Us</h1>\r\n<h2>Send us a message.</h2>\r\n[/fusion_text][fusion_text][contact-form-7 id=\"246\" title=\"Contact form 1\"][/fusion_text][/one_half][one_half last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][fusion_text]\r\n<h1>Where are we?</h1>\r\n<h2>4 Williams Road\r\nAssagay, Hillcrest\r\nKwaZulu Natal</h2>\r\n<h1>Contact</h1>\r\n<h2>0317656046 or 0317655961</h2>\r\n[/fusion_text][separator style_type=\"none\" top_margin=\"\" bottom_margin=\"20\" sep_color=\"\" border_size=\"\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"\" alignment=\"\" class=\"\" id=\"\"][accordian divider_line=\"\" class=\"\" id=\"\"][toggle title=\"GPS Location\" open=\"no\"]\r\n\r\n<strong>GPS: Latitude (South) -29.771865, Longitude (East) 30.736892</strong>\r\n\r\n[/toggle][toggle title=\"Directions from King Shaka Airport / Durban\" open=\"no\"]\r\n\r\nFrom King Shaka Airport take the N2 South bound towards Durban, at the 3 level interchange be sure to take the N3 turn off towards Pietermaritzburg. Proceed through the Marionhill toll plaza and take the first off ramp marked Shongweni / Assagay / Hillcrest. Turn right towards Hillcrest into Kassier Road which will take you over the N3 and M13, keep on this road, pass the Hillcrest Private Hospital and Alverstone turn off. Remain on Kassier Road, for about 2-3km and turn into Assagay Road, which is just after Assagay Crescent.\r\n\r\nTake the left turn into Assagay Road. Head up the rise. Turn left into Castle Road, carry down the dip for about 500m and cross a small water-bridge. Turn first right into Lello Road, just after the bridge. Continue on Lello Road, the road dips and briefly climbs, the valley falling away to your right. Finally, turn left into Williams Road (it’s essentially the first left turn on Lello Road), Continue down Williams Road for about 800m. On your right you will come to the entrance of the farm called `Fourever` No 4 Williams Road. There’s a 1000 Hills Tourism Sign outside. A wooden fence and silver gate. Welcome to Assagay Forest Lodge.\r\n\r\n[/toggle][toggle title=\"Directions from Pietermaritzburg\" open=\"no\"]\r\n\r\nFrom Pietermaritzburg take the N3 towards Durban. After the Drummond turnoff the N3 makes a steep climb. Don\'t take the Alternative route but stay on the N3. Take the next off ramp marked Shongweni / Assagay / Hillcrest. Turn left towards Hillcrest into Kassier Road which will take you passed the Polo fields on your left and a Petrol Station on your right and over then over the M13, keep on this road, pass the Hillcrest Private Hospital and Alverstone turn off. Remain on Kassier Road, for about 2-3km and turn into Assagay Road, which is just after Assagay Crescent.\r\n\r\nTake the left turn into Assagay Road. Head up the rise. Turn left into Castle Road, carry down the dip for about 500m and cross a small water-bridge. Turn first right into Lello Road, just after the bridge. Continue on Lello Road, the road dips and briefly climbs, the valley falling away to your right. Finally, turn left into Williams Road (it’s essentially the first left turn on Lello Road), Continue down Williams Road for about 800m. On your right you will come to the entrance of the farm called `Fourever` No 4 Williams Road. There’s a 1000 Hills Tourism Sign outside. A wooden fence and silver gate. Welcome to Assagay Lodge.\r\n\r\n[/toggle][toggle title=\"Things to do\" open=\"no\"]\r\n\r\nThere is plenty to do.\r\n\r\nDurban Sea Side - 25kms\r\nGame reserve - 15 kms\r\nAnimal Farm - 2kms\r\nBrewery - 4kms\r\nShongweni Market - 6kms\r\nShongweni Dam - 8kms\r\nValley 1000 Hills , Zulu dancing and Croc farm - 4kms\r\nDrakensberg Mountains - 3 hours\r\nHillcrest Shopping Centre - 3 kms\r\nWaterfall Shopping Centre - 8kms\r\nPavilion Shopping Centre - 20 kms\r\nGateway Shopping Centre - 40kms\r\n\r\n[/toggle][/accordian][/one_half][/fullwidth][fullwidth background_color=\"\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"0px\" padding_bottom=\"0px\" padding_left=\"0px\" padding_right=\"0px\" hundred_percent=\"yes\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][map address=\"Assagay Forest Lodge\" type=\"roadmap\" map_style=\"default\" overlay_color=\"#6666a4\" infobox=\"default\" infobox_background_color=\"rgba(102,102,164,.8)\" infobox_text_color=\"#ffffff\" infobox_content=\"\" icon=\"http://theme-fusion.com/avada_demos_xml/travel/wp-content/uploads/2015/01/map.png\" width=\"100%\" height=\"700px\" zoom=\"15\" scrollwheel=\"yes\" scale=\"no\" zoom_pancontrol=\"yes\" animation=\"no\" popup=\"no\" class=\"\" id=\"\"][/map][/fullwidth]'),
(9221, 1327, 'fusion_builder_converted', 'yes'),
(9222, 1182, 'fusion_builder_content_backup', '[fullwidth background_color=\"\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding_top=\"20\" padding_bottom=\"20\" padding_left=\"\" padding_right=\"\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][one_full last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][fusion_text][dopbsp id=\"1\" lang=\"en\"][/fusion_text][/one_full][/fullwidth]'),
(9223, 1182, 'fusion_builder_converted', 'yes'),
(9224, 1121, 'fusion_builder_content_backup', '[fullwidth background_color=\"\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding_top=\"20\" padding_bottom=\"20\" padding_left=\"0\" padding_right=\"0\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][title size=\"1\" content_align=\"right\" style_type=\"default\" sep_color=\"\" margin_top=\"\" margin_bottom=\"\" class=\"\" id=\"\"]Rates &amp; Tariffs[/title][/fullwidth][fusion_text]\r\n<table style=\"width: 100%;\" cellspacing=\"10\" cellpadding=\"5\">\r\n<tbody>\r\n<tr>\r\n<td style=\"text-align: right;\" colspan=\"2\"><span style=\"font-size: 10pt;\">ALL PRICES INCLUDE VAT<strong> </strong></span></td>\r\n</tr>\r\n<tr>\r\n<td colspan=\"2\"><span style=\"font-size: 10pt;\"> </span></td>\r\n</tr>\r\n<tr>\r\n<td colspan=\"2\"><span style=\"font-size: 12pt;\"><strong>Self-Catering / Self-Servicing Accommodation</strong></span></td>\r\n</tr>\r\n<tr>\r\n<td colspan=\"2\"><span style=\"font-size: 12pt;\"><strong> </strong></span></td>\r\n</tr>\r\n<tr>\r\n<td><span style=\"font-size: 12pt;\"><strong>Accommodation</strong> </span></td>\r\n<td><span style=\"font-size: 12pt;\"><strong>*R 580</strong> per person per night</span></td>\r\n</tr>\r\n<tr>\r\n<td></td>\r\n<td><span style=\"font-size: 12pt;\"><strong> </strong></span></td>\r\n</tr>\r\n<tr>\r\n<td><span style=\"font-size: 12pt;\">* <strong>Specials</strong></span></td>\r\n<td><span style=\"font-size: 12pt;\"><strong>15% OFF</strong> Accommodation (1 - 2 days)</span></td>\r\n</tr>\r\n<tr>\r\n<td><span style=\"font-size: 12pt;\"> </span></td>\r\n<td><span style=\"font-size: 12pt;\"><strong>25% OFF</strong> Accommodation - Long stays (3 days &amp; more)</span></td>\r\n</tr>\r\n<tr>\r\n<td><strong><span style=\"font-size: 12pt;\"> </span></strong></td>\r\n<td><span style=\"font-size: 12pt;\"><strong> </strong></span></td>\r\n</tr>\r\n<tr>\r\n<td><strong><span style=\"font-size: 12pt;\">Servicing Options</span></strong></td>\r\n<td><span style=\"font-size: 12pt;\"><strong> </strong></span></td>\r\n</tr>\r\n<tr>\r\n<td><strong><span style=\"font-size: 12pt;\"> </span></strong></td>\r\n<td><span style=\"font-size: 12pt;\"><strong> </strong></span></td>\r\n</tr>\r\n<tr>\r\n<td><span style=\"font-size: 12pt;\">Lodge Only Servicing (Optional) </span></td>\r\n<td><span style=\"font-size: 12pt;\"><strong>R  25</strong> per person per day</span></td>\r\n</tr>\r\n<tr>\r\n<td><span style=\"font-size: 12pt;\">Room Only Servicing (Optional) </span></td>\r\n<td><span style=\"font-size: 12pt;\"><strong>R  25</strong> per person per day</span></td>\r\n</tr>\r\n<tr>\r\n<td><span style=\"font-size: 12pt;\"> </span></td>\r\n<td><span style=\"font-size: 12pt;\"><strong> </strong></span></td>\r\n</tr>\r\n<tr>\r\n<td colspan=\"2\"><span style=\"font-size: 12pt;\"><span style=\"font-size: 12pt;\"><strong>Catering Options</strong></span> </span><span style=\"font-size: 12pt;\"><strong> </strong></span></td>\r\n</tr>\r\n<tr>\r\n<td colspan=\"2\"><span style=\"font-size: 12pt;\"><span style=\"font-size: 12pt;\"><strong> </strong></span></span></td>\r\n</tr>\r\n<tr>\r\n<td><span style=\"font-size: 12pt;\"> <span style=\"font-size: 12pt;\">Breakfast </span></span></td>\r\n<td><span style=\"font-size: 12pt;\"><strong> </strong><span style=\"font-size: 12pt;\"><strong>R  75</strong> per person</span></span></td>\r\n</tr>\r\n<tr>\r\n<td><span style=\"font-size: 12pt;\"> <span style=\"font-size: 12pt;\">Dinners</span></span></td>\r\n<td><span style=\"font-size: 12pt;\"><span style=\"font-size: 12pt;\"><strong>R 180 </strong>per person</span></span></td>\r\n</tr>\r\n<tr>\r\n<td><span style=\"font-size: 12pt;\"> </span></td>\r\n<td><span style=\"font-size: 12pt;\"><strong> </strong></span></td>\r\n</tr>\r\n<tr>\r\n<td><strong><span style=\"font-size: 12pt;\">Others</span></strong></td>\r\n<td><span style=\"font-size: 12pt;\"><strong> </strong></span></td>\r\n</tr>\r\n<tr>\r\n<td><strong><span style=\"font-size: 12pt;\"> </span></strong></td>\r\n<td><span style=\"font-size: 12pt;\"><strong> </strong></span></td>\r\n</tr>\r\n<tr>\r\n<td><span style=\"font-size: 12pt;\">Gate Remote</span></td>\r\n<td><span style=\"font-size: 12pt;\"><strong>R 200 </strong>deposit (may be requested)</span></td>\r\n</tr>\r\n<tr>\r\n<td><span style=\"font-size: 12pt;\">Gas Braai</span></td>\r\n<td><span style=\"font-size: 12pt;\"><strong>R  25</strong> per person per day</span></td>\r\n</tr>\r\n<tr>\r\n<td><span style=\"font-size: 12pt;\">Day Visitors / Guests</span></td>\r\n<td><span style=\"font-size: 12pt;\"><strong>R  50 </strong>per person per day</span></td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n[/fusion_text]'),
(9225, 1121, 'fusion_builder_converted', 'yes'),
(9226, 851, 'fusion_builder_content_backup', '[fullwidth background_color=\"\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding_top=\"20\" padding_bottom=\"20\" padding_left=\"\" padding_right=\"\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][title size=\"1\" content_align=\"right\" style_type=\"default\" sep_color=\"\" margin_top=\"\" margin_bottom=\"\" class=\"\" id=\"\"]Send Us Your Booking Enquiry[/title][/fullwidth][fullwidth background_color=\"\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding_top=\"20\" padding_bottom=\"20\" padding_left=\"\" padding_right=\"\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][one_sixth last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][/one_sixth][two_third last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][fusion_text][contact-form-7 id=\"1276\" title=\"Lodge Enquiry\"][/fusion_text][/two_third][one_sixth last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][/one_sixth][/fullwidth]'),
(9227, 851, 'fusion_builder_converted', 'yes'),
(9228, 1072, 'fusion_builder_content_backup', '<div>\r\n<table class=\" alignleft\" style=\"width: 100%;\" cellspacing=\"0\" cellpadding=\"0\">\r\n<tbody>\r\n<tr style=\"height: 25px;\">\r\n<td style=\"width: 25%; height: 25px; text-align: left; vertical-align: middle;\"><span style=\"color: #99ccff; font-family: arial,helvetica,sans-serif; font-size: 12pt;\"><strong>RESERVATION DETAILS</strong></span></td>\r\n<td style=\"width: 25%; height: 25px; text-align: left; vertical-align: middle;\"><span style=\"color: #99ccff; font-family: arial,helvetica,sans-serif; font-size: 8pt;\"><span style=\"background-color: #0191c8;\">[error error_title=\"Errors found in the form\" error_message=\"There is a problem.\"]</span></span></td>\r\n<td style=\"width: 25%; height: 25px; text-align: left; vertical-align: middle;\"><span style=\"color: #99ccff; font-family: arial,helvetica,sans-serif; font-size: 12pt;\"> <strong><span style=\"color: #99ccff; font-family: Arial;\">ESTIMATED PRICE INCL VAT</span></strong></span></td>\r\n<td style=\"width: 25%; height: 25px; vertical-align: middle;\"><span style=\"color: #99ccff; font-family: arial,helvetica,sans-serif; font-size: 12pt;\"><span style=\"font-family: arial,helvetica,sans-serif;\">[show_price]</span><strong> </strong></span></td>\r\n</tr>\r\n<tr style=\"height: 25px;\">\r\n<td style=\"width: 25%; height: 25px; text-align: left; vertical-align: middle;\"><span style=\"color: #99ccff; font-family: arial,helvetica,sans-serif; font-size: 10pt;\"> </span></td>\r\n<td style=\"width: 25%; height: 25px; text-align: left; vertical-align: middle;\"><span style=\"color: #99ccff; font-family: arial,helvetica,sans-serif; font-size: 10pt;\"> </span></td>\r\n<td style=\"width: 25%; height: 25px; text-align: left; vertical-align: middle;\"><span style=\"color: #99ccff; font-family: arial,helvetica,sans-serif; font-size: 10pt;\"> </span></td>\r\n<td style=\"width: 25%; height: 25px; text-align: left; vertical-align: middle;\"><span style=\"color: #99ccff; font-family: arial,helvetica,sans-serif; font-size: 10pt;\"> <span style=\"color: #99ccff; font-family: arial,helvetica,sans-serif; font-size: 12pt;\"><strong><span style=\"font-family: Arial;\">[hidden resource 854]</span></strong></span></span></td>\r\n</tr>\r\n<tr style=\"height: 25px;\">\r\n<td style=\"width: 25%; height: 25px; text-align: left; vertical-align: middle;\"><span style=\"color: #99ccff; font-family: arial,helvetica,sans-serif; font-size: 10pt;\">Arrival Date</span></td>\r\n<td style=\"width: 25%; height: 25px; text-align: left; vertical-align: middle;\"><span style=\"color: #99ccff; font-family: arial,helvetica,sans-serif; font-size: 10pt;\">[date-from value=\"+1\"]</span></td>\r\n<td style=\"width: 25%; height: 25px; text-align: left; vertical-align: middle;\"><span style=\"color: #99ccff; font-family: arial,helvetica,sans-serif; font-size: 10pt;\">Departure Date</span></td>\r\n<td style=\"width: 20%; height: 25px; text-align: left; vertical-align: middle;\"><span style=\"color: #99ccff; font-family: arial,helvetica,sans-serif; font-size: 10pt;\">[date-to value=\"+2\"]</span></td>\r\n</tr>\r\n<tr style=\"height: 25px;\">\r\n<td style=\"width: 25%; height: 25px; text-align: left; vertical-align: middle;\"><span style=\"color: #99ccff; font-family: arial,helvetica,sans-serif; font-size: 10pt;\">Number Of Guests (excluding children under 2yrs)</span></td>\r\n<td style=\"width: 25%; height: 25px; text-align: left; vertical-align: middle;\"><span style=\"color: #99ccff; font-family: arial,helvetica,sans-serif; font-size: 10pt;\">[adults 1 10 value=\"1\"]</span></td>\r\n<td style=\"width: 25%; height: 25px; text-align: left; vertical-align: middle;\"><span style=\"color: #99ccff; font-family: arial,helvetica,sans-serif; font-size: 10pt;\">Children Under 2yrs (Own Bedding)</span></td>\r\n<td style=\"width: 25%; height: 25px; text-align: left; vertical-align: middle;\"><span style=\"color: #99ccff; font-family: arial,helvetica,sans-serif; font-size: 10pt;\">...Stay Free</span></td>\r\n</tr>\r\n<tr style=\"height: 25px;\">\r\n<td style=\"width: 25%; height: 25px; text-align: left; vertical-align: middle;\"><span style=\"color: #99ccff;\"> </span></td>\r\n<td style=\"width: 25%; height: 25px; text-align: left; vertical-align: middle;\"><span style=\"color: #99ccff;\"> </span></td>\r\n<td style=\"width: 25%; height: 25px; text-align: left; vertical-align: middle;\"><span style=\"color: #99ccff;\"> </span></td>\r\n<td style=\"width: 25%; height: 25px; text-align: left; vertical-align: middle;\"><span style=\"color: #99ccff;\"> </span></td>\r\n</tr>\r\n<tr style=\"height: 25px;\">\r\n<td style=\"width: 25%; height: 25px; text-align: left; vertical-align: middle;\"><span style=\"color: #99ccff; font-family: arial,helvetica,sans-serif; font-size: 10pt;\"><span style=\"font-family: arial,helvetica,sans-serif; font-size: 12pt;\"><strong>MEAL OPTIONS</strong></span></span></td>\r\n<td style=\"width: 25%; height: 25px; text-align: left; vertical-align: middle;\"><span style=\"color: #99ccff;\"> </span></td>\r\n<td style=\"width: 25%; height: 25px; text-align: left; vertical-align: middle;\"><span style=\"color: #99ccff; font-family: arial,helvetica,sans-serif; font-size: 10pt;\"><span style=\"font-family: arial,helvetica,sans-serif; font-size: 12pt;\"><strong>CLEANING SERVICE OPTIONS</strong></span></span></td>\r\n<td style=\"width: 25%; height: 25px; text-align: left; vertical-align: middle;\"><span style=\"color: #99ccff;\"> </span></td>\r\n</tr>\r\n<tr style=\"height: 25px;\">\r\n<td style=\"width: 25%; height: 25px; text-align: left; vertical-align: middle;\"><span style=\"color: #99ccff; font-family: arial,helvetica,sans-serif; font-size: 10pt;\">Include Morning Breakfast</span></td>\r\n<td style=\"width: 25%; height: 25px; text-align: left; vertical-align: middle;\"><span style=\"color: #99ccff; font-family: arial,helvetica,sans-serif; font-size: 10pt;\">[custom id=\"8\"]</span></td>\r\n<td style=\"width: 25%; height: 25px; text-align: left; vertical-align: middle;\"><span style=\"color: #99ccff; font-family: arial,helvetica,sans-serif; font-size: 10pt;\">Include Services for Lodge (excluding room/s)</span></td>\r\n<td style=\"width: 25%; height: 25px; text-align: left; vertical-align: middle;\"><span style=\"color: #99ccff; font-family: arial,helvetica,sans-serif; font-size: 10pt;\">[custom id=\"6\"]</span></td>\r\n</tr>\r\n<tr style=\"height: 25px;\">\r\n<td style=\"width: 25%; height: 25px; text-align: left; vertical-align: middle;\"><span style=\"color: #99ccff; font-family: arial,helvetica,sans-serif; font-size: 12pt;\"><span style=\"font-family: arial,helvetica,sans-serif; font-size: 10pt;\">Include Evening Dinner</span></span></td>\r\n<td style=\"width: 25%; height: 25px; text-align: left; vertical-align: middle;\"><span style=\"color: #99ccff; font-family: arial,helvetica,sans-serif; font-size: 12pt;\"><span style=\"font-family: arial,helvetica,sans-serif; font-size: 10pt;\">[custom id=\"9\"]</span></span></td>\r\n<td style=\"width: 25%; height: 25px; text-align: left; vertical-align: middle;\"><span style=\"color: #99ccff;\"><span style=\"color: #99ccff; font-family: arial,helvetica,sans-serif; font-size: 10pt;\">Include Services for Rooms</span></span></td>\r\n<td style=\"width: 25%; height: 25px; text-align: left; vertical-align: middle;\"><span style=\"color: #99ccff;\"><span style=\"color: #99ccff; font-family: arial,helvetica,sans-serif; font-size: 10pt;\">[custom id=\"7\"]</span></span></td>\r\n</tr>\r\n<tr style=\"height: 25px;\">\r\n<td style=\"width: 25%; height: 25px; text-align: left; vertical-align: middle;\" colspan=\"4\"><span style=\"color: #99ccff;\"> </span></td>\r\n</tr>\r\n<tr style=\"height: 25px;\">\r\n<td style=\"width: 25%; height: 25px; text-align: left; vertical-align: middle;\" colspan=\"4\"><span style=\"color: #99ccff; font-family: arial,helvetica,sans-serif; font-size: 12pt;\"><strong>PERSONAL DETAILS</strong></span></td>\r\n</tr>\r\n<tr style=\"height: 25px;\">\r\n<td style=\"width: 25%; height: 25px; text-align: left; vertical-align: middle;\"><span style=\"color: #99ccff; font-family: arial,helvetica,sans-serif; font-size: 10pt;\">Name &amp; Surname</span></td>\r\n<td style=\"width: 25%; height: 25px; text-align: left; vertical-align: middle;\"><span style=\"color: #99ccff; font-family: arial,helvetica,sans-serif; font-size: 10pt;\">[thename]</span></td>\r\n<td style=\"width: 25%; height: 25px; text-align: left; vertical-align: middle;\"><span style=\"color: #99ccff; font-family: arial,helvetica,sans-serif; font-size: 10pt;\">Email Address</span></td>\r\n<td style=\"width: 25%; height: 25px; text-align: left; vertical-align: middle;\"><span style=\"color: #99ccff; font-family: arial,helvetica,sans-serif; font-size: 10pt;\">[email]</span></td>\r\n</tr>\r\n<tr style=\"height: 25px;\">\r\n<td style=\"width: 25%; height: 25px; text-align: left; vertical-align: middle;\"><span style=\"color: #99ccff; font-family: arial,helvetica,sans-serif; font-size: 10pt;\">Country</span></td>\r\n<td style=\"width: 25%; height: 25px; text-align: left; vertical-align: middle;\"><span style=\"color: #99ccff; font-family: arial,helvetica,sans-serif; font-size: 10pt;\">[country value=\"ZA\"]</span></td>\r\n<td style=\"width: 25%; height: 25px; text-align: left; vertical-align: middle;\"><span style=\"color: #99ccff; font-family: arial,helvetica,sans-serif; font-size: 10pt;\">Contact Phone</span></td>\r\n<td style=\"width: 25%; height: 25px; text-align: left; vertical-align: middle;\"><span style=\"color: #99ccff; font-family: arial,helvetica,sans-serif; font-size: 10pt;\">[custom text Phone *]</span></td>\r\n</tr>\r\n<tr style=\"height: 25px;\">\r\n<td style=\"width: 25%; height: 25px; text-align: left; vertical-align: middle;\"><span style=\"color: #99ccff; font-family: arial,helvetica,sans-serif; font-size: 10pt;\"> </span></td>\r\n<td style=\"width: 25%; height: 25px; text-align: left; vertical-align: middle;\"><span style=\"color: #99ccff; font-family: arial,helvetica,sans-serif; font-size: 10pt;\"> </span></td>\r\n<td style=\"width: 25%; height: 25px; text-align: left; vertical-align: middle;\"><span style=\"color: #99ccff;\"> </span></td>\r\n<td style=\"width: 25%; height: 25px; text-align: left; vertical-align: middle;\"><span style=\"color: #99ccff;\"> </span></td>\r\n</tr>\r\n<tr style=\"height: 25px;\">\r\n<td style=\"width: 25%; height: 25px; text-align: left; vertical-align: top;\" colspan=\"2\" rowspan=\"3\"><span style=\"color: #99ccff; font-family: arial,helvetica,sans-serif; font-size: 10pt;\">custom id=\"10\" title=\"Comments\"]</span><span style=\"color: #99ccff; font-family: arial,helvetica,sans-serif; font-size: 10pt;\"> </span><span style=\"color: #99ccff; font-family: arial,helvetica,sans-serif; font-size: 10pt;\"> </span><span style=\"color: #99ccff;\"> </span><span style=\"color: #99ccff;\"> </span></td>\r\n<td style=\"width: 25%; height: 25px; text-align: left; vertical-align: middle;\"><span style=\"color: #99ccff; font-family: arial,helvetica,sans-serif; font-size: 10pt;\">I accept <span style=\"text-decoration: underline;\"><strong> <a style=\"color: #99ccff; text-decoration: underline;\" href=\"http://msla.co.za/lodge/tcs/\">Terms &amp; Conditions</a></strong></span></span></td>\r\n<td style=\"width: 25%; height: 25px; text-align: left; vertical-align: middle;\"><span style=\"color: #99ccff; font-family: arial,helvetica,sans-serif; font-size: 10pt;\">[custom id=\"1\" title=\"Terms &amp; Conditions\"]</span></td>\r\n</tr>\r\n<tr style=\"height: 25px;\">\r\n<td style=\"width: 25%; height: 25px; text-align: left; vertical-align: middle;\"><span style=\"color: #99ccff; font-family: arial,helvetica,sans-serif; font-size: 10pt;\">Enter Security Code</span></td>\r\n<td style=\"width: 25%; height: 25px; text-align: left; vertical-align: middle;\"><span style=\"color: #99ccff; font-family: arial,helvetica,sans-serif; font-size: 16pt;\">[captcha]</span></td>\r\n</tr>\r\n<tr style=\"height: 25px;\">\r\n<td style=\"width: 25%; height: 25px; text-align: left; vertical-align: middle;\"><span style=\"color: #99ccff;\"> </span></td>\r\n<td style=\"width: 25%; height: 25px; text-align: left; vertical-align: middle;\"><span style=\"color: #99ccff; font-family: arial,helvetica,sans-serif; font-size: 10pt;\">[submit value=\"Submit\"]</span></td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n</div>'),
(9229, 1072, 'fusion_builder_converted', 'yes'),
(9230, 1047, 'fusion_builder_content_backup', '<h3>Full House Self-Catering (Max 10 persons): <strong>R2950</strong> per night (R295 per person)</h3>\r\n<h3>Self-Catering:</h3>\r\n<strong>Weekdays (Monday, Tuesday, Wednesday or Thursday):</strong>\r\n\r\nSingle Private Room <strong>R595</strong> per person per night\r\nSharing <strong>R395</strong> per person per night\r\n\r\n<strong>Weekends (Friday, Saturday, Sunday):</strong>\r\n\r\nSingle Private Room <strong>R645</strong> per person per night\r\nSharing <strong>R445</strong> per person per night\r\n<h3>Breakfast Optional:</h3>\r\nContinental<strong> R55</strong> per person\r\nFull English <strong>R95</strong> per person\r\n<h3>Lodge &amp; Room Servicing Optional: <strong>R195 </strong>per day</h3>\r\n\r\n<hr />\r\n\r\n&nbsp;\r\n<h3>Specials</h3>\r\nWeekdays: Book any 3 weekdays, Monday, Tuesday, Wednesday or Thursday, and only pay for 2 days.\r\n\r\n15% Discount. Arrive Friday Depart Sunday.'),
(9231, 1047, 'fusion_builder_converted', 'yes'),
(9232, 998, 'fusion_builder_content_backup', '[fullwidth background_color=\"\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding_top=\"20\" padding_bottom=\"20\" padding_left=\"0\" padding_right=\"0\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][title size=\"1\" content_align=\"right\" style_type=\"default\" sep_color=\"\" margin_top=\"\" margin_bottom=\"\" class=\"\" id=\"\"]Lodge Facilities &amp; Amenities[/title][/fullwidth][one_sixth last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][/one_sixth][two_third last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][fusion_text]\r\n<h3><span style=\"text-align: justify; line-height: 1.5em; font-family: verdana, geneva; font-size: 18px;\">Rooms</span></h3>\r\n<span style=\"font-size: 12pt;\">[checklist icon=\"fa-star-o\" iconcolor=\"\" circle=\"\" circlecolor=\"\" size=\"13px\" class=\"\" id=\"\"]</span>\r\n<span style=\"font-size: 12pt;\"> [li_item icon=\"\"]All Rooms are en-suite i.e. Hand Basin, Toilet, Shower.[/li_item]\r\n[li_item icon=\"\"]Wall to Wall Carpeting[/li_item]\r\n</span><span style=\"font-size: 12pt;\">[li_item icon=\"\"]Ceiling Fan.[/li_item]\r\n</span><span style=\"font-size: 12pt;\">[li_item icon=\"\"]Wall Heater.[/li_item]\r\n</span><span style=\"font-size: 12pt;\">[li_item icon=\"\"]Electrical Plug Sockets.[/li_item]\r\n</span><span style=\"font-size: 12pt;\">[li_item icon=\"\"]Bedside Lamps.[/li_item]\r\n</span><span style=\"font-size: 12pt;\">[li_item icon=\"\"]Waste Bin[/li_item]</span>\r\n<span style=\"font-size: 12pt;\">[/checklist]</span>[/fusion_text][fusion_text]\r\n<h3><span style=\"text-align: justify; line-height: 1.5em; font-family: verdana, geneva; font-size: 18px;\">Beds</span></h3>\r\n<span style=\"font-size: 12pt;\">[checklist icon=\"fa-star-o\" iconcolor=\"\" circle=\"\" circlecolor=\"\" size=\"13px\" class=\"\" id=\"\"]</span>\r\n<span style=\"font-size: 12pt;\">[li_item icon=\"\"]King or Queen Bed &amp; Mattress Protector.[/li_item]\r\n</span><span style=\"font-size: 12pt;\">[li_item icon=\"\"]Electric Blankets.[/li_item]\r\n[li_item icon=\"\"]100% Cotton Percale Fitted Sheet.[/li_item]\r\n</span><span style=\"font-size: 12pt;\">[li_item icon=\"\"]100% Cotton Percale Flat Sheet.[/li_item]\r\n</span><span style=\"font-size: 12pt;\">[li_item icon=\"\"]2x King Microfibre Pillows, Pillow Protectors &amp; 100% Cotton Percale Pillow Cases.[/li_item]\r\n[li_item icon=\"\"]2x Standard Microfibre Pillows, Pillow Protectors &amp; 100% Cotton Percale Pillow Cases.[/li_item]\r\n</span><span style=\"font-size: 12pt;\">[li_item icon=\"\"]Microfibre Duvet Inner.[/li_item]\r\n</span><span style=\"font-size: 12pt;\">[li_item icon=\"\"]Duvet Cover.[/li_item]\r\n</span><span style=\"font-size: 12pt;\">[li_item icon=\"\"]A Bed Blanket.[/li_item]\r\n</span><span style=\"font-size: 12pt;\">[/checklist]</span>[/fusion_text][fusion_text]\r\n<h3><span style=\"text-align: justify; line-height: 1.5em; font-family: verdana, geneva; font-size: 18px;\">Kitchen</span></h3>\r\n<span style=\"font-size: 12pt;\">[checklist icon=\"fa-star-o\" iconcolor=\"\" circle=\"\" circlecolor=\"\" size=\"13px\" class=\"\" id=\"\"]</span>\r\n<span style=\"font-size: 12pt;\"> [li_item icon=\"\"]Fridge &amp; Freezer Unit.[/li_item]\r\n</span><span style=\"font-size: 12pt;\">[li_item icon=\"\"]Microwave.[/li_item]\r\n</span><span style=\"font-size: 12pt;\">[li_item icon=\"\"]...[/li_item]\r\n</span><span style=\"font-size: 12pt;\">[li_item icon=\"\"]Toaster.[/li_item]\r\n</span><span style=\"font-size: 12pt;\">[li_item icon=\"\"]Iron &amp; Ironing Board.[/li_item]\r\n</span><span style=\"font-size: 12pt;\">[li_item icon=\"\"]Kettle &amp; Urn.[/li_item]\r\n</span><span style=\"font-size: 12pt;\">[li_item icon=\"\"]Gas Stove &amp; Oven.[/li_item]\r\n</span><span style=\"font-size: 12pt;\">[li_item icon=\"\"]Coffee Peculator.[/li_item]\r\n</span><span style=\"font-size: 12pt;\">[li_item icon=\"\"]Glasses.[/li_item]\r\n</span><span style=\"font-size: 12pt;\">[li_item icon=\"\"]Pot &amp; Pans.[/li_item]\r\n</span><span style=\"font-size: 12pt;\">[li_item icon=\"\"]Crockery &amp; Cutlery.[/li_item]</span>\r\n\r\n<span style=\"font-size: 12pt;\">[/checklist]</span>[/fusion_text][/two_third][one_sixth last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][/one_sixth]'),
(9233, 998, 'fusion_builder_converted', 'yes');
INSERT INTO `wp_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(9234, 984, 'fusion_builder_content_backup', '[fullwidth background_color=\"\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding_top=\"20\" padding_bottom=\"20\" padding_left=\"0\" padding_right=\"0\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][title size=\"1\" content_align=\"right\" style_type=\"default\" sep_color=\"\" margin_top=\"\" margin_bottom=\"\" class=\"\" id=\"\"]Terms &amp; Conditions[/title][/fullwidth][one_sixth last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][/one_sixth][two_third last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][fusion_text]\r\n<h3><span style=\"font-size: 12pt;\">Conditions you need to know before booking.</span></h3>\r\n<span style=\"font-size: 12pt;\">[checklist icon=\"fa-star-o\" iconcolor=\"\" circle=\"\" circlecolor=\"\" size=\"13px\" class=\"\" id=\"\"]\r\n[li_item icon=\"\"]By default, the lodge and bedrooms are not serviced, however <a href=\"http://msla.co.za/lodge/rates/\">Cleaning Services</a> are available as an optional extra.[/li_item]\r\n[li_item icon=\"\"]When you book into the lodge it is exclusively yours. i.e. We don\'t book out the other rooms unless we have cleared it with you.[/li_item]\r\n[li_item icon=\"\"]Please don’t bring your own Pets.[/li_item]\r\n[li_item icon=\"\"]The lodge is strictly a private guest lodge, for the purposes of accommodation and relaxation for paying guests, and not an events venue for functions, parties, etc.[/li_item]\r\n[/checklist]</span>[/fusion_text][/two_third][one_sixth last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][/one_sixth][one_sixth last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][/one_sixth][two_third last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][fusion_text]\r\n<h3><span style=\"font-size: 12pt;\">Day Visitors</span></h3>\r\n<span style=\"font-size: 12pt;\">[checklist icon=\"fa-star-o\" iconcolor=\"\" circle=\"\" circlecolor=\"\" size=\"13px\" class=\"\" id=\"\"]\r\n</span>[li_item icon=\"\"]Any day visitor/s you invite must first be pre-arranged with management (right of admission does apply) and will be required to sign in before entering upon the property. A <a href=\"http://msla.co.za/lodge/rates/\">Cover Charge</a> will be levied against your account. Should for whatever reason your visitor ending up overnighting on the property, you will be invoiced for the full B&amp;B rate, as well.[/li_item][/checklist][/fusion_text][/two_third][one_sixth last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][/one_sixth][one_sixth last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][/one_sixth][two_third last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][fusion_text]\r\n<h3 style=\"text-align: justify;\">Check-in Times</h3>\r\n<span style=\"font-size: 12pt;\">[checklist icon=\"fa-star-o\" iconcolor=\"\" circle=\"\" circlecolor=\"\" size=\"13px\" class=\"\" id=\"\"]\r\n[li_item icon=\"\"]Check-in Time is from 12h00 to 18h00 (Late arrivals must be arranged before hand).[/li_item]\r\n[li_item icon=\"\"]Check-out Time is before 10h00.[/li_item]\r\n[/checklist]</span>[/fusion_text][/two_third][one_sixth last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][/one_sixth][one_sixth last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][/one_sixth][two_third last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][fusion_text]<h3 style=\"text-align: justify;\">Payment Terms</h3>\r\n<p style=\"text-align: justify;\"><span style=\"font-size: 12pt;\">[checklist icon=\"fa-star-o\" iconcolor=\"\" circle=\"\" circlecolor=\"\" size=\"13px\" class=\"\" id=\"\"]\r\n[li_item icon=\"\"]Rates are inclusive of <strong>14%</strong> VAT.[/li_item]\r\n[li_item icon=\"\"]Payment must be made via <strong>Bank Transfer</strong>, alternatively, <strong>Cash</strong> may be accepted by prior arrangement.[/li_item]\r\n[li_item icon=\"\"]We no longer accept Cheques.[/li_item]\r\n[li_item icon=\"\"]We do not have Credit Card facilities on site.[/li_item]\r\n[li_item icon=\"\"]All accommodation must be settled either before or on arrival.[/li_item]\r\n[li_item icon=\"\"]No bookings are guaranteed until your reservation is confirmed, having paid at least a <strong>50% deposit</strong>.[/li_item]\r\n[/checklist]</span></p>[/fusion_text][/two_third][one_sixth last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][/one_sixth][one_sixth last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][/one_sixth][two_third last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][fusion_text]\r\n<h3 style=\"text-align: justify;\">Refunds &amp; Cancelation Terms</h3>\r\n<p style=\"text-align: justify;\"><span style=\"font-size: 12pt;\">[checklist icon=\"fa-star-o\" iconcolor=\"\" circle=\"\" circlecolor=\"\" size=\"13px\" class=\"\" id=\"\"]\r\n[li_item icon=\"\"]Guests are liable for the tariff of the full period booked.[/li_item]\r\n[li_item icon=\"\"]No refunds will be given for early departures / late arrivals, or due to weather conditions / power outages<span style=\"text-align: justify;\">.</span>[/li_item]\r\n[li_item icon=\"\"]<span style=\"text-align: justify;\">Cancellation of any booking must be done via email.</span>[/li_item]\r\n[li_item icon=\"\"]<span style=\"text-align: justify;\">If you cancel your reservation 15 days and more, </span><span style=\"text-align: justify;\">before your arrival date, your deposit will be </span><span style=\"text-align: justify;\">r</span><span style=\"text-align: justify;\">efund</span><span style=\"text-align: justify;\">ed</span><span style=\"text-align: justify;\"> less an administration fee of </span>15%.[/li_item]\r\n[li_item icon=\"\"]<span style=\"text-align: justify;\">If you cancel your reservation 14 days and less, before your arrival date, your deposit will become </span>non-refundable.[/li_item]\r\n[li_item icon=\"\"]<span style=\"text-align: justify;\">Payments are not refundable for reservations not cancelled and not taken up.</span>[/li_item]\r\n[/checklist]</span></p>\r\n[/fusion_text][/two_third][one_sixth last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][/one_sixth][one_sixth last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][/one_sixth][two_third last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][fusion_text]\r\n<h3><span style=\"font-size: 12pt;\">General Terms</span></h3>\r\n[checklist icon=\"fa-star-o\" iconcolor=\"\" circle=\"\" circlecolor=\"\" size=\"13px\" class=\"\" id=\"\"]\r\n[li_item icon=\"\"]A reservation may not be transferred.[/li_item]\r\n[li_item icon=\"\"]Bookings are for holiday purposes only and cannot give rise to a tenancy.[/li_item]\r\n[li_item icon=\"\"]Persons occupying the lodge may not exceed the number of persons indicated upon booking.[/li_item]\r\n[li_item icon=\"\"]During nights the all doors must be locked. Please remember to lock the door behind you and to remove the key.[/li_item]\r\n[li_item icon=\"\"]Please leave the Lodge reasonable tidy and clean after use.[/li_item]\r\n[li_item icon=\"\"]We do not have a Laundry Service.[/li_item]\r\n[li_item icon=\"\"]Out of respect for all guests, and the fact that we are in a conservancy, noise must be kept down to a comfortable level especially between the hours 22h00 to 08h00.[/li_item]\r\n[li_item icon=\"\"]Please keep furniture, fixtures and fittings in the same state of repair and condition as at the beginning of your stay. In the event of any damage to furniture, fixtures or fittings, you may be held liable for the replacement value or repair costs. This includes damage to the pool area.[/li_item]\r\n[li_item icon=\"\"]The use of open fires and the burning of any unprotected candles or fuel burning lanterns, in or around the Lodge, will not be permitted.[/li_item]\r\n[li_item icon=\"\"]We operate a non-smoking policy throughout the Lodge. You are welcome to smoke outside the house, where ashtrays are provided.[/li_item]\r\n[li_item icon=\"\"]Guests may not bring pets or other animals onto the premises.[/li_item]\r\n[li_item icon=\"\"]The use or sale of any illegal substance in the Lodge or on surrounding property is not permissible.[/li_item]\r\n[li_item icon=\"\"]Right of admission is reserved.[/li_item]\r\n[li_item icon=\"\"]We reserve the right to eject a guest/guests from the Lodge if they are not conducting themselves in an appropriate and/or acceptable manner to the building and/or other residents or staff.[/li_item]\r\n[li_item icon=\"\"]Swimming Pool - The premises contains an unsupervised, open pool which may be used at the guests\' own risk.[/li_item]\r\n[/checklist][/fusion_text][/two_third][one_sixth last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][/one_sixth]'),
(9235, 984, 'fusion_builder_converted', 'yes'),
(9236, 855, 'fusion_builder_content_backup', '[fullwidth background_color=\"\" background_image=\"http://msla.co.za/lodge/wp-content/uploads/2015/01/about-parallax11.jpg\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"center center\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"20\" padding_bottom=\"20\" padding_left=\"0\" padding_right=\"0\" hundred_percent=\"yes\" equal_height_columns=\"yes\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][one_sixth last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][/one_sixth][two_third last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][fusion_text][easy_form booknow style=\"none\" submit=\"Reservation successfully sent\" subsubmit=\"Please continue.\" credit=\"Reservation complete\" subcredit=\"You\'ll receive an email with the reservations details\" resourcename=\"Room\" pers=\"1\" resource=\"854\"[/fusion_text][/two_third][one_sixth last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][/one_sixth][/fullwidth]'),
(9237, 855, 'fusion_builder_converted', 'yes'),
(9238, 16, 'fusion_builder_content_backup', '[fullwidth background_color=\"#f0f0ed\" background_image=\"\" background_parallax=\"none\" parallax_speed=\"0.3\" enable_mobile=\"no\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"110px\" padding_bottom=\"10px\" padding_left=\"0px\" padding_right=\"0px\" hundred_percent=\"no\" equal_height_columns=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][two_third last=\"no\" spacing=\"yes\" center_content=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" class=\"\" id=\"\"][postslider layout=\"posts-with-excerpt\" excerpt=\"45\" category=\"general\" limit=\"3\" lightbox=\"yes\" class=\"\" id=\"\"][/postslider][separator style_type=\"none\" top_margin=\"\" bottom_margin=\"\" sep_color=\"\" border_size=\"\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"\" alignment=\"center\" class=\"\" id=\"\"][/two_third][one_third last=\"yes\" spacing=\"yes\" center_content=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][postslider layout=\"posts\" excerpt=\"15\" category=\"cold-countries\" limit=\"3\" lightbox=\"yes\" class=\"\" id=\"\"][/postslider][separator style_type=\"none\" top_margin=\"17\" bottom_margin=\"17\" sep_color=\"\" border_size=\"\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"\" alignment=\"center\" class=\"\" id=\"\"][postslider layout=\"posts\" excerpt=\"15\" category=\"warm-countries\" limit=\"3\" lightbox=\"yes\" class=\"\" id=\"\"][/postslider][/one_third][/fullwidth][fullwidth background_color=\"#f0f0ed\" background_image=\"\" background_parallax=\"none\" parallax_speed=\"0.3\" enable_mobile=\"no\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"0px\" padding_bottom=\"60px\" padding_left=\"0px\" padding_right=\"0px\" hundred_percent=\"no\" equal_height_columns=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][blog number_posts=\"3\" offset=\"\" cat_slug=\"\" exclude_cats=\"\" title=\"yes\" title_link=\"yes\" thumbnail=\"yes\" excerpt=\"yes\" excerpt_length=\"15\" meta_all=\"yes\" meta_author=\"no\" meta_categories=\"no\" meta_comments=\"no\" meta_date=\"no\" meta_link=\"yes\" meta_tags=\"no\" paging=\"no\" scrolling=\"load_more_button\" strip_html=\"yes\" blog_grid_columns=\"3\" blog_grid_column_spacing=\"40\" layout=\"grid\" class=\"\" id=\"\"][/blog][/fullwidth][fullwidth background_color=\"#6666a4\" background_image=\"http://theme-fusion.com/avada_demos_xml/travel/wp-content/uploads/2015/01/parallax-section1.jpg\" background_parallax=\"fixed\" parallax_speed=\"0.3\" enable_mobile=\"no\" background_repeat=\"no-repeat\" background_position=\"center center\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"200px\" padding_bottom=\"200px\" padding_left=\"0px\" padding_right=\"0px\" hundred_percent=\"no\" equal_height_columns=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][fusion_text]\n<h1 style=\"text-align: center; color: #fff;\">THE AVADA DIFFERENCE</h1>\n[/fusion_text][fusion_text]\n<h3 style=\"text-align: center; color: #fff;\">We believe no two getaways should be the same and a busy life deserves the very best. We take the time to get to know you so we can help you find your perfect escape.</h3>\n[/fusion_text][separator style_type=\"none\" top_margin=\"10\" bottom_margin=\"10\" sep_color=\"\" border_size=\"\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"\" alignment=\"center\" class=\"\" id=\"\"][button link=\"/avada_demos/travel/make-a-reservation\" color=\"default\" size=\"\"  type=\"\" shape=\"\" target=\"_self\" title=\"\" gradient_colors=\"|\" gradient_hover_colors=\"|\" accent_color=\"\" accent_hover_color=\"\" bevel_color=\"\" border_width=\"0px\" icon=\"\" icon_position=\"left\" icon_divider=\"no\" modal=\"\" animation_type=\"0\" animation_direction=\"left\" animation_speed=\"1\" alignment=\"center\" class=\"\" id=\"\"]MAKE A RESERVATION[/button][/fullwidth]'),
(9239, 16, 'fusion_builder_converted', 'yes');
INSERT INTO `wp_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(9240, 13, 'fusion_builder_content_backup', '[fullwidth background_color=\"#6666a4\" background_image=\"http://theme-fusion.com/avada_demos_xml/travel/wp-content/uploads/2015/01/destination-parallax21.jpg\" background_parallax=\"fixed\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"center center\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"220px\" padding_bottom=\"220px\" padding_left=\"0px\" padding_right=\"0px\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][fusion_text]\r\n<h1 style=\"text-align: center;\"><span style=\"color: #ccffcc; font-family: Calibri;\">NEARBY ATTRACTIONS</span></h1>\r\n[/fusion_text][fusion_text]\r\n<h3 style=\"text-align: justify;\"><span style=\"color: #ccffcc;\">We are situated on the 1000 Hills tourism route, on the edge of Hillcrest -a perfect place to adventure out  to any one of the many fantastic destinations and game reserves in KwaZulu Natal, i.e. the Majestic Drakensberg Mountain Range, Shongweni Nature Reserve, Nagle Dam, Durban &amp; Beach Front.</span></h3>\r\n<h3 style=\"text-align: justify;\"><span style=\"color: #ccffcc;\">We are also the doorstep of one of KZN’s major horse riding venues namely, the Shongweni Horse Riding Club &amp; the Summerveld Horse Riding Academy, making Assagay Forest Lodge a perfect home away from home for the equestrian lovers.</span></h3>\r\n<h3 style=\"text-align: justify;\"><span style=\"color: #ccffcc;\">Hiking , fishing and boating all add to the excitement found in this attractive area. Situated on the “Friendly N3″ running from Johannesburg  to Durban , Assagay Forest Lodge  is the ideal stop over, linking up with both the Wild Coast/transkei  route via Margate and the Dolphin Coast linking up with Mozambique and Swaziland</span>\r\n<span style=\"color: #ccffcc;\"> Surrounding areas have attractions ranging from the sun kissed Durban beaches to trout-filled streams in the Drakensberg , caves adorned with ancient rock art and canoeing on the Dusi River.</span></h3>\r\n<h3 style=\"text-align: justify;\"><span style=\"color: #ccffcc;\">Activities in the Area:</span>\r\n<span style=\"color: #ccffcc;\"> Private nature reserves</span>\r\n<span style=\"color: #ccffcc;\"> 4×4 off-road adventures</span>\r\n<span style=\"color: #ccffcc;\"> Fossil sites</span>\r\n<span style=\"color: #ccffcc;\"> Fishing / canoeing on the Dusi River</span>\r\n<span style=\"color: #ccffcc;\"> Historic Museums</span>\r\n<span style=\"color: #ccffcc;\"> Anglo Boer War Sites and Monuments</span>\r\n<span style=\"color: #ccffcc;\"> Hiking and horse trails in nearby mountain ranges</span>\r\n<span style=\"color: #ccffcc;\"> Birdwatching</span>\r\n<span style=\"color: #ccffcc;\"> Rock art</span></h3>\r\n[/fusion_text][one_third last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"0\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"no-margin\" id=\"\"][separator style_type=\"none\" top_margin=\"\" bottom_margin=\"\" sep_color=\"\" border_size=\"\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"\" alignment=\"\" class=\"\" id=\"\"][/one_third][one_third last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"0\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][button link=\"/avada_demos/travel/make-a-reservation/\" color=\"default\" size=\"\"  type=\"\" shape=\"\" target=\"_self\" title=\"\" gradient_colors=\"|\" gradient_hover_colors=\"|\" accent_color=\"\" accent_hover_color=\"\" bevel_color=\"\" border_width=\"0px\" icon=\"\" icon_position=\"left\" icon_divider=\"no\" modal=\"\" animation_type=\"0\" animation_direction=\"left\" animation_speed=\"1\" alignment=\"center\" class=\"\" id=\"\"]MAKE A RESERVATION[/button][/one_third][one_third last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"0\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][separator style_type=\"none\" top_margin=\"\" bottom_margin=\"\" sep_color=\"\" border_size=\"\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"\" alignment=\"\" class=\"\" id=\"\"][/one_third][/fullwidth][fullwidth background_color=\"\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"0px\" padding_bottom=\"-30px\" padding_left=\"0px\" padding_right=\"0px\" hundred_percent=\"yes\" equal_height_columns=\"yes\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][one_third last=\"no\" spacing=\"no\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"#6666a4\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"10%\" margin_top=\"\" margin_bottom=\"0px\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" class=\"\" id=\"\"][imageframe lightbox=\"no\" lightbox_image=\"http://localhost/assagaylodge/wp-content/uploads/2015/01/zulu.jpg\" style_type=\"none\" bordercolor=\"\" bordersize=\"0px\" borderradius=\"0\" stylecolor=\"\" align=\"none\" link=\"\" linktarget=\"_self\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" hide_on_mobile=\"no\" class=\"\" id=\"\"] <img alt=\"\" src=\"http://localhost/assagaylodge/wp-content/uploads/2015/01/zulu.jpg\" />[/imageframe][content_boxes layout=\"icon-with-title\" title_size=\"\" icon_circle=\"\" icon_size=\"\" icon_align=\"left\" columns=\"1\" margin_top=\"\" margin_bottom=\"0px\" class=\"\" id=\"\"][content_box title=\"Phezulu African Dancing\" icon=\"fa-phone\" backgroundcolor=\"\" iconcolor=\"#ffffff\" circlecolor=\"#6666a4\" circlebordercolor=\"#6666a4\" iconflip=\"\" iconrotate=\"\" iconspin=\"no\" image=\"\" image_width=\"35\" image_height=\"35\" link=\"\" linktext=\"\" linktarget=\"_self\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\"]        <span style=\"color: #ffffff;\">Please call one of our specialist or pop into one of our travel shops and meet with an advisor in person. Alternatively, email us any questions and we will reply as quickly as possible. We look forward to being a small part of your next big adventure.</span>[/content_box][/content_boxes][/one_third][one_third last=\"no\" spacing=\"no\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"#7272b2\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"10%\" margin_top=\"\" margin_bottom=\"0px\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" class=\"\" id=\"\"][imageframe lightbox=\"no\" lightbox_image=\"http://localhost/assagaylodge/wp-content/uploads/2015/01/Shongweni-1.jpg\" style_type=\"none\" bordercolor=\"\" bordersize=\"0px\" borderradius=\"0\" stylecolor=\"\" align=\"none\" link=\"\" linktarget=\"_self\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" hide_on_mobile=\"no\" class=\"\" id=\"\"] <img alt=\"\" src=\"http://localhost/assagaylodge/wp-content/uploads/2015/01/Shongweni-1.jpg\" />[/imageframe][content_boxes layout=\"icon-with-title\" title_size=\"\" icon_circle=\"\" icon_size=\"\" icon_align=\"left\" columns=\"1\" margin_top=\"\" margin_bottom=\"0px\" class=\"\" id=\"\"][content_box title=\"Shongweni Equestrian Centre\" icon=\"fa-comments\" backgroundcolor=\"\" iconcolor=\"#ffffff\" circlecolor=\"#7272b2\" circlebordercolor=\"#7272b2\" iconflip=\"\" iconrotate=\"\" iconspin=\"no\" image=\"\" image_width=\"35\" image_height=\"35\" link=\"\" linktext=\"\" linktarget=\"_self\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\"]        <span style=\"color: #ffffff;\">Please call one of our specialist or pop into one of our travel shops and meet with an advisor in person. Alternatively, email us any questions and we will reply as quickly as possible. We look forward to being a small part of your next big adventure.</span>[/content_box][/content_boxes][/one_third][one_third last=\"yes\" spacing=\"no\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"#6666a4\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"10%\" margin_top=\"\" margin_bottom=\"0px\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" class=\"\" id=\"\"][imageframe lightbox=\"no\" lightbox_image=\"http://localhost/assagaylodge/wp-content/uploads/2015/01/steam-train.png\" style_type=\"none\" bordercolor=\"\" bordersize=\"0px\" borderradius=\"0\" stylecolor=\"\" align=\"none\" link=\"\" linktarget=\"_self\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" hide_on_mobile=\"no\" class=\"\" id=\"\"] <img alt=\"\" src=\"http://localhost/assagaylodge/wp-content/uploads/2015/01/steam-train.png\" />[/imageframe][content_boxes layout=\"icon-with-title\" title_size=\"\" icon_circle=\"\" icon_size=\"\" icon_align=\"left\" columns=\"1\" margin_top=\"\" margin_bottom=\"0px\" class=\"\" id=\"\"][content_box title=\"Train Adventures\" icon=\"fa-phone\" backgroundcolor=\"\" iconcolor=\"#ffffff\" circlecolor=\"#6666a4\" circlebordercolor=\"#6666a4\" iconflip=\"\" iconrotate=\"\" iconspin=\"no\" image=\"\" image_width=\"35\" image_height=\"35\" link=\"\" linktext=\"\" linktarget=\"_self\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\"]        <span style=\"color: #ffffff;\">Please call one of our specialist or pop into one of our travel shops and meet with an advisor in person. Alternatively, email us any questions and we will reply as quickly as possible. We look forward to being a small part of your next big adventure.</span>[/content_box][/content_boxes][/one_third][one_third last=\"no\" spacing=\"no\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"#6666a4\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"10%\" margin_top=\"\" margin_bottom=\"0px\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" class=\"\" id=\"\"][imageframe lightbox=\"no\" lightbox_image=\"http://localhost/assagaylodge/wp-content/uploads/2015/01/Karkloof-Canopy.jpg\" style_type=\"none\" bordercolor=\"\" bordersize=\"0px\" borderradius=\"0\" stylecolor=\"\" align=\"none\" link=\"\" linktarget=\"_self\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" hide_on_mobile=\"no\" class=\"\" id=\"\"] <img alt=\"\" src=\"http://localhost/assagaylodge/wp-content/uploads/2015/01/Karkloof-Canopy.jpg\" />[/imageframe][content_boxes layout=\"icon-with-title\" title_size=\"\" icon_circle=\"\" icon_size=\"\" icon_align=\"left\" columns=\"1\" margin_top=\"\" margin_bottom=\"0px\" class=\"\" id=\"\"][content_box title=\"Karkloof Canopy Tours\" icon=\"fa-phone\" backgroundcolor=\"\" iconcolor=\"#ffffff\" circlecolor=\"#6666a4\" circlebordercolor=\"#6666a4\" iconflip=\"\" iconrotate=\"\" iconspin=\"no\" image=\"\" image_width=\"35\" image_height=\"35\" link=\"\" linktext=\"\" linktarget=\"_self\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\"]        <span style=\"color: #ffffff;\">Please call one of our specialist or pop into one of our travel shops and meet with an advisor in person. Alternatively, email us any questions and we will reply as quickly as possible. We look forward to being a small part of your next big adventure.</span>[/content_box][/content_boxes][/one_third][one_third last=\"no\" spacing=\"no\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"#6666a4\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"10%\" margin_top=\"\" margin_bottom=\"0px\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" class=\"\" id=\"\"][imageframe lightbox=\"no\" lightbox_image=\"http://localhost/assagaylodge/wp-content/uploads/2015/01/Tala.jpg\" style_type=\"none\" bordercolor=\"\" bordersize=\"0px\" borderradius=\"0\" stylecolor=\"\" align=\"none\" link=\"\" linktarget=\"_self\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" hide_on_mobile=\"no\" class=\"\" id=\"\"] <img alt=\"\" src=\"http://localhost/assagaylodge/wp-content/uploads/2015/01/Tala.jpg\" />[/imageframe][content_boxes layout=\"icon-with-title\" title_size=\"\" icon_circle=\"\" icon_size=\"\" icon_align=\"left\" columns=\"1\" margin_top=\"\" margin_bottom=\"0px\" class=\"\" id=\"\"][content_box title=\"Tala Game Reserve\" icon=\"fa-phone\" backgroundcolor=\"\" iconcolor=\"#ffffff\" circlecolor=\"#6666a4\" circlebordercolor=\"#6666a4\" iconflip=\"\" iconrotate=\"\" iconspin=\"no\" image=\"\" image_width=\"35\" image_height=\"35\" link=\"\" linktext=\"\" linktarget=\"_self\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\"]        <span style=\"color: #ffffff;\">Please call one of our specialist or pop into one of our travel shops and meet with an advisor in person. Alternatively, email us any questions and we will reply as quickly as possible. We look forward to being a small part of your next big adventure.</span>[/content_box][/content_boxes][/one_third][one_third last=\"yes\" spacing=\"no\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"#6666a4\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"10%\" margin_top=\"\" margin_bottom=\"0px\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" class=\"\" id=\"\"][imageframe lightbox=\"no\" lightbox_image=\"http://localhost/assagaylodge/wp-content/uploads/2015/01/Shongweni-Dam.jpg\" style_type=\"none\" bordercolor=\"\" bordersize=\"0px\" borderradius=\"0\" stylecolor=\"\" align=\"none\" link=\"\" linktarget=\"_self\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" hide_on_mobile=\"no\" class=\"\" id=\"\"] <img alt=\"\" src=\"http://localhost/assagaylodge/wp-content/uploads/2015/01/Shongweni-Dam.jpg\" />[/imageframe][content_boxes layout=\"icon-with-title\" title_size=\"\" icon_circle=\"\" icon_size=\"\" icon_align=\"left\" columns=\"1\" margin_top=\"\" margin_bottom=\"0px\" class=\"\" id=\"\"][content_box title=\"Shongeweni Dam\" icon=\"fa-phone\" backgroundcolor=\"\" iconcolor=\"#ffffff\" circlecolor=\"#6666a4\" circlebordercolor=\"#6666a4\" iconflip=\"\" iconrotate=\"\" iconspin=\"no\" image=\"\" image_width=\"35\" image_height=\"35\" link=\"\" linktext=\"\" linktarget=\"_self\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\"]        <span style=\"color: #ffffff;\">Please call one of our specialist or pop into one of our travel shops and meet with an advisor in person. Alternatively, email us any questions and we will reply as quickly as possible. We look forward to being a small part of your next big adventure.</span>[/content_box][/content_boxes][/one_third][one_third last=\"no\" spacing=\"no\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"#6666a4\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"10%\" margin_top=\"\" margin_bottom=\"0px\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" class=\"\" id=\"\"][imageframe lightbox=\"no\" lightbox_image=\"http://localhost/assagaylodge/wp-content/uploads/2015/01/Golf.jpg\" style_type=\"none\" bordercolor=\"\" bordersize=\"0px\" borderradius=\"0\" stylecolor=\"\" align=\"none\" link=\"\" linktarget=\"_self\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" hide_on_mobile=\"no\" class=\"\" id=\"\"] <img alt=\"\" src=\"http://localhost/assagaylodge/wp-content/uploads/2015/01/Golf.jpg\" />[/imageframe][content_boxes layout=\"icon-with-title\" title_size=\"\" icon_circle=\"\" icon_size=\"\" icon_align=\"left\" columns=\"1\" margin_top=\"\" margin_bottom=\"0px\" class=\"\" id=\"\"][content_box title=\"Golf Courses - Camelot / Kloof / Selborne\" icon=\"fa-phone\" backgroundcolor=\"\" iconcolor=\"#ffffff\" circlecolor=\"#6666a4\" circlebordercolor=\"#6666a4\" iconflip=\"\" iconrotate=\"\" iconspin=\"no\" image=\"\" image_width=\"35\" image_height=\"35\" link=\"\" linktext=\"\" linktarget=\"_self\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\"]        <span style=\"color: #ffffff;\">Please call one of our specialist or pop into one of our travel shops and meet with an advisor in person. Alternatively, email us any questions and we will reply as quickly as possible. We look forward to being a small part of your next big adventure.</span>[/content_box][/content_boxes][/one_third][one_third last=\"no\" spacing=\"no\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"#6666a4\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"10%\" margin_top=\"\" margin_bottom=\"0px\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" class=\"\" id=\"\"][imageframe lightbox=\"no\" lightbox_image=\"http://localhost/assagaylodge/wp-content/uploads/2015/01/shongweni-dressarge.jpg\" style_type=\"none\" bordercolor=\"\" bordersize=\"0px\" borderradius=\"0\" stylecolor=\"\" align=\"none\" link=\"\" linktarget=\"_self\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" hide_on_mobile=\"no\" class=\"\" id=\"\"] <img alt=\"\" src=\"http://localhost/assagaylodge/wp-content/uploads/2015/01/shongweni-dressarge.jpg\" />[/imageframe][content_boxes layout=\"icon-with-title\" title_size=\"\" icon_circle=\"\" icon_size=\"\" icon_align=\"left\" columns=\"1\" margin_top=\"\" margin_bottom=\"0px\" class=\"\" id=\"\"][content_box title=\"Shongweni Equestrian Centre\" icon=\"fa-phone\" backgroundcolor=\"\" iconcolor=\"#ffffff\" circlecolor=\"#6666a4\" circlebordercolor=\"#6666a4\" iconflip=\"\" iconrotate=\"\" iconspin=\"no\" image=\"\" image_width=\"35\" image_height=\"35\" link=\"\" linktext=\"\" linktarget=\"_self\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\"]        <span style=\"color: #ffffff;\">Please call one of our specialist or pop into one of our travel shops and meet with an advisor in person. Alternatively, email us any questions and we will reply as quickly as possible. We look forward to being a small part of your next big adventure.</span>[/content_box][/content_boxes][/one_third][one_third last=\"yes\" spacing=\"no\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"#6666a4\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"10%\" margin_top=\"\" margin_bottom=\"0px\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" class=\"\" id=\"\"][imageframe lightbox=\"no\" lightbox_image=\"http://localhost/assagaylodge/wp-content/uploads/2015/01/camelot.jpg\" style_type=\"none\" bordercolor=\"\" bordersize=\"0px\" borderradius=\"0\" stylecolor=\"\" align=\"none\" link=\"\" linktarget=\"_self\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" hide_on_mobile=\"no\" class=\"\" id=\"\"] <img alt=\"\" src=\"http://localhost/assagaylodge/wp-content/uploads/2015/01/camelot.jpg\" />[/imageframe][content_boxes layout=\"icon-with-title\" title_size=\"\" icon_circle=\"\" icon_size=\"\" icon_align=\"left\" columns=\"1\" margin_top=\"\" margin_bottom=\"0px\" class=\"\" id=\"\"][content_box title=\"Camelot Medieval Functions\" icon=\"fa-phone\" backgroundcolor=\"\" iconcolor=\"#ffffff\" circlecolor=\"#6666a4\" circlebordercolor=\"#6666a4\" iconflip=\"\" iconrotate=\"\" iconspin=\"no\" image=\"\" image_width=\"35\" image_height=\"35\" link=\"\" linktext=\"\" linktarget=\"_self\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\"]        <span style=\"color: #ffffff;\">Please call one of our specialist or pop into one of our travel shops and meet with an advisor in person. Alternatively, email us any questions and we will reply as quickly as possible. We look forward to being a small part of your next big adventure.</span>[/content_box][/content_boxes][/one_third][one_third last=\"no\" spacing=\"no\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"#6666a4\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"10%\" margin_top=\"\" margin_bottom=\"0px\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" class=\"\" id=\"\"][imageframe lightbox=\"no\" lightbox_image=\"http://localhost/assagaylodge/wp-content/uploads/2015/01/meander-gallery.jpg\" style_type=\"none\" bordercolor=\"\" bordersize=\"0px\" borderradius=\"0\" stylecolor=\"\" align=\"none\" link=\"\" linktarget=\"_self\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" hide_on_mobile=\"no\" class=\"\" id=\"\"] <img alt=\"\" src=\"http://localhost/assagaylodge/wp-content/uploads/2015/01/meander-gallery.jpg\" />[/imageframe][content_boxes layout=\"icon-with-title\" title_size=\"\" icon_circle=\"\" icon_size=\"\" icon_align=\"left\" columns=\"1\" margin_top=\"\" margin_bottom=\"0px\" class=\"\" id=\"\"][content_box title=\"Midlands Meander\" icon=\"fa-phone\" backgroundcolor=\"\" iconcolor=\"#ffffff\" circlecolor=\"#6666a4\" circlebordercolor=\"#6666a4\" iconflip=\"\" iconrotate=\"\" iconspin=\"no\" image=\"\" image_width=\"35\" image_height=\"35\" link=\"\" linktext=\"\" linktarget=\"_self\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\"]        <span style=\"color: #ffffff;\">Please call one of our specialist or pop into one of our travel shops and meet with an advisor in person. Alternatively, email us any questions and we will reply as quickly as possible. We look forward to being a small part of your next big adventure.</span>[/content_box][/content_boxes][/one_third][one_third last=\"no\" spacing=\"no\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"#7272b2\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"10%\" margin_top=\"\" margin_bottom=\"0px\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" class=\"\" id=\"\"][imageframe lightbox=\"yes\" lightbox_image=\"http://localhost/assagaylodge/wp-content/uploads/2015/01/Durban.jpg\" style_type=\"none\" bordercolor=\"\" bordersize=\"0px\" borderradius=\"0\" stylecolor=\"\" align=\"none\" link=\"\" linktarget=\"_self\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" hide_on_mobile=\"no\" class=\"\" id=\"\"] <img alt=\"\" src=\"http://localhost/assagaylodge/wp-content/uploads/2015/01/Durban.jpg\" />[/imageframe][content_boxes layout=\"icon-with-title\" title_size=\"\" icon_circle=\"\" icon_size=\"\" icon_align=\"left\" columns=\"1\" margin_top=\"\" margin_bottom=\"0px\" class=\"\" id=\"\"][content_box title=\"Durban & The Dolphin Coast\" icon=\"fa-comments\" backgroundcolor=\"\" iconcolor=\"#ffffff\" circlecolor=\"#7272b2\" circlebordercolor=\"#7272b2\" iconflip=\"\" iconrotate=\"\" iconspin=\"no\" image=\"\" image_width=\"35\" image_height=\"35\" link=\"\" linktext=\"\" linktarget=\"_self\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\"]        <span style=\"color: #ffffff;\">Please call one of our specialist or pop into one of our travel shops and meet with an advisor in person. Alternatively, email us any questions and we will reply as quickly as possible. We look forward to being a small part of your next big adventure.</span>[/content_box][/content_boxes][/one_third][one_third last=\"yes\" spacing=\"no\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"#6666a4\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"10%\" margin_top=\"\" margin_bottom=\"0px\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" class=\"\" id=\"\"][imageframe lightbox=\"no\" lightbox_image=\"http://localhost/assagaylodge/wp-content/uploads/2015/01/Mountains.jpg\" style_type=\"none\" bordercolor=\"\" bordersize=\"0px\" borderradius=\"0\" stylecolor=\"\" align=\"none\" link=\"\" linktarget=\"_self\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" hide_on_mobile=\"no\" class=\"\" id=\"\"] <img alt=\"\" src=\"http://localhost/assagaylodge/wp-content/uploads/2015/01/Mountains.jpg\" />[/imageframe][content_boxes layout=\"icon-with-title\" title_size=\"\" icon_circle=\"\" icon_size=\"\" icon_align=\"left\" columns=\"1\" margin_top=\"\" margin_bottom=\"0px\" class=\"\" id=\"\"][content_box title=\"The Drakensberg\" icon=\"fa-phone\" backgroundcolor=\"\" iconcolor=\"#ffffff\" circlecolor=\"#6666a4\" circlebordercolor=\"#6666a4\" iconflip=\"\" iconrotate=\"\" iconspin=\"no\" image=\"\" image_width=\"35\" image_height=\"35\" link=\"\" linktext=\"\" linktarget=\"_self\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\"]        <span style=\"color: #ffffff;\">Please call one of our specialist or pop into one of our travel shops and meet with an advisor in person. Alternatively, email us any questions and we will reply as quickly as possible. We look forward to being a small part of your next big adventure.</span>[/content_box][/content_boxes][/one_third][/fullwidth]'),
(9241, 13, 'fusion_builder_converted', 'yes'),
(9242, 11, 'fusion_builder_content_backup', '[fullwidth background_color=\"\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"70px\" padding_bottom=\"75px\" padding_left=\"0px\" padding_right=\"0px\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][one_half last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][fusion_text]\r\n<h1>Contact Us</h1>\r\n<h2>Send us a message.</h2>\r\n[/fusion_text][fusion_text][contact-form-7 id=\"246\" title=\"Contact form 1\"][/fusion_text][/one_half][one_half last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][fusion_text]\r\n<h1>Where are we?</h1>\r\n<h2>4 Williams Road\r\nAssagay, Hillcrest\r\nKwaZulu Natal</h2>\r\n<h1>Contact</h1>\r\n<h2>0317656046 or 0317655961</h2>\r\n[/fusion_text][separator style_type=\"none\" top_margin=\"\" bottom_margin=\"20\" sep_color=\"\" border_size=\"\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"\" alignment=\"\" class=\"\" id=\"\"][accordian class=\"\" id=\"\"][toggle title=\"GPS Location\" open=\"no\"]<p>\r\n<strong>GPS: Latitude (South) -29.771865, Longitude (East) 30.736892</strong></p>\r\n[/toggle][toggle title=\"Directions from King Shaka Airport / Durban\" open=\"no\"]<p>\r\nFrom King Shaka Airport take the N2 South bound towards Durban, at the 3 level interchange be sure to take the N3 turn off towards Pietermaritzburg. Proceed through the Marionhill toll plaza and take the first off ramp marked Shongweni / Assagay / Hillcrest. Turn right towards Hillcrest into Kassier Road which will take you over the N3 and M13, keep on this road, pass the Hillcrest Private Hospital and Alverstone turn off. Remain on Kassier Road, for about 2-3km and turn into Assagay Road, which is just after Assagay Crescent.</p>\r\n<p>Take the left turn into Assagay Road. Head up the rise. Turn left into Castle Road, carry down the dip for about 500m and cross a small water-bridge. Turn first right into Lello Road, just after the bridge. Continue on Lello Road, the road dips and briefly climbs, the valley falling away to your right. Finally, turn left into Williams Road (it’s essentially the first left turn on Lello Road), Continue down Williams Road for about 800m. On your right you will come to the entrance of the farm called `Fourever` No 4 Williams Road. There’s a 1000 Hills Tourism Sign outside. A wooden fence and silver gate. Welcome to Assagay Forest Lodge.</p>\r\n[/toggle][toggle title=\"Directions from Pietermaritzburg\" open=\"no\"]<p>From Pietermaritzburg take the N3 towards Durban. After the Drummond turnoff the N3 makes a steep climb. Don\'t take the Alternative route but stay on the N3. Take the next off ramp marked Shongweni / Assagay / Hillcrest. Turn left towards Hillcrest into Kassier Road which will take you passed the Polo fields on your left and a Petrol Station on your right and over then over the M13, keep on this road, pass the Hillcrest Private Hospital and Alverstone turn off. Remain on Kassier Road, for about 2-3km and turn into Assagay Road, which is just after Assagay Crescent.</p>\r\n<p>Take the left turn into Assagay Road. Head up the rise. Turn left into Castle Road, carry down the dip for about 500m and cross a small water-bridge. Turn first right into Lello Road, just after the bridge. Continue on Lello Road, the road dips and briefly climbs, the valley falling away to your right. Finally, turn left into Williams Road (it’s essentially the first left turn on Lello Road), Continue down Williams Road for about 800m. On your right you will come to the entrance of the farm called `Fourever` No 4 Williams Road. There’s a 1000 Hills Tourism Sign outside. A wooden fence and silver gate. Welcome to Assagay Lodge.</p>\r\n[/toggle][toggle title=\"Things to do\" open=\"no\"]<p>There is plenty to do.</p>\r\n<p>Durban Sea Side - 25kms<br />Game reserve - 15 kms<br />Animal Farm - 2kms<br />Brewery - 4kms<br />Shongweni Market - 6kms<br />Shongweni Dam - 8kms<br />Valley 1000 Hills , Zulu dancing and Croc farm - 4kms<br />Drakensberg Mountains - 3 hours<br />Hillcrest Shopping Centre - 3 kms<br />Waterfall Shopping Centre - 8kms<br />Pavilion Shopping Centre - 20 kms<br />Gateway Shopping Centre - 40kms</p>\r\n[/toggle][/accordian][/one_half][/fullwidth][fullwidth background_color=\"\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"0px\" padding_bottom=\"0px\" padding_left=\"0px\" padding_right=\"0px\" hundred_percent=\"yes\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][map address=\"Assagay Forest Lodge\" type=\"roadmap\" map_style=\"default\" overlay_color=\"#6666a4\" infobox=\"default\" infobox_background_color=\"rgba(102,102,164,.8)\" infobox_text_color=\"#ffffff\" infobox_content=\"\" icon=\"http://theme-fusion.com/avada_demos_xml/travel/wp-content/uploads/2015/01/map.png\" width=\"100%\" height=\"700px\" zoom=\"15\" scrollwheel=\"yes\" scale=\"no\" zoom_pancontrol=\"yes\" animation=\"no\" popup=\"no\" class=\"\" id=\"\"][/map][/fullwidth]'),
(9243, 11, 'fusion_builder_converted', 'yes');
INSERT INTO `wp_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(9244, 9, 'fusion_builder_content_backup', '[fullwidth background_color=\"\" background_image=\"\" background_parallax=\"none\" parallax_speed=\"0.3\" enable_mobile=\"no\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"90px\" padding_bottom=\"0px\" padding_left=\"0px\" padding_right=\"0px\" hundred_percent=\"yes\" equal_height_columns=\"yes\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][one_half last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"30px\" margin_top=\"0px\" margin_bottom=\"\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" class=\"\" id=\"\"][fusion_text]\n<h1 style=\"text-align: right; margin-top: 0px;\">PURE LUXURY</h1>\n[/fusion_text][separator style_type=\"single\" top_margin=\"0\" bottom_margin=\"30\" sep_color=\"#000000\" border_size=\"\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"170px\" alignment=\"right\" class=\"separator-right\" id=\"\"][fusion_text]\n<h3 style=\"text-align: right;\">Our mission is to offer travelers unrivaled\nsavings at a selection of hand-picked\nluxurious destinations.</h3>\n[/fusion_text][/one_half][one_half last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"http://theme-fusion.com/avada_demos_xml/travel/wp-content/uploads/2015/01/about-us-top-image.jpg\" background_repeat=\"no-repeat\" background_position=\"center center\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" class=\"\" id=\"\"][/one_half][/fullwidth][fullwidth background_color=\"\" background_image=\"\" background_parallax=\"none\" parallax_speed=\"0.3\" enable_mobile=\"no\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"20px\" padding_bottom=\"65px\" padding_left=\"0px\" padding_right=\"0px\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][one_half last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][fusion_text]Lorem ipsum dolor sit amet, consectetur adipiscing elit. Aliquam rutrum elementum consectetur. Nulla pharetra tristique urna ut suscipit. Curabitur sit amet dolor quis arcu scelerisque viverra eu ut lorem. Sed luctus, tellus volutpat tempor elementum, nisl elit sodales mi, et hendrerit dui diam eu est. Proin commodo ante magna, at ultrices leo dignissim quis.\n\nVivamus et enim aliquam, mollis orci sit amet, pretium magna Vestibulum ut efficitur nibh. Integer rhoncus nunc eu massa dignissim molestie. Pellentesque blandit eros vel dolor finibus mattis. Nulla rhoncus hendrerit justo, a aliquam ex blandit quis. Nam odio nisl, scelerisque sed lobortis id, lobortis at ante. Aliquam varius et lacus vel varius. Vivamus efficitur nec massa a faucibus. Nam ut velit tortor. Suspendisse lacinia vehicula nisi, gravida purus porta.[/fusion_text][/one_half][one_half last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][fusion_text]Lorem ipsum dolor sit amet, consectetur adipiscing elit. Aliquam rutrum elementum consectetur. Nulla pharetra tristique urna ut suscipit. Curabitur sit amet dolor quis arcu scelerisque viverra eu ut lorem.\n[/fusion_text][separator style_type=\"none\" top_margin=\"13\" bottom_margin=\"13\" sep_color=\"\" border_size=\"\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"\" alignment=\"\" class=\"\" id=\"\"][checklist icon=\"fa-star-o\" iconcolor=\"#6666a4\" circle=\"no\" circlecolor=\"\" size=\"15px\" class=\"\" id=\"\"][li_item icon=\"\"]Lorem ipsum dolor sit amet, consectetur adipiscing elit.[/li_item][li_item icon=\"\"]Aliquam rutrum Elementum consectetur.[/li_item][li_item icon=\"\"]Nulla pharetra tristique urna ut suscipit.[/li_item][li_item icon=\"\"]CuraBitur sit amet dolor quis arcu scelerisque eu ut lorem.[/li_item][li_item icon=\"\"]VestibuLum ut efficitur nibh.[/li_item][li_item icon=\"\"]Integer rhoncus nunc eu massa dignissim mo[/li_item][/checklist][/one_half][/fullwidth][fullwidth background_color=\"#f0f0ed\" background_image=\"\" background_parallax=\"none\" parallax_speed=\"0.3\" enable_mobile=\"no\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"60px\" padding_bottom=\"85px\" padding_left=\"0px\" padding_right=\"0px\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][fusion_text]\n<h1 style=\"text-align: center;\">MEET THE TEAM</h1>\n[/fusion_text][separator style_type=\"single\" top_margin=\"\" bottom_margin=\"40\" sep_color=\"#000000\" border_size=\"\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"170px\" alignment=\"\" class=\"\" id=\"\"][one_sixth last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][/one_sixth][two_third last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][fusion_text]\n<h3 style=\"text-align: center;\">Our specialists are at the heart of Avada Destinations. They have all travelled extensively and documented it perfectly so you can enjoy your adventures.</h3>\n[/fusion_text][/two_third][one_sixth last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][/one_sixth][separator style_type=\"none\" top_margin=\"\" bottom_margin=\"40\" sep_color=\"#ffffff\" border_size=\"\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"170px\" alignment=\"\" class=\"\" id=\"\"][one_third last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"rgba(255,255,255,.6)\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"30px\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][imageframe lightbox=\"no\" lightbox_image=\"\" style_type=\"none\" bordercolor=\"\" bordersize=\"0px\" borderradius=\"0\" stylecolor=\"\" align=\"center\" link=\"\" linktarget=\"_self\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" hide_on_mobile=\"no\" class=\"\" id=\"\"] <img alt=\"\" src=\"http://theme-fusion.com/avada_demos_xml/travel/wp-content/uploads/2015/01/person11.jpg\" />[/imageframe][separator style_type=\"none\" top_margin=\"10\" bottom_margin=\"10\" sep_color=\"rgba(255,255,255,.7)\" border_size=\"\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"150px\" alignment=\"\" class=\"\" id=\"\"][fusion_text]\n<h2 style=\"text-align: center; color: #333333; margin-bottom: 0px;\">Michael Chabbi</h2>\n<h3 style=\"text-align: center; font-size: 15px; line-height: 15px; margin-top: 8px;\">President &amp; Founder</h3>\n[/fusion_text][fusion_text]\n<p style=\"text-align: center;\">Etiam rhoncus fermentum vehicula. Etiam sollicitudin eget sapien ac aliquet. Nullam tristique vitae sempers astridse facilisis.</p>\n[/fusion_text][social_links icons_boxed=\"\" icons_boxed_radius=\"\" icon_colors=\"\" box_colors=\"\" tooltip_placement=\"top\" rss=\"\" facebook=\"#\" twitter=\"#\" instagram=\"#\" dribbble=\"#\" google=\"\" linkedin=\"\" blogger=\"\" tumblr=\"\" reddit=\"\" yahoo=\"\" deviantart=\"\" vimeo=\"\" youtube=\"\" pinterest=\"\" digg=\"\" flickr=\"\" forrst=\"\" myspace=\"\" skype=\"\" paypal=\"\" dropbox=\"\" soundcloud=\"\" vk=\"\" email=\"\" show_custom=\"no\" alignment=\"center\" class=\"\" id=\"\"][/one_third][one_third last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"rgba(255,255,255,.6)\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"30px\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][imageframe lightbox=\"no\" lightbox_image=\"\" style_type=\"none\" bordercolor=\"\" bordersize=\"0px\" borderradius=\"0\" stylecolor=\"\" align=\"center\" link=\"\" linktarget=\"_self\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" hide_on_mobile=\"no\" class=\"\" id=\"\"] <img alt=\"\" src=\"http://theme-fusion.com/avada_demos_xml/travel/wp-content/uploads/2015/01/person21.jpg\" />[/imageframe][separator style_type=\"none\" top_margin=\"10\" bottom_margin=\"10\" sep_color=\"rgba(255,255,255,.7)\" border_size=\"\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"150px\" alignment=\"\" class=\"\" id=\"\"][fusion_text]\n<h2 style=\"text-align: center; color: #333333; margin-bottom: 0px;\">Kelsie Maden</h2>\n<h3 style=\"text-align: center; font-size: 15px; line-height: 15px; margin-top: 8px;\">Account Director</h3>\n[/fusion_text][fusion_text]\n<p style=\"text-align: center;\">Etiam rhoncus fermentum vehicula. Etiam sollicitudin eget sapien ac aliquet. Nullam tristique vitae sempers astridse facilisis.</p>\n[/fusion_text][social_links icons_boxed=\"yes\" icons_boxed_radius=\"\" icon_colors=\"\" box_colors=\"\" tooltip_placement=\"top\" rss=\"\" facebook=\"#\" twitter=\"#\" instagram=\"#\" dribbble=\"#\" google=\"\" linkedin=\"\" blogger=\"\" tumblr=\"\" reddit=\"\" yahoo=\"\" deviantart=\"\" vimeo=\"\" youtube=\"\" pinterest=\"\" digg=\"\" flickr=\"\" forrst=\"\" myspace=\"\" skype=\"\" paypal=\"\" dropbox=\"\" soundcloud=\"\" vk=\"\" email=\"\" show_custom=\"no\" alignment=\"center\" class=\"\" id=\"\"][/one_third][one_third last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"rgba(255,255,255,.6)\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"30px\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][imageframe lightbox=\"no\" lightbox_image=\"\" style_type=\"none\" bordercolor=\"\" bordersize=\"0px\" borderradius=\"0\" stylecolor=\"\" align=\"center\" link=\"\" linktarget=\"_self\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" hide_on_mobile=\"no\" class=\"\" id=\"\"] <img alt=\"\" src=\"http://theme-fusion.com/avada_demos_xml/travel/wp-content/uploads/2015/01/person31.jpg\" />[/imageframe][separator style_type=\"none\" top_margin=\"10\" bottom_margin=\"10\" sep_color=\"rgba(255,255,255,.7)\" border_size=\"\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"150px\" alignment=\"\" class=\"\" id=\"\"][fusion_text]\n<h2 style=\"text-align: center; color: #333333; margin-bottom: 0px;\">Greg Simkins</h2>\n<h3 style=\"text-align: center; font-size: 15px; line-height: 15px; margin-top: 8px;\">Marketing Director</h3>\n[/fusion_text][fusion_text]\n<p style=\"text-align: center;\">Etiam rhoncus fermentum vehicula. Etiam sollicitudin eget sapien ac aliquet. Nullam tristique vitae sempers astridse facilisis.</p>\n[/fusion_text][social_links icons_boxed=\"yes\" icons_boxed_radius=\"\" icon_colors=\"\" box_colors=\"\" tooltip_placement=\"top\" rss=\"\" facebook=\"#\" twitter=\"#\" instagram=\"#\" dribbble=\"#\" google=\"\" linkedin=\"\" blogger=\"\" tumblr=\"\" reddit=\"\" yahoo=\"\" deviantart=\"\" vimeo=\"\" youtube=\"\" pinterest=\"\" digg=\"\" flickr=\"\" forrst=\"\" myspace=\"\" skype=\"\" paypal=\"\" dropbox=\"\" soundcloud=\"\" vk=\"\" email=\"\" show_custom=\"no\" alignment=\"center\" class=\"\" id=\"\"][/one_third][/fullwidth][fullwidth background_color=\"#f0f0ed\" background_image=\"http://theme-fusion.com/avada_demos_xml/travel/wp-content/uploads/2015/01/about-parallax1.jpg\" background_parallax=\"fixed\" parallax_speed=\"0.3\" enable_mobile=\"no\" background_repeat=\"no-repeat\" background_position=\"center center\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"110px\" padding_bottom=\"110px\" padding_left=\"0px\" padding_right=\"0px\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][fusion_text]\n<h1 style=\"text-align: center;\"><span style=\"color: #ffffff;\">OUR PARTNERS</span></h1>\n[/fusion_text][separator style_type=\"single\" top_margin=\"\" bottom_margin=\"40\" sep_color=\"#ffffff\" border_size=\"\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"170px\" alignment=\"\" class=\"\" id=\"\"][one_sixth last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][/one_sixth][two_third last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][fusion_text]\n<h3 style=\"text-align: center;\"><span style=\"color: #ffffff;\">We work with the very best. We are proud of our partners, who work with us to deliver the best in bespoke travel</span></h3>\n[/fusion_text][/two_third][one_sixth last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][/one_sixth][separator style_type=\"none\" top_margin=\"20\" bottom_margin=\"20\" sep_color=\"#ffffff\" border_size=\"\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"170px\" alignment=\"\" class=\"\" id=\"\"][images picture_size=\"auto\" autoplay=\"yes\" columns=\"5\" column_spacing=\"45\" scroll_items=\"1\" show_nav=\"no\" mouse_scroll=\"yes\" border=\"no\" lightbox=\"no\" class=\"\" id=\"\"][image link=\"\" linktarget=\"_self\" image=\"http://theme-fusion.com/avada_demos_xml/travel/wp-content/uploads/2015/01/logo41.png\" alt=\"\"][image link=\"\" linktarget=\"_self\" image=\"http://theme-fusion.com/avada_demos_xml/travel/wp-content/uploads/2015/01/logo31.png\" alt=\"\"][image link=\"\" linktarget=\"_self\" image=\"http://theme-fusion.com/avada_demos_xml/travel/wp-content/uploads/2015/01/logo21.png\" alt=\"\"][image link=\"\" linktarget=\"_self\" image=\"http://theme-fusion.com/avada_demos_xml/travel/wp-content/uploads/2015/01/logo11.png\" alt=\"\"][image link=\"\" linktarget=\"_self\" image=\"http://theme-fusion.com/avada_demos_xml/travel/wp-content/uploads/2015/01/logo52.png\" alt=\"\"][image link=\"\" linktarget=\"_self\" image=\"http://theme-fusion.com/avada_demos_xml/travel/wp-content/uploads/2015/01/logo21.png\" alt=\"\"][image link=\"\" linktarget=\"_self\" image=\"http://theme-fusion.com/avada_demos_xml/travel/wp-content/uploads/2015/01/logo11.png\" alt=\"\"][image link=\"\" linktarget=\"_self\" image=\"http://theme-fusion.com/avada_demos_xml/travel/wp-content/uploads/2015/01/logo52.png\" alt=\"\"][/images][/fullwidth][fullwidth background_color=\"#f0f0ed\" background_image=\"\" background_parallax=\"none\" parallax_speed=\"0.3\" enable_mobile=\"no\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"60px\" padding_bottom=\"110px\" padding_left=\"0px\" padding_right=\"0px\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][fusion_text]\n<h1 style=\"text-align: center;\">OUR PROMISE</h1>\n[/fusion_text][separator style_type=\"single\" top_margin=\"\" bottom_margin=\"40\" sep_color=\"#000000\" border_size=\"\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"170px\" alignment=\"\" class=\"\" id=\"\"][one_sixth last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][/one_sixth][two_third last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][fusion_text]\n<h3 style=\"text-align: center;\">No request is too big or too small for our team. If it matters to you, it matters to us. Let us make your escape perfect.</h3>\n[/fusion_text][/two_third][one_sixth last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][/one_sixth][separator style_type=\"none\" top_margin=\"\" bottom_margin=\"40\" sep_color=\"#ffffff\" border_size=\"\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"170px\" alignment=\"\" class=\"\" id=\"\"][fusion_tabs design=\"clean\" layout=\"horizontal\" justified=\"no\" backgroundcolor=\"\" inactivecolor=\"\" bordercolor=\"\" class=\"\" id=\"\"][fusion_tab title=\"Who we are\" icon=\"fa-star-o\"][separator style_type=\"none\" top_margin=\"15\" bottom_margin=\"15\" sep_color=\"\" icon=\"\" width=\"\" class=\"\" id=\"\"]\n\n[one_half last=\"no\" spacing=\"yes\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" class=\"\" id=\"\"][imageframe lightbox=\"right\" style_type=\"none\" bordercolor=\"\" bordersize=\"0px\" borderradius=\"5px\" stylecolor=\"\" align=\"center\" link=\"\" linktarget=\"_self\" animation_type=\"fade\" animation_direction=\"left\" animation_speed=\"1\" class=\"\" id=\"\"] <img src=\"http://theme-fusion.com/avada_demos_xml/travel/wp-content/uploads/2015/02/tab2.jpg\" alt=\"\" />[/imageframe][/one_half]\n\n[one_half last=\"yes\" spacing=\"yes\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" class=\"\" id=\"\"]\n\nLorem ipsum dolor sit amet, consectetur adipiscing elit. Morbi vel nulla sapien. Class aptent tacitiaptent taciti sociosqu ad lit himenaeos. Suspendisse massa urna luctus. Donec at commodo erat. Sed egestas consequat augue eu iaculis facilis [tooltip title=\"We Make Dream Vacations\" placement=\"top\" trigger=\"hover\" class=\"\" id=\"\"]sadips ipsums dolores[/tooltip]. Sed gravida, nisl ac lobortis pulvinar augue.\n\n<em>Tempus eget urna id, maximus commodo odio. Lorem ipsum dolor sit amet, consectetur elits sadips. Praesent alis lacus. Nunc at vulputate justo.</em>\n\n[separator style_type=\"none\" top_margin=\"5\" bottom_margin=\"5\" sep_color=\"\" icon=\"\" width=\"\" class=\"\" id=\"\"]\n\n[button link=\"http://themeforest.net/item/avada-responsive-multipurpose-theme/2833226?ref=ThemeFusion\" color=\"default\" size=\"large\" type=\"3d\" shape=\"round\" target=\"_blank\" title=\"\" gradient_colors=\"transparent|\" gradient_hover_colors=\"#6797be|\" accent_color=\"#6797be\" accent_hover_color=\"#ffffff\" bevel_color=\"\" border_width=\"0px\" shadow=\"no\" icon=\"\" icon_position=\"left\" icon_divider=\"no\" modal=\"\" animation_type=\"0\" animation_direction=\"left\" animation_speed=\"1\" alignment=\"left\" class=\"\" id=\"\"]Learn More[/button]\n\n[button link=\"http://theme-fusion.com/avada_demos_xml/travel/make-a-reservation/\" color=\"default\" size=\"large\" type=\"3d\" shape=\"round\" target=\"_blank\" title=\"\" gradient_colors=\"transparent|\" gradient_hover_colors=\"#6797be|\" accent_color=\"#6797be\" accent_hover_color=\"#ffffff\" bevel_color=\"\" border_width=\"0px\" shadow=\"no\" icon=\"\" icon_position=\"left\" icon_divider=\"no\" modal=\"contact\" animation_type=\"0\" animation_direction=\"left\" animation_speed=\"1\" alignment=\"left\" class=\"\" id=\"\"]Make A Reservation[/button]\n\n[/one_half][/fusion_tab][fusion_tab title=\"What we do\" icon=\"fa-plane\"][separator style_type=\"none\" top_margin=\"15\" bottom_margin=\"15\" sep_color=\"\" icon=\"\" width=\"\" class=\"\" id=\"\"]\n\n[one_half last=\"no\" spacing=\"yes\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" class=\"\" id=\"\"][imageframe lightbox=\"right\" style_type=\"none\" bordercolor=\"\" bordersize=\"0px\" borderradius=\"5px\" stylecolor=\"\" align=\"center\" link=\"\" linktarget=\"_self\" animation_type=\"fade\" animation_direction=\"left\" animation_speed=\"1\" class=\"\" id=\"\"] <img src=\"http://theme-fusion.com/avada_demos_xml/travel/wp-content/uploads/2015/02/tab2.jpg\" alt=\"\" />[/imageframe][/one_half]\n\n[one_half last=\"yes\" spacing=\"yes\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" class=\"\" id=\"\"]\n\nLorem ipsum dolor sit amet, consectetur adipiscing elit. Morbi vel nulla sapien. Class aptent tacitiaptent taciti sociosqu ad lit himenaeos. Suspendisse massa urna luctus. Donec at commodo erat. Sed egestas consequat augue eu iaculis facilis [tooltip title=\"We Make Dream Vacations\" placement=\"top\" trigger=\"hover\" class=\"\" id=\"\"]sadips ipsums dolores[/tooltip]. Sed gravida, nisl ac lobortis pulvinar augue.\n\n<em>Tempus eget urna id, maximus commodo odio. Lorem ipsum dolor sit amet, consectetur elits sadips. Praesent alis lacus. Nunc at vulputate justo.</em>\n\n[separator style_type=\"none\" top_margin=\"5\" bottom_margin=\"5\" sep_color=\"\" icon=\"\" width=\"\" class=\"\" id=\"\"]\n\n[button link=\"http://themeforest.net/item/avada-responsive-multipurpose-theme/2833226?ref=ThemeFusion\" color=\"default\" size=\"large\" type=\"3d\" shape=\"round\" target=\"_blank\" title=\"\" gradient_colors=\"transparent|\" gradient_hover_colors=\"#6797be|\" accent_color=\"#6797be\" accent_hover_color=\"#ffffff\" bevel_color=\"\" border_width=\"0px\" shadow=\"no\" icon=\"\" icon_position=\"left\" icon_divider=\"no\" modal=\"\" animation_type=\"0\" animation_direction=\"left\" animation_speed=\"1\" alignment=\"left\" class=\"\" id=\"\"]Learn More[/button]\n\n[button link=\"http://theme-fusion.com/avada_demos_xml/travel/make-a-reservation/\" color=\"default\" size=\"large\" type=\"3d\" shape=\"round\" target=\"_blank\" title=\"\" gradient_colors=\"transparent|\" gradient_hover_colors=\"#6797be|\" accent_color=\"#6797be\" accent_hover_color=\"#ffffff\" bevel_color=\"\" border_width=\"0px\" shadow=\"no\" icon=\"\" icon_position=\"left\" icon_divider=\"no\" modal=\"contact\" animation_type=\"0\" animation_direction=\"left\" animation_speed=\"1\" alignment=\"left\" class=\"\" id=\"\"]Make A Reservation[/button]\n\n[/one_half][/fusion_tab][fusion_tab title=\"What we beleive\" icon=\"fa-trophy\"][separator style_type=\"none\" top_margin=\"15\" bottom_margin=\"15\" sep_color=\"\" icon=\"\" width=\"\" class=\"\" id=\"\"]\n\n[one_half last=\"no\" spacing=\"yes\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" class=\"\" id=\"\"][imageframe lightbox=\"right\" style_type=\"none\" bordercolor=\"\" bordersize=\"0px\" borderradius=\"5px\" stylecolor=\"\" align=\"center\" link=\"\" linktarget=\"_self\" animation_type=\"fade\" animation_direction=\"left\" animation_speed=\"1\" class=\"\" id=\"\"] <img src=\"http://theme-fusion.com/avada_demos_xml/travel/wp-content/uploads/2015/02/tab2.jpg\" alt=\"\" />[/imageframe][/one_half]\n\n[one_half last=\"yes\" spacing=\"yes\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" class=\"\" id=\"\"]\n\nLorem ipsum dolor sit amet, consectetur adipiscing elit. Morbi vel nulla sapien. Class aptent tacitiaptent taciti sociosqu ad lit himenaeos. Suspendisse massa urna luctus. Donec at commodo erat. Sed egestas consequat augue eu iaculis facilis [tooltip title=\"We Make Dream Vacations\" placement=\"top\" trigger=\"hover\" class=\"\" id=\"\"]sadips ipsums dolores[/tooltip]. Sed gravida, nisl ac lobortis pulvinar augue.\n\n<em>Tempus eget urna id, maximus commodo odio. Lorem ipsum dolor sit amet, consectetur elits sadips. Praesent alis lacus. Nunc at vulputate justo.</em>\n\n[separator style_type=\"none\" top_margin=\"5\" bottom_margin=\"5\" sep_color=\"\" icon=\"\" width=\"\" class=\"\" id=\"\"]\n\n[button link=\"http://themeforest.net/item/avada-responsive-multipurpose-theme/2833226?ref=ThemeFusion\" color=\"default\" size=\"large\" type=\"3d\" shape=\"round\" target=\"_blank\" title=\"\" gradient_colors=\"transparent|\" gradient_hover_colors=\"#6797be|\" accent_color=\"#6797be\" accent_hover_color=\"#ffffff\" bevel_color=\"\" border_width=\"0px\" shadow=\"no\" icon=\"\" icon_position=\"left\" icon_divider=\"no\" modal=\"\" animation_type=\"0\" animation_direction=\"left\" animation_speed=\"1\" alignment=\"left\" class=\"\" id=\"\"]Learn More[/button]\n\n[button link=\"http://theme-fusion.com/avada_demos_xml/travel/make-a-reservation/\" color=\"default\" size=\"large\" type=\"3d\" shape=\"round\" target=\"_blank\" title=\"\" gradient_colors=\"transparent|\" gradient_hover_colors=\"#6797be|\" accent_color=\"#6797be\" accent_hover_color=\"#ffffff\" bevel_color=\"\" border_width=\"0px\" shadow=\"no\" icon=\"\" icon_position=\"left\" icon_divider=\"no\" modal=\"contact\" animation_type=\"0\" animation_direction=\"left\" animation_speed=\"1\" alignment=\"left\" class=\"\" id=\"\"]Make A Reservation[/button]\n\n[/one_half][/fusion_tab][/fusion_tabs][/fullwidth]'),
(9245, 9, 'fusion_builder_converted', 'yes');
INSERT INTO `wp_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(9246, 7, 'fusion_builder_content_backup', '[fullwidth background_color=\"#f0f0ed\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"20\" padding_bottom=\"20\" padding_left=\"0px\" padding_right=\"0px\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][one_half last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][separator style_type=\"single\" top_margin=\"0\" bottom_margin=\"30\" sep_color=\"#000000\" border_size=\"\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"170px\" alignment=\"center\" class=\"separator-left\" id=\"\"][fusion_text]\r\n<h1 style=\"text-align: center;\">No Fancy Star Grading\r\nNo Room Service\r\nNo Bed Turn-downs\r\nNo Rose Petals in the Bath water</h1>\r\n<h1 style=\"text-align: center;\">... just old fashioned homely comforts</h1>\r\n[/fusion_text][/one_half][one_half last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][fusion_text]\r\n<h1 style=\"text-align: justify;\">5 BEDROOM FAMILY LODGE</h1>\r\n<h3 style=\"text-align: justify;\">We are a four season lodge, because there’s always something to celebrate… We offer comfort, relaxation and privacy right in the heart of 1000 Hills. The Forest, the Gardens, the Atmosphere all speak to  Rest  &amp; Relaxation.</h3>\r\n[/fusion_text][separator style_type=\"single\" top_margin=\"0\" bottom_margin=\"30\" sep_color=\"#000000\" border_size=\"\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"170px\" alignment=\"left\" class=\"separator-left\" id=\"\"][title size=\"1\" content_align=\"right\" style_type=\"default\" sep_color=\"\" margin_top=\"\" margin_bottom=\"\" class=\"\" id=\"\"]\r\n<h1 style=\"text-align: center;\">Current Offers!</h1>\r\n[/title][checklist icon=\"fa-sort-amount-desc\" iconcolor=\"\" circle=\"yes\" circlecolor=\"\" size=\"13px\" class=\"\" id=\"\"][li_item icon=\"\"]\r\n<h3>Book on-line - get 15% OFF your <a href=\"http://msla.co.za/lodge/reservations/\"> Accommodation</a> or...</h3>\r\n[/li_item][li_item icon=\"\"]\r\n<h3><a href=\"http://msla.co.za/lodge/reservations/\">Stay 3 days or more</a> - get 25% OFF your Accommodation</h3>\r\n[/li_item][/checklist][/one_half][/fullwidth][fullwidth background_color=\"#f0f0ed\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"20\" padding_bottom=\"20\" padding_left=\"0px\" padding_right=\"0px\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][one_half last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][fusion_text]\r\n<h3 style=\"text-align: justify;\">Set in the rolling peaks and valleys of a thousand hills surrounded by a canopy of indigenous trees, you will find that horses still have right of way, we certainly offer the best of both worlds, farm and charm coupled with modern amenities that will have you feeling relaxed and rejuvenated.</h3>\r\n<h3 style=\"text-align: justify;\">We know that sometimes you are searching for a romantic getaway or maybe a few days away with old friends. Other times you are searching for a place to host a weekend, family reunion or a business retreat. In addition to nightly room rentals, our lodge is also available for meetings, retreats  and makes the perfect place for a wedding party to stay together and get ready for the big day. Regardless, with our five comfortable and cozy guest bedrooms, multiple garden spaces and hideaways, and a  large private deck  where you can take a nap or read a book we definitely have the room for you!</h3>\r\n<h3 style=\"text-align: justify;\">Evenings are quiet and peaceful taking you far away from the business of city life. This is a unique and memorable country experience. We look forward to having you as a guest!</h3>\r\n[/fusion_text][/one_half][one_half last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][fusion_text]\r\n<h3 style=\"text-align: justify;\">Our lodge has been in our family for years and has recently been beautifully renovated. Five rooms all with en-suite showers lead off your own large central lounge, featuring a 36 foot high vaulted ceiling, offering spacious living, dining, and a bar/conversational lounge area which includes a fitted kitchenette, all adding to a sense of homely comfort. Sumptuous meals can be provided on request and served on the bottom deck at the swimming pool.</h3>\r\n<h3 style=\"text-align: justify;\">Be lulled to sleep by the sound of the waterfall and tinkling stream just outside your window, waking from a peaceful night\'s sleep in a pillow-top bed dressed in luxurious linens to coddle you in ultimate comfort.</h3>\r\n<h3 style=\"text-align: justify;\">Our property boasts many different species of birds and animals. We have a resident otter, a family of wild bush pigs,  a family of rock rabbits, porcupine, little blue duikers, a variety of different frogs and an abundance of bird life, including the occasional snakes that pass through!</h3>\r\n[/fusion_text][/one_half][/fullwidth][fullwidth background_color=\"#f0f0ed\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"20\" padding_bottom=\"20\" padding_left=\"0px\" padding_right=\"0px\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][fusion_text]\r\n<h1 style=\"text-align: center;\">Gallery</h1>\r\n[/fusion_text][separator style_type=\"single\" top_margin=\"\" bottom_margin=\"40\" sep_color=\"#000000\" border_size=\"\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"170px\" alignment=\"\" class=\"\" id=\"\"][one_sixth last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][/one_sixth][two_third last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][fusion_text]\r\n<h3 style=\"text-align: justify;\">The Lodge is open, spacious, comfortable and homely. During hot summer days, sit and bask in the sun on the deck  with one of our  picnic specials. In winter, snuggle up with a good book or challenge one another to a friendly board game in the glassed nook area .</h3>\r\n[/fusion_text][/two_third][one_sixth last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][/one_sixth][/fullwidth][fullwidth background_color=\"#f0f0ed\" background_image=\"http://localhost/assagaylodge/wp-content/uploads/2015/01/Wood_Texture.jpg\" background_parallax=\"fixed\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"30\" padding_bottom=\"10\" padding_left=\"0\" padding_right=\"0\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][recent_works layout=\"grid\" picture_size=\"auto\" boxed_text=\"unboxed\" filters=\"no\" columns=\"3\" column_spacing=\"12\" cat_slug=\"the-lodge\" exclude_cats=\"\" number_posts=\"9\" offset=\"\" excerpt_length=\"35\" strip_html=\"yes\" carousel_layout=\"title_on_rollover\" scroll_items=\"\" autoplay=\"no\" show_nav=\"yes\" mouse_scroll=\"no\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][/recent_works][/fullwidth][fullwidth background_color=\"#f0f0ed\" background_image=\"\" background_parallax=\"fixed\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"20\" padding_bottom=\"20\" padding_left=\"0px\" padding_right=\"0px\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][fusion_text]\r\n<h1 style=\"text-align: center;\">BEDROOMS</h1>\r\n[/fusion_text][separator style_type=\"single\" top_margin=\"\" bottom_margin=\"20\" sep_color=\"#000000\" border_size=\"\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"170px\" alignment=\"\" class=\"\" id=\"\"][one_sixth last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][/one_sixth][two_third last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][fusion_text]\r\n<h3 style=\"text-align: justify;\">When it comes to our bedrooms we’re proud to say we offer something a little more special. One of five  lovingly and tastefully decorated guest rooms. Soft gray decor soothes the senses providing a peaceful, blissfully comfortable rest from your travels and hectic lives.</h3>\r\n<h3 style=\"text-align: justify;\">Our  bedrooms are spacious, clean, comfortable all en-suite, equipped with either king size or queen size beds. Each room sleeps two guests. The rooms have high ceilings, wall heaters &amp; ceiling fans. Beds all have electric blankets in Winter, 100% cotton percale sheets and thick hyper allergenic microfiber duvets and pillows. All guest rooms are cleaned with organic and green products. Amenities include hairdryers in each room. Three rooms feature King-sized beds  of which two can be  split into two single beds. Two  rooms can therefore be changed into a twin room upon request. Two rooms feature a Queen-sized double bed. These beds cannot be split into twin beds.</h3>\r\n[/fusion_text][/two_third][one_sixth last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][/one_sixth][/fullwidth][fullwidth background_color=\"\" background_image=\"http://localhost/assagaylodge/wp-content/uploads/2015/01/DSC01516-1148-x-764.jpg\" background_parallax=\"fixed\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"center center\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"20\" padding_bottom=\"20\" padding_left=\"0\" padding_right=\"0\" hundred_percent=\"no\" equal_height_columns=\"yes\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][recent_works layout=\"grid\" picture_size=\"auto\" boxed_text=\"unboxed\" filters=\"no\" columns=\"3\" column_spacing=\"12\" cat_slug=\"bedrooms\" exclude_cats=\"\" number_posts=\"6\" offset=\"\" excerpt_length=\"35\" strip_html=\"yes\" carousel_layout=\"title_on_rollover\" scroll_items=\"\" autoplay=\"no\" show_nav=\"yes\" mouse_scroll=\"no\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][/recent_works][/fullwidth][fullwidth background_color=\"#f0f0ed\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"20\" padding_bottom=\"20\" padding_left=\"0\" padding_right=\"0\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][fusion_text]\r\n<h1 style=\"text-align: center;\">GARDENS</h1>\r\n[/fusion_text][separator style_type=\"single\" top_margin=\"\" bottom_margin=\"20\" sep_color=\"#000000\" border_size=\"\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"170px\" alignment=\"\" class=\"\" id=\"\"][one_sixth last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][/one_sixth][two_third last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][fusion_text]\r\n<h3 style=\"text-align: justify;\">The garden is large and offers many secluded spots to lose yourself in a book with a glass of wine underneath the shade of a tree, listening to the sounds of the birds and smelling the beautiful flowers.</h3>\r\n[/fusion_text][/two_third][one_sixth last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][/one_sixth][recent_works layout=\"grid\" picture_size=\"auto\" boxed_text=\"boxed\" filters=\"no\" columns=\"3\" column_spacing=\"12\" cat_slug=\"gardens\" exclude_cats=\"\" number_posts=\"9\" offset=\"\" excerpt_length=\"35\" strip_html=\"yes\" carousel_layout=\"title_on_rollover\" scroll_items=\"\" autoplay=\"no\" show_nav=\"yes\" mouse_scroll=\"no\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][/recent_works][/fullwidth][fullwidth background_color=\"#ffffff\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"65px\" padding_bottom=\"65px\" padding_left=\"0px\" padding_right=\"0px\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][button link=\"https://msla.co.za/lodge/reservations/\" color=\"default\" size=\"xlarge\" stretch=\"default\" type=\"3d\" shape=\"round\" target=\"_self\" title=\"\" gradient_colors=\"#f0f0ed|#f0f0ed\" gradient_hover_colors=\"#6666a4|#6666a4\" accent_color=\"#ffffff\" accent_hover_color=\"#ffffff\" bevel_color=\"\" border_width=\"0px\" icon=\"\" icon_position=\"left\" icon_divider=\"no\" modal=\"\" animation_type=\"0\" animation_direction=\"left\" animation_speed=\"1\" animation_offset=\"\" alignment=\"center\" class=\"\" id=\"\"]Make A Reservation Enquiry[/button][/fullwidth]'),
(9247, 7, 'fusion_builder_converted', 'yes'),
(9248, 1, 'fusion_builder_content_backup', 'Welcome to WordPress. This is your first post. Edit or delete it, then start blogging!'),
(9251, 1, 'fusion_builder_converted', 'yes'),
(9252, 24, 'pyre_mp4_id', ''),
(9253, 24, 'pyre_webm_id', ''),
(9254, 24, 'pyre_ogv_id', ''),
(9255, 24, 'pyre_preview_image_id', ''),
(9256, 24, 'pyre_video_display', 'cover'),
(9257, 24, 'pyre_heading_size', '2'),
(9258, 24, 'pyre_caption_size', '3'),
(9267, 7, 'pyre_fallback_id', '840'),
(9268, 7, 'pyre_demo_slider', ''),
(9269, 7, 'pyre_combined_header_bg_color', ''),
(9270, 7, 'pyre_mobile_header_bg_color', ''),
(9271, 7, 'pyre_header_bg_id', ''),
(9272, 7, 'pyre_responsive_sidebar_order', ''),
(9273, 7, 'pyre_sidebar_sticky', 'default'),
(9274, 7, 'pyre_page_bg_id', ''),
(9275, 7, 'pyre_wide_page_bg_id', ''),
(9276, 7, 'pyre_page_title_line_height', ''),
(9277, 7, 'pyre_page_title_subheader_font_color', ''),
(9278, 7, 'pyre_page_title_bar_bg_id', ''),
(9279, 7, 'pyre_page_title_bar_bg_retina_id', ''),
(9280, 7, 'kd_featured-image-2_page_id', ''),
(9281, 7, 'kd_featured-image-3_page_id', ''),
(9282, 7, 'kd_featured-image-4_page_id', ''),
(9283, 7, 'kd_featured-image-5_page_id', ''),
(9320, 1358, '_edit_lock', '1573647151:1'),
(9329, 1182, 'pyre_fallback_id', ''),
(9330, 1182, 'pyre_demo_slider', ''),
(9331, 1182, 'pyre_combined_header_bg_color', ''),
(9332, 1182, 'pyre_mobile_header_bg_color', ''),
(9333, 1182, 'pyre_header_bg_id', ''),
(9334, 1182, 'pyre_responsive_sidebar_order', ''),
(9335, 1182, 'pyre_sidebar_sticky', 'default'),
(9336, 1182, 'pyre_page_bg_id', ''),
(9337, 1182, 'pyre_wide_page_bg_id', '1358'),
(9338, 1182, 'pyre_page_title_line_height', ''),
(9339, 1182, 'pyre_page_title_subheader_font_color', ''),
(9340, 1182, 'pyre_page_title_bar_bg_id', ''),
(9341, 1182, 'pyre_page_title_bar_bg_retina_id', ''),
(9342, 1182, 'kd_featured-image-2_page_id', ''),
(9343, 1182, 'kd_featured-image-3_page_id', ''),
(9344, 1182, 'kd_featured-image-4_page_id', ''),
(9345, 1182, 'kd_featured-image-5_page_id', ''),
(9396, 1182, 'sbg_selected_sidebar', 'a:1:{i:0;s:1:\"0\";}'),
(9397, 1182, 'sbg_selected_sidebar_replacement', 'a:1:{i:0;s:0:\"\";}'),
(9398, 1182, 'sbg_selected_sidebar_2', 'a:1:{i:0;s:1:\"0\";}'),
(9399, 1182, 'sbg_selected_sidebar_2_replacement', 'a:1:{i:0;s:0:\"\";}'),
(9400, 24, '_thumbnail_id', '1407'),
(9533, 11, 'pyre_fallback_id', ''),
(9534, 11, 'pyre_demo_slider', ''),
(9535, 11, 'pyre_combined_header_bg_color', ''),
(9536, 11, 'pyre_mobile_header_bg_color', ''),
(9537, 11, 'pyre_header_bg_id', ''),
(9538, 11, 'pyre_responsive_sidebar_order', ''),
(9539, 11, 'pyre_sidebar_sticky', 'default'),
(9540, 11, 'pyre_page_bg_id', ''),
(9541, 11, 'pyre_wide_page_bg_id', ''),
(9542, 11, 'pyre_page_title_line_height', ''),
(9543, 11, 'pyre_page_title_subheader_font_color', ''),
(9544, 11, 'pyre_page_title_bar_bg_id', ''),
(9545, 11, 'pyre_page_title_bar_bg_retina_id', ''),
(9546, 11, 'kd_featured-image-2_page_id', ''),
(9547, 11, 'kd_featured-image-3_page_id', ''),
(9548, 11, 'kd_featured-image-4_page_id', ''),
(9549, 11, 'kd_featured-image-5_page_id', ''),
(9550, 11, 'sbg_selected_sidebar', 'a:1:{i:0;s:1:\"0\";}'),
(9551, 11, 'sbg_selected_sidebar_replacement', 'a:1:{i:0;s:0:\"\";}'),
(9552, 11, 'sbg_selected_sidebar_2', 'a:1:{i:0;s:1:\"0\";}'),
(9553, 11, 'sbg_selected_sidebar_2_replacement', 'a:1:{i:0;s:0:\"\";}'),
(9801, 1407, '_wp_attached_file', '2015/01/14146294918_a82a7fa09e_b.jpg'),
(9802, 1407, '_wp_attachment_metadata', 'a:5:{s:5:\"width\";i:1023;s:6:\"height\";i:683;s:4:\"file\";s:36:\"2015/01/14146294918_a82a7fa09e_b.jpg\";s:5:\"sizes\";a:16:{s:6:\"medium\";a:4:{s:4:\"file\";s:36:\"14146294918_a82a7fa09e_b-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:36:\"14146294918_a82a7fa09e_b-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:36:\"14146294918_a82a7fa09e_b-768x513.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:513;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"portfolio-full\";a:4:{s:4:\"file\";s:36:\"14146294918_a82a7fa09e_b-940x400.jpg\";s:5:\"width\";i:940;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:13:\"portfolio-one\";a:4:{s:4:\"file\";s:36:\"14146294918_a82a7fa09e_b-540x272.jpg\";s:5:\"width\";i:540;s:6:\"height\";i:272;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:13:\"portfolio-two\";a:4:{s:4:\"file\";s:36:\"14146294918_a82a7fa09e_b-460x295.jpg\";s:5:\"width\";i:460;s:6:\"height\";i:295;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"portfolio-three\";a:4:{s:4:\"file\";s:36:\"14146294918_a82a7fa09e_b-300x214.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:214;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"portfolio-five\";a:4:{s:4:\"file\";s:36:\"14146294918_a82a7fa09e_b-177x142.jpg\";s:5:\"width\";i:177;s:6:\"height\";i:142;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:10:\"blog-large\";a:4:{s:4:\"file\";s:36:\"14146294918_a82a7fa09e_b-669x272.jpg\";s:5:\"width\";i:669;s:6:\"height\";i:272;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"blog-medium\";a:4:{s:4:\"file\";s:36:\"14146294918_a82a7fa09e_b-320x202.jpg\";s:5:\"width\";i:320;s:6:\"height\";i:202;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"recent-posts\";a:4:{s:4:\"file\";s:36:\"14146294918_a82a7fa09e_b-700x441.jpg\";s:5:\"width\";i:700;s:6:\"height\";i:441;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:22:\"recent-works-thumbnail\";a:4:{s:4:\"file\";s:34:\"14146294918_a82a7fa09e_b-66x66.jpg\";s:5:\"width\";i:66;s:6:\"height\";i:66;s:9:\"mime-type\";s:10:\"image/jpeg\";}i:0;a:4:{s:4:\"file\";s:36:\"14146294918_a82a7fa09e_b-200x134.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:134;s:9:\"mime-type\";s:10:\"image/jpeg\";}i:1;a:4:{s:4:\"file\";s:36:\"14146294918_a82a7fa09e_b-400x267.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:267;s:9:\"mime-type\";s:10:\"image/jpeg\";}i:2;a:4:{s:4:\"file\";s:36:\"14146294918_a82a7fa09e_b-600x401.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:401;s:9:\"mime-type\";s:10:\"image/jpeg\";}i:3;a:4:{s:4:\"file\";s:36:\"14146294918_a82a7fa09e_b-800x534.jpg\";s:5:\"width\";i:800;s:6:\"height\";i:534;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(9811, 998, 'pyre_fallback_id', ''),
(9812, 998, 'pyre_demo_slider', ''),
(9813, 998, 'pyre_combined_header_bg_color', ''),
(9814, 998, 'pyre_mobile_header_bg_color', ''),
(9815, 998, 'pyre_header_bg_id', ''),
(9816, 998, 'pyre_responsive_sidebar_order', ''),
(9817, 998, 'pyre_sidebar_sticky', 'default'),
(9818, 998, 'pyre_page_bg_id', ''),
(9819, 998, 'pyre_wide_page_bg_id', ''),
(9820, 998, 'pyre_page_title_line_height', ''),
(9821, 998, 'pyre_page_title_subheader_font_color', ''),
(9822, 998, 'pyre_page_title_bar_bg_id', ''),
(9823, 998, 'pyre_page_title_bar_bg_retina_id', ''),
(9824, 998, 'kd_featured-image-2_page_id', ''),
(9825, 998, 'kd_featured-image-3_page_id', ''),
(9826, 998, 'kd_featured-image-4_page_id', ''),
(9827, 998, 'kd_featured-image-5_page_id', ''),
(9864, 998, 'sbg_selected_sidebar', 'a:1:{i:0;s:1:\"0\";}'),
(9865, 998, 'sbg_selected_sidebar_replacement', 'a:1:{i:0;s:0:\"\";}'),
(9866, 998, 'sbg_selected_sidebar_2', 'a:1:{i:0;s:1:\"0\";}'),
(9867, 998, 'sbg_selected_sidebar_2_replacement', 'a:1:{i:0;s:0:\"\";}'),
(9868, 192, '_edit_lock', '1583312874:1'),
(9869, 192, '_edit_last', '1'),
(9870, 192, 'pyre_mp4_id', ''),
(9871, 192, 'pyre_webm_id', ''),
(9872, 192, 'pyre_ogv_id', ''),
(9873, 192, 'pyre_preview_image_id', ''),
(9874, 192, 'pyre_aspect_ratio', ''),
(9875, 192, 'pyre_video_display', 'cover'),
(9876, 192, 'pyre_heading_separator', 'none'),
(9877, 192, 'pyre_heading_size', '2'),
(9878, 192, 'pyre_caption_separator', 'none'),
(9879, 192, 'pyre_caption_size', '3'),
(9880, 1413, '_wp_attached_file', '2015/01/IMG_20200302_145734.jpg'),
(9881, 1413, '_wp_attachment_metadata', 'a:5:{s:5:\"width\";i:1920;s:6:\"height\";i:1080;s:4:\"file\";s:31:\"2015/01/IMG_20200302_145734.jpg\";s:5:\"sizes\";a:19:{s:6:\"medium\";a:4:{s:4:\"file\";s:31:\"IMG_20200302_145734-300x169.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:169;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:32:\"IMG_20200302_145734-1024x576.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:576;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:31:\"IMG_20200302_145734-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:31:\"IMG_20200302_145734-768x432.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:432;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:32:\"IMG_20200302_145734-1536x864.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:864;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"portfolio-full\";a:4:{s:4:\"file\";s:31:\"IMG_20200302_145734-940x400.jpg\";s:5:\"width\";i:940;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:13:\"portfolio-one\";a:4:{s:4:\"file\";s:31:\"IMG_20200302_145734-540x272.jpg\";s:5:\"width\";i:540;s:6:\"height\";i:272;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:13:\"portfolio-two\";a:4:{s:4:\"file\";s:31:\"IMG_20200302_145734-460x295.jpg\";s:5:\"width\";i:460;s:6:\"height\";i:295;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"portfolio-three\";a:4:{s:4:\"file\";s:31:\"IMG_20200302_145734-300x214.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:214;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"portfolio-five\";a:4:{s:4:\"file\";s:31:\"IMG_20200302_145734-177x142.jpg\";s:5:\"width\";i:177;s:6:\"height\";i:142;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:10:\"blog-large\";a:4:{s:4:\"file\";s:31:\"IMG_20200302_145734-669x272.jpg\";s:5:\"width\";i:669;s:6:\"height\";i:272;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"blog-medium\";a:4:{s:4:\"file\";s:31:\"IMG_20200302_145734-320x202.jpg\";s:5:\"width\";i:320;s:6:\"height\";i:202;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"recent-posts\";a:4:{s:4:\"file\";s:31:\"IMG_20200302_145734-700x441.jpg\";s:5:\"width\";i:700;s:6:\"height\";i:441;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:22:\"recent-works-thumbnail\";a:4:{s:4:\"file\";s:29:\"IMG_20200302_145734-66x66.jpg\";s:5:\"width\";i:66;s:6:\"height\";i:66;s:9:\"mime-type\";s:10:\"image/jpeg\";}i:0;a:4:{s:4:\"file\";s:31:\"IMG_20200302_145734-200x113.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:113;s:9:\"mime-type\";s:10:\"image/jpeg\";}i:1;a:4:{s:4:\"file\";s:31:\"IMG_20200302_145734-400x225.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:225;s:9:\"mime-type\";s:10:\"image/jpeg\";}i:2;a:4:{s:4:\"file\";s:31:\"IMG_20200302_145734-600x338.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:338;s:9:\"mime-type\";s:10:\"image/jpeg\";}i:3;a:4:{s:4:\"file\";s:31:\"IMG_20200302_145734-800x450.jpg\";s:5:\"width\";i:800;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}i:4;a:4:{s:4:\"file\";s:32:\"IMG_20200302_145734-1200x675.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:675;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:3:\"2.2\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:7:\"YAL-L21\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1583161055\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:4:\"2.23\";s:3:\"iso\";s:3:\"500\";s:13:\"shutter_speed\";s:4:\"0.05\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'),
(9906, 1416, 'slide_template', 'default'),
(9907, 1416, 'pyre_type', 'image'),
(9908, 1416, 'pyre_youtube_id', ''),
(9909, 1416, 'pyre_vimeo_id', ''),
(9910, 1416, 'pyre_webm', ''),
(9911, 1416, 'pyre_mp4', ''),
(9912, 1416, 'pyre_ogv', ''),
(9913, 1416, 'pyre_preview_image', ''),
(9914, 1416, 'pyre_video_bg_color', ''),
(9915, 1416, 'pyre_mute_video', 'yes'),
(9916, 1416, 'pyre_autoplay_video', 'yes'),
(9917, 1416, 'pyre_loop_video', 'yes'),
(9918, 1416, 'pyre_hide_video_controls', 'yes'),
(9919, 1416, 'pyre_content_alignment', 'center'),
(9920, 1416, 'pyre_heading', ''),
(9921, 1416, 'pyre_heading_font_size', '60'),
(9922, 1416, 'pyre_heading_color', '#ffffff'),
(9923, 1416, 'pyre_heading_bg', 'no'),
(9924, 1416, 'pyre_heading_bg_color', ''),
(9925, 1416, 'pyre_caption', ''),
(9926, 1416, 'pyre_caption_font_size', '26'),
(9927, 1416, 'pyre_caption_color', '#ffffff'),
(9928, 1416, 'pyre_caption_bg', 'no'),
(9929, 1416, 'pyre_caption_bg_color', ''),
(9930, 1416, 'pyre_link_type', 'button'),
(9931, 1416, 'pyre_slide_link', ''),
(9932, 1416, 'pyre_slide_target', 'yes'),
(9933, 1416, 'pyre_button_1', ''),
(9934, 1416, 'pyre_button_2', ''),
(9935, 1416, '_thumbnail_id', '1419'),
(9936, 1416, '_edit_lock', '1583313207:1'),
(9937, 1416, '_edit_last', '1'),
(9938, 1416, 'pyre_mp4_id', ''),
(9939, 1416, 'pyre_webm_id', ''),
(9940, 1416, 'pyre_ogv_id', ''),
(9941, 1416, 'pyre_preview_image_id', ''),
(9942, 1416, 'pyre_aspect_ratio', ''),
(9943, 1416, 'pyre_video_display', 'cover'),
(9944, 1416, 'pyre_heading_separator', 'none'),
(9945, 1416, 'pyre_heading_size', '2'),
(9946, 1416, 'pyre_caption_separator', 'none'),
(9947, 1416, 'pyre_caption_size', '3'),
(10012, 1418, '_wp_attached_file', '2020/03/IMG_20200301_163055.jpg'),
(10013, 1418, '_wp_attachment_metadata', 'a:5:{s:5:\"width\";i:1920;s:6:\"height\";i:1080;s:4:\"file\";s:31:\"2020/03/IMG_20200301_163055.jpg\";s:5:\"sizes\";a:19:{s:6:\"medium\";a:4:{s:4:\"file\";s:31:\"IMG_20200301_163055-300x169.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:169;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:32:\"IMG_20200301_163055-1024x576.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:576;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:31:\"IMG_20200301_163055-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:31:\"IMG_20200301_163055-768x432.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:432;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:32:\"IMG_20200301_163055-1536x864.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:864;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"portfolio-full\";a:4:{s:4:\"file\";s:31:\"IMG_20200301_163055-940x400.jpg\";s:5:\"width\";i:940;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:13:\"portfolio-one\";a:4:{s:4:\"file\";s:31:\"IMG_20200301_163055-540x272.jpg\";s:5:\"width\";i:540;s:6:\"height\";i:272;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:13:\"portfolio-two\";a:4:{s:4:\"file\";s:31:\"IMG_20200301_163055-460x295.jpg\";s:5:\"width\";i:460;s:6:\"height\";i:295;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"portfolio-three\";a:4:{s:4:\"file\";s:31:\"IMG_20200301_163055-300x214.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:214;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"portfolio-five\";a:4:{s:4:\"file\";s:31:\"IMG_20200301_163055-177x142.jpg\";s:5:\"width\";i:177;s:6:\"height\";i:142;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:10:\"blog-large\";a:4:{s:4:\"file\";s:31:\"IMG_20200301_163055-669x272.jpg\";s:5:\"width\";i:669;s:6:\"height\";i:272;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"blog-medium\";a:4:{s:4:\"file\";s:31:\"IMG_20200301_163055-320x202.jpg\";s:5:\"width\";i:320;s:6:\"height\";i:202;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"recent-posts\";a:4:{s:4:\"file\";s:31:\"IMG_20200301_163055-700x441.jpg\";s:5:\"width\";i:700;s:6:\"height\";i:441;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:22:\"recent-works-thumbnail\";a:4:{s:4:\"file\";s:29:\"IMG_20200301_163055-66x66.jpg\";s:5:\"width\";i:66;s:6:\"height\";i:66;s:9:\"mime-type\";s:10:\"image/jpeg\";}i:0;a:4:{s:4:\"file\";s:31:\"IMG_20200301_163055-200x113.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:113;s:9:\"mime-type\";s:10:\"image/jpeg\";}i:1;a:4:{s:4:\"file\";s:31:\"IMG_20200301_163055-400x225.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:225;s:9:\"mime-type\";s:10:\"image/jpeg\";}i:2;a:4:{s:4:\"file\";s:31:\"IMG_20200301_163055-600x338.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:338;s:9:\"mime-type\";s:10:\"image/jpeg\";}i:3;a:4:{s:4:\"file\";s:31:\"IMG_20200301_163055-800x450.jpg\";s:5:\"width\";i:800;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}i:4;a:4:{s:4:\"file\";s:32:\"IMG_20200301_163055-1200x675.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:675;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:3:\"2.4\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:7:\"YAL-L21\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1583080255\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:4:\"4.75\";s:3:\"iso\";s:3:\"160\";s:13:\"shutter_speed\";s:4:\"0.01\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'),
(10014, 1419, '_wp_attached_file', '2020/03/IMG_20200302_145123.jpg'),
(10015, 1419, '_wp_attachment_metadata', 'a:5:{s:5:\"width\";i:1920;s:6:\"height\";i:1080;s:4:\"file\";s:31:\"2020/03/IMG_20200302_145123.jpg\";s:5:\"sizes\";a:19:{s:6:\"medium\";a:4:{s:4:\"file\";s:31:\"IMG_20200302_145123-300x169.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:169;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:32:\"IMG_20200302_145123-1024x576.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:576;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:31:\"IMG_20200302_145123-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:31:\"IMG_20200302_145123-768x432.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:432;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:32:\"IMG_20200302_145123-1536x864.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:864;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"portfolio-full\";a:4:{s:4:\"file\";s:31:\"IMG_20200302_145123-940x400.jpg\";s:5:\"width\";i:940;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:13:\"portfolio-one\";a:4:{s:4:\"file\";s:31:\"IMG_20200302_145123-540x272.jpg\";s:5:\"width\";i:540;s:6:\"height\";i:272;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:13:\"portfolio-two\";a:4:{s:4:\"file\";s:31:\"IMG_20200302_145123-460x295.jpg\";s:5:\"width\";i:460;s:6:\"height\";i:295;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"portfolio-three\";a:4:{s:4:\"file\";s:31:\"IMG_20200302_145123-300x214.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:214;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"portfolio-five\";a:4:{s:4:\"file\";s:31:\"IMG_20200302_145123-177x142.jpg\";s:5:\"width\";i:177;s:6:\"height\";i:142;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:10:\"blog-large\";a:4:{s:4:\"file\";s:31:\"IMG_20200302_145123-669x272.jpg\";s:5:\"width\";i:669;s:6:\"height\";i:272;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"blog-medium\";a:4:{s:4:\"file\";s:31:\"IMG_20200302_145123-320x202.jpg\";s:5:\"width\";i:320;s:6:\"height\";i:202;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"recent-posts\";a:4:{s:4:\"file\";s:31:\"IMG_20200302_145123-700x441.jpg\";s:5:\"width\";i:700;s:6:\"height\";i:441;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:22:\"recent-works-thumbnail\";a:4:{s:4:\"file\";s:29:\"IMG_20200302_145123-66x66.jpg\";s:5:\"width\";i:66;s:6:\"height\";i:66;s:9:\"mime-type\";s:10:\"image/jpeg\";}i:0;a:4:{s:4:\"file\";s:31:\"IMG_20200302_145123-200x113.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:113;s:9:\"mime-type\";s:10:\"image/jpeg\";}i:1;a:4:{s:4:\"file\";s:31:\"IMG_20200302_145123-400x225.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:225;s:9:\"mime-type\";s:10:\"image/jpeg\";}i:2;a:4:{s:4:\"file\";s:31:\"IMG_20200302_145123-600x338.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:338;s:9:\"mime-type\";s:10:\"image/jpeg\";}i:3;a:4:{s:4:\"file\";s:31:\"IMG_20200302_145123-800x450.jpg\";s:5:\"width\";i:800;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}i:4;a:4:{s:4:\"file\";s:32:\"IMG_20200302_145123-1200x675.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:675;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:3:\"2.2\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:7:\"YAL-L21\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1583160685\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:4:\"2.23\";s:3:\"iso\";s:3:\"640\";s:13:\"shutter_speed\";s:4:\"0.03\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'),
(10016, 1416, '_wp_old_slug', 'about'),
(10017, 1420, 'slide_template', 'default'),
(10018, 1420, 'pyre_type', 'image'),
(10019, 1420, 'pyre_youtube_id', ''),
(10020, 1420, 'pyre_vimeo_id', ''),
(10021, 1420, 'pyre_webm', ''),
(10022, 1420, 'pyre_mp4', ''),
(10023, 1420, 'pyre_ogv', ''),
(10024, 1420, 'pyre_preview_image', ''),
(10025, 1420, 'pyre_video_bg_color', ''),
(10026, 1420, 'pyre_mute_video', 'yes'),
(10027, 1420, 'pyre_autoplay_video', 'yes'),
(10028, 1420, 'pyre_loop_video', 'yes'),
(10029, 1420, 'pyre_hide_video_controls', 'yes'),
(10030, 1420, 'pyre_content_alignment', 'center'),
(10031, 1420, 'pyre_heading', ''),
(10032, 1420, 'pyre_heading_font_size', '60'),
(10033, 1420, 'pyre_heading_color', '#ffffff'),
(10034, 1420, 'pyre_heading_bg', 'no'),
(10035, 1420, 'pyre_heading_bg_color', ''),
(10036, 1420, 'pyre_caption', ''),
(10037, 1420, 'pyre_caption_font_size', '26'),
(10038, 1420, 'pyre_caption_color', '#ffffff'),
(10039, 1420, 'pyre_caption_bg', 'no'),
(10040, 1420, 'pyre_caption_bg_color', ''),
(10041, 1420, 'pyre_link_type', 'button'),
(10042, 1420, 'pyre_slide_link', ''),
(10043, 1420, 'pyre_slide_target', 'yes'),
(10044, 1420, 'pyre_button_1', ''),
(10045, 1420, 'pyre_button_2', ''),
(10046, 1420, '_thumbnail_id', '1421'),
(10047, 1420, '_edit_lock', '1583315900:1'),
(10048, 1420, '_edit_last', '1'),
(10049, 1420, 'pyre_mp4_id', ''),
(10050, 1420, 'pyre_webm_id', ''),
(10051, 1420, 'pyre_ogv_id', ''),
(10052, 1420, 'pyre_preview_image_id', ''),
(10053, 1420, 'pyre_aspect_ratio', ''),
(10054, 1420, 'pyre_video_display', 'cover'),
(10055, 1420, 'pyre_heading_separator', 'none'),
(10056, 1420, 'pyre_heading_size', '2'),
(10057, 1420, 'pyre_caption_separator', 'none'),
(10058, 1420, 'pyre_caption_size', '3'),
(10059, 1420, '_wp_old_slug', 'about'),
(10080, 1421, '_wp_attached_file', '2020/03/IMG_20200302_145304.jpg'),
(10081, 1421, '_wp_attachment_metadata', 'a:5:{s:5:\"width\";i:1920;s:6:\"height\";i:1080;s:4:\"file\";s:31:\"2020/03/IMG_20200302_145304.jpg\";s:5:\"sizes\";a:19:{s:6:\"medium\";a:4:{s:4:\"file\";s:31:\"IMG_20200302_145304-300x169.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:169;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:32:\"IMG_20200302_145304-1024x576.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:576;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:31:\"IMG_20200302_145304-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:31:\"IMG_20200302_145304-768x432.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:432;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:32:\"IMG_20200302_145304-1536x864.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:864;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"portfolio-full\";a:4:{s:4:\"file\";s:31:\"IMG_20200302_145304-940x400.jpg\";s:5:\"width\";i:940;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:13:\"portfolio-one\";a:4:{s:4:\"file\";s:31:\"IMG_20200302_145304-540x272.jpg\";s:5:\"width\";i:540;s:6:\"height\";i:272;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:13:\"portfolio-two\";a:4:{s:4:\"file\";s:31:\"IMG_20200302_145304-460x295.jpg\";s:5:\"width\";i:460;s:6:\"height\";i:295;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"portfolio-three\";a:4:{s:4:\"file\";s:31:\"IMG_20200302_145304-300x214.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:214;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"portfolio-five\";a:4:{s:4:\"file\";s:31:\"IMG_20200302_145304-177x142.jpg\";s:5:\"width\";i:177;s:6:\"height\";i:142;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:10:\"blog-large\";a:4:{s:4:\"file\";s:31:\"IMG_20200302_145304-669x272.jpg\";s:5:\"width\";i:669;s:6:\"height\";i:272;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"blog-medium\";a:4:{s:4:\"file\";s:31:\"IMG_20200302_145304-320x202.jpg\";s:5:\"width\";i:320;s:6:\"height\";i:202;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"recent-posts\";a:4:{s:4:\"file\";s:31:\"IMG_20200302_145304-700x441.jpg\";s:5:\"width\";i:700;s:6:\"height\";i:441;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:22:\"recent-works-thumbnail\";a:4:{s:4:\"file\";s:29:\"IMG_20200302_145304-66x66.jpg\";s:5:\"width\";i:66;s:6:\"height\";i:66;s:9:\"mime-type\";s:10:\"image/jpeg\";}i:0;a:4:{s:4:\"file\";s:31:\"IMG_20200302_145304-200x113.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:113;s:9:\"mime-type\";s:10:\"image/jpeg\";}i:1;a:4:{s:4:\"file\";s:31:\"IMG_20200302_145304-400x225.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:225;s:9:\"mime-type\";s:10:\"image/jpeg\";}i:2;a:4:{s:4:\"file\";s:31:\"IMG_20200302_145304-600x338.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:338;s:9:\"mime-type\";s:10:\"image/jpeg\";}i:3;a:4:{s:4:\"file\";s:31:\"IMG_20200302_145304-800x450.jpg\";s:5:\"width\";i:800;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}i:4;a:4:{s:4:\"file\";s:32:\"IMG_20200302_145304-1200x675.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:675;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:3:\"2.4\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:7:\"YAL-L21\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1583160784\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:4:\"4.75\";s:3:\"iso\";s:3:\"400\";s:13:\"shutter_speed\";s:4:\"0.03\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'),
(10082, 1420, '_wp_old_slug', 'about-3'),
(10083, 1422, 'slide_template', 'default'),
(10084, 1422, 'pyre_type', 'image'),
(10085, 1422, 'pyre_youtube_id', ''),
(10086, 1422, 'pyre_vimeo_id', ''),
(10087, 1422, 'pyre_webm', ''),
(10088, 1422, 'pyre_mp4', ''),
(10089, 1422, 'pyre_ogv', ''),
(10090, 1422, 'pyre_preview_image', ''),
(10091, 1422, 'pyre_video_bg_color', ''),
(10092, 1422, 'pyre_mute_video', 'yes'),
(10093, 1422, 'pyre_autoplay_video', 'yes'),
(10094, 1422, 'pyre_loop_video', 'yes'),
(10095, 1422, 'pyre_hide_video_controls', 'yes'),
(10096, 1422, 'pyre_content_alignment', 'center'),
(10097, 1422, 'pyre_heading', ''),
(10098, 1422, 'pyre_heading_font_size', '60'),
(10099, 1422, 'pyre_heading_color', '#ffffff'),
(10100, 1422, 'pyre_heading_bg', 'no'),
(10101, 1422, 'pyre_heading_bg_color', ''),
(10102, 1422, 'pyre_caption', ''),
(10103, 1422, 'pyre_caption_font_size', '26'),
(10104, 1422, 'pyre_caption_color', '#ffffff'),
(10105, 1422, 'pyre_caption_bg', 'no'),
(10106, 1422, 'pyre_caption_bg_color', ''),
(10107, 1422, 'pyre_link_type', 'button'),
(10108, 1422, 'pyre_slide_link', ''),
(10109, 1422, 'pyre_slide_target', 'yes'),
(10110, 1422, 'pyre_button_1', ''),
(10111, 1422, 'pyre_button_2', ''),
(10112, 1422, '_thumbnail_id', '1423'),
(10113, 1422, '_edit_lock', '1583315989:1'),
(10114, 1422, '_edit_last', '1'),
(10115, 1422, 'pyre_mp4_id', ''),
(10116, 1422, 'pyre_webm_id', ''),
(10117, 1422, 'pyre_ogv_id', ''),
(10118, 1422, 'pyre_preview_image_id', ''),
(10119, 1422, 'pyre_aspect_ratio', ''),
(10120, 1422, 'pyre_video_display', 'cover'),
(10121, 1422, 'pyre_heading_separator', 'none'),
(10122, 1422, 'pyre_heading_size', '2'),
(10123, 1422, 'pyre_caption_separator', 'none'),
(10124, 1422, 'pyre_caption_size', '3'),
(10125, 1422, '_wp_old_slug', 'about'),
(10126, 1422, '_wp_old_slug', 'about-3'),
(10146, 1423, '_wp_attached_file', '2020/03/IMG_20200302_145248.jpg');
INSERT INTO `wp_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(10147, 1423, '_wp_attachment_metadata', 'a:5:{s:5:\"width\";i:1920;s:6:\"height\";i:1080;s:4:\"file\";s:31:\"2020/03/IMG_20200302_145248.jpg\";s:5:\"sizes\";a:19:{s:6:\"medium\";a:4:{s:4:\"file\";s:31:\"IMG_20200302_145248-300x169.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:169;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:32:\"IMG_20200302_145248-1024x576.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:576;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:31:\"IMG_20200302_145248-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:31:\"IMG_20200302_145248-768x432.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:432;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:32:\"IMG_20200302_145248-1536x864.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:864;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"portfolio-full\";a:4:{s:4:\"file\";s:31:\"IMG_20200302_145248-940x400.jpg\";s:5:\"width\";i:940;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:13:\"portfolio-one\";a:4:{s:4:\"file\";s:31:\"IMG_20200302_145248-540x272.jpg\";s:5:\"width\";i:540;s:6:\"height\";i:272;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:13:\"portfolio-two\";a:4:{s:4:\"file\";s:31:\"IMG_20200302_145248-460x295.jpg\";s:5:\"width\";i:460;s:6:\"height\";i:295;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"portfolio-three\";a:4:{s:4:\"file\";s:31:\"IMG_20200302_145248-300x214.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:214;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"portfolio-five\";a:4:{s:4:\"file\";s:31:\"IMG_20200302_145248-177x142.jpg\";s:5:\"width\";i:177;s:6:\"height\";i:142;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:10:\"blog-large\";a:4:{s:4:\"file\";s:31:\"IMG_20200302_145248-669x272.jpg\";s:5:\"width\";i:669;s:6:\"height\";i:272;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"blog-medium\";a:4:{s:4:\"file\";s:31:\"IMG_20200302_145248-320x202.jpg\";s:5:\"width\";i:320;s:6:\"height\";i:202;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"recent-posts\";a:4:{s:4:\"file\";s:31:\"IMG_20200302_145248-700x441.jpg\";s:5:\"width\";i:700;s:6:\"height\";i:441;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:22:\"recent-works-thumbnail\";a:4:{s:4:\"file\";s:29:\"IMG_20200302_145248-66x66.jpg\";s:5:\"width\";i:66;s:6:\"height\";i:66;s:9:\"mime-type\";s:10:\"image/jpeg\";}i:0;a:4:{s:4:\"file\";s:31:\"IMG_20200302_145248-200x113.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:113;s:9:\"mime-type\";s:10:\"image/jpeg\";}i:1;a:4:{s:4:\"file\";s:31:\"IMG_20200302_145248-400x225.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:225;s:9:\"mime-type\";s:10:\"image/jpeg\";}i:2;a:4:{s:4:\"file\";s:31:\"IMG_20200302_145248-600x338.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:338;s:9:\"mime-type\";s:10:\"image/jpeg\";}i:3;a:4:{s:4:\"file\";s:31:\"IMG_20200302_145248-800x450.jpg\";s:5:\"width\";i:800;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}i:4;a:4:{s:4:\"file\";s:32:\"IMG_20200302_145248-1200x675.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:675;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:3:\"2.4\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:7:\"YAL-L21\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1583160768\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:4:\"4.75\";s:3:\"iso\";s:3:\"640\";s:13:\"shutter_speed\";s:4:\"0.03\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'),
(10148, 1422, '_wp_old_slug', 'about-3-2'),
(10149, 1424, '_wp_old_slug', 'the-lodge-cloned'),
(10150, 1424, 'slide_template', 'default'),
(10151, 1424, 'pyre_type', 'image'),
(10152, 1424, 'pyre_youtube_id', ''),
(10153, 1424, 'pyre_vimeo_id', ''),
(10154, 1424, 'pyre_webm', ''),
(10155, 1424, 'pyre_mp4', ''),
(10156, 1424, 'pyre_ogv', ''),
(10157, 1424, 'pyre_preview_image', ''),
(10158, 1424, 'pyre_video_bg_color', ''),
(10159, 1424, 'pyre_mute_video', 'yes'),
(10160, 1424, 'pyre_autoplay_video', 'yes'),
(10161, 1424, 'pyre_loop_video', 'yes'),
(10162, 1424, 'pyre_hide_video_controls', 'yes'),
(10163, 1424, 'pyre_content_alignment', 'center'),
(10164, 1424, 'pyre_heading', ''),
(10165, 1424, 'pyre_heading_font_size', '60'),
(10166, 1424, 'pyre_heading_color', '#ffffff'),
(10167, 1424, 'pyre_heading_bg', 'no'),
(10168, 1424, 'pyre_heading_bg_color', ''),
(10169, 1424, 'pyre_caption', ''),
(10170, 1424, 'pyre_caption_font_size', '26'),
(10171, 1424, 'pyre_caption_color', '#ffffff'),
(10172, 1424, 'pyre_caption_bg', 'no'),
(10173, 1424, 'pyre_caption_bg_color', ''),
(10174, 1424, 'pyre_link_type', 'button'),
(10175, 1424, 'pyre_slide_link', ''),
(10176, 1424, 'pyre_slide_target', 'yes'),
(10177, 1424, 'pyre_button_1', ''),
(10178, 1424, 'pyre_button_2', ''),
(10179, 1424, '_thumbnail_id', '1425'),
(10180, 1424, '_edit_lock', '1583316358:1'),
(10181, 1424, '_edit_last', '1'),
(10182, 1424, 'pyre_mp4_id', ''),
(10183, 1424, 'pyre_webm_id', ''),
(10184, 1424, 'pyre_ogv_id', ''),
(10185, 1424, 'pyre_preview_image_id', ''),
(10186, 1424, 'pyre_aspect_ratio', ''),
(10187, 1424, 'pyre_video_display', 'cover'),
(10188, 1424, 'pyre_heading_separator', 'none'),
(10189, 1424, 'pyre_heading_size', '2'),
(10190, 1424, 'pyre_caption_separator', 'none'),
(10191, 1424, 'pyre_caption_size', '3'),
(10192, 1424, '_wp_old_slug', 'about'),
(10193, 1424, '_wp_old_slug', 'about-3'),
(10194, 1424, '_wp_old_slug', 'about-3-2'),
(10195, 1425, '_wp_attached_file', '2020/03/IMG_20200302_144553.jpg'),
(10196, 1425, '_wp_attachment_metadata', 'a:5:{s:5:\"width\";i:1920;s:6:\"height\";i:1080;s:4:\"file\";s:31:\"2020/03/IMG_20200302_144553.jpg\";s:5:\"sizes\";a:19:{s:6:\"medium\";a:4:{s:4:\"file\";s:31:\"IMG_20200302_144553-300x169.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:169;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:32:\"IMG_20200302_144553-1024x576.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:576;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:31:\"IMG_20200302_144553-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:31:\"IMG_20200302_144553-768x432.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:432;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:32:\"IMG_20200302_144553-1536x864.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:864;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"portfolio-full\";a:4:{s:4:\"file\";s:31:\"IMG_20200302_144553-940x400.jpg\";s:5:\"width\";i:940;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:13:\"portfolio-one\";a:4:{s:4:\"file\";s:31:\"IMG_20200302_144553-540x272.jpg\";s:5:\"width\";i:540;s:6:\"height\";i:272;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:13:\"portfolio-two\";a:4:{s:4:\"file\";s:31:\"IMG_20200302_144553-460x295.jpg\";s:5:\"width\";i:460;s:6:\"height\";i:295;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"portfolio-three\";a:4:{s:4:\"file\";s:31:\"IMG_20200302_144553-300x214.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:214;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"portfolio-five\";a:4:{s:4:\"file\";s:31:\"IMG_20200302_144553-177x142.jpg\";s:5:\"width\";i:177;s:6:\"height\";i:142;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:10:\"blog-large\";a:4:{s:4:\"file\";s:31:\"IMG_20200302_144553-669x272.jpg\";s:5:\"width\";i:669;s:6:\"height\";i:272;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"blog-medium\";a:4:{s:4:\"file\";s:31:\"IMG_20200302_144553-320x202.jpg\";s:5:\"width\";i:320;s:6:\"height\";i:202;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"recent-posts\";a:4:{s:4:\"file\";s:31:\"IMG_20200302_144553-700x441.jpg\";s:5:\"width\";i:700;s:6:\"height\";i:441;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:22:\"recent-works-thumbnail\";a:4:{s:4:\"file\";s:29:\"IMG_20200302_144553-66x66.jpg\";s:5:\"width\";i:66;s:6:\"height\";i:66;s:9:\"mime-type\";s:10:\"image/jpeg\";}i:0;a:4:{s:4:\"file\";s:31:\"IMG_20200302_144553-200x113.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:113;s:9:\"mime-type\";s:10:\"image/jpeg\";}i:1;a:4:{s:4:\"file\";s:31:\"IMG_20200302_144553-400x225.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:225;s:9:\"mime-type\";s:10:\"image/jpeg\";}i:2;a:4:{s:4:\"file\";s:31:\"IMG_20200302_144553-600x338.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:338;s:9:\"mime-type\";s:10:\"image/jpeg\";}i:3;a:4:{s:4:\"file\";s:31:\"IMG_20200302_144553-800x450.jpg\";s:5:\"width\";i:800;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}i:4;a:4:{s:4:\"file\";s:32:\"IMG_20200302_144553-1200x675.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:675;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:3:\"2.4\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:7:\"YAL-L21\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1583160353\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:4:\"4.75\";s:3:\"iso\";s:3:\"800\";s:13:\"shutter_speed\";s:4:\"0.03\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'),
(10197, 1426, '_wp_old_slug', 'the-lodge-cloned'),
(10198, 1426, '_wp_old_slug', 'the-lodge-cloned'),
(10199, 1426, '_wp_old_slug', 'about'),
(10200, 1426, '_wp_old_slug', 'about-3'),
(10201, 1426, '_wp_old_slug', 'about-3-2'),
(10202, 1426, 'slide_template', 'default'),
(10203, 1426, 'pyre_type', 'image'),
(10204, 1426, 'pyre_youtube_id', ''),
(10205, 1426, 'pyre_vimeo_id', ''),
(10206, 1426, 'pyre_webm', ''),
(10207, 1426, 'pyre_mp4', ''),
(10208, 1426, 'pyre_ogv', ''),
(10209, 1426, 'pyre_preview_image', ''),
(10210, 1426, 'pyre_video_bg_color', ''),
(10211, 1426, 'pyre_mute_video', 'yes'),
(10212, 1426, 'pyre_autoplay_video', 'yes'),
(10213, 1426, 'pyre_loop_video', 'yes'),
(10214, 1426, 'pyre_hide_video_controls', 'yes'),
(10215, 1426, 'pyre_content_alignment', 'center'),
(10216, 1426, 'pyre_heading', ''),
(10217, 1426, 'pyre_heading_font_size', '60'),
(10218, 1426, 'pyre_heading_color', '#ffffff'),
(10219, 1426, 'pyre_heading_bg', 'no'),
(10220, 1426, 'pyre_heading_bg_color', ''),
(10221, 1426, 'pyre_caption', ''),
(10222, 1426, 'pyre_caption_font_size', '26'),
(10223, 1426, 'pyre_caption_color', '#ffffff'),
(10224, 1426, 'pyre_caption_bg', 'no'),
(10225, 1426, 'pyre_caption_bg_color', ''),
(10226, 1426, 'pyre_link_type', 'button'),
(10227, 1426, 'pyre_slide_link', ''),
(10228, 1426, 'pyre_slide_target', 'yes'),
(10229, 1426, 'pyre_button_1', ''),
(10230, 1426, 'pyre_button_2', ''),
(10231, 1426, '_thumbnail_id', '1427'),
(10232, 1426, '_edit_lock', '1583316353:1'),
(10233, 1426, '_edit_last', '1'),
(10234, 1426, 'pyre_mp4_id', ''),
(10235, 1426, 'pyre_webm_id', ''),
(10236, 1426, 'pyre_ogv_id', ''),
(10237, 1426, 'pyre_preview_image_id', ''),
(10238, 1426, 'pyre_aspect_ratio', ''),
(10239, 1426, 'pyre_video_display', 'cover'),
(10240, 1426, 'pyre_heading_separator', 'none'),
(10241, 1426, 'pyre_heading_size', '2'),
(10242, 1426, 'pyre_caption_separator', 'none'),
(10243, 1426, 'pyre_caption_size', '3'),
(10244, 1427, '_wp_attached_file', '2020/03/IMG_20200302_145224.jpg'),
(10245, 1427, '_wp_attachment_metadata', 'a:5:{s:5:\"width\";i:1920;s:6:\"height\";i:1080;s:4:\"file\";s:31:\"2020/03/IMG_20200302_145224.jpg\";s:5:\"sizes\";a:19:{s:6:\"medium\";a:4:{s:4:\"file\";s:31:\"IMG_20200302_145224-300x169.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:169;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:32:\"IMG_20200302_145224-1024x576.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:576;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:31:\"IMG_20200302_145224-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:31:\"IMG_20200302_145224-768x432.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:432;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:32:\"IMG_20200302_145224-1536x864.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:864;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"portfolio-full\";a:4:{s:4:\"file\";s:31:\"IMG_20200302_145224-940x400.jpg\";s:5:\"width\";i:940;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:13:\"portfolio-one\";a:4:{s:4:\"file\";s:31:\"IMG_20200302_145224-540x272.jpg\";s:5:\"width\";i:540;s:6:\"height\";i:272;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:13:\"portfolio-two\";a:4:{s:4:\"file\";s:31:\"IMG_20200302_145224-460x295.jpg\";s:5:\"width\";i:460;s:6:\"height\";i:295;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"portfolio-three\";a:4:{s:4:\"file\";s:31:\"IMG_20200302_145224-300x214.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:214;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"portfolio-five\";a:4:{s:4:\"file\";s:31:\"IMG_20200302_145224-177x142.jpg\";s:5:\"width\";i:177;s:6:\"height\";i:142;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:10:\"blog-large\";a:4:{s:4:\"file\";s:31:\"IMG_20200302_145224-669x272.jpg\";s:5:\"width\";i:669;s:6:\"height\";i:272;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"blog-medium\";a:4:{s:4:\"file\";s:31:\"IMG_20200302_145224-320x202.jpg\";s:5:\"width\";i:320;s:6:\"height\";i:202;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"recent-posts\";a:4:{s:4:\"file\";s:31:\"IMG_20200302_145224-700x441.jpg\";s:5:\"width\";i:700;s:6:\"height\";i:441;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:22:\"recent-works-thumbnail\";a:4:{s:4:\"file\";s:29:\"IMG_20200302_145224-66x66.jpg\";s:5:\"width\";i:66;s:6:\"height\";i:66;s:9:\"mime-type\";s:10:\"image/jpeg\";}i:0;a:4:{s:4:\"file\";s:31:\"IMG_20200302_145224-200x113.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:113;s:9:\"mime-type\";s:10:\"image/jpeg\";}i:1;a:4:{s:4:\"file\";s:31:\"IMG_20200302_145224-400x225.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:225;s:9:\"mime-type\";s:10:\"image/jpeg\";}i:2;a:4:{s:4:\"file\";s:31:\"IMG_20200302_145224-600x338.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:338;s:9:\"mime-type\";s:10:\"image/jpeg\";}i:3;a:4:{s:4:\"file\";s:31:\"IMG_20200302_145224-800x450.jpg\";s:5:\"width\";i:800;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}i:4;a:4:{s:4:\"file\";s:32:\"IMG_20200302_145224-1200x675.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:675;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:3:\"2.4\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:7:\"YAL-L21\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1583160744\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:4:\"4.75\";s:3:\"iso\";s:3:\"640\";s:13:\"shutter_speed\";s:4:\"0.03\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'),
(10246, 1428, '_wp_old_slug', 'the-lodge-cloned'),
(10247, 1428, '_wp_old_slug', 'the-lodge-cloned'),
(10248, 1428, '_wp_old_slug', 'the-lodge-cloned'),
(10249, 1428, '_wp_old_slug', 'about'),
(10250, 1428, '_wp_old_slug', 'about-3'),
(10251, 1428, '_wp_old_slug', 'about-3-2'),
(10252, 1428, 'slide_template', 'default'),
(10253, 1428, 'pyre_type', 'image'),
(10254, 1428, 'pyre_youtube_id', ''),
(10255, 1428, 'pyre_vimeo_id', ''),
(10256, 1428, 'pyre_webm', ''),
(10257, 1428, 'pyre_mp4', ''),
(10258, 1428, 'pyre_ogv', ''),
(10259, 1428, 'pyre_preview_image', ''),
(10260, 1428, 'pyre_video_bg_color', ''),
(10261, 1428, 'pyre_mute_video', 'yes'),
(10262, 1428, 'pyre_autoplay_video', 'yes'),
(10263, 1428, 'pyre_loop_video', 'yes'),
(10264, 1428, 'pyre_hide_video_controls', 'yes'),
(10265, 1428, 'pyre_content_alignment', 'center'),
(10266, 1428, 'pyre_heading', ''),
(10267, 1428, 'pyre_heading_font_size', '60'),
(10268, 1428, 'pyre_heading_color', '#ffffff'),
(10269, 1428, 'pyre_heading_bg', 'no'),
(10270, 1428, 'pyre_heading_bg_color', ''),
(10271, 1428, 'pyre_caption', ''),
(10272, 1428, 'pyre_caption_font_size', '26'),
(10273, 1428, 'pyre_caption_color', '#ffffff'),
(10274, 1428, 'pyre_caption_bg', 'no'),
(10275, 1428, 'pyre_caption_bg_color', ''),
(10276, 1428, 'pyre_link_type', 'button'),
(10277, 1428, 'pyre_slide_link', ''),
(10278, 1428, 'pyre_slide_target', 'yes'),
(10279, 1428, 'pyre_button_1', ''),
(10280, 1428, 'pyre_button_2', ''),
(10281, 1428, '_thumbnail_id', '1429'),
(10282, 1428, '_edit_lock', '1583316348:1'),
(10283, 1428, '_edit_last', '1'),
(10284, 1428, 'pyre_mp4_id', ''),
(10285, 1428, 'pyre_webm_id', ''),
(10286, 1428, 'pyre_ogv_id', ''),
(10287, 1428, 'pyre_preview_image_id', ''),
(10288, 1428, 'pyre_aspect_ratio', ''),
(10289, 1428, 'pyre_video_display', 'cover'),
(10290, 1428, 'pyre_heading_separator', 'none'),
(10291, 1428, 'pyre_heading_size', '2'),
(10292, 1428, 'pyre_caption_separator', 'none'),
(10293, 1428, 'pyre_caption_size', '3'),
(10294, 1429, '_wp_attached_file', '2020/03/IMG_20200302_145321.jpg'),
(10295, 1429, '_wp_attachment_metadata', 'a:5:{s:5:\"width\";i:1920;s:6:\"height\";i:1080;s:4:\"file\";s:31:\"2020/03/IMG_20200302_145321.jpg\";s:5:\"sizes\";a:19:{s:6:\"medium\";a:4:{s:4:\"file\";s:31:\"IMG_20200302_145321-300x169.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:169;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:32:\"IMG_20200302_145321-1024x576.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:576;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:31:\"IMG_20200302_145321-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:31:\"IMG_20200302_145321-768x432.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:432;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:32:\"IMG_20200302_145321-1536x864.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:864;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"portfolio-full\";a:4:{s:4:\"file\";s:31:\"IMG_20200302_145321-940x400.jpg\";s:5:\"width\";i:940;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:13:\"portfolio-one\";a:4:{s:4:\"file\";s:31:\"IMG_20200302_145321-540x272.jpg\";s:5:\"width\";i:540;s:6:\"height\";i:272;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:13:\"portfolio-two\";a:4:{s:4:\"file\";s:31:\"IMG_20200302_145321-460x295.jpg\";s:5:\"width\";i:460;s:6:\"height\";i:295;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"portfolio-three\";a:4:{s:4:\"file\";s:31:\"IMG_20200302_145321-300x214.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:214;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"portfolio-five\";a:4:{s:4:\"file\";s:31:\"IMG_20200302_145321-177x142.jpg\";s:5:\"width\";i:177;s:6:\"height\";i:142;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:10:\"blog-large\";a:4:{s:4:\"file\";s:31:\"IMG_20200302_145321-669x272.jpg\";s:5:\"width\";i:669;s:6:\"height\";i:272;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"blog-medium\";a:4:{s:4:\"file\";s:31:\"IMG_20200302_145321-320x202.jpg\";s:5:\"width\";i:320;s:6:\"height\";i:202;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"recent-posts\";a:4:{s:4:\"file\";s:31:\"IMG_20200302_145321-700x441.jpg\";s:5:\"width\";i:700;s:6:\"height\";i:441;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:22:\"recent-works-thumbnail\";a:4:{s:4:\"file\";s:29:\"IMG_20200302_145321-66x66.jpg\";s:5:\"width\";i:66;s:6:\"height\";i:66;s:9:\"mime-type\";s:10:\"image/jpeg\";}i:0;a:4:{s:4:\"file\";s:31:\"IMG_20200302_145321-200x113.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:113;s:9:\"mime-type\";s:10:\"image/jpeg\";}i:1;a:4:{s:4:\"file\";s:31:\"IMG_20200302_145321-400x225.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:225;s:9:\"mime-type\";s:10:\"image/jpeg\";}i:2;a:4:{s:4:\"file\";s:31:\"IMG_20200302_145321-600x338.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:338;s:9:\"mime-type\";s:10:\"image/jpeg\";}i:3;a:4:{s:4:\"file\";s:31:\"IMG_20200302_145321-800x450.jpg\";s:5:\"width\";i:800;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}i:4;a:4:{s:4:\"file\";s:32:\"IMG_20200302_145321-1200x675.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:675;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:3:\"2.4\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:7:\"YAL-L21\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1583160801\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:4:\"4.75\";s:3:\"iso\";s:3:\"400\";s:13:\"shutter_speed\";s:4:\"0.03\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'),
(10345, 1431, '_wp_old_slug', 'the-lodge-cloned'),
(10346, 1431, '_wp_old_slug', 'the-lodge-cloned'),
(10347, 1431, '_wp_old_slug', 'the-lodge-cloned'),
(10348, 1431, '_wp_old_slug', 'the-lodge-cloned'),
(10349, 1431, '_wp_old_slug', 'about'),
(10350, 1431, '_wp_old_slug', 'about-3'),
(10351, 1431, '_wp_old_slug', 'about-3-2'),
(10352, 1431, 'slide_template', 'default'),
(10353, 1431, 'pyre_type', 'image'),
(10354, 1431, 'pyre_youtube_id', ''),
(10355, 1431, 'pyre_vimeo_id', ''),
(10356, 1431, 'pyre_webm', ''),
(10357, 1431, 'pyre_mp4', ''),
(10358, 1431, 'pyre_ogv', ''),
(10359, 1431, 'pyre_preview_image', ''),
(10360, 1431, 'pyre_video_bg_color', ''),
(10361, 1431, 'pyre_mute_video', 'yes'),
(10362, 1431, 'pyre_autoplay_video', 'yes'),
(10363, 1431, 'pyre_loop_video', 'yes'),
(10364, 1431, 'pyre_hide_video_controls', 'yes'),
(10365, 1431, 'pyre_content_alignment', 'center'),
(10366, 1431, 'pyre_heading', ''),
(10367, 1431, 'pyre_heading_font_size', '60'),
(10368, 1431, 'pyre_heading_color', '#ffffff'),
(10369, 1431, 'pyre_heading_bg', 'no'),
(10370, 1431, 'pyre_heading_bg_color', ''),
(10371, 1431, 'pyre_caption', ''),
(10372, 1431, 'pyre_caption_font_size', '26'),
(10373, 1431, 'pyre_caption_color', '#ffffff'),
(10374, 1431, 'pyre_caption_bg', 'no'),
(10375, 1431, 'pyre_caption_bg_color', ''),
(10376, 1431, 'pyre_link_type', 'button'),
(10377, 1431, 'pyre_slide_link', ''),
(10378, 1431, 'pyre_slide_target', 'yes'),
(10379, 1431, 'pyre_button_1', ''),
(10380, 1431, 'pyre_button_2', ''),
(10381, 1431, '_thumbnail_id', '1432'),
(10382, 1431, '_edit_lock', '1583316373:1'),
(10383, 1431, '_edit_last', '1'),
(10384, 1431, 'pyre_mp4_id', ''),
(10385, 1431, 'pyre_webm_id', ''),
(10386, 1431, 'pyre_ogv_id', ''),
(10387, 1431, 'pyre_preview_image_id', ''),
(10388, 1431, 'pyre_aspect_ratio', ''),
(10389, 1431, 'pyre_video_display', 'cover'),
(10390, 1431, 'pyre_heading_separator', 'none'),
(10391, 1431, 'pyre_heading_size', '2'),
(10392, 1431, 'pyre_caption_separator', 'none'),
(10393, 1431, 'pyre_caption_size', '3'),
(10408, 1432, '_wp_attached_file', '2020/03/IMG_20200301_163055-1.jpg'),
(10409, 1432, '_wp_attachment_metadata', 'a:5:{s:5:\"width\";i:1920;s:6:\"height\";i:1080;s:4:\"file\";s:33:\"2020/03/IMG_20200301_163055-1.jpg\";s:5:\"sizes\";a:19:{s:6:\"medium\";a:4:{s:4:\"file\";s:33:\"IMG_20200301_163055-1-300x169.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:169;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:34:\"IMG_20200301_163055-1-1024x576.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:576;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:33:\"IMG_20200301_163055-1-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:33:\"IMG_20200301_163055-1-768x432.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:432;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:34:\"IMG_20200301_163055-1-1536x864.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:864;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"portfolio-full\";a:4:{s:4:\"file\";s:33:\"IMG_20200301_163055-1-940x400.jpg\";s:5:\"width\";i:940;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:13:\"portfolio-one\";a:4:{s:4:\"file\";s:33:\"IMG_20200301_163055-1-540x272.jpg\";s:5:\"width\";i:540;s:6:\"height\";i:272;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:13:\"portfolio-two\";a:4:{s:4:\"file\";s:33:\"IMG_20200301_163055-1-460x295.jpg\";s:5:\"width\";i:460;s:6:\"height\";i:295;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"portfolio-three\";a:4:{s:4:\"file\";s:33:\"IMG_20200301_163055-1-300x214.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:214;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"portfolio-five\";a:4:{s:4:\"file\";s:33:\"IMG_20200301_163055-1-177x142.jpg\";s:5:\"width\";i:177;s:6:\"height\";i:142;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:10:\"blog-large\";a:4:{s:4:\"file\";s:33:\"IMG_20200301_163055-1-669x272.jpg\";s:5:\"width\";i:669;s:6:\"height\";i:272;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"blog-medium\";a:4:{s:4:\"file\";s:33:\"IMG_20200301_163055-1-320x202.jpg\";s:5:\"width\";i:320;s:6:\"height\";i:202;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"recent-posts\";a:4:{s:4:\"file\";s:33:\"IMG_20200301_163055-1-700x441.jpg\";s:5:\"width\";i:700;s:6:\"height\";i:441;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:22:\"recent-works-thumbnail\";a:4:{s:4:\"file\";s:31:\"IMG_20200301_163055-1-66x66.jpg\";s:5:\"width\";i:66;s:6:\"height\";i:66;s:9:\"mime-type\";s:10:\"image/jpeg\";}i:0;a:4:{s:4:\"file\";s:33:\"IMG_20200301_163055-1-200x113.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:113;s:9:\"mime-type\";s:10:\"image/jpeg\";}i:1;a:4:{s:4:\"file\";s:33:\"IMG_20200301_163055-1-400x225.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:225;s:9:\"mime-type\";s:10:\"image/jpeg\";}i:2;a:4:{s:4:\"file\";s:33:\"IMG_20200301_163055-1-600x338.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:338;s:9:\"mime-type\";s:10:\"image/jpeg\";}i:3;a:4:{s:4:\"file\";s:33:\"IMG_20200301_163055-1-800x450.jpg\";s:5:\"width\";i:800;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}i:4;a:4:{s:4:\"file\";s:34:\"IMG_20200301_163055-1-1200x675.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:675;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:3:\"2.4\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:7:\"YAL-L21\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1583080255\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:4:\"4.75\";s:3:\"iso\";s:3:\"160\";s:13:\"shutter_speed\";s:4:\"0.01\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'),
(10410, 1431, '_wp_old_slug', 'about-3-2-2-2-2-2-2'),
(10411, 1434, '_wp_attached_file', '2020/05/covid-19-logo.jpg'),
(10412, 1434, '_wp_attachment_metadata', 'a:5:{s:5:\"width\";i:116;s:6:\"height\";i:116;s:4:\"file\";s:25:\"2020/05/covid-19-logo.jpg\";s:5:\"sizes\";a:1:{s:22:\"recent-works-thumbnail\";a:4:{s:4:\"file\";s:23:\"covid-19-logo-66x66.jpg\";s:5:\"width\";i:66;s:6:\"height\";i:66;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(10425, 1436, '_wp_attached_file', '2020/05/covid-w.png'),
(10426, 1436, '_wp_attachment_metadata', 'a:5:{s:5:\"width\";i:364;s:6:\"height\";i:60;s:4:\"file\";s:19:\"2020/05/covid-w.png\";s:5:\"sizes\";a:7:{s:6:\"medium\";a:4:{s:4:\"file\";s:18:\"covid-w-300x49.png\";s:5:\"width\";i:300;s:6:\"height\";i:49;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:18:\"covid-w-150x60.png\";s:5:\"width\";i:150;s:6:\"height\";i:60;s:9:\"mime-type\";s:9:\"image/png\";}s:15:\"portfolio-three\";a:4:{s:4:\"file\";s:18:\"covid-w-300x60.png\";s:5:\"width\";i:300;s:6:\"height\";i:60;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"portfolio-five\";a:4:{s:4:\"file\";s:18:\"covid-w-177x60.png\";s:5:\"width\";i:177;s:6:\"height\";i:60;s:9:\"mime-type\";s:9:\"image/png\";}s:11:\"blog-medium\";a:4:{s:4:\"file\";s:18:\"covid-w-320x60.png\";s:5:\"width\";i:320;s:6:\"height\";i:60;s:9:\"mime-type\";s:9:\"image/png\";}s:22:\"recent-works-thumbnail\";a:4:{s:4:\"file\";s:17:\"covid-w-66x60.png\";s:5:\"width\";i:66;s:6:\"height\";i:60;s:9:\"mime-type\";s:9:\"image/png\";}i:0;a:4:{s:4:\"file\";s:18:\"covid-w-200x33.png\";s:5:\"width\";i:200;s:6:\"height\";i:33;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:{}}}'),
(10513, 7, 'sbg_selected_sidebar', 'a:1:{i:0;s:1:\"0\";}'),
(10514, 7, 'sbg_selected_sidebar_replacement', 'a:1:{i:0;s:0:\"\";}'),
(10515, 7, 'sbg_selected_sidebar_2', 'a:1:{i:0;s:1:\"0\";}'),
(10516, 7, 'sbg_selected_sidebar_2_replacement', 'a:1:{i:0;s:0:\"\";}'),
(10525, 1121, 'pyre_fallback_id', ''),
(10526, 1121, 'pyre_demo_slider', ''),
(10527, 1121, 'pyre_combined_header_bg_color', ''),
(10528, 1121, 'pyre_mobile_header_bg_color', ''),
(10529, 1121, 'pyre_header_bg_id', ''),
(10530, 1121, 'pyre_responsive_sidebar_order', ''),
(10531, 1121, 'pyre_sidebar_sticky', 'default'),
(10532, 1121, 'pyre_page_bg_id', ''),
(10533, 1121, 'pyre_wide_page_bg_id', ''),
(10534, 1121, 'pyre_page_title_line_height', ''),
(10535, 1121, 'pyre_page_title_subheader_font_color', ''),
(10536, 1121, 'pyre_page_title_bar_bg_id', ''),
(10537, 1121, 'pyre_page_title_bar_bg_retina_id', ''),
(10538, 1121, 'kd_featured-image-2_page_id', ''),
(10539, 1121, 'kd_featured-image-3_page_id', ''),
(10540, 1121, 'kd_featured-image-4_page_id', ''),
(10541, 1121, 'kd_featured-image-5_page_id', ''),
(10542, 1121, 'sbg_selected_sidebar', 'a:1:{i:0;s:1:\"0\";}'),
(10543, 1121, 'sbg_selected_sidebar_replacement', 'a:1:{i:0;s:0:\"\";}'),
(10544, 1121, 'sbg_selected_sidebar_2', 'a:1:{i:0;s:1:\"0\";}'),
(10545, 1121, 'sbg_selected_sidebar_2_replacement', 'a:1:{i:0;s:0:\"\";}'),
(10546, 4, '_hash', '39ceadbd74051ea17f213973cd92b21b3771364d'),
(10547, 246, '_hash', '0d486155cdd97bfcf490d3a4a1e20add73c23572'),
(10548, 1276, '_hash', 'b7d2175e1301a9daacaecb37dca73b5e7b1f2768'),
(10555, 7, '_fusion', 'a:26:{s:15:\"slider_position\";s:5:\"below\";s:11:\"slider_type\";s:4:\"flex\";s:6:\"slider\";s:1:\"0\";s:9:\"wooslider\";s:5:\"home2\";s:9:\"revslider\";s:1:\"0\";s:13:\"elasticslider\";s:1:\"0\";s:8:\"fallback\";s:65:\"https://msla.co.za/lodge/wp-content/uploads/2015/01/1000hills.jpg\";s:12:\"main_padding\";a:2:{s:3:\"top\";s:3:\"0px\";s:6:\"bottom\";s:3:\"0px\";}s:25:\"show_first_featured_image\";s:3:\"yes\";s:14:\"display_header\";s:3:\"yes\";s:14:\"header_bg_full\";s:2:\"no\";s:16:\"header_bg_repeat\";s:6:\"repeat\";s:6:\"layout\";s:4:\"wide\";s:7:\"bg_full\";s:2:\"no\";s:9:\"bg_repeat\";s:6:\"repeat\";s:15:\"content_bg_full\";s:2:\"no\";s:17:\"content_bg_repeat\";s:6:\"repeat\";s:14:\"blog_width_100\";s:2:\"no\";s:17:\"portfolio_filters\";s:3:\"yes\";s:14:\"page_title_bar\";s:2:\"no\";s:19:\"page_title_bar_text\";s:3:\"yes\";s:11:\"fallback_id\";s:3:\"840\";s:20:\"sbg_selected_sidebar\";a:1:{i:0;s:1:\"0\";}s:13:\"pages_sidebar\";s:0:\"\";s:22:\"sbg_selected_sidebar_2\";a:1:{i:0;s:1:\"0\";}s:15:\"pages_sidebar_2\";s:0:\"\";}'),
(10556, 7, 'avada_post_views_count', '1123'),
(10557, 7, 'avada_today_post_views_count', '10'),
(10558, 7, 'avada_post_views_count_today_date', '01-04-2025'),
(10559, 24, '_fusion', 'a:22:{s:4:\"type\";s:5:\"image\";s:10:\"mute_video\";s:3:\"yes\";s:14:\"autoplay_video\";s:3:\"yes\";s:10:\"loop_video\";s:3:\"yes\";s:19:\"hide_video_controls\";s:3:\"yes\";s:17:\"content_alignment\";s:6:\"center\";s:7:\"heading\";s:27:\"PRIVATE GUEST ACCOMMODATION\";s:17:\"heading_font_size\";s:2:\"55\";s:13:\"heading_color\";s:7:\"#A8A6AD\";s:10:\"heading_bg\";s:2:\"no\";s:7:\"caption\";s:40:\"Family, Friends, Couples and Individuals\";s:17:\"caption_font_size\";s:2:\"30\";s:13:\"caption_color\";s:4:\"#fff\";s:10:\"caption_bg\";s:3:\"yes\";s:9:\"link_type\";s:6:\"button\";s:12:\"slide_target\";s:3:\"yes\";s:8:\"button_1\";s:444:\"[fusion_button link=\"https://msla.co.za/lodge/reservations/\" color=\"default\" size=\"xlarge\" type=\"\" shape=\"\" target=\"_self\" title=\"\" gradient_colors=\"|\" gradient_hover_colors=\"|\" accent_color=\"\" accent_hover_color=\"\" bevel_color=\"\" border_width=\"0px\" shadow=\"no\" icon=\"\" icon_divider=\"yes\" icon_position=\"left\" modal=\"\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" class=\"\" id=\"\"]MAKE A RESERVATION INQUIRY[/fusion_button]\";s:17:\"heading_separator\";s:4:\"none\";s:17:\"caption_separator\";s:4:\"none\";s:13:\"video_display\";s:5:\"cover\";s:12:\"heading_size\";s:1:\"2\";s:12:\"caption_size\";s:1:\"3\";}'),
(10560, 1431, '_fusion', 'a:19:{s:4:\"type\";s:5:\"image\";s:10:\"mute_video\";s:3:\"yes\";s:14:\"autoplay_video\";s:3:\"yes\";s:10:\"loop_video\";s:3:\"yes\";s:19:\"hide_video_controls\";s:3:\"yes\";s:17:\"content_alignment\";s:6:\"center\";s:17:\"heading_font_size\";s:2:\"60\";s:13:\"heading_color\";s:7:\"#ffffff\";s:10:\"heading_bg\";s:2:\"no\";s:17:\"caption_font_size\";s:2:\"26\";s:13:\"caption_color\";s:7:\"#ffffff\";s:10:\"caption_bg\";s:2:\"no\";s:9:\"link_type\";s:6:\"button\";s:12:\"slide_target\";s:3:\"yes\";s:13:\"video_display\";s:5:\"cover\";s:17:\"heading_separator\";s:4:\"none\";s:12:\"heading_size\";s:1:\"2\";s:17:\"caption_separator\";s:4:\"none\";s:12:\"caption_size\";s:1:\"3\";}'),
(10561, 1428, '_fusion', 'a:19:{s:4:\"type\";s:5:\"image\";s:10:\"mute_video\";s:3:\"yes\";s:14:\"autoplay_video\";s:3:\"yes\";s:10:\"loop_video\";s:3:\"yes\";s:19:\"hide_video_controls\";s:3:\"yes\";s:17:\"content_alignment\";s:6:\"center\";s:17:\"heading_font_size\";s:2:\"60\";s:13:\"heading_color\";s:7:\"#ffffff\";s:10:\"heading_bg\";s:2:\"no\";s:17:\"caption_font_size\";s:2:\"26\";s:13:\"caption_color\";s:7:\"#ffffff\";s:10:\"caption_bg\";s:2:\"no\";s:9:\"link_type\";s:6:\"button\";s:12:\"slide_target\";s:3:\"yes\";s:13:\"video_display\";s:5:\"cover\";s:17:\"heading_separator\";s:4:\"none\";s:12:\"heading_size\";s:1:\"2\";s:17:\"caption_separator\";s:4:\"none\";s:12:\"caption_size\";s:1:\"3\";}'),
(10562, 1426, '_fusion', 'a:19:{s:4:\"type\";s:5:\"image\";s:10:\"mute_video\";s:3:\"yes\";s:14:\"autoplay_video\";s:3:\"yes\";s:10:\"loop_video\";s:3:\"yes\";s:19:\"hide_video_controls\";s:3:\"yes\";s:17:\"content_alignment\";s:6:\"center\";s:17:\"heading_font_size\";s:2:\"60\";s:13:\"heading_color\";s:7:\"#ffffff\";s:10:\"heading_bg\";s:2:\"no\";s:17:\"caption_font_size\";s:2:\"26\";s:13:\"caption_color\";s:7:\"#ffffff\";s:10:\"caption_bg\";s:2:\"no\";s:9:\"link_type\";s:6:\"button\";s:12:\"slide_target\";s:3:\"yes\";s:13:\"video_display\";s:5:\"cover\";s:17:\"heading_separator\";s:4:\"none\";s:12:\"heading_size\";s:1:\"2\";s:17:\"caption_separator\";s:4:\"none\";s:12:\"caption_size\";s:1:\"3\";}'),
(10563, 1424, '_fusion', 'a:19:{s:4:\"type\";s:5:\"image\";s:10:\"mute_video\";s:3:\"yes\";s:14:\"autoplay_video\";s:3:\"yes\";s:10:\"loop_video\";s:3:\"yes\";s:19:\"hide_video_controls\";s:3:\"yes\";s:17:\"content_alignment\";s:6:\"center\";s:17:\"heading_font_size\";s:2:\"60\";s:13:\"heading_color\";s:7:\"#ffffff\";s:10:\"heading_bg\";s:2:\"no\";s:17:\"caption_font_size\";s:2:\"26\";s:13:\"caption_color\";s:7:\"#ffffff\";s:10:\"caption_bg\";s:2:\"no\";s:9:\"link_type\";s:6:\"button\";s:12:\"slide_target\";s:3:\"yes\";s:13:\"video_display\";s:5:\"cover\";s:17:\"heading_separator\";s:4:\"none\";s:12:\"heading_size\";s:1:\"2\";s:17:\"caption_separator\";s:4:\"none\";s:12:\"caption_size\";s:1:\"3\";}'),
(10564, 1422, '_fusion', 'a:19:{s:4:\"type\";s:5:\"image\";s:10:\"mute_video\";s:3:\"yes\";s:14:\"autoplay_video\";s:3:\"yes\";s:10:\"loop_video\";s:3:\"yes\";s:19:\"hide_video_controls\";s:3:\"yes\";s:17:\"content_alignment\";s:6:\"center\";s:17:\"heading_font_size\";s:2:\"60\";s:13:\"heading_color\";s:7:\"#ffffff\";s:10:\"heading_bg\";s:2:\"no\";s:17:\"caption_font_size\";s:2:\"26\";s:13:\"caption_color\";s:7:\"#ffffff\";s:10:\"caption_bg\";s:2:\"no\";s:9:\"link_type\";s:6:\"button\";s:12:\"slide_target\";s:3:\"yes\";s:13:\"video_display\";s:5:\"cover\";s:17:\"heading_separator\";s:4:\"none\";s:12:\"heading_size\";s:1:\"2\";s:17:\"caption_separator\";s:4:\"none\";s:12:\"caption_size\";s:1:\"3\";}'),
(10565, 1420, '_fusion', 'a:19:{s:4:\"type\";s:5:\"image\";s:10:\"mute_video\";s:3:\"yes\";s:14:\"autoplay_video\";s:3:\"yes\";s:10:\"loop_video\";s:3:\"yes\";s:19:\"hide_video_controls\";s:3:\"yes\";s:17:\"content_alignment\";s:6:\"center\";s:17:\"heading_font_size\";s:2:\"60\";s:13:\"heading_color\";s:7:\"#ffffff\";s:10:\"heading_bg\";s:2:\"no\";s:17:\"caption_font_size\";s:2:\"26\";s:13:\"caption_color\";s:7:\"#ffffff\";s:10:\"caption_bg\";s:2:\"no\";s:9:\"link_type\";s:6:\"button\";s:12:\"slide_target\";s:3:\"yes\";s:13:\"video_display\";s:5:\"cover\";s:17:\"heading_separator\";s:4:\"none\";s:12:\"heading_size\";s:1:\"2\";s:17:\"caption_separator\";s:4:\"none\";s:12:\"caption_size\";s:1:\"3\";}'),
(10566, 1416, '_fusion', 'a:19:{s:4:\"type\";s:5:\"image\";s:10:\"mute_video\";s:3:\"yes\";s:14:\"autoplay_video\";s:3:\"yes\";s:10:\"loop_video\";s:3:\"yes\";s:19:\"hide_video_controls\";s:3:\"yes\";s:17:\"content_alignment\";s:6:\"center\";s:17:\"heading_font_size\";s:2:\"60\";s:13:\"heading_color\";s:7:\"#ffffff\";s:10:\"heading_bg\";s:2:\"no\";s:17:\"caption_font_size\";s:2:\"26\";s:13:\"caption_color\";s:7:\"#ffffff\";s:10:\"caption_bg\";s:2:\"no\";s:9:\"link_type\";s:6:\"button\";s:12:\"slide_target\";s:3:\"yes\";s:13:\"video_display\";s:5:\"cover\";s:17:\"heading_separator\";s:4:\"none\";s:12:\"heading_size\";s:1:\"2\";s:17:\"caption_separator\";s:4:\"none\";s:12:\"caption_size\";s:1:\"3\";}'),
(10567, 192, '_fusion', 'a:19:{s:4:\"type\";s:5:\"image\";s:10:\"mute_video\";s:3:\"yes\";s:14:\"autoplay_video\";s:3:\"yes\";s:10:\"loop_video\";s:3:\"yes\";s:19:\"hide_video_controls\";s:3:\"yes\";s:17:\"content_alignment\";s:6:\"center\";s:17:\"heading_font_size\";s:2:\"60\";s:13:\"heading_color\";s:7:\"#ffffff\";s:10:\"heading_bg\";s:2:\"no\";s:17:\"caption_font_size\";s:2:\"26\";s:13:\"caption_color\";s:7:\"#ffffff\";s:10:\"caption_bg\";s:2:\"no\";s:9:\"link_type\";s:6:\"button\";s:12:\"slide_target\";s:3:\"yes\";s:13:\"video_display\";s:5:\"cover\";s:17:\"heading_separator\";s:4:\"none\";s:12:\"heading_size\";s:1:\"2\";s:17:\"caption_separator\";s:4:\"none\";s:12:\"caption_size\";s:1:\"3\";}'),
(10568, 364, '_fusion', 'a:23:{s:30:\"portfolio_featured_image_width\";s:4:\"full\";s:19:\"portfolio_width_100\";s:2:\"no\";s:28:\"portfolio_project_desc_title\";s:2:\"no\";s:25:\"portfolio_project_details\";s:2:\"no\";s:25:\"show_first_featured_image\";s:3:\"yes\";s:26:\"portfolio_link_icon_target\";s:2:\"no\";s:11:\"slider_type\";s:2:\"no\";s:6:\"slider\";s:1:\"0\";s:9:\"wooslider\";s:1:\"0\";s:9:\"revslider\";s:1:\"0\";s:13:\"elasticslider\";s:1:\"0\";s:14:\"display_header\";s:3:\"yes\";s:14:\"header_bg_full\";s:2:\"no\";s:16:\"header_bg_repeat\";s:6:\"repeat\";s:7:\"bg_full\";s:2:\"no\";s:9:\"bg_repeat\";s:6:\"repeat\";s:15:\"content_bg_full\";s:2:\"no\";s:17:\"content_bg_repeat\";s:6:\"repeat\";s:19:\"page_title_bar_text\";s:3:\"yes\";s:20:\"sbg_selected_sidebar\";a:1:{i:0;s:1:\"0\";}s:17:\"portfolio_sidebar\";s:0:\"\";s:22:\"sbg_selected_sidebar_2\";a:1:{i:0;s:1:\"0\";}s:19:\"portfolio_sidebar_2\";s:0:\"\";}'),
(10569, 361, '_fusion', 'a:23:{s:30:\"portfolio_featured_image_width\";s:4:\"full\";s:19:\"portfolio_width_100\";s:2:\"no\";s:28:\"portfolio_project_desc_title\";s:2:\"no\";s:25:\"portfolio_project_details\";s:2:\"no\";s:25:\"show_first_featured_image\";s:3:\"yes\";s:26:\"portfolio_link_icon_target\";s:2:\"no\";s:11:\"slider_type\";s:2:\"no\";s:6:\"slider\";s:1:\"0\";s:9:\"wooslider\";s:1:\"0\";s:9:\"revslider\";s:1:\"0\";s:13:\"elasticslider\";s:1:\"0\";s:14:\"display_header\";s:3:\"yes\";s:14:\"header_bg_full\";s:2:\"no\";s:16:\"header_bg_repeat\";s:6:\"repeat\";s:7:\"bg_full\";s:2:\"no\";s:9:\"bg_repeat\";s:6:\"repeat\";s:15:\"content_bg_full\";s:2:\"no\";s:17:\"content_bg_repeat\";s:6:\"repeat\";s:19:\"page_title_bar_text\";s:3:\"yes\";s:20:\"sbg_selected_sidebar\";a:1:{i:0;s:1:\"0\";}s:17:\"portfolio_sidebar\";s:0:\"\";s:22:\"sbg_selected_sidebar_2\";a:1:{i:0;s:1:\"0\";}s:19:\"portfolio_sidebar_2\";s:0:\"\";}'),
(10570, 358, '_fusion', 'a:23:{s:30:\"portfolio_featured_image_width\";s:4:\"full\";s:19:\"portfolio_width_100\";s:2:\"no\";s:28:\"portfolio_project_desc_title\";s:2:\"no\";s:25:\"portfolio_project_details\";s:2:\"no\";s:25:\"show_first_featured_image\";s:3:\"yes\";s:26:\"portfolio_link_icon_target\";s:2:\"no\";s:11:\"slider_type\";s:2:\"no\";s:6:\"slider\";s:1:\"0\";s:9:\"wooslider\";s:1:\"0\";s:9:\"revslider\";s:1:\"0\";s:13:\"elasticslider\";s:1:\"0\";s:14:\"display_header\";s:3:\"yes\";s:14:\"header_bg_full\";s:2:\"no\";s:16:\"header_bg_repeat\";s:6:\"repeat\";s:7:\"bg_full\";s:2:\"no\";s:9:\"bg_repeat\";s:6:\"repeat\";s:15:\"content_bg_full\";s:2:\"no\";s:17:\"content_bg_repeat\";s:6:\"repeat\";s:19:\"page_title_bar_text\";s:3:\"yes\";s:20:\"sbg_selected_sidebar\";a:1:{i:0;s:1:\"0\";}s:17:\"portfolio_sidebar\";s:0:\"\";s:22:\"sbg_selected_sidebar_2\";a:1:{i:0;s:1:\"0\";}s:19:\"portfolio_sidebar_2\";s:0:\"\";}'),
(10571, 61, '_fusion', 'a:23:{s:30:\"portfolio_featured_image_width\";s:4:\"full\";s:19:\"portfolio_width_100\";s:2:\"no\";s:28:\"portfolio_project_desc_title\";s:2:\"no\";s:25:\"portfolio_project_details\";s:2:\"no\";s:25:\"show_first_featured_image\";s:3:\"yes\";s:26:\"portfolio_link_icon_target\";s:2:\"no\";s:11:\"slider_type\";s:2:\"no\";s:6:\"slider\";s:1:\"0\";s:9:\"wooslider\";s:1:\"0\";s:9:\"revslider\";s:1:\"0\";s:13:\"elasticslider\";s:1:\"0\";s:14:\"display_header\";s:3:\"yes\";s:14:\"header_bg_full\";s:2:\"no\";s:16:\"header_bg_repeat\";s:6:\"repeat\";s:7:\"bg_full\";s:2:\"no\";s:9:\"bg_repeat\";s:6:\"repeat\";s:15:\"content_bg_full\";s:2:\"no\";s:17:\"content_bg_repeat\";s:6:\"repeat\";s:19:\"page_title_bar_text\";s:3:\"yes\";s:20:\"sbg_selected_sidebar\";a:1:{i:0;s:1:\"0\";}s:17:\"portfolio_sidebar\";s:0:\"\";s:22:\"sbg_selected_sidebar_2\";a:1:{i:0;s:1:\"0\";}s:19:\"portfolio_sidebar_2\";s:0:\"\";}'),
(10572, 59, '_fusion', 'a:23:{s:30:\"portfolio_featured_image_width\";s:4:\"full\";s:19:\"portfolio_width_100\";s:2:\"no\";s:28:\"portfolio_project_desc_title\";s:2:\"no\";s:25:\"portfolio_project_details\";s:2:\"no\";s:25:\"show_first_featured_image\";s:3:\"yes\";s:26:\"portfolio_link_icon_target\";s:2:\"no\";s:11:\"slider_type\";s:2:\"no\";s:6:\"slider\";s:1:\"0\";s:9:\"wooslider\";s:1:\"0\";s:9:\"revslider\";s:1:\"0\";s:13:\"elasticslider\";s:1:\"0\";s:14:\"display_header\";s:3:\"yes\";s:14:\"header_bg_full\";s:2:\"no\";s:16:\"header_bg_repeat\";s:6:\"repeat\";s:7:\"bg_full\";s:2:\"no\";s:9:\"bg_repeat\";s:6:\"repeat\";s:15:\"content_bg_full\";s:2:\"no\";s:17:\"content_bg_repeat\";s:6:\"repeat\";s:19:\"page_title_bar_text\";s:3:\"yes\";s:20:\"sbg_selected_sidebar\";a:1:{i:0;s:1:\"0\";}s:17:\"portfolio_sidebar\";s:0:\"\";s:22:\"sbg_selected_sidebar_2\";a:1:{i:0;s:1:\"0\";}s:19:\"portfolio_sidebar_2\";s:0:\"\";}'),
(10573, 57, '_fusion', 'a:23:{s:30:\"portfolio_featured_image_width\";s:4:\"full\";s:19:\"portfolio_width_100\";s:2:\"no\";s:28:\"portfolio_project_desc_title\";s:2:\"no\";s:25:\"portfolio_project_details\";s:2:\"no\";s:25:\"show_first_featured_image\";s:3:\"yes\";s:26:\"portfolio_link_icon_target\";s:2:\"no\";s:11:\"slider_type\";s:2:\"no\";s:6:\"slider\";s:1:\"0\";s:9:\"wooslider\";s:1:\"0\";s:9:\"revslider\";s:1:\"0\";s:13:\"elasticslider\";s:1:\"0\";s:14:\"display_header\";s:3:\"yes\";s:14:\"header_bg_full\";s:2:\"no\";s:16:\"header_bg_repeat\";s:6:\"repeat\";s:7:\"bg_full\";s:2:\"no\";s:9:\"bg_repeat\";s:6:\"repeat\";s:15:\"content_bg_full\";s:2:\"no\";s:17:\"content_bg_repeat\";s:6:\"repeat\";s:19:\"page_title_bar_text\";s:3:\"yes\";s:20:\"sbg_selected_sidebar\";a:1:{i:0;s:1:\"0\";}s:17:\"portfolio_sidebar\";s:0:\"\";s:22:\"sbg_selected_sidebar_2\";a:1:{i:0;s:1:\"0\";}s:19:\"portfolio_sidebar_2\";s:0:\"\";}'),
(10574, 55, '_fusion', 'a:23:{s:30:\"portfolio_featured_image_width\";s:4:\"full\";s:19:\"portfolio_width_100\";s:2:\"no\";s:28:\"portfolio_project_desc_title\";s:2:\"no\";s:25:\"portfolio_project_details\";s:2:\"no\";s:25:\"show_first_featured_image\";s:3:\"yes\";s:26:\"portfolio_link_icon_target\";s:2:\"no\";s:11:\"slider_type\";s:2:\"no\";s:6:\"slider\";s:1:\"0\";s:9:\"wooslider\";s:1:\"0\";s:9:\"revslider\";s:1:\"0\";s:13:\"elasticslider\";s:1:\"0\";s:14:\"display_header\";s:3:\"yes\";s:14:\"header_bg_full\";s:2:\"no\";s:16:\"header_bg_repeat\";s:6:\"repeat\";s:7:\"bg_full\";s:2:\"no\";s:9:\"bg_repeat\";s:6:\"repeat\";s:15:\"content_bg_full\";s:2:\"no\";s:17:\"content_bg_repeat\";s:6:\"repeat\";s:19:\"page_title_bar_text\";s:3:\"yes\";s:20:\"sbg_selected_sidebar\";a:1:{i:0;s:1:\"0\";}s:17:\"portfolio_sidebar\";s:0:\"\";s:22:\"sbg_selected_sidebar_2\";a:1:{i:0;s:1:\"0\";}s:19:\"portfolio_sidebar_2\";s:0:\"\";}'),
(10575, 53, '_fusion', 'a:23:{s:30:\"portfolio_featured_image_width\";s:4:\"full\";s:19:\"portfolio_width_100\";s:2:\"no\";s:28:\"portfolio_project_desc_title\";s:2:\"no\";s:25:\"portfolio_project_details\";s:2:\"no\";s:25:\"show_first_featured_image\";s:3:\"yes\";s:26:\"portfolio_link_icon_target\";s:2:\"no\";s:11:\"slider_type\";s:2:\"no\";s:6:\"slider\";s:1:\"0\";s:9:\"wooslider\";s:1:\"0\";s:9:\"revslider\";s:1:\"0\";s:13:\"elasticslider\";s:1:\"0\";s:14:\"display_header\";s:3:\"yes\";s:14:\"header_bg_full\";s:2:\"no\";s:16:\"header_bg_repeat\";s:6:\"repeat\";s:7:\"bg_full\";s:2:\"no\";s:9:\"bg_repeat\";s:6:\"repeat\";s:15:\"content_bg_full\";s:2:\"no\";s:17:\"content_bg_repeat\";s:6:\"repeat\";s:19:\"page_title_bar_text\";s:3:\"yes\";s:20:\"sbg_selected_sidebar\";a:1:{i:0;s:1:\"0\";}s:17:\"portfolio_sidebar\";s:0:\"\";s:22:\"sbg_selected_sidebar_2\";a:1:{i:0;s:1:\"0\";}s:19:\"portfolio_sidebar_2\";s:0:\"\";}'),
(10576, 50, '_fusion', 'a:23:{s:30:\"portfolio_featured_image_width\";s:4:\"full\";s:19:\"portfolio_width_100\";s:2:\"no\";s:28:\"portfolio_project_desc_title\";s:2:\"no\";s:25:\"portfolio_project_details\";s:2:\"no\";s:25:\"show_first_featured_image\";s:3:\"yes\";s:26:\"portfolio_link_icon_target\";s:2:\"no\";s:11:\"slider_type\";s:2:\"no\";s:6:\"slider\";s:1:\"0\";s:9:\"wooslider\";s:1:\"0\";s:9:\"revslider\";s:1:\"0\";s:13:\"elasticslider\";s:1:\"0\";s:14:\"display_header\";s:3:\"yes\";s:14:\"header_bg_full\";s:2:\"no\";s:16:\"header_bg_repeat\";s:6:\"repeat\";s:7:\"bg_full\";s:2:\"no\";s:9:\"bg_repeat\";s:6:\"repeat\";s:15:\"content_bg_full\";s:2:\"no\";s:17:\"content_bg_repeat\";s:6:\"repeat\";s:19:\"page_title_bar_text\";s:3:\"yes\";s:20:\"sbg_selected_sidebar\";a:1:{i:0;s:1:\"0\";}s:17:\"portfolio_sidebar\";s:0:\"\";s:22:\"sbg_selected_sidebar_2\";a:1:{i:0;s:1:\"0\";}s:19:\"portfolio_sidebar_2\";s:0:\"\";}'),
(10577, 938, '_fusion', 'a:22:{s:30:\"portfolio_featured_image_width\";s:4:\"full\";s:19:\"portfolio_width_100\";s:2:\"no\";s:28:\"portfolio_project_desc_title\";s:3:\"yes\";s:25:\"portfolio_project_details\";s:3:\"yes\";s:25:\"show_first_featured_image\";s:3:\"yes\";s:26:\"portfolio_link_icon_target\";s:2:\"no\";s:11:\"slider_type\";s:2:\"no\";s:6:\"slider\";s:1:\"0\";s:9:\"wooslider\";s:1:\"0\";s:9:\"revslider\";s:1:\"0\";s:13:\"elasticslider\";s:1:\"0\";s:14:\"display_header\";s:3:\"yes\";s:14:\"header_bg_full\";s:2:\"no\";s:16:\"header_bg_repeat\";s:6:\"repeat\";s:7:\"bg_full\";s:2:\"no\";s:9:\"bg_repeat\";s:6:\"repeat\";s:15:\"content_bg_full\";s:2:\"no\";s:17:\"content_bg_repeat\";s:6:\"repeat\";s:20:\"sbg_selected_sidebar\";a:1:{i:0;s:1:\"0\";}s:17:\"portfolio_sidebar\";s:0:\"\";s:22:\"sbg_selected_sidebar_2\";a:1:{i:0;s:1:\"0\";}s:19:\"portfolio_sidebar_2\";s:0:\"\";}'),
(10578, 936, '_fusion', 'a:22:{s:30:\"portfolio_featured_image_width\";s:4:\"full\";s:19:\"portfolio_width_100\";s:2:\"no\";s:28:\"portfolio_project_desc_title\";s:3:\"yes\";s:25:\"portfolio_project_details\";s:3:\"yes\";s:25:\"show_first_featured_image\";s:3:\"yes\";s:26:\"portfolio_link_icon_target\";s:2:\"no\";s:11:\"slider_type\";s:2:\"no\";s:6:\"slider\";s:1:\"0\";s:9:\"wooslider\";s:1:\"0\";s:9:\"revslider\";s:1:\"0\";s:13:\"elasticslider\";s:1:\"0\";s:14:\"display_header\";s:3:\"yes\";s:14:\"header_bg_full\";s:2:\"no\";s:16:\"header_bg_repeat\";s:6:\"repeat\";s:7:\"bg_full\";s:2:\"no\";s:9:\"bg_repeat\";s:6:\"repeat\";s:15:\"content_bg_full\";s:2:\"no\";s:17:\"content_bg_repeat\";s:6:\"repeat\";s:20:\"sbg_selected_sidebar\";a:1:{i:0;s:1:\"0\";}s:17:\"portfolio_sidebar\";s:0:\"\";s:22:\"sbg_selected_sidebar_2\";a:1:{i:0;s:1:\"0\";}s:19:\"portfolio_sidebar_2\";s:0:\"\";}'),
(10579, 934, '_fusion', 'a:22:{s:30:\"portfolio_featured_image_width\";s:4:\"full\";s:19:\"portfolio_width_100\";s:2:\"no\";s:28:\"portfolio_project_desc_title\";s:3:\"yes\";s:25:\"portfolio_project_details\";s:3:\"yes\";s:25:\"show_first_featured_image\";s:3:\"yes\";s:26:\"portfolio_link_icon_target\";s:2:\"no\";s:11:\"slider_type\";s:2:\"no\";s:6:\"slider\";s:1:\"0\";s:9:\"wooslider\";s:1:\"0\";s:9:\"revslider\";s:1:\"0\";s:13:\"elasticslider\";s:1:\"0\";s:14:\"display_header\";s:3:\"yes\";s:14:\"header_bg_full\";s:2:\"no\";s:16:\"header_bg_repeat\";s:6:\"repeat\";s:7:\"bg_full\";s:2:\"no\";s:9:\"bg_repeat\";s:6:\"repeat\";s:15:\"content_bg_full\";s:2:\"no\";s:17:\"content_bg_repeat\";s:6:\"repeat\";s:20:\"sbg_selected_sidebar\";a:1:{i:0;s:1:\"0\";}s:17:\"portfolio_sidebar\";s:0:\"\";s:22:\"sbg_selected_sidebar_2\";a:1:{i:0;s:1:\"0\";}s:19:\"portfolio_sidebar_2\";s:0:\"\";}'),
(10580, 930, '_fusion', 'a:22:{s:30:\"portfolio_featured_image_width\";s:4:\"full\";s:19:\"portfolio_width_100\";s:2:\"no\";s:28:\"portfolio_project_desc_title\";s:3:\"yes\";s:25:\"portfolio_project_details\";s:3:\"yes\";s:25:\"show_first_featured_image\";s:3:\"yes\";s:26:\"portfolio_link_icon_target\";s:2:\"no\";s:11:\"slider_type\";s:2:\"no\";s:6:\"slider\";s:1:\"0\";s:9:\"wooslider\";s:1:\"0\";s:9:\"revslider\";s:1:\"0\";s:13:\"elasticslider\";s:1:\"0\";s:14:\"display_header\";s:3:\"yes\";s:14:\"header_bg_full\";s:2:\"no\";s:16:\"header_bg_repeat\";s:6:\"repeat\";s:7:\"bg_full\";s:2:\"no\";s:9:\"bg_repeat\";s:6:\"repeat\";s:15:\"content_bg_full\";s:2:\"no\";s:17:\"content_bg_repeat\";s:6:\"repeat\";s:20:\"sbg_selected_sidebar\";a:1:{i:0;s:1:\"0\";}s:17:\"portfolio_sidebar\";s:0:\"\";s:22:\"sbg_selected_sidebar_2\";a:1:{i:0;s:1:\"0\";}s:19:\"portfolio_sidebar_2\";s:0:\"\";}');
INSERT INTO `wp_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(10581, 927, '_fusion', 'a:22:{s:30:\"portfolio_featured_image_width\";s:4:\"full\";s:19:\"portfolio_width_100\";s:2:\"no\";s:28:\"portfolio_project_desc_title\";s:3:\"yes\";s:25:\"portfolio_project_details\";s:3:\"yes\";s:25:\"show_first_featured_image\";s:3:\"yes\";s:26:\"portfolio_link_icon_target\";s:2:\"no\";s:11:\"slider_type\";s:2:\"no\";s:6:\"slider\";s:1:\"0\";s:9:\"wooslider\";s:1:\"0\";s:9:\"revslider\";s:1:\"0\";s:13:\"elasticslider\";s:1:\"0\";s:14:\"display_header\";s:3:\"yes\";s:14:\"header_bg_full\";s:2:\"no\";s:16:\"header_bg_repeat\";s:6:\"repeat\";s:7:\"bg_full\";s:2:\"no\";s:9:\"bg_repeat\";s:6:\"repeat\";s:15:\"content_bg_full\";s:2:\"no\";s:17:\"content_bg_repeat\";s:6:\"repeat\";s:20:\"sbg_selected_sidebar\";a:1:{i:0;s:1:\"0\";}s:17:\"portfolio_sidebar\";s:0:\"\";s:22:\"sbg_selected_sidebar_2\";a:1:{i:0;s:1:\"0\";}s:19:\"portfolio_sidebar_2\";s:0:\"\";}'),
(10582, 919, '_fusion', 'a:22:{s:30:\"portfolio_featured_image_width\";s:4:\"full\";s:19:\"portfolio_width_100\";s:2:\"no\";s:28:\"portfolio_project_desc_title\";s:3:\"yes\";s:25:\"portfolio_project_details\";s:3:\"yes\";s:25:\"show_first_featured_image\";s:3:\"yes\";s:26:\"portfolio_link_icon_target\";s:2:\"no\";s:11:\"slider_type\";s:2:\"no\";s:6:\"slider\";s:1:\"0\";s:9:\"wooslider\";s:1:\"0\";s:9:\"revslider\";s:1:\"0\";s:13:\"elasticslider\";s:1:\"0\";s:14:\"display_header\";s:3:\"yes\";s:14:\"header_bg_full\";s:2:\"no\";s:16:\"header_bg_repeat\";s:6:\"repeat\";s:7:\"bg_full\";s:2:\"no\";s:9:\"bg_repeat\";s:6:\"repeat\";s:15:\"content_bg_full\";s:2:\"no\";s:17:\"content_bg_repeat\";s:6:\"repeat\";s:20:\"sbg_selected_sidebar\";a:1:{i:0;s:1:\"0\";}s:17:\"portfolio_sidebar\";s:0:\"\";s:22:\"sbg_selected_sidebar_2\";a:1:{i:0;s:1:\"0\";}s:19:\"portfolio_sidebar_2\";s:0:\"\";}'),
(10583, 1202, '_fusion', 'a:22:{s:30:\"portfolio_featured_image_width\";s:4:\"full\";s:19:\"portfolio_width_100\";s:2:\"no\";s:28:\"portfolio_project_desc_title\";s:3:\"yes\";s:25:\"portfolio_project_details\";s:3:\"yes\";s:25:\"show_first_featured_image\";s:3:\"yes\";s:26:\"portfolio_link_icon_target\";s:2:\"no\";s:11:\"slider_type\";s:2:\"no\";s:6:\"slider\";s:1:\"0\";s:9:\"wooslider\";s:1:\"0\";s:9:\"revslider\";s:1:\"0\";s:13:\"elasticslider\";s:1:\"0\";s:14:\"display_header\";s:3:\"yes\";s:14:\"header_bg_full\";s:2:\"no\";s:16:\"header_bg_repeat\";s:6:\"repeat\";s:7:\"bg_full\";s:2:\"no\";s:9:\"bg_repeat\";s:6:\"repeat\";s:15:\"content_bg_full\";s:2:\"no\";s:17:\"content_bg_repeat\";s:6:\"repeat\";s:20:\"sbg_selected_sidebar\";a:1:{i:0;s:1:\"0\";}s:17:\"portfolio_sidebar\";s:0:\"\";s:22:\"sbg_selected_sidebar_2\";a:1:{i:0;s:1:\"0\";}s:19:\"portfolio_sidebar_2\";s:0:\"\";}'),
(10584, 1201, '_fusion', 'a:22:{s:30:\"portfolio_featured_image_width\";s:4:\"full\";s:19:\"portfolio_width_100\";s:2:\"no\";s:28:\"portfolio_project_desc_title\";s:3:\"yes\";s:25:\"portfolio_project_details\";s:3:\"yes\";s:25:\"show_first_featured_image\";s:3:\"yes\";s:26:\"portfolio_link_icon_target\";s:2:\"no\";s:11:\"slider_type\";s:2:\"no\";s:6:\"slider\";s:1:\"0\";s:9:\"wooslider\";s:1:\"0\";s:9:\"revslider\";s:1:\"0\";s:13:\"elasticslider\";s:1:\"0\";s:14:\"display_header\";s:3:\"yes\";s:14:\"header_bg_full\";s:2:\"no\";s:16:\"header_bg_repeat\";s:6:\"repeat\";s:7:\"bg_full\";s:2:\"no\";s:9:\"bg_repeat\";s:6:\"repeat\";s:15:\"content_bg_full\";s:2:\"no\";s:17:\"content_bg_repeat\";s:6:\"repeat\";s:20:\"sbg_selected_sidebar\";a:1:{i:0;s:1:\"0\";}s:17:\"portfolio_sidebar\";s:0:\"\";s:22:\"sbg_selected_sidebar_2\";a:1:{i:0;s:1:\"0\";}s:19:\"portfolio_sidebar_2\";s:0:\"\";}'),
(10585, 1199, '_fusion', 'a:22:{s:30:\"portfolio_featured_image_width\";s:4:\"full\";s:19:\"portfolio_width_100\";s:2:\"no\";s:28:\"portfolio_project_desc_title\";s:3:\"yes\";s:25:\"portfolio_project_details\";s:3:\"yes\";s:25:\"show_first_featured_image\";s:3:\"yes\";s:26:\"portfolio_link_icon_target\";s:2:\"no\";s:11:\"slider_type\";s:2:\"no\";s:6:\"slider\";s:1:\"0\";s:9:\"wooslider\";s:1:\"0\";s:9:\"revslider\";s:1:\"0\";s:13:\"elasticslider\";s:1:\"0\";s:14:\"display_header\";s:3:\"yes\";s:14:\"header_bg_full\";s:2:\"no\";s:16:\"header_bg_repeat\";s:6:\"repeat\";s:7:\"bg_full\";s:2:\"no\";s:9:\"bg_repeat\";s:6:\"repeat\";s:15:\"content_bg_full\";s:2:\"no\";s:17:\"content_bg_repeat\";s:6:\"repeat\";s:20:\"sbg_selected_sidebar\";a:1:{i:0;s:1:\"0\";}s:17:\"portfolio_sidebar\";s:0:\"\";s:22:\"sbg_selected_sidebar_2\";a:1:{i:0;s:1:\"0\";}s:19:\"portfolio_sidebar_2\";s:0:\"\";}'),
(10586, 1196, '_fusion', 'a:22:{s:30:\"portfolio_featured_image_width\";s:4:\"full\";s:19:\"portfolio_width_100\";s:2:\"no\";s:28:\"portfolio_project_desc_title\";s:3:\"yes\";s:25:\"portfolio_project_details\";s:3:\"yes\";s:25:\"show_first_featured_image\";s:3:\"yes\";s:26:\"portfolio_link_icon_target\";s:2:\"no\";s:11:\"slider_type\";s:2:\"no\";s:6:\"slider\";s:1:\"0\";s:9:\"wooslider\";s:1:\"0\";s:9:\"revslider\";s:1:\"0\";s:13:\"elasticslider\";s:1:\"0\";s:14:\"display_header\";s:3:\"yes\";s:14:\"header_bg_full\";s:2:\"no\";s:16:\"header_bg_repeat\";s:6:\"repeat\";s:7:\"bg_full\";s:2:\"no\";s:9:\"bg_repeat\";s:6:\"repeat\";s:15:\"content_bg_full\";s:2:\"no\";s:17:\"content_bg_repeat\";s:6:\"repeat\";s:20:\"sbg_selected_sidebar\";a:1:{i:0;s:1:\"0\";}s:17:\"portfolio_sidebar\";s:0:\"\";s:22:\"sbg_selected_sidebar_2\";a:1:{i:0;s:1:\"0\";}s:19:\"portfolio_sidebar_2\";s:0:\"\";}'),
(10587, 950, '_fusion', 'a:22:{s:30:\"portfolio_featured_image_width\";s:4:\"full\";s:19:\"portfolio_width_100\";s:2:\"no\";s:28:\"portfolio_project_desc_title\";s:3:\"yes\";s:25:\"portfolio_project_details\";s:3:\"yes\";s:25:\"show_first_featured_image\";s:3:\"yes\";s:26:\"portfolio_link_icon_target\";s:2:\"no\";s:11:\"slider_type\";s:2:\"no\";s:6:\"slider\";s:1:\"0\";s:9:\"wooslider\";s:1:\"0\";s:9:\"revslider\";s:1:\"0\";s:13:\"elasticslider\";s:1:\"0\";s:14:\"display_header\";s:3:\"yes\";s:14:\"header_bg_full\";s:2:\"no\";s:16:\"header_bg_repeat\";s:6:\"repeat\";s:7:\"bg_full\";s:2:\"no\";s:9:\"bg_repeat\";s:6:\"repeat\";s:15:\"content_bg_full\";s:2:\"no\";s:17:\"content_bg_repeat\";s:6:\"repeat\";s:20:\"sbg_selected_sidebar\";a:1:{i:0;s:1:\"0\";}s:17:\"portfolio_sidebar\";s:0:\"\";s:22:\"sbg_selected_sidebar_2\";a:1:{i:0;s:1:\"0\";}s:19:\"portfolio_sidebar_2\";s:0:\"\";}'),
(10588, 942, '_fusion', 'a:22:{s:30:\"portfolio_featured_image_width\";s:4:\"full\";s:19:\"portfolio_width_100\";s:2:\"no\";s:28:\"portfolio_project_desc_title\";s:3:\"yes\";s:25:\"portfolio_project_details\";s:3:\"yes\";s:25:\"show_first_featured_image\";s:3:\"yes\";s:26:\"portfolio_link_icon_target\";s:2:\"no\";s:11:\"slider_type\";s:2:\"no\";s:6:\"slider\";s:1:\"0\";s:9:\"wooslider\";s:1:\"0\";s:9:\"revslider\";s:1:\"0\";s:13:\"elasticslider\";s:1:\"0\";s:14:\"display_header\";s:3:\"yes\";s:14:\"header_bg_full\";s:2:\"no\";s:16:\"header_bg_repeat\";s:6:\"repeat\";s:7:\"bg_full\";s:2:\"no\";s:9:\"bg_repeat\";s:6:\"repeat\";s:15:\"content_bg_full\";s:2:\"no\";s:17:\"content_bg_repeat\";s:6:\"repeat\";s:20:\"sbg_selected_sidebar\";a:1:{i:0;s:1:\"0\";}s:17:\"portfolio_sidebar\";s:0:\"\";s:22:\"sbg_selected_sidebar_2\";a:1:{i:0;s:1:\"0\";}s:19:\"portfolio_sidebar_2\";s:0:\"\";}'),
(10589, 11, '_fusion', 'a:22:{s:11:\"slider_type\";s:2:\"no\";s:6:\"slider\";s:1:\"0\";s:9:\"wooslider\";s:1:\"0\";s:9:\"revslider\";s:1:\"0\";s:13:\"elasticslider\";s:1:\"0\";s:12:\"main_padding\";a:2:{s:3:\"top\";s:3:\"0px\";s:6:\"bottom\";s:3:\"0px\";}s:25:\"show_first_featured_image\";s:3:\"yes\";s:14:\"display_header\";s:3:\"yes\";s:14:\"header_bg_full\";s:2:\"no\";s:16:\"header_bg_repeat\";s:6:\"repeat\";s:7:\"bg_full\";s:2:\"no\";s:9:\"bg_repeat\";s:6:\"repeat\";s:15:\"content_bg_full\";s:2:\"no\";s:17:\"content_bg_repeat\";s:6:\"repeat\";s:14:\"blog_width_100\";s:2:\"no\";s:17:\"portfolio_filters\";s:3:\"yes\";s:14:\"page_title_bar\";s:2:\"no\";s:19:\"page_title_bar_text\";s:3:\"yes\";s:20:\"sbg_selected_sidebar\";a:1:{i:0;s:1:\"0\";}s:13:\"pages_sidebar\";s:0:\"\";s:22:\"sbg_selected_sidebar_2\";a:1:{i:0;s:1:\"0\";}s:15:\"pages_sidebar_2\";s:0:\"\";}'),
(10590, 11, 'avada_post_views_count', '454'),
(10591, 11, 'avada_today_post_views_count', '1'),
(10592, 11, 'avada_post_views_count_today_date', '01-04-2025'),
(10593, 1182, '_fusion', 'a:27:{s:11:\"slider_type\";s:2:\"no\";s:6:\"slider\";s:1:\"0\";s:9:\"wooslider\";s:1:\"0\";s:9:\"revslider\";s:1:\"0\";s:13:\"elasticslider\";s:1:\"0\";s:25:\"show_first_featured_image\";s:3:\"yes\";s:14:\"display_header\";s:3:\"yes\";s:14:\"header_bg_full\";s:2:\"no\";s:16:\"header_bg_repeat\";s:6:\"repeat\";s:14:\"footer_widgets\";s:2:\"no\";s:16:\"footer_copyright\";s:2:\"no\";s:16:\"footer_100_width\";s:2:\"no\";s:6:\"layout\";s:4:\"wide\";s:7:\"bg_full\";s:3:\"yes\";s:9:\"bg_repeat\";s:9:\"no-repeat\";s:16:\"content_bg_image\";a:1:{s:3:\"url\";s:78:\"https://msla.co.za/lodge/wp-content/uploads/2019/11/homepage-background-01.jpg\";}s:15:\"content_bg_full\";s:3:\"yes\";s:17:\"content_bg_repeat\";s:9:\"no-repeat\";s:14:\"blog_width_100\";s:2:\"no\";s:17:\"portfolio_filters\";s:3:\"yes\";s:14:\"page_title_bar\";s:2:\"no\";s:19:\"page_title_bar_text\";s:2:\"no\";s:15:\"wide_page_bg_id\";s:4:\"1358\";s:20:\"sbg_selected_sidebar\";a:1:{i:0;s:1:\"0\";}s:13:\"pages_sidebar\";s:0:\"\";s:22:\"sbg_selected_sidebar_2\";a:1:{i:0;s:1:\"0\";}s:15:\"pages_sidebar_2\";s:0:\"\";}'),
(10594, 1182, 'avada_post_views_count', '207'),
(10595, 1182, 'avada_today_post_views_count', '1'),
(10596, 1182, 'avada_post_views_count_today_date', '26-03-2025'),
(10597, 919, 'avada_post_views_count', '312'),
(10598, 919, 'avada_today_post_views_count', '1'),
(10599, 919, 'avada_post_views_count_today_date', '31-03-2025'),
(10600, 1, '_fusion', 'a:0:{}'),
(10601, 1202, 'avada_post_views_count', '324'),
(10602, 1202, 'avada_today_post_views_count', '2'),
(10603, 1202, 'avada_post_views_count_today_date', '01-04-2025'),
(10604, 927, 'avada_post_views_count', '313'),
(10605, 927, 'avada_today_post_views_count', '2'),
(10606, 927, 'avada_post_views_count_today_date', '31-03-2025'),
(10607, 89, '_fusion', 'a:21:{s:25:\"show_first_featured_image\";s:3:\"yes\";s:14:\"blog_width_100\";s:2:\"no\";s:20:\"image_rollover_icons\";s:8:\"linkzoom\";s:11:\"slider_type\";s:2:\"no\";s:6:\"slider\";s:1:\"0\";s:9:\"wooslider\";s:1:\"0\";s:9:\"revslider\";s:1:\"0\";s:13:\"elasticslider\";s:1:\"0\";s:14:\"display_header\";s:3:\"yes\";s:14:\"header_bg_full\";s:2:\"no\";s:16:\"header_bg_repeat\";s:6:\"repeat\";s:7:\"bg_full\";s:2:\"no\";s:9:\"bg_repeat\";s:6:\"repeat\";s:15:\"content_bg_full\";s:2:\"no\";s:17:\"content_bg_repeat\";s:6:\"repeat\";s:19:\"page_title_bar_text\";s:3:\"yes\";s:17:\"post_links_target\";s:2:\"no\";s:20:\"sbg_selected_sidebar\";a:1:{i:0;s:1:\"0\";}s:13:\"posts_sidebar\";s:12:\"Blog Sidebar\";s:22:\"sbg_selected_sidebar_2\";a:1:{i:0;s:1:\"0\";}s:15:\"posts_sidebar_2\";s:0:\"\";}'),
(10608, 89, 'avada_today_post_views_count', '1'),
(10609, 89, 'avada_post_views_count_today_date', '01-04-2025'),
(10610, 50, 'avada_post_views_count', '305'),
(10611, 50, 'avada_today_post_views_count', '2'),
(10612, 50, 'avada_post_views_count_today_date', '26-03-2025'),
(10613, 53, 'avada_post_views_count', '278'),
(10614, 53, 'avada_today_post_views_count', '1'),
(10615, 53, 'avada_post_views_count_today_date', '26-03-2025'),
(10616, 55, 'avada_post_views_count', '260'),
(10617, 55, 'avada_today_post_views_count', '1'),
(10618, 55, 'avada_post_views_count_today_date', '26-03-2025'),
(10619, 361, 'avada_post_views_count', '287'),
(10620, 361, 'avada_today_post_views_count', '1'),
(10621, 361, 'avada_post_views_count_today_date', '31-03-2025'),
(10622, 1196, 'avada_post_views_count', '317'),
(10623, 1196, 'avada_today_post_views_count', '1'),
(10624, 1196, 'avada_post_views_count_today_date', '31-03-2025'),
(10625, 61, 'avada_post_views_count', '313'),
(10626, 61, 'avada_today_post_views_count', '1'),
(10627, 61, 'avada_post_views_count_today_date', '26-03-2025'),
(10628, 984, '_fusion', 'a:20:{s:11:\"slider_type\";s:2:\"no\";s:6:\"slider\";s:1:\"0\";s:9:\"wooslider\";s:1:\"0\";s:9:\"revslider\";s:1:\"0\";s:13:\"elasticslider\";s:1:\"0\";s:25:\"show_first_featured_image\";s:3:\"yes\";s:14:\"display_header\";s:3:\"yes\";s:14:\"header_bg_full\";s:2:\"no\";s:16:\"header_bg_repeat\";s:6:\"repeat\";s:7:\"bg_full\";s:2:\"no\";s:9:\"bg_repeat\";s:6:\"repeat\";s:15:\"content_bg_full\";s:2:\"no\";s:17:\"content_bg_repeat\";s:6:\"repeat\";s:14:\"blog_width_100\";s:2:\"no\";s:17:\"portfolio_filters\";s:3:\"yes\";s:14:\"page_title_bar\";s:2:\"no\";s:20:\"sbg_selected_sidebar\";a:1:{i:0;s:1:\"0\";}s:13:\"pages_sidebar\";s:0:\"\";s:22:\"sbg_selected_sidebar_2\";a:1:{i:0;s:1:\"0\";}s:15:\"pages_sidebar_2\";s:0:\"\";}'),
(10629, 984, 'avada_post_views_count', '206'),
(10630, 984, 'avada_today_post_views_count', '1'),
(10631, 984, 'avada_post_views_count_today_date', '26-03-2025'),
(10632, 364, 'avada_post_views_count', '315'),
(10633, 364, 'avada_today_post_views_count', '3'),
(10634, 364, 'avada_post_views_count_today_date', '26-03-2025'),
(10635, 59, 'avada_post_views_count', '300'),
(10636, 59, 'avada_today_post_views_count', '2'),
(10637, 59, 'avada_post_views_count_today_date', '01-04-2025'),
(10638, 950, 'avada_post_views_count', '313'),
(10639, 950, 'avada_today_post_views_count', '2'),
(10640, 950, 'avada_post_views_count_today_date', '26-03-2025'),
(10641, 57, 'avada_post_views_count', '301'),
(10642, 57, 'avada_today_post_views_count', '1'),
(10643, 57, 'avada_post_views_count_today_date', '01-04-2025'),
(10644, 938, 'avada_post_views_count', '323'),
(10645, 938, 'avada_today_post_views_count', '1'),
(10646, 938, 'avada_post_views_count_today_date', '31-03-2025'),
(10647, 942, 'avada_post_views_count', '327'),
(10648, 942, 'avada_today_post_views_count', '2'),
(10649, 942, 'avada_post_views_count_today_date', '25-03-2025'),
(10650, 86, '_fusion', 'a:21:{s:25:\"show_first_featured_image\";s:3:\"yes\";s:14:\"blog_width_100\";s:2:\"no\";s:20:\"image_rollover_icons\";s:8:\"linkzoom\";s:11:\"slider_type\";s:2:\"no\";s:6:\"slider\";s:1:\"0\";s:9:\"wooslider\";s:1:\"0\";s:9:\"revslider\";s:1:\"0\";s:13:\"elasticslider\";s:1:\"0\";s:14:\"display_header\";s:3:\"yes\";s:14:\"header_bg_full\";s:2:\"no\";s:16:\"header_bg_repeat\";s:6:\"repeat\";s:7:\"bg_full\";s:2:\"no\";s:9:\"bg_repeat\";s:6:\"repeat\";s:15:\"content_bg_full\";s:2:\"no\";s:17:\"content_bg_repeat\";s:6:\"repeat\";s:19:\"page_title_bar_text\";s:3:\"yes\";s:17:\"post_links_target\";s:2:\"no\";s:20:\"sbg_selected_sidebar\";a:1:{i:0;s:1:\"0\";}s:13:\"posts_sidebar\";s:12:\"Blog Sidebar\";s:22:\"sbg_selected_sidebar_2\";a:1:{i:0;s:1:\"0\";}s:15:\"posts_sidebar_2\";s:0:\"\";}'),
(10651, 86, 'avada_today_post_views_count', '1'),
(10652, 86, 'avada_post_views_count_today_date', '01-04-2025'),
(10653, 936, 'avada_post_views_count', '322'),
(10654, 936, 'avada_today_post_views_count', '1'),
(10655, 936, 'avada_post_views_count_today_date', '31-03-2025'),
(10656, 92, '_fusion', 'a:21:{s:25:\"show_first_featured_image\";s:3:\"yes\";s:14:\"blog_width_100\";s:2:\"no\";s:20:\"image_rollover_icons\";s:8:\"linkzoom\";s:11:\"slider_type\";s:2:\"no\";s:6:\"slider\";s:1:\"0\";s:9:\"wooslider\";s:1:\"0\";s:9:\"revslider\";s:1:\"0\";s:13:\"elasticslider\";s:1:\"0\";s:14:\"display_header\";s:3:\"yes\";s:14:\"header_bg_full\";s:2:\"no\";s:16:\"header_bg_repeat\";s:6:\"repeat\";s:7:\"bg_full\";s:2:\"no\";s:9:\"bg_repeat\";s:6:\"repeat\";s:15:\"content_bg_full\";s:2:\"no\";s:17:\"content_bg_repeat\";s:6:\"repeat\";s:19:\"page_title_bar_text\";s:3:\"yes\";s:17:\"post_links_target\";s:2:\"no\";s:20:\"sbg_selected_sidebar\";a:1:{i:0;s:1:\"0\";}s:13:\"posts_sidebar\";s:12:\"Blog Sidebar\";s:22:\"sbg_selected_sidebar_2\";a:1:{i:0;s:1:\"0\";}s:15:\"posts_sidebar_2\";s:0:\"\";}'),
(10657, 1201, 'avada_post_views_count', '291'),
(10658, 1201, 'avada_today_post_views_count', '1'),
(10659, 1201, 'avada_post_views_count_today_date', '31-03-2025'),
(10660, 1199, 'avada_post_views_count', '320'),
(10661, 1199, 'avada_today_post_views_count', '2'),
(10662, 1199, 'avada_post_views_count_today_date', '25-03-2025'),
(10663, 1, 'avada_today_post_views_count', '1'),
(10664, 1, 'avada_post_views_count_today_date', '01-04-2025'),
(10665, 415, '_fusion', 'a:21:{s:25:\"show_first_featured_image\";s:3:\"yes\";s:14:\"blog_width_100\";s:2:\"no\";s:20:\"image_rollover_icons\";s:8:\"linkzoom\";s:11:\"slider_type\";s:2:\"no\";s:6:\"slider\";s:1:\"0\";s:9:\"wooslider\";s:1:\"0\";s:9:\"revslider\";s:1:\"0\";s:13:\"elasticslider\";s:1:\"0\";s:14:\"display_header\";s:3:\"yes\";s:14:\"header_bg_full\";s:2:\"no\";s:16:\"header_bg_repeat\";s:6:\"repeat\";s:7:\"bg_full\";s:2:\"no\";s:9:\"bg_repeat\";s:6:\"repeat\";s:15:\"content_bg_full\";s:2:\"no\";s:17:\"content_bg_repeat\";s:6:\"repeat\";s:19:\"page_title_bar_text\";s:3:\"yes\";s:17:\"post_links_target\";s:2:\"no\";s:20:\"sbg_selected_sidebar\";a:1:{i:0;s:1:\"0\";}s:13:\"posts_sidebar\";s:12:\"Blog Sidebar\";s:22:\"sbg_selected_sidebar_2\";a:1:{i:0;s:1:\"0\";}s:15:\"posts_sidebar_2\";s:0:\"\";}'),
(10666, 415, 'avada_today_post_views_count', '4'),
(10667, 415, 'avada_post_views_count_today_date', '25-03-2025'),
(10668, 998, '_fusion', 'a:20:{s:11:\"slider_type\";s:2:\"no\";s:6:\"slider\";s:1:\"0\";s:9:\"wooslider\";s:1:\"0\";s:9:\"revslider\";s:1:\"0\";s:13:\"elasticslider\";s:1:\"0\";s:25:\"show_first_featured_image\";s:3:\"yes\";s:14:\"display_header\";s:3:\"yes\";s:14:\"header_bg_full\";s:2:\"no\";s:16:\"header_bg_repeat\";s:6:\"repeat\";s:7:\"bg_full\";s:2:\"no\";s:9:\"bg_repeat\";s:6:\"repeat\";s:15:\"content_bg_full\";s:2:\"no\";s:17:\"content_bg_repeat\";s:6:\"repeat\";s:14:\"blog_width_100\";s:2:\"no\";s:17:\"portfolio_filters\";s:3:\"yes\";s:14:\"page_title_bar\";s:2:\"no\";s:20:\"sbg_selected_sidebar\";a:1:{i:0;s:1:\"0\";}s:13:\"pages_sidebar\";s:0:\"\";s:22:\"sbg_selected_sidebar_2\";a:1:{i:0;s:1:\"0\";}s:15:\"pages_sidebar_2\";s:0:\"\";}'),
(10669, 998, 'avada_post_views_count', '189'),
(10670, 998, 'avada_today_post_views_count', '1'),
(10671, 998, 'avada_post_views_count_today_date', '24-03-2025'),
(10672, 930, 'avada_post_views_count', '328'),
(10673, 930, 'avada_today_post_views_count', '1'),
(10674, 930, 'avada_post_views_count_today_date', '01-04-2025'),
(10675, 417, '_fusion', 'a:0:{}'),
(10676, 417, 'avada_today_post_views_count', '1'),
(10677, 417, 'avada_post_views_count_today_date', '24-03-2025'),
(10678, 358, 'avada_post_views_count', '310'),
(10679, 358, 'avada_today_post_views_count', '1'),
(10680, 358, 'avada_post_views_count_today_date', '31-03-2025'),
(10681, 934, 'avada_post_views_count', '303'),
(10682, 934, 'avada_today_post_views_count', '1'),
(10683, 934, 'avada_post_views_count_today_date', '26-03-2025'),
(10684, 13, '_fusion', 'a:23:{s:11:\"slider_type\";s:4:\"flex\";s:6:\"slider\";s:1:\"0\";s:9:\"wooslider\";s:1:\"0\";s:9:\"revslider\";s:1:\"0\";s:13:\"elasticslider\";s:1:\"0\";s:25:\"show_first_featured_image\";s:3:\"yes\";s:14:\"display_header\";s:3:\"yes\";s:14:\"header_bg_full\";s:2:\"no\";s:16:\"header_bg_repeat\";s:6:\"repeat\";s:14:\"footer_widgets\";s:2:\"no\";s:7:\"bg_full\";s:2:\"no\";s:9:\"bg_repeat\";s:6:\"repeat\";s:15:\"content_bg_full\";s:2:\"no\";s:17:\"content_bg_repeat\";s:6:\"repeat\";s:14:\"blog_width_100\";s:2:\"no\";s:17:\"portfolio_filters\";s:3:\"yes\";s:14:\"page_title_bar\";s:2:\"no\";s:19:\"page_title_bar_text\";s:2:\"no\";s:17:\"page_title_bar_bs\";s:4:\"none\";s:20:\"sbg_selected_sidebar\";a:1:{i:0;s:1:\"0\";}s:13:\"pages_sidebar\";s:0:\"\";s:22:\"sbg_selected_sidebar_2\";a:1:{i:0;s:1:\"0\";}s:15:\"pages_sidebar_2\";s:0:\"\";}'),
(10685, 13, 'avada_post_views_count', '80'),
(10686, 13, 'avada_today_post_views_count', '1'),
(10687, 13, 'avada_post_views_count_today_date', '03-03-2025'),
(10688, 6, '_fusion', 'a:0:{}'),
(10689, 92, 'avada_today_post_views_count', '1'),
(10690, 92, 'avada_post_views_count_today_date', '25-03-2025'),
(10691, 1121, '_fusion', 'a:22:{s:11:\"slider_type\";s:2:\"no\";s:6:\"slider\";s:1:\"0\";s:9:\"wooslider\";s:1:\"0\";s:9:\"revslider\";s:1:\"0\";s:13:\"elasticslider\";s:1:\"0\";s:25:\"show_first_featured_image\";s:3:\"yes\";s:14:\"display_header\";s:3:\"yes\";s:14:\"header_bg_full\";s:2:\"no\";s:16:\"header_bg_repeat\";s:6:\"repeat\";s:14:\"displayed_menu\";s:2:\"31\";s:7:\"bg_full\";s:2:\"no\";s:9:\"bg_repeat\";s:6:\"repeat\";s:15:\"content_bg_full\";s:2:\"no\";s:17:\"content_bg_repeat\";s:6:\"repeat\";s:14:\"blog_width_100\";s:2:\"no\";s:17:\"portfolio_filters\";s:3:\"yes\";s:14:\"page_title_bar\";s:2:\"no\";s:19:\"page_title_bar_text\";s:2:\"no\";s:20:\"sbg_selected_sidebar\";a:1:{i:0;s:1:\"0\";}s:13:\"pages_sidebar\";s:0:\"\";s:22:\"sbg_selected_sidebar_2\";a:1:{i:0;s:1:\"0\";}s:15:\"pages_sidebar_2\";s:0:\"\";}'),
(10692, 1121, 'avada_post_views_count', '217'),
(10693, 1121, 'avada_today_post_views_count', '1'),
(10694, 1121, 'avada_post_views_count_today_date', '26-03-2025'),
(10695, 4, '_fusion', 'a:0:{}'),
(10696, 3, '_fusion', 'a:0:{}'),
(10697, 855, '_fusion', 'a:27:{s:11:\"slider_type\";s:2:\"no\";s:6:\"slider\";s:1:\"0\";s:9:\"wooslider\";s:1:\"0\";s:9:\"revslider\";s:1:\"0\";s:13:\"elasticslider\";s:1:\"0\";s:12:\"main_padding\";a:2:{s:3:\"top\";s:3:\"0px\";s:6:\"bottom\";s:3:\"0px\";}s:25:\"show_first_featured_image\";s:3:\"yes\";s:14:\"display_header\";s:3:\"yes\";s:14:\"header_bg_full\";s:2:\"no\";s:16:\"header_bg_repeat\";s:6:\"repeat\";s:14:\"footer_widgets\";s:3:\"yes\";s:16:\"footer_copyright\";s:3:\"yes\";s:16:\"footer_100_width\";s:3:\"yes\";s:6:\"layout\";s:4:\"wide\";s:7:\"bg_full\";s:3:\"yes\";s:9:\"bg_repeat\";s:9:\"no-repeat\";s:15:\"content_bg_full\";s:3:\"yes\";s:17:\"content_bg_repeat\";s:6:\"repeat\";s:14:\"blog_width_100\";s:2:\"no\";s:17:\"portfolio_filters\";s:3:\"yes\";s:14:\"page_title_bar\";s:2:\"no\";s:19:\"page_title_bar_text\";s:2:\"no\";s:17:\"page_title_bar_bs\";s:4:\"none\";s:20:\"sbg_selected_sidebar\";a:1:{i:0;s:1:\"0\";}s:13:\"pages_sidebar\";s:0:\"\";s:22:\"sbg_selected_sidebar_2\";a:1:{i:0;s:1:\"0\";}s:15:\"pages_sidebar_2\";s:0:\"\";}'),
(10698, 5, '_fusion', 'a:0:{}'),
(10699, 1327, '_fusion', 'a:22:{s:11:\"slider_type\";s:4:\"flex\";s:6:\"slider\";s:1:\"0\";s:9:\"wooslider\";s:1:\"0\";s:9:\"revslider\";s:1:\"0\";s:13:\"elasticslider\";s:1:\"0\";s:12:\"main_padding\";a:2:{s:3:\"top\";s:3:\"0px\";s:6:\"bottom\";s:3:\"0px\";}s:25:\"show_first_featured_image\";s:3:\"yes\";s:14:\"display_header\";s:3:\"yes\";s:14:\"header_bg_full\";s:2:\"no\";s:16:\"header_bg_repeat\";s:6:\"repeat\";s:7:\"bg_full\";s:2:\"no\";s:9:\"bg_repeat\";s:6:\"repeat\";s:15:\"content_bg_full\";s:2:\"no\";s:17:\"content_bg_repeat\";s:6:\"repeat\";s:14:\"blog_width_100\";s:2:\"no\";s:17:\"portfolio_filters\";s:3:\"yes\";s:14:\"page_title_bar\";s:2:\"no\";s:19:\"page_title_bar_text\";s:3:\"yes\";s:20:\"sbg_selected_sidebar\";a:1:{i:0;s:1:\"0\";}s:13:\"pages_sidebar\";s:0:\"\";s:22:\"sbg_selected_sidebar_2\";a:1:{i:0;s:1:\"0\";}s:15:\"pages_sidebar_2\";s:0:\"\";}'),
(10700, 2, '_fusion', 'a:0:{}'),
(10701, 1327, 'avada_post_views_count', '3'),
(10702, 1327, 'avada_today_post_views_count', '1'),
(10703, 1327, 'avada_post_views_count_today_date', '15-03-2025');

-- --------------------------------------------------------

--
-- Table structure for table `wp_posts`
--

CREATE TABLE `wp_posts` (
  `ID` bigint(20) UNSIGNED NOT NULL,
  `post_author` bigint(20) UNSIGNED NOT NULL DEFAULT 0,
  `post_date` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
  `post_date_gmt` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
  `post_content` longtext NOT NULL,
  `post_title` text NOT NULL,
  `post_excerpt` text NOT NULL,
  `post_status` varchar(20) NOT NULL DEFAULT 'publish',
  `comment_status` varchar(20) NOT NULL DEFAULT 'open',
  `ping_status` varchar(20) NOT NULL DEFAULT 'open',
  `post_password` varchar(255) NOT NULL DEFAULT '',
  `post_name` varchar(200) NOT NULL DEFAULT '',
  `to_ping` text NOT NULL,
  `pinged` text NOT NULL,
  `post_modified` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
  `post_modified_gmt` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
  `post_content_filtered` longtext NOT NULL,
  `post_parent` bigint(20) UNSIGNED NOT NULL DEFAULT 0,
  `guid` varchar(255) NOT NULL DEFAULT '',
  `menu_order` int(11) NOT NULL DEFAULT 0,
  `post_type` varchar(20) NOT NULL DEFAULT 'post',
  `post_mime_type` varchar(100) NOT NULL DEFAULT '',
  `comment_count` bigint(20) NOT NULL DEFAULT 0
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;

--
-- Dumping data for table `wp_posts`
--

INSERT INTO `wp_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(1, 1, '2015-08-07 13:45:50', '2015-08-07 13:45:50', 'Welcome to WordPress. This is your first post. Edit or delete it, then start blogging!', 'Hello world!', '', 'publish', 'open', 'open', '', 'hello-world', '', '', '2019-11-13 14:13:47', '2019-11-13 12:13:47', '', 0, 'http://localhost/assagaylodge/?p=1', 0, 'post', '', 1),
(4, 1, '2015-08-07 13:47:16', '2015-08-07 13:47:16', '<p>Your Name (required)<br />\r\n    [text* your-name] </p>\r\n\r\n<p>Your Email (required)<br />\r\n    [email* your-email] </p>\r\n\r\n<p>Subject<br />\r\n    [text your-subject] </p>\r\n\r\n<p>Your Message<br />\r\n    [textarea your-message] </p>\r\n\r\n<p>[submit \"Send\"]</p>\nENQUIRY\n[your-name] <assagaylodge@msla.co.za>\nFrom: [your-name] <[your-email]>\r\nSubject: [your-subject]\r\n\r\nMessage Body:\r\n[your-message]\nassagaylodge@msla.co.za\nReply-To: [your-email]\n\n\n\n\n[your-subject]\nAssagay Forest Lodge <assagaylodge@msla.co.za>\nMessage Body:\r\n[your-message]\r\n\r\n--\r\nThis e-mail was sent from a contact form on Assagay Forest Lodge (http://localhost/assagaylodge)\n[your-email]\nReply-To: assagaylodge@msla.co.za\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', '', 'publish', 'open', 'open', '', 'contact-form-1', '', '', '2016-04-19 11:03:52', '2016-04-19 09:03:52', '', 0, 'http://localhost/assagaylodge/?post_type=wpcf7_contact_form&#038;p=4', 0, 'wpcf7_contact_form', '', 0),
(7, 1, '2015-01-27 11:54:04', '2015-01-27 11:54:04', '[fusion_builder_container background_color=\"#f0f0ed\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"20\" padding_bottom=\"20\" padding_left=\"\" padding_right=\"\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][fusion_builder_row][fusion_builder_column type=\"1_2\" layout=\"1_2\" spacing=\"yes\" center_content=\"no\" link=\"\" target=\"_self\" min_height=\"\" hide_on_mobile=\"no\" class=\"\" id=\"\" background_image_id=\"\" background_color=\"\" background_image=\"\" background_position=\"left top\" background_repeat=\"no-repeat\" hover_type=\"none\" border_size=\"0\" border_color=\"\" border_style=\"solid\" border_position=\"all\" border_radius_top_left=\"\" border_radius_top_right=\"\" border_radius_bottom_left=\"\" border_radius_bottom_right=\"\" box_shadow=\"no\" box_shadow_vertical=\"\" box_shadow_horizontal=\"\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" box_shadow_color=\"\" box_shadow_style=\"\" padding_top=\"40px\" padding_right=\"\" padding_bottom=\"40px\" padding_left=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.1\" animation_offset=\"\" last=\"no\"][fusion_text]\r\n<h1 style=\"text-align: center;\">No Fancy Star Grading\r\nNo Room Service\r\nNo Bed Turn-downs\r\nNo Rose Petals in the Bath water</h1>\r\n<h1 style=\"text-align: center;\">... just old fashioned homely comforts</h1>\r\n[/fusion_text][/fusion_builder_column][fusion_builder_column type=\"1_2\" layout=\"1_2\" last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"\" padding_right=\"\" padding_bottom=\"\" padding_left=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\" min_height=\"\"][fusion_text columns=\"\" column_min_width=\"\" column_spacing=\"\" rule_style=\"default\" rule_size=\"\" rule_color=\"\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" class=\"\" id=\"\"]\r\n<h1 style=\"text-align: center;\">5 Bedroom Family Lodge</h1>\r\n<h3 style=\"text-align: justify;\">We are a four season lodge, because there’s always something to celebrate… We offer comfort, relaxation and privacy right in the heart of 1000 Hills. The Forest, the Gardens, the Atmosphere all speak to  Rest  &amp; Relaxation.</h3>\r\n[/fusion_text][fusion_tagline_box backgroundcolor=\"\" shadow=\"yes\" shadowopacity=\"0.70\" border=\"1\" bordercolor=\"\" highlightposition=\"none\" content_alignment=\"center\" link=\"http://msla.co.za/lodge/reservations\" button=\"Book Now!\" linktarget=\"_self\" modal=\"\" button_size=\"xlarge\" button_type=\"\" button_shape=\"square\" buttoncolor=\"default\" title=\"\" description=\"\" margin_top=\"\" margin_bottom=\"\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" class=\"\" id=\"\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"\" /][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" menu_anchor=\"\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" publish_date=\"\" class=\"\" id=\"\" background_color=\"\" background_image=\"\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" video_mp4=\"\" video_webm=\"\" video_ogv=\"\" video_url=\"\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" video_preview_image=\"\" border_size=\"\" border_color=\"\" border_style=\"solid\" margin_top=\"\" margin_bottom=\"\" padding_top=\"\" padding_right=\"\" padding_bottom=\"\" padding_left=\"\"][fusion_builder_row][fusion_builder_column type=\"1_1\" layout=\"1_1\" spacing=\"\" center_content=\"no\" link=\"\" target=\"_self\" min_height=\"\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" class=\"\" id=\"\" background_color=\"\" background_image=\"\" background_image_id=\"\" background_position=\"left top\" background_repeat=\"no-repeat\" hover_type=\"none\" border_size=\"0\" border_color=\"\" border_style=\"solid\" border_position=\"all\" border_radius=\"\" box_shadow=\"no\" dimension_box_shadow=\"\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" box_shadow_color=\"\" box_shadow_style=\"\" padding_top=\"\" padding_right=\"\" padding_bottom=\"\" padding_left=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"\" last=\"no\"][fusion_fusionslider name=\"lodge\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" class=\"\" id=\"\" /][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container background_color=\"#f0f0ed\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"20\" padding_bottom=\"20\" padding_left=\"\" padding_right=\"\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][fusion_builder_row][fusion_builder_column type=\"1_2\" layout=\"1_2\" last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"\" padding_right=\"\" padding_bottom=\"\" padding_left=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\" min_height=\"\"][fusion_text]\r\n<h3 style=\"text-align: justify;\">Set in the rolling peaks and valleys of a thousand hills surrounded by a canopy of indigenous trees, you will find that horses still have right of way, we certainly offer the best of both worlds, farm and charm coupled with modern amenities that will have you feeling relaxed and rejuvenated.</h3>\r\n<h3 style=\"text-align: justify;\">We know that sometimes you are searching for a romantic getaway or maybe a few days away with old friends. Other times you are searching for a place to host a weekend, family reunion or a business retreat. In addition to nightly room rentals, our lodge is also available for meetings, retreats  and makes the perfect place for a wedding party to stay together and get ready for the big day. Regardless, with our five comfortable and cozy guest bedrooms, multiple garden spaces and hideaways, and a  large private deck  where you can take a nap or read a book we definitely have the room for you!</h3>\r\n<h3 style=\"text-align: justify;\">Evenings are quiet and peaceful taking you far away from the business of city life. This is a unique and memorable country experience. We look forward to having you as a guest!</h3>\r\n[/fusion_text][/fusion_builder_column][fusion_builder_column type=\"1_2\" layout=\"1_2\" last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"\" padding_right=\"\" padding_bottom=\"\" padding_left=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\" min_height=\"\"][fusion_text]\r\n<h3 style=\"text-align: justify;\">Our lodge has been in our family for years and has recently been beautifully renovated. Five rooms all with en-suite showers lead off your own large central lounge, featuring a 36 foot high vaulted ceiling, offering spacious living, dining, and a bar/conversational lounge area which includes a fitted kitchenette, all adding to a sense of homely comfort. Sumptuous meals can be provided on request and served on the bottom deck at the swimming pool.</h3>\r\n<h3 style=\"text-align: justify;\">Be lulled to sleep by the sound of the waterfall and tinkling stream just outside your window, waking from a peaceful night\'s sleep in a pillow-top bed dressed in luxurious linens to coddle you in ultimate comfort.</h3>\r\n<h3 style=\"text-align: justify;\">Our property boasts many different species of birds and animals. We have a resident otter, a family of wild bush pigs,  a family of rock rabbits, porcupine, little blue duikers, a variety of different frogs and an abundance of bird life, including the occasional snakes that pass through!</h3>\r\n[/fusion_text][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container background_color=\"#f0f0ed\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"20\" padding_bottom=\"20\" padding_left=\"\" padding_right=\"\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][fusion_builder_row][fusion_builder_column type=\"1_1\" layout=\"1_1\" background_position=\"left top\" background_color=\"\" border_size=\"\" border_color=\"\" border_style=\"solid\" spacing=\"yes\" background_image=\"\" background_repeat=\"no-repeat\" padding_top=\"\" padding_right=\"\" padding_bottom=\"\" padding_left=\"\" margin_top=\"0px\" margin_bottom=\"0px\" class=\"\" id=\"\" animation_type=\"\" animation_speed=\"0.3\" animation_direction=\"left\" hide_on_mobile=\"no\" center_content=\"no\" min_height=\"none\" last=\"no\" hover_type=\"none\" link=\"\" border_position=\"all\"][fusion_text]\r\n<h1 style=\"text-align: center;\">Gallery</h1>\r\n[/fusion_text][fusion_separator style_type=\"single solid\" top_margin=\"\" bottom_margin=\"40\" sep_color=\"#000000\" border_size=\"\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"170px\" alignment=\"\" class=\"\" id=\"\" /][/fusion_builder_column][fusion_builder_column type=\"1_6\" layout=\"1_6\" last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding_top=\"\" padding_right=\"\" padding_bottom=\"\" padding_left=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\" min_height=\"\"][/fusion_builder_column][fusion_builder_column type=\"2_3\" layout=\"2_3\" last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding_top=\"\" padding_right=\"\" padding_bottom=\"\" padding_left=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\" min_height=\"\"][fusion_text]\r\n<h3 style=\"text-align: justify;\">The Lodge is open, spacious, comfortable and homely. During hot summer days, sit and bask in the sun on the deck  with one of our  picnic specials. In winter, snuggle up with a good book or challenge one another to a friendly board game in the glassed nook area .</h3>\r\n[/fusion_text][/fusion_builder_column][fusion_builder_column type=\"1_6\" layout=\"1_6\" last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding_top=\"\" padding_right=\"\" padding_bottom=\"\" padding_left=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\" min_height=\"\"][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container background_color=\"#f0f0ed\" background_image=\"http://localhost/assagaylodge/wp-content/uploads/2015/01/Wood_Texture.jpg\" background_parallax=\"fixed\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"30\" padding_bottom=\"10\" padding_left=\"0\" padding_right=\"0\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][fusion_builder_row][fusion_builder_column type=\"1_1\" layout=\"1_1\" background_position=\"left top\" background_color=\"\" border_size=\"\" border_color=\"\" border_style=\"solid\" spacing=\"yes\" background_image=\"\" background_repeat=\"no-repeat\" padding_top=\"\" padding_right=\"\" padding_bottom=\"\" padding_left=\"\" margin_top=\"0px\" margin_bottom=\"0px\" class=\"\" id=\"\" animation_type=\"\" animation_speed=\"0.3\" animation_direction=\"left\" hide_on_mobile=\"no\" center_content=\"no\" min_height=\"none\" last=\"no\" hover_type=\"none\" link=\"\" border_position=\"all\"][fusion_portfolio layout=\"grid\" picture_size=\"auto\" text_layout=\"no_text\" filters=\"no\" columns=\"3\" column_spacing=\"12\" cat_slug=\"the-lodge\" exclude_cats=\"\" number_posts=\"9\" offset=\"\" excerpt_length=\"35\" strip_html=\"yes\" carousel_layout=\"title_on_rollover\" scroll_items=\"\" autoplay=\"no\" show_nav=\"yes\" mouse_scroll=\"no\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\" /][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container background_color=\"#f0f0ed\" background_image=\"\" background_parallax=\"fixed\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"20\" padding_bottom=\"20\" padding_left=\"\" padding_right=\"\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][fusion_builder_row][fusion_builder_column type=\"1_1\" layout=\"1_1\" background_position=\"left top\" background_color=\"\" border_size=\"\" border_color=\"\" border_style=\"solid\" spacing=\"yes\" background_image=\"\" background_repeat=\"no-repeat\" padding_top=\"\" padding_right=\"\" padding_bottom=\"\" padding_left=\"\" margin_top=\"0px\" margin_bottom=\"0px\" class=\"\" id=\"\" animation_type=\"\" animation_speed=\"0.3\" animation_direction=\"left\" hide_on_mobile=\"no\" center_content=\"no\" min_height=\"none\" last=\"no\" hover_type=\"none\" link=\"\" border_position=\"all\"][fusion_text]\r\n<h1 style=\"text-align: center;\">BEDROOMS</h1>\r\n[/fusion_text][fusion_separator style_type=\"single solid\" top_margin=\"\" bottom_margin=\"20\" sep_color=\"#000000\" border_size=\"\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"170px\" alignment=\"\" class=\"\" id=\"\" /][/fusion_builder_column][fusion_builder_column type=\"1_6\" layout=\"1_6\" last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding_top=\"\" padding_right=\"\" padding_bottom=\"\" padding_left=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\" min_height=\"\"][/fusion_builder_column][fusion_builder_column type=\"2_3\" layout=\"2_3\" last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding_top=\"\" padding_right=\"\" padding_bottom=\"\" padding_left=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\" min_height=\"\"][fusion_text]\r\n<h3 style=\"text-align: justify;\">When it comes to our bedrooms we’re proud to say we offer something a little more special. One of five  lovingly and tastefully decorated guest rooms. Soft gray decor soothes the senses providing a peaceful, blissfully comfortable rest from your travels and hectic lives.</h3>\r\n<h3 style=\"text-align: justify;\">Our  bedrooms are spacious, clean, comfortable all en-suite, equipped with either king size or queen size beds. Each room sleeps two guests. The rooms have high ceilings, wall heaters &amp; ceiling fans. Beds all have electric blankets in Winter, 100% cotton percale sheets and thick hyper allergenic microfiber duvets and pillows. All guest rooms are cleaned with organic and green products. Amenities include hairdryers in each room. Three rooms feature King-sized beds  of which two can be  split into two single beds. Two  rooms can therefore be changed into a twin room upon request. Two rooms feature a Queen-sized double bed. These beds cannot be split into twin beds.</h3>\r\n[/fusion_text][/fusion_builder_column][fusion_builder_column type=\"1_6\" layout=\"1_6\" last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding_top=\"\" padding_right=\"\" padding_bottom=\"\" padding_left=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\" min_height=\"\"][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container background_color=\"\" background_image=\"http://localhost/assagaylodge/wp-content/uploads/2015/01/DSC01516-1148-x-764.jpg\" background_parallax=\"fixed\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"center center\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"20\" padding_bottom=\"20\" padding_left=\"0\" padding_right=\"0\" hundred_percent=\"no\" equal_height_columns=\"yes\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][fusion_builder_row][fusion_builder_column type=\"1_1\" layout=\"1_1\" background_position=\"left top\" background_color=\"\" border_size=\"\" border_color=\"\" border_style=\"solid\" spacing=\"yes\" background_image=\"\" background_repeat=\"no-repeat\" padding_top=\"\" padding_right=\"\" padding_bottom=\"\" padding_left=\"\" margin_top=\"0px\" margin_bottom=\"0px\" class=\"\" id=\"\" animation_type=\"\" animation_speed=\"0.3\" animation_direction=\"left\" hide_on_mobile=\"no\" center_content=\"no\" min_height=\"none\" last=\"no\" hover_type=\"none\" link=\"\" border_position=\"all\"][fusion_portfolio layout=\"grid\" picture_size=\"auto\" text_layout=\"no_text\" filters=\"no\" columns=\"3\" column_spacing=\"12\" cat_slug=\"bedrooms\" exclude_cats=\"\" number_posts=\"6\" offset=\"\" excerpt_length=\"35\" strip_html=\"yes\" carousel_layout=\"title_on_rollover\" scroll_items=\"\" autoplay=\"no\" show_nav=\"yes\" mouse_scroll=\"no\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\" /][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container background_color=\"#f0f0ed\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"20\" padding_bottom=\"20\" padding_left=\"0\" padding_right=\"0\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][fusion_builder_row][fusion_builder_column type=\"1_1\" layout=\"1_1\" background_position=\"left top\" background_color=\"\" border_size=\"\" border_color=\"\" border_style=\"solid\" spacing=\"yes\" background_image=\"\" background_repeat=\"no-repeat\" padding_top=\"\" padding_right=\"\" padding_bottom=\"\" padding_left=\"\" margin_top=\"0px\" margin_bottom=\"0px\" class=\"\" id=\"\" animation_type=\"\" animation_speed=\"0.3\" animation_direction=\"left\" hide_on_mobile=\"no\" center_content=\"no\" min_height=\"none\" last=\"no\" hover_type=\"none\" link=\"\" border_position=\"all\"][fusion_text]\r\n<h1 style=\"text-align: center;\">GARDENS</h1>\r\n[/fusion_text][fusion_separator style_type=\"single solid\" top_margin=\"\" bottom_margin=\"20\" sep_color=\"#000000\" border_size=\"\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"170px\" alignment=\"\" class=\"\" id=\"\" /][/fusion_builder_column][fusion_builder_column type=\"1_6\" layout=\"1_6\" last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding_top=\"\" padding_right=\"\" padding_bottom=\"\" padding_left=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\" min_height=\"\"][/fusion_builder_column][fusion_builder_column type=\"2_3\" layout=\"2_3\" last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding_top=\"\" padding_right=\"\" padding_bottom=\"\" padding_left=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\" min_height=\"\"][fusion_text]\r\n<h3 style=\"text-align: justify;\">The garden is large and offers many secluded spots to lose yourself in a book with a glass of wine underneath the shade of a tree, listening to the sounds of the birds and smelling the beautiful flowers.</h3>\r\n[/fusion_text][/fusion_builder_column][fusion_builder_column type=\"1_6\" layout=\"1_6\" last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding_top=\"\" padding_right=\"\" padding_bottom=\"\" padding_left=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\" min_height=\"\"][/fusion_builder_column][fusion_builder_column type=\"1_1\" layout=\"1_1\" background_position=\"left top\" background_color=\"\" border_size=\"\" border_color=\"\" border_style=\"solid\" spacing=\"yes\" background_image=\"\" background_repeat=\"no-repeat\" padding_top=\"\" padding_right=\"\" padding_bottom=\"\" padding_left=\"\" margin_top=\"0px\" margin_bottom=\"0px\" class=\"\" id=\"\" animation_type=\"\" animation_speed=\"0.3\" animation_direction=\"left\" hide_on_mobile=\"no\" center_content=\"no\" min_height=\"none\" last=\"no\" hover_type=\"none\" link=\"\" border_position=\"all\"][fusion_portfolio layout=\"grid\" picture_size=\"auto\" text_layout=\"no_text\" filters=\"no\" columns=\"3\" column_spacing=\"12\" cat_slug=\"gardens\" exclude_cats=\"\" number_posts=\"9\" offset=\"\" excerpt_length=\"35\" strip_html=\"yes\" carousel_layout=\"title_on_rollover\" scroll_items=\"\" autoplay=\"no\" show_nav=\"yes\" mouse_scroll=\"no\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\" /][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container background_color=\"#ffffff\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"65px\" padding_bottom=\"65px\" padding_left=\"\" padding_right=\"\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][fusion_builder_row][fusion_builder_column type=\"1_1\" layout=\"1_1\" background_position=\"left top\" background_color=\"\" border_size=\"\" border_color=\"\" border_style=\"solid\" spacing=\"yes\" background_image=\"\" background_repeat=\"no-repeat\" padding_top=\"\" padding_right=\"\" padding_bottom=\"\" padding_left=\"\" margin_top=\"0px\" margin_bottom=\"0px\" class=\"\" id=\"\" animation_type=\"\" animation_speed=\"0.3\" animation_direction=\"left\" hide_on_mobile=\"no\" center_content=\"no\" min_height=\"none\" last=\"no\" hover_type=\"none\" link=\"\" border_position=\"all\"][fusion_button link=\"https://msla.co.za/lodge/reservations/\" color=\"default\" size=\"xlarge\" stretch=\"default\" type=\"3d\" shape=\"round\" target=\"_self\" title=\"\" button_gradient_top_color=\"#f0f0ed\" button_gradient_bottom_color=\"#f0f0ed\" button_gradient_top_color_hover=\"#6666a4\" button_gradient_bottom_color_hover=\"#6666a4\" accent_color=\"#ffffff\" accent_hover_color=\"#ffffff\" bevel_color=\"\" border_width=\"0px\" icon=\"\" icon_position=\"left\" icon_divider=\"no\" modal=\"\" animation_type=\"0\" animation_direction=\"left\" animation_speed=\"1\" animation_offset=\"\" alignment=\"center\" class=\"\" id=\"\"]Make A Reservation Enquiry[/fusion_button][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container]', 'Home', '', 'publish', 'closed', 'open', '', 'home', '', '', '2022-08-04 11:58:58', '2022-08-04 09:58:58', '', 0, 'http://theme-fusion.com/avada_demos_xml/travel/?page_id=7', 0, 'page', '', 0);
INSERT INTO `wp_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(9, 1, '2015-01-27 11:54:21', '2015-01-27 11:54:21', '[fusion_builder_container background_color=\"\" background_image=\"\" background_parallax=\"none\" parallax_speed=\"0.3\" enable_mobile=\"no\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"90px\" padding_bottom=\"0px\" padding_left=\"0px\" padding_right=\"0px\" hundred_percent=\"yes\" equal_height_columns=\"yes\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][fusion_builder_row][fusion_builder_column type=\"1_2\" last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"30px\" margin_top=\"0px\" margin_bottom=\"\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" class=\"\" id=\"\"][fusion_text]\n<h1 style=\"text-align: right; margin-top: 0px;\">PURE LUXURY</h1>\n[/fusion_text][fusion_separator style_type=\"single solid\" top_margin=\"0\" bottom_margin=\"30\" sep_color=\"#000000\" border_size=\"\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"170px\" alignment=\"right\" class=\"separator-right\" id=\"\"/][fusion_text]\n<h3 style=\"text-align: right;\">Our mission is to offer travelers unrivaled\nsavings at a selection of hand-picked\nluxurious destinations.</h3>\n[/fusion_text][/fusion_builder_column][fusion_builder_column type=\"1_2\" last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"http://theme-fusion.com/avada_demos_xml/travel/wp-content/uploads/2015/01/about-us-top-image.jpg\" background_repeat=\"no-repeat\" background_position=\"center center\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" class=\"\" id=\"\"][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container background_color=\"\" background_image=\"\" background_parallax=\"none\" parallax_speed=\"0.3\" enable_mobile=\"no\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"20px\" padding_bottom=\"65px\" padding_left=\"\"    padding_right=\"\"    hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][fusion_builder_row][fusion_builder_column type=\"1_2\" last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][fusion_text]Lorem ipsum dolor sit amet, consectetur adipiscing elit. Aliquam rutrum elementum consectetur. Nulla pharetra tristique urna ut suscipit. Curabitur sit amet dolor quis arcu scelerisque viverra eu ut lorem. Sed luctus, tellus volutpat tempor elementum, nisl elit sodales mi, et hendrerit dui diam eu est. Proin commodo ante magna, at ultrices leo dignissim quis.\n\nVivamus et enim aliquam, mollis orci sit amet, pretium magna Vestibulum ut efficitur nibh. Integer rhoncus nunc eu massa dignissim molestie. Pellentesque blandit eros vel dolor finibus mattis. Nulla rhoncus hendrerit justo, a aliquam ex blandit quis. Nam odio nisl, scelerisque sed lobortis id, lobortis at ante. Aliquam varius et lacus vel varius. Vivamus efficitur nec massa a faucibus. Nam ut velit tortor. Suspendisse lacinia vehicula nisi, gravida purus porta.[/fusion_text][/fusion_builder_column][fusion_builder_column type=\"1_2\" last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][fusion_text]Lorem ipsum dolor sit amet, consectetur adipiscing elit. Aliquam rutrum elementum consectetur. Nulla pharetra tristique urna ut suscipit. Curabitur sit amet dolor quis arcu scelerisque viverra eu ut lorem.\n[/fusion_text][fusion_separator style_type=\"none\" top_margin=\"13\" bottom_margin=\"13\" sep_color=\"\" border_size=\"\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"\" alignment=\"\" class=\"\" id=\"\"/][fusion_checklist icon=\"fa-star-o\" iconcolor=\"#6666a4\" circle=\"no\" circlecolor=\"\" size=\"15px\" class=\"\" id=\"\"][fusion_li_item icon=\"\"]Lorem ipsum dolor sit amet, consectetur adipiscing elit.[/fusion_li_item][fusion_li_item icon=\"\"]Aliquam rutrum Elementum consectetur.[/fusion_li_item][fusion_li_item icon=\"\"]Nulla pharetra tristique urna ut suscipit.[/fusion_li_item][fusion_li_item icon=\"\"]CuraBitur sit amet dolor quis arcu scelerisque eu ut lorem.[/fusion_li_item][fusion_li_item icon=\"\"]VestibuLum ut efficitur nibh.[/fusion_li_item][fusion_li_item icon=\"\"]Integer rhoncus nunc eu massa dignissim mo[/fusion_li_item][/fusion_checklist][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container background_color=\"#f0f0ed\" background_image=\"\" background_parallax=\"none\" parallax_speed=\"0.3\" enable_mobile=\"no\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"60px\" padding_bottom=\"85px\" padding_left=\"\"    padding_right=\"\"    hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][fusion_builder_row][fusion_builder_column type=\"1_1\" background_position=\"left top\" background_color=\"\" border_size=\"\" border_color=\"\" border_style=\"solid\" spacing=\"yes\" background_image=\"\" background_repeat=\"no-repeat\" padding=\"\" margin_top=\"0px\" margin_bottom=\"0px\" class=\"\" id=\"\" animation_type=\"\" animation_speed=\"0.3\" animation_direction=\"left\" hide_on_mobile=\"no\" center_content=\"no\" min_height=\"none\"][fusion_text]\n<h1 style=\"text-align: center;\">MEET THE TEAM</h1>\n[/fusion_text][fusion_separator style_type=\"single solid\" top_margin=\"\" bottom_margin=\"40\" sep_color=\"#000000\" border_size=\"\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"170px\" alignment=\"\" class=\"\" id=\"\"/][/fusion_builder_column][fusion_builder_column type=\"1_6\" last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][/fusion_builder_column][fusion_builder_column type=\"2_3\" last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][fusion_text]\n<h3 style=\"text-align: center;\">Our specialists are at the heart of Avada Destinations. They have all travelled extensively and documented it perfectly so you can enjoy your adventures.</h3>\n[/fusion_text][/fusion_builder_column][fusion_builder_column type=\"1_6\" last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][/fusion_builder_column][fusion_builder_column type=\"1_1\" background_position=\"left top\" background_color=\"\" border_size=\"\" border_color=\"\" border_style=\"solid\" spacing=\"yes\" background_image=\"\" background_repeat=\"no-repeat\" padding=\"\" margin_top=\"0px\" margin_bottom=\"0px\" class=\"\" id=\"\" animation_type=\"\" animation_speed=\"0.3\" animation_direction=\"left\" hide_on_mobile=\"no\" center_content=\"no\" min_height=\"none\"][fusion_separator style_type=\"none\" top_margin=\"\" bottom_margin=\"40\" sep_color=\"#ffffff\" border_size=\"\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"170px\" alignment=\"\" class=\"\" id=\"\"/][/fusion_builder_column][fusion_builder_column type=\"1_3\" last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"rgba(255,255,255,.6)\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"30px\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][fusion_imageframe lightbox=\"no\" lightbox_image=\"\" style_type=\"none\" bordercolor=\"\" bordersize=\"0px\" borderradius=\"0\" stylecolor=\"\" align=\"center\" link=\"\" linktarget=\"_self\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" hide_on_mobile=\"no\" class=\"\" id=\"\"] <img alt=\"\" src=\"http://theme-fusion.com/avada_demos_xml/travel/wp-content/uploads/2015/01/person11.jpg\" />[/fusion_imageframe][fusion_separator style_type=\"none\" top_margin=\"10\" bottom_margin=\"10\" sep_color=\"rgba(255,255,255,.7)\" border_size=\"\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"150px\" alignment=\"\" class=\"\" id=\"\"/][fusion_text]\n<h2 style=\"text-align: center; color: #333333; margin-bottom: 0px;\">Michael Chabbi</h2>\n<h3 style=\"text-align: center; font-size: 15px; line-height: 15px; margin-top: 8px;\">President &amp; Founder</h3>\n[/fusion_text][fusion_text]\n<p style=\"text-align: center;\">Etiam rhoncus fermentum vehicula. Etiam sollicitudin eget sapien ac aliquet. Nullam tristique vitae sempers astridse facilisis.</p>\n[/fusion_text][fusion_social_links icons_boxed=\"\" icons_boxed_radius=\"\" icon_colors=\"\" box_colors=\"\" tooltip_placement=\"top\" rss=\"\" facebook=\"#\" twitter=\"#\" instagram=\"#\" dribbble=\"#\" google=\"\" linkedin=\"\" blogger=\"\" tumblr=\"\" reddit=\"\" yahoo=\"\" deviantart=\"\" vimeo=\"\" youtube=\"\" pinterest=\"\" digg=\"\" flickr=\"\" forrst=\"\" myspace=\"\" skype=\"\" paypal=\"\" dropbox=\"\" soundcloud=\"\" vk=\"\" email=\"\" show_custom=\"no\" alignment=\"center\" class=\"\" id=\"\"/][/fusion_builder_column][fusion_builder_column type=\"1_3\" last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"rgba(255,255,255,.6)\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"30px\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][fusion_imageframe lightbox=\"no\" lightbox_image=\"\" style_type=\"none\" bordercolor=\"\" bordersize=\"0px\" borderradius=\"0\" stylecolor=\"\" align=\"center\" link=\"\" linktarget=\"_self\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" hide_on_mobile=\"no\" class=\"\" id=\"\"] <img alt=\"\" src=\"http://theme-fusion.com/avada_demos_xml/travel/wp-content/uploads/2015/01/person21.jpg\" />[/fusion_imageframe][fusion_separator style_type=\"none\" top_margin=\"10\" bottom_margin=\"10\" sep_color=\"rgba(255,255,255,.7)\" border_size=\"\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"150px\" alignment=\"\" class=\"\" id=\"\"/][fusion_text]\n<h2 style=\"text-align: center; color: #333333; margin-bottom: 0px;\">Kelsie Maden</h2>\n<h3 style=\"text-align: center; font-size: 15px; line-height: 15px; margin-top: 8px;\">Account Director</h3>\n[/fusion_text][fusion_text]\n<p style=\"text-align: center;\">Etiam rhoncus fermentum vehicula. Etiam sollicitudin eget sapien ac aliquet. Nullam tristique vitae sempers astridse facilisis.</p>\n[/fusion_text][fusion_social_links icons_boxed=\"yes\" icons_boxed_radius=\"\" icon_colors=\"\" box_colors=\"\" tooltip_placement=\"top\" rss=\"\" facebook=\"#\" twitter=\"#\" instagram=\"#\" dribbble=\"#\" google=\"\" linkedin=\"\" blogger=\"\" tumblr=\"\" reddit=\"\" yahoo=\"\" deviantart=\"\" vimeo=\"\" youtube=\"\" pinterest=\"\" digg=\"\" flickr=\"\" forrst=\"\" myspace=\"\" skype=\"\" paypal=\"\" dropbox=\"\" soundcloud=\"\" vk=\"\" email=\"\" show_custom=\"no\" alignment=\"center\" class=\"\" id=\"\"/][/fusion_builder_column][fusion_builder_column type=\"1_3\" last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"rgba(255,255,255,.6)\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"30px\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][fusion_imageframe lightbox=\"no\" lightbox_image=\"\" style_type=\"none\" bordercolor=\"\" bordersize=\"0px\" borderradius=\"0\" stylecolor=\"\" align=\"center\" link=\"\" linktarget=\"_self\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" hide_on_mobile=\"no\" class=\"\" id=\"\"] <img alt=\"\" src=\"http://theme-fusion.com/avada_demos_xml/travel/wp-content/uploads/2015/01/person31.jpg\" />[/fusion_imageframe][fusion_separator style_type=\"none\" top_margin=\"10\" bottom_margin=\"10\" sep_color=\"rgba(255,255,255,.7)\" border_size=\"\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"150px\" alignment=\"\" class=\"\" id=\"\"/][fusion_text]\n<h2 style=\"text-align: center; color: #333333; margin-bottom: 0px;\">Greg Simkins</h2>\n<h3 style=\"text-align: center; font-size: 15px; line-height: 15px; margin-top: 8px;\">Marketing Director</h3>\n[/fusion_text][fusion_text]\n<p style=\"text-align: center;\">Etiam rhoncus fermentum vehicula. Etiam sollicitudin eget sapien ac aliquet. Nullam tristique vitae sempers astridse facilisis.</p>\n[/fusion_text][fusion_social_links icons_boxed=\"yes\" icons_boxed_radius=\"\" icon_colors=\"\" box_colors=\"\" tooltip_placement=\"top\" rss=\"\" facebook=\"#\" twitter=\"#\" instagram=\"#\" dribbble=\"#\" google=\"\" linkedin=\"\" blogger=\"\" tumblr=\"\" reddit=\"\" yahoo=\"\" deviantart=\"\" vimeo=\"\" youtube=\"\" pinterest=\"\" digg=\"\" flickr=\"\" forrst=\"\" myspace=\"\" skype=\"\" paypal=\"\" dropbox=\"\" soundcloud=\"\" vk=\"\" email=\"\" show_custom=\"no\" alignment=\"center\" class=\"\" id=\"\"/][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container background_color=\"#f0f0ed\" background_image=\"http://theme-fusion.com/avada_demos_xml/travel/wp-content/uploads/2015/01/about-parallax1.jpg\" background_parallax=\"fixed\" parallax_speed=\"0.3\" enable_mobile=\"no\" background_repeat=\"no-repeat\" background_position=\"center center\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"110px\" padding_bottom=\"110px\" padding_left=\"\"    padding_right=\"\"    hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][fusion_builder_row][fusion_builder_column type=\"1_1\" background_position=\"left top\" background_color=\"\" border_size=\"\" border_color=\"\" border_style=\"solid\" spacing=\"yes\" background_image=\"\" background_repeat=\"no-repeat\" padding=\"\" margin_top=\"0px\" margin_bottom=\"0px\" class=\"\" id=\"\" animation_type=\"\" animation_speed=\"0.3\" animation_direction=\"left\" hide_on_mobile=\"no\" center_content=\"no\" min_height=\"none\"][fusion_text]\n<h1 style=\"text-align: center;\"><span style=\"color: #ffffff;\">OUR PARTNERS</span></h1>\n[/fusion_text][fusion_separator style_type=\"single solid\" top_margin=\"\" bottom_margin=\"40\" sep_color=\"#ffffff\" border_size=\"\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"170px\" alignment=\"\" class=\"\" id=\"\"/][/fusion_builder_column][fusion_builder_column type=\"1_6\" last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][/fusion_builder_column][fusion_builder_column type=\"2_3\" last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][fusion_text]\n<h3 style=\"text-align: center;\"><span style=\"color: #ffffff;\">We work with the very best. We are proud of our partners, who work with us to deliver the best in bespoke travel</span></h3>\n[/fusion_text][/fusion_builder_column][fusion_builder_column type=\"1_6\" last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][/fusion_builder_column][fusion_builder_column type=\"1_1\" background_position=\"left top\" background_color=\"\" border_size=\"\" border_color=\"\" border_style=\"solid\" spacing=\"yes\" background_image=\"\" background_repeat=\"no-repeat\" padding=\"\" margin_top=\"0px\" margin_bottom=\"0px\" class=\"\" id=\"\" animation_type=\"\" animation_speed=\"0.3\" animation_direction=\"left\" hide_on_mobile=\"no\" center_content=\"no\" min_height=\"none\"][fusion_separator style_type=\"none\" top_margin=\"20\" bottom_margin=\"20\" sep_color=\"#ffffff\" border_size=\"\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"170px\" alignment=\"\" class=\"\" id=\"\"/][/fusion_builder_column][fusion_builder_column type=\"1_1\" background_position=\"left top\" background_color=\"\" border_size=\"\" border_color=\"\" border_style=\"solid\" spacing=\"yes\" background_image=\"\" background_repeat=\"no-repeat\" padding=\"\" margin_top=\"0px\" margin_bottom=\"0px\" class=\"\" id=\"\" animation_type=\"\" animation_speed=\"0.3\" animation_direction=\"left\" hide_on_mobile=\"no\" center_content=\"no\" min_height=\"none\"][fusion_images picture_size=\"auto\" autoplay=\"yes\" columns=\"5\" column_spacing=\"45\" scroll_items=\"1\" show_nav=\"no\" mouse_scroll=\"yes\" border=\"no\" lightbox=\"no\" class=\"\" id=\"\"][fusion_image link=\"\" linktarget=\"_self\" image=\"http://theme-fusion.com/avada_demos_xml/travel/wp-content/uploads/2015/01/logo41.png\" alt=\"\"/][fusion_image link=\"\" linktarget=\"_self\" image=\"http://theme-fusion.com/avada_demos_xml/travel/wp-content/uploads/2015/01/logo31.png\" alt=\"\"/][fusion_image link=\"\" linktarget=\"_self\" image=\"http://theme-fusion.com/avada_demos_xml/travel/wp-content/uploads/2015/01/logo21.png\" alt=\"\"/][fusion_image link=\"\" linktarget=\"_self\" image=\"http://theme-fusion.com/avada_demos_xml/travel/wp-content/uploads/2015/01/logo11.png\" alt=\"\"/][fusion_image link=\"\" linktarget=\"_self\" image=\"http://theme-fusion.com/avada_demos_xml/travel/wp-content/uploads/2015/01/logo52.png\" alt=\"\"/][fusion_image link=\"\" linktarget=\"_self\" image=\"http://theme-fusion.com/avada_demos_xml/travel/wp-content/uploads/2015/01/logo21.png\" alt=\"\"/][fusion_image link=\"\" linktarget=\"_self\" image=\"http://theme-fusion.com/avada_demos_xml/travel/wp-content/uploads/2015/01/logo11.png\" alt=\"\"/][fusion_image link=\"\" linktarget=\"_self\" image=\"http://theme-fusion.com/avada_demos_xml/travel/wp-content/uploads/2015/01/logo52.png\" alt=\"\"/][/fusion_images][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container background_color=\"#f0f0ed\" background_image=\"\" background_parallax=\"none\" parallax_speed=\"0.3\" enable_mobile=\"no\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"60px\" padding_bottom=\"110px\" padding_left=\"\"    padding_right=\"\"    hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][fusion_builder_row][fusion_builder_column type=\"1_1\" background_position=\"left top\" background_color=\"\" border_size=\"\" border_color=\"\" border_style=\"solid\" spacing=\"yes\" background_image=\"\" background_repeat=\"no-repeat\" padding=\"\" margin_top=\"0px\" margin_bottom=\"0px\" class=\"\" id=\"\" animation_type=\"\" animation_speed=\"0.3\" animation_direction=\"left\" hide_on_mobile=\"no\" center_content=\"no\" min_height=\"none\"][fusion_text]\n<h1 style=\"text-align: center;\">OUR PROMISE</h1>\n[/fusion_text][fusion_separator style_type=\"single solid\" top_margin=\"\" bottom_margin=\"40\" sep_color=\"#000000\" border_size=\"\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"170px\" alignment=\"\" class=\"\" id=\"\"/][/fusion_builder_column][fusion_builder_column type=\"1_6\" last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][/fusion_builder_column][fusion_builder_column type=\"2_3\" last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][fusion_text]\n<h3 style=\"text-align: center;\">No request is too big or too small for our team. If it matters to you, it matters to us. Let us make your escape perfect.</h3>\n[/fusion_text][/fusion_builder_column][fusion_builder_column type=\"1_6\" last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][/fusion_builder_column][fusion_builder_column type=\"1_1\" background_position=\"left top\" background_color=\"\" border_size=\"\" border_color=\"\" border_style=\"solid\" spacing=\"yes\" background_image=\"\" background_repeat=\"no-repeat\" padding=\"\" margin_top=\"0px\" margin_bottom=\"0px\" class=\"\" id=\"\" animation_type=\"\" animation_speed=\"0.3\" animation_direction=\"left\" hide_on_mobile=\"no\" center_content=\"no\" min_height=\"none\"][fusion_separator style_type=\"none\" top_margin=\"\" bottom_margin=\"40\" sep_color=\"#ffffff\" border_size=\"\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"170px\" alignment=\"\" class=\"\" id=\"\"/][/fusion_builder_column][fusion_builder_column type=\"1_1\" background_position=\"left top\" background_color=\"\" border_size=\"\" border_color=\"\" border_style=\"solid\" spacing=\"yes\" background_image=\"\" background_repeat=\"no-repeat\" padding=\"\" margin_top=\"0px\" margin_bottom=\"0px\" class=\"\" id=\"\" animation_type=\"\" animation_speed=\"0.3\" animation_direction=\"left\" hide_on_mobile=\"no\" center_content=\"no\" min_height=\"none\"][fusion_tabs design=\"clean\" layout=\"horizontal\" justified=\"no\" backgroundcolor=\"\" inactivecolor=\"\" bordercolor=\"\" class=\"\" id=\"\"][fusion_tab title=\"Who we are\" icon=\"fa-star-o\"][fusion_separator style_type=\"none\" top_margin=\"15\" bottom_margin=\"15\" sep_color=\"\" icon=\"\" width=\"\" class=\"\" id=\"\"/]\n\n[fusion_builder_row_inner][fusion_builder_column_inner type=\"1_2\" last=\"no\" spacing=\"yes\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" class=\"\" id=\"\"][fusion_imageframe lightbox=\"right\" style_type=\"none\" bordercolor=\"\" bordersize=\"0px\" borderradius=\"5px\" stylecolor=\"\" align=\"center\" link=\"\" linktarget=\"_self\" animation_type=\"fade\" animation_direction=\"left\" animation_speed=\"1\" class=\"\" id=\"\"] <img src=\"http://theme-fusion.com/avada_demos_xml/travel/wp-content/uploads/2015/02/tab2.jpg\" alt=\"\" />[/fusion_imageframe][/fusion_builder_column_inner]\n\n[fusion_builder_column_inner type=\"1_2\" last=\"yes\" spacing=\"yes\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" class=\"\" id=\"\"]\n\nLorem ipsum dolor sit amet, consectetur adipiscing elit. Morbi vel nulla sapien. Class aptent tacitiaptent taciti sociosqu ad lit himenaeos. Suspendisse massa urna luctus. Donec at commodo erat. Sed egestas consequat augue eu iaculis facilis [fusion_tooltip title=\"We Make Dream Vacations\" placement=\"top\" trigger=\"hover\" class=\"\" id=\"\"]sadips ipsums dolores[/fusion_tooltip]. Sed gravida, nisl ac lobortis pulvinar augue.\n\n<em>Tempus eget urna id, maximus commodo odio. Lorem ipsum dolor sit amet, consectetur elits sadips. Praesent alis lacus. Nunc at vulputate justo.</em>\n\n[fusion_separator style_type=\"none\" top_margin=\"5\" bottom_margin=\"5\" sep_color=\"\" icon=\"\" width=\"\" class=\"\" id=\"\"/]\n\n[fusion_button link=\"http://themeforest.net/item/avada-responsive-multipurpose-theme/2833226?ref=ThemeFusion\" color=\"default\" size=\"large\" type=\"3d\" shape=\"round\" target=\"_blank\" title=\"\" gradient_colors=\"transparent|\" gradient_hover_colors=\"#6797be|\" accent_color=\"#6797be\" accent_hover_color=\"#ffffff\" bevel_color=\"\" border_width=\"0px\" shadow=\"no\" icon=\"\" icon_position=\"left\" icon_divider=\"no\" modal=\"\" animation_type=\"0\" animation_direction=\"left\" animation_speed=\"1\" alignment=\"left\" class=\"\" id=\"\"]Learn More[/fusion_button]\n\n[fusion_button link=\"http://theme-fusion.com/avada_demos_xml/travel/make-a-reservation/\" color=\"default\" size=\"large\" type=\"3d\" shape=\"round\" target=\"_blank\" title=\"\" gradient_colors=\"transparent|\" gradient_hover_colors=\"#6797be|\" accent_color=\"#6797be\" accent_hover_color=\"#ffffff\" bevel_color=\"\" border_width=\"0px\" shadow=\"no\" icon=\"\" icon_position=\"left\" icon_divider=\"no\" modal=\"contact\" animation_type=\"0\" animation_direction=\"left\" animation_speed=\"1\" alignment=\"left\" class=\"\" id=\"\"]Make A Reservation[/fusion_button]\n\n[/fusion_builder_column_inner][/fusion_builder_row_inner][/fusion_tab][fusion_tab title=\"What we do\" icon=\"fa-plane\"][fusion_separator style_type=\"none\" top_margin=\"15\" bottom_margin=\"15\" sep_color=\"\" icon=\"\" width=\"\" class=\"\" id=\"\"/]\n\n[fusion_builder_row_inner][fusion_builder_column_inner type=\"1_2\" last=\"no\" spacing=\"yes\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" class=\"\" id=\"\"][fusion_imageframe lightbox=\"right\" style_type=\"none\" bordercolor=\"\" bordersize=\"0px\" borderradius=\"5px\" stylecolor=\"\" align=\"center\" link=\"\" linktarget=\"_self\" animation_type=\"fade\" animation_direction=\"left\" animation_speed=\"1\" class=\"\" id=\"\"] <img src=\"http://theme-fusion.com/avada_demos_xml/travel/wp-content/uploads/2015/02/tab2.jpg\" alt=\"\" />[/fusion_imageframe][/fusion_builder_column_inner]\n\n[fusion_builder_column_inner type=\"1_2\" last=\"yes\" spacing=\"yes\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" class=\"\" id=\"\"]\n\nLorem ipsum dolor sit amet, consectetur adipiscing elit. Morbi vel nulla sapien. Class aptent tacitiaptent taciti sociosqu ad lit himenaeos. Suspendisse massa urna luctus. Donec at commodo erat. Sed egestas consequat augue eu iaculis facilis [fusion_tooltip title=\"We Make Dream Vacations\" placement=\"top\" trigger=\"hover\" class=\"\" id=\"\"]sadips ipsums dolores[/fusion_tooltip]. Sed gravida, nisl ac lobortis pulvinar augue.\n\n<em>Tempus eget urna id, maximus commodo odio. Lorem ipsum dolor sit amet, consectetur elits sadips. Praesent alis lacus. Nunc at vulputate justo.</em>\n\n[fusion_separator style_type=\"none\" top_margin=\"5\" bottom_margin=\"5\" sep_color=\"\" icon=\"\" width=\"\" class=\"\" id=\"\"/]\n\n[fusion_button link=\"http://themeforest.net/item/avada-responsive-multipurpose-theme/2833226?ref=ThemeFusion\" color=\"default\" size=\"large\" type=\"3d\" shape=\"round\" target=\"_blank\" title=\"\" gradient_colors=\"transparent|\" gradient_hover_colors=\"#6797be|\" accent_color=\"#6797be\" accent_hover_color=\"#ffffff\" bevel_color=\"\" border_width=\"0px\" shadow=\"no\" icon=\"\" icon_position=\"left\" icon_divider=\"no\" modal=\"\" animation_type=\"0\" animation_direction=\"left\" animation_speed=\"1\" alignment=\"left\" class=\"\" id=\"\"]Learn More[/fusion_button]\n\n[fusion_button link=\"http://theme-fusion.com/avada_demos_xml/travel/make-a-reservation/\" color=\"default\" size=\"large\" type=\"3d\" shape=\"round\" target=\"_blank\" title=\"\" gradient_colors=\"transparent|\" gradient_hover_colors=\"#6797be|\" accent_color=\"#6797be\" accent_hover_color=\"#ffffff\" bevel_color=\"\" border_width=\"0px\" shadow=\"no\" icon=\"\" icon_position=\"left\" icon_divider=\"no\" modal=\"contact\" animation_type=\"0\" animation_direction=\"left\" animation_speed=\"1\" alignment=\"left\" class=\"\" id=\"\"]Make A Reservation[/fusion_button]\n\n[/fusion_builder_column_inner][/fusion_builder_row_inner][/fusion_tab][fusion_tab title=\"What we beleive\" icon=\"fa-trophy\"][fusion_separator style_type=\"none\" top_margin=\"15\" bottom_margin=\"15\" sep_color=\"\" icon=\"\" width=\"\" class=\"\" id=\"\"/]\n\n[fusion_builder_row_inner][fusion_builder_column_inner type=\"1_2\" last=\"no\" spacing=\"yes\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" class=\"\" id=\"\"][fusion_imageframe lightbox=\"right\" style_type=\"none\" bordercolor=\"\" bordersize=\"0px\" borderradius=\"5px\" stylecolor=\"\" align=\"center\" link=\"\" linktarget=\"_self\" animation_type=\"fade\" animation_direction=\"left\" animation_speed=\"1\" class=\"\" id=\"\"] <img src=\"http://theme-fusion.com/avada_demos_xml/travel/wp-content/uploads/2015/02/tab2.jpg\" alt=\"\" />[/fusion_imageframe][/fusion_builder_column_inner]\n\n[fusion_builder_column_inner type=\"1_2\" last=\"yes\" spacing=\"yes\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" class=\"\" id=\"\"]\n\nLorem ipsum dolor sit amet, consectetur adipiscing elit. Morbi vel nulla sapien. Class aptent tacitiaptent taciti sociosqu ad lit himenaeos. Suspendisse massa urna luctus. Donec at commodo erat. Sed egestas consequat augue eu iaculis facilis [fusion_tooltip title=\"We Make Dream Vacations\" placement=\"top\" trigger=\"hover\" class=\"\" id=\"\"]sadips ipsums dolores[/fusion_tooltip]. Sed gravida, nisl ac lobortis pulvinar augue.\n\n<em>Tempus eget urna id, maximus commodo odio. Lorem ipsum dolor sit amet, consectetur elits sadips. Praesent alis lacus. Nunc at vulputate justo.</em>\n\n[fusion_separator style_type=\"none\" top_margin=\"5\" bottom_margin=\"5\" sep_color=\"\" icon=\"\" width=\"\" class=\"\" id=\"\"/]\n\n[fusion_button link=\"http://themeforest.net/item/avada-responsive-multipurpose-theme/2833226?ref=ThemeFusion\" color=\"default\" size=\"large\" type=\"3d\" shape=\"round\" target=\"_blank\" title=\"\" gradient_colors=\"transparent|\" gradient_hover_colors=\"#6797be|\" accent_color=\"#6797be\" accent_hover_color=\"#ffffff\" bevel_color=\"\" border_width=\"0px\" shadow=\"no\" icon=\"\" icon_position=\"left\" icon_divider=\"no\" modal=\"\" animation_type=\"0\" animation_direction=\"left\" animation_speed=\"1\" alignment=\"left\" class=\"\" id=\"\"]Learn More[/fusion_button]\n\n[fusion_button link=\"http://theme-fusion.com/avada_demos_xml/travel/make-a-reservation/\" color=\"default\" size=\"large\" type=\"3d\" shape=\"round\" target=\"_blank\" title=\"\" gradient_colors=\"transparent|\" gradient_hover_colors=\"#6797be|\" accent_color=\"#6797be\" accent_hover_color=\"#ffffff\" bevel_color=\"\" border_width=\"0px\" shadow=\"no\" icon=\"\" icon_position=\"left\" icon_divider=\"no\" modal=\"contact\" animation_type=\"0\" animation_direction=\"left\" animation_speed=\"1\" alignment=\"left\" class=\"\" id=\"\"]Make A Reservation[/fusion_button]\n\n[/fusion_builder_column_inner][/fusion_builder_row_inner][/fusion_tab][/fusion_tabs][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container]', 'About Us', '', 'publish', 'closed', 'open', '', 'about-us', '', '', '2019-11-13 14:13:47', '2019-11-13 12:13:47', '', 0, 'http://theme-fusion.com/avada_demos_xml/travel/?page_id=9', 0, 'page', '', 0),
(11, 1, '2015-01-27 11:54:42', '2015-01-27 11:54:42', '[fusion_builder_container background_color=\"\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"70px\" padding_bottom=\"75px\" padding_left=\"\" padding_right=\"\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][fusion_builder_row][fusion_builder_column type=\"1_2\" layout=\"1_2\" last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding_top=\"\" padding_right=\"\" padding_bottom=\"\" padding_left=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\" min_height=\"\" hover_type=\"none\" link=\"\" border_position=\"all\"][fusion_text]\r\n<h1>Contact Us</h1>\r\n<h2>Send us a message.</h2>\r\n[/fusion_text][fusion_text][contact-form-7 id=\"246\" title=\"Contact form 1\"][/fusion_text][/fusion_builder_column][fusion_builder_column type=\"1_2\" layout=\"1_2\" last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding_top=\"\" padding_right=\"\" padding_bottom=\"\" padding_left=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\" min_height=\"\" hover_type=\"none\" link=\"\" border_position=\"all\"][fusion_text]\r\n<h1>Where are we?</h1>\r\n<h2>4 Williams Road\r\nAssagay, Hillcrest\r\nKwaZulu Natal</h2>\r\n<h1>Contact</h1>\r\n<h2>0317656046 or 0317655961</h2>\r\n[/fusion_text][fusion_separator style_type=\"none\" top_margin=\"\" bottom_margin=\"20\" sep_color=\"\" border_size=\"\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"\" alignment=\"\" class=\"\" id=\"\" /][fusion_accordion class=\"\" id=\"\"][fusion_toggle title=\"GPS Location\" open=\"no\"]\r\n\r\n<strong>GPS: Latitude (South) -29.771865, Longitude (East) 30.736892</strong>\r\n\r\n[/fusion_toggle][fusion_toggle title=\"Directions from King Shaka Airport / Durban\" open=\"no\"]\r\n\r\nFrom King Shaka Airport take the N2 South bound towards Durban, at the 3 level interchange be sure to take the N3 turn off towards Pietermaritzburg. Proceed through the Marionhill toll plaza and take the first off ramp marked Shongweni / Assagay / Hillcrest. Turn right towards Hillcrest into Kassier Road which will take you over the N3 and M13, keep on this road, pass the Hillcrest Private Hospital and Alverstone turn off. Remain on Kassier Road, for about 2-3km and turn into Assagay Road, which is just after Assagay Crescent.\r\n\r\nTake the left turn into Assagay Road. Head up the rise. Turn left into Castle Road, carry down the dip for about 500m and cross a small water-bridge. Turn first right into Lello Road, just after the bridge. Continue on Lello Road, the road dips and briefly climbs, the valley falling away to your right. Finally, turn left into Williams Road (it’s essentially the first left turn on Lello Road), Continue down Williams Road for about 800m. On your right you will come to the entrance of the farm called `Fourever` No 4 Williams Road. There’s a 1000 Hills Tourism Sign outside. A wooden fence and silver gate. Welcome to Assagay Forest Lodge.\r\n\r\n[/fusion_toggle][fusion_toggle title=\"Directions from Pietermaritzburg\" open=\"no\"]\r\n\r\nFrom Pietermaritzburg take the N3 towards Durban. After the Drummond turnoff the N3 makes a steep climb. Don\'t take the Alternative route but stay on the N3. Take the next off ramp marked Shongweni / Assagay / Hillcrest. Turn left towards Hillcrest into Kassier Road which will take you passed the Polo fields on your left and a Petrol Station on your right and over then over the M13, keep on this road, pass the Hillcrest Private Hospital and Alverstone turn off. Remain on Kassier Road, for about 2-3km and turn into Assagay Road, which is just after Assagay Crescent.\r\n\r\nTake the left turn into Assagay Road. Head up the rise. Turn left into Castle Road, carry down the dip for about 500m and cross a small water-bridge. Turn first right into Lello Road, just after the bridge. Continue on Lello Road, the road dips and briefly climbs, the valley falling away to your right. Finally, turn left into Williams Road (it’s essentially the first left turn on Lello Road), Continue down Williams Road for about 800m. On your right you will come to the entrance of the farm called `Fourever` No 4 Williams Road. There’s a 1000 Hills Tourism Sign outside. A wooden fence and silver gate. Welcome to Assagay Lodge.\r\n\r\n[/fusion_toggle][fusion_toggle title=\"Things to do\" open=\"no\"]\r\n\r\nThere is plenty to do.\r\n\r\nDurban Sea Side - 25kms\r\nGame reserve - 15 kms\r\nAnimal Farm - 2kms\r\nBrewery - 4kms\r\nShongweni Market - 6kms\r\nShongweni Dam - 8kms\r\nValley 1000 Hills , Zulu dancing and Croc farm - 4kms\r\nDrakensberg Mountains - 3 hours\r\nHillcrest Shopping Centre - 3 kms\r\nWaterfall Shopping Centre - 8kms\r\nPavilion Shopping Centre - 20 kms\r\nGateway Shopping Centre - 40kms\r\n\r\n[/fusion_toggle][/fusion_accordion][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container]', 'Contact & Directions', '', 'publish', 'closed', 'open', '', 'contact-directions', '', '', '2019-11-13 15:52:45', '2019-11-13 13:52:45', '', 0, 'http://theme-fusion.com/avada_demos_xml/travel/?page_id=11', 0, 'page', '', 0);
INSERT INTO `wp_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(13, 1, '2015-01-27 11:54:55', '2015-01-27 11:54:55', '[fusion_builder_container background_color=\"#6666a4\" background_image=\"http://theme-fusion.com/avada_demos_xml/travel/wp-content/uploads/2015/01/destination-parallax21.jpg\" background_parallax=\"fixed\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"center center\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"220px\" padding_bottom=\"220px\" padding_left=\"\"    padding_right=\"\"    hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][fusion_builder_row][fusion_builder_column type=\"1_1\" background_position=\"left top\" background_color=\"\" border_size=\"\" border_color=\"\" border_style=\"solid\" spacing=\"yes\" background_image=\"\" background_repeat=\"no-repeat\" padding=\"\" margin_top=\"0px\" margin_bottom=\"0px\" class=\"\" id=\"\" animation_type=\"\" animation_speed=\"0.3\" animation_direction=\"left\" hide_on_mobile=\"no\" center_content=\"no\" min_height=\"none\"][fusion_text]\r\n<h1 style=\"text-align: center;\"><span style=\"color: #ccffcc; font-family: Calibri;\">NEARBY ATTRACTIONS</span></h1>\r\n[/fusion_text][fusion_text]\r\n<h3 style=\"text-align: justify;\"><span style=\"color: #ccffcc;\">We are situated on the 1000 Hills tourism route, on the edge of Hillcrest -a perfect place to adventure out  to any one of the many fantastic destinations and game reserves in KwaZulu Natal, i.e. the Majestic Drakensberg Mountain Range, Shongweni Nature Reserve, Nagle Dam, Durban &amp; Beach Front.</span></h3>\r\n<h3 style=\"text-align: justify;\"><span style=\"color: #ccffcc;\">We are also the doorstep of one of KZN’s major horse riding venues namely, the Shongweni Horse Riding Club &amp; the Summerveld Horse Riding Academy, making Assagay Forest Lodge a perfect home away from home for the equestrian lovers.</span></h3>\r\n<h3 style=\"text-align: justify;\"><span style=\"color: #ccffcc;\">Hiking , fishing and boating all add to the excitement found in this attractive area. Situated on the “Friendly N3″ running from Johannesburg  to Durban , Assagay Forest Lodge  is the ideal stop over, linking up with both the Wild Coast/transkei  route via Margate and the Dolphin Coast linking up with Mozambique and Swaziland</span>\r\n<span style=\"color: #ccffcc;\"> Surrounding areas have attractions ranging from the sun kissed Durban beaches to trout-filled streams in the Drakensberg , caves adorned with ancient rock art and canoeing on the Dusi River.</span></h3>\r\n<h3 style=\"text-align: justify;\"><span style=\"color: #ccffcc;\">Activities in the Area:</span>\r\n<span style=\"color: #ccffcc;\"> Private nature reserves</span>\r\n<span style=\"color: #ccffcc;\"> 4×4 off-road adventures</span>\r\n<span style=\"color: #ccffcc;\"> Fossil sites</span>\r\n<span style=\"color: #ccffcc;\"> Fishing / canoeing on the Dusi River</span>\r\n<span style=\"color: #ccffcc;\"> Historic Museums</span>\r\n<span style=\"color: #ccffcc;\"> Anglo Boer War Sites and Monuments</span>\r\n<span style=\"color: #ccffcc;\"> Hiking and horse trails in nearby mountain ranges</span>\r\n<span style=\"color: #ccffcc;\"> Birdwatching</span>\r\n<span style=\"color: #ccffcc;\"> Rock art</span></h3>\r\n[/fusion_text][/fusion_builder_column][fusion_builder_column type=\"1_3\" last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"0\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"no-margin\" id=\"\"][fusion_separator style_type=\"none\" top_margin=\"\" bottom_margin=\"\" sep_color=\"\" border_size=\"\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"\" alignment=\"\" class=\"\" id=\"\"/][/fusion_builder_column][fusion_builder_column type=\"1_3\" last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"0\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][fusion_button link=\"/avada_demos/travel/make-a-reservation/\" color=\"default\" size=\"\"  type=\"\" shape=\"\" target=\"_self\" title=\"\" gradient_colors=\"|\" gradient_hover_colors=\"|\" accent_color=\"\" accent_hover_color=\"\" bevel_color=\"\" border_width=\"0px\" icon=\"\" icon_position=\"left\" icon_divider=\"no\" modal=\"\" animation_type=\"0\" animation_direction=\"left\" animation_speed=\"1\" alignment=\"center\" class=\"\" id=\"\"]MAKE A RESERVATION[/fusion_button][/fusion_builder_column][fusion_builder_column type=\"1_3\" last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"0\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][fusion_separator style_type=\"none\" top_margin=\"\" bottom_margin=\"\" sep_color=\"\" border_size=\"\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"\" alignment=\"\" class=\"\" id=\"\"/][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container background_color=\"\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"0px\" padding_bottom=\"-30px\" padding_left=\"0px\" padding_right=\"0px\" hundred_percent=\"yes\" equal_height_columns=\"yes\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][fusion_builder_row][fusion_builder_column type=\"1_3\" last=\"no\" spacing=\"no\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"#6666a4\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"10%\" margin_top=\"\" margin_bottom=\"0px\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" class=\"\" id=\"\"][fusion_imageframe lightbox=\"no\" lightbox_image=\"http://localhost/assagaylodge/wp-content/uploads/2015/01/zulu.jpg\" style_type=\"none\" bordercolor=\"\" bordersize=\"0px\" borderradius=\"0\" stylecolor=\"\" align=\"none\" link=\"\" linktarget=\"_self\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" hide_on_mobile=\"no\" class=\"\" id=\"\"] <img alt=\"\" src=\"http://localhost/assagaylodge/wp-content/uploads/2015/01/zulu.jpg\" />[/fusion_imageframe][fusion_content_boxes layout=\"icon-with-title\" title_size=\"\" icon_circle=\"\" icon_size=\"\" icon_align=\"left\" columns=\"1\" margin_top=\"\" margin_bottom=\"0px\" class=\"\" id=\"\"][fusion_content_box title=\"Phezulu African Dancing\" icon=\"fa-phone\" backgroundcolor=\"\" iconcolor=\"#ffffff\" circlecolor=\"#6666a4\" circlebordercolor=\"#6666a4\" iconflip=\"\" iconrotate=\"\" iconspin=\"no\" image=\"\" image_width=\"35\" image_height=\"35\" link=\"\" linktext=\"\" linktarget=\"_self\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\"]        <span style=\"color: #ffffff;\">Please call one of our specialist or pop into one of our travel shops and meet with an advisor in person. Alternatively, email us any questions and we will reply as quickly as possible. We look forward to being a small part of your next big adventure.</span>[/fusion_content_box][/fusion_content_boxes][/fusion_builder_column][fusion_builder_column type=\"1_3\" last=\"no\" spacing=\"no\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"#7272b2\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"10%\" margin_top=\"\" margin_bottom=\"0px\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" class=\"\" id=\"\"][fusion_imageframe lightbox=\"no\" lightbox_image=\"http://localhost/assagaylodge/wp-content/uploads/2015/01/Shongweni-1.jpg\" style_type=\"none\" bordercolor=\"\" bordersize=\"0px\" borderradius=\"0\" stylecolor=\"\" align=\"none\" link=\"\" linktarget=\"_self\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" hide_on_mobile=\"no\" class=\"\" id=\"\"] <img alt=\"\" src=\"http://localhost/assagaylodge/wp-content/uploads/2015/01/Shongweni-1.jpg\" />[/fusion_imageframe][fusion_content_boxes layout=\"icon-with-title\" title_size=\"\" icon_circle=\"\" icon_size=\"\" icon_align=\"left\" columns=\"1\" margin_top=\"\" margin_bottom=\"0px\" class=\"\" id=\"\"][fusion_content_box title=\"Shongweni Equestrian Centre\" icon=\"fa-comments\" backgroundcolor=\"\" iconcolor=\"#ffffff\" circlecolor=\"#7272b2\" circlebordercolor=\"#7272b2\" iconflip=\"\" iconrotate=\"\" iconspin=\"no\" image=\"\" image_width=\"35\" image_height=\"35\" link=\"\" linktext=\"\" linktarget=\"_self\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\"]        <span style=\"color: #ffffff;\">Please call one of our specialist or pop into one of our travel shops and meet with an advisor in person. Alternatively, email us any questions and we will reply as quickly as possible. We look forward to being a small part of your next big adventure.</span>[/fusion_content_box][/fusion_content_boxes][/fusion_builder_column][fusion_builder_column type=\"1_3\" last=\"yes\" spacing=\"no\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"#6666a4\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"10%\" margin_top=\"\" margin_bottom=\"0px\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" class=\"\" id=\"\"][fusion_imageframe lightbox=\"no\" lightbox_image=\"http://localhost/assagaylodge/wp-content/uploads/2015/01/steam-train.png\" style_type=\"none\" bordercolor=\"\" bordersize=\"0px\" borderradius=\"0\" stylecolor=\"\" align=\"none\" link=\"\" linktarget=\"_self\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" hide_on_mobile=\"no\" class=\"\" id=\"\"] <img alt=\"\" src=\"http://localhost/assagaylodge/wp-content/uploads/2015/01/steam-train.png\" />[/fusion_imageframe][fusion_content_boxes layout=\"icon-with-title\" title_size=\"\" icon_circle=\"\" icon_size=\"\" icon_align=\"left\" columns=\"1\" margin_top=\"\" margin_bottom=\"0px\" class=\"\" id=\"\"][fusion_content_box title=\"Train Adventures\" icon=\"fa-phone\" backgroundcolor=\"\" iconcolor=\"#ffffff\" circlecolor=\"#6666a4\" circlebordercolor=\"#6666a4\" iconflip=\"\" iconrotate=\"\" iconspin=\"no\" image=\"\" image_width=\"35\" image_height=\"35\" link=\"\" linktext=\"\" linktarget=\"_self\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\"]        <span style=\"color: #ffffff;\">Please call one of our specialist or pop into one of our travel shops and meet with an advisor in person. Alternatively, email us any questions and we will reply as quickly as possible. We look forward to being a small part of your next big adventure.</span>[/fusion_content_box][/fusion_content_boxes][/fusion_builder_column][fusion_builder_column type=\"1_3\" last=\"no\" spacing=\"no\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"#6666a4\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"10%\" margin_top=\"\" margin_bottom=\"0px\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" class=\"\" id=\"\"][fusion_imageframe lightbox=\"no\" lightbox_image=\"http://localhost/assagaylodge/wp-content/uploads/2015/01/Karkloof-Canopy.jpg\" style_type=\"none\" bordercolor=\"\" bordersize=\"0px\" borderradius=\"0\" stylecolor=\"\" align=\"none\" link=\"\" linktarget=\"_self\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" hide_on_mobile=\"no\" class=\"\" id=\"\"] <img alt=\"\" src=\"http://localhost/assagaylodge/wp-content/uploads/2015/01/Karkloof-Canopy.jpg\" />[/fusion_imageframe][fusion_content_boxes layout=\"icon-with-title\" title_size=\"\" icon_circle=\"\" icon_size=\"\" icon_align=\"left\" columns=\"1\" margin_top=\"\" margin_bottom=\"0px\" class=\"\" id=\"\"][fusion_content_box title=\"Karkloof Canopy Tours\" icon=\"fa-phone\" backgroundcolor=\"\" iconcolor=\"#ffffff\" circlecolor=\"#6666a4\" circlebordercolor=\"#6666a4\" iconflip=\"\" iconrotate=\"\" iconspin=\"no\" image=\"\" image_width=\"35\" image_height=\"35\" link=\"\" linktext=\"\" linktarget=\"_self\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\"]        <span style=\"color: #ffffff;\">Please call one of our specialist or pop into one of our travel shops and meet with an advisor in person. Alternatively, email us any questions and we will reply as quickly as possible. We look forward to being a small part of your next big adventure.</span>[/fusion_content_box][/fusion_content_boxes][/fusion_builder_column][fusion_builder_column type=\"1_3\" last=\"no\" spacing=\"no\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"#6666a4\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"10%\" margin_top=\"\" margin_bottom=\"0px\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" class=\"\" id=\"\"][fusion_imageframe lightbox=\"no\" lightbox_image=\"http://localhost/assagaylodge/wp-content/uploads/2015/01/Tala.jpg\" style_type=\"none\" bordercolor=\"\" bordersize=\"0px\" borderradius=\"0\" stylecolor=\"\" align=\"none\" link=\"\" linktarget=\"_self\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" hide_on_mobile=\"no\" class=\"\" id=\"\"] <img alt=\"\" src=\"http://localhost/assagaylodge/wp-content/uploads/2015/01/Tala.jpg\" />[/fusion_imageframe][fusion_content_boxes layout=\"icon-with-title\" title_size=\"\" icon_circle=\"\" icon_size=\"\" icon_align=\"left\" columns=\"1\" margin_top=\"\" margin_bottom=\"0px\" class=\"\" id=\"\"][fusion_content_box title=\"Tala Game Reserve\" icon=\"fa-phone\" backgroundcolor=\"\" iconcolor=\"#ffffff\" circlecolor=\"#6666a4\" circlebordercolor=\"#6666a4\" iconflip=\"\" iconrotate=\"\" iconspin=\"no\" image=\"\" image_width=\"35\" image_height=\"35\" link=\"\" linktext=\"\" linktarget=\"_self\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\"]        <span style=\"color: #ffffff;\">Please call one of our specialist or pop into one of our travel shops and meet with an advisor in person. Alternatively, email us any questions and we will reply as quickly as possible. We look forward to being a small part of your next big adventure.</span>[/fusion_content_box][/fusion_content_boxes][/fusion_builder_column][fusion_builder_column type=\"1_3\" last=\"yes\" spacing=\"no\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"#6666a4\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"10%\" margin_top=\"\" margin_bottom=\"0px\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" class=\"\" id=\"\"][fusion_imageframe lightbox=\"no\" lightbox_image=\"http://localhost/assagaylodge/wp-content/uploads/2015/01/Shongweni-Dam.jpg\" style_type=\"none\" bordercolor=\"\" bordersize=\"0px\" borderradius=\"0\" stylecolor=\"\" align=\"none\" link=\"\" linktarget=\"_self\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" hide_on_mobile=\"no\" class=\"\" id=\"\"] <img alt=\"\" src=\"http://localhost/assagaylodge/wp-content/uploads/2015/01/Shongweni-Dam.jpg\" />[/fusion_imageframe][fusion_content_boxes layout=\"icon-with-title\" title_size=\"\" icon_circle=\"\" icon_size=\"\" icon_align=\"left\" columns=\"1\" margin_top=\"\" margin_bottom=\"0px\" class=\"\" id=\"\"][fusion_content_box title=\"Shongeweni Dam\" icon=\"fa-phone\" backgroundcolor=\"\" iconcolor=\"#ffffff\" circlecolor=\"#6666a4\" circlebordercolor=\"#6666a4\" iconflip=\"\" iconrotate=\"\" iconspin=\"no\" image=\"\" image_width=\"35\" image_height=\"35\" link=\"\" linktext=\"\" linktarget=\"_self\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\"]        <span style=\"color: #ffffff;\">Please call one of our specialist or pop into one of our travel shops and meet with an advisor in person. Alternatively, email us any questions and we will reply as quickly as possible. We look forward to being a small part of your next big adventure.</span>[/fusion_content_box][/fusion_content_boxes][/fusion_builder_column][fusion_builder_column type=\"1_3\" last=\"no\" spacing=\"no\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"#6666a4\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"10%\" margin_top=\"\" margin_bottom=\"0px\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" class=\"\" id=\"\"][fusion_imageframe lightbox=\"no\" lightbox_image=\"http://localhost/assagaylodge/wp-content/uploads/2015/01/Golf.jpg\" style_type=\"none\" bordercolor=\"\" bordersize=\"0px\" borderradius=\"0\" stylecolor=\"\" align=\"none\" link=\"\" linktarget=\"_self\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" hide_on_mobile=\"no\" class=\"\" id=\"\"] <img alt=\"\" src=\"http://localhost/assagaylodge/wp-content/uploads/2015/01/Golf.jpg\" />[/fusion_imageframe][fusion_content_boxes layout=\"icon-with-title\" title_size=\"\" icon_circle=\"\" icon_size=\"\" icon_align=\"left\" columns=\"1\" margin_top=\"\" margin_bottom=\"0px\" class=\"\" id=\"\"][fusion_content_box title=\"Golf Courses - Camelot / Kloof / Selborne\" icon=\"fa-phone\" backgroundcolor=\"\" iconcolor=\"#ffffff\" circlecolor=\"#6666a4\" circlebordercolor=\"#6666a4\" iconflip=\"\" iconrotate=\"\" iconspin=\"no\" image=\"\" image_width=\"35\" image_height=\"35\" link=\"\" linktext=\"\" linktarget=\"_self\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\"]        <span style=\"color: #ffffff;\">Please call one of our specialist or pop into one of our travel shops and meet with an advisor in person. Alternatively, email us any questions and we will reply as quickly as possible. We look forward to being a small part of your next big adventure.</span>[/fusion_content_box][/fusion_content_boxes][/fusion_builder_column][fusion_builder_column type=\"1_3\" last=\"no\" spacing=\"no\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"#6666a4\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"10%\" margin_top=\"\" margin_bottom=\"0px\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" class=\"\" id=\"\"][fusion_imageframe lightbox=\"no\" lightbox_image=\"http://localhost/assagaylodge/wp-content/uploads/2015/01/shongweni-dressarge.jpg\" style_type=\"none\" bordercolor=\"\" bordersize=\"0px\" borderradius=\"0\" stylecolor=\"\" align=\"none\" link=\"\" linktarget=\"_self\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" hide_on_mobile=\"no\" class=\"\" id=\"\"] <img alt=\"\" src=\"http://localhost/assagaylodge/wp-content/uploads/2015/01/shongweni-dressarge.jpg\" />[/fusion_imageframe][fusion_content_boxes layout=\"icon-with-title\" title_size=\"\" icon_circle=\"\" icon_size=\"\" icon_align=\"left\" columns=\"1\" margin_top=\"\" margin_bottom=\"0px\" class=\"\" id=\"\"][fusion_content_box title=\"Shongweni Equestrian Centre\" icon=\"fa-phone\" backgroundcolor=\"\" iconcolor=\"#ffffff\" circlecolor=\"#6666a4\" circlebordercolor=\"#6666a4\" iconflip=\"\" iconrotate=\"\" iconspin=\"no\" image=\"\" image_width=\"35\" image_height=\"35\" link=\"\" linktext=\"\" linktarget=\"_self\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\"]        <span style=\"color: #ffffff;\">Please call one of our specialist or pop into one of our travel shops and meet with an advisor in person. Alternatively, email us any questions and we will reply as quickly as possible. We look forward to being a small part of your next big adventure.</span>[/fusion_content_box][/fusion_content_boxes][/fusion_builder_column][fusion_builder_column type=\"1_3\" last=\"yes\" spacing=\"no\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"#6666a4\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"10%\" margin_top=\"\" margin_bottom=\"0px\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" class=\"\" id=\"\"][fusion_imageframe lightbox=\"no\" lightbox_image=\"http://localhost/assagaylodge/wp-content/uploads/2015/01/camelot.jpg\" style_type=\"none\" bordercolor=\"\" bordersize=\"0px\" borderradius=\"0\" stylecolor=\"\" align=\"none\" link=\"\" linktarget=\"_self\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" hide_on_mobile=\"no\" class=\"\" id=\"\"] <img alt=\"\" src=\"http://localhost/assagaylodge/wp-content/uploads/2015/01/camelot.jpg\" />[/fusion_imageframe][fusion_content_boxes layout=\"icon-with-title\" title_size=\"\" icon_circle=\"\" icon_size=\"\" icon_align=\"left\" columns=\"1\" margin_top=\"\" margin_bottom=\"0px\" class=\"\" id=\"\"][fusion_content_box title=\"Camelot Medieval Functions\" icon=\"fa-phone\" backgroundcolor=\"\" iconcolor=\"#ffffff\" circlecolor=\"#6666a4\" circlebordercolor=\"#6666a4\" iconflip=\"\" iconrotate=\"\" iconspin=\"no\" image=\"\" image_width=\"35\" image_height=\"35\" link=\"\" linktext=\"\" linktarget=\"_self\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\"]        <span style=\"color: #ffffff;\">Please call one of our specialist or pop into one of our travel shops and meet with an advisor in person. Alternatively, email us any questions and we will reply as quickly as possible. We look forward to being a small part of your next big adventure.</span>[/fusion_content_box][/fusion_content_boxes][/fusion_builder_column][fusion_builder_column type=\"1_3\" last=\"no\" spacing=\"no\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"#6666a4\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"10%\" margin_top=\"\" margin_bottom=\"0px\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" class=\"\" id=\"\"][fusion_imageframe lightbox=\"no\" lightbox_image=\"http://localhost/assagaylodge/wp-content/uploads/2015/01/meander-gallery.jpg\" style_type=\"none\" bordercolor=\"\" bordersize=\"0px\" borderradius=\"0\" stylecolor=\"\" align=\"none\" link=\"\" linktarget=\"_self\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" hide_on_mobile=\"no\" class=\"\" id=\"\"] <img alt=\"\" src=\"http://localhost/assagaylodge/wp-content/uploads/2015/01/meander-gallery.jpg\" />[/fusion_imageframe][fusion_content_boxes layout=\"icon-with-title\" title_size=\"\" icon_circle=\"\" icon_size=\"\" icon_align=\"left\" columns=\"1\" margin_top=\"\" margin_bottom=\"0px\" class=\"\" id=\"\"][fusion_content_box title=\"Midlands Meander\" icon=\"fa-phone\" backgroundcolor=\"\" iconcolor=\"#ffffff\" circlecolor=\"#6666a4\" circlebordercolor=\"#6666a4\" iconflip=\"\" iconrotate=\"\" iconspin=\"no\" image=\"\" image_width=\"35\" image_height=\"35\" link=\"\" linktext=\"\" linktarget=\"_self\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\"]        <span style=\"color: #ffffff;\">Please call one of our specialist or pop into one of our travel shops and meet with an advisor in person. Alternatively, email us any questions and we will reply as quickly as possible. We look forward to being a small part of your next big adventure.</span>[/fusion_content_box][/fusion_content_boxes][/fusion_builder_column][fusion_builder_column type=\"1_3\" last=\"no\" spacing=\"no\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"#7272b2\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"10%\" margin_top=\"\" margin_bottom=\"0px\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" class=\"\" id=\"\"][fusion_imageframe lightbox=\"yes\" lightbox_image=\"http://localhost/assagaylodge/wp-content/uploads/2015/01/Durban.jpg\" style_type=\"none\" bordercolor=\"\" bordersize=\"0px\" borderradius=\"0\" stylecolor=\"\" align=\"none\" link=\"\" linktarget=\"_self\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" hide_on_mobile=\"no\" class=\"\" id=\"\"] <img alt=\"\" src=\"http://localhost/assagaylodge/wp-content/uploads/2015/01/Durban.jpg\" />[/fusion_imageframe][fusion_content_boxes layout=\"icon-with-title\" title_size=\"\" icon_circle=\"\" icon_size=\"\" icon_align=\"left\" columns=\"1\" margin_top=\"\" margin_bottom=\"0px\" class=\"\" id=\"\"][fusion_content_box title=\"Durban & The Dolphin Coast\" icon=\"fa-comments\" backgroundcolor=\"\" iconcolor=\"#ffffff\" circlecolor=\"#7272b2\" circlebordercolor=\"#7272b2\" iconflip=\"\" iconrotate=\"\" iconspin=\"no\" image=\"\" image_width=\"35\" image_height=\"35\" link=\"\" linktext=\"\" linktarget=\"_self\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\"]        <span style=\"color: #ffffff;\">Please call one of our specialist or pop into one of our travel shops and meet with an advisor in person. Alternatively, email us any questions and we will reply as quickly as possible. We look forward to being a small part of your next big adventure.</span>[/fusion_content_box][/fusion_content_boxes][/fusion_builder_column][fusion_builder_column type=\"1_3\" last=\"yes\" spacing=\"no\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"#6666a4\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"10%\" margin_top=\"\" margin_bottom=\"0px\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" class=\"\" id=\"\"][fusion_imageframe lightbox=\"no\" lightbox_image=\"http://localhost/assagaylodge/wp-content/uploads/2015/01/Mountains.jpg\" style_type=\"none\" bordercolor=\"\" bordersize=\"0px\" borderradius=\"0\" stylecolor=\"\" align=\"none\" link=\"\" linktarget=\"_self\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" hide_on_mobile=\"no\" class=\"\" id=\"\"] <img alt=\"\" src=\"http://localhost/assagaylodge/wp-content/uploads/2015/01/Mountains.jpg\" />[/fusion_imageframe][fusion_content_boxes layout=\"icon-with-title\" title_size=\"\" icon_circle=\"\" icon_size=\"\" icon_align=\"left\" columns=\"1\" margin_top=\"\" margin_bottom=\"0px\" class=\"\" id=\"\"][fusion_content_box title=\"The Drakensberg\" icon=\"fa-phone\" backgroundcolor=\"\" iconcolor=\"#ffffff\" circlecolor=\"#6666a4\" circlebordercolor=\"#6666a4\" iconflip=\"\" iconrotate=\"\" iconspin=\"no\" image=\"\" image_width=\"35\" image_height=\"35\" link=\"\" linktext=\"\" linktarget=\"_self\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\"]        <span style=\"color: #ffffff;\">Please call one of our specialist or pop into one of our travel shops and meet with an advisor in person. Alternatively, email us any questions and we will reply as quickly as possible. We look forward to being a small part of your next big adventure.</span>[/fusion_content_box][/fusion_content_boxes][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container]', 'Our Destinations', '', 'publish', 'closed', 'open', '', 'our-destinations', '', '', '2019-11-13 14:13:47', '2019-11-13 12:13:47', '', 0, 'http://theme-fusion.com/avada_demos_xml/travel/?page_id=13', 0, 'page', '', 0),
(16, 1, '2015-01-27 11:55:16', '2015-01-27 11:55:16', '[fusion_builder_container background_color=\"#f0f0ed\" background_image=\"\" background_parallax=\"none\" parallax_speed=\"0.3\" enable_mobile=\"no\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"110px\" padding_bottom=\"10px\" padding_left=\"\"    padding_right=\"\"    hundred_percent=\"no\" equal_height_columns=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][fusion_builder_row][fusion_builder_column type=\"2_3\" last=\"no\" spacing=\"yes\" center_content=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" class=\"\" id=\"\"][fusion_postslider layout=\"posts-with-excerpt\" excerpt=\"45\" category=\"general\" limit=\"3\" lightbox=\"yes\" class=\"\" id=\"\"][/fusion_postslider][fusion_separator style_type=\"none\" top_margin=\"\" bottom_margin=\"\" sep_color=\"\" border_size=\"\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"\" alignment=\"center\" class=\"\" id=\"\"/][/fusion_builder_column][fusion_builder_column type=\"1_3\" last=\"yes\" spacing=\"yes\" center_content=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][fusion_postslider layout=\"posts\" excerpt=\"15\" category=\"cold-countries\" limit=\"3\" lightbox=\"yes\" class=\"\" id=\"\"][/fusion_postslider][fusion_separator style_type=\"none\" top_margin=\"17\" bottom_margin=\"17\" sep_color=\"\" border_size=\"\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"\" alignment=\"center\" class=\"\" id=\"\"/][fusion_postslider layout=\"posts\" excerpt=\"15\" category=\"warm-countries\" limit=\"3\" lightbox=\"yes\" class=\"\" id=\"\"][/fusion_postslider][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container background_color=\"#f0f0ed\" background_image=\"\" background_parallax=\"none\" parallax_speed=\"0.3\" enable_mobile=\"no\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"0px\" padding_bottom=\"60px\" padding_left=\"\"    padding_right=\"\"    hundred_percent=\"no\" equal_height_columns=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][fusion_builder_row][fusion_builder_column type=\"1_1\" background_position=\"left top\" background_color=\"\" border_size=\"\" border_color=\"\" border_style=\"solid\" spacing=\"yes\" background_image=\"\" background_repeat=\"no-repeat\" padding=\"\" margin_top=\"0px\" margin_bottom=\"0px\" class=\"\" id=\"\" animation_type=\"\" animation_speed=\"0.3\" animation_direction=\"left\" hide_on_mobile=\"no\" center_content=\"no\" min_height=\"none\"][fusion_blog number_posts=\"3\" offset=\"\" cat_slug=\"\" exclude_cats=\"\" title=\"yes\" title_link=\"yes\" thumbnail=\"yes\" excerpt=\"yes\" excerpt_length=\"15\" meta_all=\"yes\" meta_author=\"no\" meta_categories=\"no\" meta_comments=\"no\" meta_date=\"no\" meta_link=\"yes\" meta_tags=\"no\" paging=\"no\" scrolling=\"load_more_button\" strip_html=\"yes\" blog_grid_columns=\"3\" blog_grid_column_spacing=\"40\" layout=\"grid\" class=\"\" id=\"\"][/fusion_blog][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container background_color=\"#6666a4\" background_image=\"http://theme-fusion.com/avada_demos_xml/travel/wp-content/uploads/2015/01/parallax-section1.jpg\" background_parallax=\"fixed\" parallax_speed=\"0.3\" enable_mobile=\"no\" background_repeat=\"no-repeat\" background_position=\"center center\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"200px\" padding_bottom=\"200px\" padding_left=\"\"    padding_right=\"\"    hundred_percent=\"no\" equal_height_columns=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][fusion_builder_row][fusion_builder_column type=\"1_1\" background_position=\"left top\" background_color=\"\" border_size=\"\" border_color=\"\" border_style=\"solid\" spacing=\"yes\" background_image=\"\" background_repeat=\"no-repeat\" padding=\"\" margin_top=\"0px\" margin_bottom=\"0px\" class=\"\" id=\"\" animation_type=\"\" animation_speed=\"0.3\" animation_direction=\"left\" hide_on_mobile=\"no\" center_content=\"no\" min_height=\"none\"][fusion_text]\n<h1 style=\"text-align: center; color: #fff;\">THE AVADA DIFFERENCE</h1>\n[/fusion_text][fusion_text]\n<h3 style=\"text-align: center; color: #fff;\">We believe no two getaways should be the same and a busy life deserves the very best. We take the time to get to know you so we can help you find your perfect escape.</h3>\n[/fusion_text][fusion_separator style_type=\"none\" top_margin=\"10\" bottom_margin=\"10\" sep_color=\"\" border_size=\"\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"\" alignment=\"center\" class=\"\" id=\"\"/][fusion_button link=\"/avada_demos/travel/make-a-reservation\" color=\"default\" size=\"\"  type=\"\" shape=\"\" target=\"_self\" title=\"\" gradient_colors=\"|\" gradient_hover_colors=\"|\" accent_color=\"\" accent_hover_color=\"\" bevel_color=\"\" border_width=\"0px\" icon=\"\" icon_position=\"left\" icon_divider=\"no\" modal=\"\" animation_type=\"0\" animation_direction=\"left\" animation_speed=\"1\" alignment=\"center\" class=\"\" id=\"\"]MAKE A RESERVATION[/fusion_button][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container]', 'Travel Blog', '', 'publish', 'closed', 'open', '', 'travel-blog', '', '', '2019-11-13 14:13:47', '2019-11-13 12:13:47', '', 0, 'http://theme-fusion.com/avada_demos_xml/travel/?page_id=16', 0, 'page', '', 0),
(24, 1, '2015-01-27 12:44:20', '2015-01-27 12:44:20', '', 'Home', '', 'publish', 'closed', 'closed', '', 'home', '', '', '2020-03-02 23:07:04', '2020-03-02 21:07:04', '', 0, 'http://theme-fusion.com/avada_demos_xml/travel/?post_type=slide&#038;p=24', 0, 'slide', '', 0),
(50, 1, '2015-01-27 14:59:21', '2015-01-27 12:59:21', '', 'Dining Side Table', '', 'publish', 'closed', 'closed', '', 'dining-side-table', '', '', '2015-09-07 16:44:38', '2015-09-07 14:44:38', '', 0, 'http://theme-fusion.com/avada_demos_xml/travel/?post_type=avada_portfolio&#038;p=50', 0, 'avada_portfolio', '', 0),
(53, 1, '2015-01-27 14:59:46', '2015-01-27 14:59:46', '', 'Main Lounge Table', '', 'publish', 'closed', 'closed', '', 'south-pacific', '', '', '2015-09-04 15:11:59', '2015-09-04 13:11:59', '', 0, 'http://theme-fusion.com/avada_demos_xml/travel/?post_type=avada_portfolio&#038;p=53', 0, 'avada_portfolio', '', 0),
(55, 1, '2015-01-27 15:00:47', '2015-01-27 15:00:47', '', 'Main Lounge', '', 'publish', 'closed', 'closed', '', 'main-lounge', '', '', '2015-09-04 12:15:11', '2015-09-04 10:15:11', '', 0, 'http://theme-fusion.com/avada_demos_xml/travel/?post_type=avada_portfolio&#038;p=55', 0, 'avada_portfolio', '', 0),
(57, 1, '2015-01-27 15:02:00', '2015-01-27 15:02:00', '', 'Entrance Lounge', '', 'publish', 'closed', 'closed', '', 'entrance-lounge', '', '', '2015-09-04 12:07:45', '2015-09-04 10:07:45', '', 0, 'http://theme-fusion.com/avada_demos_xml/travel/?post_type=avada_portfolio&#038;p=57', 0, 'avada_portfolio', '', 0),
(59, 1, '2015-01-27 15:02:32', '2015-01-27 15:02:32', '', 'Lounge', '', 'publish', 'closed', 'closed', '', 'lounge', '', '', '2015-09-04 12:03:54', '2015-09-04 10:03:54', '', 0, 'http://theme-fusion.com/avada_demos_xml/travel/?post_type=avada_portfolio&#038;p=59', 0, 'avada_portfolio', '', 0),
(61, 1, '2015-01-27 15:02:56', '2015-01-27 15:02:56', '', 'Gallery Wall', '', 'publish', 'closed', 'closed', '', 'gallery-wall', '', '', '2015-09-04 12:01:38', '2015-09-04 10:01:38', '', 0, 'http://theme-fusion.com/avada_demos_xml/travel/?post_type=avada_portfolio&#038;p=61', 0, 'avada_portfolio', '', 0),
(86, 1, '2015-01-27 18:27:43', '2015-01-27 18:27:43', 'Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.', 'Traveler Health in Africa', '', 'publish', 'open', 'open', '', 'aenean-odio-mauris-mauris', '', '', '2015-01-27 18:27:43', '2015-01-27 18:27:43', '', 0, 'http://theme-fusion.com/avada_demos_xml/travel/?p=86', 0, 'post', '', 0),
(89, 1, '2015-01-27 18:29:06', '2015-01-27 18:29:06', 'Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque laudantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi architecto beatae vitae dicta sunt explicabo. Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia consequuntur magni dolores eos qui ratione voluptatem sequi nesciunt. Neque porro quisquam est, qui dolorem ipsum quia dolor sit amet, consectetur, adipisci velit, sed quia non numquam eius modi tempora incidunt ut labore et dolore magnam aliquam quaerat voluptatem. Ut enim ad minima veniam, quis nostrum exercitationem ullam corporis suscipit laboriosam, nisi ut aliquid ex ea commodi consequatur? Quis autem vel eum iure reprehenderit qui in ea voluptate velit esse quam nihil molestiae consequatur, vel illum qui dolorem eum fugiat quo voluptas nulla pariatur?', 'Deals of the Week', '', 'publish', 'open', 'open', '', 'deals-of-the-week', '', '', '2015-01-27 18:29:06', '2015-01-27 18:29:06', '', 0, 'http://theme-fusion.com/avada_demos_xml/travel/?p=89', 0, 'post', '', 0),
(92, 1, '2015-01-27 18:30:45', '2015-01-27 18:30:45', 'At vero eos et accusamus et iusto odio dignissimos ducimus qui blanditiis praesentium voluptatum deleniti atque corrupti quos dolores et quas molestias excepturi sint occaecati cupiditate non provident, similique sunt in culpa qui officia deserunt mollitia animi, id est laborum et dolorum fuga. Et harum quidem rerum facilis est et expedita distinctio. Nam libero tempore, cum soluta nobis est eligendi optio cumque nihil impedit quo minus id quod maxime placeat facere possimus, omnis voluptas assumenda est, omnis dolor repellendus. Temporibus autem quibusdam et aut officiis debitis aut rerum necessitatibus saepe eveniet ut et voluptates repudiandae sint et molestiae non recusandae. Itaque earum rerum hic tenetur a sapiente delectus, ut aut reiciendis voluptatibus maiores alias consequatur aut perferendis doloribus asperiores repellat.', 'Traveler’s Checklist 2015', '', 'publish', 'open', 'open', '', 'travelers-checklist', '', '', '2015-01-27 18:30:45', '2015-01-27 18:30:45', '', 0, 'http://theme-fusion.com/avada_demos_xml/travel/?p=92', 0, 'post', '', 0),
(96, 1, '2015-01-27 20:01:03', '2015-01-27 20:01:03', '', 'Destinations', '', 'publish', 'closed', 'closed', '', 'destinations', '', '', '2015-01-27 20:01:03', '2015-01-27 20:01:03', '', 0, 'http://theme-fusion.com/avada_demos_xml/travel/?post_type=slide&#038;p=96', 0, 'slide', '', 0),
(152, 1, '2015-01-28 13:49:03', '2015-01-28 13:49:03', '', 'Reservation', '', 'publish', 'closed', 'closed', '', 'reservation', '', '', '2015-01-28 13:49:03', '2015-01-28 13:49:03', '', 0, 'http://theme-fusion.com/avada_demos_xml/travel/?post_type=slide&#038;p=152', 0, 'slide', '', 0),
(192, 1, '2015-01-28 19:29:07', '2015-01-28 19:29:07', '', 'The Lodge', '', 'publish', 'closed', 'closed', '', 'about', '', '', '2020-03-04 11:02:19', '2020-03-04 09:02:19', '', 0, 'http://theme-fusion.com/avada_demos_xml/travel/?post_type=slide&#038;p=192', 0, 'slide', '', 0),
(234, 1, '2015-01-29 13:11:30', '2015-01-29 13:11:30', '', 'map', '', 'inherit', 'closed', 'open', '', 'map', '', '', '2015-01-29 13:11:30', '2015-01-29 13:11:30', '', 0, 'http://localhost/assagaylodge/wp-content/uploads/2015/01/map1.png', 0, 'attachment', 'image/png', 0),
(246, 1, '2015-01-29 14:01:55', '2015-01-29 14:01:55', '<p>Your Name (required)<br />\r\n    [text* your-name] </p>\r\n\r\n<p>Your Email (required)<br />\r\n    [email* your-email] </p>\r\n\r\n<p>Your Message<br />\r\n    [textarea your-message] </p>\r\n\r\n<p>[submit \"SEND MESSAGE\"]</p>\n1\nAssagay Forest Lodge\n[your-name] <assagaylodge@msla.co.za>\nassagaylodge@msla.co.za\nFrom: [your-name] <[your-email]>\r\nSubject: Assagay Forest Lodge\r\n\r\nMessage Body:\r\n[your-message]\nReply-To: [your-email]\n\n\n\n\n[your-subject]\nTravel <wordpress@theme-fusion.com>\n[your-email]\nMessage Body:\r\n[your-message]\r\n\r\n--\r\nThis e-mail was sent from a contact form on Travel (http://theme-fusion.com/avada_demos_xml/travel)\nReply-To: isharis@gmail.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.\nDate format seems invalid.\nThis date is too early.\nThis date is too late.\nFailed to upload file.\nThis file type is not allowed.\nThis file is too large.\nFailed to upload file. Error occurred.\nNumber format seems invalid.\nThis number is too small.\nThis number is too large.\nYour answer is not correct.\nYour entered code is incorrect.\nEmail address seems invalid.\nURL seems invalid.\nTelephone number seems invalid.', 'Contact form 1', '', 'publish', 'closed', 'open', '', 'contact-form-1-2', '', '', '2017-12-13 05:51:44', '2017-12-13 03:51:44', '', 0, 'http://theme-fusion.com/avada_demos_xml/travel/?post_type=wpcf7_contact_form&#038;p=246', 0, 'wpcf7_contact_form', '', 0),
(319, 1, '2015-01-30 18:38:49', '2015-01-30 18:38:49', '', 'Blog', '', 'publish', 'closed', 'closed', '', 'blog', '', '', '2015-01-30 18:38:49', '2015-01-30 18:38:49', '', 0, 'http://theme-fusion.com/avada_demos_xml/travel/?post_type=slide&#038;p=319', 0, 'slide', '', 0),
(358, 1, '2015-02-02 12:46:22', '2015-02-02 10:46:22', '', 'Entrance Lounge & Kitchen', '', 'publish', 'closed', 'closed', '', 'entrance-kitchen', '', '', '2015-09-04 15:17:48', '2015-09-04 13:17:48', '', 0, 'http://theme-fusion.com/avada_demos_xml/travel/?post_type=avada_portfolio&#038;p=358', 0, 'avada_portfolio', '', 0),
(361, 1, '2015-02-02 12:47:24', '2015-02-02 10:47:24', '', 'Lounge & Dining', '', 'publish', 'closed', 'closed', '', 'lounge-dining', '', '', '2015-09-04 15:16:52', '2015-09-04 13:16:52', '', 0, 'http://theme-fusion.com/avada_demos_xml/travel/?post_type=avada_portfolio&#038;p=361', 0, 'avada_portfolio', '', 0),
(364, 1, '2015-02-02 12:48:19', '2015-02-02 10:48:19', '', 'Dining & Entrance Lounge', '', 'publish', 'open', 'closed', '', 'dining-entrance-lounge', '', '', '2015-09-04 15:26:56', '2015-09-04 13:26:56', '', 0, 'http://theme-fusion.com/avada_demos_xml/travel/?post_type=avada_portfolio&#038;p=364', 0, 'avada_portfolio', '', 0),
(415, 1, '2015-02-02 18:28:41', '2015-02-02 18:28:41', 'Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.', 'The Beauty of Bike Touring', '', 'publish', 'open', 'open', '', 'beauty-of-bike-touring', '', '', '2015-02-02 18:28:41', '2015-02-02 18:28:41', '', 0, 'http://theme-fusion.com/avada_demos_xml/travel/?p=415', 0, 'post', '', 0),
(417, 1, '2015-02-02 18:29:12', '2015-02-02 18:29:12', 'Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.', 'Europe Travel Guide 2015', '', 'publish', 'open', 'open', '', 'europe-travel-guide-2015', '', '', '2015-02-02 18:29:12', '2015-02-02 18:29:12', '', 0, 'http://theme-fusion.com/avada_demos_xml/travel/?p=417', 0, 'post', '', 0),
(474, 1, '2015-02-03 19:02:06', '2015-02-03 19:02:06', '', 'about-us-top-image', '', 'inherit', 'closed', 'open', '', 'about-us-top-image', '', '', '2015-02-03 19:02:06', '2015-02-03 19:02:06', '', 0, 'http://localhost/assagaylodge/wp-content/uploads/2015/01/about-us-top-image1.jpg', 0, 'attachment', 'image/jpeg', 0),
(622, 1, '2015-02-06 17:23:47', '2015-02-06 17:23:47', '', 'tab2', '', 'inherit', 'closed', 'open', '', 'tab2', '', '', '2015-02-06 17:23:47', '2015-02-06 17:23:47', '', 0, 'http://localhost/assagaylodge/wp-content/uploads/2015/02/tab21.jpg', 0, 'attachment', 'image/jpeg', 0),
(777, 1, '2015-04-09 20:23:35', '2015-04-09 20:23:35', '', 'destination4', '', 'inherit', 'open', 'open', '', 'destination4-2', '', '', '2015-04-09 20:23:35', '2015-04-09 20:23:35', '', 0, 'http://localhost/assagaylodge/wp-content/uploads/2015/04/destination41.jpg', 0, 'attachment', 'image/jpeg', 0),
(778, 1, '2015-04-09 20:23:36', '2015-04-09 20:23:36', '', 'destination5', '', 'inherit', 'open', 'open', '', 'destination5-2', '', '', '2015-04-09 20:23:36', '2015-04-09 20:23:36', '', 0, 'http://localhost/assagaylodge/wp-content/uploads/2015/04/destination51.jpg', 0, 'attachment', 'image/jpeg', 0),
(779, 1, '2015-04-09 20:23:37', '2015-04-09 20:23:37', '', 'destination6', '', 'inherit', 'open', 'open', '', 'destination6-2', '', '', '2015-04-09 20:23:37', '2015-04-09 20:23:37', '', 0, 'http://localhost/assagaylodge/wp-content/uploads/2015/04/destination61.jpg', 0, 'attachment', 'image/jpeg', 0),
(780, 1, '2015-04-09 20:23:37', '2015-04-09 20:23:37', '', 'destination7', '', 'inherit', 'open', 'open', '', 'destination7-2', '', '', '2015-04-09 20:23:37', '2015-04-09 20:23:37', '', 0, 'http://localhost/assagaylodge/wp-content/uploads/2015/04/destination71.jpg', 0, 'attachment', 'image/jpeg', 0),
(781, 1, '2015-04-09 20:23:38', '2015-04-09 20:23:38', '', 'destination8', '', 'inherit', 'open', 'open', '', 'destination8-2', '', '', '2015-04-09 20:23:38', '2015-04-09 20:23:38', '', 0, 'http://localhost/assagaylodge/wp-content/uploads/2015/04/destination81.jpg', 0, 'attachment', 'image/jpeg', 0),
(782, 1, '2015-04-09 20:23:38', '2015-04-09 20:23:38', '', 'destination9', '', 'inherit', 'open', 'open', '', 'destination9-2', '', '', '2015-04-09 20:23:38', '2015-04-09 20:23:38', '', 0, 'http://localhost/assagaylodge/wp-content/uploads/2015/04/destination91.jpg', 0, 'attachment', 'image/jpeg', 0),
(783, 1, '2015-04-09 20:23:39', '2015-04-09 20:23:39', '', 'home-banner', '', 'inherit', 'open', 'open', '', 'home-banner-2', '', '', '2015-04-09 20:23:39', '2015-04-09 20:23:39', '', 0, 'http://localhost/assagaylodge/wp-content/uploads/2015/04/home-banner1.jpg', 0, 'attachment', 'image/jpeg', 0),
(784, 1, '2015-04-09 20:23:41', '2015-04-09 20:23:41', '', 'home-parallax', '', 'inherit', 'open', 'open', '', 'home-parallax-2', '', '', '2015-04-09 20:23:41', '2015-04-09 20:23:41', '', 0, 'http://localhost/assagaylodge/wp-content/uploads/2015/04/home-parallax1.jpg', 0, 'attachment', 'image/jpeg', 0);
INSERT INTO `wp_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(785, 1, '2015-04-09 20:23:42', '2015-04-09 20:23:42', '', 'testimonial1', '', 'inherit', 'open', 'open', '', 'testimonial1', '', '', '2015-04-09 20:23:42', '2015-04-09 20:23:42', '', 0, 'http://localhost/assagaylodge/wp-content/uploads/2015/04/testimonial11.jpg', 0, 'attachment', 'image/jpeg', 0),
(787, 1, '2015-04-09 20:23:43', '2015-04-09 20:23:43', '', 'travel-logo2x1', '', 'inherit', 'open', 'open', '', 'travel-logo2x1', '', '', '2015-04-09 20:23:43', '2015-04-09 20:23:43', '', 0, 'http://localhost/assagaylodge/wp-content/uploads/2015/04/travel-logo2x11.png', 0, 'attachment', 'image/png', 0),
(789, 1, '2015-04-09 20:26:44', '2015-04-09 20:26:44', '', 'avada-destinations-1', '', 'inherit', 'open', 'open', '', 'avada-destinations-1-2', '', '', '2015-04-09 20:26:44', '2015-04-09 20:26:44', '', 0, 'http://localhost/assagaylodge/wp-content/uploads/2015/01/avada-destinations-111.jpg', 0, 'attachment', 'image/jpeg', 0),
(800, 1, '2015-04-09 20:49:06', '2015-04-09 20:49:06', '', 'travel_logo_1x', '', 'inherit', 'open', 'open', '', 'travel_logo_1x', '', '', '2015-04-09 20:49:06', '2015-04-09 20:49:06', '', 0, 'http://localhost/assagaylodge/wp-content/uploads/2015/04/travel_logo_1x1.png', 0, 'attachment', 'image/png', 0),
(801, 1, '2015-04-09 20:57:30', '2015-04-09 20:57:30', '', 'logo1', '', 'inherit', 'open', 'open', '', 'logo1-2', '', '', '2015-04-09 20:57:30', '2015-04-09 20:57:30', '', 0, 'http://localhost/assagaylodge/wp-content/uploads/2015/01/logo111.png', 0, 'attachment', 'image/png', 0),
(802, 1, '2015-04-09 20:57:30', '2015-04-09 20:57:30', '', 'logo2', '', 'inherit', 'open', 'open', '', 'logo2-2', '', '', '2015-04-09 20:57:30', '2015-04-09 20:57:30', '', 0, 'http://localhost/assagaylodge/wp-content/uploads/2015/01/logo211.png', 0, 'attachment', 'image/png', 0),
(803, 1, '2015-04-09 20:57:30', '2015-04-09 20:57:30', '', 'logo3', '', 'inherit', 'open', 'open', '', 'logo3-2', '', '', '2015-04-09 20:57:30', '2015-04-09 20:57:30', '', 0, 'http://localhost/assagaylodge/wp-content/uploads/2015/01/logo311.png', 0, 'attachment', 'image/png', 0),
(804, 1, '2015-04-09 20:57:31', '2015-04-09 20:57:31', '', 'logo4', '', 'inherit', 'open', 'open', '', 'logo4-2', '', '', '2015-04-09 20:57:31', '2015-04-09 20:57:31', '', 0, 'http://localhost/assagaylodge/wp-content/uploads/2015/01/logo411.png', 0, 'attachment', 'image/png', 0),
(805, 1, '2015-04-09 20:57:31', '2015-04-09 20:57:31', '', 'logo5', '', 'inherit', 'open', 'open', '', 'logo5-3', '', '', '2015-04-09 20:57:31', '2015-04-09 20:57:31', '', 0, 'http://localhost/assagaylodge/wp-content/uploads/2015/01/logo521.png', 0, 'attachment', 'image/png', 0),
(806, 1, '2015-04-09 20:58:23', '2015-04-09 20:58:23', '', 'about-parallax', '', 'inherit', 'open', 'open', '', 'about-parallax-2', '', '', '2015-04-09 20:58:23', '2015-04-09 20:58:23', '', 0, 'http://localhost/assagaylodge/wp-content/uploads/2015/01/about-parallax11.jpg', 0, 'attachment', 'image/jpeg', 0),
(807, 1, '2015-04-09 20:58:39', '2015-04-09 20:58:39', '', 'person1', '', 'inherit', 'open', 'open', '', 'person1-2', '', '', '2015-04-09 20:58:39', '2015-04-09 20:58:39', '', 0, 'http://localhost/assagaylodge/wp-content/uploads/2015/01/person111.jpg', 0, 'attachment', 'image/jpeg', 0),
(808, 1, '2015-04-09 20:58:39', '2015-04-09 20:58:39', '', 'person2', '', 'inherit', 'open', 'open', '', 'person2-2', '', '', '2015-04-09 20:58:39', '2015-04-09 20:58:39', '', 0, 'http://localhost/assagaylodge/wp-content/uploads/2015/01/person211.jpg', 0, 'attachment', 'image/jpeg', 0),
(809, 1, '2015-04-09 20:58:39', '2015-04-09 20:58:39', '', 'person3', '', 'inherit', 'open', 'open', '', 'person3-2', '', '', '2015-04-09 20:58:39', '2015-04-09 20:58:39', '', 0, 'http://localhost/assagaylodge/wp-content/uploads/2015/01/person311.jpg', 0, 'attachment', 'image/jpeg', 0),
(811, 1, '2015-04-09 20:59:49', '2015-04-09 20:59:49', '', 'about-baner1', '', 'inherit', 'open', 'open', '', 'about-baner1', '', '', '2015-04-09 20:59:49', '2015-04-09 20:59:49', '', 0, 'http://localhost/assagaylodge/wp-content/uploads/2015/01/about-baner111.jpg', 0, 'attachment', 'image/jpeg', 0),
(812, 1, '2015-04-09 21:04:03', '2015-04-09 21:04:03', '', 'destination-parallax2', '', 'inherit', 'open', 'open', '', 'destination-parallax2-2', '', '', '2015-04-09 21:04:03', '2015-04-09 21:04:03', '', 0, 'http://localhost/assagaylodge/wp-content/uploads/2015/01/destination-parallax211.jpg', 0, 'attachment', 'image/jpeg', 0),
(813, 1, '2015-04-09 21:04:04', '2015-04-09 21:04:04', '', 'destinaton-banner21', '', 'inherit', 'open', 'open', '', 'destinaton-banner21', '', '', '2015-04-09 21:04:04', '2015-04-09 21:04:04', '', 0, 'http://localhost/assagaylodge/wp-content/uploads/2015/01/destinaton-banner2111.jpg', 0, 'attachment', 'image/jpeg', 0),
(815, 1, '2015-04-09 21:12:14', '2015-04-09 21:12:14', '', 'page-top', '', 'inherit', 'open', 'open', '', 'page-top-2', '', '', '2015-04-09 21:12:14', '2015-04-09 21:12:14', '', 0, 'http://localhost/assagaylodge/wp-content/uploads/2015/01/page-top11.jpg', 0, 'attachment', 'image/jpeg', 0),
(816, 1, '2015-04-09 21:12:15', '2015-04-09 21:12:15', '', 'reservation21', '', 'inherit', 'open', 'open', '', 'reservation21', '', '', '2015-04-09 21:12:15', '2015-04-09 21:12:15', '', 0, 'http://localhost/assagaylodge/wp-content/uploads/2015/01/reservation2111.jpg', 0, 'attachment', 'image/jpeg', 0),
(817, 1, '2015-04-09 21:13:44', '2015-04-09 21:13:44', '', 'parallax-section', '', 'inherit', 'open', 'open', '', 'parallax-section-2', '', '', '2015-04-09 21:13:44', '2015-04-09 21:13:44', '', 0, 'http://localhost/assagaylodge/wp-content/uploads/2015/01/parallax-section11.jpg', 0, 'attachment', 'image/jpeg', 0),
(819, 1, '2015-04-09 21:17:26', '2015-04-09 21:17:26', '', 'blog4', '', 'inherit', 'open', 'open', '', 'blog4-2', '', '', '2015-04-09 21:17:26', '2015-04-09 21:17:26', '', 0, 'http://localhost/assagaylodge/wp-content/uploads/2015/02/blog41.jpg', 0, 'attachment', 'image/jpeg', 0),
(820, 1, '2015-04-09 21:17:26', '2015-04-09 21:17:26', '', 'blog5', '', 'inherit', 'open', 'open', '', 'blog5-2', '', '', '2015-04-09 21:17:26', '2015-04-09 21:17:26', '', 0, 'http://localhost/assagaylodge/wp-content/uploads/2015/02/blog51.jpg', 0, 'attachment', 'image/jpeg', 0),
(821, 1, '2015-04-09 21:17:27', '2015-04-09 21:17:27', '', 'blog6', '', 'inherit', 'open', 'open', '', 'blog6-2', '', '', '2015-04-09 21:17:27', '2015-04-09 21:17:27', '', 0, 'http://localhost/assagaylodge/wp-content/uploads/2015/02/blog61.jpg', 0, 'attachment', 'image/jpeg', 0),
(822, 1, '2015-04-09 21:17:27', '2015-04-09 21:17:27', '', 'blog7', '', 'inherit', 'open', 'open', '', 'blog7-2', '', '', '2015-04-09 21:17:27', '2015-04-09 21:17:27', '', 0, 'http://localhost/assagaylodge/wp-content/uploads/2015/02/blog71.jpg', 0, 'attachment', 'image/jpeg', 0),
(823, 1, '2015-04-09 21:17:28', '2015-04-09 21:17:28', '', 'blog8', '', 'inherit', 'open', 'open', '', 'blog8-2', '', '', '2015-04-09 21:17:28', '2015-04-09 21:17:28', '', 0, 'http://localhost/assagaylodge/wp-content/uploads/2015/02/blog81.jpg', 0, 'attachment', 'image/jpeg', 0),
(824, 1, '2015-04-09 21:17:29', '2015-04-09 21:17:29', '', 'blog9', '', 'inherit', 'open', 'open', '', 'blog9-2', '', '', '2015-04-09 21:17:29', '2015-04-09 21:17:29', '', 0, 'http://localhost/assagaylodge/wp-content/uploads/2015/02/blog91.jpg', 0, 'attachment', 'image/jpeg', 0),
(825, 1, '2015-04-09 21:17:29', '2015-04-09 21:17:29', '', 'blog11', '', 'inherit', 'open', 'open', '', 'blog11', '', '', '2015-04-09 21:17:29', '2015-04-09 21:17:29', '', 0, 'http://localhost/assagaylodge/wp-content/uploads/2015/02/blog111.jpg', 0, 'attachment', 'image/jpeg', 0),
(826, 1, '2015-04-09 21:17:30', '2015-04-09 21:17:30', '', 'blog21', '', 'inherit', 'open', 'open', '', 'blog21', '', '', '2015-04-09 21:17:30', '2015-04-09 21:17:30', '', 0, 'http://localhost/assagaylodge/wp-content/uploads/2015/02/blog211.jpg', 0, 'attachment', 'image/jpeg', 0),
(827, 1, '2015-04-09 21:17:31', '2015-04-09 21:17:31', '', 'blog31', '', 'inherit', 'open', 'open', '', 'blog31', '', '', '2015-04-09 21:17:31', '2015-04-09 21:17:31', '', 0, 'http://localhost/assagaylodge/wp-content/uploads/2015/02/blog311.jpg', 0, 'attachment', 'image/jpeg', 0),
(830, 1, '2015-08-07 13:53:37', '2015-08-07 13:53:37', '', 'Contact Us', '', 'publish', 'open', 'closed', '', 'reservations', '', '', '2020-03-03 14:24:45', '2020-03-03 12:24:45', '', 0, 'http://localhost/assagaylodge/2015/08/07/reservations/', 3, 'nav_menu_item', '', 0),
(832, 1, '2015-08-07 13:53:39', '2015-08-07 13:53:39', '', 'HOME', '', 'publish', 'open', 'closed', '', 'home', '', '', '2020-03-03 14:24:45', '2020-03-03 12:24:45', '', 0, 'http://localhost/assagaylodge/2015/08/07/home/', 1, 'nav_menu_item', '', 0),
(834, 1, '2015-08-07 15:13:08', '2015-08-07 15:13:08', '[fullwidth background_color=\"\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"70px\" padding_bottom=\"75px\" padding_left=\"0px\" padding_right=\"0px\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][one_half last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][fusion_text]\r\n<h3>Contact Us</h3>\r\nSend us a message and we will take the time to get to know you so we can help you find your amazing adventure.[/fusion_text][fusion_text][contact-form-7 id=\"246\" title=\"Contact form 1\"][/fusion_text][/one_half][one_half last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][fusion_text]\r\n<h3>FAQ</h3>\r\nStill not sure if we can be of help? Check through some frequently asked questions and then send us a message.[/fusion_text][separator style_type=\"none\" top_margin=\"\" bottom_margin=\"20\" sep_color=\"\" border_size=\"\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"\" alignment=\"\" class=\"\" id=\"\"][accordian class=\"\" id=\"\"][toggle title=\"Do you do weddings?\" open=\"no\"]Aliquam eu augue arcu. Vestibulum finibus eros id elit hendrerit laoreet. Sed fringilla pellentesque justo quis lobortis. Morbi maximus ante at nulla sodales commodo eu a tellus. Etiam rhoncus dolor leo, a fermentum massa tincidunt ut. Phasellus porttitor sapien mi.\r\n\r\nSuspendisse ornare iaculis auctor. Nunc placerat pellentesque tortor eu vehicula. In non magna mollis, sodales metus id, rhoncus elit. Mauris vulputate, tellus in viverra condimentum, metus diam lobortis leo, eu viverra justo elit elementum augue. Suspendisse efficitur maximus tellus quis faucibus. Nam non nunc quis risus tempor dapibus.[/toggle][toggle title=\"Must I pay in Advance?\" open=\"no\"]Aliquam eu augue arcu. Vestibulum finibus eros id elit hendrerit laoreet. Sed fringilla pellentesque justo quis lobortis. Morbi maximus ante at nulla sodales commodo eu a tellus. Etiam rhoncus dolor leo, a fermentum massa tincidunt ut. Phasellus porttitor sapien mi.\r\n\r\nSuspendisse ornare iaculis auctor. Nunc placerat pellentesque tortor eu vehicula. In non magna mollis, sodales metus id, rhoncus elit. Mauris vulputate, tellus in viverra condimentum, metus diam lobortis leo, eu viverra justo elit elementum augue. Suspendisse efficitur maximus tellus quis faucibus. Nam non nunc quis risus tempor dapibus.[/toggle][toggle title=\"Do you allow children to travel?\" open=\"no\"]Aliquam eu augue arcu. Vestibulum finibus eros id elit hendrerit laoreet. Sed fringilla pellentesque justo quis lobortis. Morbi maximus ante at nulla sodales commodo eu a tellus. Etiam rhoncus dolor leo, a fermentum massa tincidunt ut. Phasellus porttitor sapien mi.\r\n\r\nSuspendisse ornare iaculis auctor. Nunc placerat pellentesque tortor eu vehicula. In non magna mollis, sodales metus id, rhoncus elit. Mauris vulputate, tellus in viverra condimentum, metus diam lobortis leo, eu viverra justo elit elementum augue. Suspendisse efficitur maximus tellus quis faucibus. Nam non nunc quis risus tempor dapibus.[/toggle][toggle title=\"Do you have any special offers?\" open=\"no\"]Aliquam eu augue arcu. Vestibulum finibus eros id elit hendrerit laoreet. Sed fringilla pellentesque justo quis lobortis. Morbi maximus ante at nulla sodales commodo eu a tellus. Etiam rhoncus dolor leo, a fermentum massa tincidunt ut. Phasellus porttitor sapien mi.\r\n\r\nSuspendisse ornare iaculis auctor. Nunc placerat pellentesque tortor eu vehicula. In non magna mollis, sodales metus id, rhoncus elit. Mauris vulputate, tellus in viverra condimentum, metus diam lobortis leo, eu viverra justo elit elementum augue. Suspendisse efficitur maximus tellus quis faucibus. Nam non nunc quis risus tempor dapibus.[/toggle][/accordian][/one_half][/fullwidth][fullwidth background_color=\"\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"0px\" padding_bottom=\"0px\" padding_left=\"0px\" padding_right=\"0px\" hundred_percent=\"yes\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][map address=\"Assagay Forest Lodge, Williams Road, Hillcrest, KwaZulu-Natal\" type=\"roadmap\" map_style=\"custom\" overlay_color=\"#6666a4\" infobox=\"custom\" infobox_background_color=\"rgba(102,102,164,.8)\" infobox_text_color=\"#ffffff\" infobox_content=\"\" icon=\"http://theme-fusion.com/avada_demos_xml/travel/wp-content/uploads/2015/01/map.png\" width=\"100%\" height=\"700px\" zoom=\"3\" scrollwheel=\"no\" scale=\"no\" zoom_pancontrol=\"no\" animation=\"yes\" popup=\"no\" class=\"\" id=\"\"][/map][/fullwidth][fullwidth background_color=\"\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"0px\" padding_bottom=\"-30px\" padding_left=\"0px\" padding_right=\"0px\" hundred_percent=\"yes\" equal_height_columns=\"yes\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][one_third last=\"no\" spacing=\"no\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"#6666a4\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"10%\" margin_top=\"\" margin_bottom=\"0px\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" class=\"\" id=\"\"][content_boxes layout=\"icon-with-title\" title_size=\"\" icon_circle=\"\" icon_size=\"\" icon_align=\"left\" columns=\"1\" margin_top=\"\" margin_bottom=\"0px\" class=\"\" id=\"\"][content_box title=\"Call Us\" icon=\"fa-phone\" backgroundcolor=\"\" iconcolor=\"#ffffff\" circlecolor=\"#6666a4\" circlebordercolor=\"#6666a4\" iconflip=\"\" iconrotate=\"\" iconspin=\"no\" image=\"\" image_width=\"35\" image_height=\"35\" link=\"\" linktext=\"\" linktarget=\"_self\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\"]         <span style=\"color: #ffffff;\">Please call one of our specialist or pop into one of our travel shops and meet with an advisor in person. Alternatively, email us any questions and we will reply as quickly as possible. We look forward to being a small part of your next big adventure.</span>[/content_box][/content_boxes][/one_third][one_third last=\"no\" spacing=\"no\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"#7272b2\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"10%\" margin_top=\"\" margin_bottom=\"0px\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" class=\"\" id=\"\"][content_boxes layout=\"icon-with-title\" title_size=\"\" icon_circle=\"\" icon_size=\"\" icon_align=\"left\" columns=\"1\" margin_top=\"\" margin_bottom=\"0px\" class=\"\" id=\"\"][content_box title=\"Meet Us\" icon=\"fa-comments\" backgroundcolor=\"\" iconcolor=\"#ffffff\" circlecolor=\"#7272b2\" circlebordercolor=\"#7272b2\" iconflip=\"\" iconrotate=\"\" iconspin=\"no\" image=\"\" image_width=\"35\" image_height=\"35\" link=\"\" linktext=\"\" linktarget=\"_self\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\"]        <span style=\"color: #ffffff;\">Please call one of our specialist or pop into one of our travel shops and meet with an advisor in person. Alternatively, email us any questions and we will reply as quickly as possible. We look forward to being a small part of your next big adventure.</span>[/content_box][/content_boxes][/one_third][one_third last=\"yes\" spacing=\"no\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"#6666a4\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"10%\" margin_top=\"\" margin_bottom=\"0px\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" class=\"\" id=\"\"][content_boxes layout=\"icon-with-title\" title_size=\"\" icon_circle=\"\" icon_size=\"\" icon_align=\"left\" columns=\"1\" margin_top=\"\" margin_bottom=\"0px\" class=\"\" id=\"\"][content_box title=\"Ask Us\" icon=\"fa-phone\" backgroundcolor=\"\" iconcolor=\"#ffffff\" circlecolor=\"#6666a4\" circlebordercolor=\"#6666a4\" iconflip=\"\" iconrotate=\"\" iconspin=\"no\" image=\"\" image_width=\"35\" image_height=\"35\" link=\"\" linktext=\"\" linktarget=\"_self\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\"]        <span style=\"color: #ffffff;\">Please call one of our specialist or pop into one of our travel shops and meet with an advisor in person. Alternatively, email us any questions and we will reply as quickly as possible. We look forward to being a small part of your next big adventure.</span>[/content_box][/content_boxes][/one_third][/fullwidth]', 'Make a reservation', '', 'inherit', 'open', 'open', '', '11-revision-v1', '', '', '2015-08-07 15:13:08', '2015-08-07 15:13:08', '', 11, 'http://localhost/assagaylodge/2015/08/07/11-revision-v1/', 0, 'revision', '', 0),
(835, 1, '2016-07-26 10:48:16', '2016-07-26 08:48:16', '[fullwidth background_color=\"\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"70px\" padding_bottom=\"75px\" padding_left=\"0px\" padding_right=\"0px\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][one_half last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][fusion_text]\n<h1>Contact Us</h1>\n<h2>Send us a message.</h2>\n[/fusion_text][fusion_text][contact-form-7 id=\"246\" title=\"Contact form 1\"][/fusion_text][/one_half][one_half last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][fusion_text]\n<h1>Where are we?</h1>\n<h2>4 Williams Road\nAssagay, Hillcrest\nKwaZulu Natal</h2>\n<h1>Contact</h1>\n<h2>0317656046 or 0317655961</h2>\n[/fusion_text][separator style_type=\"none\" top_margin=\"\" bottom_margin=\"20\" sep_color=\"\" border_size=\"\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"\" alignment=\"\" class=\"\" id=\"\"][accordian class=\"\" id=\"\"][toggle title=\"GPS Location\" open=\"no\"]\n\n<strong>GPS: Latitude (South) -29.771865, Longitude (East) 30.736892</strong>\n\n[/toggle][toggle title=\"Directions from King Shaka Airport / Durban\" open=\"no\"]\n\nFrom King Shaka Airport take the N2 South bound towards Durban, at the 3 level interchange be sure to take the N3 turn off towards Pietermaritzburg. Proceed through the Marionhill toll plaza and take the first off ramp marked Shongweni / Assagay / Hillcrest. Turn right towards Hillcrest into Kassier Road which will take you over the N3 and M13, keep on this road, pass the Hillcrest Private Hospital and Alverstone turn off. Remain on Kassier Road, for about 2-3km and turn into Assagay Road, which is just after Assagay Crescent.\n\nTake the left turn into Assagay Road. Head up the rise. Turn left into Castle Road, carry down the dip for about 500m and cross a small water-bridge. Turn first right into Lello Road, just after the bridge. Continue on Lello Road, the road dips and briefly climbs, the valley falling away to your right. Finally, turn left into Williams Road (it’s essentially the first left turn on Lello Road), Continue down Williams Road for about 800m. On your right you will come to the entrance of the farm called `Fourever` No 4 Williams Road. There’s a 1000 Hills Tourism Sign outside. A wooden fence and silver gate. Welcome to Assagay Forest Lodge.\n\n[/toggle][toggle title=\"Directions from Pietermaritzburg\" open=\"no\"]From Pietermaritzburg take the N3 towards Durban. After the Drummond turnoff the N3 makes a steep climb. Don\'t take the Alternative route but stay on the N3. Take the next off ramp marked Shongweni / Assagay / Hillcrest. Turn left towards Hillcrest into Kassier Road which will take you passed the Polo fields on your left and a Petrol Station on your right and over then over the M13, keep on this road, pass the Hillcrest Private Hospital and Alverstone turn off. Remain on Kassier Road, for about 2-3km and turn into Assagay Road, which is just after Assagay Crescent.\n\nTake the left turn into Assagay Road. Head up the rise. Turn left into Castle Road, carry down the dip for about 500m and cross a small water-bridge. Turn first right into Lello Road, just after the bridge. Continue on Lello Road, the road dips and briefly climbs, the valley falling away to your right. Finally, turn left into Williams Road (it’s essentially the first left turn on Lello Road), Continue down Williams Road for about 800m. On your right you will come to the entrance of the farm called `Fourever` No 4 Williams Road. There’s a 1000 Hills Tourism Sign outside. A wooden fence and silver gate. Welcome to Assagay Lodge.[/toggle][/accordian][/one_half][/fullwidth][fullwidth background_color=\"\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"0px\" padding_bottom=\"0px\" padding_left=\"0px\" padding_right=\"0px\" hundred_percent=\"yes\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][map address=\"Assagay Forest Lodge\" type=\"roadmap\" map_style=\"default\" overlay_color=\"#6666a4\" infobox=\"default\" infobox_background_color=\"rgba(102,102,164,.8)\" infobox_text_color=\"#ffffff\" infobox_content=\"\" icon=\"http://theme-fusion.com/avada_demos_xml/travel/wp-content/uploads/2015/01/map.png\" width=\"100%\" height=\"700px\" zoom=\"15\" scrollwheel=\"yes\" scale=\"no\" zoom_pancontrol=\"yes\" animation=\"no\" popup=\"no\" class=\"\" id=\"\"][/map][/fullwidth]', 'Contact & Directions', '', 'inherit', 'open', 'open', '', '11-autosave-v1', '', '', '2016-07-26 10:48:16', '2016-07-26 08:48:16', '', 11, 'http://localhost/assagaylodge/2015/08/07/11-autosave-v1/', 0, 'revision', '', 0),
(836, 1, '2015-08-07 15:24:55', '2015-08-07 15:24:55', '[fullwidth background_color=\"\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"70px\" padding_bottom=\"75px\" padding_left=\"0px\" padding_right=\"0px\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][one_half last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][fusion_text]\r\n<h3>Contact Us</h3>\r\nSend us a message and we will take the time to get to know you so we can help you find your amazing adventure.[/fusion_text][fusion_text][contact-form-7 id=\"246\" title=\"Contact form 1\"][/fusion_text][/one_half][one_half last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][fusion_text]\r\n<h3>FAQ</h3>\r\nStill not sure if we can be of help? Check through some frequently asked questions and then send us a message.[/fusion_text][separator style_type=\"none\" top_margin=\"\" bottom_margin=\"20\" sep_color=\"\" border_size=\"\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"\" alignment=\"\" class=\"\" id=\"\"][accordian class=\"\" id=\"\"][toggle title=\"Do you do weddings?\" open=\"no\"]Aliquam eu augue arcu. Vestibulum finibus eros id elit hendrerit laoreet. Sed fringilla pellentesque justo quis lobortis. Morbi maximus ante at nulla sodales commodo eu a tellus. Etiam rhoncus dolor leo, a fermentum massa tincidunt ut. Phasellus porttitor sapien mi.\r\n\r\nSuspendisse ornare iaculis auctor. Nunc placerat pellentesque tortor eu vehicula. In non magna mollis, sodales metus id, rhoncus elit. Mauris vulputate, tellus in viverra condimentum, metus diam lobortis leo, eu viverra justo elit elementum augue. Suspendisse efficitur maximus tellus quis faucibus. Nam non nunc quis risus tempor dapibus.[/toggle][toggle title=\"Must I pay in Advance?\" open=\"no\"]Aliquam eu augue arcu. Vestibulum finibus eros id elit hendrerit laoreet. Sed fringilla pellentesque justo quis lobortis. Morbi maximus ante at nulla sodales commodo eu a tellus. Etiam rhoncus dolor leo, a fermentum massa tincidunt ut. Phasellus porttitor sapien mi.\r\n\r\nSuspendisse ornare iaculis auctor. Nunc placerat pellentesque tortor eu vehicula. In non magna mollis, sodales metus id, rhoncus elit. Mauris vulputate, tellus in viverra condimentum, metus diam lobortis leo, eu viverra justo elit elementum augue. Suspendisse efficitur maximus tellus quis faucibus. Nam non nunc quis risus tempor dapibus.[/toggle][toggle title=\"Do you allow children to travel?\" open=\"no\"]Aliquam eu augue arcu. Vestibulum finibus eros id elit hendrerit laoreet. Sed fringilla pellentesque justo quis lobortis. Morbi maximus ante at nulla sodales commodo eu a tellus. Etiam rhoncus dolor leo, a fermentum massa tincidunt ut. Phasellus porttitor sapien mi.\r\n\r\nSuspendisse ornare iaculis auctor. Nunc placerat pellentesque tortor eu vehicula. In non magna mollis, sodales metus id, rhoncus elit. Mauris vulputate, tellus in viverra condimentum, metus diam lobortis leo, eu viverra justo elit elementum augue. Suspendisse efficitur maximus tellus quis faucibus. Nam non nunc quis risus tempor dapibus.[/toggle][toggle title=\"Do you have any special offers?\" open=\"no\"]Aliquam eu augue arcu. Vestibulum finibus eros id elit hendrerit laoreet. Sed fringilla pellentesque justo quis lobortis. Morbi maximus ante at nulla sodales commodo eu a tellus. Etiam rhoncus dolor leo, a fermentum massa tincidunt ut. Phasellus porttitor sapien mi.\r\n\r\nSuspendisse ornare iaculis auctor. Nunc placerat pellentesque tortor eu vehicula. In non magna mollis, sodales metus id, rhoncus elit. Mauris vulputate, tellus in viverra condimentum, metus diam lobortis leo, eu viverra justo elit elementum augue. Suspendisse efficitur maximus tellus quis faucibus. Nam non nunc quis risus tempor dapibus.[/toggle][/accordian][/one_half][/fullwidth][fullwidth background_color=\"\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"0px\" padding_bottom=\"0px\" padding_left=\"0px\" padding_right=\"0px\" hundred_percent=\"yes\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][map address=\"Assagay Forest Lodge\" type=\"roadmap\" map_style=\"custom\" overlay_color=\"#6666a4\" infobox=\"custom\" infobox_background_color=\"rgba(102,102,164,.8)\" infobox_text_color=\"#ffffff\" infobox_content=\"\" icon=\"http://theme-fusion.com/avada_demos_xml/travel/wp-content/uploads/2015/01/map.png\" width=\"100%\" height=\"700px\" zoom=\"3\" scrollwheel=\"no\" scale=\"no\" zoom_pancontrol=\"no\" animation=\"yes\" popup=\"no\" class=\"\" id=\"\"][/map][/fullwidth][fullwidth background_color=\"\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"0px\" padding_bottom=\"-30px\" padding_left=\"0px\" padding_right=\"0px\" hundred_percent=\"yes\" equal_height_columns=\"yes\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][one_third last=\"no\" spacing=\"no\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"#6666a4\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"10%\" margin_top=\"\" margin_bottom=\"0px\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" class=\"\" id=\"\"][content_boxes layout=\"icon-with-title\" title_size=\"\" icon_circle=\"\" icon_size=\"\" icon_align=\"left\" columns=\"1\" margin_top=\"\" margin_bottom=\"0px\" class=\"\" id=\"\"][content_box title=\"Call Us\" icon=\"fa-phone\" backgroundcolor=\"\" iconcolor=\"#ffffff\" circlecolor=\"#6666a4\" circlebordercolor=\"#6666a4\" iconflip=\"\" iconrotate=\"\" iconspin=\"no\" image=\"\" image_width=\"35\" image_height=\"35\" link=\"\" linktext=\"\" linktarget=\"_self\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\"]          <span style=\"color: #ffffff;\">Please call one of our specialist or pop into one of our travel shops and meet with an advisor in person. Alternatively, email us any questions and we will reply as quickly as possible. We look forward to being a small part of your next big adventure.</span>[/content_box][/content_boxes][/one_third][one_third last=\"no\" spacing=\"no\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"#7272b2\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"10%\" margin_top=\"\" margin_bottom=\"0px\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" class=\"\" id=\"\"][content_boxes layout=\"icon-with-title\" title_size=\"\" icon_circle=\"\" icon_size=\"\" icon_align=\"left\" columns=\"1\" margin_top=\"\" margin_bottom=\"0px\" class=\"\" id=\"\"][content_box title=\"Meet Us\" icon=\"fa-comments\" backgroundcolor=\"\" iconcolor=\"#ffffff\" circlecolor=\"#7272b2\" circlebordercolor=\"#7272b2\" iconflip=\"\" iconrotate=\"\" iconspin=\"no\" image=\"\" image_width=\"35\" image_height=\"35\" link=\"\" linktext=\"\" linktarget=\"_self\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\"]         <span style=\"color: #ffffff;\">Please call one of our specialist or pop into one of our travel shops and meet with an advisor in person. Alternatively, email us any questions and we will reply as quickly as possible. We look forward to being a small part of your next big adventure.</span>[/content_box][/content_boxes][/one_third][one_third last=\"yes\" spacing=\"no\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"#6666a4\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"10%\" margin_top=\"\" margin_bottom=\"0px\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" class=\"\" id=\"\"][content_boxes layout=\"icon-with-title\" title_size=\"\" icon_circle=\"\" icon_size=\"\" icon_align=\"left\" columns=\"1\" margin_top=\"\" margin_bottom=\"0px\" class=\"\" id=\"\"][content_box title=\"Ask Us\" icon=\"fa-phone\" backgroundcolor=\"\" iconcolor=\"#ffffff\" circlecolor=\"#6666a4\" circlebordercolor=\"#6666a4\" iconflip=\"\" iconrotate=\"\" iconspin=\"no\" image=\"\" image_width=\"35\" image_height=\"35\" link=\"\" linktext=\"\" linktarget=\"_self\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\"]         <span style=\"color: #ffffff;\">Please call one of our specialist or pop into one of our travel shops and meet with an advisor in person. Alternatively, email us any questions and we will reply as quickly as possible. We look forward to being a small part of your next big adventure.</span>[/content_box][/content_boxes][/one_third][/fullwidth]', 'Make a reservation', '', 'inherit', 'open', 'open', '', '11-revision-v1', '', '', '2015-08-07 15:24:55', '2015-08-07 15:24:55', '', 11, 'http://localhost/assagaylodge/2015/08/07/11-revision-v1/', 0, 'revision', '', 0),
(837, 1, '2015-08-07 15:28:34', '2015-08-07 15:28:34', '[fullwidth background_color=\"\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"70px\" padding_bottom=\"75px\" padding_left=\"0px\" padding_right=\"0px\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][one_half last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][fusion_text]\r\n<h3>Contact Us</h3>\r\nSend us a message and we will take the time to get to know you so we can help you find your amazing adventure.[/fusion_text][fusion_text][contact-form-7 id=\"246\" title=\"Contact form 1\"][/fusion_text][/one_half][one_half last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][fusion_text]\r\n<h3>FAQ</h3>\r\nStill not sure if we can be of help? Check through some frequently asked questions and then send us a message.[/fusion_text][separator style_type=\"none\" top_margin=\"\" bottom_margin=\"20\" sep_color=\"\" border_size=\"\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"\" alignment=\"\" class=\"\" id=\"\"][accordian class=\"\" id=\"\"][toggle title=\"Do you do weddings?\" open=\"no\"]Aliquam eu augue arcu. Vestibulum finibus eros id elit hendrerit laoreet. Sed fringilla pellentesque justo quis lobortis. Morbi maximus ante at nulla sodales commodo eu a tellus. Etiam rhoncus dolor leo, a fermentum massa tincidunt ut. Phasellus porttitor sapien mi.\r\n\r\nSuspendisse ornare iaculis auctor. Nunc placerat pellentesque tortor eu vehicula. In non magna mollis, sodales metus id, rhoncus elit. Mauris vulputate, tellus in viverra condimentum, metus diam lobortis leo, eu viverra justo elit elementum augue. Suspendisse efficitur maximus tellus quis faucibus. Nam non nunc quis risus tempor dapibus.[/toggle][toggle title=\"Must I pay in Advance?\" open=\"no\"]Aliquam eu augue arcu. Vestibulum finibus eros id elit hendrerit laoreet. Sed fringilla pellentesque justo quis lobortis. Morbi maximus ante at nulla sodales commodo eu a tellus. Etiam rhoncus dolor leo, a fermentum massa tincidunt ut. Phasellus porttitor sapien mi.\r\n\r\nSuspendisse ornare iaculis auctor. Nunc placerat pellentesque tortor eu vehicula. In non magna mollis, sodales metus id, rhoncus elit. Mauris vulputate, tellus in viverra condimentum, metus diam lobortis leo, eu viverra justo elit elementum augue. Suspendisse efficitur maximus tellus quis faucibus. Nam non nunc quis risus tempor dapibus.[/toggle][toggle title=\"Do you allow children to travel?\" open=\"no\"]Aliquam eu augue arcu. Vestibulum finibus eros id elit hendrerit laoreet. Sed fringilla pellentesque justo quis lobortis. Morbi maximus ante at nulla sodales commodo eu a tellus. Etiam rhoncus dolor leo, a fermentum massa tincidunt ut. Phasellus porttitor sapien mi.\r\n\r\nSuspendisse ornare iaculis auctor. Nunc placerat pellentesque tortor eu vehicula. In non magna mollis, sodales metus id, rhoncus elit. Mauris vulputate, tellus in viverra condimentum, metus diam lobortis leo, eu viverra justo elit elementum augue. Suspendisse efficitur maximus tellus quis faucibus. Nam non nunc quis risus tempor dapibus.[/toggle][toggle title=\"Do you have any special offers?\" open=\"no\"]Aliquam eu augue arcu. Vestibulum finibus eros id elit hendrerit laoreet. Sed fringilla pellentesque justo quis lobortis. Morbi maximus ante at nulla sodales commodo eu a tellus. Etiam rhoncus dolor leo, a fermentum massa tincidunt ut. Phasellus porttitor sapien mi.\r\n\r\nSuspendisse ornare iaculis auctor. Nunc placerat pellentesque tortor eu vehicula. In non magna mollis, sodales metus id, rhoncus elit. Mauris vulputate, tellus in viverra condimentum, metus diam lobortis leo, eu viverra justo elit elementum augue. Suspendisse efficitur maximus tellus quis faucibus. Nam non nunc quis risus tempor dapibus.[/toggle][/accordian][/one_half][/fullwidth][fullwidth background_color=\"\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"0px\" padding_bottom=\"0px\" padding_left=\"0px\" padding_right=\"0px\" hundred_percent=\"yes\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][map address=\"Assagay Forest Lodge\" type=\"roadmap\" map_style=\"custom\" overlay_color=\"#6666a4\" infobox=\"custom\" infobox_background_color=\"rgba(102,102,164,.8)\" infobox_text_color=\"#ffffff\" infobox_content=\"\" icon=\"http://theme-fusion.com/avada_demos_xml/travel/wp-content/uploads/2015/01/map.png\" width=\"100%\" height=\"700px\" zoom=\"13\" scrollwheel=\"yes\" scale=\"yes\" zoom_pancontrol=\"yes\" animation=\"yes\" popup=\"no\" class=\"\" id=\"\"][/map][/fullwidth][fullwidth background_color=\"\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"0px\" padding_bottom=\"-30px\" padding_left=\"0px\" padding_right=\"0px\" hundred_percent=\"yes\" equal_height_columns=\"yes\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][one_third last=\"no\" spacing=\"no\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"#6666a4\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"10%\" margin_top=\"\" margin_bottom=\"0px\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" class=\"\" id=\"\"][content_boxes layout=\"icon-with-title\" title_size=\"\" icon_circle=\"\" icon_size=\"\" icon_align=\"left\" columns=\"1\" margin_top=\"\" margin_bottom=\"0px\" class=\"\" id=\"\"][content_box title=\"Call Us\" icon=\"fa-phone\" backgroundcolor=\"\" iconcolor=\"#ffffff\" circlecolor=\"#6666a4\" circlebordercolor=\"#6666a4\" iconflip=\"\" iconrotate=\"\" iconspin=\"no\" image=\"\" image_width=\"35\" image_height=\"35\" link=\"\" linktext=\"\" linktarget=\"_self\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\"]           <span style=\"color: #ffffff;\">Please call one of our specialist or pop into one of our travel shops and meet with an advisor in person. Alternatively, email us any questions and we will reply as quickly as possible. We look forward to being a small part of your next big adventure.</span>[/content_box][/content_boxes][/one_third][one_third last=\"no\" spacing=\"no\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"#7272b2\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"10%\" margin_top=\"\" margin_bottom=\"0px\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" class=\"\" id=\"\"][content_boxes layout=\"icon-with-title\" title_size=\"\" icon_circle=\"\" icon_size=\"\" icon_align=\"left\" columns=\"1\" margin_top=\"\" margin_bottom=\"0px\" class=\"\" id=\"\"][content_box title=\"Meet Us\" icon=\"fa-comments\" backgroundcolor=\"\" iconcolor=\"#ffffff\" circlecolor=\"#7272b2\" circlebordercolor=\"#7272b2\" iconflip=\"\" iconrotate=\"\" iconspin=\"no\" image=\"\" image_width=\"35\" image_height=\"35\" link=\"\" linktext=\"\" linktarget=\"_self\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\"]          <span style=\"color: #ffffff;\">Please call one of our specialist or pop into one of our travel shops and meet with an advisor in person. Alternatively, email us any questions and we will reply as quickly as possible. We look forward to being a small part of your next big adventure.</span>[/content_box][/content_boxes][/one_third][one_third last=\"yes\" spacing=\"no\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"#6666a4\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"10%\" margin_top=\"\" margin_bottom=\"0px\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" class=\"\" id=\"\"][content_boxes layout=\"icon-with-title\" title_size=\"\" icon_circle=\"\" icon_size=\"\" icon_align=\"left\" columns=\"1\" margin_top=\"\" margin_bottom=\"0px\" class=\"\" id=\"\"][content_box title=\"Ask Us\" icon=\"fa-phone\" backgroundcolor=\"\" iconcolor=\"#ffffff\" circlecolor=\"#6666a4\" circlebordercolor=\"#6666a4\" iconflip=\"\" iconrotate=\"\" iconspin=\"no\" image=\"\" image_width=\"35\" image_height=\"35\" link=\"\" linktext=\"\" linktarget=\"_self\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\"]          <span style=\"color: #ffffff;\">Please call one of our specialist or pop into one of our travel shops and meet with an advisor in person. Alternatively, email us any questions and we will reply as quickly as possible. We look forward to being a small part of your next big adventure.</span>[/content_box][/content_boxes][/one_third][/fullwidth]', 'Make a reservation', '', 'inherit', 'open', 'open', '', '11-revision-v1', '', '', '2015-08-07 15:28:34', '2015-08-07 15:28:34', '', 11, 'http://localhost/assagaylodge/2015/08/07/11-revision-v1/', 0, 'revision', '', 0),
(838, 1, '2015-08-07 21:15:12', '2015-08-07 21:15:12', '', 'lodgelogoX2', '', 'inherit', 'open', 'open', '', 'lodgelogox2', '', '', '2015-08-07 21:15:12', '2015-08-07 21:15:12', '', 0, 'http://localhost/assagaylodge/wp-content/uploads/2015/08/lodgelogoX2.png', 0, 'attachment', 'image/png', 0),
(840, 1, '2015-08-16 08:51:48', '2015-08-16 08:51:48', '', '1000hills', '', 'inherit', 'open', 'open', '', '1000hills', '', '', '2015-08-16 08:51:48', '2015-08-16 08:51:48', '', 24, 'http://localhost/assagaylodge/wp-content/uploads/2015/01/1000hills.jpg', 0, 'attachment', 'image/jpeg', 0),
(841, 1, '2015-08-16 09:05:01', '2015-08-16 09:05:01', '', 'The Lodge', '', 'inherit', 'open', 'open', '', 'tha-lodge', '', '', '2015-09-04 15:49:14', '2015-09-04 13:49:14', '', 0, 'http://localhost/assagaylodge/wp-content/uploads/2015/08/Tha-Lodge.jpg', 0, 'attachment', 'image/jpeg', 0);
INSERT INTO `wp_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(842, 1, '2015-08-16 09:12:57', '2015-08-16 09:12:57', '[fullwidth background_color=\"\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"90px\" padding_bottom=\"0px\" padding_left=\"0px\" padding_right=\"0px\" hundred_percent=\"yes\" equal_height_columns=\"yes\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][one_half last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"http://localhost/assagaylodge/wp-content/uploads/2015/08/Tha-Lodge.jpg\" background_repeat=\"no-repeat\" background_position=\"center center\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" class=\"\" id=\"\"][/one_half][one_half last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"30px\" margin_top=\"\" margin_bottom=\"0px\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" class=\"special\" id=\"\"][fusion_text]\r\n<h1>WHO ARE WE ?</h1>\r\n[/fusion_text][separator style_type=\"single\" top_margin=\"0\" bottom_margin=\"30\" sep_color=\"#000000\" border_size=\"\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"170px\" alignment=\"left\" class=\"separator-left\" id=\"\"][fusion_text]\r\n<h3>Avada Destinations is an exclusive travel\r\nplatform, offering luxurious holidays\r\nat unbeatable prices.</h3>\r\n[/fusion_text][/one_half][/fullwidth][fullwidth background_color=\"\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"30px\" padding_bottom=\"60px\" padding_left=\"0px\" padding_right=\"0px\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][one_half last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][fusion_text]Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nam eu feugiat mi. Cras commodo fringilla lorem, eu maximus augue vestibulum a. Vivamus aliquet magna magna, a convallis tortor auctor finibus. Nullam fermentum, nulla non vehicula imperdiet, elit nulla gravida ante, finibus arcu lacus vulputate nisl.\r\n\r\nCurabitur ornare elit felis, ac sodales odio vehicula ut. Donec vehicula ipsum nibh, ut rutrum orci rutrum ac. Morbi at sem mauris.Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Aliquam tincidunt, felis vel euismod finibus.[/fusion_text][/one_half][one_half last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][fusion_text]Vestibulum posuere massa ut nulla tempus pharetra. Aenean eu mauris nec magna facilisis porttitor. In viverra urna sed lectus congue, a finibus nunc ornare. Aliquam non leo quis erat volutpat viverra ut nec eros. Phasellus aliquam laoreet lacus quis suscipit. Nunc eleifend eleifend turpis.\r\n\r\nNullam non dapibus lectus. Nulla facilisi. Etiam placerat erat eget tortor fringilla euismod. Aenean rhoncus turpis erat, et vulputate dui lobortis id. Suspendisse potenti. Nulla tincidunt est elementum.[/fusion_text][/one_half][/fullwidth][fullwidth background_color=\"#f0f0ed\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"60px\" padding_bottom=\"45px\" padding_left=\"0px\" padding_right=\"0px\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][fusion_text]\r\n<h1 style=\"text-align: center;\">WHERE NEXT?</h1>\r\n[/fusion_text][separator style_type=\"single\" top_margin=\"\" bottom_margin=\"40\" sep_color=\"#000000\" border_size=\"\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"170px\" alignment=\"\" class=\"\" id=\"\"][one_sixth last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][/one_sixth][two_third last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][fusion_text]\r\n<h3 style=\"text-align: center;\">Our team of experts offer mouth watering special offers. From adventurous elephant trekking to awe-inspiring beaches, our collection of destinations is irresistible.</h3>\r\n[/fusion_text][/two_third][one_sixth last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][/one_sixth][separator style_type=\"none\" top_margin=\"20\" bottom_margin=\"\" sep_color=\"\" border_size=\"\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"100%\" alignment=\"\" class=\"\" id=\"\"][recent_works layout=\"grid\" picture_size=\"auto\" boxed_text=\"boxed\" filters=\"no\" columns=\"3\" column_spacing=\"12\" cat_slug=\"adventure,beaches,gateways,spa,wedding\" exclude_cats=\"\" number_posts=\"6\" offset=\"\" excerpt_length=\"35\" strip_html=\"yes\" carousel_layout=\"title_on_rollover\" scroll_items=\"\" autoplay=\"no\" show_nav=\"yes\" mouse_scroll=\"no\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" class=\"\" id=\"\"][/recent_works][/fullwidth][fullwidth background_color=\"#ffffff\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"65px\" padding_bottom=\"65px\" padding_left=\"0px\" padding_right=\"0px\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][button link=\"/avada_demos/travel/our-destinations/\" color=\"default\" size=\"xlarge\" type=\"3d\" shape=\"round\" target=\"_self\" title=\"\" gradient_colors=\"#f0f0ed|#f0f0ed\" gradient_hover_colors=\"#6666a4|#6666a4\" accent_color=\"#ffffff\" accent_hover_color=\"#ffffff\" bevel_color=\"\" border_width=\"0px\" icon=\"\" icon_position=\"left\" icon_divider=\"no\" modal=\"\" animation_type=\"0\" animation_direction=\"left\" animation_speed=\"1\" alignment=\"center\" class=\"\" id=\"\"]View All Destinations[/button][/fullwidth][fullwidth background_color=\"#6666a4\" background_image=\"http://theme-fusion.com/avada_demos_xml/travel/wp-content/uploads/2015/04/home-parallax.jpg\" background_parallax=\"fixed\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"center center\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"yes\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"110px\" padding_bottom=\"100px\" padding_left=\"0px\" padding_right=\"0px\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][testimonials design=\"clean\" backgroundcolor=\"\" textcolor=\"\" random=\"\" class=\"\" id=\"\"][testimonial name=\"Pat Conroy\" avatar=\"image\" image=\"http://theme-fusion.com/avada_demos_xml/travel/wp-content/uploads/2015/04/testimonial1.jpg\" image_border_radius=\"50%\" company=\"\" link=\"http://www.google.com\" target=\"_self\"]“Once you travelled, the voyage never ends, but is played out over and over again in the quietest chambers. The mind can never break off from the journey.”[/testimonial][testimonial name=\"Mark Twain\" avatar=\"image\" image=\"http://theme-fusion.com/avada_demos_xml/travel/wp-content/uploads/2015/04/testimonial1.jpg\" image_border_radius=\"50%\" company=\"\" link=\"\" target=\"_self\"]“Twenty years from now you will be more disappointed by the things you didn’t do than by the ones you did do. So throw off the bowlines, sail away from the safe harbor. Catch the trade winds in your sails. Explore. Dream. Discover.”[/testimonial][/testimonials][/fullwidth][fullwidth background_color=\"\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"60px\" padding_bottom=\"35px\" padding_left=\"0px\" padding_right=\"0px\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][fusion_text]\r\n<h1 style=\"text-align: center;\">TRAVEL BLOG</h1>\r\n[/fusion_text][separator style_type=\"single\" top_margin=\"\" bottom_margin=\"20\" sep_color=\"#000000\" border_size=\"\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"170px\" alignment=\"\" class=\"\" id=\"\"][one_sixth last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][/one_sixth][two_third last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][fusion_text]\r\n<h3 style=\"text-align: center;\">When it comes to our advice we’re proud to say we’re different. We offer something a little more special.</h3>\r\n[/fusion_text][/two_third][one_sixth last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][/one_sixth][separator style_type=\"none\" top_margin=\"40\" bottom_margin=\"\" sep_color=\"\" border_size=\"\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"100%\" alignment=\"center\" class=\"\" id=\"\"][one_fifth last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][/one_fifth][three_fifth last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][blog number_posts=\"3\" offset=\"\" cat_slug=\"\" exclude_cats=\"\" title=\"yes\" title_link=\"yes\" thumbnail=\"yes\" excerpt=\"yes\" excerpt_length=\"25\" meta_all=\"no\" meta_author=\"no\" meta_categories=\"no\" meta_comments=\"no\" meta_date=\"no\" meta_link=\"no\" meta_tags=\"no\" paging=\"no\" scrolling=\"pagination\" strip_html=\"yes\" blog_grid_columns=\"2\" blog_grid_column_spacing=\"40\" layout=\"medium\" class=\"\" id=\"\"][/blog][/three_fifth][one_fifth last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][/one_fifth][/fullwidth]', 'Home', '', 'inherit', 'open', 'open', '', '7-revision-v1', '', '', '2015-08-16 09:12:57', '2015-08-16 09:12:57', '', 7, 'http://localhost/assagaylodge/7-revision-v1/', 0, 'revision', '', 0),
(843, 1, '2015-08-16 09:18:36', '2015-08-16 09:18:36', '[fullwidth background_color=\"\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"90px\" padding_bottom=\"0px\" padding_left=\"0px\" padding_right=\"0px\" hundred_percent=\"yes\" equal_height_columns=\"yes\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][one_half last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"http://localhost/assagaylodge/wp-content/uploads/2015/08/Tha-Lodge.jpg\" background_repeat=\"no-repeat\" background_position=\"center center\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" class=\"\" id=\"\"][/one_half][one_half last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"30px\" margin_top=\"\" margin_bottom=\"0px\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" class=\"special\" id=\"\"][fusion_text]\r\n<h1>WHO ARE WE ?</h1>\r\n[/fusion_text][separator style_type=\"single\" top_margin=\"0\" bottom_margin=\"30\" sep_color=\"#000000\" border_size=\"\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"170px\" alignment=\"left\" class=\"separator-left\" id=\"\"][fusion_text]\r\n<h3>Avada Destinations is an exclusive travel\r\nplatform, offering luxurious holidays\r\nat unbeatable prices.</h3>\r\n[/fusion_text][/one_half][/fullwidth][fullwidth background_color=\"\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"30px\" padding_bottom=\"60px\" padding_left=\"0px\" padding_right=\"0px\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][one_half last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][fusion_text]Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nam eu feugiat mi. Cras commodo fringilla lorem, eu maximus augue vestibulum a. Vivamus aliquet magna magna, a convallis tortor auctor finibus. Nullam fermentum, nulla non vehicula imperdiet, elit nulla gravida ante, finibus arcu lacus vulputate nisl.\r\n\r\nCurabitur ornare elit felis, ac sodales odio vehicula ut. Donec vehicula ipsum nibh, ut rutrum orci rutrum ac. Morbi at sem mauris.Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Aliquam tincidunt, felis vel euismod finibus.[/fusion_text][/one_half][one_half last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][fusion_text]Vestibulum posuere massa ut nulla tempus pharetra. Aenean eu mauris nec magna facilisis porttitor. In viverra urna sed lectus congue, a finibus nunc ornare. Aliquam non leo quis erat volutpat viverra ut nec eros. Phasellus aliquam laoreet lacus quis suscipit. Nunc eleifend eleifend turpis.\r\n\r\nNullam non dapibus lectus. Nulla facilisi. Etiam placerat erat eget tortor fringilla euismod. Aenean rhoncus turpis erat, et vulputate dui lobortis id. Suspendisse potenti. Nulla tincidunt est elementum.[/fusion_text][/one_half][/fullwidth][fullwidth background_color=\"#f0f0ed\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"60px\" padding_bottom=\"45px\" padding_left=\"0px\" padding_right=\"0px\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][fusion_text]\r\n<h1 style=\"text-align: center;\">WHERE NEXT?</h1>\r\n[/fusion_text][separator style_type=\"single\" top_margin=\"\" bottom_margin=\"40\" sep_color=\"#000000\" border_size=\"\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"170px\" alignment=\"\" class=\"\" id=\"\"][one_sixth last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][/one_sixth][two_third last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][fusion_text]\r\n<h3 style=\"text-align: center;\">Our team of experts offer mouth watering special offers. From adventurous elephant trekking to awe-inspiring beaches, our collection of destinations is irresistible.</h3>\r\n[/fusion_text][/two_third][one_sixth last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][/one_sixth][separator style_type=\"none\" top_margin=\"20\" bottom_margin=\"\" sep_color=\"\" border_size=\"\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"100%\" alignment=\"\" class=\"\" id=\"\"][recent_works layout=\"grid\" picture_size=\"auto\" boxed_text=\"boxed\" filters=\"no\" columns=\"3\" column_spacing=\"12\" cat_slug=\"adventure,beaches,gateways,spa,wedding\" exclude_cats=\"\" number_posts=\"6\" offset=\"\" excerpt_length=\"35\" strip_html=\"yes\" carousel_layout=\"title_on_rollover\" scroll_items=\"\" autoplay=\"no\" show_nav=\"yes\" mouse_scroll=\"no\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" class=\"\" id=\"\"][/recent_works][/fullwidth][fullwidth background_color=\"#ffffff\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"65px\" padding_bottom=\"65px\" padding_left=\"0px\" padding_right=\"0px\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][button link=\"/avada_demos/travel/our-destinations/\" color=\"default\" size=\"xlarge\" type=\"3d\" shape=\"round\" target=\"_self\" title=\"\" gradient_colors=\"#f0f0ed|#f0f0ed\" gradient_hover_colors=\"#6666a4|#6666a4\" accent_color=\"#ffffff\" accent_hover_color=\"#ffffff\" bevel_color=\"\" border_width=\"0px\" icon=\"\" icon_position=\"left\" icon_divider=\"no\" modal=\"\" animation_type=\"0\" animation_direction=\"left\" animation_speed=\"1\" alignment=\"center\" class=\"\" id=\"\"]View All Destinations[/button][/fullwidth][fullwidth background_color=\"#6666a4\" background_image=\"http://theme-fusion.com/avada_demos_xml/travel/wp-content/uploads/2015/04/home-parallax.jpg\" background_parallax=\"fixed\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"center center\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"yes\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"110px\" padding_bottom=\"100px\" padding_left=\"0px\" padding_right=\"0px\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][testimonials design=\"clean\" backgroundcolor=\"\" textcolor=\"\" random=\"\" class=\"\" id=\"\"][testimonial name=\"Pat Conroy\" avatar=\"image\" image=\"http://theme-fusion.com/avada_demos_xml/travel/wp-content/uploads/2015/04/testimonial1.jpg\" image_border_radius=\"50%\" company=\"\" link=\"http://www.google.com\" target=\"_self\"]“Once you travelled, the voyage never ends, but is played out over and over again in the quietest chambers. The mind can never break off from the journey.”[/testimonial][testimonial name=\"Mark Twain\" avatar=\"image\" image=\"http://theme-fusion.com/avada_demos_xml/travel/wp-content/uploads/2015/04/testimonial1.jpg\" image_border_radius=\"50%\" company=\"\" link=\"\" target=\"_self\"]“Twenty years from now you will be more disappointed by the things you didn’t do than by the ones you did do. So throw off the bowlines, sail away from the safe harbor. Catch the trade winds in your sails. Explore. Dream. Discover.”[/testimonial][/testimonials][/fullwidth][fullwidth background_color=\"\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"60px\" padding_bottom=\"35px\" padding_left=\"0px\" padding_right=\"0px\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][fusion_text]\r\n<h1 style=\"text-align: center;\">TRAVEL BLOG</h1>\r\n[/fusion_text][separator style_type=\"single\" top_margin=\"\" bottom_margin=\"20\" sep_color=\"#000000\" border_size=\"\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"170px\" alignment=\"\" class=\"\" id=\"\"][one_sixth last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][/one_sixth][two_third last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][fusion_text]\r\n<h3 style=\"text-align: center;\">When it comes to our advice we’re proud to say we’re different. We offer something a little more special.</h3>\r\n[/fusion_text][/two_third][one_sixth last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][/one_sixth][separator style_type=\"none\" top_margin=\"40\" bottom_margin=\"\" sep_color=\"\" border_size=\"\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"100%\" alignment=\"center\" class=\"\" id=\"\"][one_fifth last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][/one_fifth][three_fifth last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][blog number_posts=\"3\" offset=\"\" cat_slug=\"\" exclude_cats=\"\" title=\"yes\" title_link=\"yes\" thumbnail=\"yes\" excerpt=\"yes\" excerpt_length=\"25\" meta_all=\"no\" meta_author=\"no\" meta_categories=\"no\" meta_comments=\"no\" meta_date=\"no\" meta_link=\"no\" meta_tags=\"no\" paging=\"no\" scrolling=\"pagination\" strip_html=\"yes\" blog_grid_columns=\"2\" blog_grid_column_spacing=\"40\" layout=\"medium\" class=\"\" id=\"\"][/blog][/three_fifth][one_fifth last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][/one_fifth][/fullwidth][fullwidth background_color=\"\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding_top=\"20\" padding_bottom=\"20\" padding_left=\"0\" padding_right=\"0\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][/fullwidth][fullwidth background_color=\"\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding_top=\"20\" padding_bottom=\"20\" padding_left=\"0\" padding_right=\"0\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][/fullwidth]', 'Home', '', 'inherit', 'open', 'open', '', '7-revision-v1', '', '', '2015-08-16 09:18:36', '2015-08-16 09:18:36', '', 7, 'http://localhost/assagaylodge/7-revision-v1/', 0, 'revision', '', 0),
(844, 1, '2015-08-16 09:31:20', '2015-08-16 09:31:20', '', 'WeekendRoads', '', 'inherit', 'open', 'open', '', 'weekendroads', '', '', '2015-08-16 09:31:20', '2015-08-16 09:31:20', '', 0, 'http://localhost/assagaylodge/wp-content/uploads/2015/08/WeekendRoads.jpg', 0, 'attachment', 'image/jpeg', 0),
(845, 1, '2015-08-16 09:33:50', '2015-08-16 09:33:50', '[fullwidth background_color=\"\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"90px\" padding_bottom=\"0px\" padding_left=\"0px\" padding_right=\"0px\" hundred_percent=\"yes\" equal_height_columns=\"yes\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][one_half last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"http://localhost/assagaylodge/wp-content/uploads/2015/08/Tha-Lodge.jpg\" background_repeat=\"no-repeat\" background_position=\"center center\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" class=\"\" id=\"\"][/one_half][one_half last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"30px\" margin_top=\"\" margin_bottom=\"0px\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" class=\"special\" id=\"\"][fusion_text]\r\n<h1>WHO ARE WE ?</h1>\r\n[/fusion_text][separator style_type=\"single\" top_margin=\"0\" bottom_margin=\"30\" sep_color=\"#000000\" border_size=\"\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"170px\" alignment=\"left\" class=\"separator-left\" id=\"\"][fusion_text]\r\n<h3>Avada Destinations is an exclusive travel\r\nplatform, offering luxurious holidays\r\nat unbeatable prices.</h3>\r\n[/fusion_text][/one_half][/fullwidth][fullwidth background_color=\"\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"30px\" padding_bottom=\"60px\" padding_left=\"0px\" padding_right=\"0px\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][one_half last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][fusion_text]Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nam eu feugiat mi. Cras commodo fringilla lorem, eu maximus augue vestibulum a. Vivamus aliquet magna magna, a convallis tortor auctor finibus. Nullam fermentum, nulla non vehicula imperdiet, elit nulla gravida ante, finibus arcu lacus vulputate nisl.\r\n\r\nCurabitur ornare elit felis, ac sodales odio vehicula ut. Donec vehicula ipsum nibh, ut rutrum orci rutrum ac. Morbi at sem mauris.Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Aliquam tincidunt, felis vel euismod finibus.[/fusion_text][/one_half][one_half last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][fusion_text]Vestibulum posuere massa ut nulla tempus pharetra. Aenean eu mauris nec magna facilisis porttitor. In viverra urna sed lectus congue, a finibus nunc ornare. Aliquam non leo quis erat volutpat viverra ut nec eros. Phasellus aliquam laoreet lacus quis suscipit. Nunc eleifend eleifend turpis.\r\n\r\nNullam non dapibus lectus. Nulla facilisi. Etiam placerat erat eget tortor fringilla euismod. Aenean rhoncus turpis erat, et vulputate dui lobortis id. Suspendisse potenti. Nulla tincidunt est elementum.[/fusion_text][/one_half][/fullwidth][fullwidth background_color=\"#f0f0ed\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"60px\" padding_bottom=\"45px\" padding_left=\"0px\" padding_right=\"0px\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][fusion_text]\r\n<h1 style=\"text-align: center;\">WHERE NEXT?</h1>\r\n[/fusion_text][separator style_type=\"single\" top_margin=\"\" bottom_margin=\"40\" sep_color=\"#000000\" border_size=\"\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"170px\" alignment=\"\" class=\"\" id=\"\"][one_sixth last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][/one_sixth][two_third last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][fusion_text]\r\n<h3 style=\"text-align: center;\">Our team of experts offer mouth watering special offers. From adventurous elephant trekking to awe-inspiring beaches, our collection of destinations is irresistible.</h3>\r\n[/fusion_text][/two_third][one_sixth last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][/one_sixth][separator style_type=\"none\" top_margin=\"20\" bottom_margin=\"\" sep_color=\"\" border_size=\"\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"100%\" alignment=\"\" class=\"\" id=\"\"][recent_works layout=\"grid\" picture_size=\"auto\" boxed_text=\"boxed\" filters=\"no\" columns=\"3\" column_spacing=\"12\" cat_slug=\"adventure,beaches,gateways,spa,wedding\" exclude_cats=\"\" number_posts=\"6\" offset=\"\" excerpt_length=\"35\" strip_html=\"yes\" carousel_layout=\"title_on_rollover\" scroll_items=\"\" autoplay=\"no\" show_nav=\"yes\" mouse_scroll=\"no\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" class=\"\" id=\"\"][/recent_works][/fullwidth][fullwidth background_color=\"#ffffff\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"65px\" padding_bottom=\"65px\" padding_left=\"0px\" padding_right=\"0px\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][button link=\"/avada_demos/travel/our-destinations/\" color=\"default\" size=\"xlarge\" type=\"3d\" shape=\"round\" target=\"_self\" title=\"\" gradient_colors=\"#f0f0ed|#f0f0ed\" gradient_hover_colors=\"#6666a4|#6666a4\" accent_color=\"#ffffff\" accent_hover_color=\"#ffffff\" bevel_color=\"\" border_width=\"0px\" icon=\"\" icon_position=\"left\" icon_divider=\"no\" modal=\"\" animation_type=\"0\" animation_direction=\"left\" animation_speed=\"1\" alignment=\"center\" class=\"\" id=\"\"]View All Destinations[/button][/fullwidth][fullwidth background_color=\"#6666a4\" background_image=\"http://localhost/assagaylodge/wp-content/uploads/2015/08/WeekendRoads.jpg\" background_parallax=\"fixed\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"center center\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"yes\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"110px\" padding_bottom=\"100px\" padding_left=\"0px\" padding_right=\"0px\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][testimonials design=\"clean\" backgroundcolor=\"\" textcolor=\"\" random=\"\" class=\"\" id=\"\"][testimonial name=\"Pat Conroy\" avatar=\"image\" image=\"http://theme-fusion.com/avada_demos_xml/travel/wp-content/uploads/2015/04/testimonial1.jpg\" image_border_radius=\"50%\" company=\"\" link=\"http://www.google.com\" target=\"_self\"]“Once you travelled, the voyage never ends, but is played out over and over again in the quietest chambers. The mind can never break off from the journey.”[/testimonial][testimonial name=\"Mark Twain\" avatar=\"image\" image=\"http://theme-fusion.com/avada_demos_xml/travel/wp-content/uploads/2015/04/testimonial1.jpg\" image_border_radius=\"50%\" company=\"\" link=\"\" target=\"_self\"]“Twenty years from now you will be more disappointed by the things you didn’t do than by the ones you did do. So throw off the bowlines, sail away from the safe harbor. Catch the trade winds in your sails. Explore. Dream. Discover.”[/testimonial][/testimonials][/fullwidth][fullwidth background_color=\"\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"60px\" padding_bottom=\"35px\" padding_left=\"0px\" padding_right=\"0px\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][fusion_text]\r\n<h1 style=\"text-align: center;\">TRAVEL BLOG</h1>\r\n[/fusion_text][separator style_type=\"single\" top_margin=\"\" bottom_margin=\"20\" sep_color=\"#000000\" border_size=\"\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"170px\" alignment=\"\" class=\"\" id=\"\"][one_sixth last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][/one_sixth][two_third last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][fusion_text]\r\n<h3 style=\"text-align: center;\">When it comes to our advice we’re proud to say we’re different. We offer something a little more special.</h3>\r\n[/fusion_text][/two_third][one_sixth last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][/one_sixth][separator style_type=\"none\" top_margin=\"40\" bottom_margin=\"\" sep_color=\"\" border_size=\"\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"100%\" alignment=\"center\" class=\"\" id=\"\"][one_fifth last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][/one_fifth][three_fifth last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][blog number_posts=\"3\" offset=\"\" cat_slug=\"\" exclude_cats=\"\" title=\"yes\" title_link=\"yes\" thumbnail=\"yes\" excerpt=\"yes\" excerpt_length=\"25\" meta_all=\"no\" meta_author=\"no\" meta_categories=\"no\" meta_comments=\"no\" meta_date=\"no\" meta_link=\"no\" meta_tags=\"no\" paging=\"no\" scrolling=\"pagination\" strip_html=\"yes\" blog_grid_columns=\"2\" blog_grid_column_spacing=\"40\" layout=\"medium\" class=\"\" id=\"\"][/blog][/three_fifth][one_fifth last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][/one_fifth][/fullwidth][fullwidth background_color=\"\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding_top=\"20\" padding_bottom=\"20\" padding_left=\"0\" padding_right=\"0\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][/fullwidth][fullwidth background_color=\"\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding_top=\"20\" padding_bottom=\"20\" padding_left=\"0\" padding_right=\"0\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][/fullwidth]', 'Home', '', 'inherit', 'open', 'open', '', '7-revision-v1', '', '', '2015-08-16 09:33:50', '2015-08-16 09:33:50', '', 7, 'http://localhost/assagaylodge/7-revision-v1/', 0, 'revision', '', 0),
(846, 1, '2015-08-16 09:35:39', '2015-08-16 09:35:39', '', 'Dam', '', 'inherit', 'open', 'open', '', 'dam', '', '', '2015-08-16 09:35:39', '2015-08-16 09:35:39', '', 0, 'http://localhost/assagaylodge/wp-content/uploads/2015/08/Dam.jpg', 0, 'attachment', 'image/jpeg', 0);
INSERT INTO `wp_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(847, 1, '2015-08-16 09:36:50', '2015-08-16 09:36:50', '[fullwidth background_color=\"\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"90px\" padding_bottom=\"0px\" padding_left=\"0px\" padding_right=\"0px\" hundred_percent=\"yes\" equal_height_columns=\"yes\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][one_half last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"http://localhost/assagaylodge/wp-content/uploads/2015/08/Tha-Lodge.jpg\" background_repeat=\"no-repeat\" background_position=\"center center\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" class=\"\" id=\"\"][/one_half][one_half last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"30px\" margin_top=\"\" margin_bottom=\"0px\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" class=\"special\" id=\"\"][fusion_text]\r\n<h1>WHO ARE WE ?</h1>\r\n[/fusion_text][separator style_type=\"single\" top_margin=\"0\" bottom_margin=\"30\" sep_color=\"#000000\" border_size=\"\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"170px\" alignment=\"left\" class=\"separator-left\" id=\"\"][fusion_text]\r\n<h3>Avada Destinations is an exclusive travel\r\nplatform, offering luxurious holidays\r\nat unbeatable prices.</h3>\r\n[/fusion_text][/one_half][/fullwidth][fullwidth background_color=\"\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"30px\" padding_bottom=\"60px\" padding_left=\"0px\" padding_right=\"0px\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][one_half last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][fusion_text]Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nam eu feugiat mi. Cras commodo fringilla lorem, eu maximus augue vestibulum a. Vivamus aliquet magna magna, a convallis tortor auctor finibus. Nullam fermentum, nulla non vehicula imperdiet, elit nulla gravida ante, finibus arcu lacus vulputate nisl.\r\n\r\nCurabitur ornare elit felis, ac sodales odio vehicula ut. Donec vehicula ipsum nibh, ut rutrum orci rutrum ac. Morbi at sem mauris.Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Aliquam tincidunt, felis vel euismod finibus.[/fusion_text][/one_half][one_half last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][fusion_text]Vestibulum posuere massa ut nulla tempus pharetra. Aenean eu mauris nec magna facilisis porttitor. In viverra urna sed lectus congue, a finibus nunc ornare. Aliquam non leo quis erat volutpat viverra ut nec eros. Phasellus aliquam laoreet lacus quis suscipit. Nunc eleifend eleifend turpis.\r\n\r\nNullam non dapibus lectus. Nulla facilisi. Etiam placerat erat eget tortor fringilla euismod. Aenean rhoncus turpis erat, et vulputate dui lobortis id. Suspendisse potenti. Nulla tincidunt est elementum.[/fusion_text][/one_half][/fullwidth][fullwidth background_color=\"#f0f0ed\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"60px\" padding_bottom=\"45px\" padding_left=\"0px\" padding_right=\"0px\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][fusion_text]\r\n<h1 style=\"text-align: center;\">WHERE NEXT?</h1>\r\n[/fusion_text][separator style_type=\"single\" top_margin=\"\" bottom_margin=\"40\" sep_color=\"#000000\" border_size=\"\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"170px\" alignment=\"\" class=\"\" id=\"\"][one_sixth last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][/one_sixth][two_third last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][fusion_text]\r\n<h3 style=\"text-align: center;\">Our team of experts offer mouth watering special offers. From adventurous elephant trekking to awe-inspiring beaches, our collection of destinations is irresistible.</h3>\r\n[/fusion_text][/two_third][one_sixth last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][/one_sixth][separator style_type=\"none\" top_margin=\"20\" bottom_margin=\"\" sep_color=\"\" border_size=\"\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"100%\" alignment=\"\" class=\"\" id=\"\"][recent_works layout=\"grid\" picture_size=\"auto\" boxed_text=\"boxed\" filters=\"no\" columns=\"3\" column_spacing=\"12\" cat_slug=\"adventure,beaches,gateways,spa,wedding\" exclude_cats=\"\" number_posts=\"6\" offset=\"\" excerpt_length=\"35\" strip_html=\"yes\" carousel_layout=\"title_on_rollover\" scroll_items=\"\" autoplay=\"no\" show_nav=\"yes\" mouse_scroll=\"no\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" class=\"\" id=\"\"][/recent_works][/fullwidth][fullwidth background_color=\"#ffffff\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"65px\" padding_bottom=\"65px\" padding_left=\"0px\" padding_right=\"0px\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][button link=\"/avada_demos/travel/our-destinations/\" color=\"default\" size=\"xlarge\" type=\"3d\" shape=\"round\" target=\"_self\" title=\"\" gradient_colors=\"#f0f0ed|#f0f0ed\" gradient_hover_colors=\"#6666a4|#6666a4\" accent_color=\"#ffffff\" accent_hover_color=\"#ffffff\" bevel_color=\"\" border_width=\"0px\" icon=\"\" icon_position=\"left\" icon_divider=\"no\" modal=\"\" animation_type=\"0\" animation_direction=\"left\" animation_speed=\"1\" alignment=\"center\" class=\"\" id=\"\"]View All Destinations[/button][/fullwidth][fullwidth background_color=\"#6666a4\" background_image=\"http://localhost/assagaylodge/wp-content/uploads/2015/08/Dam.jpg\" background_parallax=\"fixed\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"center center\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"yes\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"110px\" padding_bottom=\"100px\" padding_left=\"0px\" padding_right=\"0px\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][testimonials design=\"clean\" backgroundcolor=\"\" textcolor=\"\" random=\"\" class=\"\" id=\"\"][testimonial name=\"Pat Conroy\" avatar=\"image\" image=\"http://theme-fusion.com/avada_demos_xml/travel/wp-content/uploads/2015/04/testimonial1.jpg\" image_border_radius=\"50%\" company=\"\" link=\"http://www.google.com\" target=\"_self\"]“Once you travelled, the voyage never ends, but is played out over and over again in the quietest chambers. The mind can never break off from the journey.”[/testimonial][testimonial name=\"Mark Twain\" avatar=\"image\" image=\"http://theme-fusion.com/avada_demos_xml/travel/wp-content/uploads/2015/04/testimonial1.jpg\" image_border_radius=\"50%\" company=\"\" link=\"\" target=\"_self\"]“Twenty years from now you will be more disappointed by the things you didn’t do than by the ones you did do. So throw off the bowlines, sail away from the safe harbor. Catch the trade winds in your sails. Explore. Dream. Discover.”[/testimonial][/testimonials][/fullwidth][fullwidth background_color=\"\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"60px\" padding_bottom=\"35px\" padding_left=\"0px\" padding_right=\"0px\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][fusion_text]\r\n<h1 style=\"text-align: center;\">TRAVEL BLOG</h1>\r\n[/fusion_text][separator style_type=\"single\" top_margin=\"\" bottom_margin=\"20\" sep_color=\"#000000\" border_size=\"\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"170px\" alignment=\"\" class=\"\" id=\"\"][one_sixth last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][/one_sixth][two_third last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][fusion_text]\r\n<h3 style=\"text-align: center;\">When it comes to our advice we’re proud to say we’re different. We offer something a little more special.</h3>\r\n[/fusion_text][/two_third][one_sixth last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][/one_sixth][separator style_type=\"none\" top_margin=\"40\" bottom_margin=\"\" sep_color=\"\" border_size=\"\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"100%\" alignment=\"center\" class=\"\" id=\"\"][one_fifth last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][/one_fifth][three_fifth last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][blog number_posts=\"3\" offset=\"\" cat_slug=\"\" exclude_cats=\"\" title=\"yes\" title_link=\"yes\" thumbnail=\"yes\" excerpt=\"yes\" excerpt_length=\"25\" meta_all=\"no\" meta_author=\"no\" meta_categories=\"no\" meta_comments=\"no\" meta_date=\"no\" meta_link=\"no\" meta_tags=\"no\" paging=\"no\" scrolling=\"pagination\" strip_html=\"yes\" blog_grid_columns=\"2\" blog_grid_column_spacing=\"40\" layout=\"medium\" class=\"\" id=\"\"][/blog][/three_fifth][one_fifth last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][/one_fifth][/fullwidth][fullwidth background_color=\"\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding_top=\"20\" padding_bottom=\"20\" padding_left=\"0\" padding_right=\"0\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][/fullwidth][fullwidth background_color=\"\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding_top=\"20\" padding_bottom=\"20\" padding_left=\"0\" padding_right=\"0\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][/fullwidth]', 'Home', '', 'inherit', 'open', 'open', '', '7-revision-v1', '', '', '2015-08-16 09:36:50', '2015-08-16 09:36:50', '', 7, 'http://localhost/assagaylodge/7-revision-v1/', 0, 'revision', '', 0),
(848, 1, '2015-08-16 10:29:32', '2015-08-16 10:29:32', '[fullwidth background_color=\"\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"90px\" padding_bottom=\"0px\" padding_left=\"0px\" padding_right=\"0px\" hundred_percent=\"yes\" equal_height_columns=\"yes\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][one_half last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"http://localhost/assagaylodge/wp-content/uploads/2015/08/Tha-Lodge.jpg\" background_repeat=\"no-repeat\" background_position=\"center center\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" class=\"\" id=\"\"][/one_half][one_half last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"30px\" margin_top=\"\" margin_bottom=\"0px\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" class=\"special\" id=\"\"][fusion_text]\r\n<h1>5 BEDROOM FAMILY LODGE</h1>\r\n[/fusion_text][separator style_type=\"single\" top_margin=\"0\" bottom_margin=\"30\" sep_color=\"#000000\" border_size=\"\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"170px\" alignment=\"left\" class=\"separator-left\" id=\"\"][fusion_text]\r\n<h3>Self-Catering, Service Options and or B&amp;B</h3>\r\n[/fusion_text][/one_half][/fullwidth][fullwidth background_color=\"\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"30px\" padding_bottom=\"60px\" padding_left=\"0px\" padding_right=\"0px\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][one_half last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][fusion_text]Assagay Forest Lodge is a 5 bedroom \'Family &amp; Friends\' Getaway. A homely \'down to earth\' country guest lodge, set on a farm surrounded by acres of beautiful hills, forests, &amp; dams in the Madwala Conservancy of Assagay, where horses still have the right of way on all roads. Our five bedrooms have a rustic charm offering the comforts of modern day life. Assagay Forest Lodge is owner managed, built in 2005 the lodge provides 5 cozy bedrooms with a large spacious and comfortable homely lounge, which leads onto a large deck area. Set on a 6 acre property in the Assagay Conservancy our lodge is nestled around trees, bushes, and beautiful gardens and a stream, allowing visitors to meander and relax. Guests seeking a quite, relaxing, homely experience will find our lodge the perfect choice away from home. There is a kitchen available should you wish to muster up a snack or quick meal, however breakfast is available on request.[/fusion_text][/one_half][one_half last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][fusion_text]The property boasts over 200 different species of birds and animals. Take a walk through our indigenous forests, stroll through our acres of indigenous gardens, or simply relax at any one of many perfect spots on the property. Assagay Lodge is situated on the 1000 Hills tourism route, on the edge of Hillcrest. The Lodge is a perfect place from which one can launch, to any one of many fantastic site seeing destinations and game reserves in KwaZulu Natal, i.e. the Majestic Drakensberg Mountain Range, Shongweni Nature Reserve, Nagle Dam, Durban &amp; Beach Front. We are also the doorstep of KZN’s major horse riding venues namely, the Shongweni Horse Riding Club &amp; the Summerveld Horse Riding Academy, makes Assagay Lodge a perfect home away from home for the equestrian lovers. We welcome bookings for small conferencing &amp; workshops. Please let us know if you would be interested in using our facilities and we would be happy to quote you or you organization. The peace &amp; tranquility will take you far away from the business of city life. Evenings are quiet and peaceful. This is a unique and memorable country experience. The lodge is well suited for groups traveling together and offers a niche for individuals too. Full business facilities are available.[/fusion_text][/one_half][/fullwidth][fullwidth background_color=\"#f0f0ed\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"60px\" padding_bottom=\"45px\" padding_left=\"0px\" padding_right=\"0px\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][fusion_text]\r\n<h1 style=\"text-align: center;\">WHERE NEXT?</h1>\r\n[/fusion_text][separator style_type=\"single\" top_margin=\"\" bottom_margin=\"40\" sep_color=\"#000000\" border_size=\"\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"170px\" alignment=\"\" class=\"\" id=\"\"][one_sixth last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][/one_sixth][two_third last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][fusion_text]\r\n<h3 style=\"text-align: center;\">Our team of experts offer mouth watering special offers. From adventurous elephant trekking to awe-inspiring beaches, our collection of destinations is irresistible.</h3>\r\n[/fusion_text][/two_third][one_sixth last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][/one_sixth][separator style_type=\"none\" top_margin=\"20\" bottom_margin=\"\" sep_color=\"\" border_size=\"\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"100%\" alignment=\"\" class=\"\" id=\"\"][recent_works layout=\"grid\" picture_size=\"auto\" boxed_text=\"boxed\" filters=\"no\" columns=\"3\" column_spacing=\"12\" cat_slug=\"adventure,beaches,gateways,spa,wedding\" exclude_cats=\"\" number_posts=\"6\" offset=\"\" excerpt_length=\"35\" strip_html=\"yes\" carousel_layout=\"title_on_rollover\" scroll_items=\"\" autoplay=\"no\" show_nav=\"yes\" mouse_scroll=\"no\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" class=\"\" id=\"\"][/recent_works][/fullwidth][fullwidth background_color=\"#ffffff\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"65px\" padding_bottom=\"65px\" padding_left=\"0px\" padding_right=\"0px\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][button link=\"/avada_demos/travel/our-destinations/\" color=\"default\" size=\"xlarge\" type=\"3d\" shape=\"round\" target=\"_self\" title=\"\" gradient_colors=\"#f0f0ed|#f0f0ed\" gradient_hover_colors=\"#6666a4|#6666a4\" accent_color=\"#ffffff\" accent_hover_color=\"#ffffff\" bevel_color=\"\" border_width=\"0px\" icon=\"\" icon_position=\"left\" icon_divider=\"no\" modal=\"\" animation_type=\"0\" animation_direction=\"left\" animation_speed=\"1\" alignment=\"center\" class=\"\" id=\"\"]View All Destinations[/button][/fullwidth][fullwidth background_color=\"#6666a4\" background_image=\"http://localhost/assagaylodge/wp-content/uploads/2015/08/Dam.jpg\" background_parallax=\"fixed\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"center center\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"yes\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"110px\" padding_bottom=\"100px\" padding_left=\"0px\" padding_right=\"0px\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][testimonials design=\"clean\" backgroundcolor=\"\" textcolor=\"\" random=\"\" class=\"\" id=\"\"][testimonial name=\"Pat Conroy\" avatar=\"image\" image=\"http://theme-fusion.com/avada_demos_xml/travel/wp-content/uploads/2015/04/testimonial1.jpg\" image_border_radius=\"50%\" company=\"\" link=\"http://www.google.com\" target=\"_self\"]“Once you travelled, the voyage never ends, but is played out over and over again in the quietest chambers. The mind can never break off from the journey.”[/testimonial][testimonial name=\"Mark Twain\" avatar=\"image\" image=\"http://theme-fusion.com/avada_demos_xml/travel/wp-content/uploads/2015/04/testimonial1.jpg\" image_border_radius=\"50%\" company=\"\" link=\"\" target=\"_self\"]“Twenty years from now you will be more disappointed by the things you didn’t do than by the ones you did do. So throw off the bowlines, sail away from the safe harbor. Catch the trade winds in your sails. Explore. Dream. Discover.”[/testimonial][/testimonials][/fullwidth][fullwidth background_color=\"\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"60px\" padding_bottom=\"35px\" padding_left=\"0px\" padding_right=\"0px\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][fusion_text]\r\n<h1 style=\"text-align: center;\">TRAVEL BLOG</h1>\r\n[/fusion_text][separator style_type=\"single\" top_margin=\"\" bottom_margin=\"20\" sep_color=\"#000000\" border_size=\"\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"170px\" alignment=\"\" class=\"\" id=\"\"][one_sixth last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][/one_sixth][two_third last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][fusion_text]\r\n<h3 style=\"text-align: center;\">When it comes to our advice we’re proud to say we’re different. We offer something a little more special.</h3>\r\n[/fusion_text][/two_third][one_sixth last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][/one_sixth][separator style_type=\"none\" top_margin=\"40\" bottom_margin=\"\" sep_color=\"\" border_size=\"\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"100%\" alignment=\"center\" class=\"\" id=\"\"][one_fifth last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][/one_fifth][three_fifth last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][blog number_posts=\"3\" offset=\"\" cat_slug=\"\" exclude_cats=\"\" title=\"yes\" title_link=\"yes\" thumbnail=\"yes\" excerpt=\"yes\" excerpt_length=\"25\" meta_all=\"no\" meta_author=\"no\" meta_categories=\"no\" meta_comments=\"no\" meta_date=\"no\" meta_link=\"no\" meta_tags=\"no\" paging=\"no\" scrolling=\"pagination\" strip_html=\"yes\" blog_grid_columns=\"2\" blog_grid_column_spacing=\"40\" layout=\"medium\" class=\"\" id=\"\"][/blog][/three_fifth][one_fifth last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][/one_fifth][/fullwidth][fullwidth background_color=\"\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding_top=\"20\" padding_bottom=\"20\" padding_left=\"0\" padding_right=\"0\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][/fullwidth][fullwidth background_color=\"\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding_top=\"20\" padding_bottom=\"20\" padding_left=\"0\" padding_right=\"0\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][/fullwidth]', 'Home', '', 'inherit', 'open', 'open', '', '7-revision-v1', '', '', '2015-08-16 10:29:32', '2015-08-16 10:29:32', '', 7, 'http://localhost/assagaylodge/7-revision-v1/', 0, 'revision', '', 0);
INSERT INTO `wp_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(849, 1, '2015-08-16 13:57:31', '2015-08-16 13:57:31', '[fullwidth background_color=\"\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"90px\" padding_bottom=\"0px\" padding_left=\"0px\" padding_right=\"0px\" hundred_percent=\"yes\" equal_height_columns=\"yes\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][one_half last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"http://localhost/assagaylodge/wp-content/uploads/2015/01/1000hills.jpg\" background_repeat=\"no-repeat\" background_position=\"center center\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" class=\"\" id=\"\"][/one_half][one_half last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"30px\" margin_top=\"\" margin_bottom=\"0px\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" class=\"special\" id=\"\"][fusion_text]\r\n<h1>5 BEDROOM FAMILY LODGE</h1>\r\n[/fusion_text][separator style_type=\"single\" top_margin=\"0\" bottom_margin=\"30\" sep_color=\"#000000\" border_size=\"\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"170px\" alignment=\"left\" class=\"separator-left\" id=\"\"][fusion_text]\r\n<h3>Self-Catering, Service Options and or B&amp;B</h3>\r\n[/fusion_text][/one_half][/fullwidth][fullwidth background_color=\"\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"30px\" padding_bottom=\"60px\" padding_left=\"0px\" padding_right=\"0px\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][one_half last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][fusion_text]Assagay Forest Lodge is a 5 bedroom \'Family &amp; Friends\' Getaway. A homely \'down to earth\' country guest lodge, set on a farm surrounded by acres of beautiful hills, forests, &amp; dams in the Madwala Conservancy of Assagay, where horses still have the right of way on all roads. Our five bedrooms have a rustic charm offering the comforts of modern day life. Assagay Forest Lodge is owner managed, built in 2005 the lodge provides 5 cozy bedrooms with a large spacious and comfortable homely lounge, which leads onto a large deck area. Set on a 6 acre property in the Assagay Conservancy our lodge is nestled around trees, bushes, and beautiful gardens and a stream, allowing visitors to meander and relax. Guests seeking a quite, relaxing, homely experience will find our lodge the perfect choice away from home. There is a kitchen available should you wish to muster up a snack or quick meal, however breakfast is available on request.[/fusion_text][/one_half][one_half last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][fusion_text]The property boasts over 200 different species of birds and animals. Take a walk through our indigenous forests, stroll through our acres of indigenous gardens, or simply relax at any one of many perfect spots on the property. Assagay Lodge is situated on the 1000 Hills tourism route, on the edge of Hillcrest. The Lodge is a perfect place from which one can launch, to any one of many fantastic site seeing destinations and game reserves in KwaZulu Natal, i.e. the Majestic Drakensberg Mountain Range, Shongweni Nature Reserve, Nagle Dam, Durban &amp; Beach Front. We are also the doorstep of KZN’s major horse riding venues namely, the Shongweni Horse Riding Club &amp; the Summerveld Horse Riding Academy, makes Assagay Lodge a perfect home away from home for the equestrian lovers. We welcome bookings for small conferencing &amp; workshops. Please let us know if you would be interested in using our facilities and we would be happy to quote you or you organization. The peace &amp; tranquility will take you far away from the business of city life. Evenings are quiet and peaceful. This is a unique and memorable country experience. The lodge is well suited for groups traveling together and offers a niche for individuals too. Full business facilities are available.[/fusion_text][/one_half][/fullwidth][fullwidth background_color=\"#f0f0ed\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"60px\" padding_bottom=\"45px\" padding_left=\"0px\" padding_right=\"0px\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][fusion_text]\r\n<h1 style=\"text-align: center;\">WHERE NEXT?</h1>\r\n[/fusion_text][separator style_type=\"single\" top_margin=\"\" bottom_margin=\"40\" sep_color=\"#000000\" border_size=\"\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"170px\" alignment=\"\" class=\"\" id=\"\"][one_sixth last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][/one_sixth][two_third last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][fusion_text]\r\n<h3 style=\"text-align: center;\">Our team of experts offer mouth watering special offers. From adventurous elephant trekking to awe-inspiring beaches, our collection of destinations is irresistible.</h3>\r\n[/fusion_text][/two_third][one_sixth last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][/one_sixth][separator style_type=\"none\" top_margin=\"20\" bottom_margin=\"\" sep_color=\"\" border_size=\"\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"100%\" alignment=\"\" class=\"\" id=\"\"][recent_works layout=\"grid\" picture_size=\"auto\" boxed_text=\"boxed\" filters=\"no\" columns=\"3\" column_spacing=\"12\" cat_slug=\"adventure,beaches,gateways,spa,wedding\" exclude_cats=\"\" number_posts=\"6\" offset=\"\" excerpt_length=\"35\" strip_html=\"yes\" carousel_layout=\"title_on_rollover\" scroll_items=\"\" autoplay=\"no\" show_nav=\"yes\" mouse_scroll=\"no\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" class=\"\" id=\"\"][/recent_works][/fullwidth][fullwidth background_color=\"#ffffff\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"65px\" padding_bottom=\"65px\" padding_left=\"0px\" padding_right=\"0px\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][button link=\"/avada_demos/travel/our-destinations/\" color=\"default\" size=\"xlarge\" type=\"3d\" shape=\"round\" target=\"_self\" title=\"\" gradient_colors=\"#f0f0ed|#f0f0ed\" gradient_hover_colors=\"#6666a4|#6666a4\" accent_color=\"#ffffff\" accent_hover_color=\"#ffffff\" bevel_color=\"\" border_width=\"0px\" icon=\"\" icon_position=\"left\" icon_divider=\"no\" modal=\"\" animation_type=\"0\" animation_direction=\"left\" animation_speed=\"1\" alignment=\"center\" class=\"\" id=\"\"]View All Destinations[/button][/fullwidth][fullwidth background_color=\"#6666a4\" background_image=\"http://localhost/assagaylodge/wp-content/uploads/2015/08/Dam.jpg\" background_parallax=\"fixed\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"center center\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"yes\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"110px\" padding_bottom=\"100px\" padding_left=\"0px\" padding_right=\"0px\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][testimonials design=\"clean\" backgroundcolor=\"\" textcolor=\"\" random=\"\" class=\"\" id=\"\"][testimonial name=\"Pat Conroy\" avatar=\"image\" image=\"http://theme-fusion.com/avada_demos_xml/travel/wp-content/uploads/2015/04/testimonial1.jpg\" image_border_radius=\"50%\" company=\"\" link=\"http://www.google.com\" target=\"_self\"]“Once you travelled, the voyage never ends, but is played out over and over again in the quietest chambers. The mind can never break off from the journey.”[/testimonial][testimonial name=\"Mark Twain\" avatar=\"image\" image=\"http://theme-fusion.com/avada_demos_xml/travel/wp-content/uploads/2015/04/testimonial1.jpg\" image_border_radius=\"50%\" company=\"\" link=\"\" target=\"_self\"]“Twenty years from now you will be more disappointed by the things you didn’t do than by the ones you did do. So throw off the bowlines, sail away from the safe harbor. Catch the trade winds in your sails. Explore. Dream. Discover.”[/testimonial][/testimonials][/fullwidth][fullwidth background_color=\"\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"60px\" padding_bottom=\"35px\" padding_left=\"0px\" padding_right=\"0px\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][fusion_text]\r\n<h1 style=\"text-align: center;\">TRAVEL BLOG</h1>\r\n[/fusion_text][separator style_type=\"single\" top_margin=\"\" bottom_margin=\"20\" sep_color=\"#000000\" border_size=\"\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"170px\" alignment=\"\" class=\"\" id=\"\"][one_sixth last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][/one_sixth][two_third last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][fusion_text]\r\n<h3 style=\"text-align: center;\">When it comes to our advice we’re proud to say we’re different. We offer something a little more special.</h3>\r\n[/fusion_text][/two_third][one_sixth last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][/one_sixth][separator style_type=\"none\" top_margin=\"40\" bottom_margin=\"\" sep_color=\"\" border_size=\"\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"100%\" alignment=\"center\" class=\"\" id=\"\"][one_fifth last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][/one_fifth][three_fifth last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][blog number_posts=\"3\" offset=\"\" cat_slug=\"\" exclude_cats=\"\" title=\"yes\" title_link=\"yes\" thumbnail=\"yes\" excerpt=\"yes\" excerpt_length=\"25\" meta_all=\"no\" meta_author=\"no\" meta_categories=\"no\" meta_comments=\"no\" meta_date=\"no\" meta_link=\"no\" meta_tags=\"no\" paging=\"no\" scrolling=\"pagination\" strip_html=\"yes\" blog_grid_columns=\"2\" blog_grid_column_spacing=\"40\" layout=\"medium\" class=\"\" id=\"\"][/blog][/three_fifth][one_fifth last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][/one_fifth][/fullwidth][fullwidth background_color=\"\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding_top=\"20\" padding_bottom=\"20\" padding_left=\"0\" padding_right=\"0\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][/fullwidth][fullwidth background_color=\"\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding_top=\"20\" padding_bottom=\"20\" padding_left=\"0\" padding_right=\"0\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][/fullwidth]', 'Home', '', 'inherit', 'open', 'open', '', '7-revision-v1', '', '', '2015-08-16 13:57:31', '2015-08-16 13:57:31', '', 7, 'http://localhost/assagaylodge/7-revision-v1/', 0, 'revision', '', 0),
(851, 1, '2015-09-28 13:45:05', '2015-09-28 11:45:05', '[fusion_builder_container background_color=\"\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding_top=\"20\" padding_bottom=\"20\" padding_left=\"\" padding_right=\"\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][fusion_builder_row][fusion_builder_column type=\"1_1\" background_position=\"left top\" background_color=\"\" border_size=\"\" border_color=\"\" border_style=\"solid\" spacing=\"yes\" background_image=\"\" background_repeat=\"no-repeat\" padding=\"\" margin_top=\"0px\" margin_bottom=\"0px\" class=\"\" id=\"\" animation_type=\"\" animation_speed=\"0.3\" animation_direction=\"left\" hide_on_mobile=\"no\" center_content=\"no\" min_height=\"none\"][fusion_title size=\"1\" content_align=\"right\" style_type=\"default\" sep_color=\"\" margin_top=\"\" margin_bottom=\"\" class=\"\" id=\"\"]Send Us Your Booking Enquiry[/fusion_title][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container background_color=\"\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding_top=\"20\" padding_bottom=\"20\" padding_left=\"\" padding_right=\"\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][fusion_builder_row][fusion_builder_column type=\"1_6\" last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][/fusion_builder_column][fusion_builder_column type=\"2_3\" last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][fusion_text][contact-form-7 id=\"1276\" title=\"Lodge Enquiry\"][/fusion_text][/fusion_builder_column][fusion_builder_column type=\"1_6\" last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container]', 'Booking Form', '', 'draft', 'open', 'open', '', 'booking-form', '', '', '2019-11-13 14:13:46', '2019-11-13 12:13:46', '', 0, 'http://localhost/assagaylodge/?page_id=851', 0, 'page', '', 0),
(852, 1, '2015-08-16 14:13:18', '2015-08-16 14:13:18', 'This is a Sample Resource.', 'Sample Resource One', '', 'private', 'open', 'open', '', 'sample-resource-one', '', '', '2015-08-16 14:13:18', '2015-08-16 14:13:18', '', 0, 'http://localhost/assagaylodge/sample-resource-one/', 0, 'easy-rooms', '', 0),
(853, 1, '2015-08-16 14:13:19', '2015-08-16 14:13:19', 'This is a Sample Resource.', 'Sample Resource Two', '', 'private', 'open', 'open', '', 'sample-resource-two', '', '', '2015-08-16 14:13:19', '2015-08-16 14:13:19', '', 0, 'http://localhost/assagaylodge/sample-resource-two/', 0, 'easy-rooms', '', 0),
(854, 1, '2015-08-16 14:20:29', '2015-08-16 14:20:29', '', 'Accommodation', '', 'publish', 'closed', 'closed', '', 'accommodation', '', '', '2015-09-28 14:36:39', '2015-09-28 12:36:39', '', 0, 'http://localhost/assagaylodge/easy-rooms/accommodation/', 0, 'easy-rooms', '', 0),
(855, 1, '2015-08-16 14:37:53', '2015-08-16 12:37:53', '[fusion_builder_container background_color=\"\" background_image=\"http://msla.co.za/lodge/wp-content/uploads/2015/01/about-parallax11.jpg\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"center center\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"20\" padding_bottom=\"20\" padding_left=\"0\" padding_right=\"0\" hundred_percent=\"yes\" equal_height_columns=\"yes\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][fusion_builder_row][fusion_builder_column type=\"1_6\" last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][/fusion_builder_column][fusion_builder_column type=\"2_3\" last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][fusion_text][easy_form booknow style=\"none\" submit=\"Reservation successfully sent\" subsubmit=\"Please continue.\" credit=\"Reservation complete\" subcredit=\"You\'ll receive an email with the reservations details\" resourcename=\"Room\" pers=\"1\" resource=\"854\"[/fusion_text][/fusion_builder_column][fusion_builder_column type=\"1_6\" last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container]', 'Book Now', '', 'draft', 'closed', 'closed', '', 'book-now', '', '', '2019-11-13 14:13:46', '2019-11-13 12:13:46', '', 0, 'http://localhost/assagaylodge/?page_id=855', 0, 'page', '', 0),
(856, 1, '2015-08-16 14:37:53', '2015-08-16 14:37:53', '[modal_text_link name=\"Book Now\" class=\"\" id=\"\"][easy_form booknow style=\"none\" submit=\"Reservation successfully sent\" subsubmit=\"Please continue.\" credit=\"Reservation complete\" subcredit=\"You\'ll receive an email with the reservations details\" resourcename=\"Room\" price=\"1\" pers=\"1\" resource=\"854\"][/modal_text_link]\r\n\r\n[modal name=\"Book Now\" title=\"Book Now\" size=\"large\" background=\"\" border_color=\"\" show_footer=\"yes\" class=\"\" id=\"\"][easy_form booknow style=\"none\" submit=\"Reservation successfully sent\" subsubmit=\"Please continue.\" credit=\"Reservation complete\" subcredit=\"You\'ll receive an email with the reservations details\" resourcename=\"Room\" price=\"1\" pers=\"1\" resource=\"854\"][/modal]\r\n\r\n&nbsp;', 'Book Now', '', 'inherit', 'open', 'open', '', '855-revision-v1', '', '', '2015-08-16 14:37:53', '2015-08-16 14:37:53', '', 855, 'http://localhost/assagaylodge/855-revision-v1/', 0, 'revision', '', 0),
(857, 1, '2015-08-16 20:56:37', '2015-08-16 20:56:37', '[fullwidth background_color=\"\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"70px\" padding_bottom=\"75px\" padding_left=\"0px\" padding_right=\"0px\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][one_half last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][fusion_text]\r\n<h3>Contact Us</h3>\r\nSend us a message and we will take the time to get to know you so we can help you find your amazing adventure.[/fusion_text][fusion_text][contact-form-7 id=\"246\" title=\"Contact form 1\"][/fusion_text][/one_half][one_half last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][fusion_text]\r\n<h3>FAQ</h3>\r\nStill not sure if we can be of help? Check through some frequently asked questions and then send us a message.[/fusion_text][separator style_type=\"none\" top_margin=\"\" bottom_margin=\"20\" sep_color=\"\" border_size=\"\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"\" alignment=\"\" class=\"\" id=\"\"][accordian class=\"\" id=\"\"][toggle title=\"GPS Location\" open=\"no\"]Aliquam eu augue arcu. Vestibulum finibus eros id elit hendrerit laoreet. Sed fringilla pellentesque justo quis lobortis. Morbi maximus ante at nulla sodales commodo eu a tellus. Etiam rhoncus dolor leo, a fermentum massa tincidunt ut. Phasellus porttitor sapien mi.\r\n\r\nSuspendisse ornare iaculis auctor. Nunc placerat pellentesque tortor eu vehicula. In non magna mollis, sodales metus id, rhoncus elit. Mauris vulputate, tellus in viverra condimentum, metus diam lobortis leo, eu viverra justo elit elementum augue. Suspendisse efficitur maximus tellus quis faucibus. Nam non nunc quis risus tempor dapibus.[/toggle][toggle title=\"Directions\" open=\"no\"]Aliquam eu augue arcu. Vestibulum finibus eros id elit hendrerit laoreet. Sed fringilla pellentesque justo quis lobortis. Morbi maximus ante at nulla sodales commodo eu a tellus. Etiam rhoncus dolor leo, a fermentum massa tincidunt ut. Phasellus porttitor sapien mi.\r\n\r\nSuspendisse ornare iaculis auctor. Nunc placerat pellentesque tortor eu vehicula. In non magna mollis, sodales metus id, rhoncus elit. Mauris vulputate, tellus in viverra condimentum, metus diam lobortis leo, eu viverra justo elit elementum augue. Suspendisse efficitur maximus tellus quis faucibus. Nam non nunc quis risus tempor dapibus.[/toggle][toggle title=\"Do you allow children to travel?\" open=\"no\"]Aliquam eu augue arcu. Vestibulum finibus eros id elit hendrerit laoreet. Sed fringilla pellentesque justo quis lobortis. Morbi maximus ante at nulla sodales commodo eu a tellus. Etiam rhoncus dolor leo, a fermentum massa tincidunt ut. Phasellus porttitor sapien mi.\r\n\r\nSuspendisse ornare iaculis auctor. Nunc placerat pellentesque tortor eu vehicula. In non magna mollis, sodales metus id, rhoncus elit. Mauris vulputate, tellus in viverra condimentum, metus diam lobortis leo, eu viverra justo elit elementum augue. Suspendisse efficitur maximus tellus quis faucibus. Nam non nunc quis risus tempor dapibus.[/toggle][toggle title=\"Special Offers?\" open=\"no\"]Aliquam eu augue arcu. Vestibulum finibus eros id elit hendrerit laoreet. Sed fringilla pellentesque justo quis lobortis. Morbi maximus ante at nulla sodales commodo eu a tellus. Etiam rhoncus dolor leo, a fermentum massa tincidunt ut. Phasellus porttitor sapien mi.\r\n\r\nSuspendisse ornare iaculis auctor. Nunc placerat pellentesque tortor eu vehicula. In non magna mollis, sodales metus id, rhoncus elit. Mauris vulputate, tellus in viverra condimentum, metus diam lobortis leo, eu viverra justo elit elementum augue. Suspendisse efficitur maximus tellus quis faucibus. Nam non nunc quis risus tempor dapibus.[/toggle][/accordian][/one_half][/fullwidth][fullwidth background_color=\"\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"0px\" padding_bottom=\"0px\" padding_left=\"0px\" padding_right=\"0px\" hundred_percent=\"yes\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][map address=\"Assagay Forest Lodge\" type=\"roadmap\" map_style=\"custom\" overlay_color=\"#6666a4\" infobox=\"custom\" infobox_background_color=\"rgba(102,102,164,.8)\" infobox_text_color=\"#ffffff\" infobox_content=\"\" icon=\"http://theme-fusion.com/avada_demos_xml/travel/wp-content/uploads/2015/01/map.png\" width=\"100%\" height=\"700px\" zoom=\"13\" scrollwheel=\"yes\" scale=\"yes\" zoom_pancontrol=\"yes\" animation=\"yes\" popup=\"no\" class=\"\" id=\"\"][/map][/fullwidth][fullwidth background_color=\"\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"0px\" padding_bottom=\"-30px\" padding_left=\"0px\" padding_right=\"0px\" hundred_percent=\"yes\" equal_height_columns=\"yes\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][one_third last=\"no\" spacing=\"no\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"#6666a4\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"10%\" margin_top=\"\" margin_bottom=\"0px\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" class=\"\" id=\"\"][content_boxes layout=\"icon-with-title\" title_size=\"\" icon_circle=\"\" icon_size=\"\" icon_align=\"left\" columns=\"1\" margin_top=\"\" margin_bottom=\"0px\" class=\"\" id=\"\"][content_box title=\"Call Us\" icon=\"fa-phone\" backgroundcolor=\"\" iconcolor=\"#ffffff\" circlecolor=\"#6666a4\" circlebordercolor=\"#6666a4\" iconflip=\"\" iconrotate=\"\" iconspin=\"no\" image=\"\" image_width=\"35\" image_height=\"35\" link=\"\" linktext=\"\" linktarget=\"_self\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\"] <span style=\"color: #ffffff;\">Please call one of our specialist or pop into one of our travel shops and meet with an advisor in person. Alternatively, email us any questions and we will reply as quickly as possible. We look forward to being a small part of your next big adventure.</span>[/content_box][/content_boxes][/one_third][one_third last=\"no\" spacing=\"no\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"#7272b2\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"10%\" margin_top=\"\" margin_bottom=\"0px\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" class=\"\" id=\"\"][content_boxes layout=\"icon-with-title\" title_size=\"\" icon_circle=\"\" icon_size=\"\" icon_align=\"left\" columns=\"1\" margin_top=\"\" margin_bottom=\"0px\" class=\"\" id=\"\"][content_box title=\"Meet Us\" icon=\"fa-comments\" backgroundcolor=\"\" iconcolor=\"#ffffff\" circlecolor=\"#7272b2\" circlebordercolor=\"#7272b2\" iconflip=\"\" iconrotate=\"\" iconspin=\"no\" image=\"\" image_width=\"35\" image_height=\"35\" link=\"\" linktext=\"\" linktarget=\"_self\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\"] <span style=\"color: #ffffff;\">Please call one of our specialist or pop into one of our travel shops and meet with an advisor in person. Alternatively, email us any questions and we will reply as quickly as possible. We look forward to being a small part of your next big adventure.</span>[/content_box][/content_boxes][/one_third][one_third last=\"yes\" spacing=\"no\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"#6666a4\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"10%\" margin_top=\"\" margin_bottom=\"0px\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" class=\"\" id=\"\"][content_boxes layout=\"icon-with-title\" title_size=\"\" icon_circle=\"\" icon_size=\"\" icon_align=\"left\" columns=\"1\" margin_top=\"\" margin_bottom=\"0px\" class=\"\" id=\"\"][content_box title=\"Ask Us\" icon=\"fa-phone\" backgroundcolor=\"\" iconcolor=\"#ffffff\" circlecolor=\"#6666a4\" circlebordercolor=\"#6666a4\" iconflip=\"\" iconrotate=\"\" iconspin=\"no\" image=\"\" image_width=\"35\" image_height=\"35\" link=\"\" linktext=\"\" linktarget=\"_self\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\"] <span style=\"color: #ffffff;\">Please call one of our specialist or pop into one of our travel shops and meet with an advisor in person. Alternatively, email us any questions and we will reply as quickly as possible. We look forward to being a small part of your next big adventure.</span>[/content_box][/content_boxes][/one_third][/fullwidth]', 'Make a reservation', '', 'inherit', 'open', 'open', '', '11-revision-v1', '', '', '2015-08-16 20:56:37', '2015-08-16 20:56:37', '', 11, 'http://localhost/assagaylodge/11-revision-v1/', 0, 'revision', '', 0);
INSERT INTO `wp_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(859, 1, '2015-09-02 11:52:30', '2015-09-02 09:52:30', '[fullwidth background_color=\"\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"90px\" padding_bottom=\"0px\" padding_left=\"0px\" padding_right=\"0px\" hundred_percent=\"yes\" equal_height_columns=\"yes\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][one_half last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"http://localhost/assagaylodge/wp-content/uploads/2015/01/1000hills.jpg\" background_repeat=\"no-repeat\" background_position=\"center center\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" class=\"\" id=\"\"][/one_half][one_half last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"30px\" margin_top=\"\" margin_bottom=\"0px\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" class=\"special\" id=\"\"][fusion_text]\r\n<h1>5 BEDROOM FAMILY LODGE</h1>\r\n[/fusion_text][separator style_type=\"single\" top_margin=\"0\" bottom_margin=\"30\" sep_color=\"#000000\" border_size=\"\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"170px\" alignment=\"left\" class=\"separator-left\" id=\"\"][fusion_text]\r\n<h3>Self-Catering, Service Options and or B&amp;B</h3>\r\n[/fusion_text][/one_half][/fullwidth][fullwidth background_color=\"\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"30px\" padding_bottom=\"60px\" padding_left=\"0px\" padding_right=\"0px\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][one_half last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][fusion_text]We are a homely \'down to earth\' country guest lodge, set on a farm surrounded by acres of beautiful hills, forests, &amp; dams in the Madwala Conservancy of Assagay, where horses still have the right of way on all roads. Our five bedrooms have a rustic charm offering the comforts of modern day life.\r\n\r\nAssagay Forest Lodge is owner managed, built in 2005 the lodge provides 5 cozy bedrooms with a large spacious and comfortable homely lounge, which leads onto a large deck area. Set on a 6 acre property in the Assagay Conservancy our lodge is nestled around trees, bushes, and beautiful gardens and a stream, allowing visitors to meander and relax. Guests seeking a quite, relaxing, homely experience will find our lodge the perfect choice away from home. There is a kitchen available should you wish to muster up a snack or quick meal, however breakfast is available on request.[/fusion_text][/one_half][one_half last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][fusion_text]The property boasts over 200 different species of birds and animals. Take a walk through our indigenous forests, stroll through our acres of indigenous gardens, or simply relax at any one of many perfect spots on the property. Assagay Lodge is situated on the 1000 Hills tourism route, on the edge of Hillcrest. The Lodge is a perfect place from which one can launch, to any one of many fantastic site seeing destinations and game reserves in KwaZulu Natal, i.e. the Majestic Drakensberg Mountain Range, Shongweni Nature Reserve, Nagle Dam, Durban &amp; Beach Front. We are also the doorstep of KZN’s major horse riding venues namely, the Shongweni Horse Riding Club &amp; the Summerveld Horse Riding Academy, makes Assagay Lodge a perfect home away from home for the equestrian lovers. We welcome bookings for small conferencing &amp; workshops. Please let us know if you would be interested in using our facilities and we would be happy to quote you or you organization. The peace &amp; tranquility will take you far away from the business of city life. Evenings are quiet and peaceful. This is a unique and memorable country experience. The lodge is well suited for groups traveling together and offers a niche for individuals too. Full business facilities are available.[/fusion_text][/one_half][/fullwidth][fullwidth background_color=\"#f0f0ed\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"60px\" padding_bottom=\"45px\" padding_left=\"0px\" padding_right=\"0px\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][fusion_text]\r\n<h1 style=\"text-align: center;\">WHERE NEXT?</h1>\r\n[/fusion_text][separator style_type=\"single\" top_margin=\"\" bottom_margin=\"40\" sep_color=\"#000000\" border_size=\"\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"170px\" alignment=\"\" class=\"\" id=\"\"][one_sixth last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][/one_sixth][two_third last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][fusion_text]\r\n<h3 style=\"text-align: center;\">Our team of experts offer mouth watering special offers. From adventurous elephant trekking to awe-inspiring beaches, our collection of destinations is irresistible.</h3>\r\n[/fusion_text][/two_third][one_sixth last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][/one_sixth][separator style_type=\"none\" top_margin=\"20\" bottom_margin=\"\" sep_color=\"\" border_size=\"\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"100%\" alignment=\"\" class=\"\" id=\"\"][recent_works layout=\"grid\" picture_size=\"auto\" boxed_text=\"boxed\" filters=\"no\" columns=\"3\" column_spacing=\"12\" cat_slug=\"adventure,beaches,gateways,spa,wedding\" exclude_cats=\"\" number_posts=\"6\" offset=\"\" excerpt_length=\"35\" strip_html=\"yes\" carousel_layout=\"title_on_rollover\" scroll_items=\"\" autoplay=\"no\" show_nav=\"yes\" mouse_scroll=\"no\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" class=\"\" id=\"\"][/recent_works][/fullwidth][fullwidth background_color=\"#ffffff\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"65px\" padding_bottom=\"65px\" padding_left=\"0px\" padding_right=\"0px\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][button link=\"/avada_demos/travel/our-destinations/\" color=\"default\" size=\"xlarge\"  type=\"3d\" shape=\"round\" target=\"_self\" title=\"\" gradient_colors=\"#f0f0ed|#f0f0ed\" gradient_hover_colors=\"#6666a4|#6666a4\" accent_color=\"#ffffff\" accent_hover_color=\"#ffffff\" bevel_color=\"\" border_width=\"0px\" icon=\"\" icon_position=\"left\" icon_divider=\"no\" modal=\"\" animation_type=\"0\" animation_direction=\"left\" animation_speed=\"1\" alignment=\"center\" class=\"\" id=\"\"]View All Destinations[/button][/fullwidth][fullwidth background_color=\"#6666a4\" background_image=\"http://localhost/assagaylodge/wp-content/uploads/2015/08/Dam.jpg\" background_parallax=\"fixed\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"center center\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"yes\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"110px\" padding_bottom=\"100px\" padding_left=\"0px\" padding_right=\"0px\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][testimonials design=\"clean\" backgroundcolor=\"\" textcolor=\"\" random=\"\" class=\"\" id=\"\"][testimonial name=\"Pat Conroy\" avatar=\"image\" image=\"http://theme-fusion.com/avada_demos_xml/travel/wp-content/uploads/2015/04/testimonial1.jpg\" image_border_radius=\"50%\" company=\"\" link=\"http://www.google.com\" target=\"_self\"]“Once you travelled, the voyage never ends, but is played out over and over again in the quietest chambers. The mind can never break off from the journey.”[/testimonial][testimonial name=\"Mark Twain\" avatar=\"image\" image=\"http://theme-fusion.com/avada_demos_xml/travel/wp-content/uploads/2015/04/testimonial1.jpg\" image_border_radius=\"50%\" company=\"\" link=\"\" target=\"_self\"]“Twenty years from now you will be more disappointed by the things you didn’t do than by the ones you did do. So throw off the bowlines, sail away from the safe harbor. Catch the trade winds in your sails. Explore. Dream. Discover.”[/testimonial][/testimonials][/fullwidth][fullwidth background_color=\"\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"60px\" padding_bottom=\"35px\" padding_left=\"0px\" padding_right=\"0px\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][fusion_text]\r\n<h1 style=\"text-align: center;\">TRAVEL BLOG</h1>\r\n[/fusion_text][separator style_type=\"single\" top_margin=\"\" bottom_margin=\"20\" sep_color=\"#000000\" border_size=\"\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"170px\" alignment=\"\" class=\"\" id=\"\"][one_sixth last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][/one_sixth][two_third last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][fusion_text]\r\n<h3 style=\"text-align: center;\">When it comes to our advice we’re proud to say we’re different. We offer something a little more special.</h3>\r\n[/fusion_text][/two_third][one_sixth last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][/one_sixth][separator style_type=\"none\" top_margin=\"40\" bottom_margin=\"\" sep_color=\"\" border_size=\"\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"100%\" alignment=\"center\" class=\"\" id=\"\"][one_fifth last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][/one_fifth][three_fifth last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][blog number_posts=\"3\" offset=\"\" cat_slug=\"\" exclude_cats=\"\" title=\"yes\" title_link=\"yes\" thumbnail=\"yes\" excerpt=\"yes\" excerpt_length=\"25\" meta_all=\"no\" meta_author=\"no\" meta_categories=\"no\" meta_comments=\"no\" meta_date=\"no\" meta_link=\"no\" meta_tags=\"no\" paging=\"no\" scrolling=\"pagination\" strip_html=\"yes\" blog_grid_columns=\"2\" blog_grid_column_spacing=\"40\" layout=\"medium\" class=\"\" id=\"\"][/blog][/three_fifth][one_fifth last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][/one_fifth][/fullwidth][fullwidth background_color=\"\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding_top=\"20\" padding_bottom=\"20\" padding_left=\"0\" padding_right=\"0\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][/fullwidth][fullwidth background_color=\"\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding_top=\"20\" padding_bottom=\"20\" padding_left=\"0\" padding_right=\"0\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][/fullwidth]', 'Home', '', 'inherit', 'closed', 'closed', '', '7-revision-v1', '', '', '2015-09-02 11:52:30', '2015-09-02 09:52:30', '', 7, 'http://localhost/assagaylodge/7-revision-v1/', 0, 'revision', '', 0),
(860, 1, '2015-09-02 11:54:20', '2015-09-02 09:54:20', '[fullwidth background_color=\"\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"90px\" padding_bottom=\"0px\" padding_left=\"0px\" padding_right=\"0px\" hundred_percent=\"yes\" equal_height_columns=\"yes\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][one_half last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"http://localhost/assagaylodge/wp-content/uploads/2015/01/1000hills.jpg\" background_repeat=\"no-repeat\" background_position=\"center center\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" class=\"\" id=\"\"][/one_half][one_half last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"30px\" margin_top=\"\" margin_bottom=\"0px\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" class=\"special\" id=\"\"][fusion_text]\r\n<h1>5 BEDROOM FAMILY LODGE</h1>\r\n[/fusion_text][separator style_type=\"single\" top_margin=\"0\" bottom_margin=\"30\" sep_color=\"#000000\" border_size=\"\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"170px\" alignment=\"left\" class=\"separator-left\" id=\"\"][fusion_text]\r\n<h3>Self-Catering, Service Options and or B&amp;B</h3>\r\n[/fusion_text][/one_half][/fullwidth][fullwidth background_color=\"\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"30px\" padding_bottom=\"60px\" padding_left=\"0px\" padding_right=\"0px\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][one_half last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][fusion_text]\r\n<p style=\"text-align: justify;\">We are a homely \'down to earth\' country guest lodge, set on a farm surrounded by acres of beautiful hills, forests, &amp; dams in the Madwala Conservancy of Assagay, where horses still have the right of way on all roads. Our five bedrooms have a rustic charm offering the comforts of modern day life.</p>\r\n<p style=\"text-align: justify;\">Assagay Forest Lodge is owner managed, built in 2005 the lodge provides 5 cozy bedrooms with a large spacious and comfortable homely lounge, which leads onto a large deck area. Set on a 6 acre property in the Assagay Conservancy our lodge is nestled around trees, bushes, and beautiful gardens and a stream, allowing visitors to meander and relax. Guests seeking a quite, relaxing, homely experience will find our lodge the perfect choice away from home. There is a kitchen available should you wish to muster up a snack or quick meal, however breakfast is available on request.</p>\r\n[/fusion_text][/one_half][one_half last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][fusion_text]\r\n<p style=\"text-align: justify;\">The property boasts over 200 different species of birds and animals. Take a walk through our indigenous forests, stroll through our acres of indigenous gardens, or simply relax at any one of many perfect spots on the property. Assagay Lodge is situated on the 1000 Hills tourism route, on the edge of Hillcrest. The Lodge is a perfect place from which one can launch, to any one of many fantastic site seeing destinations and game reserves in KwaZulu Natal, i.e. the Majestic Drakensberg Mountain Range, Shongweni Nature Reserve, Nagle Dam, Durban &amp; Beach Front. We are also the doorstep of KZN’s major horse riding venues namely, the Shongweni Horse Riding Club &amp; the Summerveld Horse Riding Academy, makes Assagay Lodge a perfect home away from home for the equestrian lovers. We welcome bookings for small conferencing &amp; workshops. Please let us know if you would be interested in using our facilities and we would be happy to quote you or you organization. The peace &amp; tranquility will take you far away from the business of city life. Evenings are quiet and peaceful. This is a unique and memorable country experience. The lodge is well suited for groups traveling together and offers a niche for individuals too. Full business facilities are available.</p>\r\n[/fusion_text][/one_half][/fullwidth][fullwidth background_color=\"#f0f0ed\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"60px\" padding_bottom=\"45px\" padding_left=\"0px\" padding_right=\"0px\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][fusion_text]\r\n<h1 style=\"text-align: center;\">WHERE NEXT?</h1>\r\n[/fusion_text][separator style_type=\"single\" top_margin=\"\" bottom_margin=\"40\" sep_color=\"#000000\" border_size=\"\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"170px\" alignment=\"\" class=\"\" id=\"\"][one_sixth last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][/one_sixth][two_third last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][fusion_text]\r\n<h3 style=\"text-align: center;\">Our team of experts offer mouth watering special offers. From adventurous elephant trekking to awe-inspiring beaches, our collection of destinations is irresistible.</h3>\r\n[/fusion_text][/two_third][one_sixth last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][/one_sixth][separator style_type=\"none\" top_margin=\"20\" bottom_margin=\"\" sep_color=\"\" border_size=\"\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"100%\" alignment=\"\" class=\"\" id=\"\"][recent_works layout=\"grid\" picture_size=\"auto\" boxed_text=\"boxed\" filters=\"no\" columns=\"3\" column_spacing=\"12\" cat_slug=\"adventure,beaches,gateways,spa,wedding\" exclude_cats=\"\" number_posts=\"6\" offset=\"\" excerpt_length=\"35\" strip_html=\"yes\" carousel_layout=\"title_on_rollover\" scroll_items=\"\" autoplay=\"no\" show_nav=\"yes\" mouse_scroll=\"no\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" class=\"\" id=\"\"][/recent_works][/fullwidth][fullwidth background_color=\"#ffffff\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"65px\" padding_bottom=\"65px\" padding_left=\"0px\" padding_right=\"0px\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][button link=\"/avada_demos/travel/our-destinations/\" color=\"default\" size=\"xlarge\" type=\"3d\" shape=\"round\" target=\"_self\" title=\"\" gradient_colors=\"#f0f0ed|#f0f0ed\" gradient_hover_colors=\"#6666a4|#6666a4\" accent_color=\"#ffffff\" accent_hover_color=\"#ffffff\" bevel_color=\"\" border_width=\"0px\" icon=\"\" icon_position=\"left\" icon_divider=\"no\" modal=\"\" animation_type=\"0\" animation_direction=\"left\" animation_speed=\"1\" alignment=\"center\" class=\"\" id=\"\"]View All Destinations[/button][/fullwidth][fullwidth background_color=\"#6666a4\" background_image=\"http://localhost/assagaylodge/wp-content/uploads/2015/08/Dam.jpg\" background_parallax=\"fixed\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"center center\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"yes\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"110px\" padding_bottom=\"100px\" padding_left=\"0px\" padding_right=\"0px\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][testimonials design=\"clean\" backgroundcolor=\"\" textcolor=\"\" random=\"\" class=\"\" id=\"\"][testimonial name=\"Pat Conroy\" avatar=\"image\" image=\"http://theme-fusion.com/avada_demos_xml/travel/wp-content/uploads/2015/04/testimonial1.jpg\" image_border_radius=\"50%\" company=\"\" link=\"http://www.google.com\" target=\"_self\"]“Once you travelled, the voyage never ends, but is played out over and over again in the quietest chambers. The mind can never break off from the journey.”[/testimonial][testimonial name=\"Mark Twain\" avatar=\"image\" image=\"http://theme-fusion.com/avada_demos_xml/travel/wp-content/uploads/2015/04/testimonial1.jpg\" image_border_radius=\"50%\" company=\"\" link=\"\" target=\"_self\"]“Twenty years from now you will be more disappointed by the things you didn’t do than by the ones you did do. So throw off the bowlines, sail away from the safe harbor. Catch the trade winds in your sails. Explore. Dream. Discover.”[/testimonial][/testimonials][/fullwidth][fullwidth background_color=\"\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"60px\" padding_bottom=\"35px\" padding_left=\"0px\" padding_right=\"0px\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][fusion_text]\r\n<h1 style=\"text-align: center;\">TRAVEL BLOG</h1>\r\n[/fusion_text][separator style_type=\"single\" top_margin=\"\" bottom_margin=\"20\" sep_color=\"#000000\" border_size=\"\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"170px\" alignment=\"\" class=\"\" id=\"\"][one_sixth last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][/one_sixth][two_third last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][fusion_text]\r\n<h3 style=\"text-align: center;\">When it comes to our advice we’re proud to say we’re different. We offer something a little more special.</h3>\r\n[/fusion_text][/two_third][one_sixth last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][/one_sixth][separator style_type=\"none\" top_margin=\"40\" bottom_margin=\"\" sep_color=\"\" border_size=\"\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"100%\" alignment=\"center\" class=\"\" id=\"\"][one_fifth last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][/one_fifth][three_fifth last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][blog number_posts=\"3\" offset=\"\" cat_slug=\"\" exclude_cats=\"\" title=\"yes\" title_link=\"yes\" thumbnail=\"yes\" excerpt=\"yes\" excerpt_length=\"25\" meta_all=\"no\" meta_author=\"no\" meta_categories=\"no\" meta_comments=\"no\" meta_date=\"no\" meta_link=\"no\" meta_tags=\"no\" paging=\"no\" scrolling=\"pagination\" strip_html=\"yes\" blog_grid_columns=\"2\" blog_grid_column_spacing=\"40\" layout=\"medium\" class=\"\" id=\"\"][/blog][/three_fifth][one_fifth last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][/one_fifth][/fullwidth][fullwidth background_color=\"\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding_top=\"20\" padding_bottom=\"20\" padding_left=\"0\" padding_right=\"0\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][/fullwidth][fullwidth background_color=\"\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding_top=\"20\" padding_bottom=\"20\" padding_left=\"0\" padding_right=\"0\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][/fullwidth]', 'Home', '', 'inherit', 'closed', 'closed', '', '7-revision-v1', '', '', '2015-09-02 11:54:20', '2015-09-02 09:54:20', '', 7, 'http://localhost/assagaylodge/7-revision-v1/', 0, 'revision', '', 0);
INSERT INTO `wp_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(861, 1, '2015-09-02 16:15:31', '2015-09-02 14:15:31', '[fullwidth background_color=\"\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"90px\" padding_bottom=\"0px\" padding_left=\"0px\" padding_right=\"0px\" hundred_percent=\"yes\" equal_height_columns=\"yes\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][one_half last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"http://localhost/assagaylodge/wp-content/uploads/2015/01/1000hills.jpg\" background_repeat=\"no-repeat\" background_position=\"center center\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" class=\"\" id=\"\"][/one_half][one_half last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"30px\" margin_top=\"\" margin_bottom=\"0px\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" class=\"special\" id=\"\"][fusion_text]\r\n<h1>5 BEDROOM FAMILY LODGE</h1>\r\n[/fusion_text][separator style_type=\"single\" top_margin=\"0\" bottom_margin=\"30\" sep_color=\"#000000\" border_size=\"\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"170px\" alignment=\"left\" class=\"separator-left\" id=\"\"][fusion_text]\r\n<h3>Self-Catering/Service Options/B&amp;B</h3>\r\n[/fusion_text][/one_half][/fullwidth][fullwidth background_color=\"\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"30px\" padding_bottom=\"60px\" padding_left=\"0px\" padding_right=\"0px\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][one_half last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][fusion_text]\r\n<p style=\"text-align: justify;\">We are a homely \'down to earth\' country guest lodge, set on a farm surrounded by acres of beautiful hills, forests, &amp; dams in the Madwala Conservancy of Assagay, where horses still have the right of way on all roads. Our five bedrooms have a rustic charm offering the comforts of modern day life.</p>\r\n<p style=\"text-align: justify;\">Assagay Forest Lodge is owner managed, built in 2005 the lodge provides 5 cozy bedrooms with a large spacious and comfortable homely lounge, which leads onto a large deck area. Set on a 6 acre property in the Assagay Conservancy our lodge is nestled around trees, bushes, and beautiful gardens and a stream, allowing visitors to meander and relax. Guests seeking a quite, relaxing, homely experience will find our lodge the perfect choice away from home. There is a kitchen available should you wish to muster up a snack or quick meal, however breakfast is available on request.</p>\r\n[/fusion_text][/one_half][one_half last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][fusion_text]\r\n<p style=\"text-align: justify;\">The property boasts over 200 different species of birds and animals. The Lodge is situated on the 1000 Hills tourism route, on the edge of Hillcrest and is a perfect place from which one can launch to any one of the many fantastic destinations and game reserves in KwaZulu Natal, i.e. the Majestic Drakensberg Mountain Range, Shongweni Nature Reserve, Nagle Dam, Durban &amp; Beach Front. We are also the doorstep of one of KZN’s major horse riding venues namely, the Shongweni Horse Riding Club &amp; the Summerveld Horse Riding Academy, makes Assagay Lodge a perfect home away from home for the equestrian lovers. The peace &amp; tranquility will take you far away from the business of city life. Evenings are quiet and peaceful. This is a unique and memorable country experience.</p>\r\n[/fusion_text][/one_half][/fullwidth][fullwidth background_color=\"#f0f0ed\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"60px\" padding_bottom=\"45px\" padding_left=\"0px\" padding_right=\"0px\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][fusion_text]\r\n<h1 style=\"text-align: center;\">WHERE NEXT?</h1>\r\n[/fusion_text][separator style_type=\"single\" top_margin=\"\" bottom_margin=\"40\" sep_color=\"#000000\" border_size=\"\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"170px\" alignment=\"\" class=\"\" id=\"\"][one_sixth last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][/one_sixth][two_third last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][fusion_text]\r\n<h3 style=\"text-align: center;\">Our team of experts offer mouth watering special offers. From adventurous elephant trekking to awe-inspiring beaches, our collection of destinations is irresistible.</h3>\r\n[/fusion_text][/two_third][one_sixth last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][/one_sixth][separator style_type=\"none\" top_margin=\"20\" bottom_margin=\"\" sep_color=\"\" border_size=\"\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"100%\" alignment=\"\" class=\"\" id=\"\"][recent_works layout=\"grid\" picture_size=\"auto\" boxed_text=\"boxed\" filters=\"no\" columns=\"3\" column_spacing=\"12\" cat_slug=\"adventure,beaches,gateways,spa,wedding\" exclude_cats=\"\" number_posts=\"6\" offset=\"\" excerpt_length=\"35\" strip_html=\"yes\" carousel_layout=\"title_on_rollover\" scroll_items=\"\" autoplay=\"no\" show_nav=\"yes\" mouse_scroll=\"no\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" class=\"\" id=\"\"][/recent_works][/fullwidth][fullwidth background_color=\"#ffffff\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"65px\" padding_bottom=\"65px\" padding_left=\"0px\" padding_right=\"0px\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][button link=\"/avada_demos/travel/our-destinations/\" color=\"default\" size=\"xlarge\" type=\"3d\" shape=\"round\" target=\"_self\" title=\"\" gradient_colors=\"#f0f0ed|#f0f0ed\" gradient_hover_colors=\"#6666a4|#6666a4\" accent_color=\"#ffffff\" accent_hover_color=\"#ffffff\" bevel_color=\"\" border_width=\"0px\" icon=\"\" icon_position=\"left\" icon_divider=\"no\" modal=\"\" animation_type=\"0\" animation_direction=\"left\" animation_speed=\"1\" alignment=\"center\" class=\"\" id=\"\"]View All Destinations[/button][/fullwidth][fullwidth background_color=\"#6666a4\" background_image=\"http://localhost/assagaylodge/wp-content/uploads/2015/08/Dam.jpg\" background_parallax=\"fixed\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"center center\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"yes\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"110px\" padding_bottom=\"100px\" padding_left=\"0px\" padding_right=\"0px\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][testimonials design=\"clean\" backgroundcolor=\"\" textcolor=\"\" random=\"\" class=\"\" id=\"\"][testimonial name=\"Pat Conroy\" avatar=\"image\" image=\"http://theme-fusion.com/avada_demos_xml/travel/wp-content/uploads/2015/04/testimonial1.jpg\" image_border_radius=\"50%\" company=\"\" link=\"http://www.google.com\" target=\"_self\"]“Once you travelled, the voyage never ends, but is played out over and over again in the quietest chambers. The mind can never break off from the journey.”[/testimonial][testimonial name=\"Mark Twain\" avatar=\"image\" image=\"http://theme-fusion.com/avada_demos_xml/travel/wp-content/uploads/2015/04/testimonial1.jpg\" image_border_radius=\"50%\" company=\"\" link=\"\" target=\"_self\"]“Twenty years from now you will be more disappointed by the things you didn’t do than by the ones you did do. So throw off the bowlines, sail away from the safe harbor. Catch the trade winds in your sails. Explore. Dream. Discover.”[/testimonial][/testimonials][/fullwidth][fullwidth background_color=\"\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"60px\" padding_bottom=\"35px\" padding_left=\"0px\" padding_right=\"0px\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][fusion_text]\r\n<h1 style=\"text-align: center;\">TRAVEL BLOG</h1>\r\n[/fusion_text][separator style_type=\"single\" top_margin=\"\" bottom_margin=\"20\" sep_color=\"#000000\" border_size=\"\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"170px\" alignment=\"\" class=\"\" id=\"\"][one_sixth last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][/one_sixth][two_third last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][fusion_text]\r\n<h3 style=\"text-align: center;\">When it comes to our advice we’re proud to say we’re different. We offer something a little more special.</h3>\r\n[/fusion_text][/two_third][one_sixth last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][/one_sixth][separator style_type=\"none\" top_margin=\"40\" bottom_margin=\"\" sep_color=\"\" border_size=\"\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"100%\" alignment=\"center\" class=\"\" id=\"\"][one_fifth last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][/one_fifth][three_fifth last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][blog number_posts=\"3\" offset=\"\" cat_slug=\"\" exclude_cats=\"\" title=\"yes\" title_link=\"yes\" thumbnail=\"yes\" excerpt=\"yes\" excerpt_length=\"25\" meta_all=\"no\" meta_author=\"no\" meta_categories=\"no\" meta_comments=\"no\" meta_date=\"no\" meta_link=\"no\" meta_tags=\"no\" paging=\"no\" scrolling=\"pagination\" strip_html=\"yes\" blog_grid_columns=\"2\" blog_grid_column_spacing=\"40\" layout=\"medium\" class=\"\" id=\"\"][/blog][/three_fifth][one_fifth last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][/one_fifth][/fullwidth][fullwidth background_color=\"\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding_top=\"20\" padding_bottom=\"20\" padding_left=\"0\" padding_right=\"0\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][/fullwidth][fullwidth background_color=\"\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding_top=\"20\" padding_bottom=\"20\" padding_left=\"0\" padding_right=\"0\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][/fullwidth]', 'Home', '', 'inherit', 'closed', 'closed', '', '7-revision-v1', '', '', '2015-09-02 16:15:31', '2015-09-02 14:15:31', '', 7, 'http://localhost/assagaylodge/7-revision-v1/', 0, 'revision', '', 0),
(862, 1, '2015-09-04 11:26:20', '2015-09-04 09:26:20', '', 'Dinning & Entrance Hall', '', 'inherit', 'open', 'closed', '', 'dsc01480', '', '', '2015-09-04 11:32:15', '2015-09-04 09:32:15', '', 0, 'http://localhost/assagaylodge/wp-content/uploads/2015/09/DSC01480.jpg', 0, 'attachment', 'image/jpeg', 0),
(863, 1, '2015-09-04 11:26:34', '2015-09-04 09:26:34', '', 'Entrance & Kitchen', '', 'inherit', 'open', 'closed', '', 'dsc01483', '', '', '2015-09-04 11:54:26', '2015-09-04 09:54:26', '', 0, 'http://localhost/assagaylodge/wp-content/uploads/2015/09/DSC01483.jpg', 0, 'attachment', 'image/jpeg', 0),
(864, 1, '2015-09-04 11:26:43', '2015-09-04 09:26:43', '', 'Entrance Lounge', '', 'inherit', 'open', 'closed', '', 'dsc01485', '', '', '2015-09-04 12:07:10', '2015-09-04 10:07:10', '', 0, 'http://localhost/assagaylodge/wp-content/uploads/2015/09/DSC01485.jpg', 0, 'attachment', 'image/jpeg', 0),
(865, 1, '2015-09-04 11:26:54', '2015-09-04 09:26:54', '', 'Gallery Wall', '', 'inherit', 'open', 'closed', '', 'dsc01487', '', '', '2015-09-04 12:00:23', '2015-09-04 10:00:23', '', 0, 'http://localhost/assagaylodge/wp-content/uploads/2015/09/DSC01487.jpg', 0, 'attachment', 'image/jpeg', 0),
(866, 1, '2015-09-04 11:27:02', '2015-09-04 09:27:02', '', 'DSC01495', '', 'inherit', 'open', 'closed', '', 'dsc01495', '', '', '2015-09-04 11:27:02', '2015-09-04 09:27:02', '', 0, 'http://localhost/assagaylodge/wp-content/uploads/2015/09/DSC01495.jpg', 0, 'attachment', 'image/jpeg', 0),
(867, 1, '2015-09-04 11:27:12', '2015-09-04 09:27:12', '', 'Lounge & Dinning', '', 'inherit', 'open', 'closed', '', 'dsc01478', '', '', '2015-09-04 11:29:45', '2015-09-04 09:29:45', '', 0, 'http://localhost/assagaylodge/wp-content/uploads/2015/09/DSC01478.jpg', 0, 'attachment', 'image/jpeg', 0),
(869, 1, '2015-09-04 11:45:53', '2015-09-04 09:45:53', 'Inside the Lodge', 'Dinning & Reception Area', '', 'inherit', 'closed', 'closed', '', '364-autosave-v1', '', '', '2015-09-04 11:45:53', '2015-09-04 09:45:53', '', 364, 'http://localhost/assagaylodge/364-autosave-v1/', 0, 'revision', '', 0),
(870, 1, '2015-09-04 11:40:24', '2015-09-04 09:40:24', 'Inside the Lodge', 'Inside', '', 'inherit', 'closed', 'closed', '', '364-revision-v1', '', '', '2015-09-04 11:40:24', '2015-09-04 09:40:24', '', 364, 'http://localhost/assagaylodge/364-revision-v1/', 0, 'revision', '', 0),
(871, 1, '2015-09-04 11:43:33', '2015-09-04 09:43:33', '[fullwidth background_color=\"\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"90px\" padding_bottom=\"0px\" padding_left=\"0px\" padding_right=\"0px\" hundred_percent=\"yes\" equal_height_columns=\"yes\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][one_half last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"http://localhost/assagaylodge/wp-content/uploads/2015/01/1000hills.jpg\" background_repeat=\"no-repeat\" background_position=\"center center\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" class=\"\" id=\"\"][/one_half][one_half last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"30px\" margin_top=\"\" margin_bottom=\"0px\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" class=\"special\" id=\"\"][fusion_text]\r\n<h1>5 BEDROOM FAMILY LODGE</h1>\r\n[/fusion_text][separator style_type=\"single\" top_margin=\"0\" bottom_margin=\"30\" sep_color=\"#000000\" border_size=\"\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"170px\" alignment=\"left\" class=\"separator-left\" id=\"\"][fusion_text]\r\n<h3>Self-Catering/Service Options/B&amp;B</h3>\r\n[/fusion_text][/one_half][/fullwidth][fullwidth background_color=\"\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"30px\" padding_bottom=\"60px\" padding_left=\"0px\" padding_right=\"0px\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][one_half last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][fusion_text]\r\n<p style=\"text-align: justify;\">We are a homely \'down to earth\' country guest lodge, set on a farm surrounded by acres of beautiful hills, forests, &amp; dams in the Madwala Conservancy of Assagay, where horses still have the right of way on all roads. Our five bedrooms have a rustic charm offering the comforts of modern day life.</p>\r\n<p style=\"text-align: justify;\">Assagay Forest Lodge is owner managed, built in 2005 the lodge provides 5 cozy bedrooms with a large spacious and comfortable homely lounge, which leads onto a large deck area. Set on a 6 acre property in the Assagay Conservancy our lodge is nestled around trees, bushes, and beautiful gardens and a stream, allowing visitors to meander and relax. Guests seeking a quite, relaxing, homely experience will find our lodge the perfect choice away from home. There is a kitchen available should you wish to muster up a snack or quick meal, however breakfast is available on request.</p>\r\n[/fusion_text][/one_half][one_half last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][fusion_text]\r\n<p style=\"text-align: justify;\">The property boasts over 200 different species of birds and animals. The Lodge is situated on the 1000 Hills tourism route, on the edge of Hillcrest and is a perfect place from which one can launch to any one of the many fantastic destinations and game reserves in KwaZulu Natal, i.e. the Majestic Drakensberg Mountain Range, Shongweni Nature Reserve, Nagle Dam, Durban &amp; Beach Front. We are also the doorstep of one of KZN’s major horse riding venues namely, the Shongweni Horse Riding Club &amp; the Summerveld Horse Riding Academy, makes Assagay Lodge a perfect home away from home for the equestrian lovers. The peace &amp; tranquility will take you far away from the business of city life. Evenings are quiet and peaceful. This is a unique and memorable country experience.</p>\r\n[/fusion_text][/one_half][/fullwidth][fullwidth background_color=\"#f0f0ed\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"60px\" padding_bottom=\"45px\" padding_left=\"0px\" padding_right=\"0px\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][fusion_text]\r\n<h1 style=\"text-align: center;\">WHERE NEXT?</h1>\r\n[/fusion_text][separator style_type=\"single\" top_margin=\"\" bottom_margin=\"40\" sep_color=\"#000000\" border_size=\"\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"170px\" alignment=\"\" class=\"\" id=\"\"][one_sixth last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][/one_sixth][two_third last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][fusion_text]\r\n<h3 style=\"text-align: center;\">Our team of experts offer mouth watering special offers. From adventurous elephant trekking to awe-inspiring beaches, our collection of destinations is irresistible.</h3>\r\n[/fusion_text][/two_third][one_sixth last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][/one_sixth][separator style_type=\"none\" top_margin=\"20\" bottom_margin=\"\" sep_color=\"\" border_size=\"\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"100%\" alignment=\"\" class=\"\" id=\"\"][recent_works layout=\"grid\" picture_size=\"auto\" boxed_text=\"boxed\" filters=\"no\" columns=\"3\" column_spacing=\"12\" cat_slug=\"the-lodge\" exclude_cats=\"\" number_posts=\"6\" offset=\"\" excerpt_length=\"35\" strip_html=\"yes\" carousel_layout=\"title_on_rollover\" scroll_items=\"\" autoplay=\"no\" show_nav=\"yes\" mouse_scroll=\"no\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" class=\"\" id=\"\"][/recent_works][/fullwidth][fullwidth background_color=\"#ffffff\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"65px\" padding_bottom=\"65px\" padding_left=\"0px\" padding_right=\"0px\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][button link=\"/avada_demos/travel/our-destinations/\" color=\"default\" size=\"xlarge\" type=\"3d\" shape=\"round\" target=\"_self\" title=\"\" gradient_colors=\"#f0f0ed|#f0f0ed\" gradient_hover_colors=\"#6666a4|#6666a4\" accent_color=\"#ffffff\" accent_hover_color=\"#ffffff\" bevel_color=\"\" border_width=\"0px\" icon=\"\" icon_position=\"left\" icon_divider=\"no\" modal=\"\" animation_type=\"0\" animation_direction=\"left\" animation_speed=\"1\" alignment=\"center\" class=\"\" id=\"\"]View All Destinations[/button][/fullwidth][fullwidth background_color=\"#6666a4\" background_image=\"http://localhost/assagaylodge/wp-content/uploads/2015/08/Dam.jpg\" background_parallax=\"fixed\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"center center\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"yes\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"110px\" padding_bottom=\"100px\" padding_left=\"0px\" padding_right=\"0px\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][testimonials design=\"clean\" backgroundcolor=\"\" textcolor=\"\" random=\"\" class=\"\" id=\"\"][testimonial name=\"Pat Conroy\" avatar=\"image\" image=\"http://theme-fusion.com/avada_demos_xml/travel/wp-content/uploads/2015/04/testimonial1.jpg\" image_border_radius=\"50%\" company=\"\" link=\"http://www.google.com\" target=\"_self\"]“Once you travelled, the voyage never ends, but is played out over and over again in the quietest chambers. The mind can never break off from the journey.”[/testimonial][testimonial name=\"Mark Twain\" avatar=\"image\" image=\"http://theme-fusion.com/avada_demos_xml/travel/wp-content/uploads/2015/04/testimonial1.jpg\" image_border_radius=\"50%\" company=\"\" link=\"\" target=\"_self\"]“Twenty years from now you will be more disappointed by the things you didn’t do than by the ones you did do. So throw off the bowlines, sail away from the safe harbor. Catch the trade winds in your sails. Explore. Dream. Discover.”[/testimonial][/testimonials][/fullwidth][fullwidth background_color=\"\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"60px\" padding_bottom=\"35px\" padding_left=\"0px\" padding_right=\"0px\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][fusion_text]\r\n<h1 style=\"text-align: center;\">TRAVEL BLOG</h1>\r\n[/fusion_text][separator style_type=\"single\" top_margin=\"\" bottom_margin=\"20\" sep_color=\"#000000\" border_size=\"\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"170px\" alignment=\"\" class=\"\" id=\"\"][one_sixth last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][/one_sixth][two_third last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][fusion_text]\r\n<h3 style=\"text-align: center;\">When it comes to our advice we’re proud to say we’re different. We offer something a little more special.</h3>\r\n[/fusion_text][/two_third][one_sixth last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][/one_sixth][separator style_type=\"none\" top_margin=\"40\" bottom_margin=\"\" sep_color=\"\" border_size=\"\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"100%\" alignment=\"center\" class=\"\" id=\"\"][one_fifth last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][/one_fifth][three_fifth last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][blog number_posts=\"3\" offset=\"\" cat_slug=\"\" exclude_cats=\"\" title=\"yes\" title_link=\"yes\" thumbnail=\"yes\" excerpt=\"yes\" excerpt_length=\"25\" meta_all=\"no\" meta_author=\"no\" meta_categories=\"no\" meta_comments=\"no\" meta_date=\"no\" meta_link=\"no\" meta_tags=\"no\" paging=\"no\" scrolling=\"pagination\" strip_html=\"yes\" blog_grid_columns=\"2\" blog_grid_column_spacing=\"40\" layout=\"medium\" class=\"\" id=\"\"][/blog][/three_fifth][one_fifth last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][/one_fifth][/fullwidth][fullwidth background_color=\"\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding_top=\"20\" padding_bottom=\"20\" padding_left=\"0\" padding_right=\"0\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][/fullwidth][fullwidth background_color=\"\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding_top=\"20\" padding_bottom=\"20\" padding_left=\"0\" padding_right=\"0\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][/fullwidth]', 'Home', '', 'inherit', 'closed', 'closed', '', '7-revision-v1', '', '', '2015-09-04 11:43:33', '2015-09-04 09:43:33', '', 7, 'http://localhost/assagaylodge/7-revision-v1/', 0, 'revision', '', 0),
(872, 1, '2015-09-04 11:47:00', '2015-09-04 09:47:00', '', 'Dinning & Reception Area', '', 'inherit', 'closed', 'closed', '', '364-revision-v1', '', '', '2015-09-04 11:47:00', '2015-09-04 09:47:00', '', 364, 'http://localhost/assagaylodge/364-revision-v1/', 0, 'revision', '', 0),
(873, 1, '2015-09-04 11:49:59', '2015-09-04 09:49:59', '', 'Lounge & Dinning', '', 'inherit', 'closed', 'closed', '', '361-revision-v1', '', '', '2015-09-04 11:49:59', '2015-09-04 09:49:59', '', 361, 'http://localhost/assagaylodge/361-revision-v1/', 0, 'revision', '', 0),
(874, 1, '2015-09-04 11:54:59', '2015-09-04 09:54:59', '', 'Entrance & Kitchen', '', 'inherit', 'closed', 'closed', '', '358-autosave-v1', '', '', '2015-09-04 11:54:59', '2015-09-04 09:54:59', '', 358, 'http://localhost/assagaylodge/358-autosave-v1/', 0, 'revision', '', 0),
(875, 1, '2015-09-04 11:55:21', '2015-09-04 09:55:21', '', 'Entrance & Kitchen', '', 'inherit', 'closed', 'closed', '', '358-revision-v1', '', '', '2015-09-04 11:55:21', '2015-09-04 09:55:21', '', 358, 'http://localhost/assagaylodge/358-revision-v1/', 0, 'revision', '', 0),
(876, 1, '2015-09-04 12:03:02', '2015-09-04 10:03:02', '', 'Lounge', '', 'inherit', 'closed', 'closed', '', '59-autosave-v1', '', '', '2015-09-04 12:03:02', '2015-09-04 10:03:02', '', 59, 'http://localhost/assagaylodge/59-autosave-v1/', 0, 'revision', '', 0),
(877, 1, '2015-09-04 12:00:19', '2015-09-04 10:00:19', '', 'Canada', '', 'inherit', 'closed', 'closed', '', '61-autosave-v1', '', '', '2015-09-04 12:00:19', '2015-09-04 10:00:19', '', 61, 'http://localhost/assagaylodge/61-autosave-v1/', 0, 'revision', '', 0),
(878, 1, '2015-09-04 12:01:38', '2015-09-04 10:01:38', '', 'Gallery Wall', '', 'inherit', 'closed', 'closed', '', '61-revision-v1', '', '', '2015-09-04 12:01:38', '2015-09-04 10:01:38', '', 61, 'http://localhost/assagaylodge/61-revision-v1/', 0, 'revision', '', 0),
(879, 1, '2015-09-04 12:03:54', '2015-09-04 10:03:54', '', 'Lounge', '', 'inherit', 'closed', 'closed', '', '59-revision-v1', '', '', '2015-09-04 12:03:54', '2015-09-04 10:03:54', '', 59, 'http://localhost/assagaylodge/59-revision-v1/', 0, 'revision', '', 0);
INSERT INTO `wp_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(880, 1, '2015-09-04 12:04:28', '2015-09-04 10:04:28', '[fullwidth background_color=\"\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"90px\" padding_bottom=\"0px\" padding_left=\"0px\" padding_right=\"0px\" hundred_percent=\"yes\" equal_height_columns=\"yes\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][one_half last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"http://localhost/assagaylodge/wp-content/uploads/2015/01/1000hills.jpg\" background_repeat=\"no-repeat\" background_position=\"center center\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" class=\"\" id=\"\"][/one_half][one_half last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"30px\" margin_top=\"\" margin_bottom=\"0px\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" class=\"special\" id=\"\"][fusion_text]\r\n<h1>5 BEDROOM FAMILY LODGE</h1>\r\n[/fusion_text][separator style_type=\"single\" top_margin=\"0\" bottom_margin=\"30\" sep_color=\"#000000\" border_size=\"\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"170px\" alignment=\"left\" class=\"separator-left\" id=\"\"][fusion_text]\r\n<h3>Self-Catering/Service Options/B&amp;B</h3>\r\n[/fusion_text][/one_half][/fullwidth][fullwidth background_color=\"\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"30px\" padding_bottom=\"60px\" padding_left=\"0px\" padding_right=\"0px\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][one_half last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][fusion_text]\r\n<p style=\"text-align: justify;\">We are a homely \'down to earth\' country guest lodge, set on a farm surrounded by acres of beautiful hills, forests, &amp; dams in the Madwala Conservancy of Assagay, where horses still have the right of way on all roads. Our five bedrooms have a rustic charm offering the comforts of modern day life.</p>\r\n<p style=\"text-align: justify;\">Assagay Forest Lodge is owner managed, built in 2005 the lodge provides 5 cozy bedrooms with a large spacious and comfortable homely lounge, which leads onto a large deck area. Set on a 6 acre property in the Assagay Conservancy our lodge is nestled around trees, bushes, and beautiful gardens and a stream, allowing visitors to meander and relax. Guests seeking a quite, relaxing, homely experience will find our lodge the perfect choice away from home. There is a kitchen available should you wish to muster up a snack or quick meal, however breakfast is available on request.</p>\r\n[/fusion_text][/one_half][one_half last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][fusion_text]\r\n<p style=\"text-align: justify;\">The property boasts over 200 different species of birds and animals. The Lodge is situated on the 1000 Hills tourism route, on the edge of Hillcrest and is a perfect place from which one can launch to any one of the many fantastic destinations and game reserves in KwaZulu Natal, i.e. the Majestic Drakensberg Mountain Range, Shongweni Nature Reserve, Nagle Dam, Durban &amp; Beach Front. We are also the doorstep of one of KZN’s major horse riding venues namely, the Shongweni Horse Riding Club &amp; the Summerveld Horse Riding Academy, makes Assagay Lodge a perfect home away from home for the equestrian lovers. The peace &amp; tranquility will take you far away from the business of city life. Evenings are quiet and peaceful. This is a unique and memorable country experience.</p>\r\n[/fusion_text][/one_half][/fullwidth][fullwidth background_color=\"#f0f0ed\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"60px\" padding_bottom=\"45px\" padding_left=\"0px\" padding_right=\"0px\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][fusion_text]\r\n<h1 style=\"text-align: center;\">Gallery</h1>\r\n[/fusion_text][separator style_type=\"single\" top_margin=\"\" bottom_margin=\"40\" sep_color=\"#000000\" border_size=\"\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"170px\" alignment=\"\" class=\"\" id=\"\"][one_sixth last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][/one_sixth][two_third last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][fusion_text]\r\n<h3 style=\"text-align: center;\">The Lodge is open, spacious, comfortable and homely.</h3>\r\n[/fusion_text][/two_third][one_sixth last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][/one_sixth][separator style_type=\"none\" top_margin=\"20\" bottom_margin=\"\" sep_color=\"\" border_size=\"\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"100%\" alignment=\"\" class=\"\" id=\"\"][recent_works layout=\"grid\" picture_size=\"auto\" boxed_text=\"boxed\" filters=\"no\" columns=\"3\" column_spacing=\"12\" cat_slug=\"the-lodge\" exclude_cats=\"\" number_posts=\"6\" offset=\"\" excerpt_length=\"35\" strip_html=\"yes\" carousel_layout=\"title_on_rollover\" scroll_items=\"\" autoplay=\"no\" show_nav=\"yes\" mouse_scroll=\"no\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" class=\"\" id=\"\"][/recent_works][/fullwidth][fullwidth background_color=\"#ffffff\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"65px\" padding_bottom=\"65px\" padding_left=\"0px\" padding_right=\"0px\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][button link=\"/avada_demos/travel/our-destinations/\" color=\"default\" size=\"xlarge\" type=\"3d\" shape=\"round\" target=\"_self\" title=\"\" gradient_colors=\"#f0f0ed|#f0f0ed\" gradient_hover_colors=\"#6666a4|#6666a4\" accent_color=\"#ffffff\" accent_hover_color=\"#ffffff\" bevel_color=\"\" border_width=\"0px\" icon=\"\" icon_position=\"left\" icon_divider=\"no\" modal=\"\" animation_type=\"0\" animation_direction=\"left\" animation_speed=\"1\" alignment=\"center\" class=\"\" id=\"\"]View All Destinations[/button][/fullwidth][fullwidth background_color=\"#6666a4\" background_image=\"http://localhost/assagaylodge/wp-content/uploads/2015/08/Dam.jpg\" background_parallax=\"fixed\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"center center\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"yes\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"110px\" padding_bottom=\"100px\" padding_left=\"0px\" padding_right=\"0px\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][testimonials design=\"clean\" backgroundcolor=\"\" textcolor=\"\" random=\"\" class=\"\" id=\"\"][testimonial name=\"Pat Conroy\" avatar=\"image\" image=\"http://theme-fusion.com/avada_demos_xml/travel/wp-content/uploads/2015/04/testimonial1.jpg\" image_border_radius=\"50%\" company=\"\" link=\"http://www.google.com\" target=\"_self\"]“Once you travelled, the voyage never ends, but is played out over and over again in the quietest chambers. The mind can never break off from the journey.”[/testimonial][testimonial name=\"Mark Twain\" avatar=\"image\" image=\"http://theme-fusion.com/avada_demos_xml/travel/wp-content/uploads/2015/04/testimonial1.jpg\" image_border_radius=\"50%\" company=\"\" link=\"\" target=\"_self\"]“Twenty years from now you will be more disappointed by the things you didn’t do than by the ones you did do. So throw off the bowlines, sail away from the safe harbor. Catch the trade winds in your sails. Explore. Dream. Discover.”[/testimonial][/testimonials][/fullwidth][fullwidth background_color=\"\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"60px\" padding_bottom=\"35px\" padding_left=\"0px\" padding_right=\"0px\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][fusion_text]\r\n<h1 style=\"text-align: center;\">TRAVEL BLOG</h1>\r\n[/fusion_text][separator style_type=\"single\" top_margin=\"\" bottom_margin=\"20\" sep_color=\"#000000\" border_size=\"\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"170px\" alignment=\"\" class=\"\" id=\"\"][one_sixth last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][/one_sixth][two_third last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][fusion_text]\r\n<h3 style=\"text-align: center;\">When it comes to our advice we’re proud to say we’re different. We offer something a little more special.</h3>\r\n[/fusion_text][/two_third][one_sixth last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][/one_sixth][separator style_type=\"none\" top_margin=\"40\" bottom_margin=\"\" sep_color=\"\" border_size=\"\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"100%\" alignment=\"center\" class=\"\" id=\"\"][one_fifth last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][/one_fifth][three_fifth last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][blog number_posts=\"3\" offset=\"\" cat_slug=\"\" exclude_cats=\"\" title=\"yes\" title_link=\"yes\" thumbnail=\"yes\" excerpt=\"yes\" excerpt_length=\"25\" meta_all=\"no\" meta_author=\"no\" meta_categories=\"no\" meta_comments=\"no\" meta_date=\"no\" meta_link=\"no\" meta_tags=\"no\" paging=\"no\" scrolling=\"pagination\" strip_html=\"yes\" blog_grid_columns=\"2\" blog_grid_column_spacing=\"40\" layout=\"medium\" class=\"\" id=\"\"][/blog][/three_fifth][one_fifth last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][/one_fifth][/fullwidth][fullwidth background_color=\"\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding_top=\"20\" padding_bottom=\"20\" padding_left=\"0\" padding_right=\"0\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][/fullwidth][fullwidth background_color=\"\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding_top=\"20\" padding_bottom=\"20\" padding_left=\"0\" padding_right=\"0\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][/fullwidth]', 'Home', '', 'inherit', 'closed', 'closed', '', '7-revision-v1', '', '', '2015-09-04 12:04:28', '2015-09-04 10:04:28', '', 7, 'http://localhost/assagaylodge/7-revision-v1/', 0, 'revision', '', 0),
(881, 1, '2015-09-04 12:07:28', '2015-09-04 10:07:28', '', 'Entrance Lounge', '', 'inherit', 'closed', 'closed', '', '57-autosave-v1', '', '', '2015-09-04 12:07:28', '2015-09-04 10:07:28', '', 57, 'http://localhost/assagaylodge/57-autosave-v1/', 0, 'revision', '', 0),
(882, 1, '2015-09-04 12:07:45', '2015-09-04 10:07:45', '', 'Entrance Lounge', '', 'inherit', 'closed', 'closed', '', '57-revision-v1', '', '', '2015-09-04 12:07:45', '2015-09-04 10:07:45', '', 57, 'http://localhost/assagaylodge/57-revision-v1/', 0, 'revision', '', 0),
(883, 1, '2015-09-04 12:14:02', '2015-09-04 10:14:02', '', 'Main Lounge', '', 'inherit', 'open', 'closed', '', 'dsc01505', '', '', '2015-09-04 12:14:45', '2015-09-04 10:14:45', '', 55, 'http://localhost/assagaylodge/wp-content/uploads/2015/01/DSC01505.jpg', 0, 'attachment', 'image/jpeg', 0),
(884, 1, '2015-09-04 12:14:12', '2015-09-04 10:14:12', '', 'Dining Side Table', '', 'inherit', 'open', 'closed', '', 'dsc01497', '', '', '2015-09-04 15:15:09', '2015-09-04 13:15:09', '', 55, 'http://localhost/assagaylodge/wp-content/uploads/2015/01/DSC01497.jpg', 0, 'attachment', 'image/jpeg', 0),
(885, 1, '2015-09-04 12:14:20', '2015-09-04 10:14:20', '', 'DSC01499', '', 'inherit', 'open', 'closed', '', 'dsc01499', '', '', '2015-09-04 12:14:20', '2015-09-04 10:14:20', '', 55, 'http://localhost/assagaylodge/wp-content/uploads/2015/01/DSC01499.jpg', 0, 'attachment', 'image/jpeg', 0),
(886, 1, '2015-09-04 12:15:11', '2015-09-04 10:15:11', '', 'Main Lounge', '', 'inherit', 'closed', 'closed', '', '55-revision-v1', '', '', '2015-09-04 12:15:11', '2015-09-04 10:15:11', '', 55, 'http://localhost/assagaylodge/55-revision-v1/', 0, 'revision', '', 0),
(887, 1, '2015-09-04 12:17:55', '2015-09-04 10:17:55', '[fullwidth background_color=\"\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"90px\" padding_bottom=\"0px\" padding_left=\"0px\" padding_right=\"0px\" hundred_percent=\"yes\" equal_height_columns=\"yes\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][one_half last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"http://localhost/assagaylodge/wp-content/uploads/2015/01/1000hills.jpg\" background_repeat=\"no-repeat\" background_position=\"center center\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" class=\"\" id=\"\"][/one_half][one_half last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"30px\" margin_top=\"\" margin_bottom=\"0px\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" class=\"special\" id=\"\"][fusion_text]\r\n<h1>5 BEDROOM FAMILY LODGE</h1>\r\n[/fusion_text][separator style_type=\"single\" top_margin=\"0\" bottom_margin=\"30\" sep_color=\"#000000\" border_size=\"\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"170px\" alignment=\"left\" class=\"separator-left\" id=\"\"][fusion_text]\r\n<h3>Self-Catering/Service Options/B&amp;B</h3>\r\n[/fusion_text][/one_half][/fullwidth][fullwidth background_color=\"\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"30px\" padding_bottom=\"60px\" padding_left=\"0px\" padding_right=\"0px\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][one_half last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][fusion_text]\r\n<p style=\"text-align: justify;\">We are a homely \'down to earth\' country guest lodge, set on a farm surrounded by acres of beautiful hills, forests, &amp; dams in the Madwala Conservancy of Assagay, where horses still have the right of way on all roads. Our five bedrooms have a rustic charm offering the comforts of modern day life.</p>\r\n<p style=\"text-align: justify;\">Assagay Forest Lodge is owner managed, built in 2005 the lodge provides 5 cozy bedrooms with a large spacious and comfortable homely lounge, which leads onto a large deck area. Set on a 6 acre property in the Assagay Conservancy our lodge is nestled around trees, bushes, and beautiful gardens and a stream, allowing visitors to meander and relax. Guests seeking a quite, relaxing, homely experience will find our lodge the perfect choice away from home. There is a kitchen available should you wish to muster up a snack or quick meal, however breakfast is available on request.</p>\r\n[/fusion_text][/one_half][one_half last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][fusion_text]\r\n<p style=\"text-align: justify;\">The property boasts over 200 different species of birds and animals. The Lodge is situated on the 1000 Hills tourism route, on the edge of Hillcrest and is a perfect place from which one can launch to any one of the many fantastic destinations and game reserves in KwaZulu Natal, i.e. the Majestic Drakensberg Mountain Range, Shongweni Nature Reserve, Nagle Dam, Durban &amp; Beach Front. We are also the doorstep of one of KZN’s major horse riding venues namely, the Shongweni Horse Riding Club &amp; the Summerveld Horse Riding Academy, makes Assagay Lodge a perfect home away from home for the equestrian lovers. The peace &amp; tranquility will take you far away from the business of city life. Evenings are quiet and peaceful. This is a unique and memorable country experience.</p>\r\n[/fusion_text][/one_half][/fullwidth][fullwidth background_color=\"#f0f0ed\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"60px\" padding_bottom=\"45px\" padding_left=\"0px\" padding_right=\"0px\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][fusion_text]\r\n<h1 style=\"text-align: center;\">Gallery</h1>\r\n[/fusion_text][separator style_type=\"single\" top_margin=\"\" bottom_margin=\"40\" sep_color=\"#000000\" border_size=\"\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"170px\" alignment=\"\" class=\"\" id=\"\"][one_sixth last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][/one_sixth][two_third last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][fusion_text]\r\n<h3 style=\"text-align: center;\">The Lodge is open, spacious, comfortable and homely.</h3>\r\n[/fusion_text][/two_third][one_sixth last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][/one_sixth][separator style_type=\"none\" top_margin=\"20\" bottom_margin=\"\" sep_color=\"\" border_size=\"\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"100%\" alignment=\"\" class=\"\" id=\"\"][recent_works layout=\"grid\" picture_size=\"auto\" boxed_text=\"boxed\" filters=\"no\" columns=\"3\" column_spacing=\"12\" cat_slug=\"the-lodge\" exclude_cats=\"\" number_posts=\"9\" offset=\"\" excerpt_length=\"35\" strip_html=\"yes\" carousel_layout=\"title_on_rollover\" scroll_items=\"\" autoplay=\"no\" show_nav=\"yes\" mouse_scroll=\"no\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" class=\"\" id=\"\"][/recent_works][/fullwidth][fullwidth background_color=\"#ffffff\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"65px\" padding_bottom=\"65px\" padding_left=\"0px\" padding_right=\"0px\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][button link=\"/avada_demos/travel/our-destinations/\" color=\"default\" size=\"xlarge\" type=\"3d\" shape=\"round\" target=\"_self\" title=\"\" gradient_colors=\"#f0f0ed|#f0f0ed\" gradient_hover_colors=\"#6666a4|#6666a4\" accent_color=\"#ffffff\" accent_hover_color=\"#ffffff\" bevel_color=\"\" border_width=\"0px\" icon=\"\" icon_position=\"left\" icon_divider=\"no\" modal=\"\" animation_type=\"0\" animation_direction=\"left\" animation_speed=\"1\" alignment=\"center\" class=\"\" id=\"\"]View All Destinations[/button][/fullwidth][fullwidth background_color=\"#6666a4\" background_image=\"http://localhost/assagaylodge/wp-content/uploads/2015/08/Dam.jpg\" background_parallax=\"fixed\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"center center\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"yes\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"110px\" padding_bottom=\"100px\" padding_left=\"0px\" padding_right=\"0px\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][testimonials design=\"clean\" backgroundcolor=\"\" textcolor=\"\" random=\"\" class=\"\" id=\"\"][testimonial name=\"Pat Conroy\" avatar=\"image\" image=\"http://theme-fusion.com/avada_demos_xml/travel/wp-content/uploads/2015/04/testimonial1.jpg\" image_border_radius=\"50%\" company=\"\" link=\"http://www.google.com\" target=\"_self\"]“Once you travelled, the voyage never ends, but is played out over and over again in the quietest chambers. The mind can never break off from the journey.”[/testimonial][testimonial name=\"Mark Twain\" avatar=\"image\" image=\"http://theme-fusion.com/avada_demos_xml/travel/wp-content/uploads/2015/04/testimonial1.jpg\" image_border_radius=\"50%\" company=\"\" link=\"\" target=\"_self\"]“Twenty years from now you will be more disappointed by the things you didn’t do than by the ones you did do. So throw off the bowlines, sail away from the safe harbor. Catch the trade winds in your sails. Explore. Dream. Discover.”[/testimonial][/testimonials][/fullwidth][fullwidth background_color=\"\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"60px\" padding_bottom=\"35px\" padding_left=\"0px\" padding_right=\"0px\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][fusion_text]\r\n<h1 style=\"text-align: center;\">TRAVEL BLOG</h1>\r\n[/fusion_text][separator style_type=\"single\" top_margin=\"\" bottom_margin=\"20\" sep_color=\"#000000\" border_size=\"\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"170px\" alignment=\"\" class=\"\" id=\"\"][one_sixth last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][/one_sixth][two_third last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][fusion_text]\r\n<h3 style=\"text-align: center;\">When it comes to our advice we’re proud to say we’re different. We offer something a little more special.</h3>\r\n[/fusion_text][/two_third][one_sixth last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][/one_sixth][separator style_type=\"none\" top_margin=\"40\" bottom_margin=\"\" sep_color=\"\" border_size=\"\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"100%\" alignment=\"center\" class=\"\" id=\"\"][one_fifth last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][/one_fifth][three_fifth last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][blog number_posts=\"3\" offset=\"\" cat_slug=\"\" exclude_cats=\"\" title=\"yes\" title_link=\"yes\" thumbnail=\"yes\" excerpt=\"yes\" excerpt_length=\"25\" meta_all=\"no\" meta_author=\"no\" meta_categories=\"no\" meta_comments=\"no\" meta_date=\"no\" meta_link=\"no\" meta_tags=\"no\" paging=\"no\" scrolling=\"pagination\" strip_html=\"yes\" blog_grid_columns=\"2\" blog_grid_column_spacing=\"40\" layout=\"medium\" class=\"\" id=\"\"][/blog][/three_fifth][one_fifth last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][/one_fifth][/fullwidth][fullwidth background_color=\"\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding_top=\"20\" padding_bottom=\"20\" padding_left=\"0\" padding_right=\"0\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][/fullwidth][fullwidth background_color=\"\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding_top=\"20\" padding_bottom=\"20\" padding_left=\"0\" padding_right=\"0\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][/fullwidth]', 'Home', '', 'inherit', 'closed', 'closed', '', '7-revision-v1', '', '', '2015-09-04 12:17:55', '2015-09-04 10:17:55', '', 7, 'http://localhost/assagaylodge/7-revision-v1/', 0, 'revision', '', 0),
(888, 1, '2015-09-04 15:10:42', '2015-09-04 13:10:42', '', 'South Pacific', '', 'inherit', 'closed', 'closed', '', '53-autosave-v1', '', '', '2015-09-04 15:10:42', '2015-09-04 13:10:42', '', 53, 'http://localhost/assagaylodge/53-autosave-v1/', 0, 'revision', '', 0),
(889, 1, '2015-09-04 15:11:59', '2015-09-04 13:11:59', '', 'Main Lounge Table', '', 'inherit', 'closed', 'closed', '', '53-revision-v1', '', '', '2015-09-04 15:11:59', '2015-09-04 13:11:59', '', 53, 'http://localhost/assagaylodge/53-revision-v1/', 0, 'revision', '', 0),
(890, 1, '2015-09-04 15:14:14', '2015-09-04 13:14:14', '', 'Tibet &amp; Nepal', '', 'inherit', 'closed', 'closed', '', '50-autosave-v1', '', '', '2015-09-04 15:14:14', '2015-09-04 13:14:14', '', 50, 'http://localhost/assagaylodge/50-autosave-v1/', 0, 'revision', '', 0),
(891, 1, '2015-09-04 15:15:25', '2015-09-04 13:15:25', '', 'Dining Side Table', '', 'inherit', 'closed', 'closed', '', '50-revision-v1', '', '', '2015-09-04 15:15:25', '2015-09-04 13:15:25', '', 50, 'http://localhost/assagaylodge/50-revision-v1/', 0, 'revision', '', 0),
(892, 1, '2015-09-04 15:16:32', '2015-09-04 13:16:32', '', 'Dining & Reception Area', '', 'inherit', 'closed', 'closed', '', '364-revision-v1', '', '', '2015-09-04 15:16:32', '2015-09-04 13:16:32', '', 364, 'http://localhost/assagaylodge/364-revision-v1/', 0, 'revision', '', 0),
(893, 1, '2015-09-04 15:16:52', '2015-09-04 13:16:52', '', 'Lounge & Dining', '', 'inherit', 'closed', 'closed', '', '361-revision-v1', '', '', '2015-09-04 15:16:52', '2015-09-04 13:16:52', '', 361, 'http://localhost/assagaylodge/361-revision-v1/', 0, 'revision', '', 0),
(894, 1, '2015-09-04 15:17:48', '2015-09-04 13:17:48', '', 'Entrance Lounge & Kitchen', '', 'inherit', 'closed', 'closed', '', '358-revision-v1', '', '', '2015-09-04 15:17:48', '2015-09-04 13:17:48', '', 358, 'http://localhost/assagaylodge/358-revision-v1/', 0, 'revision', '', 0),
(895, 1, '2015-09-04 15:18:29', '2015-09-04 13:18:29', '', 'Dining & Enterance Lounge', '', 'inherit', 'closed', 'closed', '', '364-revision-v1', '', '', '2015-09-04 15:18:29', '2015-09-04 13:18:29', '', 364, 'http://localhost/assagaylodge/364-revision-v1/', 0, 'revision', '', 0);
INSERT INTO `wp_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(897, 1, '2015-09-04 15:24:48', '2015-09-04 13:24:48', '[fullwidth background_color=\"\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"90px\" padding_bottom=\"0px\" padding_left=\"0px\" padding_right=\"0px\" hundred_percent=\"yes\" equal_height_columns=\"yes\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][one_half last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"http://localhost/assagaylodge/wp-content/uploads/2015/01/1000hills.jpg\" background_repeat=\"no-repeat\" background_position=\"center center\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" class=\"\" id=\"\"][/one_half][one_half last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"30px\" margin_top=\"\" margin_bottom=\"0px\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" class=\"special\" id=\"\"][fusion_text]\r\n<h1>5 BEDROOM FAMILY LODGE</h1>\r\n[/fusion_text][separator style_type=\"single\" top_margin=\"0\" bottom_margin=\"30\" sep_color=\"#000000\" border_size=\"\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"170px\" alignment=\"left\" class=\"separator-left\" id=\"\"][fusion_text]\r\n<h3>Self-Catering/Service Options/B&amp;B</h3>\r\n[/fusion_text][/one_half][/fullwidth][fullwidth background_color=\"\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"30px\" padding_bottom=\"60px\" padding_left=\"0px\" padding_right=\"0px\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][one_half last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][fusion_text]\r\n<p style=\"text-align: justify;\">The property boasts over 200 different species of birds and animals. The Lodge is situated on the 1000 Hills tourism route, on the edge of Hillcrest and is a perfect place from which one can launch to any one of the many fantastic destinations and game reserves in KwaZulu Natal, i.e. the Majestic Drakensberg Mountain Range, Shongweni Nature Reserve, Nagle Dam, Durban &amp; Beach Front. We are also the doorstep of one of KZN’s major horse riding venues namely, the Shongweni Horse Riding Club &amp; the Summerveld Horse Riding Academy, makes Assagay Lodge a perfect home away from home for the equestrian lovers. The peace &amp; tranquility will take you far away from the business of city life. Evenings are quiet and peaceful. This is a unique and memorable country experience.</p>\r\n[/fusion_text][/one_half][one_half last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][fusion_text]\r\n<p style=\"text-align: justify;\">We are a homely \'down to earth\' country guest lodge, set on a farm surrounded by acres of beautiful hills, forests, &amp; dams in the Madwala Conservancy of Assagay, where horses still have the right of way on all roads. Our five bedrooms have a rustic charm offering the comforts of modern day life.</p>\r\n<p style=\"text-align: justify;\">Assagay Forest Lodge is owner managed, built in 2005 the lodge provides 5 cozy bedrooms with a large spacious and comfortable homely lounge, which leads onto a large deck area. Set on a 6 acre property in the Assagay Conservancy our lodge is nestled around trees, bushes, and beautiful gardens and a stream, allowing visitors to meander and relax. Guests seeking a quite, relaxing, homely experience will find our lodge the perfect choice away from home. There is a kitchen available should you wish to muster up a snack or quick meal, however breakfast is available on request.</p>\r\n[/fusion_text][/one_half][/fullwidth][fullwidth background_color=\"#f0f0ed\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"60px\" padding_bottom=\"45px\" padding_left=\"0px\" padding_right=\"0px\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][fusion_text]\r\n<h1 style=\"text-align: center;\">Gallery</h1>\r\n[/fusion_text][separator style_type=\"single\" top_margin=\"\" bottom_margin=\"40\" sep_color=\"#000000\" border_size=\"\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"170px\" alignment=\"\" class=\"\" id=\"\"][one_sixth last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][/one_sixth][two_third last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][fusion_text]\r\n<h3 style=\"text-align: center;\">The Lodge is open, spacious, comfortable and homely.</h3>\r\n[/fusion_text][/two_third][one_sixth last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][/one_sixth][separator style_type=\"none\" top_margin=\"20\" bottom_margin=\"\" sep_color=\"\" border_size=\"\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"100%\" alignment=\"\" class=\"\" id=\"\"][recent_works layout=\"grid\" picture_size=\"auto\" boxed_text=\"boxed\" filters=\"no\" columns=\"3\" column_spacing=\"12\" cat_slug=\"the-lodge\" exclude_cats=\"\" number_posts=\"9\" offset=\"\" excerpt_length=\"35\" strip_html=\"yes\" carousel_layout=\"title_on_rollover\" scroll_items=\"\" autoplay=\"no\" show_nav=\"yes\" mouse_scroll=\"no\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" class=\"\" id=\"\"][/recent_works][/fullwidth][fullwidth background_color=\"#ffffff\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"65px\" padding_bottom=\"65px\" padding_left=\"0px\" padding_right=\"0px\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][button link=\"/avada_demos/travel/our-destinations/\" color=\"default\" size=\"xlarge\" type=\"3d\" shape=\"round\" target=\"_self\" title=\"\" gradient_colors=\"#f0f0ed|#f0f0ed\" gradient_hover_colors=\"#6666a4|#6666a4\" accent_color=\"#ffffff\" accent_hover_color=\"#ffffff\" bevel_color=\"\" border_width=\"0px\" icon=\"\" icon_position=\"left\" icon_divider=\"no\" modal=\"\" animation_type=\"0\" animation_direction=\"left\" animation_speed=\"1\" alignment=\"center\" class=\"\" id=\"\"]View All Destinations[/button][/fullwidth][fullwidth background_color=\"#6666a4\" background_image=\"http://localhost/assagaylodge/wp-content/uploads/2015/08/Dam.jpg\" background_parallax=\"fixed\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"center center\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"yes\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"110px\" padding_bottom=\"100px\" padding_left=\"0px\" padding_right=\"0px\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][testimonials design=\"clean\" backgroundcolor=\"\" textcolor=\"\" random=\"\" class=\"\" id=\"\"][testimonial name=\"Pat Conroy\" avatar=\"image\" image=\"http://theme-fusion.com/avada_demos_xml/travel/wp-content/uploads/2015/04/testimonial1.jpg\" image_border_radius=\"50%\" company=\"\" link=\"http://www.google.com\" target=\"_self\"]“Once you travelled, the voyage never ends, but is played out over and over again in the quietest chambers. The mind can never break off from the journey.”[/testimonial][testimonial name=\"Mark Twain\" avatar=\"image\" image=\"http://theme-fusion.com/avada_demos_xml/travel/wp-content/uploads/2015/04/testimonial1.jpg\" image_border_radius=\"50%\" company=\"\" link=\"\" target=\"_self\"]“Twenty years from now you will be more disappointed by the things you didn’t do than by the ones you did do. So throw off the bowlines, sail away from the safe harbor. Catch the trade winds in your sails. Explore. Dream. Discover.”[/testimonial][/testimonials][/fullwidth][fullwidth background_color=\"\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"60px\" padding_bottom=\"35px\" padding_left=\"0px\" padding_right=\"0px\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][fusion_text]\r\n<h1 style=\"text-align: center;\">TRAVEL BLOG</h1>\r\n[/fusion_text][separator style_type=\"single\" top_margin=\"\" bottom_margin=\"20\" sep_color=\"#000000\" border_size=\"\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"170px\" alignment=\"\" class=\"\" id=\"\"][one_sixth last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][/one_sixth][two_third last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][fusion_text]\r\n<h3 style=\"text-align: center;\">When it comes to our advice we’re proud to say we’re different. We offer something a little more special.</h3>\r\n[/fusion_text][/two_third][one_sixth last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][/one_sixth][separator style_type=\"none\" top_margin=\"40\" bottom_margin=\"\" sep_color=\"\" border_size=\"\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"100%\" alignment=\"center\" class=\"\" id=\"\"][one_fifth last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][/one_fifth][three_fifth last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][blog number_posts=\"3\" offset=\"\" cat_slug=\"\" exclude_cats=\"\" title=\"yes\" title_link=\"yes\" thumbnail=\"yes\" excerpt=\"yes\" excerpt_length=\"25\" meta_all=\"no\" meta_author=\"no\" meta_categories=\"no\" meta_comments=\"no\" meta_date=\"no\" meta_link=\"no\" meta_tags=\"no\" paging=\"no\" scrolling=\"pagination\" strip_html=\"yes\" blog_grid_columns=\"2\" blog_grid_column_spacing=\"40\" layout=\"medium\" class=\"\" id=\"\"][/blog][/three_fifth][one_fifth last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][/one_fifth][/fullwidth][fullwidth background_color=\"\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding_top=\"20\" padding_bottom=\"20\" padding_left=\"0\" padding_right=\"0\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][/fullwidth][fullwidth background_color=\"\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding_top=\"20\" padding_bottom=\"20\" padding_left=\"0\" padding_right=\"0\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][/fullwidth]', 'Home', '', 'inherit', 'closed', 'closed', '', '7-revision-v1', '', '', '2015-09-04 15:24:48', '2015-09-04 13:24:48', '', 7, 'http://localhost/assagaylodge/7-revision-v1/', 0, 'revision', '', 0),
(898, 1, '2015-09-04 15:26:47', '2015-09-04 13:26:47', '', 'Dining & Entrance Lounge', '', 'inherit', 'closed', 'closed', '', '364-revision-v1', '', '', '2015-09-04 15:26:47', '2015-09-04 13:26:47', '', 364, 'http://localhost/assagaylodge/364-revision-v1/', 0, 'revision', '', 0),
(900, 1, '2015-09-04 15:49:26', '2015-09-04 13:49:26', '[fullwidth background_color=\"\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"90px\" padding_bottom=\"0px\" padding_left=\"0px\" padding_right=\"0px\" hundred_percent=\"yes\" equal_height_columns=\"yes\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][one_half last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"http://localhost/assagaylodge/wp-content/uploads/2015/08/Tha-Lodge.jpg\" background_repeat=\"no-repeat\" background_position=\"center center\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" class=\"\" id=\"\"][/one_half][one_half last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"30px\" margin_top=\"\" margin_bottom=\"0px\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" class=\"special\" id=\"\"][fusion_text]\r\n<h1>5 BEDROOM FAMILY LODGE</h1>\r\n[/fusion_text][separator style_type=\"single\" top_margin=\"0\" bottom_margin=\"30\" sep_color=\"#000000\" border_size=\"\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"170px\" alignment=\"left\" class=\"separator-left\" id=\"\"][fusion_text]\r\n<h3>Self-Catering/Service Options/B&amp;B</h3>\r\n[/fusion_text][/one_half][/fullwidth][fullwidth background_color=\"\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"30px\" padding_bottom=\"60px\" padding_left=\"0px\" padding_right=\"0px\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][one_half last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][fusion_text]\r\n<p style=\"text-align: justify;\">The property boasts over 200 different species of birds and animals. The Lodge is situated on the 1000 Hills tourism route, on the edge of Hillcrest and is a perfect place from which one can launch to any one of the many fantastic destinations and game reserves in KwaZulu Natal, i.e. the Majestic Drakensberg Mountain Range, Shongweni Nature Reserve, Nagle Dam, Durban &amp; Beach Front. We are also the doorstep of one of KZN’s major horse riding venues namely, the Shongweni Horse Riding Club &amp; the Summerveld Horse Riding Academy, makes Assagay Lodge a perfect home away from home for the equestrian lovers. The peace &amp; tranquility will take you far away from the business of city life. Evenings are quiet and peaceful. This is a unique and memorable country experience.</p>\r\n[/fusion_text][/one_half][one_half last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][fusion_text]\r\n<p style=\"text-align: justify;\">We are a homely \'down to earth\' country guest lodge, set on a farm surrounded by acres of beautiful hills, forests, &amp; dams in the Madwala Conservancy of Assagay, where horses still have the right of way on all roads. Our five bedrooms have a rustic charm offering the comforts of modern day life.</p>\r\n<p style=\"text-align: justify;\">Assagay Forest Lodge is owner managed, built in 2005 the lodge provides 5 cozy bedrooms with a large spacious and comfortable homely lounge, which leads onto a large deck area. Set on a 6 acre property in the Assagay Conservancy our lodge is nestled around trees, bushes, and beautiful gardens and a stream, allowing visitors to meander and relax. Guests seeking a quite, relaxing, homely experience will find our lodge the perfect choice away from home. There is a kitchen available should you wish to muster up a snack or quick meal, however breakfast is available on request.</p>\r\n[/fusion_text][/one_half][/fullwidth][fullwidth background_color=\"#f0f0ed\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"60px\" padding_bottom=\"45px\" padding_left=\"0px\" padding_right=\"0px\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][fusion_text]\r\n<h1 style=\"text-align: center;\">Gallery</h1>\r\n[/fusion_text][separator style_type=\"single\" top_margin=\"\" bottom_margin=\"40\" sep_color=\"#000000\" border_size=\"\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"170px\" alignment=\"\" class=\"\" id=\"\"][one_sixth last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][/one_sixth][two_third last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][fusion_text]\r\n<h3 style=\"text-align: center;\">The Lodge is open, spacious, comfortable and homely.</h3>\r\n[/fusion_text][/two_third][one_sixth last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][/one_sixth][separator style_type=\"none\" top_margin=\"20\" bottom_margin=\"\" sep_color=\"\" border_size=\"\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"100%\" alignment=\"\" class=\"\" id=\"\"][recent_works layout=\"grid\" picture_size=\"auto\" boxed_text=\"boxed\" filters=\"no\" columns=\"3\" column_spacing=\"12\" cat_slug=\"the-lodge\" exclude_cats=\"\" number_posts=\"9\" offset=\"\" excerpt_length=\"35\" strip_html=\"yes\" carousel_layout=\"title_on_rollover\" scroll_items=\"\" autoplay=\"no\" show_nav=\"yes\" mouse_scroll=\"no\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" class=\"\" id=\"\"][/recent_works][/fullwidth][fullwidth background_color=\"#ffffff\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"65px\" padding_bottom=\"65px\" padding_left=\"0px\" padding_right=\"0px\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][button link=\"/avada_demos/travel/our-destinations/\" color=\"default\" size=\"xlarge\" type=\"3d\" shape=\"round\" target=\"_self\" title=\"\" gradient_colors=\"#f0f0ed|#f0f0ed\" gradient_hover_colors=\"#6666a4|#6666a4\" accent_color=\"#ffffff\" accent_hover_color=\"#ffffff\" bevel_color=\"\" border_width=\"0px\" icon=\"\" icon_position=\"left\" icon_divider=\"no\" modal=\"\" animation_type=\"0\" animation_direction=\"left\" animation_speed=\"1\" alignment=\"center\" class=\"\" id=\"\"]View All Destinations[/button][/fullwidth][fullwidth background_color=\"#6666a4\" background_image=\"http://localhost/assagaylodge/wp-content/uploads/2015/08/Dam.jpg\" background_parallax=\"fixed\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"center center\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"yes\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"110px\" padding_bottom=\"100px\" padding_left=\"0px\" padding_right=\"0px\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][testimonials design=\"clean\" backgroundcolor=\"\" textcolor=\"\" random=\"\" class=\"\" id=\"\"][testimonial name=\"Pat Conroy\" avatar=\"image\" image=\"http://theme-fusion.com/avada_demos_xml/travel/wp-content/uploads/2015/04/testimonial1.jpg\" image_border_radius=\"50%\" company=\"\" link=\"http://www.google.com\" target=\"_self\"]“Once you travelled, the voyage never ends, but is played out over and over again in the quietest chambers. The mind can never break off from the journey.”[/testimonial][testimonial name=\"Mark Twain\" avatar=\"image\" image=\"http://theme-fusion.com/avada_demos_xml/travel/wp-content/uploads/2015/04/testimonial1.jpg\" image_border_radius=\"50%\" company=\"\" link=\"\" target=\"_self\"]“Twenty years from now you will be more disappointed by the things you didn’t do than by the ones you did do. So throw off the bowlines, sail away from the safe harbor. Catch the trade winds in your sails. Explore. Dream. Discover.”[/testimonial][/testimonials][/fullwidth][fullwidth background_color=\"\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"60px\" padding_bottom=\"35px\" padding_left=\"0px\" padding_right=\"0px\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][fusion_text]\r\n<h1 style=\"text-align: center;\">TRAVEL BLOG</h1>\r\n[/fusion_text][separator style_type=\"single\" top_margin=\"\" bottom_margin=\"20\" sep_color=\"#000000\" border_size=\"\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"170px\" alignment=\"\" class=\"\" id=\"\"][one_sixth last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][/one_sixth][two_third last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][fusion_text]\r\n<h3 style=\"text-align: center;\">When it comes to our advice we’re proud to say we’re different. We offer something a little more special.</h3>\r\n[/fusion_text][/two_third][one_sixth last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][/one_sixth][separator style_type=\"none\" top_margin=\"40\" bottom_margin=\"\" sep_color=\"\" border_size=\"\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"100%\" alignment=\"center\" class=\"\" id=\"\"][one_fifth last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][/one_fifth][three_fifth last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][blog number_posts=\"3\" offset=\"\" cat_slug=\"\" exclude_cats=\"\" title=\"yes\" title_link=\"yes\" thumbnail=\"yes\" excerpt=\"yes\" excerpt_length=\"25\" meta_all=\"no\" meta_author=\"no\" meta_categories=\"no\" meta_comments=\"no\" meta_date=\"no\" meta_link=\"no\" meta_tags=\"no\" paging=\"no\" scrolling=\"pagination\" strip_html=\"yes\" blog_grid_columns=\"2\" blog_grid_column_spacing=\"40\" layout=\"medium\" class=\"\" id=\"\"][/blog][/three_fifth][one_fifth last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][/one_fifth][/fullwidth][fullwidth background_color=\"\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding_top=\"20\" padding_bottom=\"20\" padding_left=\"0\" padding_right=\"0\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][/fullwidth][fullwidth background_color=\"\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding_top=\"20\" padding_bottom=\"20\" padding_left=\"0\" padding_right=\"0\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][/fullwidth]', 'Home', '', 'inherit', 'closed', 'closed', '', '7-revision-v1', '', '', '2015-09-04 15:49:26', '2015-09-04 13:49:26', '', 7, 'http://localhost/assagaylodge/7-revision-v1/', 0, 'revision', '', 0),
(901, 1, '2016-06-15 16:30:25', '2016-06-15 14:30:25', '[fullwidth background_color=\"\" background_image=\"http://msla.co.za/lodge/wp-content/uploads/2015/01/about-parallax11.jpg\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"center center\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"20\" padding_bottom=\"20\" padding_left=\"0\" padding_right=\"0\" hundred_percent=\"yes\" equal_height_columns=\"yes\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][one_sixth last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][/one_sixth][two_third last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][fusion_text][easy_form booknow style=\"none\" submit=\"Reservation successfully sent\" subsubmit=\"Please continue.\" credit=\"Reservation complete\" subcredit=\"You\'ll receive an email with the reservations details\" resourcename=\"Room\" pers=\"1\" resource=\"854\"][/fusion_text][/two_third][one_sixth last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][/one_sixth][/fullwidth][fullwidth background_color=\"\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding_top=\"20\" padding_bottom=\"20\" padding_left=\"0\" padding_right=\"0\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][recent_works layout=\"grid\" picture_size=\"fixed\" boxed_text=\"unboxed\" filters=\"yes\" columns=\"4\" column_spacing=\"12\" cat_slug=\"\" exclude_cats=\"\" number_posts=\"8\" offset=\"\" excerpt_length=\"35\" strip_html=\"yes\" carousel_layout=\"title_on_rollover\" scroll_items=\"\" autoplay=\"no\" show_nav=\"yes\" mouse_scroll=\"no\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" class=\"\" id=\"\"][/recent_works][/fullwidth]', 'Book Now', '', 'inherit', 'closed', 'closed', '', '855-autosave-v1', '', '', '2016-06-15 16:30:25', '2016-06-15 14:30:25', '', 855, 'http://localhost/assagaylodge/855-autosave-v1/', 0, 'revision', '', 0),
(902, 1, '2015-09-05 10:53:44', '2015-09-05 08:53:44', '[easy_form booknow style=\"none\" submit=\"Reservation successfully sent\" subsubmit=\"Please continue.\" credit=\"Reservation complete\" subcredit=\"You\'ll receive an email with the reservations details\" resourcename=\"Room\" price=\"1\" pers=\"1\" resource=\"854\"]\r\n\r\n&nbsp;\r\n\r\n&nbsp;', 'Book Now', '', 'inherit', 'closed', 'closed', '', '855-revision-v1', '', '', '2015-09-05 10:53:44', '2015-09-05 08:53:44', '', 855, 'http://localhost/assagaylodge/855-revision-v1/', 0, 'revision', '', 0);
INSERT INTO `wp_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(904, 1, '2015-09-07 10:09:51', '2015-09-07 08:09:51', '[fullwidth background_color=\"\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"90px\" padding_bottom=\"0px\" padding_left=\"0px\" padding_right=\"0px\" hundred_percent=\"yes\" equal_height_columns=\"yes\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][one_half last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"http://localhost/assagaylodge/wp-content/uploads/2015/08/Tha-Lodge.jpg\" background_repeat=\"no-repeat\" background_position=\"center center\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" class=\"\" id=\"\"][/one_half][one_half last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"30px\" margin_top=\"\" margin_bottom=\"0px\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" class=\"special\" id=\"\"][fusion_text]\r\n<h1>5 BEDROOM FAMILY LODGE</h1>\r\n[/fusion_text][separator style_type=\"single\" top_margin=\"0\" bottom_margin=\"30\" sep_color=\"#000000\" border_size=\"\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"170px\" alignment=\"left\" class=\"separator-left\" id=\"\"][fusion_text]\r\n<h3>Self-Catering/Service Options/B&amp;B</h3>\r\n[/fusion_text][/one_half][/fullwidth][fullwidth background_color=\"\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"30px\" padding_bottom=\"60px\" padding_left=\"0px\" padding_right=\"0px\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][one_half last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][fusion_text]\r\n<p style=\"text-align: justify;\">The property boasts over 200 different species of birds and animals. The Lodge is situated on the 1000 Hills tourism route, on the edge of Hillcrest and is a perfect place from which one can launch to any one of the many fantastic destinations and game reserves in KwaZulu Natal, i.e. the Majestic Drakensberg Mountain Range, Shongweni Nature Reserve, Nagle Dam, Durban &amp; Beach Front. We are also the doorstep of one of KZN’s major horse riding venues namely, the Shongweni Horse Riding Club &amp; the Summerveld Horse Riding Academy, makes Assagay Lodge a perfect home away from home for the equestrian lovers. The peace &amp; tranquility will take you far away from the business of city life. Evenings are quiet and peaceful. This is a unique and memorable country experience.</p>\r\n[/fusion_text][/one_half][one_half last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][fusion_text]\r\n<p style=\"text-align: justify;\">We are a homely \'down to earth\' country guest lodge, set on a farm surrounded by acres of beautiful hills, forests, &amp; dams in the Madwala Conservancy of Assagay, where horses still have the right of way on all roads. Our five bedrooms have a rustic charm offering the comforts of modern day life.</p>\r\n<p style=\"text-align: justify;\">Assagay Forest Lodge is owner managed, built in 2005 the lodge provides 5 cozy bedrooms with a large spacious and comfortable homely lounge, which leads onto a large deck area. Set on a 6 acre property in the Assagay Conservancy our lodge is nestled around trees, bushes, and beautiful gardens and a stream, allowing visitors to meander and relax. Guests seeking a quite, relaxing, homely experience will find our lodge the perfect choice away from home. There is a kitchen available should you wish to muster up a snack or quick meal, however breakfast is available on request.</p>\r\n[/fusion_text][/one_half][/fullwidth][fullwidth background_color=\"#f0f0ed\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"60px\" padding_bottom=\"45px\" padding_left=\"0px\" padding_right=\"0px\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][fusion_text]\r\n<h1 style=\"text-align: center;\">Gallery</h1>\r\n[/fusion_text][separator style_type=\"single\" top_margin=\"\" bottom_margin=\"40\" sep_color=\"#000000\" border_size=\"\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"170px\" alignment=\"\" class=\"\" id=\"\"][one_sixth last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][/one_sixth][two_third last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][fusion_text]\r\n<h3 style=\"text-align: center;\">The Lodge is open, spacious, comfortable and homely.</h3>\r\n[/fusion_text][/two_third][one_sixth last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][/one_sixth][separator style_type=\"none\" top_margin=\"20\" bottom_margin=\"\" sep_color=\"\" border_size=\"\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"100%\" alignment=\"\" class=\"\" id=\"\"][recent_works layout=\"grid\" picture_size=\"auto\" boxed_text=\"boxed\" filters=\"no\" columns=\"3\" column_spacing=\"12\" cat_slug=\"the-lodge\" exclude_cats=\"\" number_posts=\"9\" offset=\"\" excerpt_length=\"35\" strip_html=\"yes\" carousel_layout=\"title_on_rollover\" scroll_items=\"\" autoplay=\"no\" show_nav=\"yes\" mouse_scroll=\"no\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" class=\"\" id=\"\"][/recent_works][/fullwidth][fullwidth background_color=\"#ffffff\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"65px\" padding_bottom=\"65px\" padding_left=\"0px\" padding_right=\"0px\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][button link=\"/avada_demos/travel/our-destinations/\" color=\"default\" size=\"xlarge\" type=\"3d\" shape=\"round\" target=\"_self\" title=\"\" gradient_colors=\"#f0f0ed|#f0f0ed\" gradient_hover_colors=\"#6666a4|#6666a4\" accent_color=\"#ffffff\" accent_hover_color=\"#ffffff\" bevel_color=\"\" border_width=\"0px\" icon=\"\" icon_position=\"left\" icon_divider=\"no\" modal=\"\" animation_type=\"0\" animation_direction=\"left\" animation_speed=\"1\" alignment=\"center\" class=\"\" id=\"\"]View All Destinations[/button][/fullwidth][fullwidth background_color=\"#6666a4\" background_image=\"http://localhost/assagaylodge/wp-content/uploads/2015/01/DSC01510.jpg\" background_parallax=\"fixed\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"center center\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"yes\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"110px\" padding_bottom=\"100px\" padding_left=\"0px\" padding_right=\"0px\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][testimonials design=\"clean\" backgroundcolor=\"\" textcolor=\"\" random=\"\" class=\"\" id=\"\"][testimonial name=\"Pat Conroy\" avatar=\"image\" image=\"http://theme-fusion.com/avada_demos_xml/travel/wp-content/uploads/2015/04/testimonial1.jpg\" image_border_radius=\"50%\" company=\"\" link=\"http://www.google.com\" target=\"_self\"]“Once you travelled, the voyage never ends, but is played out over and over again in the quietest chambers. The mind can never break off from the journey.”[/testimonial][testimonial name=\"Mark Twain\" avatar=\"image\" image=\"http://theme-fusion.com/avada_demos_xml/travel/wp-content/uploads/2015/04/testimonial1.jpg\" image_border_radius=\"50%\" company=\"\" link=\"\" target=\"_self\"]“Twenty years from now you will be more disappointed by the things you didn’t do than by the ones you did do. So throw off the bowlines, sail away from the safe harbor. Catch the trade winds in your sails. Explore. Dream. Discover.”[/testimonial][/testimonials][/fullwidth][fullwidth background_color=\"\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"60px\" padding_bottom=\"35px\" padding_left=\"0px\" padding_right=\"0px\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][fusion_text]\r\n<h1 style=\"text-align: center;\">TRAVEL BLOG</h1>\r\n[/fusion_text][separator style_type=\"single\" top_margin=\"\" bottom_margin=\"20\" sep_color=\"#000000\" border_size=\"\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"170px\" alignment=\"\" class=\"\" id=\"\"][one_sixth last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][/one_sixth][two_third last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][fusion_text]\r\n<h3 style=\"text-align: center;\">When it comes to our advice we’re proud to say we’re different. We offer something a little more special.</h3>\r\n[/fusion_text][/two_third][one_sixth last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][/one_sixth][separator style_type=\"none\" top_margin=\"40\" bottom_margin=\"\" sep_color=\"\" border_size=\"\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"100%\" alignment=\"center\" class=\"\" id=\"\"][one_fifth last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][/one_fifth][three_fifth last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][blog number_posts=\"3\" offset=\"\" cat_slug=\"\" exclude_cats=\"\" title=\"yes\" title_link=\"yes\" thumbnail=\"yes\" excerpt=\"yes\" excerpt_length=\"25\" meta_all=\"no\" meta_author=\"no\" meta_categories=\"no\" meta_comments=\"no\" meta_date=\"no\" meta_link=\"no\" meta_tags=\"no\" paging=\"no\" scrolling=\"pagination\" strip_html=\"yes\" blog_grid_columns=\"2\" blog_grid_column_spacing=\"40\" layout=\"medium\" class=\"\" id=\"\"][/blog][/three_fifth][one_fifth last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][/one_fifth][/fullwidth][fullwidth background_color=\"\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding_top=\"20\" padding_bottom=\"20\" padding_left=\"0\" padding_right=\"0\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][/fullwidth][fullwidth background_color=\"\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding_top=\"20\" padding_bottom=\"20\" padding_left=\"0\" padding_right=\"0\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][/fullwidth]', 'Home', '', 'inherit', 'closed', 'closed', '', '7-revision-v1', '', '', '2015-09-07 10:09:51', '2015-09-07 08:09:51', '', 7, 'http://localhost/assagaylodge/7-revision-v1/', 0, 'revision', '', 0),
(906, 1, '2015-09-07 10:18:52', '2015-09-07 08:18:52', '[fullwidth background_color=\"\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"90px\" padding_bottom=\"0px\" padding_left=\"0px\" padding_right=\"0px\" hundred_percent=\"yes\" equal_height_columns=\"yes\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][one_half last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"http://localhost/assagaylodge/wp-content/uploads/2015/08/Tha-Lodge.jpg\" background_repeat=\"no-repeat\" background_position=\"center center\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" class=\"\" id=\"\"][/one_half][one_half last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"30px\" margin_top=\"\" margin_bottom=\"0px\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" class=\"special\" id=\"\"][fusion_text]\r\n<h1>5 BEDROOM FAMILY LODGE</h1>\r\n[/fusion_text][separator style_type=\"single\" top_margin=\"0\" bottom_margin=\"30\" sep_color=\"#000000\" border_size=\"\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"170px\" alignment=\"left\" class=\"separator-left\" id=\"\"][fusion_text]\r\n<h3>Self-Catering/Service Options/B&amp;B</h3>\r\n[/fusion_text][/one_half][/fullwidth][fullwidth background_color=\"\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"30px\" padding_bottom=\"60px\" padding_left=\"0px\" padding_right=\"0px\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][one_half last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][fusion_text]\r\n<p style=\"text-align: justify;\">The property boasts over 200 different species of birds and animals. The Lodge is situated on the 1000 Hills tourism route, on the edge of Hillcrest and is a perfect place from which one can launch to any one of the many fantastic destinations and game reserves in KwaZulu Natal, i.e. the Majestic Drakensberg Mountain Range, Shongweni Nature Reserve, Nagle Dam, Durban &amp; Beach Front. We are also the doorstep of one of KZN’s major horse riding venues namely, the Shongweni Horse Riding Club &amp; the Summerveld Horse Riding Academy, makes Assagay Lodge a perfect home away from home for the equestrian lovers. The peace &amp; tranquility will take you far away from the business of city life. Evenings are quiet and peaceful. This is a unique and memorable country experience.</p>\r\n[/fusion_text][/one_half][one_half last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][fusion_text]\r\n<p style=\"text-align: justify;\">We are a homely \'down to earth\' country guest lodge, set on a farm surrounded by acres of beautiful hills, forests, &amp; dams in the Madwala Conservancy of Assagay, where horses still have the right of way on all roads. Our five bedrooms have a rustic charm offering the comforts of modern day life.</p>\r\n<p style=\"text-align: justify;\">Assagay Forest Lodge is owner managed, built in 2005 the lodge provides 5 cozy bedrooms with a large spacious and comfortable homely lounge, which leads onto a large deck area. Set on a 6 acre property in the Assagay Conservancy our lodge is nestled around trees, bushes, and beautiful gardens and a stream, allowing visitors to meander and relax. Guests seeking a quite, relaxing, homely experience will find our lodge the perfect choice away from home. There is a kitchen available should you wish to muster up a snack or quick meal, however breakfast is available on request.</p>\r\n[/fusion_text][/one_half][/fullwidth][fullwidth background_color=\"#f0f0ed\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"60px\" padding_bottom=\"45px\" padding_left=\"0px\" padding_right=\"0px\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][fusion_text]\r\n<h1 style=\"text-align: center;\">Gallery</h1>\r\n[/fusion_text][separator style_type=\"single\" top_margin=\"\" bottom_margin=\"40\" sep_color=\"#000000\" border_size=\"\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"170px\" alignment=\"\" class=\"\" id=\"\"][one_sixth last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][/one_sixth][two_third last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][fusion_text]\r\n<h3 style=\"text-align: center;\">The Lodge is open, spacious, comfortable and homely.</h3>\r\n[/fusion_text][/two_third][one_sixth last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][/one_sixth][separator style_type=\"none\" top_margin=\"20\" bottom_margin=\"\" sep_color=\"\" border_size=\"\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"100%\" alignment=\"\" class=\"\" id=\"\"][recent_works layout=\"grid\" picture_size=\"auto\" boxed_text=\"boxed\" filters=\"no\" columns=\"3\" column_spacing=\"12\" cat_slug=\"the-lodge\" exclude_cats=\"\" number_posts=\"9\" offset=\"\" excerpt_length=\"35\" strip_html=\"yes\" carousel_layout=\"title_on_rollover\" scroll_items=\"\" autoplay=\"no\" show_nav=\"yes\" mouse_scroll=\"no\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" class=\"\" id=\"\"][/recent_works][/fullwidth][fullwidth background_color=\"#ffffff\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"65px\" padding_bottom=\"65px\" padding_left=\"0px\" padding_right=\"0px\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][button link=\"/avada_demos/travel/our-destinations/\" color=\"default\" size=\"xlarge\" type=\"3d\" shape=\"round\" target=\"_self\" title=\"\" gradient_colors=\"#f0f0ed|#f0f0ed\" gradient_hover_colors=\"#6666a4|#6666a4\" accent_color=\"#ffffff\" accent_hover_color=\"#ffffff\" bevel_color=\"\" border_width=\"0px\" icon=\"\" icon_position=\"left\" icon_divider=\"no\" modal=\"\" animation_type=\"0\" animation_direction=\"left\" animation_speed=\"1\" alignment=\"center\" class=\"\" id=\"\"]View All Destinations[/button][/fullwidth][fullwidth background_color=\"#6666a4\" background_image=\"http://localhost/assagaylodge/wp-content/uploads/2015/01/DSC01510-1148-x-764.jpg\" background_parallax=\"fixed\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"center center\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"yes\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"110px\" padding_bottom=\"100px\" padding_left=\"0px\" padding_right=\"0px\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][testimonials design=\"clean\" backgroundcolor=\"\" textcolor=\"\" random=\"\" class=\"\" id=\"\"][testimonial name=\"Pat Conroy\" avatar=\"image\" image=\"http://theme-fusion.com/avada_demos_xml/travel/wp-content/uploads/2015/04/testimonial1.jpg\" image_border_radius=\"50%\" company=\"\" link=\"http://www.google.com\" target=\"_self\"]“Once you travelled, the voyage never ends, but is played out over and over again in the quietest chambers. The mind can never break off from the journey.”[/testimonial][testimonial name=\"Mark Twain\" avatar=\"image\" image=\"http://theme-fusion.com/avada_demos_xml/travel/wp-content/uploads/2015/04/testimonial1.jpg\" image_border_radius=\"50%\" company=\"\" link=\"\" target=\"_self\"]“Twenty years from now you will be more disappointed by the things you didn’t do than by the ones you did do. So throw off the bowlines, sail away from the safe harbor. Catch the trade winds in your sails. Explore. Dream. Discover.”[/testimonial][/testimonials][/fullwidth][fullwidth background_color=\"\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"60px\" padding_bottom=\"35px\" padding_left=\"0px\" padding_right=\"0px\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][fusion_text]\r\n<h1 style=\"text-align: center;\">TRAVEL BLOG</h1>\r\n[/fusion_text][separator style_type=\"single\" top_margin=\"\" bottom_margin=\"20\" sep_color=\"#000000\" border_size=\"\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"170px\" alignment=\"\" class=\"\" id=\"\"][one_sixth last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][/one_sixth][two_third last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][fusion_text]\r\n<h3 style=\"text-align: center;\">When it comes to our advice we’re proud to say we’re different. We offer something a little more special.</h3>\r\n[/fusion_text][/two_third][one_sixth last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][/one_sixth][separator style_type=\"none\" top_margin=\"40\" bottom_margin=\"\" sep_color=\"\" border_size=\"\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"100%\" alignment=\"center\" class=\"\" id=\"\"][one_fifth last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][/one_fifth][three_fifth last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][blog number_posts=\"3\" offset=\"\" cat_slug=\"\" exclude_cats=\"\" title=\"yes\" title_link=\"yes\" thumbnail=\"yes\" excerpt=\"yes\" excerpt_length=\"25\" meta_all=\"no\" meta_author=\"no\" meta_categories=\"no\" meta_comments=\"no\" meta_date=\"no\" meta_link=\"no\" meta_tags=\"no\" paging=\"no\" scrolling=\"pagination\" strip_html=\"yes\" blog_grid_columns=\"2\" blog_grid_column_spacing=\"40\" layout=\"medium\" class=\"\" id=\"\"][/blog][/three_fifth][one_fifth last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][/one_fifth][/fullwidth][fullwidth background_color=\"\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding_top=\"20\" padding_bottom=\"20\" padding_left=\"0\" padding_right=\"0\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][/fullwidth][fullwidth background_color=\"\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding_top=\"20\" padding_bottom=\"20\" padding_left=\"0\" padding_right=\"0\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][/fullwidth]', 'Home', '', 'inherit', 'closed', 'closed', '', '7-revision-v1', '', '', '2015-09-07 10:18:52', '2015-09-07 08:18:52', '', 7, 'http://localhost/assagaylodge/7-revision-v1/', 0, 'revision', '', 0),
(907, 1, '2015-09-07 10:25:06', '2015-09-07 08:25:06', '', 'DSC01516 (1148 x 764)', '', 'inherit', 'open', 'closed', '', 'dsc01516-1148-x-764', '', '', '2015-09-07 10:25:06', '2015-09-07 08:25:06', '', 7, 'http://localhost/assagaylodge/wp-content/uploads/2015/01/DSC01516-1148-x-764.jpg', 0, 'attachment', 'image/jpeg', 0);
INSERT INTO `wp_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(908, 1, '2015-09-07 10:28:28', '2015-09-07 08:28:28', '[fullwidth background_color=\"\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"90px\" padding_bottom=\"0px\" padding_left=\"0px\" padding_right=\"0px\" hundred_percent=\"yes\" equal_height_columns=\"yes\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][one_half last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"http://localhost/assagaylodge/wp-content/uploads/2015/08/Tha-Lodge.jpg\" background_repeat=\"no-repeat\" background_position=\"center center\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" class=\"\" id=\"\"][/one_half][one_half last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"30px\" margin_top=\"\" margin_bottom=\"0px\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" class=\"special\" id=\"\"][fusion_text]\r\n<h1>5 BEDROOM FAMILY LODGE</h1>\r\n[/fusion_text][separator style_type=\"single\" top_margin=\"0\" bottom_margin=\"30\" sep_color=\"#000000\" border_size=\"\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"170px\" alignment=\"left\" class=\"separator-left\" id=\"\"][fusion_text]\r\n<h3>Self-Catering/Service Options/B&amp;B</h3>\r\n[/fusion_text][/one_half][/fullwidth][fullwidth background_color=\"\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"30px\" padding_bottom=\"60px\" padding_left=\"0px\" padding_right=\"0px\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][one_half last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][fusion_text]\r\n<p style=\"text-align: justify;\">The property boasts over 200 different species of birds and animals. The Lodge is situated on the 1000 Hills tourism route, on the edge of Hillcrest and is a perfect place from which one can launch to any one of the many fantastic destinations and game reserves in KwaZulu Natal, i.e. the Majestic Drakensberg Mountain Range, Shongweni Nature Reserve, Nagle Dam, Durban &amp; Beach Front. We are also the doorstep of one of KZN’s major horse riding venues namely, the Shongweni Horse Riding Club &amp; the Summerveld Horse Riding Academy, makes Assagay Lodge a perfect home away from home for the equestrian lovers. The peace &amp; tranquility will take you far away from the business of city life. Evenings are quiet and peaceful. This is a unique and memorable country experience.</p>\r\n[/fusion_text][/one_half][one_half last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][fusion_text]\r\n<p style=\"text-align: justify;\">We are a homely \'down to earth\' country guest lodge, set on a farm surrounded by acres of beautiful hills, forests, &amp; dams in the Madwala Conservancy of Assagay, where horses still have the right of way on all roads. Our five bedrooms have a rustic charm offering the comforts of modern day life.</p>\r\n<p style=\"text-align: justify;\">Assagay Forest Lodge is owner managed, built in 2005 the lodge provides 5 cozy bedrooms with a large spacious and comfortable homely lounge, which leads onto a large deck area. Set on a 6 acre property in the Assagay Conservancy our lodge is nestled around trees, bushes, and beautiful gardens and a stream, allowing visitors to meander and relax. Guests seeking a quite, relaxing, homely experience will find our lodge the perfect choice away from home. There is a kitchen available should you wish to muster up a snack or quick meal, however breakfast is available on request.</p>\r\n[/fusion_text][/one_half][/fullwidth][fullwidth background_color=\"#f0f0ed\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"60px\" padding_bottom=\"45px\" padding_left=\"0px\" padding_right=\"0px\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][fusion_text]\r\n<h1 style=\"text-align: center;\">Gallery</h1>\r\n[/fusion_text][separator style_type=\"single\" top_margin=\"\" bottom_margin=\"40\" sep_color=\"#000000\" border_size=\"\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"170px\" alignment=\"\" class=\"\" id=\"\"][one_sixth last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][/one_sixth][two_third last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][fusion_text]\r\n<h3 style=\"text-align: center;\">The Lodge is open, spacious, comfortable and homely.</h3>\r\n[/fusion_text][/two_third][one_sixth last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][/one_sixth][separator style_type=\"none\" top_margin=\"20\" bottom_margin=\"\" sep_color=\"\" border_size=\"\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"100%\" alignment=\"\" class=\"\" id=\"\"][recent_works layout=\"grid\" picture_size=\"auto\" boxed_text=\"boxed\" filters=\"no\" columns=\"3\" column_spacing=\"12\" cat_slug=\"the-lodge\" exclude_cats=\"\" number_posts=\"9\" offset=\"\" excerpt_length=\"35\" strip_html=\"yes\" carousel_layout=\"title_on_rollover\" scroll_items=\"\" autoplay=\"no\" show_nav=\"yes\" mouse_scroll=\"no\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" class=\"\" id=\"\"][/recent_works][/fullwidth][fullwidth background_color=\"#ffffff\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"65px\" padding_bottom=\"65px\" padding_left=\"0px\" padding_right=\"0px\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][button link=\"/avada_demos/travel/our-destinations/\" color=\"default\" size=\"xlarge\" type=\"3d\" shape=\"round\" target=\"_self\" title=\"\" gradient_colors=\"#f0f0ed|#f0f0ed\" gradient_hover_colors=\"#6666a4|#6666a4\" accent_color=\"#ffffff\" accent_hover_color=\"#ffffff\" bevel_color=\"\" border_width=\"0px\" icon=\"\" icon_position=\"left\" icon_divider=\"no\" modal=\"\" animation_type=\"0\" animation_direction=\"left\" animation_speed=\"1\" alignment=\"center\" class=\"\" id=\"\"]View All Destinations[/button][/fullwidth][fullwidth background_color=\"#6666a4\" background_image=\"http://localhost/assagaylodge/wp-content/uploads/2015/01/DSC01516-1148-x-764.jpg\" background_parallax=\"fixed\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"center center\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"yes\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"110px\" padding_bottom=\"100px\" padding_left=\"0px\" padding_right=\"0px\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][testimonials design=\"clean\" backgroundcolor=\"\" textcolor=\"\" random=\"\" class=\"\" id=\"\"][testimonial name=\"Pat Conroy\" avatar=\"image\" image=\"http://theme-fusion.com/avada_demos_xml/travel/wp-content/uploads/2015/04/testimonial1.jpg\" image_border_radius=\"50%\" company=\"\" link=\"http://www.google.com\" target=\"_self\"]“Once you travelled, the voyage never ends, but is played out over and over again in the quietest chambers. The mind can never break off from the journey.”[/testimonial][testimonial name=\"Mark Twain\" avatar=\"image\" image=\"http://theme-fusion.com/avada_demos_xml/travel/wp-content/uploads/2015/04/testimonial1.jpg\" image_border_radius=\"50%\" company=\"\" link=\"\" target=\"_self\"]“Twenty years from now you will be more disappointed by the things you didn’t do than by the ones you did do. So throw off the bowlines, sail away from the safe harbor. Catch the trade winds in your sails. Explore. Dream. Discover.”[/testimonial][/testimonials][/fullwidth][fullwidth background_color=\"\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"60px\" padding_bottom=\"35px\" padding_left=\"0px\" padding_right=\"0px\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][fusion_text]\r\n<h1 style=\"text-align: center;\">TRAVEL BLOG</h1>\r\n[/fusion_text][separator style_type=\"single\" top_margin=\"\" bottom_margin=\"20\" sep_color=\"#000000\" border_size=\"\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"170px\" alignment=\"\" class=\"\" id=\"\"][one_sixth last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][/one_sixth][two_third last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][fusion_text]\r\n<h3 style=\"text-align: center;\">When it comes to our advice we’re proud to say we’re different. We offer something a little more special.</h3>\r\n[/fusion_text][/two_third][one_sixth last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][/one_sixth][separator style_type=\"none\" top_margin=\"40\" bottom_margin=\"\" sep_color=\"\" border_size=\"\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"100%\" alignment=\"center\" class=\"\" id=\"\"][one_fifth last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][/one_fifth][three_fifth last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][blog number_posts=\"3\" offset=\"\" cat_slug=\"\" exclude_cats=\"\" title=\"yes\" title_link=\"yes\" thumbnail=\"yes\" excerpt=\"yes\" excerpt_length=\"25\" meta_all=\"no\" meta_author=\"no\" meta_categories=\"no\" meta_comments=\"no\" meta_date=\"no\" meta_link=\"no\" meta_tags=\"no\" paging=\"no\" scrolling=\"pagination\" strip_html=\"yes\" blog_grid_columns=\"2\" blog_grid_column_spacing=\"40\" layout=\"medium\" class=\"\" id=\"\"][/blog][/three_fifth][one_fifth last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][/one_fifth][/fullwidth][fullwidth background_color=\"\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding_top=\"20\" padding_bottom=\"20\" padding_left=\"0\" padding_right=\"0\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][/fullwidth][fullwidth background_color=\"\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding_top=\"20\" padding_bottom=\"20\" padding_left=\"0\" padding_right=\"0\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][/fullwidth]', 'Home', '', 'inherit', 'closed', 'closed', '', '7-revision-v1', '', '', '2015-09-07 10:28:28', '2015-09-07 08:28:28', '', 7, 'http://localhost/assagaylodge/7-revision-v1/', 0, 'revision', '', 0),
(909, 1, '2015-09-07 10:34:15', '2015-09-07 08:34:15', '[fullwidth background_color=\"\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"90px\" padding_bottom=\"0px\" padding_left=\"0px\" padding_right=\"0px\" hundred_percent=\"yes\" equal_height_columns=\"yes\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][one_half last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"http://localhost/assagaylodge/wp-content/uploads/2015/08/Tha-Lodge.jpg\" background_repeat=\"no-repeat\" background_position=\"center center\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" class=\"\" id=\"\"][/one_half][one_half last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"30px\" margin_top=\"\" margin_bottom=\"0px\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" class=\"special\" id=\"\"][fusion_text]\r\n<h1>5 BEDROOM FAMILY LODGE</h1>\r\n[/fusion_text][separator style_type=\"single\" top_margin=\"0\" bottom_margin=\"30\" sep_color=\"#000000\" border_size=\"\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"170px\" alignment=\"left\" class=\"separator-left\" id=\"\"][fusion_text]\r\n<h3>Self-Catering/Service Options/B&amp;B</h3>\r\n[/fusion_text][/one_half][/fullwidth][fullwidth background_color=\"\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"30px\" padding_bottom=\"60px\" padding_left=\"0px\" padding_right=\"0px\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][one_half last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][fusion_text]\r\n<p style=\"text-align: justify;\">The property boasts over 200 different species of birds and animals. The Lodge is situated on the 1000 Hills tourism route, on the edge of Hillcrest and is a perfect place from which one can launch to any one of the many fantastic destinations and game reserves in KwaZulu Natal, i.e. the Majestic Drakensberg Mountain Range, Shongweni Nature Reserve, Nagle Dam, Durban &amp; Beach Front. We are also the doorstep of one of KZN’s major horse riding venues namely, the Shongweni Horse Riding Club &amp; the Summerveld Horse Riding Academy, makes Assagay Lodge a perfect home away from home for the equestrian lovers. The peace &amp; tranquility will take you far away from the business of city life. Evenings are quiet and peaceful. This is a unique and memorable country experience.</p>\r\n[/fusion_text][/one_half][one_half last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][fusion_text]\r\n<p style=\"text-align: justify;\">We are a homely \'down to earth\' country guest lodge, set on a farm surrounded by acres of beautiful hills, forests, &amp; dams in the Madwala Conservancy of Assagay, where horses still have the right of way on all roads. Our five bedrooms have a rustic charm offering the comforts of modern day life.</p>\r\n<p style=\"text-align: justify;\">Assagay Forest Lodge is owner managed, built in 2005 the lodge provides 5 cozy bedrooms with a large spacious and comfortable homely lounge, which leads onto a large deck area. Set on a 6 acre property in the Assagay Conservancy our lodge is nestled around trees, bushes, and beautiful gardens and a stream, allowing visitors to meander and relax. Guests seeking a quite, relaxing, homely experience will find our lodge the perfect choice away from home. There is a kitchen available should you wish to muster up a snack or quick meal, however breakfast is available on request.</p>\r\n[/fusion_text][/one_half][/fullwidth][fullwidth background_color=\"#f0f0ed\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"60px\" padding_bottom=\"45px\" padding_left=\"0px\" padding_right=\"0px\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][fusion_text]\r\n<h1 style=\"text-align: center;\">Gallery</h1>\r\n[/fusion_text][separator style_type=\"single\" top_margin=\"\" bottom_margin=\"40\" sep_color=\"#000000\" border_size=\"\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"170px\" alignment=\"\" class=\"\" id=\"\"][one_sixth last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][/one_sixth][two_third last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][fusion_text]\r\n<h3 style=\"text-align: center;\">The Lodge is open, spacious, comfortable and homely.</h3>\r\n[/fusion_text][/two_third][one_sixth last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][/one_sixth][separator style_type=\"none\" top_margin=\"20\" bottom_margin=\"\" sep_color=\"\" border_size=\"\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"100%\" alignment=\"\" class=\"\" id=\"\"][recent_works layout=\"grid\" picture_size=\"auto\" boxed_text=\"boxed\" filters=\"no\" columns=\"3\" column_spacing=\"12\" cat_slug=\"the-lodge\" exclude_cats=\"\" number_posts=\"9\" offset=\"\" excerpt_length=\"35\" strip_html=\"yes\" carousel_layout=\"title_on_rollover\" scroll_items=\"\" autoplay=\"no\" show_nav=\"yes\" mouse_scroll=\"no\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" class=\"\" id=\"\"][/recent_works][/fullwidth][fullwidth background_color=\"#ffffff\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"65px\" padding_bottom=\"65px\" padding_left=\"0px\" padding_right=\"0px\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][button link=\"/avada_demos/travel/our-destinations/\" color=\"default\" size=\"xlarge\" type=\"3d\" shape=\"round\" target=\"_self\" title=\"\" gradient_colors=\"#f0f0ed|#f0f0ed\" gradient_hover_colors=\"#6666a4|#6666a4\" accent_color=\"#ffffff\" accent_hover_color=\"#ffffff\" bevel_color=\"\" border_width=\"0px\" icon=\"\" icon_position=\"left\" icon_divider=\"no\" modal=\"\" animation_type=\"0\" animation_direction=\"left\" animation_speed=\"1\" alignment=\"center\" class=\"\" id=\"\"]View All Destinations[/button][/fullwidth][fullwidth background_color=\"#6666a4\" background_image=\"http://localhost/assagaylodge/wp-content/uploads/2015/01/DSC01516-1148-x-764.jpg\" background_parallax=\"fixed\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"center center\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"yes\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"110px\" padding_bottom=\"100px\" padding_left=\"0px\" padding_right=\"0px\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][testimonials design=\"clean\" backgroundcolor=\"\" textcolor=\"\" random=\"\" class=\"\" id=\"\"][testimonial name=\"Rooms\" avatar=\"none\" image=\"\" image_border_radius=\"50%\" company=\"\" link=\"\" target=\"_self\"]Beds all have electric blankets, the sheets are all cotton percal, Duvets are made up of microfiber.[/testimonial][/testimonials][/fullwidth][fullwidth background_color=\"\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"60px\" padding_bottom=\"35px\" padding_left=\"0px\" padding_right=\"0px\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][fusion_text]\r\n<h1 style=\"text-align: center;\">TRAVEL BLOG</h1>\r\n[/fusion_text][separator style_type=\"single\" top_margin=\"\" bottom_margin=\"20\" sep_color=\"#000000\" border_size=\"\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"170px\" alignment=\"\" class=\"\" id=\"\"][one_sixth last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][/one_sixth][two_third last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][fusion_text]\r\n<h3 style=\"text-align: center;\">When it comes to our advice we’re proud to say we’re different. We offer something a little more special.</h3>\r\n[/fusion_text][/two_third][one_sixth last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][/one_sixth][separator style_type=\"none\" top_margin=\"40\" bottom_margin=\"\" sep_color=\"\" border_size=\"\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"100%\" alignment=\"center\" class=\"\" id=\"\"][one_fifth last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][/one_fifth][three_fifth last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][blog number_posts=\"3\" offset=\"\" cat_slug=\"\" exclude_cats=\"\" title=\"yes\" title_link=\"yes\" thumbnail=\"yes\" excerpt=\"yes\" excerpt_length=\"25\" meta_all=\"no\" meta_author=\"no\" meta_categories=\"no\" meta_comments=\"no\" meta_date=\"no\" meta_link=\"no\" meta_tags=\"no\" paging=\"no\" scrolling=\"pagination\" strip_html=\"yes\" blog_grid_columns=\"2\" blog_grid_column_spacing=\"40\" layout=\"medium\" class=\"\" id=\"\"][/blog][/three_fifth][one_fifth last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][/one_fifth][/fullwidth][fullwidth background_color=\"\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding_top=\"20\" padding_bottom=\"20\" padding_left=\"0\" padding_right=\"0\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][/fullwidth][fullwidth background_color=\"\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding_top=\"20\" padding_bottom=\"20\" padding_left=\"0\" padding_right=\"0\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][/fullwidth]', 'Home', '', 'inherit', 'closed', 'closed', '', '7-revision-v1', '', '', '2015-09-07 10:34:15', '2015-09-07 08:34:15', '', 7, 'http://localhost/assagaylodge/7-revision-v1/', 0, 'revision', '', 0),
(910, 1, '2015-09-07 10:39:24', '2015-09-07 08:39:24', '[fullwidth background_color=\"\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"90px\" padding_bottom=\"0px\" padding_left=\"0px\" padding_right=\"0px\" hundred_percent=\"yes\" equal_height_columns=\"yes\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][one_half last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"http://localhost/assagaylodge/wp-content/uploads/2015/08/Tha-Lodge.jpg\" background_repeat=\"no-repeat\" background_position=\"center center\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" class=\"\" id=\"\"][/one_half][one_half last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"30px\" margin_top=\"\" margin_bottom=\"0px\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" class=\"special\" id=\"\"][fusion_text]\r\n<h1>5 BEDROOM FAMILY LODGE</h1>\r\n[/fusion_text][separator style_type=\"single\" top_margin=\"0\" bottom_margin=\"30\" sep_color=\"#000000\" border_size=\"\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"170px\" alignment=\"left\" class=\"separator-left\" id=\"\"][fusion_text]\r\n<h3>Self-Catering/Service Options/B&amp;B</h3>\r\n[/fusion_text][/one_half][/fullwidth][fullwidth background_color=\"\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"30px\" padding_bottom=\"60px\" padding_left=\"0px\" padding_right=\"0px\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][one_half last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][fusion_text]\r\n<p style=\"text-align: justify;\">The property boasts over 200 different species of birds and animals. The Lodge is situated on the 1000 Hills tourism route, on the edge of Hillcrest and is a perfect place from which one can launch to any one of the many fantastic destinations and game reserves in KwaZulu Natal, i.e. the Majestic Drakensberg Mountain Range, Shongweni Nature Reserve, Nagle Dam, Durban &amp; Beach Front. We are also the doorstep of one of KZN’s major horse riding venues namely, the Shongweni Horse Riding Club &amp; the Summerveld Horse Riding Academy, makes Assagay Lodge a perfect home away from home for the equestrian lovers. The peace &amp; tranquility will take you far away from the business of city life. Evenings are quiet and peaceful. This is a unique and memorable country experience.</p>\r\n[/fusion_text][/one_half][one_half last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][fusion_text]\r\n<p style=\"text-align: justify;\">We are a homely \'down to earth\' country guest lodge, set on a farm surrounded by acres of beautiful hills, forests, &amp; dams in the Madwala Conservancy of Assagay, where horses still have the right of way on all roads. Our five bedrooms have a rustic charm offering the comforts of modern day life.</p>\r\n<p style=\"text-align: justify;\">Assagay Forest Lodge is owner managed, built in 2005 the lodge provides 5 cozy bedrooms with a large spacious and comfortable homely lounge, which leads onto a large deck area. Set on a 6 acre property in the Assagay Conservancy our lodge is nestled around trees, bushes, and beautiful gardens and a stream, allowing visitors to meander and relax. Guests seeking a quite, relaxing, homely experience will find our lodge the perfect choice away from home. There is a kitchen available should you wish to muster up a snack or quick meal, however breakfast is available on request.</p>\r\n[/fusion_text][/one_half][/fullwidth][fullwidth background_color=\"#f0f0ed\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"60px\" padding_bottom=\"45px\" padding_left=\"0px\" padding_right=\"0px\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][fusion_text]\r\n<h1 style=\"text-align: center;\">Gallery</h1>\r\n[/fusion_text][separator style_type=\"single\" top_margin=\"\" bottom_margin=\"40\" sep_color=\"#000000\" border_size=\"\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"170px\" alignment=\"\" class=\"\" id=\"\"][one_sixth last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][/one_sixth][two_third last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][fusion_text]\r\n<h3 style=\"text-align: center;\">The Lodge is open, spacious, comfortable and homely.</h3>\r\n[/fusion_text][/two_third][one_sixth last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][/one_sixth][separator style_type=\"none\" top_margin=\"20\" bottom_margin=\"\" sep_color=\"\" border_size=\"\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"100%\" alignment=\"\" class=\"\" id=\"\"][recent_works layout=\"grid\" picture_size=\"auto\" boxed_text=\"boxed\" filters=\"no\" columns=\"3\" column_spacing=\"12\" cat_slug=\"the-lodge\" exclude_cats=\"\" number_posts=\"9\" offset=\"\" excerpt_length=\"35\" strip_html=\"yes\" carousel_layout=\"title_on_rollover\" scroll_items=\"\" autoplay=\"no\" show_nav=\"yes\" mouse_scroll=\"no\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" class=\"\" id=\"\"][/recent_works][/fullwidth][fullwidth background_color=\"#ffffff\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"65px\" padding_bottom=\"65px\" padding_left=\"0px\" padding_right=\"0px\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][button link=\"/avada_demos/travel/our-destinations/\" color=\"default\" size=\"xlarge\" type=\"3d\" shape=\"round\" target=\"_self\" title=\"\" gradient_colors=\"#f0f0ed|#f0f0ed\" gradient_hover_colors=\"#6666a4|#6666a4\" accent_color=\"#ffffff\" accent_hover_color=\"#ffffff\" bevel_color=\"\" border_width=\"0px\" icon=\"\" icon_position=\"left\" icon_divider=\"no\" modal=\"\" animation_type=\"0\" animation_direction=\"left\" animation_speed=\"1\" alignment=\"center\" class=\"\" id=\"\"]View All Destinations[/button][/fullwidth][fullwidth background_color=\"#6666a4\" background_image=\"http://localhost/assagaylodge/wp-content/uploads/2015/01/DSC01516-1148-x-764.jpg\" background_parallax=\"fixed\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"center center\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"yes\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"110px\" padding_bottom=\"100px\" padding_left=\"0px\" padding_right=\"0px\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][testimonials design=\"clean\" backgroundcolor=\"\" textcolor=\"\" random=\"\" class=\"\" id=\"\"][testimonial name=\"All 5 Rooms\" avatar=\"none\" image=\"\" image_border_radius=\"50%\" company=\"\" link=\"\" target=\"_self\"]Beds all have electric blankets.\r\n\r\nSheets are all cotton percal.\r\n\r\nDuvets are made up of microfiber.\r\n\r\n---[/testimonial][/testimonials][/fullwidth][fullwidth background_color=\"\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"60px\" padding_bottom=\"35px\" padding_left=\"0px\" padding_right=\"0px\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][fusion_text]\r\n<h1 style=\"text-align: center;\">TRAVEL BLOG</h1>\r\n[/fusion_text][separator style_type=\"single\" top_margin=\"\" bottom_margin=\"20\" sep_color=\"#000000\" border_size=\"\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"170px\" alignment=\"\" class=\"\" id=\"\"][one_sixth last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][/one_sixth][two_third last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][fusion_text]\r\n<h3 style=\"text-align: center;\">When it comes to our advice we’re proud to say we’re different. We offer something a little more special.</h3>\r\n[/fusion_text][/two_third][one_sixth last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][/one_sixth][separator style_type=\"none\" top_margin=\"40\" bottom_margin=\"\" sep_color=\"\" border_size=\"\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"100%\" alignment=\"center\" class=\"\" id=\"\"][one_fifth last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][/one_fifth][three_fifth last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][blog number_posts=\"3\" offset=\"\" cat_slug=\"\" exclude_cats=\"\" title=\"yes\" title_link=\"yes\" thumbnail=\"yes\" excerpt=\"yes\" excerpt_length=\"25\" meta_all=\"no\" meta_author=\"no\" meta_categories=\"no\" meta_comments=\"no\" meta_date=\"no\" meta_link=\"no\" meta_tags=\"no\" paging=\"no\" scrolling=\"pagination\" strip_html=\"yes\" blog_grid_columns=\"2\" blog_grid_column_spacing=\"40\" layout=\"medium\" class=\"\" id=\"\"][/blog][/three_fifth][one_fifth last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][/one_fifth][/fullwidth][fullwidth background_color=\"\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding_top=\"20\" padding_bottom=\"20\" padding_left=\"0\" padding_right=\"0\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][/fullwidth][fullwidth background_color=\"\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding_top=\"20\" padding_bottom=\"20\" padding_left=\"0\" padding_right=\"0\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][/fullwidth]', 'Home', '', 'inherit', 'closed', 'closed', '', '7-revision-v1', '', '', '2015-09-07 10:39:24', '2015-09-07 08:39:24', '', 7, 'http://localhost/assagaylodge/7-revision-v1/', 0, 'revision', '', 0);
INSERT INTO `wp_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(911, 1, '2015-09-07 10:42:33', '2015-09-07 08:42:33', '[fullwidth background_color=\"\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"90px\" padding_bottom=\"0px\" padding_left=\"0px\" padding_right=\"0px\" hundred_percent=\"yes\" equal_height_columns=\"yes\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][one_half last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"http://localhost/assagaylodge/wp-content/uploads/2015/08/Tha-Lodge.jpg\" background_repeat=\"no-repeat\" background_position=\"center center\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" class=\"\" id=\"\"][/one_half][one_half last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"30px\" margin_top=\"\" margin_bottom=\"0px\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" class=\"special\" id=\"\"][fusion_text]\r\n<h1>5 BEDROOM FAMILY LODGE</h1>\r\n[/fusion_text][separator style_type=\"single\" top_margin=\"0\" bottom_margin=\"30\" sep_color=\"#000000\" border_size=\"\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"170px\" alignment=\"left\" class=\"separator-left\" id=\"\"][fusion_text]\r\n<h3>Self-Catering/Service Options/B&amp;B</h3>\r\n[/fusion_text][/one_half][/fullwidth][fullwidth background_color=\"\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"30px\" padding_bottom=\"60px\" padding_left=\"0px\" padding_right=\"0px\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][one_half last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][fusion_text]\r\n<p style=\"text-align: justify;\">The property boasts over 200 different species of birds and animals. The Lodge is situated on the 1000 Hills tourism route, on the edge of Hillcrest and is a perfect place from which one can launch to any one of the many fantastic destinations and game reserves in KwaZulu Natal, i.e. the Majestic Drakensberg Mountain Range, Shongweni Nature Reserve, Nagle Dam, Durban &amp; Beach Front. We are also the doorstep of one of KZN’s major horse riding venues namely, the Shongweni Horse Riding Club &amp; the Summerveld Horse Riding Academy, makes Assagay Lodge a perfect home away from home for the equestrian lovers. The peace &amp; tranquility will take you far away from the business of city life. Evenings are quiet and peaceful. This is a unique and memorable country experience.</p>\r\n[/fusion_text][/one_half][one_half last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][fusion_text]\r\n<p style=\"text-align: justify;\">We are a homely \'down to earth\' country guest lodge, set on a farm surrounded by acres of beautiful hills, forests, &amp; dams in the Madwala Conservancy of Assagay, where horses still have the right of way on all roads. Our five bedrooms have a rustic charm offering the comforts of modern day life.</p>\r\n<p style=\"text-align: justify;\">Assagay Forest Lodge is owner managed, built in 2005 the lodge provides 5 cozy bedrooms with a large spacious and comfortable homely lounge, which leads onto a large deck area. Set on a 6 acre property in the Assagay Conservancy our lodge is nestled around trees, bushes, and beautiful gardens and a stream, allowing visitors to meander and relax. Guests seeking a quite, relaxing, homely experience will find our lodge the perfect choice away from home. There is a kitchen available should you wish to muster up a snack or quick meal, however breakfast is available on request.</p>\r\n[/fusion_text][/one_half][/fullwidth][fullwidth background_color=\"#f0f0ed\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"60px\" padding_bottom=\"45px\" padding_left=\"0px\" padding_right=\"0px\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][fusion_text]\r\n<h1 style=\"text-align: center;\">Gallery</h1>\r\n[/fusion_text][separator style_type=\"single\" top_margin=\"\" bottom_margin=\"40\" sep_color=\"#000000\" border_size=\"\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"170px\" alignment=\"\" class=\"\" id=\"\"][one_sixth last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][/one_sixth][two_third last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][fusion_text]\r\n<h3 style=\"text-align: center;\">The Lodge is open, spacious, comfortable and homely.</h3>\r\n[/fusion_text][/two_third][one_sixth last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][/one_sixth][separator style_type=\"none\" top_margin=\"20\" bottom_margin=\"\" sep_color=\"\" border_size=\"\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"100%\" alignment=\"\" class=\"\" id=\"\"][recent_works layout=\"grid\" picture_size=\"auto\" boxed_text=\"boxed\" filters=\"no\" columns=\"3\" column_spacing=\"12\" cat_slug=\"the-lodge\" exclude_cats=\"\" number_posts=\"9\" offset=\"\" excerpt_length=\"35\" strip_html=\"yes\" carousel_layout=\"title_on_rollover\" scroll_items=\"\" autoplay=\"no\" show_nav=\"yes\" mouse_scroll=\"no\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" class=\"\" id=\"\"][/recent_works][/fullwidth][fullwidth background_color=\"#ffffff\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"65px\" padding_bottom=\"65px\" padding_left=\"0px\" padding_right=\"0px\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][button link=\"/avada_demos/travel/our-destinations/\" color=\"default\" size=\"xlarge\" type=\"3d\" shape=\"round\" target=\"_self\" title=\"\" gradient_colors=\"#f0f0ed|#f0f0ed\" gradient_hover_colors=\"#6666a4|#6666a4\" accent_color=\"#ffffff\" accent_hover_color=\"#ffffff\" bevel_color=\"\" border_width=\"0px\" icon=\"\" icon_position=\"left\" icon_divider=\"no\" modal=\"\" animation_type=\"0\" animation_direction=\"left\" animation_speed=\"1\" alignment=\"center\" class=\"\" id=\"\"]View All Destinations[/button][/fullwidth][fullwidth background_color=\"#6666a4\" background_image=\"http://localhost/assagaylodge/wp-content/uploads/2015/01/DSC01516-1148-x-764.jpg\" background_parallax=\"fixed\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"center center\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"yes\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"110px\" padding_bottom=\"100px\" padding_left=\"0px\" padding_right=\"0px\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][testimonials design=\"classic\" backgroundcolor=\"\" textcolor=\"\" random=\"\" class=\"\" id=\"\"][testimonial name=\"All 5 Rooms\" avatar=\"none\" image=\"\" image_border_radius=\"50%\" company=\"\" link=\"\" target=\"_self\"]Beds all have electric blankets.\r\n\r\nSheets are all cotton percal.\r\n\r\nDuvets are made up of microfiber.\r\n\r\n---[/testimonial][/testimonials][/fullwidth][fullwidth background_color=\"\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"60px\" padding_bottom=\"35px\" padding_left=\"0px\" padding_right=\"0px\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][fusion_text]\r\n<h1 style=\"text-align: center;\">TRAVEL BLOG</h1>\r\n[/fusion_text][separator style_type=\"single\" top_margin=\"\" bottom_margin=\"20\" sep_color=\"#000000\" border_size=\"\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"170px\" alignment=\"\" class=\"\" id=\"\"][one_sixth last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][/one_sixth][two_third last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][fusion_text]\r\n<h3 style=\"text-align: center;\">When it comes to our advice we’re proud to say we’re different. We offer something a little more special.</h3>\r\n[/fusion_text][/two_third][one_sixth last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][/one_sixth][separator style_type=\"none\" top_margin=\"40\" bottom_margin=\"\" sep_color=\"\" border_size=\"\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"100%\" alignment=\"center\" class=\"\" id=\"\"][one_fifth last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][/one_fifth][three_fifth last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][blog number_posts=\"3\" offset=\"\" cat_slug=\"\" exclude_cats=\"\" title=\"yes\" title_link=\"yes\" thumbnail=\"yes\" excerpt=\"yes\" excerpt_length=\"25\" meta_all=\"no\" meta_author=\"no\" meta_categories=\"no\" meta_comments=\"no\" meta_date=\"no\" meta_link=\"no\" meta_tags=\"no\" paging=\"no\" scrolling=\"pagination\" strip_html=\"yes\" blog_grid_columns=\"2\" blog_grid_column_spacing=\"40\" layout=\"medium\" class=\"\" id=\"\"][/blog][/three_fifth][one_fifth last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][/one_fifth][/fullwidth][fullwidth background_color=\"\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding_top=\"20\" padding_bottom=\"20\" padding_left=\"0\" padding_right=\"0\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][/fullwidth][fullwidth background_color=\"\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding_top=\"20\" padding_bottom=\"20\" padding_left=\"0\" padding_right=\"0\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][/fullwidth]', 'Home', '', 'inherit', 'closed', 'closed', '', '7-revision-v1', '', '', '2015-09-07 10:42:33', '2015-09-07 08:42:33', '', 7, 'http://localhost/assagaylodge/7-revision-v1/', 0, 'revision', '', 0),
(912, 1, '2015-09-07 10:45:30', '2015-09-07 08:45:30', '[fullwidth background_color=\"\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"90px\" padding_bottom=\"0px\" padding_left=\"0px\" padding_right=\"0px\" hundred_percent=\"yes\" equal_height_columns=\"yes\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][one_half last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"http://localhost/assagaylodge/wp-content/uploads/2015/08/Tha-Lodge.jpg\" background_repeat=\"no-repeat\" background_position=\"center center\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" class=\"\" id=\"\"][/one_half][one_half last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"30px\" margin_top=\"\" margin_bottom=\"0px\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" class=\"special\" id=\"\"][fusion_text]\r\n<h1>5 BEDROOM FAMILY LODGE</h1>\r\n[/fusion_text][separator style_type=\"single\" top_margin=\"0\" bottom_margin=\"30\" sep_color=\"#000000\" border_size=\"\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"170px\" alignment=\"left\" class=\"separator-left\" id=\"\"][fusion_text]\r\n<h3>Self-Catering/Service Options/B&amp;B</h3>\r\n[/fusion_text][/one_half][/fullwidth][fullwidth background_color=\"\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"30px\" padding_bottom=\"60px\" padding_left=\"0px\" padding_right=\"0px\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][one_half last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][fusion_text]\r\n<p style=\"text-align: justify;\">The property boasts over 200 different species of birds and animals. The Lodge is situated on the 1000 Hills tourism route, on the edge of Hillcrest and is a perfect place from which one can launch to any one of the many fantastic destinations and game reserves in KwaZulu Natal, i.e. the Majestic Drakensberg Mountain Range, Shongweni Nature Reserve, Nagle Dam, Durban &amp; Beach Front. We are also the doorstep of one of KZN’s major horse riding venues namely, the Shongweni Horse Riding Club &amp; the Summerveld Horse Riding Academy, makes Assagay Lodge a perfect home away from home for the equestrian lovers. The peace &amp; tranquility will take you far away from the business of city life. Evenings are quiet and peaceful. This is a unique and memorable country experience.</p>\r\n[/fusion_text][/one_half][one_half last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][fusion_text]\r\n<p style=\"text-align: justify;\">We are a homely \'down to earth\' country guest lodge, set on a farm surrounded by acres of beautiful hills, forests, &amp; dams in the Madwala Conservancy of Assagay, where horses still have the right of way on all roads. Our five bedrooms have a rustic charm offering the comforts of modern day life.</p>\r\n<p style=\"text-align: justify;\">Assagay Forest Lodge is owner managed, built in 2005 the lodge provides 5 cozy bedrooms with a large spacious and comfortable homely lounge, which leads onto a large deck area. Set on a 6 acre property in the Assagay Conservancy our lodge is nestled around trees, bushes, and beautiful gardens and a stream, allowing visitors to meander and relax. Guests seeking a quite, relaxing, homely experience will find our lodge the perfect choice away from home. There is a kitchen available should you wish to muster up a snack or quick meal, however breakfast is available on request.</p>\r\n[/fusion_text][/one_half][/fullwidth][fullwidth background_color=\"#f0f0ed\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"60px\" padding_bottom=\"45px\" padding_left=\"0px\" padding_right=\"0px\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][fusion_text]\r\n<h1 style=\"text-align: center;\">Gallery</h1>\r\n[/fusion_text][separator style_type=\"single\" top_margin=\"\" bottom_margin=\"40\" sep_color=\"#000000\" border_size=\"\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"170px\" alignment=\"\" class=\"\" id=\"\"][one_sixth last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][/one_sixth][two_third last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][fusion_text]\r\n<h3 style=\"text-align: center;\">The Lodge is open, spacious, comfortable and homely.</h3>\r\n[/fusion_text][/two_third][one_sixth last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][/one_sixth][separator style_type=\"none\" top_margin=\"20\" bottom_margin=\"\" sep_color=\"\" border_size=\"\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"100%\" alignment=\"\" class=\"\" id=\"\"][recent_works layout=\"grid\" picture_size=\"auto\" boxed_text=\"boxed\" filters=\"no\" columns=\"3\" column_spacing=\"12\" cat_slug=\"the-lodge\" exclude_cats=\"\" number_posts=\"9\" offset=\"\" excerpt_length=\"35\" strip_html=\"yes\" carousel_layout=\"title_on_rollover\" scroll_items=\"\" autoplay=\"no\" show_nav=\"yes\" mouse_scroll=\"no\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" class=\"\" id=\"\"][/recent_works][/fullwidth][fullwidth background_color=\"#ffffff\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"65px\" padding_bottom=\"65px\" padding_left=\"0px\" padding_right=\"0px\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][button link=\"/avada_demos/travel/our-destinations/\" color=\"default\" size=\"xlarge\" type=\"3d\" shape=\"round\" target=\"_self\" title=\"\" gradient_colors=\"#f0f0ed|#f0f0ed\" gradient_hover_colors=\"#6666a4|#6666a4\" accent_color=\"#ffffff\" accent_hover_color=\"#ffffff\" bevel_color=\"\" border_width=\"0px\" icon=\"\" icon_position=\"left\" icon_divider=\"no\" modal=\"\" animation_type=\"0\" animation_direction=\"left\" animation_speed=\"1\" alignment=\"center\" class=\"\" id=\"\"]View All Destinations[/button][/fullwidth][fullwidth background_color=\"#6666a4\" background_image=\"http://localhost/assagaylodge/wp-content/uploads/2015/01/DSC01516-1148-x-764.jpg\" background_parallax=\"fixed\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"center center\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"yes\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"110px\" padding_bottom=\"100px\" padding_left=\"0px\" padding_right=\"0px\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][testimonials design=\"clean\" backgroundcolor=\"\" textcolor=\"\" random=\"\" class=\"\" id=\"\"][testimonial name=\"Beds all have electric blankets. Sheets are all cotton percal. Duvets are made up of microfiber.\" avatar=\"none\" image=\"\" image_border_radius=\"50%\" company=\"\" link=\"\" target=\"_self\"][/testimonial][/testimonials][/fullwidth][fullwidth background_color=\"\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"60px\" padding_bottom=\"35px\" padding_left=\"0px\" padding_right=\"0px\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][fusion_text]\r\n<h1 style=\"text-align: center;\">TRAVEL BLOG</h1>\r\n[/fusion_text][separator style_type=\"single\" top_margin=\"\" bottom_margin=\"20\" sep_color=\"#000000\" border_size=\"\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"170px\" alignment=\"\" class=\"\" id=\"\"][one_sixth last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][/one_sixth][two_third last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][fusion_text]\r\n<h3 style=\"text-align: center;\">When it comes to our advice we’re proud to say we’re different. We offer something a little more special.</h3>\r\n[/fusion_text][/two_third][one_sixth last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][/one_sixth][separator style_type=\"none\" top_margin=\"40\" bottom_margin=\"\" sep_color=\"\" border_size=\"\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"100%\" alignment=\"center\" class=\"\" id=\"\"][one_fifth last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][/one_fifth][three_fifth last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][blog number_posts=\"3\" offset=\"\" cat_slug=\"\" exclude_cats=\"\" title=\"yes\" title_link=\"yes\" thumbnail=\"yes\" excerpt=\"yes\" excerpt_length=\"25\" meta_all=\"no\" meta_author=\"no\" meta_categories=\"no\" meta_comments=\"no\" meta_date=\"no\" meta_link=\"no\" meta_tags=\"no\" paging=\"no\" scrolling=\"pagination\" strip_html=\"yes\" blog_grid_columns=\"2\" blog_grid_column_spacing=\"40\" layout=\"medium\" class=\"\" id=\"\"][/blog][/three_fifth][one_fifth last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][/one_fifth][/fullwidth][fullwidth background_color=\"\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding_top=\"20\" padding_bottom=\"20\" padding_left=\"0\" padding_right=\"0\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][/fullwidth][fullwidth background_color=\"\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding_top=\"20\" padding_bottom=\"20\" padding_left=\"0\" padding_right=\"0\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][/fullwidth]', 'Home', '', 'inherit', 'closed', 'closed', '', '7-revision-v1', '', '', '2015-09-07 10:45:30', '2015-09-07 08:45:30', '', 7, 'http://localhost/assagaylodge/7-revision-v1/', 0, 'revision', '', 0),
(913, 1, '2015-09-07 10:50:02', '2015-09-07 08:50:02', '[fullwidth background_color=\"\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"90px\" padding_bottom=\"0px\" padding_left=\"0px\" padding_right=\"0px\" hundred_percent=\"yes\" equal_height_columns=\"yes\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][one_half last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"http://localhost/assagaylodge/wp-content/uploads/2015/08/Tha-Lodge.jpg\" background_repeat=\"no-repeat\" background_position=\"center center\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" class=\"\" id=\"\"][/one_half][one_half last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"30px\" margin_top=\"\" margin_bottom=\"0px\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" class=\"special\" id=\"\"][fusion_text]\r\n<h1>5 BEDROOM FAMILY LODGE</h1>\r\n[/fusion_text][separator style_type=\"single\" top_margin=\"0\" bottom_margin=\"30\" sep_color=\"#000000\" border_size=\"\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"170px\" alignment=\"left\" class=\"separator-left\" id=\"\"][fusion_text]\r\n<h3>Self-Catering/Service Options/B&amp;B</h3>\r\n[/fusion_text][/one_half][/fullwidth][fullwidth background_color=\"\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"30px\" padding_bottom=\"60px\" padding_left=\"0px\" padding_right=\"0px\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][one_half last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][fusion_text]\r\n<p style=\"text-align: justify;\">The property boasts over 200 different species of birds and animals. The Lodge is situated on the 1000 Hills tourism route, on the edge of Hillcrest and is a perfect place from which one can launch to any one of the many fantastic destinations and game reserves in KwaZulu Natal, i.e. the Majestic Drakensberg Mountain Range, Shongweni Nature Reserve, Nagle Dam, Durban &amp; Beach Front. We are also the doorstep of one of KZN’s major horse riding venues namely, the Shongweni Horse Riding Club &amp; the Summerveld Horse Riding Academy, makes Assagay Lodge a perfect home away from home for the equestrian lovers. The peace &amp; tranquility will take you far away from the business of city life. Evenings are quiet and peaceful. This is a unique and memorable country experience.</p>\r\n[/fusion_text][/one_half][one_half last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][fusion_text]\r\n<p style=\"text-align: justify;\">We are a homely \'down to earth\' country guest lodge, set on a farm surrounded by acres of beautiful hills, forests, &amp; dams in the Madwala Conservancy of Assagay, where horses still have the right of way on all roads. Our five bedrooms have a rustic charm offering the comforts of modern day life.</p>\r\n<p style=\"text-align: justify;\">Assagay Forest Lodge is owner managed, built in 2005 the lodge provides 5 cozy bedrooms with a large spacious and comfortable homely lounge, which leads onto a large deck area. Set on a 6 acre property in the Assagay Conservancy our lodge is nestled around trees, bushes, and beautiful gardens and a stream, allowing visitors to meander and relax. Guests seeking a quite, relaxing, homely experience will find our lodge the perfect choice away from home. There is a kitchen available should you wish to muster up a snack or quick meal, however breakfast is available on request.</p>\r\n[/fusion_text][/one_half][/fullwidth][fullwidth background_color=\"#f0f0ed\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"60px\" padding_bottom=\"45px\" padding_left=\"0px\" padding_right=\"0px\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][fusion_text]\r\n<h1 style=\"text-align: center;\">Gallery</h1>\r\n[/fusion_text][separator style_type=\"single\" top_margin=\"\" bottom_margin=\"40\" sep_color=\"#000000\" border_size=\"\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"170px\" alignment=\"\" class=\"\" id=\"\"][one_sixth last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][/one_sixth][two_third last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][fusion_text]\r\n<h3 style=\"text-align: center;\">The Lodge is open, spacious, comfortable and homely.</h3>\r\n[/fusion_text][/two_third][one_sixth last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][/one_sixth][separator style_type=\"none\" top_margin=\"20\" bottom_margin=\"\" sep_color=\"\" border_size=\"\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"100%\" alignment=\"\" class=\"\" id=\"\"][recent_works layout=\"grid\" picture_size=\"auto\" boxed_text=\"boxed\" filters=\"no\" columns=\"3\" column_spacing=\"12\" cat_slug=\"the-lodge\" exclude_cats=\"\" number_posts=\"9\" offset=\"\" excerpt_length=\"35\" strip_html=\"yes\" carousel_layout=\"title_on_rollover\" scroll_items=\"\" autoplay=\"no\" show_nav=\"yes\" mouse_scroll=\"no\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" class=\"\" id=\"\"][/recent_works][/fullwidth][fullwidth background_color=\"#ffffff\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"65px\" padding_bottom=\"65px\" padding_left=\"0px\" padding_right=\"0px\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][button link=\"/avada_demos/travel/our-destinations/\" color=\"default\" size=\"xlarge\" type=\"3d\" shape=\"round\" target=\"_self\" title=\"\" gradient_colors=\"#f0f0ed|#f0f0ed\" gradient_hover_colors=\"#6666a4|#6666a4\" accent_color=\"#ffffff\" accent_hover_color=\"#ffffff\" bevel_color=\"\" border_width=\"0px\" icon=\"\" icon_position=\"left\" icon_divider=\"no\" modal=\"\" animation_type=\"0\" animation_direction=\"left\" animation_speed=\"1\" alignment=\"center\" class=\"\" id=\"\"]View All Destinations[/button][/fullwidth][fullwidth background_color=\"#6666a4\" background_image=\"http://localhost/assagaylodge/wp-content/uploads/2015/01/DSC01516-1148-x-764.jpg\" background_parallax=\"fixed\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"center center\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"yes\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"110px\" padding_bottom=\"100px\" padding_left=\"0px\" padding_right=\"0px\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][/fullwidth][fullwidth background_color=\"\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"60px\" padding_bottom=\"35px\" padding_left=\"0px\" padding_right=\"0px\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][fusion_text]\r\n<h1 style=\"text-align: center;\">TRAVEL BLOG</h1>\r\n[/fusion_text][separator style_type=\"single\" top_margin=\"\" bottom_margin=\"20\" sep_color=\"#000000\" border_size=\"\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"170px\" alignment=\"\" class=\"\" id=\"\"][one_sixth last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][/one_sixth][two_third last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][fusion_text]\r\n<h3 style=\"text-align: center;\">When it comes to our advice we’re proud to say we’re different. We offer something a little more special.</h3>\r\n[/fusion_text][/two_third][one_sixth last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][/one_sixth][separator style_type=\"none\" top_margin=\"40\" bottom_margin=\"\" sep_color=\"\" border_size=\"\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"100%\" alignment=\"center\" class=\"\" id=\"\"][one_fifth last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][/one_fifth][three_fifth last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][blog number_posts=\"3\" offset=\"\" cat_slug=\"\" exclude_cats=\"\" title=\"yes\" title_link=\"yes\" thumbnail=\"yes\" excerpt=\"yes\" excerpt_length=\"25\" meta_all=\"no\" meta_author=\"no\" meta_categories=\"no\" meta_comments=\"no\" meta_date=\"no\" meta_link=\"no\" meta_tags=\"no\" paging=\"no\" scrolling=\"pagination\" strip_html=\"yes\" blog_grid_columns=\"2\" blog_grid_column_spacing=\"40\" layout=\"medium\" class=\"\" id=\"\"][/blog][/three_fifth][one_fifth last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][/one_fifth][/fullwidth][fullwidth background_color=\"\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding_top=\"20\" padding_bottom=\"20\" padding_left=\"0\" padding_right=\"0\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][/fullwidth][fullwidth background_color=\"\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding_top=\"20\" padding_bottom=\"20\" padding_left=\"0\" padding_right=\"0\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][/fullwidth]', 'Home', '', 'inherit', 'closed', 'closed', '', '7-revision-v1', '', '', '2015-09-07 10:50:02', '2015-09-07 08:50:02', '', 7, 'http://localhost/assagaylodge/7-revision-v1/', 0, 'revision', '', 0);
INSERT INTO `wp_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(914, 1, '2015-09-07 11:17:24', '2015-09-07 09:17:24', '[fullwidth background_color=\"\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"90px\" padding_bottom=\"0px\" padding_left=\"0px\" padding_right=\"0px\" hundred_percent=\"yes\" equal_height_columns=\"yes\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][one_half last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"http://localhost/assagaylodge/wp-content/uploads/2015/08/Tha-Lodge.jpg\" background_repeat=\"no-repeat\" background_position=\"center center\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" class=\"\" id=\"\"][/one_half][one_half last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"30px\" margin_top=\"\" margin_bottom=\"0px\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" class=\"special\" id=\"\"][fusion_text]\r\n<h1>5 BEDROOM FAMILY LODGE</h1>\r\n[/fusion_text][separator style_type=\"single\" top_margin=\"0\" bottom_margin=\"30\" sep_color=\"#000000\" border_size=\"\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"170px\" alignment=\"left\" class=\"separator-left\" id=\"\"][fusion_text]\r\n<h3>Self-Catering/Service Options/B&amp;B</h3>\r\n[/fusion_text][/one_half][/fullwidth][fullwidth background_color=\"\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"30px\" padding_bottom=\"60px\" padding_left=\"0px\" padding_right=\"0px\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][one_half last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][fusion_text]\r\n<p style=\"text-align: justify;\">The property boasts over 200 different species of birds and animals. The Lodge is situated on the 1000 Hills tourism route, on the edge of Hillcrest and is a perfect place from which one can launch to any one of the many fantastic destinations and game reserves in KwaZulu Natal, i.e. the Majestic Drakensberg Mountain Range, Shongweni Nature Reserve, Nagle Dam, Durban &amp; Beach Front. We are also the doorstep of one of KZN’s major horse riding venues namely, the Shongweni Horse Riding Club &amp; the Summerveld Horse Riding Academy, makes Assagay Lodge a perfect home away from home for the equestrian lovers. The peace &amp; tranquility will take you far away from the business of city life. Evenings are quiet and peaceful. This is a unique and memorable country experience.</p>\r\n[/fusion_text][/one_half][one_half last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][fusion_text]\r\n<p style=\"text-align: justify;\">We are a homely \'down to earth\' country guest lodge, set on a farm surrounded by acres of beautiful hills, forests, &amp; dams in the Madwala Conservancy of Assagay, where horses still have the right of way on all roads. Our five bedrooms have a rustic charm offering the comforts of modern day life.</p>\r\n<p style=\"text-align: justify;\">Assagay Forest Lodge is owner managed, built in 2005 the lodge provides 5 cozy bedrooms with a large spacious and comfortable homely lounge, which leads onto a large deck area. Set on a 6 acre property in the Assagay Conservancy our lodge is nestled around trees, bushes, and beautiful gardens and a stream, allowing visitors to meander and relax. Guests seeking a quite, relaxing, homely experience will find our lodge the perfect choice away from home. There is a kitchen available should you wish to muster up a snack or quick meal, however breakfast is available on request.</p>\r\n[/fusion_text][/one_half][/fullwidth][fullwidth background_color=\"#f0f0ed\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"60px\" padding_bottom=\"45px\" padding_left=\"0px\" padding_right=\"0px\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][fusion_text]\r\n<h1 style=\"text-align: center;\">Gallery</h1>\r\n[/fusion_text][separator style_type=\"single\" top_margin=\"\" bottom_margin=\"40\" sep_color=\"#000000\" border_size=\"\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"170px\" alignment=\"\" class=\"\" id=\"\"][one_sixth last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][/one_sixth][two_third last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][fusion_text]\r\n<h3 style=\"text-align: center;\">The Lodge is open, spacious, comfortable and homely.</h3>\r\n[/fusion_text][/two_third][one_sixth last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][/one_sixth][separator style_type=\"none\" top_margin=\"20\" bottom_margin=\"\" sep_color=\"\" border_size=\"\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"100%\" alignment=\"\" class=\"\" id=\"\"][recent_works layout=\"grid\" picture_size=\"auto\" boxed_text=\"boxed\" filters=\"no\" columns=\"3\" column_spacing=\"12\" cat_slug=\"the-lodge\" exclude_cats=\"\" number_posts=\"9\" offset=\"\" excerpt_length=\"35\" strip_html=\"yes\" carousel_layout=\"title_on_rollover\" scroll_items=\"\" autoplay=\"no\" show_nav=\"yes\" mouse_scroll=\"no\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" class=\"\" id=\"\"][/recent_works][/fullwidth][fullwidth background_color=\"#ffffff\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"65px\" padding_bottom=\"65px\" padding_left=\"0px\" padding_right=\"0px\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][button link=\"/avada_demos/travel/our-destinations/\" color=\"default\" size=\"xlarge\" type=\"3d\" shape=\"round\" target=\"_self\" title=\"\" gradient_colors=\"#f0f0ed|#f0f0ed\" gradient_hover_colors=\"#6666a4|#6666a4\" accent_color=\"#ffffff\" accent_hover_color=\"#ffffff\" bevel_color=\"\" border_width=\"0px\" icon=\"\" icon_position=\"left\" icon_divider=\"no\" modal=\"\" animation_type=\"0\" animation_direction=\"left\" animation_speed=\"1\" alignment=\"center\" class=\"\" id=\"\"]View All Destinations[/button][/fullwidth][fullwidth background_color=\"#6666a4\" background_image=\"http://localhost/assagaylodge/wp-content/uploads/2015/01/DSC01516-1148-x-764.jpg\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"center center\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"yes\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"110px\" padding_bottom=\"100px\" padding_left=\"0px\" padding_right=\"0px\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][/fullwidth][fullwidth background_color=\"\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"60px\" padding_bottom=\"35px\" padding_left=\"0px\" padding_right=\"0px\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][fusion_text]\r\n<h1 style=\"text-align: center;\">TRAVEL BLOG</h1>\r\n[/fusion_text][separator style_type=\"single\" top_margin=\"\" bottom_margin=\"20\" sep_color=\"#000000\" border_size=\"\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"170px\" alignment=\"\" class=\"\" id=\"\"][one_sixth last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][/one_sixth][two_third last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][fusion_text]\r\n<h3 style=\"text-align: center;\">When it comes to our advice we’re proud to say we’re different. We offer something a little more special.</h3>\r\n[/fusion_text][/two_third][one_sixth last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][/one_sixth][separator style_type=\"none\" top_margin=\"40\" bottom_margin=\"\" sep_color=\"\" border_size=\"\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"100%\" alignment=\"center\" class=\"\" id=\"\"][one_fifth last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][/one_fifth][three_fifth last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][blog number_posts=\"3\" offset=\"\" cat_slug=\"\" exclude_cats=\"\" title=\"yes\" title_link=\"yes\" thumbnail=\"yes\" excerpt=\"yes\" excerpt_length=\"25\" meta_all=\"no\" meta_author=\"no\" meta_categories=\"no\" meta_comments=\"no\" meta_date=\"no\" meta_link=\"no\" meta_tags=\"no\" paging=\"no\" scrolling=\"pagination\" strip_html=\"yes\" blog_grid_columns=\"2\" blog_grid_column_spacing=\"40\" layout=\"medium\" class=\"\" id=\"\"][/blog][/three_fifth][one_fifth last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][/one_fifth][/fullwidth][fullwidth background_color=\"\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding_top=\"20\" padding_bottom=\"20\" padding_left=\"0\" padding_right=\"0\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][/fullwidth][fullwidth background_color=\"\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding_top=\"20\" padding_bottom=\"20\" padding_left=\"0\" padding_right=\"0\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][/fullwidth]', 'Home', '', 'inherit', 'closed', 'closed', '', '7-revision-v1', '', '', '2015-09-07 11:17:24', '2015-09-07 09:17:24', '', 7, 'http://localhost/assagaylodge/7-revision-v1/', 0, 'revision', '', 0),
(915, 1, '2015-09-07 11:21:06', '2015-09-07 09:21:06', '[fullwidth background_color=\"\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"90px\" padding_bottom=\"0px\" padding_left=\"0px\" padding_right=\"0px\" hundred_percent=\"yes\" equal_height_columns=\"yes\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][one_half last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"http://localhost/assagaylodge/wp-content/uploads/2015/08/Tha-Lodge.jpg\" background_repeat=\"no-repeat\" background_position=\"center center\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" class=\"\" id=\"\"][/one_half][one_half last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"30px\" margin_top=\"\" margin_bottom=\"0px\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" class=\"special\" id=\"\"][fusion_text]\r\n<h1>5 BEDROOM FAMILY LODGE</h1>\r\n[/fusion_text][separator style_type=\"single\" top_margin=\"0\" bottom_margin=\"30\" sep_color=\"#000000\" border_size=\"\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"170px\" alignment=\"left\" class=\"separator-left\" id=\"\"][fusion_text]\r\n<h3>Self-Catering/Service Options/B&amp;B</h3>\r\n[/fusion_text][/one_half][/fullwidth][fullwidth background_color=\"\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"30px\" padding_bottom=\"60px\" padding_left=\"0px\" padding_right=\"0px\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][one_half last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][fusion_text]\r\n<p style=\"text-align: justify;\">The property boasts over 200 different species of birds and animals. The Lodge is situated on the 1000 Hills tourism route, on the edge of Hillcrest and is a perfect place from which one can launch to any one of the many fantastic destinations and game reserves in KwaZulu Natal, i.e. the Majestic Drakensberg Mountain Range, Shongweni Nature Reserve, Nagle Dam, Durban &amp; Beach Front. We are also the doorstep of one of KZN’s major horse riding venues namely, the Shongweni Horse Riding Club &amp; the Summerveld Horse Riding Academy, makes Assagay Lodge a perfect home away from home for the equestrian lovers. The peace &amp; tranquility will take you far away from the business of city life. Evenings are quiet and peaceful. This is a unique and memorable country experience.</p>\r\n[/fusion_text][/one_half][one_half last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][fusion_text]\r\n<p style=\"text-align: justify;\">We are a homely \'down to earth\' country guest lodge, set on a farm surrounded by acres of beautiful hills, forests, &amp; dams in the Madwala Conservancy of Assagay, where horses still have the right of way on all roads. Our five bedrooms have a rustic charm offering the comforts of modern day life.</p>\r\n<p style=\"text-align: justify;\">Assagay Forest Lodge is owner managed, built in 2005 the lodge provides 5 cozy bedrooms with a large spacious and comfortable homely lounge, which leads onto a large deck area. Set on a 6 acre property in the Assagay Conservancy our lodge is nestled around trees, bushes, and beautiful gardens and a stream, allowing visitors to meander and relax. Guests seeking a quite, relaxing, homely experience will find our lodge the perfect choice away from home. There is a kitchen available should you wish to muster up a snack or quick meal, however breakfast is available on request.</p>\r\n[/fusion_text][/one_half][/fullwidth][fullwidth background_color=\"#f0f0ed\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"60px\" padding_bottom=\"45px\" padding_left=\"0px\" padding_right=\"0px\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][fusion_text]\r\n<h1 style=\"text-align: center;\">Gallery</h1>\r\n[/fusion_text][separator style_type=\"single\" top_margin=\"\" bottom_margin=\"40\" sep_color=\"#000000\" border_size=\"\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"170px\" alignment=\"\" class=\"\" id=\"\"][one_sixth last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][/one_sixth][two_third last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][fusion_text]\r\n<h3 style=\"text-align: center;\">The Lodge is open, spacious, comfortable and homely.</h3>\r\n[/fusion_text][/two_third][one_sixth last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][/one_sixth][separator style_type=\"none\" top_margin=\"20\" bottom_margin=\"\" sep_color=\"\" border_size=\"\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"100%\" alignment=\"\" class=\"\" id=\"\"][recent_works layout=\"grid\" picture_size=\"auto\" boxed_text=\"boxed\" filters=\"no\" columns=\"3\" column_spacing=\"12\" cat_slug=\"the-lodge\" exclude_cats=\"\" number_posts=\"9\" offset=\"\" excerpt_length=\"35\" strip_html=\"yes\" carousel_layout=\"title_on_rollover\" scroll_items=\"\" autoplay=\"no\" show_nav=\"yes\" mouse_scroll=\"no\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" class=\"\" id=\"\"][/recent_works][/fullwidth][fullwidth background_color=\"#ffffff\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"65px\" padding_bottom=\"65px\" padding_left=\"0px\" padding_right=\"0px\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][button link=\"/avada_demos/travel/our-destinations/\" color=\"default\" size=\"xlarge\" type=\"3d\" shape=\"round\" target=\"_self\" title=\"\" gradient_colors=\"#f0f0ed|#f0f0ed\" gradient_hover_colors=\"#6666a4|#6666a4\" accent_color=\"#ffffff\" accent_hover_color=\"#ffffff\" bevel_color=\"\" border_width=\"0px\" icon=\"\" icon_position=\"left\" icon_divider=\"no\" modal=\"\" animation_type=\"0\" animation_direction=\"left\" animation_speed=\"1\" alignment=\"center\" class=\"\" id=\"\"]View All Destinations[/button][/fullwidth][fullwidth background_color=\"#6666a4\" background_image=\"http://localhost/assagaylodge/wp-content/uploads/2015/01/DSC01516-1148-x-764.jpg\" background_parallax=\"fixed\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"center center\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"yes\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"110px\" padding_bottom=\"100px\" padding_left=\"0px\" padding_right=\"0px\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][/fullwidth][fullwidth background_color=\"\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"60px\" padding_bottom=\"35px\" padding_left=\"0px\" padding_right=\"0px\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][fusion_text]\r\n<h1 style=\"text-align: center;\">TRAVEL BLOG</h1>\r\n[/fusion_text][separator style_type=\"single\" top_margin=\"\" bottom_margin=\"20\" sep_color=\"#000000\" border_size=\"\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"170px\" alignment=\"\" class=\"\" id=\"\"][one_sixth last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][/one_sixth][two_third last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][fusion_text]\r\n<h3 style=\"text-align: center;\">When it comes to our advice we’re proud to say we’re different. We offer something a little more special.</h3>\r\n[/fusion_text][/two_third][one_sixth last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][/one_sixth][separator style_type=\"none\" top_margin=\"40\" bottom_margin=\"\" sep_color=\"\" border_size=\"\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"100%\" alignment=\"center\" class=\"\" id=\"\"][one_fifth last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][/one_fifth][three_fifth last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][blog number_posts=\"3\" offset=\"\" cat_slug=\"\" exclude_cats=\"\" title=\"yes\" title_link=\"yes\" thumbnail=\"yes\" excerpt=\"yes\" excerpt_length=\"25\" meta_all=\"no\" meta_author=\"no\" meta_categories=\"no\" meta_comments=\"no\" meta_date=\"no\" meta_link=\"no\" meta_tags=\"no\" paging=\"no\" scrolling=\"pagination\" strip_html=\"yes\" blog_grid_columns=\"2\" blog_grid_column_spacing=\"40\" layout=\"medium\" class=\"\" id=\"\"][/blog][/three_fifth][one_fifth last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][/one_fifth][/fullwidth][fullwidth background_color=\"\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding_top=\"20\" padding_bottom=\"20\" padding_left=\"0\" padding_right=\"0\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][/fullwidth][fullwidth background_color=\"\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding_top=\"20\" padding_bottom=\"20\" padding_left=\"0\" padding_right=\"0\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][/fullwidth]', 'Home', '', 'inherit', 'closed', 'closed', '', '7-revision-v1', '', '', '2015-09-07 11:21:06', '2015-09-07 09:21:06', '', 7, 'http://localhost/assagaylodge/7-revision-v1/', 0, 'revision', '', 0),
(916, 1, '2015-09-07 11:28:59', '2015-09-07 09:28:59', '[fullwidth background_color=\"\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"90px\" padding_bottom=\"0px\" padding_left=\"0px\" padding_right=\"0px\" hundred_percent=\"yes\" equal_height_columns=\"yes\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][one_half last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"http://localhost/assagaylodge/wp-content/uploads/2015/08/Tha-Lodge.jpg\" background_repeat=\"no-repeat\" background_position=\"center center\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" class=\"\" id=\"\"][/one_half][one_half last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"30px\" margin_top=\"\" margin_bottom=\"0px\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" class=\"special\" id=\"\"][fusion_text]\r\n<h1>5 BEDROOM FAMILY LODGE</h1>\r\n[/fusion_text][separator style_type=\"single\" top_margin=\"0\" bottom_margin=\"30\" sep_color=\"#000000\" border_size=\"\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"170px\" alignment=\"left\" class=\"separator-left\" id=\"\"][fusion_text]\r\n<h3>Self-Catering/Service Options/B&amp;B</h3>\r\n[/fusion_text][/one_half][/fullwidth][fullwidth background_color=\"\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"30px\" padding_bottom=\"60px\" padding_left=\"0px\" padding_right=\"0px\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][one_half last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][fusion_text]\r\n<p style=\"text-align: justify;\">The property boasts over 200 different species of birds and animals. The Lodge is situated on the 1000 Hills tourism route, on the edge of Hillcrest and is a perfect place from which one can launch to any one of the many fantastic destinations and game reserves in KwaZulu Natal, i.e. the Majestic Drakensberg Mountain Range, Shongweni Nature Reserve, Nagle Dam, Durban &amp; Beach Front. We are also the doorstep of one of KZN’s major horse riding venues namely, the Shongweni Horse Riding Club &amp; the Summerveld Horse Riding Academy, makes Assagay Lodge a perfect home away from home for the equestrian lovers. The peace &amp; tranquility will take you far away from the business of city life. Evenings are quiet and peaceful. This is a unique and memorable country experience.</p>\r\n[/fusion_text][/one_half][one_half last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][fusion_text]\r\n<p style=\"text-align: justify;\">We are a homely \'down to earth\' country guest lodge, set on a farm surrounded by acres of beautiful hills, forests, &amp; dams in the Madwala Conservancy of Assagay, where horses still have the right of way on all roads. Our five bedrooms have a rustic charm offering the comforts of modern day life.</p>\r\n<p style=\"text-align: justify;\">Assagay Forest Lodge is owner managed, built in 2005 the lodge provides 5 cozy bedrooms with a large spacious and comfortable homely lounge, which leads onto a large deck area. Set on a 6 acre property in the Assagay Conservancy our lodge is nestled around trees, bushes, and beautiful gardens and a stream, allowing visitors to meander and relax. Guests seeking a quite, relaxing, homely experience will find our lodge the perfect choice away from home. There is a kitchen available should you wish to muster up a snack or quick meal, however breakfast is available on request.</p>\r\n[/fusion_text][/one_half][/fullwidth][fullwidth background_color=\"#f0f0ed\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"60px\" padding_bottom=\"45px\" padding_left=\"0px\" padding_right=\"0px\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][fusion_text]\r\n<h1 style=\"text-align: center;\">Gallery</h1>\r\n[/fusion_text][separator style_type=\"single\" top_margin=\"\" bottom_margin=\"40\" sep_color=\"#000000\" border_size=\"\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"170px\" alignment=\"\" class=\"\" id=\"\"][one_sixth last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][/one_sixth][two_third last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][fusion_text]\r\n<h3 style=\"text-align: center;\">The Lodge is open, spacious, comfortable and homely.</h3>\r\n[/fusion_text][/two_third][one_sixth last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][/one_sixth][separator style_type=\"none\" top_margin=\"20\" bottom_margin=\"\" sep_color=\"\" border_size=\"\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"100%\" alignment=\"\" class=\"\" id=\"\"][recent_works layout=\"grid\" picture_size=\"auto\" boxed_text=\"boxed\" filters=\"no\" columns=\"3\" column_spacing=\"12\" cat_slug=\"the-lodge\" exclude_cats=\"\" number_posts=\"9\" offset=\"\" excerpt_length=\"35\" strip_html=\"yes\" carousel_layout=\"title_on_rollover\" scroll_items=\"\" autoplay=\"no\" show_nav=\"yes\" mouse_scroll=\"no\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" class=\"\" id=\"\"][/recent_works][/fullwidth][fullwidth background_color=\"#ffffff\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"65px\" padding_bottom=\"65px\" padding_left=\"0px\" padding_right=\"0px\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][button link=\"/avada_demos/travel/our-destinations/\" color=\"default\" size=\"xlarge\" type=\"3d\" shape=\"round\" target=\"_self\" title=\"\" gradient_colors=\"#f0f0ed|#f0f0ed\" gradient_hover_colors=\"#6666a4|#6666a4\" accent_color=\"#ffffff\" accent_hover_color=\"#ffffff\" bevel_color=\"\" border_width=\"0px\" icon=\"\" icon_position=\"left\" icon_divider=\"no\" modal=\"\" animation_type=\"0\" animation_direction=\"left\" animation_speed=\"1\" alignment=\"center\" class=\"\" id=\"\"]View All Destinations[/button][/fullwidth][fullwidth background_color=\"#6666a4\" background_image=\"http://localhost/assagaylodge/wp-content/uploads/2015/01/DSC01516-1148-x-764.jpg\" background_parallax=\"fixed\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"center center\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"yes\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"110px\" padding_bottom=\"100px\" padding_left=\"0px\" padding_right=\"0px\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][/fullwidth][fullwidth background_color=\"\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"60px\" padding_bottom=\"35px\" padding_left=\"0px\" padding_right=\"0px\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][fusion_text]\r\n<h1 style=\"text-align: center;\">BEDROOMS</h1>\r\n[/fusion_text][separator style_type=\"single\" top_margin=\"\" bottom_margin=\"20\" sep_color=\"#000000\" border_size=\"\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"170px\" alignment=\"\" class=\"\" id=\"\"][one_sixth last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][/one_sixth][two_third last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][fusion_text]\r\n<h3 style=\"text-align: center;\">When it comes to our advice we’re proud to say we’re different. We offer something a little more special.</h3>\r\n[/fusion_text][/two_third][one_sixth last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][/one_sixth][separator style_type=\"none\" top_margin=\"40\" bottom_margin=\"\" sep_color=\"\" border_size=\"\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"100%\" alignment=\"center\" class=\"\" id=\"\"][one_fifth last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][/one_fifth][three_fifth last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][blog number_posts=\"3\" offset=\"\" cat_slug=\"\" exclude_cats=\"\" title=\"yes\" title_link=\"yes\" thumbnail=\"yes\" excerpt=\"yes\" excerpt_length=\"25\" meta_all=\"no\" meta_author=\"no\" meta_categories=\"no\" meta_comments=\"no\" meta_date=\"no\" meta_link=\"no\" meta_tags=\"no\" paging=\"no\" scrolling=\"pagination\" strip_html=\"yes\" blog_grid_columns=\"2\" blog_grid_column_spacing=\"40\" layout=\"medium\" class=\"\" id=\"\"][/blog][/three_fifth][one_fifth last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][/one_fifth][/fullwidth][fullwidth background_color=\"\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding_top=\"20\" padding_bottom=\"20\" padding_left=\"0\" padding_right=\"0\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][/fullwidth][fullwidth background_color=\"\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding_top=\"20\" padding_bottom=\"20\" padding_left=\"0\" padding_right=\"0\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][/fullwidth]', 'Home', '', 'inherit', 'closed', 'closed', '', '7-revision-v1', '', '', '2015-09-07 11:28:59', '2015-09-07 09:28:59', '', 7, 'http://localhost/assagaylodge/7-revision-v1/', 0, 'revision', '', 0);
INSERT INTO `wp_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(917, 1, '2015-09-07 13:23:07', '2015-09-07 11:23:07', '[fullwidth background_color=\"\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"90px\" padding_bottom=\"0px\" padding_left=\"0px\" padding_right=\"0px\" hundred_percent=\"yes\" equal_height_columns=\"yes\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][one_half last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"http://localhost/assagaylodge/wp-content/uploads/2015/08/Tha-Lodge.jpg\" background_repeat=\"no-repeat\" background_position=\"center center\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" class=\"\" id=\"\"][/one_half][one_half last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"30px\" margin_top=\"\" margin_bottom=\"0px\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" class=\"special\" id=\"\"][fusion_text]\r\n<h1>5 BEDROOM FAMILY LODGE</h1>\r\n[/fusion_text][separator style_type=\"single\" top_margin=\"0\" bottom_margin=\"30\" sep_color=\"#000000\" border_size=\"\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"170px\" alignment=\"left\" class=\"separator-left\" id=\"\"][fusion_text]\r\n<h3>Self-Catering/Service Options/B&amp;B</h3>\r\n[/fusion_text][/one_half][/fullwidth][fullwidth background_color=\"\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"30px\" padding_bottom=\"60px\" padding_left=\"0px\" padding_right=\"0px\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][one_half last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][fusion_text]\r\n<p style=\"text-align: justify;\">The property boasts over 200 different species of birds and animals. The Lodge is situated on the 1000 Hills tourism route, on the edge of Hillcrest and is a perfect place from which one can launch to any one of the many fantastic destinations and game reserves in KwaZulu Natal, i.e. the Majestic Drakensberg Mountain Range, Shongweni Nature Reserve, Nagle Dam, Durban &amp; Beach Front. We are also the doorstep of one of KZN’s major horse riding venues namely, the Shongweni Horse Riding Club &amp; the Summerveld Horse Riding Academy, makes Assagay Lodge a perfect home away from home for the equestrian lovers. The peace &amp; tranquility will take you far away from the business of city life. Evenings are quiet and peaceful. This is a unique and memorable country experience.</p>\r\n[/fusion_text][/one_half][one_half last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][fusion_text]\r\n<p style=\"text-align: justify;\">We are a homely \'down to earth\' country guest lodge, set on a farm surrounded by acres of beautiful hills, forests, &amp; dams in the Madwala Conservancy of Assagay, where horses still have the right of way on all roads. Our five bedrooms have a rustic charm offering the comforts of modern day life.</p>\r\n<p style=\"text-align: justify;\">Assagay Forest Lodge is owner managed, built in 2005 the lodge provides 5 cozy bedrooms with a large spacious and comfortable homely lounge, which leads onto a large deck area. Set on a 6 acre property in the Assagay Conservancy our lodge is nestled around trees, bushes, and beautiful gardens and a stream, allowing visitors to meander and relax. Guests seeking a quite, relaxing, homely experience will find our lodge the perfect choice away from home. There is a kitchen available should you wish to muster up a snack or quick meal, however breakfast is available on request.</p>\r\n[/fusion_text][/one_half][/fullwidth][fullwidth background_color=\"#f0f0ed\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"60px\" padding_bottom=\"45px\" padding_left=\"0px\" padding_right=\"0px\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][fusion_text]\r\n<h1 style=\"text-align: center;\">Gallery</h1>\r\n[/fusion_text][separator style_type=\"single\" top_margin=\"\" bottom_margin=\"40\" sep_color=\"#000000\" border_size=\"\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"170px\" alignment=\"\" class=\"\" id=\"\"][one_sixth last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][/one_sixth][two_third last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][fusion_text]\r\n<h3 style=\"text-align: center;\">The Lodge is open, spacious, comfortable and homely.</h3>\r\n[/fusion_text][/two_third][one_sixth last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][/one_sixth][separator style_type=\"none\" top_margin=\"20\" bottom_margin=\"\" sep_color=\"\" border_size=\"\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"100%\" alignment=\"\" class=\"\" id=\"\"][recent_works layout=\"grid\" picture_size=\"auto\" boxed_text=\"boxed\" filters=\"no\" columns=\"3\" column_spacing=\"12\" cat_slug=\"the-lodge\" exclude_cats=\"\" number_posts=\"9\" offset=\"\" excerpt_length=\"35\" strip_html=\"yes\" carousel_layout=\"title_on_rollover\" scroll_items=\"\" autoplay=\"no\" show_nav=\"yes\" mouse_scroll=\"no\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" class=\"\" id=\"\"][/recent_works][/fullwidth][fullwidth background_color=\"#ffffff\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"65px\" padding_bottom=\"65px\" padding_left=\"0px\" padding_right=\"0px\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][button link=\"/avada_demos/travel/our-destinations/\" color=\"default\" size=\"xlarge\" type=\"3d\" shape=\"round\" target=\"_self\" title=\"\" gradient_colors=\"#f0f0ed|#f0f0ed\" gradient_hover_colors=\"#6666a4|#6666a4\" accent_color=\"#ffffff\" accent_hover_color=\"#ffffff\" bevel_color=\"\" border_width=\"0px\" icon=\"\" icon_position=\"left\" icon_divider=\"no\" modal=\"\" animation_type=\"0\" animation_direction=\"left\" animation_speed=\"1\" alignment=\"center\" class=\"\" id=\"\"]View All Destinations[/button][/fullwidth][fullwidth background_color=\"#6666a4\" background_image=\"http://localhost/assagaylodge/wp-content/uploads/2015/01/DSC01516-1148-x-764.jpg\" background_parallax=\"fixed\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"center center\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"yes\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"110px\" padding_bottom=\"100px\" padding_left=\"0px\" padding_right=\"0px\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][/fullwidth][fullwidth background_color=\"\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"60px\" padding_bottom=\"35px\" padding_left=\"0px\" padding_right=\"0px\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][fusion_text]\r\n<h1 style=\"text-align: center;\">BEDROOMS</h1>\r\n[/fusion_text][separator style_type=\"single\" top_margin=\"\" bottom_margin=\"20\" sep_color=\"#000000\" border_size=\"\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"170px\" alignment=\"\" class=\"\" id=\"\"][one_sixth last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][/one_sixth][two_third last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][fusion_text]\r\n<h3 style=\"text-align: center;\">When it comes to our advice we’re proud to say we’re different. We offer something a little more special.</h3>\r\nAll our five bedrooms are all en-suite and equipped with either king size or queen size beds. The rooms have wall heaters &amp; ceiling fans. Beds all have electric blankets in Winter, 100% cotton percale sheets and thick microfiber duvets and pillows.\r\n\r\n[/fusion_text][/two_third][one_sixth last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][/one_sixth][separator style_type=\"none\" top_margin=\"40\" bottom_margin=\"\" sep_color=\"\" border_size=\"\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"100%\" alignment=\"center\" class=\"\" id=\"\"][one_fifth last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][/one_fifth][three_fifth last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][blog number_posts=\"3\" offset=\"\" cat_slug=\"\" exclude_cats=\"\" title=\"yes\" title_link=\"yes\" thumbnail=\"yes\" excerpt=\"yes\" excerpt_length=\"25\" meta_all=\"no\" meta_author=\"no\" meta_categories=\"no\" meta_comments=\"no\" meta_date=\"no\" meta_link=\"no\" meta_tags=\"no\" paging=\"no\" scrolling=\"pagination\" strip_html=\"yes\" blog_grid_columns=\"2\" blog_grid_column_spacing=\"40\" layout=\"medium\" class=\"\" id=\"\"][/blog][/three_fifth][one_fifth last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][/one_fifth][/fullwidth][fullwidth background_color=\"\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding_top=\"20\" padding_bottom=\"20\" padding_left=\"0\" padding_right=\"0\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][/fullwidth][fullwidth background_color=\"\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding_top=\"20\" padding_bottom=\"20\" padding_left=\"0\" padding_right=\"0\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][/fullwidth]', 'Home', '', 'inherit', 'closed', 'closed', '', '7-revision-v1', '', '', '2015-09-07 13:23:07', '2015-09-07 11:23:07', '', 7, 'http://localhost/assagaylodge/7-revision-v1/', 0, 'revision', '', 0),
(918, 1, '2015-09-07 13:48:07', '2015-09-07 11:48:07', '[fullwidth background_color=\"\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"90px\" padding_bottom=\"0px\" padding_left=\"0px\" padding_right=\"0px\" hundred_percent=\"yes\" equal_height_columns=\"yes\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][one_half last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"http://localhost/assagaylodge/wp-content/uploads/2015/08/Tha-Lodge.jpg\" background_repeat=\"no-repeat\" background_position=\"center center\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" class=\"\" id=\"\"][/one_half][one_half last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"30px\" margin_top=\"\" margin_bottom=\"0px\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" class=\"special\" id=\"\"][fusion_text]\r\n<h1>5 BEDROOM FAMILY LODGE</h1>\r\n[/fusion_text][separator style_type=\"single\" top_margin=\"0\" bottom_margin=\"30\" sep_color=\"#000000\" border_size=\"\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"170px\" alignment=\"left\" class=\"separator-left\" id=\"\"][fusion_text]\r\n<h3>Self-Catering/Service Options/B&amp;B</h3>\r\n[/fusion_text][/one_half][/fullwidth][fullwidth background_color=\"\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"30px\" padding_bottom=\"60px\" padding_left=\"0px\" padding_right=\"0px\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][one_half last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][fusion_text]\r\n<p style=\"text-align: justify;\">The property boasts over 200 different species of birds and animals. The Lodge is situated on the 1000 Hills tourism route, on the edge of Hillcrest and is a perfect place from which one can launch to any one of the many fantastic destinations and game reserves in KwaZulu Natal, i.e. the Majestic Drakensberg Mountain Range, Shongweni Nature Reserve, Nagle Dam, Durban &amp; Beach Front. We are also the doorstep of one of KZN’s major horse riding venues namely, the Shongweni Horse Riding Club &amp; the Summerveld Horse Riding Academy, makes Assagay Lodge a perfect home away from home for the equestrian lovers. The peace &amp; tranquility will take you far away from the business of city life. Evenings are quiet and peaceful. This is a unique and memorable country experience.</p>\r\n[/fusion_text][/one_half][one_half last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][fusion_text]\r\n<p style=\"text-align: justify;\">We are a homely \'down to earth\' country guest lodge, set on a farm surrounded by acres of beautiful hills, forests, &amp; dams in the Madwala Conservancy of Assagay, where horses still have the right of way on all roads. Our five bedrooms have a rustic charm offering the comforts of modern day life.</p>\r\n<p style=\"text-align: justify;\">Assagay Forest Lodge is owner managed, built in 2005 the lodge provides 5 cozy bedrooms with a large spacious and comfortable homely lounge, which leads onto a large deck area. Set on a 6 acre property in the Assagay Conservancy our lodge is nestled around trees, bushes, and beautiful gardens and a stream, allowing visitors to meander and relax. Guests seeking a quite, relaxing, homely experience will find our lodge the perfect choice away from home. There is a kitchen available should you wish to muster up a snack or quick meal, however breakfast is available on request.</p>\r\n[/fusion_text][/one_half][/fullwidth][fullwidth background_color=\"#f0f0ed\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"60px\" padding_bottom=\"45px\" padding_left=\"0px\" padding_right=\"0px\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][fusion_text]\r\n<h1 style=\"text-align: center;\">Gallery</h1>\r\n[/fusion_text][separator style_type=\"single\" top_margin=\"\" bottom_margin=\"40\" sep_color=\"#000000\" border_size=\"\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"170px\" alignment=\"\" class=\"\" id=\"\"][one_sixth last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][/one_sixth][two_third last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][fusion_text]\r\n<h3 style=\"text-align: center;\">The Lodge is open, spacious, comfortable and homely.</h3>\r\n[/fusion_text][/two_third][one_sixth last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][/one_sixth][separator style_type=\"none\" top_margin=\"20\" bottom_margin=\"\" sep_color=\"\" border_size=\"\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"100%\" alignment=\"\" class=\"\" id=\"\"][recent_works layout=\"grid\" picture_size=\"auto\" boxed_text=\"boxed\" filters=\"no\" columns=\"3\" column_spacing=\"12\" cat_slug=\"the-lodge\" exclude_cats=\"\" number_posts=\"9\" offset=\"\" excerpt_length=\"35\" strip_html=\"yes\" carousel_layout=\"title_on_rollover\" scroll_items=\"\" autoplay=\"no\" show_nav=\"yes\" mouse_scroll=\"no\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" class=\"\" id=\"\"][/recent_works][/fullwidth][fullwidth background_color=\"#ffffff\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"65px\" padding_bottom=\"65px\" padding_left=\"0px\" padding_right=\"0px\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][button link=\"/avada_demos/travel/our-destinations/\" color=\"default\" size=\"xlarge\" type=\"3d\" shape=\"round\" target=\"_self\" title=\"\" gradient_colors=\"#f0f0ed|#f0f0ed\" gradient_hover_colors=\"#6666a4|#6666a4\" accent_color=\"#ffffff\" accent_hover_color=\"#ffffff\" bevel_color=\"\" border_width=\"0px\" icon=\"\" icon_position=\"left\" icon_divider=\"no\" modal=\"\" animation_type=\"0\" animation_direction=\"left\" animation_speed=\"1\" alignment=\"center\" class=\"\" id=\"\"]View All Destinations[/button][/fullwidth][fullwidth background_color=\"\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"60px\" padding_bottom=\"35px\" padding_left=\"0px\" padding_right=\"0px\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][fusion_text]\r\n<h1 style=\"text-align: center;\">BEDROOMS</h1>\r\n[/fusion_text][separator style_type=\"single\" top_margin=\"\" bottom_margin=\"20\" sep_color=\"#000000\" border_size=\"\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"170px\" alignment=\"\" class=\"\" id=\"\"][one_sixth last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][/one_sixth][two_third last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][fusion_text]\r\n<h3 style=\"text-align: center;\">When it comes to our advice we’re proud to say we’re different. We offer something a little more special.</h3>\r\nOur five bedrooms are all en-suite and equipped with either king size or queen size beds. The rooms have high ceilings, wall heaters &amp; ceiling fans. Beds all have electric blankets in Winter, 100% cotton percale sheets and thick microfiber duvets and pillows.[/fusion_text][/two_third][one_sixth last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][/one_sixth][separator style_type=\"none\" top_margin=\"40\" bottom_margin=\"\" sep_color=\"\" border_size=\"\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"100%\" alignment=\"center\" class=\"\" id=\"\"][/fullwidth][fullwidth background_color=\"#6666a4\" background_image=\"http://localhost/assagaylodge/wp-content/uploads/2015/01/DSC01516-1148-x-764.jpg\" background_parallax=\"fixed\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"center center\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"yes\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"110px\" padding_bottom=\"100px\" padding_left=\"0px\" padding_right=\"0px\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][recent_works layout=\"grid\" picture_size=\"auto\" boxed_text=\"boxed\" filters=\"no\" columns=\"3\" column_spacing=\"12\" cat_slug=\"the-lodge\" exclude_cats=\"\" number_posts=\"9\" offset=\"\" excerpt_length=\"35\" strip_html=\"yes\" carousel_layout=\"title_on_rollover\" scroll_items=\"\" autoplay=\"no\" show_nav=\"yes\" mouse_scroll=\"no\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" class=\"\" id=\"\"][/recent_works][/fullwidth][fullwidth background_color=\"\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding_top=\"20\" padding_bottom=\"20\" padding_left=\"0\" padding_right=\"0\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][/fullwidth]', 'Home', '', 'inherit', 'closed', 'closed', '', '7-revision-v1', '', '', '2015-09-07 13:48:07', '2015-09-07 11:48:07', '', 7, 'http://localhost/assagaylodge/7-revision-v1/', 0, 'revision', '', 0),
(919, 1, '2015-09-07 16:49:53', '2015-09-07 14:49:53', '', 'Bedrooms1', '', 'publish', 'closed', 'closed', '', 'bedrooms1', '', '', '2015-09-07 16:49:53', '2015-09-07 14:49:53', '', 0, 'http://localhost/assagaylodge/?post_type=avada_portfolio&#038;p=919', 0, 'avada_portfolio', '', 0),
(920, 1, '2015-09-07 16:47:07', '2015-09-07 14:47:07', '', 'DSC01512 (800 x 532)', '', 'inherit', 'open', 'closed', '', 'dsc01512-800-x-532', '', '', '2015-09-07 16:47:07', '2015-09-07 14:47:07', '', 919, 'http://localhost/assagaylodge/wp-content/uploads/2015/09/DSC01512-800-x-532.jpg', 0, 'attachment', 'image/jpeg', 0),
(921, 1, '2015-09-07 16:47:20', '2015-09-07 14:47:20', '', 'DSC01516 (800 x 532)', '', 'inherit', 'open', 'closed', '', 'dsc01516-800-x-532', '', '', '2015-09-07 16:47:20', '2015-09-07 14:47:20', '', 919, 'http://localhost/assagaylodge/wp-content/uploads/2015/09/DSC01516-800-x-532.jpg', 0, 'attachment', 'image/jpeg', 0),
(922, 1, '2015-09-07 16:47:34', '2015-09-07 14:47:34', '', 'DSC01523 (800 x 532)', '', 'inherit', 'open', 'closed', '', 'dsc01523-800-x-532', '', '', '2015-09-07 16:47:34', '2015-09-07 14:47:34', '', 919, 'http://localhost/assagaylodge/wp-content/uploads/2015/09/DSC01523-800-x-532.jpg', 0, 'attachment', 'image/jpeg', 0),
(923, 1, '2015-09-07 16:47:45', '2015-09-07 14:47:45', '', 'DSC01532 (800 x 532)', '', 'inherit', 'open', 'closed', '', 'dsc01532-800-x-532', '', '', '2015-09-07 16:47:45', '2015-09-07 14:47:45', '', 919, 'http://localhost/assagaylodge/wp-content/uploads/2015/09/DSC01532-800-x-532.jpg', 0, 'attachment', 'image/jpeg', 0),
(924, 1, '2015-09-07 16:47:57', '2015-09-07 14:47:57', '', 'DSC01510 (800 x 532)', '', 'inherit', 'open', 'closed', '', 'dsc01510-800-x-532', '', '', '2015-09-07 16:47:57', '2015-09-07 14:47:57', '', 919, 'http://localhost/assagaylodge/wp-content/uploads/2015/09/DSC01510-800-x-532.jpg', 0, 'attachment', 'image/jpeg', 0),
(926, 1, '2015-09-07 16:49:53', '2015-09-07 14:49:53', '', 'Bedrooms1', '', 'inherit', 'closed', 'closed', '', '919-revision-v1', '', '', '2015-09-07 16:49:53', '2015-09-07 14:49:53', '', 919, 'http://localhost/assagaylodge/919-revision-v1/', 0, 'revision', '', 0),
(927, 1, '2015-09-07 16:52:42', '2015-09-07 14:52:42', '', 'Bedrooms2', '', 'publish', 'open', 'closed', '', 'bedrooms2', '', '', '2015-09-07 16:52:42', '2015-09-07 14:52:42', '', 0, 'http://localhost/assagaylodge/?post_type=avada_portfolio&#038;p=927', 0, 'avada_portfolio', '', 0),
(928, 1, '2015-09-07 16:52:00', '2015-09-07 14:52:00', '[fullwidth background_color=\"\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"90px\" padding_bottom=\"0px\" padding_left=\"0px\" padding_right=\"0px\" hundred_percent=\"yes\" equal_height_columns=\"yes\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][one_half last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"http://localhost/assagaylodge/wp-content/uploads/2015/08/Tha-Lodge.jpg\" background_repeat=\"no-repeat\" background_position=\"center center\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" class=\"\" id=\"\"][/one_half][one_half last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"30px\" margin_top=\"\" margin_bottom=\"0px\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" class=\"special\" id=\"\"][fusion_text]\r\n<h1>5 BEDROOM FAMILY LODGE</h1>\r\n[/fusion_text][separator style_type=\"single\" top_margin=\"0\" bottom_margin=\"30\" sep_color=\"#000000\" border_size=\"\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"170px\" alignment=\"left\" class=\"separator-left\" id=\"\"][fusion_text]\r\n<h3>Self-Catering/Service Options/B&amp;B</h3>\r\n[/fusion_text][/one_half][/fullwidth][fullwidth background_color=\"\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"30px\" padding_bottom=\"60px\" padding_left=\"0px\" padding_right=\"0px\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][one_half last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][fusion_text]\r\n<p style=\"text-align: justify;\">The property boasts over 200 different species of birds and animals. The Lodge is situated on the 1000 Hills tourism route, on the edge of Hillcrest and is a perfect place from which one can launch to any one of the many fantastic destinations and game reserves in KwaZulu Natal, i.e. the Majestic Drakensberg Mountain Range, Shongweni Nature Reserve, Nagle Dam, Durban &amp; Beach Front. We are also the doorstep of one of KZN’s major horse riding venues namely, the Shongweni Horse Riding Club &amp; the Summerveld Horse Riding Academy, makes Assagay Lodge a perfect home away from home for the equestrian lovers. The peace &amp; tranquility will take you far away from the business of city life. Evenings are quiet and peaceful. This is a unique and memorable country experience.</p>\r\n[/fusion_text][/one_half][one_half last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][fusion_text]\r\n<p style=\"text-align: justify;\">We are a homely \'down to earth\' country guest lodge, set on a farm surrounded by acres of beautiful hills, forests, &amp; dams in the Madwala Conservancy of Assagay, where horses still have the right of way on all roads. Our five bedrooms have a rustic charm offering the comforts of modern day life.</p>\r\n<p style=\"text-align: justify;\">Assagay Forest Lodge is owner managed, built in 2005 the lodge provides 5 cozy bedrooms with a large spacious and comfortable homely lounge, which leads onto a large deck area. Set on a 6 acre property in the Assagay Conservancy our lodge is nestled around trees, bushes, and beautiful gardens and a stream, allowing visitors to meander and relax. Guests seeking a quite, relaxing, homely experience will find our lodge the perfect choice away from home. There is a kitchen available should you wish to muster up a snack or quick meal, however breakfast is available on request.</p>\r\n[/fusion_text][/one_half][/fullwidth][fullwidth background_color=\"#f0f0ed\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"60px\" padding_bottom=\"45px\" padding_left=\"0px\" padding_right=\"0px\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][fusion_text]\r\n<h1 style=\"text-align: center;\">Gallery</h1>\r\n[/fusion_text][separator style_type=\"single\" top_margin=\"\" bottom_margin=\"40\" sep_color=\"#000000\" border_size=\"\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"170px\" alignment=\"\" class=\"\" id=\"\"][one_sixth last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][/one_sixth][two_third last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][fusion_text]\r\n<h3 style=\"text-align: center;\">The Lodge is open, spacious, comfortable and homely.</h3>\r\n[/fusion_text][/two_third][one_sixth last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][/one_sixth][separator style_type=\"none\" top_margin=\"20\" bottom_margin=\"\" sep_color=\"\" border_size=\"\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"100%\" alignment=\"\" class=\"\" id=\"\"][recent_works layout=\"grid\" picture_size=\"auto\" boxed_text=\"boxed\" filters=\"no\" columns=\"3\" column_spacing=\"12\" cat_slug=\"the-lodge\" exclude_cats=\"\" number_posts=\"9\" offset=\"\" excerpt_length=\"35\" strip_html=\"yes\" carousel_layout=\"title_on_rollover\" scroll_items=\"\" autoplay=\"no\" show_nav=\"yes\" mouse_scroll=\"no\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" class=\"\" id=\"\"][/recent_works][/fullwidth][fullwidth background_color=\"#ffffff\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"65px\" padding_bottom=\"65px\" padding_left=\"0px\" padding_right=\"0px\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][button link=\"/avada_demos/travel/our-destinations/\" color=\"default\" size=\"xlarge\" type=\"3d\" shape=\"round\" target=\"_self\" title=\"\" gradient_colors=\"#f0f0ed|#f0f0ed\" gradient_hover_colors=\"#6666a4|#6666a4\" accent_color=\"#ffffff\" accent_hover_color=\"#ffffff\" bevel_color=\"\" border_width=\"0px\" icon=\"\" icon_position=\"left\" icon_divider=\"no\" modal=\"\" animation_type=\"0\" animation_direction=\"left\" animation_speed=\"1\" alignment=\"center\" class=\"\" id=\"\"]View All Destinations[/button][/fullwidth][fullwidth background_color=\"\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"60px\" padding_bottom=\"35px\" padding_left=\"0px\" padding_right=\"0px\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][fusion_text]\r\n<h1 style=\"text-align: center;\">BEDROOMS</h1>\r\n[/fusion_text][separator style_type=\"single\" top_margin=\"\" bottom_margin=\"20\" sep_color=\"#000000\" border_size=\"\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"170px\" alignment=\"\" class=\"\" id=\"\"][one_sixth last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][/one_sixth][two_third last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][fusion_text]\r\n<h3 style=\"text-align: center;\">When it comes to our advice we’re proud to say we’re different. We offer something a little more special.</h3>\r\nOur five bedrooms are all en-suite and equipped with either king size or queen size beds. The rooms have high ceilings, wall heaters &amp; ceiling fans. Beds all have electric blankets in Winter, 100% cotton percale sheets and thick hyper allergenic microfiber duvets and pillows.[/fusion_text][/two_third][one_sixth last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][/one_sixth][separator style_type=\"none\" top_margin=\"40\" bottom_margin=\"\" sep_color=\"\" border_size=\"\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"100%\" alignment=\"center\" class=\"\" id=\"\"][/fullwidth][fullwidth background_color=\"#6666a4\" background_image=\"http://localhost/assagaylodge/wp-content/uploads/2015/01/DSC01516-1148-x-764.jpg\" background_parallax=\"fixed\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"center center\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"yes\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"110px\" padding_bottom=\"100px\" padding_left=\"0px\" padding_right=\"0px\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][recent_works layout=\"grid\" picture_size=\"auto\" boxed_text=\"boxed\" filters=\"no\" columns=\"3\" column_spacing=\"12\" cat_slug=\"wedding\" exclude_cats=\"\" number_posts=\"9\" offset=\"\" excerpt_length=\"35\" strip_html=\"yes\" carousel_layout=\"title_on_rollover\" scroll_items=\"\" autoplay=\"no\" show_nav=\"yes\" mouse_scroll=\"no\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" class=\"\" id=\"\"][/recent_works][/fullwidth][fullwidth background_color=\"\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding_top=\"20\" padding_bottom=\"20\" padding_left=\"0\" padding_right=\"0\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][/fullwidth]', 'Home', '', 'inherit', 'closed', 'closed', '', '7-revision-v1', '', '', '2015-09-07 16:52:00', '2015-09-07 14:52:00', '', 7, 'http://localhost/assagaylodge/7-revision-v1/', 0, 'revision', '', 0),
(929, 1, '2015-09-07 16:52:42', '2015-09-07 14:52:42', '', 'Bedrooms2', '', 'inherit', 'closed', 'closed', '', '927-revision-v1', '', '', '2015-09-07 16:52:42', '2015-09-07 14:52:42', '', 927, 'http://localhost/assagaylodge/927-revision-v1/', 0, 'revision', '', 0),
(930, 1, '2015-09-07 16:56:25', '2015-09-07 14:56:25', '', 'Bedrooms3', '', 'publish', 'closed', 'closed', '', 'bedrooms3', '', '', '2015-09-07 17:02:39', '2015-09-07 15:02:39', '', 0, 'http://localhost/assagaylodge/?post_type=avada_portfolio&#038;p=930', 0, 'avada_portfolio', '', 0);
INSERT INTO `wp_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(931, 1, '2015-09-07 16:56:15', '2015-09-07 14:56:15', '[fullwidth background_color=\"\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"90px\" padding_bottom=\"0px\" padding_left=\"0px\" padding_right=\"0px\" hundred_percent=\"yes\" equal_height_columns=\"yes\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][one_half last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"http://localhost/assagaylodge/wp-content/uploads/2015/08/Tha-Lodge.jpg\" background_repeat=\"no-repeat\" background_position=\"center center\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" class=\"\" id=\"\"][/one_half][one_half last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"30px\" margin_top=\"\" margin_bottom=\"0px\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" class=\"special\" id=\"\"][fusion_text]\r\n<h1>5 BEDROOM FAMILY LODGE</h1>\r\n[/fusion_text][separator style_type=\"single\" top_margin=\"0\" bottom_margin=\"30\" sep_color=\"#000000\" border_size=\"\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"170px\" alignment=\"left\" class=\"separator-left\" id=\"\"][fusion_text]\r\n<h3>Self-Catering/Service Options/B&amp;B</h3>\r\n[/fusion_text][/one_half][/fullwidth][fullwidth background_color=\"\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"30px\" padding_bottom=\"60px\" padding_left=\"0px\" padding_right=\"0px\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][one_half last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][fusion_text]\r\n<p style=\"text-align: justify;\">The property boasts over 200 different species of birds and animals. The Lodge is situated on the 1000 Hills tourism route, on the edge of Hillcrest and is a perfect place from which one can launch to any one of the many fantastic destinations and game reserves in KwaZulu Natal, i.e. the Majestic Drakensberg Mountain Range, Shongweni Nature Reserve, Nagle Dam, Durban &amp; Beach Front. We are also the doorstep of one of KZN’s major horse riding venues namely, the Shongweni Horse Riding Club &amp; the Summerveld Horse Riding Academy, makes Assagay Lodge a perfect home away from home for the equestrian lovers. The peace &amp; tranquility will take you far away from the business of city life. Evenings are quiet and peaceful. This is a unique and memorable country experience.</p>\r\n[/fusion_text][/one_half][one_half last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][fusion_text]\r\n<p style=\"text-align: justify;\">We are a homely \'down to earth\' country guest lodge, set on a farm surrounded by acres of beautiful hills, forests, &amp; dams in the Madwala Conservancy of Assagay, where horses still have the right of way on all roads. Our five bedrooms have a rustic charm offering the comforts of modern day life.</p>\r\n<p style=\"text-align: justify;\">Assagay Forest Lodge is owner managed, built in 2005 the lodge provides 5 cozy bedrooms with a large spacious and comfortable homely lounge, which leads onto a large deck area. Set on a 6 acre property in the Assagay Conservancy our lodge is nestled around trees, bushes, and beautiful gardens and a stream, allowing visitors to meander and relax. Guests seeking a quite, relaxing, homely experience will find our lodge the perfect choice away from home. There is a kitchen available should you wish to muster up a snack or quick meal, however breakfast is available on request.</p>\r\n[/fusion_text][/one_half][/fullwidth][fullwidth background_color=\"#f0f0ed\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"60px\" padding_bottom=\"45px\" padding_left=\"0px\" padding_right=\"0px\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][fusion_text]\r\n<h1 style=\"text-align: center;\">Gallery</h1>\r\n[/fusion_text][separator style_type=\"single\" top_margin=\"\" bottom_margin=\"40\" sep_color=\"#000000\" border_size=\"\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"170px\" alignment=\"\" class=\"\" id=\"\"][one_sixth last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][/one_sixth][two_third last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][fusion_text]\r\n<h3 style=\"text-align: center;\">The Lodge is open, spacious, comfortable and homely.</h3>\r\n[/fusion_text][/two_third][one_sixth last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][/one_sixth][separator style_type=\"none\" top_margin=\"20\" bottom_margin=\"\" sep_color=\"\" border_size=\"\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"100%\" alignment=\"\" class=\"\" id=\"\"][recent_works layout=\"grid\" picture_size=\"auto\" boxed_text=\"boxed\" filters=\"no\" columns=\"3\" column_spacing=\"12\" cat_slug=\"the-lodge\" exclude_cats=\"\" number_posts=\"9\" offset=\"\" excerpt_length=\"35\" strip_html=\"yes\" carousel_layout=\"title_on_rollover\" scroll_items=\"\" autoplay=\"no\" show_nav=\"yes\" mouse_scroll=\"no\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" class=\"\" id=\"\"][/recent_works][/fullwidth][fullwidth background_color=\"#ffffff\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"65px\" padding_bottom=\"65px\" padding_left=\"0px\" padding_right=\"0px\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][button link=\"/avada_demos/travel/our-destinations/\" color=\"default\" size=\"xlarge\" type=\"3d\" shape=\"round\" target=\"_self\" title=\"\" gradient_colors=\"#f0f0ed|#f0f0ed\" gradient_hover_colors=\"#6666a4|#6666a4\" accent_color=\"#ffffff\" accent_hover_color=\"#ffffff\" bevel_color=\"\" border_width=\"0px\" icon=\"\" icon_position=\"left\" icon_divider=\"no\" modal=\"\" animation_type=\"0\" animation_direction=\"left\" animation_speed=\"1\" alignment=\"center\" class=\"\" id=\"\"]View All Destinations[/button][/fullwidth][fullwidth background_color=\"\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"60px\" padding_bottom=\"35px\" padding_left=\"0px\" padding_right=\"0px\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][fusion_text]\r\n<h1 style=\"text-align: center;\">BEDROOMS</h1>\r\n[/fusion_text][separator style_type=\"single\" top_margin=\"\" bottom_margin=\"20\" sep_color=\"#000000\" border_size=\"\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"170px\" alignment=\"\" class=\"\" id=\"\"][one_sixth last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][/one_sixth][two_third last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][fusion_text]\r\n<h3 style=\"text-align: center;\">When it comes to our advice we’re proud to say we’re different. We offer something a little more special.</h3>\r\nOur five bedrooms are all en-suite and equipped with either king size or queen size beds. The rooms have high ceilings, wall heaters &amp; ceiling fans. Beds all have electric blankets in Winter, 100% cotton percale sheets and thick hyper allergenic microfiber duvets and pillows.[/fusion_text][/two_third][one_sixth last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][/one_sixth][separator style_type=\"none\" top_margin=\"40\" bottom_margin=\"\" sep_color=\"\" border_size=\"\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"100%\" alignment=\"center\" class=\"\" id=\"\"][/fullwidth][fullwidth background_color=\"#6666a4\" background_image=\"http://localhost/assagaylodge/wp-content/uploads/2015/01/DSC01516-1148-x-764.jpg\" background_parallax=\"fixed\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"center center\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"yes\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"110px\" padding_bottom=\"100px\" padding_left=\"0px\" padding_right=\"0px\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][recent_works layout=\"grid\" picture_size=\"auto\" boxed_text=\"boxed\" filters=\"no\" columns=\"3\" column_spacing=\"12\" cat_slug=\"bedrooms\" exclude_cats=\"\" number_posts=\"9\" offset=\"\" excerpt_length=\"35\" strip_html=\"yes\" carousel_layout=\"title_on_rollover\" scroll_items=\"\" autoplay=\"no\" show_nav=\"yes\" mouse_scroll=\"no\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" class=\"\" id=\"\"][/recent_works][/fullwidth][fullwidth background_color=\"\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding_top=\"20\" padding_bottom=\"20\" padding_left=\"0\" padding_right=\"0\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][/fullwidth]', 'Home', '', 'inherit', 'closed', 'closed', '', '7-revision-v1', '', '', '2015-09-07 16:56:15', '2015-09-07 14:56:15', '', 7, 'http://localhost/assagaylodge/7-revision-v1/', 0, 'revision', '', 0),
(932, 1, '2015-09-07 16:56:25', '2015-09-07 14:56:25', '', 'Bedrooms3', '', 'inherit', 'closed', 'closed', '', '930-revision-v1', '', '', '2015-09-07 16:56:25', '2015-09-07 14:56:25', '', 930, 'http://localhost/assagaylodge/930-revision-v1/', 0, 'revision', '', 0),
(933, 1, '2015-09-07 17:01:54', '2015-09-07 15:01:54', '', 'bedsheets800', '', 'inherit', 'open', 'closed', '', 'bedsheets800-2', '', '', '2015-09-07 17:01:54', '2015-09-07 15:01:54', '', 930, 'http://localhost/assagaylodge/wp-content/uploads/2015/09/bedsheets8001.jpg', 0, 'attachment', 'image/jpeg', 0),
(934, 1, '2015-09-07 17:06:05', '2015-09-07 15:06:05', '', 'Bedrooms4', '', 'publish', 'closed', 'closed', '', 'bedrooms4', '', '', '2015-09-07 17:06:05', '2015-09-07 15:06:05', '', 0, 'http://localhost/assagaylodge/?post_type=avada_portfolio&#038;p=934', 0, 'avada_portfolio', '', 0),
(935, 1, '2015-09-07 17:06:05', '2015-09-07 15:06:05', '', 'Bedrooms4', '', 'inherit', 'closed', 'closed', '', '934-revision-v1', '', '', '2015-09-07 17:06:05', '2015-09-07 15:06:05', '', 934, 'http://localhost/assagaylodge/934-revision-v1/', 0, 'revision', '', 0),
(936, 1, '2015-09-07 17:09:00', '2015-09-07 15:09:00', '', 'Bedrooms5', '', 'publish', 'closed', 'closed', '', 'bedrooms5', '', '', '2015-09-07 17:09:00', '2015-09-07 15:09:00', '', 0, 'http://localhost/assagaylodge/?post_type=avada_portfolio&#038;p=936', 0, 'avada_portfolio', '', 0),
(937, 1, '2015-09-07 17:09:00', '2015-09-07 15:09:00', '', 'Bedrooms5', '', 'inherit', 'closed', 'closed', '', '936-revision-v1', '', '', '2015-09-07 17:09:00', '2015-09-07 15:09:00', '', 936, 'http://localhost/assagaylodge/936-revision-v1/', 0, 'revision', '', 0),
(938, 1, '2015-09-07 17:19:16', '2015-09-07 15:19:16', '', 'Bedrooms6', '', 'publish', 'closed', 'closed', '', 'bedrooms6', '', '', '2015-09-07 17:19:16', '2015-09-07 15:19:16', '', 0, 'http://localhost/assagaylodge/?post_type=avada_portfolio&#038;p=938', 0, 'avada_portfolio', '', 0),
(939, 1, '2015-09-07 17:19:16', '2015-09-07 15:19:16', '', 'Bedrooms6', '', 'inherit', 'closed', 'closed', '', '938-revision-v1', '', '', '2015-09-07 17:19:16', '2015-09-07 15:19:16', '', 938, 'http://localhost/assagaylodge/938-revision-v1/', 0, 'revision', '', 0),
(940, 1, '2015-09-07 17:33:22', '2015-09-07 15:33:22', '[fullwidth background_color=\"\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"90px\" padding_bottom=\"0px\" padding_left=\"0px\" padding_right=\"0px\" hundred_percent=\"yes\" equal_height_columns=\"yes\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][one_half last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"http://localhost/assagaylodge/wp-content/uploads/2015/08/Tha-Lodge.jpg\" background_repeat=\"no-repeat\" background_position=\"center center\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" class=\"\" id=\"\"][/one_half][one_half last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"30px\" margin_top=\"\" margin_bottom=\"0px\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" class=\"special\" id=\"\"][fusion_text]\r\n<h1>5 BEDROOM FAMILY LODGE</h1>\r\n[/fusion_text][separator style_type=\"single\" top_margin=\"0\" bottom_margin=\"30\" sep_color=\"#000000\" border_size=\"\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"170px\" alignment=\"left\" class=\"separator-left\" id=\"\"][fusion_text]\r\n<h3>Self-Catering/Service Options/B&amp;B</h3>\r\n[/fusion_text][/one_half][/fullwidth][fullwidth background_color=\"\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"30px\" padding_bottom=\"60px\" padding_left=\"0px\" padding_right=\"0px\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][one_half last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][fusion_text]\r\n<p style=\"text-align: justify;\">The property boasts over 200 different species of birds and animals. The Lodge is situated on the 1000 Hills tourism route, on the edge of Hillcrest and is a perfect place from which one can launch to any one of the many fantastic destinations and game reserves in KwaZulu Natal, i.e. the Majestic Drakensberg Mountain Range, Shongweni Nature Reserve, Nagle Dam, Durban &amp; Beach Front. We are also the doorstep of one of KZN’s major horse riding venues namely, the Shongweni Horse Riding Club &amp; the Summerveld Horse Riding Academy, makes Assagay Lodge a perfect home away from home for the equestrian lovers. The peace &amp; tranquility will take you far away from the business of city life. Evenings are quiet and peaceful. This is a unique and memorable country experience.</p>\r\n[/fusion_text][/one_half][one_half last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][fusion_text]\r\n<p style=\"text-align: justify;\">We are a homely \'down to earth\' country guest lodge, set on a farm surrounded by acres of beautiful hills, forests, &amp; dams in the Madwala Conservancy of Assagay, where horses still have the right of way on all roads. Our five bedrooms have a rustic charm offering the comforts of modern day life.</p>\r\n<p style=\"text-align: justify;\">Assagay Forest Lodge is owner managed, built in 2005 the lodge provides 5 cozy bedrooms with a large spacious and comfortable homely lounge, which leads onto a large deck area. Set on a 6 acre property in the Assagay Conservancy our lodge is nestled around trees, bushes, and beautiful gardens and a stream, allowing visitors to meander and relax. Guests seeking a quite, relaxing, homely experience will find our lodge the perfect choice away from home. There is a kitchen available should you wish to muster up a snack or quick meal, however breakfast is available on request.</p>\r\n[/fusion_text][/one_half][/fullwidth][fullwidth background_color=\"#f0f0ed\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"60px\" padding_bottom=\"45px\" padding_left=\"0px\" padding_right=\"0px\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][fusion_text]\r\n<h1 style=\"text-align: center;\">Gallery</h1>\r\n[/fusion_text][separator style_type=\"single\" top_margin=\"\" bottom_margin=\"40\" sep_color=\"#000000\" border_size=\"\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"170px\" alignment=\"\" class=\"\" id=\"\"][one_sixth last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][/one_sixth][two_third last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][fusion_text]\r\n<h3 style=\"text-align: center;\">The Lodge is open, spacious, comfortable and homely.</h3>\r\n[/fusion_text][/two_third][one_sixth last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][/one_sixth][separator style_type=\"none\" top_margin=\"20\" bottom_margin=\"\" sep_color=\"\" border_size=\"\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"100%\" alignment=\"\" class=\"\" id=\"\"][recent_works layout=\"grid\" picture_size=\"auto\" boxed_text=\"boxed\" filters=\"no\" columns=\"3\" column_spacing=\"12\" cat_slug=\"the-lodge\" exclude_cats=\"\" number_posts=\"9\" offset=\"\" excerpt_length=\"35\" strip_html=\"yes\" carousel_layout=\"title_on_rollover\" scroll_items=\"\" autoplay=\"no\" show_nav=\"yes\" mouse_scroll=\"no\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" class=\"\" id=\"\"][/recent_works][/fullwidth][fullwidth background_color=\"#ffffff\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"65px\" padding_bottom=\"65px\" padding_left=\"0px\" padding_right=\"0px\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][button link=\"http://localhost/assagaylodge/book-now/\" color=\"default\" size=\"xlarge\" type=\"3d\" shape=\"round\" target=\"_self\" title=\"\" gradient_colors=\"#f0f0ed|#f0f0ed\" gradient_hover_colors=\"#6666a4|#6666a4\" accent_color=\"#ffffff\" accent_hover_color=\"#ffffff\" bevel_color=\"\" border_width=\"0px\" icon=\"\" icon_position=\"left\" icon_divider=\"no\" modal=\"\" animation_type=\"0\" animation_direction=\"left\" animation_speed=\"1\" alignment=\"center\" class=\"\" id=\"\"]Make A Reservation Enquiry[/button][/fullwidth][fullwidth background_color=\"\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"60px\" padding_bottom=\"35px\" padding_left=\"0px\" padding_right=\"0px\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][fusion_text]\r\n<h1 style=\"text-align: center;\">BEDROOMS</h1>\r\n[/fusion_text][separator style_type=\"single\" top_margin=\"\" bottom_margin=\"20\" sep_color=\"#000000\" border_size=\"\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"170px\" alignment=\"\" class=\"\" id=\"\"][one_sixth last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][/one_sixth][two_third last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][fusion_text]\r\n<h3 style=\"text-align: center;\">When it comes to our advice we’re proud to say we’re different. We offer something a little more special.</h3>\r\nOur five bedrooms are all en-suite and equipped with either king size or queen size beds. The rooms have high ceilings, wall heaters &amp; ceiling fans. Beds all have electric blankets in Winter, 100% cotton percale sheets and thick hyper allergenic microfiber duvets and pillows.[/fusion_text][/two_third][one_sixth last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][/one_sixth][separator style_type=\"none\" top_margin=\"40\" bottom_margin=\"\" sep_color=\"\" border_size=\"\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"100%\" alignment=\"center\" class=\"\" id=\"\"][/fullwidth][fullwidth background_color=\"#6666a4\" background_image=\"http://localhost/assagaylodge/wp-content/uploads/2015/01/DSC01516-1148-x-764.jpg\" background_parallax=\"fixed\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"center center\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"yes\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"110px\" padding_bottom=\"100px\" padding_left=\"0px\" padding_right=\"0px\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][recent_works layout=\"grid\" picture_size=\"auto\" boxed_text=\"boxed\" filters=\"no\" columns=\"3\" column_spacing=\"12\" cat_slug=\"bedrooms\" exclude_cats=\"\" number_posts=\"9\" offset=\"\" excerpt_length=\"35\" strip_html=\"yes\" carousel_layout=\"title_on_rollover\" scroll_items=\"\" autoplay=\"no\" show_nav=\"yes\" mouse_scroll=\"no\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" class=\"\" id=\"\"][/recent_works][/fullwidth][fullwidth background_color=\"\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding_top=\"20\" padding_bottom=\"20\" padding_left=\"0\" padding_right=\"0\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][/fullwidth]', 'Home', '', 'inherit', 'closed', 'closed', '', '7-revision-v1', '', '', '2015-09-07 17:33:22', '2015-09-07 15:33:22', '', 7, 'http://localhost/assagaylodge/7-revision-v1/', 0, 'revision', '', 0),
(941, 1, '2015-09-07 17:40:28', '2015-09-07 15:40:28', '[fullwidth background_color=\"\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"90px\" padding_bottom=\"0px\" padding_left=\"0px\" padding_right=\"0px\" hundred_percent=\"yes\" equal_height_columns=\"yes\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][one_half last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"http://localhost/assagaylodge/wp-content/uploads/2015/08/Tha-Lodge.jpg\" background_repeat=\"no-repeat\" background_position=\"center center\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" class=\"\" id=\"\"][/one_half][one_half last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"30px\" margin_top=\"\" margin_bottom=\"0px\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" class=\"special\" id=\"\"][fusion_text]\r\n<h1>5 BEDROOM FAMILY LODGE</h1>\r\n[/fusion_text][separator style_type=\"single\" top_margin=\"0\" bottom_margin=\"30\" sep_color=\"#000000\" border_size=\"\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"170px\" alignment=\"left\" class=\"separator-left\" id=\"\"][fusion_text]\r\n<h3>Self-Catering/Service Options/B&amp;B</h3>\r\n[/fusion_text][/one_half][/fullwidth][fullwidth background_color=\"\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"30px\" padding_bottom=\"60px\" padding_left=\"0px\" padding_right=\"0px\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][one_half last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][fusion_text]\r\n<p style=\"text-align: justify;\">The property boasts over 200 different species of birds and animals. The Lodge is situated on the 1000 Hills tourism route, on the edge of Hillcrest and is a perfect place from which one can launch to any one of the many fantastic destinations and game reserves in KwaZulu Natal, i.e. the Majestic Drakensberg Mountain Range, Shongweni Nature Reserve, Nagle Dam, Durban &amp; Beach Front. We are also the doorstep of one of KZN’s major horse riding venues namely, the Shongweni Horse Riding Club &amp; the Summerveld Horse Riding Academy, makes Assagay Lodge a perfect home away from home for the equestrian lovers. The peace &amp; tranquility will take you far away from the business of city life. Evenings are quiet and peaceful. This is a unique and memorable country experience.</p>\r\n[/fusion_text][/one_half][one_half last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][fusion_text]\r\n<p style=\"text-align: justify;\">We are a homely \'down to earth\' country guest lodge, set on a farm surrounded by acres of beautiful hills, forests, &amp; dams in the Madwala Conservancy of Assagay, where horses still have the right of way on all roads. Our five bedrooms have a rustic charm offering the comforts of modern day life.</p>\r\n<p style=\"text-align: justify;\">Assagay Forest Lodge is owner managed, built in 2005 the lodge provides 5 cozy bedrooms with a large spacious and comfortable homely lounge, which leads onto a large deck area. Set on a 6 acre property in the Assagay Conservancy our lodge is nestled around trees, bushes, and beautiful gardens and a stream, allowing visitors to meander and relax. Guests seeking a quite, relaxing, homely experience will find our lodge the perfect choice away from home. There is a kitchen available should you wish to muster up a snack or quick meal, however breakfast is available on request.</p>\r\n[/fusion_text][/one_half][/fullwidth][fullwidth background_color=\"#f0f0ed\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"60px\" padding_bottom=\"45px\" padding_left=\"0px\" padding_right=\"0px\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][fusion_text]\r\n<h1 style=\"text-align: center;\">Gallery</h1>\r\n[/fusion_text][separator style_type=\"single\" top_margin=\"\" bottom_margin=\"40\" sep_color=\"#000000\" border_size=\"\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"170px\" alignment=\"\" class=\"\" id=\"\"][one_sixth last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][/one_sixth][two_third last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][fusion_text]\r\n<h3 style=\"text-align: center;\">The Lodge is open, spacious, comfortable and homely.</h3>\r\n[/fusion_text][/two_third][one_sixth last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][/one_sixth][separator style_type=\"none\" top_margin=\"20\" bottom_margin=\"\" sep_color=\"\" border_size=\"\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"100%\" alignment=\"\" class=\"\" id=\"\"][recent_works layout=\"grid\" picture_size=\"auto\" boxed_text=\"boxed\" filters=\"no\" columns=\"3\" column_spacing=\"12\" cat_slug=\"the-lodge\" exclude_cats=\"\" number_posts=\"9\" offset=\"\" excerpt_length=\"35\" strip_html=\"yes\" carousel_layout=\"title_on_rollover\" scroll_items=\"\" autoplay=\"no\" show_nav=\"yes\" mouse_scroll=\"no\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" class=\"\" id=\"\"][/recent_works][/fullwidth][fullwidth background_color=\"#ffffff\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"65px\" padding_bottom=\"65px\" padding_left=\"0px\" padding_right=\"0px\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][button link=\"http://localhost/assagaylodge/book-now/\" color=\"default\" size=\"xlarge\" type=\"3d\" shape=\"round\" target=\"_self\" title=\"\" gradient_colors=\"#f0f0ed|#f0f0ed\" gradient_hover_colors=\"#6666a4|#6666a4\" accent_color=\"#ffffff\" accent_hover_color=\"#ffffff\" bevel_color=\"\" border_width=\"0px\" icon=\"\" icon_position=\"left\" icon_divider=\"no\" modal=\"\" animation_type=\"0\" animation_direction=\"left\" animation_speed=\"1\" alignment=\"center\" class=\"\" id=\"\"]Make A Reservation Enquiry[/button][/fullwidth][fullwidth background_color=\"\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"60px\" padding_bottom=\"35px\" padding_left=\"0px\" padding_right=\"0px\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][fusion_text]\r\n<h1 style=\"text-align: center;\">BEDROOMS</h1>\r\n[/fusion_text][separator style_type=\"single\" top_margin=\"\" bottom_margin=\"20\" sep_color=\"#000000\" border_size=\"\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"170px\" alignment=\"\" class=\"\" id=\"\"][one_sixth last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][/one_sixth][two_third last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][fusion_text]\r\n<h3 style=\"text-align: center;\">When it comes to our advice we’re proud to say we’re different. We offer something a little more special.</h3>\r\nOur five bedrooms are all en-suite and equipped with either king size or queen size beds. The rooms have high ceilings, wall heaters &amp; ceiling fans. Beds all have electric blankets in Winter, 100% cotton percale sheets and thick hyper allergenic microfiber duvets and pillows.[/fusion_text][/two_third][one_sixth last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][/one_sixth][separator style_type=\"none\" top_margin=\"40\" bottom_margin=\"\" sep_color=\"\" border_size=\"\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"100%\" alignment=\"center\" class=\"\" id=\"\"][/fullwidth][fullwidth background_color=\"#6666a4\" background_image=\"http://localhost/assagaylodge/wp-content/uploads/2015/01/DSC01516-1148-x-764.jpg\" background_parallax=\"fixed\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"center center\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"yes\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"110px\" padding_bottom=\"100px\" padding_left=\"0px\" padding_right=\"0px\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][recent_works layout=\"grid\" picture_size=\"auto\" boxed_text=\"boxed\" filters=\"no\" columns=\"3\" column_spacing=\"12\" cat_slug=\"bedrooms\" exclude_cats=\"\" number_posts=\"9\" offset=\"\" excerpt_length=\"35\" strip_html=\"yes\" carousel_layout=\"title_on_rollover\" scroll_items=\"\" autoplay=\"no\" show_nav=\"yes\" mouse_scroll=\"no\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" class=\"\" id=\"\"][/recent_works][/fullwidth][fullwidth background_color=\"\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding_top=\"20\" padding_bottom=\"20\" padding_left=\"0\" padding_right=\"0\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][fusion_text]\r\n<h1 style=\"text-align: center;\">GARDENS</h1>\r\n[/fusion_text][separator style_type=\"none\" top_margin=\"40\" bottom_margin=\"\" sep_color=\"\" border_size=\"\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"100%\" alignment=\"center\" class=\"\" id=\"\"][recent_works layout=\"grid\" picture_size=\"auto\" boxed_text=\"boxed\" filters=\"no\" columns=\"3\" column_spacing=\"12\" cat_slug=\"the-lodge\" exclude_cats=\"\" number_posts=\"9\" offset=\"\" excerpt_length=\"35\" strip_html=\"yes\" carousel_layout=\"title_on_rollover\" scroll_items=\"\" autoplay=\"no\" show_nav=\"yes\" mouse_scroll=\"no\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" class=\"\" id=\"\"][/recent_works][/fullwidth]', 'Home', '', 'inherit', 'closed', 'closed', '', '7-revision-v1', '', '', '2015-09-07 17:40:28', '2015-09-07 15:40:28', '', 7, 'http://localhost/assagaylodge/7-revision-v1/', 0, 'revision', '', 0),
(942, 1, '2015-09-07 17:59:21', '2015-09-07 15:59:21', '', 'Gardens', '', 'publish', 'closed', 'closed', '', 'gardens', '', '', '2015-09-07 17:59:21', '2015-09-07 15:59:21', '', 0, 'http://localhost/assagaylodge/?post_type=avada_portfolio&#038;p=942', 0, 'avada_portfolio', '', 0),
(943, 1, '2015-09-07 17:56:43', '2015-09-07 15:56:43', '', 'Easter Pics 079 (800 x 533)', '', 'inherit', 'open', 'closed', '', 'easter-pics-079-800-x-533', '', '', '2015-09-07 17:56:43', '2015-09-07 15:56:43', '', 942, 'http://localhost/assagaylodge/wp-content/uploads/2015/09/Easter-Pics-079-800-x-533.jpg', 0, 'attachment', 'image/jpeg', 0),
(944, 1, '2015-09-07 17:56:52', '2015-09-07 15:56:52', '', 'Easter Pics 031 (800 x 533)', '', 'inherit', 'open', 'closed', '', 'easter-pics-031-800-x-533', '', '', '2015-09-07 17:56:52', '2015-09-07 15:56:52', '', 942, 'http://localhost/assagaylodge/wp-content/uploads/2015/09/Easter-Pics-031-800-x-533.jpg', 0, 'attachment', 'image/jpeg', 0),
(945, 1, '2015-09-07 17:57:19', '2015-09-07 15:57:19', '', '1069313_696715170354986_547614926_n (800 x 533)', '', 'inherit', 'open', 'closed', '', '1069313_696715170354986_547614926_n-800-x-533', '', '', '2015-09-07 17:57:19', '2015-09-07 15:57:19', '', 942, 'http://localhost/assagaylodge/wp-content/uploads/2015/09/1069313_696715170354986_547614926_n-800-x-533.jpg', 0, 'attachment', 'image/jpeg', 0),
(946, 1, '2015-09-07 17:59:21', '2015-09-07 15:59:21', '', 'Gardens', '', 'inherit', 'closed', 'closed', '', '942-revision-v1', '', '', '2015-09-07 17:59:21', '2015-09-07 15:59:21', '', 942, 'http://localhost/assagaylodge/942-revision-v1/', 0, 'revision', '', 0);
INSERT INTO `wp_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(947, 1, '2015-09-07 17:59:40', '2015-09-07 15:59:40', '[fullwidth background_color=\"\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"90px\" padding_bottom=\"0px\" padding_left=\"0px\" padding_right=\"0px\" hundred_percent=\"yes\" equal_height_columns=\"yes\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][one_half last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"http://localhost/assagaylodge/wp-content/uploads/2015/08/Tha-Lodge.jpg\" background_repeat=\"no-repeat\" background_position=\"center center\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" class=\"\" id=\"\"][/one_half][one_half last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"30px\" margin_top=\"\" margin_bottom=\"0px\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" class=\"special\" id=\"\"][fusion_text]\r\n<h1>5 BEDROOM FAMILY LODGE</h1>\r\n[/fusion_text][separator style_type=\"single\" top_margin=\"0\" bottom_margin=\"30\" sep_color=\"#000000\" border_size=\"\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"170px\" alignment=\"left\" class=\"separator-left\" id=\"\"][fusion_text]\r\n<h3>Self-Catering/Service Options/B&amp;B</h3>\r\n[/fusion_text][/one_half][/fullwidth][fullwidth background_color=\"\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"30px\" padding_bottom=\"60px\" padding_left=\"0px\" padding_right=\"0px\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][one_half last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][fusion_text]\r\n<p style=\"text-align: justify;\">The property boasts over 200 different species of birds and animals. The Lodge is situated on the 1000 Hills tourism route, on the edge of Hillcrest and is a perfect place from which one can launch to any one of the many fantastic destinations and game reserves in KwaZulu Natal, i.e. the Majestic Drakensberg Mountain Range, Shongweni Nature Reserve, Nagle Dam, Durban &amp; Beach Front. We are also the doorstep of one of KZN’s major horse riding venues namely, the Shongweni Horse Riding Club &amp; the Summerveld Horse Riding Academy, makes Assagay Lodge a perfect home away from home for the equestrian lovers. The peace &amp; tranquility will take you far away from the business of city life. Evenings are quiet and peaceful. This is a unique and memorable country experience.</p>\r\n[/fusion_text][/one_half][one_half last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][fusion_text]\r\n<p style=\"text-align: justify;\">We are a homely \'down to earth\' country guest lodge, set on a farm surrounded by acres of beautiful hills, forests, &amp; dams in the Madwala Conservancy of Assagay, where horses still have the right of way on all roads. Our five bedrooms have a rustic charm offering the comforts of modern day life.</p>\r\n<p style=\"text-align: justify;\">Assagay Forest Lodge is owner managed, built in 2005 the lodge provides 5 cozy bedrooms with a large spacious and comfortable homely lounge, which leads onto a large deck area. Set on a 6 acre property in the Assagay Conservancy our lodge is nestled around trees, bushes, and beautiful gardens and a stream, allowing visitors to meander and relax. Guests seeking a quite, relaxing, homely experience will find our lodge the perfect choice away from home. There is a kitchen available should you wish to muster up a snack or quick meal, however breakfast is available on request.</p>\r\n[/fusion_text][/one_half][/fullwidth][fullwidth background_color=\"#f0f0ed\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"60px\" padding_bottom=\"45px\" padding_left=\"0px\" padding_right=\"0px\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][fusion_text]\r\n<h1 style=\"text-align: center;\">Gallery</h1>\r\n[/fusion_text][separator style_type=\"single\" top_margin=\"\" bottom_margin=\"40\" sep_color=\"#000000\" border_size=\"\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"170px\" alignment=\"\" class=\"\" id=\"\"][one_sixth last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][/one_sixth][two_third last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][fusion_text]\r\n<h3 style=\"text-align: center;\">The Lodge is open, spacious, comfortable and homely.</h3>\r\n[/fusion_text][/two_third][one_sixth last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][/one_sixth][separator style_type=\"none\" top_margin=\"20\" bottom_margin=\"\" sep_color=\"\" border_size=\"\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"100%\" alignment=\"\" class=\"\" id=\"\"][recent_works layout=\"grid\" picture_size=\"auto\" boxed_text=\"boxed\" filters=\"no\" columns=\"3\" column_spacing=\"12\" cat_slug=\"the-lodge\" exclude_cats=\"\" number_posts=\"9\" offset=\"\" excerpt_length=\"35\" strip_html=\"yes\" carousel_layout=\"title_on_rollover\" scroll_items=\"\" autoplay=\"no\" show_nav=\"yes\" mouse_scroll=\"no\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" class=\"\" id=\"\"][/recent_works][/fullwidth][fullwidth background_color=\"#ffffff\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"65px\" padding_bottom=\"65px\" padding_left=\"0px\" padding_right=\"0px\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][button link=\"http://localhost/assagaylodge/book-now/\" color=\"default\" size=\"xlarge\" type=\"3d\" shape=\"round\" target=\"_self\" title=\"\" gradient_colors=\"#f0f0ed|#f0f0ed\" gradient_hover_colors=\"#6666a4|#6666a4\" accent_color=\"#ffffff\" accent_hover_color=\"#ffffff\" bevel_color=\"\" border_width=\"0px\" icon=\"\" icon_position=\"left\" icon_divider=\"no\" modal=\"\" animation_type=\"0\" animation_direction=\"left\" animation_speed=\"1\" alignment=\"center\" class=\"\" id=\"\"]Make A Reservation Enquiry[/button][/fullwidth][fullwidth background_color=\"\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"60px\" padding_bottom=\"35px\" padding_left=\"0px\" padding_right=\"0px\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][fusion_text]\r\n<h1 style=\"text-align: center;\">BEDROOMS</h1>\r\n[/fusion_text][separator style_type=\"single\" top_margin=\"\" bottom_margin=\"20\" sep_color=\"#000000\" border_size=\"\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"170px\" alignment=\"\" class=\"\" id=\"\"][one_sixth last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][/one_sixth][two_third last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][fusion_text]\r\n<h3 style=\"text-align: center;\">When it comes to our advice we’re proud to say we’re different. We offer something a little more special.</h3>\r\nOur five bedrooms are all en-suite and equipped with either king size or queen size beds. The rooms have high ceilings, wall heaters &amp; ceiling fans. Beds all have electric blankets in Winter, 100% cotton percale sheets and thick hyper allergenic microfiber duvets and pillows.[/fusion_text][/two_third][one_sixth last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][/one_sixth][separator style_type=\"none\" top_margin=\"40\" bottom_margin=\"\" sep_color=\"\" border_size=\"\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"100%\" alignment=\"center\" class=\"\" id=\"\"][recent_works layout=\"grid\" picture_size=\"auto\" boxed_text=\"boxed\" filters=\"no\" columns=\"3\" column_spacing=\"12\" cat_slug=\"bedrooms\" exclude_cats=\"\" number_posts=\"9\" offset=\"\" excerpt_length=\"35\" strip_html=\"yes\" carousel_layout=\"title_on_rollover\" scroll_items=\"\" autoplay=\"no\" show_nav=\"yes\" mouse_scroll=\"no\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" class=\"\" id=\"\"][/recent_works][/fullwidth][fullwidth background_color=\"\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding_top=\"20\" padding_bottom=\"20\" padding_left=\"0\" padding_right=\"0\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][fusion_text]\r\n<h1 style=\"text-align: center;\">GARDENS</h1>\r\n[/fusion_text][separator style_type=\"none\" top_margin=\"40\" bottom_margin=\"\" sep_color=\"\" border_size=\"\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"100%\" alignment=\"center\" class=\"\" id=\"\"][one_sixth last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][/one_sixth][two_third last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][fusion_text]\r\n<h3 style=\"text-align: center;\">Walk &amp; relax in our beautiful gardens</h3>\r\n[/fusion_text][/two_third][one_sixth last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][/one_sixth][separator style_type=\"none\" top_margin=\"40\" bottom_margin=\"\" sep_color=\"\" border_size=\"\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"100%\" alignment=\"center\" class=\"\" id=\"\"][recent_works layout=\"grid\" picture_size=\"auto\" boxed_text=\"boxed\" filters=\"no\" columns=\"3\" column_spacing=\"12\" cat_slug=\"the-lodge\" exclude_cats=\"\" number_posts=\"9\" offset=\"\" excerpt_length=\"35\" strip_html=\"yes\" carousel_layout=\"title_on_rollover\" scroll_items=\"\" autoplay=\"no\" show_nav=\"yes\" mouse_scroll=\"no\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" class=\"\" id=\"\"][/recent_works][/fullwidth]', 'Home', '', 'inherit', 'closed', 'closed', '', '7-revision-v1', '', '', '2015-09-07 17:59:40', '2015-09-07 15:59:40', '', 7, 'http://localhost/assagaylodge/7-revision-v1/', 0, 'revision', '', 0),
(948, 1, '2015-09-07 18:02:06', '2015-09-07 16:02:06', '', 'Gardens2', '', 'draft', 'closed', 'closed', '', 'gardens2', '', '', '2016-04-19 22:21:38', '2016-04-19 20:21:38', '', 0, 'http://localhost/assagaylodge/?post_type=avada_portfolio&#038;p=948', 0, 'avada_portfolio', '', 0),
(949, 1, '2015-09-07 18:02:06', '2015-09-07 16:02:06', '', 'Gardens2', '', 'inherit', 'closed', 'closed', '', '948-revision-v1', '', '', '2015-09-07 18:02:06', '2015-09-07 16:02:06', '', 948, 'http://localhost/assagaylodge/948-revision-v1/', 0, 'revision', '', 0),
(950, 1, '2015-09-07 18:05:01', '2015-09-07 16:05:01', '', 'Gardens3', '', 'publish', 'closed', 'closed', '', 'gardens3', '', '', '2015-09-22 13:34:10', '2015-09-22 11:34:10', '', 0, 'http://localhost/assagaylodge/?post_type=avada_portfolio&#038;p=950', 0, 'avada_portfolio', '', 0),
(951, 1, '2015-09-07 18:05:01', '2015-09-07 16:05:01', '', 'Gardens3', '', 'inherit', 'closed', 'closed', '', '950-revision-v1', '', '', '2015-09-07 18:05:01', '2015-09-07 16:05:01', '', 950, 'http://localhost/assagaylodge/950-revision-v1/', 0, 'revision', '', 0),
(952, 1, '2015-09-07 18:07:05', '2015-09-07 16:07:05', '[fullwidth background_color=\"\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"90px\" padding_bottom=\"0px\" padding_left=\"0px\" padding_right=\"0px\" hundred_percent=\"yes\" equal_height_columns=\"yes\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][one_half last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"http://localhost/assagaylodge/wp-content/uploads/2015/08/Tha-Lodge.jpg\" background_repeat=\"no-repeat\" background_position=\"center center\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" class=\"\" id=\"\"][/one_half][one_half last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"30px\" margin_top=\"\" margin_bottom=\"0px\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" class=\"special\" id=\"\"][fusion_text]\r\n<h1>5 BEDROOM FAMILY LODGE</h1>\r\n[/fusion_text][separator style_type=\"single\" top_margin=\"0\" bottom_margin=\"30\" sep_color=\"#000000\" border_size=\"\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"170px\" alignment=\"left\" class=\"separator-left\" id=\"\"][fusion_text]\r\n<h3>Self-Catering/Service Options/B&amp;B</h3>\r\n[/fusion_text][/one_half][/fullwidth][fullwidth background_color=\"\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"30px\" padding_bottom=\"60px\" padding_left=\"0px\" padding_right=\"0px\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][one_half last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][fusion_text]\r\n<p style=\"text-align: justify;\">The property boasts over 200 different species of birds and animals. The Lodge is situated on the 1000 Hills tourism route, on the edge of Hillcrest and is a perfect place from which one can launch to any one of the many fantastic destinations and game reserves in KwaZulu Natal, i.e. the Majestic Drakensberg Mountain Range, Shongweni Nature Reserve, Nagle Dam, Durban &amp; Beach Front. We are also the doorstep of one of KZN’s major horse riding venues namely, the Shongweni Horse Riding Club &amp; the Summerveld Horse Riding Academy, makes Assagay Lodge a perfect home away from home for the equestrian lovers. The peace &amp; tranquility will take you far away from the business of city life. Evenings are quiet and peaceful. This is a unique and memorable country experience.</p>\r\n[/fusion_text][/one_half][one_half last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][fusion_text]\r\n<p style=\"text-align: justify;\">We are a homely \'down to earth\' country guest lodge, set on a farm surrounded by acres of beautiful hills, forests, &amp; dams in the Madwala Conservancy of Assagay, where horses still have the right of way on all roads. Our five bedrooms have a rustic charm offering the comforts of modern day life.</p>\r\n<p style=\"text-align: justify;\">Assagay Forest Lodge is owner managed, built in 2005 the lodge provides 5 cozy bedrooms with a large spacious and comfortable homely lounge, which leads onto a large deck area. Set on a 6 acre property in the Assagay Conservancy our lodge is nestled around trees, bushes, and beautiful gardens and a stream, allowing visitors to meander and relax. Guests seeking a quite, relaxing, homely experience will find our lodge the perfect choice away from home. There is a kitchen available should you wish to muster up a snack or quick meal, however breakfast is available on request.</p>\r\n[/fusion_text][/one_half][/fullwidth][fullwidth background_color=\"#f0f0ed\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"60px\" padding_bottom=\"45px\" padding_left=\"0px\" padding_right=\"0px\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][fusion_text]\r\n<h1 style=\"text-align: center;\">Gallery</h1>\r\n[/fusion_text][separator style_type=\"single\" top_margin=\"\" bottom_margin=\"40\" sep_color=\"#000000\" border_size=\"\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"170px\" alignment=\"\" class=\"\" id=\"\"][one_sixth last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][/one_sixth][two_third last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][fusion_text]\r\n<h3 style=\"text-align: center;\">The Lodge is open, spacious, comfortable and homely.</h3>\r\n[/fusion_text][/two_third][one_sixth last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][/one_sixth][separator style_type=\"none\" top_margin=\"20\" bottom_margin=\"\" sep_color=\"\" border_size=\"\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"100%\" alignment=\"\" class=\"\" id=\"\"][recent_works layout=\"grid\" picture_size=\"auto\" boxed_text=\"boxed\" filters=\"no\" columns=\"3\" column_spacing=\"12\" cat_slug=\"the-lodge\" exclude_cats=\"\" number_posts=\"9\" offset=\"\" excerpt_length=\"35\" strip_html=\"yes\" carousel_layout=\"title_on_rollover\" scroll_items=\"\" autoplay=\"no\" show_nav=\"yes\" mouse_scroll=\"no\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" class=\"\" id=\"\"][/recent_works][/fullwidth][fullwidth background_color=\"#ffffff\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"65px\" padding_bottom=\"65px\" padding_left=\"0px\" padding_right=\"0px\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][button link=\"http://localhost/assagaylodge/book-now/\" color=\"default\" size=\"xlarge\" type=\"3d\" shape=\"round\" target=\"_self\" title=\"\" gradient_colors=\"#f0f0ed|#f0f0ed\" gradient_hover_colors=\"#6666a4|#6666a4\" accent_color=\"#ffffff\" accent_hover_color=\"#ffffff\" bevel_color=\"\" border_width=\"0px\" icon=\"\" icon_position=\"left\" icon_divider=\"no\" modal=\"\" animation_type=\"0\" animation_direction=\"left\" animation_speed=\"1\" alignment=\"center\" class=\"\" id=\"\"]Make A Reservation Enquiry[/button][/fullwidth][fullwidth background_color=\"\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"60px\" padding_bottom=\"35px\" padding_left=\"0px\" padding_right=\"0px\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][fusion_text]\r\n<h1 style=\"text-align: center;\">BEDROOMS</h1>\r\n[/fusion_text][separator style_type=\"single\" top_margin=\"\" bottom_margin=\"20\" sep_color=\"#000000\" border_size=\"\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"170px\" alignment=\"\" class=\"\" id=\"\"][one_sixth last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][/one_sixth][two_third last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][fusion_text]\r\n<h3 style=\"text-align: center;\">When it comes to our advice we’re proud to say we’re different. We offer something a little more special.</h3>\r\nOur five bedrooms are all en-suite and equipped with either king size or queen size beds. The rooms have high ceilings, wall heaters &amp; ceiling fans. Beds all have electric blankets in Winter, 100% cotton percale sheets and thick hyper allergenic microfiber duvets and pillows.[/fusion_text][/two_third][one_sixth last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][/one_sixth][separator style_type=\"none\" top_margin=\"40\" bottom_margin=\"\" sep_color=\"\" border_size=\"\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"100%\" alignment=\"center\" class=\"\" id=\"\"][recent_works layout=\"grid\" picture_size=\"auto\" boxed_text=\"boxed\" filters=\"no\" columns=\"3\" column_spacing=\"12\" cat_slug=\"bedrooms\" exclude_cats=\"\" number_posts=\"9\" offset=\"\" excerpt_length=\"35\" strip_html=\"yes\" carousel_layout=\"title_on_rollover\" scroll_items=\"\" autoplay=\"no\" show_nav=\"yes\" mouse_scroll=\"no\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" class=\"\" id=\"\"][/recent_works][/fullwidth][fullwidth background_color=\"\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding_top=\"20\" padding_bottom=\"20\" padding_left=\"0\" padding_right=\"0\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][fusion_text]\r\n<h1 style=\"text-align: center;\">GARDENS</h1>\r\n[/fusion_text][separator style_type=\"none\" top_margin=\"40\" bottom_margin=\"\" sep_color=\"\" border_size=\"\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"100%\" alignment=\"center\" class=\"\" id=\"\"][one_sixth last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][/one_sixth][two_third last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][fusion_text]\r\n<h3 style=\"text-align: center;\">Walk &amp; relax in our beautiful gardens</h3>\r\n[/fusion_text][/two_third][one_sixth last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][/one_sixth][separator style_type=\"none\" top_margin=\"40\" bottom_margin=\"\" sep_color=\"\" border_size=\"\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"100%\" alignment=\"center\" class=\"\" id=\"\"][recent_works layout=\"grid\" picture_size=\"auto\" boxed_text=\"boxed\" filters=\"no\" columns=\"3\" column_spacing=\"12\" cat_slug=\"gardens\" exclude_cats=\"\" number_posts=\"9\" offset=\"\" excerpt_length=\"35\" strip_html=\"yes\" carousel_layout=\"title_on_rollover\" scroll_items=\"\" autoplay=\"no\" show_nav=\"yes\" mouse_scroll=\"no\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" class=\"\" id=\"\"][/recent_works][/fullwidth]', 'Home', '', 'inherit', 'closed', 'closed', '', '7-revision-v1', '', '', '2015-09-07 18:07:05', '2015-09-07 16:07:05', '', 7, 'http://localhost/assagaylodge/7-revision-v1/', 0, 'revision', '', 0),
(953, 1, '2015-09-07 18:11:24', '2015-09-07 16:11:24', '[fullwidth background_color=\"\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"90px\" padding_bottom=\"0px\" padding_left=\"0px\" padding_right=\"0px\" hundred_percent=\"yes\" equal_height_columns=\"yes\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][one_half last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"http://localhost/assagaylodge/wp-content/uploads/2015/08/Tha-Lodge.jpg\" background_repeat=\"no-repeat\" background_position=\"center center\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" class=\"\" id=\"\"][/one_half][one_half last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"30px\" margin_top=\"\" margin_bottom=\"0px\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" class=\"special\" id=\"\"][fusion_text]\r\n<h1>5 BEDROOM FAMILY LODGE</h1>\r\n[/fusion_text][separator style_type=\"single\" top_margin=\"0\" bottom_margin=\"30\" sep_color=\"#000000\" border_size=\"\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"170px\" alignment=\"left\" class=\"separator-left\" id=\"\"][fusion_text]\r\n<h3>Self-Catering/Service Options/B&amp;B</h3>\r\n[/fusion_text][/one_half][/fullwidth][fullwidth background_color=\"\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"30px\" padding_bottom=\"60px\" padding_left=\"0px\" padding_right=\"0px\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][one_half last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][fusion_text]\r\n<p style=\"text-align: justify;\">The property boasts over 200 different species of birds and animals. The Lodge is situated on the 1000 Hills tourism route, on the edge of Hillcrest and is a perfect place from which one can launch to any one of the many fantastic destinations and game reserves in KwaZulu Natal, i.e. the Majestic Drakensberg Mountain Range, Shongweni Nature Reserve, Nagle Dam, Durban &amp; Beach Front. We are also the doorstep of one of KZN’s major horse riding venues namely, the Shongweni Horse Riding Club &amp; the Summerveld Horse Riding Academy, makes Assagay Lodge a perfect home away from home for the equestrian lovers. The peace &amp; tranquility will take you far away from the business of city life. Evenings are quiet and peaceful. This is a unique and memorable country experience.</p>\r\n[/fusion_text][/one_half][one_half last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][fusion_text]\r\n<p style=\"text-align: justify;\">We are a homely \'down to earth\' country guest lodge, set on a farm surrounded by acres of beautiful hills, forests, &amp; dams in the Madwala Conservancy of Assagay, where horses still have the right of way on all roads. Our five bedrooms have a rustic charm offering the comforts of modern day life.</p>\r\n<p style=\"text-align: justify;\">Assagay Forest Lodge is owner managed, built in 2005 the lodge provides 5 cozy bedrooms with a large spacious and comfortable homely lounge, which leads onto a large deck area. Set on a 6 acre property in the Assagay Conservancy our lodge is nestled around trees, bushes, and beautiful gardens and a stream, allowing visitors to meander and relax. Guests seeking a quite, relaxing, homely experience will find our lodge the perfect choice away from home. There is a kitchen available should you wish to muster up a snack or quick meal, however breakfast is available on request.</p>\r\n[/fusion_text][/one_half][/fullwidth][fullwidth background_color=\"#f0f0ed\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"60px\" padding_bottom=\"45px\" padding_left=\"0px\" padding_right=\"0px\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][fusion_text]\r\n<h1 style=\"text-align: center;\">Gallery</h1>\r\n[/fusion_text][separator style_type=\"single\" top_margin=\"\" bottom_margin=\"40\" sep_color=\"#000000\" border_size=\"\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"170px\" alignment=\"\" class=\"\" id=\"\"][one_sixth last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][/one_sixth][two_third last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][fusion_text]\r\n<h3 style=\"text-align: center;\">The Lodge is open, spacious, comfortable and homely.</h3>\r\n[/fusion_text][/two_third][one_sixth last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][/one_sixth][separator style_type=\"none\" top_margin=\"20\" bottom_margin=\"\" sep_color=\"\" border_size=\"\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"100%\" alignment=\"\" class=\"\" id=\"\"][recent_works layout=\"grid\" picture_size=\"auto\" boxed_text=\"boxed\" filters=\"no\" columns=\"3\" column_spacing=\"12\" cat_slug=\"the-lodge\" exclude_cats=\"\" number_posts=\"9\" offset=\"\" excerpt_length=\"35\" strip_html=\"yes\" carousel_layout=\"title_on_rollover\" scroll_items=\"\" autoplay=\"no\" show_nav=\"yes\" mouse_scroll=\"no\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" class=\"\" id=\"\"][/recent_works][/fullwidth][fullwidth background_color=\"#ffffff\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"65px\" padding_bottom=\"65px\" padding_left=\"0px\" padding_right=\"0px\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][button link=\"http://localhost/assagaylodge/book-now/\" color=\"default\" size=\"xlarge\" type=\"3d\" shape=\"round\" target=\"_self\" title=\"\" gradient_colors=\"#f0f0ed|#f0f0ed\" gradient_hover_colors=\"#6666a4|#6666a4\" accent_color=\"#ffffff\" accent_hover_color=\"#ffffff\" bevel_color=\"\" border_width=\"0px\" icon=\"\" icon_position=\"left\" icon_divider=\"no\" modal=\"\" animation_type=\"0\" animation_direction=\"left\" animation_speed=\"1\" alignment=\"center\" class=\"\" id=\"\"]Make A Reservation Enquiry[/button][/fullwidth][fullwidth background_color=\"\" background_image=\"http://localhost/assagaylodge/wp-content/uploads/2015/01/DSC01516-1148-x-764.jpg\" background_parallax=\"fixed\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"60px\" padding_bottom=\"35px\" padding_left=\"0px\" padding_right=\"0px\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][fusion_text]\r\n<h1 style=\"text-align: center;\">BEDROOMS</h1>\r\n[/fusion_text][separator style_type=\"single\" top_margin=\"\" bottom_margin=\"20\" sep_color=\"#000000\" border_size=\"\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"170px\" alignment=\"\" class=\"\" id=\"\"][one_sixth last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][/one_sixth][two_third last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][fusion_text]\r\n<h3 style=\"text-align: center;\">When it comes to our advice we’re proud to say we’re different. We offer something a little more special.</h3>\r\nOur five bedrooms are all en-suite and equipped with either king size or queen size beds. The rooms have high ceilings, wall heaters &amp; ceiling fans. Beds all have electric blankets in Winter, 100% cotton percale sheets and thick hyper allergenic microfiber duvets and pillows.[/fusion_text][/two_third][one_sixth last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][/one_sixth][separator style_type=\"none\" top_margin=\"40\" bottom_margin=\"\" sep_color=\"\" border_size=\"\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"100%\" alignment=\"center\" class=\"\" id=\"\"][recent_works layout=\"grid\" picture_size=\"auto\" boxed_text=\"boxed\" filters=\"no\" columns=\"3\" column_spacing=\"12\" cat_slug=\"bedrooms\" exclude_cats=\"\" number_posts=\"9\" offset=\"\" excerpt_length=\"35\" strip_html=\"yes\" carousel_layout=\"title_on_rollover\" scroll_items=\"\" autoplay=\"no\" show_nav=\"yes\" mouse_scroll=\"no\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" class=\"\" id=\"\"][/recent_works][/fullwidth][fullwidth background_color=\"\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding_top=\"20\" padding_bottom=\"20\" padding_left=\"0\" padding_right=\"0\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][fusion_text]\r\n<h1 style=\"text-align: center;\">GARDENS</h1>\r\n[/fusion_text][separator style_type=\"none\" top_margin=\"40\" bottom_margin=\"\" sep_color=\"\" border_size=\"\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"100%\" alignment=\"center\" class=\"\" id=\"\"][one_sixth last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][/one_sixth][two_third last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][fusion_text]\r\n<h3 style=\"text-align: center;\">Walk &amp; relax in our beautiful gardens</h3>\r\n[/fusion_text][/two_third][one_sixth last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][/one_sixth][separator style_type=\"none\" top_margin=\"40\" bottom_margin=\"\" sep_color=\"\" border_size=\"\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"100%\" alignment=\"center\" class=\"\" id=\"\"][recent_works layout=\"grid\" picture_size=\"auto\" boxed_text=\"boxed\" filters=\"no\" columns=\"3\" column_spacing=\"12\" cat_slug=\"gardens\" exclude_cats=\"\" number_posts=\"9\" offset=\"\" excerpt_length=\"35\" strip_html=\"yes\" carousel_layout=\"title_on_rollover\" scroll_items=\"\" autoplay=\"no\" show_nav=\"yes\" mouse_scroll=\"no\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" class=\"\" id=\"\"][/recent_works][/fullwidth]', 'Home', '', 'inherit', 'closed', 'closed', '', '7-revision-v1', '', '', '2015-09-07 18:11:24', '2015-09-07 16:11:24', '', 7, 'http://localhost/assagaylodge/7-revision-v1/', 0, 'revision', '', 0);
INSERT INTO `wp_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(954, 1, '2015-09-07 18:19:52', '2015-09-07 16:19:52', '[fullwidth background_color=\"\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"90px\" padding_bottom=\"0px\" padding_left=\"0px\" padding_right=\"0px\" hundred_percent=\"yes\" equal_height_columns=\"yes\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][one_half last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"http://localhost/assagaylodge/wp-content/uploads/2015/08/Tha-Lodge.jpg\" background_repeat=\"no-repeat\" background_position=\"center center\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" class=\"\" id=\"\"][/one_half][one_half last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"30px\" margin_top=\"\" margin_bottom=\"0px\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" class=\"special\" id=\"\"][fusion_text]\r\n<h1>5 BEDROOM FAMILY LODGE</h1>\r\n[/fusion_text][separator style_type=\"single\" top_margin=\"0\" bottom_margin=\"30\" sep_color=\"#000000\" border_size=\"\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"170px\" alignment=\"left\" class=\"separator-left\" id=\"\"][fusion_text]\r\n<h3>Self-Catering/Service Options/B&amp;B</h3>\r\n[/fusion_text][/one_half][/fullwidth][fullwidth background_color=\"\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"30px\" padding_bottom=\"60px\" padding_left=\"0px\" padding_right=\"0px\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][one_half last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][fusion_text]\r\n<p style=\"text-align: justify;\">The property boasts over 200 different species of birds and animals. The Lodge is situated on the 1000 Hills tourism route, on the edge of Hillcrest and is a perfect place from which one can launch to any one of the many fantastic destinations and game reserves in KwaZulu Natal, i.e. the Majestic Drakensberg Mountain Range, Shongweni Nature Reserve, Nagle Dam, Durban &amp; Beach Front. We are also the doorstep of one of KZN’s major horse riding venues namely, the Shongweni Horse Riding Club &amp; the Summerveld Horse Riding Academy, makes Assagay Lodge a perfect home away from home for the equestrian lovers. The peace &amp; tranquility will take you far away from the business of city life. Evenings are quiet and peaceful. This is a unique and memorable country experience.</p>\r\n[/fusion_text][/one_half][one_half last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][fusion_text]\r\n<p style=\"text-align: justify;\">We are a homely \'down to earth\' country guest lodge, set on a farm surrounded by acres of beautiful hills, forests, &amp; dams in the Madwala Conservancy of Assagay, where horses still have the right of way on all roads. Our five bedrooms have a rustic charm offering the comforts of modern day life.</p>\r\n<p style=\"text-align: justify;\">Assagay Forest Lodge is owner managed, built in 2005 the lodge provides 5 cozy bedrooms with a large spacious and comfortable homely lounge, which leads onto a large deck area. Set on a 6 acre property in the Assagay Conservancy our lodge is nestled around trees, bushes, and beautiful gardens and a stream, allowing visitors to meander and relax. Guests seeking a quite, relaxing, homely experience will find our lodge the perfect choice away from home. There is a kitchen available should you wish to muster up a snack or quick meal, however breakfast is available on request.</p>\r\n[/fusion_text][/one_half][/fullwidth][fullwidth background_color=\"#f0f0ed\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"60px\" padding_bottom=\"45px\" padding_left=\"0px\" padding_right=\"0px\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][fusion_text]\r\n<h1 style=\"text-align: center;\">Gallery</h1>\r\n[/fusion_text][separator style_type=\"single\" top_margin=\"\" bottom_margin=\"40\" sep_color=\"#000000\" border_size=\"\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"170px\" alignment=\"\" class=\"\" id=\"\"][one_sixth last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][/one_sixth][two_third last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][fusion_text]\r\n<h3 style=\"text-align: center;\">The Lodge is open, spacious, comfortable and homely.</h3>\r\n[/fusion_text][/two_third][one_sixth last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][/one_sixth][separator style_type=\"none\" top_margin=\"20\" bottom_margin=\"\" sep_color=\"\" border_size=\"\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"100%\" alignment=\"\" class=\"\" id=\"\"][recent_works layout=\"grid\" picture_size=\"auto\" boxed_text=\"boxed\" filters=\"no\" columns=\"3\" column_spacing=\"12\" cat_slug=\"the-lodge\" exclude_cats=\"\" number_posts=\"9\" offset=\"\" excerpt_length=\"35\" strip_html=\"yes\" carousel_layout=\"title_on_rollover\" scroll_items=\"\" autoplay=\"no\" show_nav=\"yes\" mouse_scroll=\"no\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" class=\"\" id=\"\"][/recent_works][/fullwidth][fullwidth background_color=\"#ffffff\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"65px\" padding_bottom=\"65px\" padding_left=\"0px\" padding_right=\"0px\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][button link=\"http://localhost/assagaylodge/book-now/\" color=\"default\" size=\"xlarge\" type=\"3d\" shape=\"round\" target=\"_self\" title=\"\" gradient_colors=\"#f0f0ed|#f0f0ed\" gradient_hover_colors=\"#6666a4|#6666a4\" accent_color=\"#ffffff\" accent_hover_color=\"#ffffff\" bevel_color=\"\" border_width=\"0px\" icon=\"\" icon_position=\"left\" icon_divider=\"no\" modal=\"\" animation_type=\"0\" animation_direction=\"left\" animation_speed=\"1\" alignment=\"center\" class=\"\" id=\"\"]Make A Reservation Enquiry[/button][/fullwidth][fullwidth background_color=\"\" background_image=\"\" background_parallax=\"fixed\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"60px\" padding_bottom=\"35px\" padding_left=\"0px\" padding_right=\"0px\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][fusion_text]\r\n<h1 style=\"text-align: center;\">BEDROOMS</h1>\r\n[/fusion_text][separator style_type=\"single\" top_margin=\"\" bottom_margin=\"20\" sep_color=\"#000000\" border_size=\"\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"170px\" alignment=\"\" class=\"\" id=\"\"][one_sixth last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][/one_sixth][two_third last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][fusion_text]\r\n<h3 style=\"text-align: center;\">When it comes to our advice we’re proud to say we’re different. We offer something a little more special.</h3>\r\nOur five bedrooms are all en-suite and equipped with either king size or queen size beds. The rooms have high ceilings, wall heaters &amp; ceiling fans. Beds all have electric blankets in Winter, 100% cotton percale sheets and thick hyper allergenic microfiber duvets and pillows.[/fusion_text][/two_third][one_sixth last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][/one_sixth][separator style_type=\"none\" top_margin=\"40\" bottom_margin=\"\" sep_color=\"\" border_size=\"\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"100%\" alignment=\"center\" class=\"\" id=\"\"][/fullwidth][fullwidth background_color=\"\" background_image=\"http://localhost/assagaylodge/wp-content/uploads/2015/01/DSC01516-1148-x-764.jpg\" background_parallax=\"fixed\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"20\" padding_bottom=\"20\" padding_left=\"0\" padding_right=\"0\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][recent_works layout=\"grid\" picture_size=\"auto\" boxed_text=\"boxed\" filters=\"no\" columns=\"3\" column_spacing=\"12\" cat_slug=\"bedrooms\" exclude_cats=\"\" number_posts=\"9\" offset=\"\" excerpt_length=\"35\" strip_html=\"yes\" carousel_layout=\"title_on_rollover\" scroll_items=\"\" autoplay=\"no\" show_nav=\"yes\" mouse_scroll=\"no\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" class=\"\" id=\"\"][/recent_works][/fullwidth][fullwidth background_color=\"\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding_top=\"20\" padding_bottom=\"20\" padding_left=\"0\" padding_right=\"0\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][fusion_text]\r\n<h1 style=\"text-align: center;\">GARDENS</h1>\r\n[/fusion_text][separator style_type=\"none\" top_margin=\"40\" bottom_margin=\"\" sep_color=\"\" border_size=\"\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"100%\" alignment=\"center\" class=\"\" id=\"\"][one_sixth last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][/one_sixth][two_third last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][fusion_text]\r\n<h3 style=\"text-align: center;\">Walk &amp; relax in our beautiful gardens</h3>\r\n[/fusion_text][/two_third][one_sixth last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][/one_sixth][separator style_type=\"none\" top_margin=\"40\" bottom_margin=\"\" sep_color=\"\" border_size=\"\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"100%\" alignment=\"center\" class=\"\" id=\"\"][recent_works layout=\"grid\" picture_size=\"auto\" boxed_text=\"boxed\" filters=\"no\" columns=\"3\" column_spacing=\"12\" cat_slug=\"gardens\" exclude_cats=\"\" number_posts=\"9\" offset=\"\" excerpt_length=\"35\" strip_html=\"yes\" carousel_layout=\"title_on_rollover\" scroll_items=\"\" autoplay=\"no\" show_nav=\"yes\" mouse_scroll=\"no\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" class=\"\" id=\"\"][/recent_works][/fullwidth][fullwidth background_color=\"\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding_top=\"20\" padding_bottom=\"20\" padding_left=\"0\" padding_right=\"0\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][/fullwidth]', 'Home', '', 'inherit', 'closed', 'closed', '', '7-revision-v1', '', '', '2015-09-07 18:19:52', '2015-09-07 16:19:52', '', 7, 'http://localhost/assagaylodge/7-revision-v1/', 0, 'revision', '', 0),
(955, 1, '2015-09-08 09:22:04', '2015-09-08 07:22:04', '[fullwidth background_color=\"\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"90px\" padding_bottom=\"0px\" padding_left=\"0px\" padding_right=\"0px\" hundred_percent=\"yes\" equal_height_columns=\"yes\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][one_half last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"http://localhost/assagaylodge/wp-content/uploads/2015/08/Tha-Lodge.jpg\" background_repeat=\"no-repeat\" background_position=\"center center\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" class=\"\" id=\"\"][/one_half][one_half last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"30px\" margin_top=\"\" margin_bottom=\"0px\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" class=\"special\" id=\"\"][fusion_text]\r\n<h1>5 BEDROOM FAMILY LODGE</h1>\r\n[/fusion_text][separator style_type=\"single\" top_margin=\"0\" bottom_margin=\"30\" sep_color=\"#000000\" border_size=\"\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"170px\" alignment=\"left\" class=\"separator-left\" id=\"\"][fusion_text]\r\n<h3>Self-Catering/Service Options/B&amp;B</h3>\r\n[/fusion_text][/one_half][/fullwidth][fullwidth background_color=\"\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"30px\" padding_bottom=\"60px\" padding_left=\"0px\" padding_right=\"0px\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][one_half last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][fusion_text]\r\n<p style=\"text-align: justify;\">The property boasts over 200 different species of birds and animals. The Lodge is situated on the 1000 Hills tourism route, on the edge of Hillcrest and is a perfect place from which one can launch to any one of the many fantastic destinations and game reserves in KwaZulu Natal, i.e. the Majestic Drakensberg Mountain Range, Shongweni Nature Reserve, Nagle Dam, Durban &amp; Beach Front. We are also the doorstep of one of KZN’s major horse riding venues namely, the Shongweni Horse Riding Club &amp; the Summerveld Horse Riding Academy, makes Assagay Lodge a perfect home away from home for the equestrian lovers. The peace &amp; tranquility will take you far away from the business of city life. Evenings are quiet and peaceful. This is a unique and memorable country experience.</p>\r\n[/fusion_text][/one_half][one_half last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][fusion_text]\r\n<p style=\"text-align: justify;\">We are a homely \'down to earth\' country guest lodge, set on a farm surrounded by acres of beautiful hills, forests, &amp; dams in the Madwala Conservancy of Assagay, where horses still have the right of way on all roads. Our five bedrooms have a rustic charm offering the comforts of modern day life.</p>\r\n<p style=\"text-align: justify;\">Assagay Forest Lodge is owner managed, built in 2005 the lodge provides 5 cozy bedrooms with a large spacious and comfortable homely lounge, which leads onto a large deck area. Set on a 6 acre property in the Assagay Conservancy our lodge is nestled around trees, bushes, and beautiful gardens and a stream, allowing visitors to meander and relax. Guests seeking a quite, relaxing, homely experience will find our lodge the perfect choice away from home. There is a kitchen available should you wish to muster up a snack or quick meal, however breakfast is available on request.</p>\r\n[/fusion_text][/one_half][/fullwidth][fullwidth background_color=\"#f0f0ed\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"60px\" padding_bottom=\"45px\" padding_left=\"0px\" padding_right=\"0px\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][fusion_text]\r\n<h1 style=\"text-align: center;\">Gallery</h1>\r\n[/fusion_text][separator style_type=\"single\" top_margin=\"\" bottom_margin=\"40\" sep_color=\"#000000\" border_size=\"\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"170px\" alignment=\"\" class=\"\" id=\"\"][one_sixth last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][/one_sixth][two_third last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][fusion_text]\r\n<h3 style=\"text-align: center;\">The Lodge is open, spacious, comfortable and homely.</h3>\r\n[/fusion_text][/two_third][one_sixth last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][/one_sixth][recent_works layout=\"grid\" picture_size=\"auto\" boxed_text=\"boxed\" filters=\"no\" columns=\"3\" column_spacing=\"12\" cat_slug=\"the-lodge\" exclude_cats=\"\" number_posts=\"9\" offset=\"\" excerpt_length=\"35\" strip_html=\"yes\" carousel_layout=\"title_on_rollover\" scroll_items=\"\" autoplay=\"no\" show_nav=\"yes\" mouse_scroll=\"no\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" class=\"\" id=\"\"][/recent_works][/fullwidth][fullwidth background_color=\"#ffffff\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"65px\" padding_bottom=\"65px\" padding_left=\"0px\" padding_right=\"0px\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][button link=\"http://localhost/assagaylodge/book-now/\" color=\"default\" size=\"xlarge\" type=\"3d\" shape=\"round\" target=\"_self\" title=\"\" gradient_colors=\"#f0f0ed|#f0f0ed\" gradient_hover_colors=\"#6666a4|#6666a4\" accent_color=\"#ffffff\" accent_hover_color=\"#ffffff\" bevel_color=\"\" border_width=\"0px\" icon=\"\" icon_position=\"left\" icon_divider=\"no\" modal=\"\" animation_type=\"0\" animation_direction=\"left\" animation_speed=\"1\" alignment=\"center\" class=\"\" id=\"\"]Make A Reservation Enquiry[/button][/fullwidth][fullwidth background_color=\"\" background_image=\"\" background_parallax=\"fixed\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"60px\" padding_bottom=\"35px\" padding_left=\"0px\" padding_right=\"0px\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][fusion_text]\r\n<h1 style=\"text-align: center;\">BEDROOMS</h1>\r\n[/fusion_text][separator style_type=\"single\" top_margin=\"\" bottom_margin=\"20\" sep_color=\"#000000\" border_size=\"\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"170px\" alignment=\"\" class=\"\" id=\"\"][one_sixth last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][/one_sixth][two_third last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][fusion_text]\r\n<h3 style=\"text-align: center;\">When it comes to our advice we’re proud to say we’re different. We offer something a little more special.</h3>\r\nOur five bedrooms are all en-suite and equipped with either king size or queen size beds. The rooms have high ceilings, wall heaters &amp; ceiling fans. Beds all have electric blankets in Winter, 100% cotton percale sheets and thick hyper allergenic microfiber duvets and pillows.[/fusion_text][/two_third][one_sixth last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][/one_sixth][/fullwidth][fullwidth background_color=\"\" background_image=\"http://localhost/assagaylodge/wp-content/uploads/2015/01/DSC01516-1148-x-764.jpg\" background_parallax=\"fixed\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"20\" padding_bottom=\"20\" padding_left=\"0\" padding_right=\"0\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][recent_works layout=\"grid\" picture_size=\"auto\" boxed_text=\"boxed\" filters=\"no\" columns=\"3\" column_spacing=\"12\" cat_slug=\"bedrooms\" exclude_cats=\"\" number_posts=\"9\" offset=\"\" excerpt_length=\"35\" strip_html=\"yes\" carousel_layout=\"title_on_rollover\" scroll_items=\"\" autoplay=\"no\" show_nav=\"yes\" mouse_scroll=\"no\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" class=\"\" id=\"\"][/recent_works][/fullwidth][fullwidth background_color=\"\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding_top=\"20\" padding_bottom=\"20\" padding_left=\"0\" padding_right=\"0\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][fusion_text]\r\n<h1 style=\"text-align: center;\">GARDENS</h1>\r\n[/fusion_text][separator style_type=\"none\" top_margin=\"40\" bottom_margin=\"\" sep_color=\"\" border_size=\"\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"100%\" alignment=\"center\" class=\"\" id=\"\"][one_sixth last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][/one_sixth][two_third last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][fusion_text]\r\n<h3 style=\"text-align: center;\">Walk &amp; relax in our beautiful gardens</h3>\r\n[/fusion_text][/two_third][one_sixth last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][/one_sixth][separator style_type=\"none\" top_margin=\"40\" bottom_margin=\"\" sep_color=\"\" border_size=\"\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"100%\" alignment=\"center\" class=\"\" id=\"\"][recent_works layout=\"grid\" picture_size=\"auto\" boxed_text=\"boxed\" filters=\"no\" columns=\"3\" column_spacing=\"12\" cat_slug=\"gardens\" exclude_cats=\"\" number_posts=\"9\" offset=\"\" excerpt_length=\"35\" strip_html=\"yes\" carousel_layout=\"title_on_rollover\" scroll_items=\"\" autoplay=\"no\" show_nav=\"yes\" mouse_scroll=\"no\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" class=\"\" id=\"\"][/recent_works][/fullwidth]', 'Home', '', 'inherit', 'closed', 'closed', '', '7-revision-v1', '', '', '2015-09-08 09:22:04', '2015-09-08 07:22:04', '', 7, 'http://localhost/assagaylodge/7-revision-v1/', 0, 'revision', '', 0),
(956, 1, '2015-09-08 09:24:17', '2015-09-08 07:24:17', '[fullwidth background_color=\"\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"90px\" padding_bottom=\"0px\" padding_left=\"0px\" padding_right=\"0px\" hundred_percent=\"yes\" equal_height_columns=\"yes\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][one_half last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"http://localhost/assagaylodge/wp-content/uploads/2015/08/Tha-Lodge.jpg\" background_repeat=\"no-repeat\" background_position=\"center center\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" class=\"\" id=\"\"][/one_half][one_half last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"30px\" margin_top=\"\" margin_bottom=\"0px\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" class=\"special\" id=\"\"][fusion_text]\r\n<h1>5 BEDROOM FAMILY LODGE</h1>\r\n[/fusion_text][separator style_type=\"single\" top_margin=\"0\" bottom_margin=\"30\" sep_color=\"#000000\" border_size=\"\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"170px\" alignment=\"left\" class=\"separator-left\" id=\"\"][fusion_text]\r\n<h3>Self-Catering/Service Options/B&amp;B</h3>\r\n[/fusion_text][/one_half][/fullwidth][fullwidth background_color=\"\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"30px\" padding_bottom=\"60px\" padding_left=\"0px\" padding_right=\"0px\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][one_half last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][fusion_text]\r\n<p style=\"text-align: justify;\">The property boasts over 200 different species of birds and animals. The Lodge is situated on the 1000 Hills tourism route, on the edge of Hillcrest and is a perfect place from which one can launch to any one of the many fantastic destinations and game reserves in KwaZulu Natal, i.e. the Majestic Drakensberg Mountain Range, Shongweni Nature Reserve, Nagle Dam, Durban &amp; Beach Front. We are also the doorstep of one of KZN’s major horse riding venues namely, the Shongweni Horse Riding Club &amp; the Summerveld Horse Riding Academy, makes Assagay Lodge a perfect home away from home for the equestrian lovers. The peace &amp; tranquility will take you far away from the business of city life. Evenings are quiet and peaceful. This is a unique and memorable country experience.</p>\r\n[/fusion_text][/one_half][one_half last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][fusion_text]\r\n<p style=\"text-align: justify;\">We are a homely \'down to earth\' country guest lodge, set on a farm surrounded by acres of beautiful hills, forests, &amp; dams in the Madwala Conservancy of Assagay, where horses still have the right of way on all roads. Our five bedrooms have a rustic charm offering the comforts of modern day life.</p>\r\n<p style=\"text-align: justify;\">Assagay Forest Lodge is owner managed, built in 2005 the lodge provides 5 cozy bedrooms with a large spacious and comfortable homely lounge, which leads onto a large deck area. Set on a 6 acre property in the Assagay Conservancy our lodge is nestled around trees, bushes, and beautiful gardens and a stream, allowing visitors to meander and relax. Guests seeking a quite, relaxing, homely experience will find our lodge the perfect choice away from home. There is a kitchen available should you wish to muster up a snack or quick meal, however breakfast is available on request.</p>\r\n[/fusion_text][/one_half][/fullwidth][fullwidth background_color=\"#f0f0ed\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"60px\" padding_bottom=\"45px\" padding_left=\"0px\" padding_right=\"0px\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][fusion_text]\r\n<h1 style=\"text-align: center;\">Gallery</h1>\r\n[/fusion_text][separator style_type=\"single\" top_margin=\"\" bottom_margin=\"40\" sep_color=\"#000000\" border_size=\"\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"170px\" alignment=\"\" class=\"\" id=\"\"][one_sixth last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][/one_sixth][two_third last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][fusion_text]\r\n<h3 style=\"text-align: center;\">The Lodge is open, spacious, comfortable and homely.</h3>\r\n[/fusion_text][/two_third][one_sixth last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][/one_sixth][recent_works layout=\"grid\" picture_size=\"auto\" boxed_text=\"boxed\" filters=\"no\" columns=\"3\" column_spacing=\"12\" cat_slug=\"the-lodge\" exclude_cats=\"\" number_posts=\"9\" offset=\"\" excerpt_length=\"35\" strip_html=\"yes\" carousel_layout=\"title_on_rollover\" scroll_items=\"\" autoplay=\"no\" show_nav=\"yes\" mouse_scroll=\"no\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" class=\"\" id=\"\"][/recent_works][/fullwidth][fullwidth background_color=\"#ffffff\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"65px\" padding_bottom=\"65px\" padding_left=\"0px\" padding_right=\"0px\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][button link=\"http://localhost/assagaylodge/book-now/\" color=\"default\" size=\"xlarge\" type=\"3d\" shape=\"round\" target=\"_self\" title=\"\" gradient_colors=\"#f0f0ed|#f0f0ed\" gradient_hover_colors=\"#6666a4|#6666a4\" accent_color=\"#ffffff\" accent_hover_color=\"#ffffff\" bevel_color=\"\" border_width=\"0px\" icon=\"\" icon_position=\"left\" icon_divider=\"no\" modal=\"\" animation_type=\"0\" animation_direction=\"left\" animation_speed=\"1\" alignment=\"center\" class=\"\" id=\"\"]Make A Reservation Enquiry[/button][/fullwidth][fullwidth background_color=\"\" background_image=\"\" background_parallax=\"fixed\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"60px\" padding_bottom=\"35px\" padding_left=\"0px\" padding_right=\"0px\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][fusion_text]\r\n<h1 style=\"text-align: center;\">BEDROOMS</h1>\r\n[/fusion_text][separator style_type=\"single\" top_margin=\"\" bottom_margin=\"20\" sep_color=\"#000000\" border_size=\"\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"170px\" alignment=\"\" class=\"\" id=\"\"][one_sixth last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][/one_sixth][two_third last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][fusion_text]\r\n<h3 style=\"text-align: center;\">When it comes to our advice we’re proud to say we’re different. We offer something a little more special.</h3>\r\nOur five bedrooms are all en-suite and equipped with either king size or queen size beds. The rooms have high ceilings, wall heaters &amp; ceiling fans. Beds all have electric blankets in Winter, 100% cotton percale sheets and thick hyper allergenic microfiber duvets and pillows.[/fusion_text][/two_third][one_sixth last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][/one_sixth][/fullwidth][fullwidth background_color=\"\" background_image=\"http://localhost/assagaylodge/wp-content/uploads/2015/01/DSC01516-1148-x-764.jpg\" background_parallax=\"fixed\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"20\" padding_bottom=\"20\" padding_left=\"0\" padding_right=\"0\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][recent_works layout=\"grid\" picture_size=\"auto\" boxed_text=\"boxed\" filters=\"no\" columns=\"3\" column_spacing=\"12\" cat_slug=\"bedrooms\" exclude_cats=\"\" number_posts=\"9\" offset=\"\" excerpt_length=\"35\" strip_html=\"yes\" carousel_layout=\"title_on_rollover\" scroll_items=\"\" autoplay=\"no\" show_nav=\"yes\" mouse_scroll=\"no\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" class=\"\" id=\"\"][/recent_works][/fullwidth][fullwidth background_color=\"#f0f0ed\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"20\" padding_bottom=\"20\" padding_left=\"0\" padding_right=\"0\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][fusion_text]\r\n<h1 style=\"text-align: center;\">GARDENS</h1>\r\n[/fusion_text][separator style_type=\"none\" top_margin=\"40\" bottom_margin=\"\" sep_color=\"\" border_size=\"\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"100%\" alignment=\"center\" class=\"\" id=\"\"][one_sixth last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][/one_sixth][two_third last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][fusion_text]\r\n<h3 style=\"text-align: center;\">Walk &amp; relax in our beautiful gardens</h3>\r\n[/fusion_text][/two_third][one_sixth last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][/one_sixth][separator style_type=\"none\" top_margin=\"40\" bottom_margin=\"\" sep_color=\"\" border_size=\"\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"100%\" alignment=\"center\" class=\"\" id=\"\"][recent_works layout=\"grid\" picture_size=\"auto\" boxed_text=\"boxed\" filters=\"no\" columns=\"3\" column_spacing=\"12\" cat_slug=\"gardens\" exclude_cats=\"\" number_posts=\"9\" offset=\"\" excerpt_length=\"35\" strip_html=\"yes\" carousel_layout=\"title_on_rollover\" scroll_items=\"\" autoplay=\"no\" show_nav=\"yes\" mouse_scroll=\"no\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" class=\"\" id=\"\"][/recent_works][/fullwidth]', 'Home', '', 'inherit', 'closed', 'closed', '', '7-revision-v1', '', '', '2015-09-08 09:24:17', '2015-09-08 07:24:17', '', 7, 'http://localhost/assagaylodge/7-revision-v1/', 0, 'revision', '', 0);
INSERT INTO `wp_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(957, 1, '2015-09-08 09:34:08', '2015-09-08 07:34:08', '[fullwidth background_color=\"\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"90px\" padding_bottom=\"0px\" padding_left=\"0px\" padding_right=\"0px\" hundred_percent=\"yes\" equal_height_columns=\"yes\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][one_half last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"http://localhost/assagaylodge/wp-content/uploads/2015/08/Tha-Lodge.jpg\" background_repeat=\"no-repeat\" background_position=\"center center\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" class=\"\" id=\"\"][/one_half][one_half last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"30px\" margin_top=\"\" margin_bottom=\"0px\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" class=\"special\" id=\"\"][fusion_text]\r\n<h1>5 BEDROOM FAMILY LODGE</h1>\r\n[/fusion_text][separator style_type=\"single\" top_margin=\"0\" bottom_margin=\"30\" sep_color=\"#000000\" border_size=\"\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"170px\" alignment=\"left\" class=\"separator-left\" id=\"\"][fusion_text]\r\n<h3>Self-Catering/Service Options/B&amp;B</h3>\r\n[/fusion_text][/one_half][/fullwidth][fullwidth background_color=\"\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"30px\" padding_bottom=\"60px\" padding_left=\"0px\" padding_right=\"0px\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][one_half last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][fusion_text]\r\n<p style=\"text-align: justify;\">The property boasts over 200 different species of birds and animals. The Lodge is situated on the 1000 Hills tourism route, on the edge of Hillcrest and is a perfect place from which one can launch to any one of the many fantastic destinations and game reserves in KwaZulu Natal, i.e. the Majestic Drakensberg Mountain Range, Shongweni Nature Reserve, Nagle Dam, Durban &amp; Beach Front. We are also the doorstep of one of KZN’s major horse riding venues namely, the Shongweni Horse Riding Club &amp; the Summerveld Horse Riding Academy, makes Assagay Lodge a perfect home away from home for the equestrian lovers. The peace &amp; tranquility will take you far away from the business of city life. Evenings are quiet and peaceful. This is a unique and memorable country experience.</p>\r\n[/fusion_text][/one_half][one_half last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][fusion_text]\r\n<p style=\"text-align: justify;\">We are a homely \'down to earth\' country guest lodge, set on a farm surrounded by acres of beautiful hills, forests, &amp; dams in the Madwala Conservancy of Assagay, where horses still have the right of way on all roads. Our five bedrooms have a rustic charm offering the comforts of modern day life.</p>\r\n<p style=\"text-align: justify;\">Assagay Forest Lodge is owner managed, built in 2005 the lodge provides 5 cozy bedrooms with a large spacious and comfortable homely lounge, which leads onto a large deck area. Set on a 6 acre property in the Assagay Conservancy our lodge is nestled around trees, bushes, and beautiful gardens and a stream, allowing visitors to meander and relax. Guests seeking a quite, relaxing, homely experience will find our lodge the perfect choice away from home. There is a kitchen available should you wish to muster up a snack or quick meal, however breakfast is available on request.</p>\r\n[/fusion_text][/one_half][/fullwidth][fullwidth background_color=\"#f0f0ed\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"60px\" padding_bottom=\"45px\" padding_left=\"0px\" padding_right=\"0px\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][fusion_text]\r\n<h1 style=\"text-align: center;\">Gallery</h1>\r\n[/fusion_text][separator style_type=\"single\" top_margin=\"\" bottom_margin=\"40\" sep_color=\"#000000\" border_size=\"\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"170px\" alignment=\"\" class=\"\" id=\"\"][one_sixth last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][/one_sixth][two_third last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][fusion_text]\r\n<h3 style=\"text-align: center;\">The Lodge is open, spacious, comfortable and homely.</h3>\r\n[/fusion_text][/two_third][one_sixth last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][/one_sixth][recent_works layout=\"grid\" picture_size=\"auto\" boxed_text=\"boxed\" filters=\"no\" columns=\"3\" column_spacing=\"12\" cat_slug=\"the-lodge\" exclude_cats=\"\" number_posts=\"9\" offset=\"\" excerpt_length=\"35\" strip_html=\"yes\" carousel_layout=\"title_on_rollover\" scroll_items=\"\" autoplay=\"no\" show_nav=\"yes\" mouse_scroll=\"no\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" class=\"\" id=\"\"][/recent_works][/fullwidth][fullwidth background_color=\"#ffffff\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"65px\" padding_bottom=\"65px\" padding_left=\"0px\" padding_right=\"0px\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][button link=\"http://localhost/assagaylodge/book-now/\" color=\"default\" size=\"xlarge\" type=\"3d\" shape=\"round\" target=\"_self\" title=\"\" gradient_colors=\"#f0f0ed|#f0f0ed\" gradient_hover_colors=\"#6666a4|#6666a4\" accent_color=\"#ffffff\" accent_hover_color=\"#ffffff\" bevel_color=\"\" border_width=\"0px\" icon=\"\" icon_position=\"left\" icon_divider=\"no\" modal=\"\" animation_type=\"0\" animation_direction=\"left\" animation_speed=\"1\" alignment=\"center\" class=\"\" id=\"\"]Make A Reservation Enquiry[/button][/fullwidth][fullwidth background_color=\"\" background_image=\"\" background_parallax=\"fixed\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"60px\" padding_bottom=\"35px\" padding_left=\"0px\" padding_right=\"0px\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][fusion_text]\r\n<h1 style=\"text-align: center;\">BEDROOMS</h1>\r\n[/fusion_text][separator style_type=\"single\" top_margin=\"\" bottom_margin=\"20\" sep_color=\"#000000\" border_size=\"\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"170px\" alignment=\"\" class=\"\" id=\"\"][one_sixth last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][/one_sixth][two_third last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][fusion_text]\r\n<h3 style=\"text-align: center;\">When it comes to our bedrooms we’re proud to say we’re different. We offer something a little more special.</h3>\r\nOur five bedrooms are all en-suite and equipped with either king size or queen size beds. The rooms have high ceilings, wall heaters &amp; ceiling fans. Beds all have electric blankets in Winter, 100% cotton percale sheets and thick hyper allergenic microfiber duvets and pillows.[/fusion_text][/two_third][one_sixth last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][/one_sixth][/fullwidth][fullwidth background_color=\"\" background_image=\"http://localhost/assagaylodge/wp-content/uploads/2015/01/DSC01516-1148-x-764.jpg\" background_parallax=\"fixed\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"20\" padding_bottom=\"20\" padding_left=\"0\" padding_right=\"0\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][separator style_type=\"single\" top_margin=\"\" bottom_margin=\"20\" sep_color=\"#000000\" border_size=\"\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"170px\" alignment=\"\" class=\"\" id=\"\"][recent_works layout=\"grid\" picture_size=\"auto\" boxed_text=\"unboxed\" filters=\"no\" columns=\"3\" column_spacing=\"12\" cat_slug=\"bedrooms\" exclude_cats=\"\" number_posts=\"9\" offset=\"\" excerpt_length=\"35\" strip_html=\"yes\" carousel_layout=\"title_on_rollover\" scroll_items=\"\" autoplay=\"no\" show_nav=\"yes\" mouse_scroll=\"no\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" class=\"\" id=\"\"][/recent_works][/fullwidth][fullwidth background_color=\"#f0f0ed\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"20\" padding_bottom=\"20\" padding_left=\"0\" padding_right=\"0\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][fusion_text]\r\n<h1 style=\"text-align: center;\">GARDENS</h1>\r\n[/fusion_text][separator style_type=\"none\" top_margin=\"40\" bottom_margin=\"\" sep_color=\"\" border_size=\"\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"100%\" alignment=\"center\" class=\"\" id=\"\"][one_sixth last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][/one_sixth][two_third last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][fusion_text]\r\n<h3 style=\"text-align: center;\">Walk &amp; relax in our beautiful gardens</h3>\r\n[/fusion_text][/two_third][one_sixth last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][/one_sixth][separator style_type=\"none\" top_margin=\"40\" bottom_margin=\"\" sep_color=\"\" border_size=\"\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"100%\" alignment=\"center\" class=\"\" id=\"\"][recent_works layout=\"grid\" picture_size=\"auto\" boxed_text=\"boxed\" filters=\"no\" columns=\"3\" column_spacing=\"12\" cat_slug=\"gardens\" exclude_cats=\"\" number_posts=\"9\" offset=\"\" excerpt_length=\"35\" strip_html=\"yes\" carousel_layout=\"title_on_rollover\" scroll_items=\"\" autoplay=\"no\" show_nav=\"yes\" mouse_scroll=\"no\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" class=\"\" id=\"\"][/recent_works][/fullwidth]', 'Home', '', 'inherit', 'closed', 'closed', '', '7-revision-v1', '', '', '2015-09-08 09:34:08', '2015-09-08 07:34:08', '', 7, 'http://localhost/assagaylodge/7-revision-v1/', 0, 'revision', '', 0),
(958, 1, '2015-09-08 09:42:18', '2015-09-08 07:42:18', '[fullwidth background_color=\"\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"90px\" padding_bottom=\"0px\" padding_left=\"0px\" padding_right=\"0px\" hundred_percent=\"yes\" equal_height_columns=\"yes\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][one_half last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"http://localhost/assagaylodge/wp-content/uploads/2015/08/Tha-Lodge.jpg\" background_repeat=\"no-repeat\" background_position=\"center center\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" class=\"\" id=\"\"][/one_half][one_half last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"30px\" margin_top=\"\" margin_bottom=\"0px\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" class=\"special\" id=\"\"][fusion_text]\r\n<h1>5 BEDROOM FAMILY LODGE</h1>\r\n[/fusion_text][separator style_type=\"single\" top_margin=\"0\" bottom_margin=\"30\" sep_color=\"#000000\" border_size=\"\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"170px\" alignment=\"left\" class=\"separator-left\" id=\"\"][fusion_text]\r\n<h3>Self-Catering/Service Options/B&amp;B</h3>\r\n[/fusion_text][/one_half][/fullwidth][fullwidth background_color=\"\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"30px\" padding_bottom=\"60px\" padding_left=\"0px\" padding_right=\"0px\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][one_half last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][fusion_text]\r\n<p style=\"text-align: justify;\">The property boasts over 200 different species of birds and animals. The Lodge is situated on the 1000 Hills tourism route, on the edge of Hillcrest and is a perfect place from which one can launch to any one of the many fantastic destinations and game reserves in KwaZulu Natal, i.e. the Majestic Drakensberg Mountain Range, Shongweni Nature Reserve, Nagle Dam, Durban &amp; Beach Front. We are also the doorstep of one of KZN’s major horse riding venues namely, the Shongweni Horse Riding Club &amp; the Summerveld Horse Riding Academy, makes Assagay Lodge a perfect home away from home for the equestrian lovers. The peace &amp; tranquility will take you far away from the business of city life. Evenings are quiet and peaceful. This is a unique and memorable country experience.</p>\r\n[/fusion_text][/one_half][one_half last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][fusion_text]\r\n<p style=\"text-align: justify;\">We are a homely \'down to earth\' country guest lodge, set on a farm surrounded by acres of beautiful hills, forests, &amp; dams in the Madwala Conservancy of Assagay, where horses still have the right of way on all roads. Our five bedrooms have a rustic charm offering the comforts of modern day life.</p>\r\n<p style=\"text-align: justify;\">Assagay Forest Lodge is owner managed, built in 2005 the lodge provides 5 cozy bedrooms with a large spacious and comfortable homely lounge, which leads onto a large deck area. Set on a 6 acre property in the Assagay Conservancy our lodge is nestled around trees, bushes, and beautiful gardens and a stream, allowing visitors to meander and relax. Guests seeking a quite, relaxing, homely experience will find our lodge the perfect choice away from home. There is a kitchen available should you wish to muster up a snack or quick meal, however breakfast is available on request.</p>\r\n[/fusion_text][/one_half][/fullwidth][fullwidth background_color=\"#f0f0ed\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"60px\" padding_bottom=\"45px\" padding_left=\"0px\" padding_right=\"0px\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][fusion_text]\r\n<h1 style=\"text-align: center;\">Gallery</h1>\r\n[/fusion_text][separator style_type=\"single\" top_margin=\"\" bottom_margin=\"40\" sep_color=\"#000000\" border_size=\"\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"170px\" alignment=\"\" class=\"\" id=\"\"][one_sixth last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][/one_sixth][two_third last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][fusion_text]\r\n<h3 style=\"text-align: center;\">The Lodge is open, spacious, comfortable and homely.</h3>\r\n[/fusion_text][/two_third][one_sixth last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][/one_sixth][recent_works layout=\"grid\" picture_size=\"auto\" boxed_text=\"boxed\" filters=\"no\" columns=\"3\" column_spacing=\"12\" cat_slug=\"the-lodge\" exclude_cats=\"\" number_posts=\"9\" offset=\"\" excerpt_length=\"35\" strip_html=\"yes\" carousel_layout=\"title_on_rollover\" scroll_items=\"\" autoplay=\"no\" show_nav=\"yes\" mouse_scroll=\"no\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" class=\"\" id=\"\"][/recent_works][/fullwidth][fullwidth background_color=\"#ffffff\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"65px\" padding_bottom=\"65px\" padding_left=\"0px\" padding_right=\"0px\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][button link=\"http://localhost/assagaylodge/book-now/\" color=\"default\" size=\"xlarge\" type=\"3d\" shape=\"round\" target=\"_self\" title=\"\" gradient_colors=\"#f0f0ed|#f0f0ed\" gradient_hover_colors=\"#6666a4|#6666a4\" accent_color=\"#ffffff\" accent_hover_color=\"#ffffff\" bevel_color=\"\" border_width=\"0px\" icon=\"\" icon_position=\"left\" icon_divider=\"no\" modal=\"\" animation_type=\"0\" animation_direction=\"left\" animation_speed=\"1\" alignment=\"center\" class=\"\" id=\"\"]Make A Reservation Enquiry[/button][/fullwidth][fullwidth background_color=\"\" background_image=\"\" background_parallax=\"fixed\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"60px\" padding_bottom=\"35px\" padding_left=\"0px\" padding_right=\"0px\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][fusion_text]\r\n<h1 style=\"text-align: center;\">BEDROOMS</h1>\r\n[/fusion_text][separator style_type=\"single\" top_margin=\"\" bottom_margin=\"20\" sep_color=\"#000000\" border_size=\"\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"170px\" alignment=\"\" class=\"\" id=\"\"][one_sixth last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][/one_sixth][two_third last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][fusion_text]\r\n<h3 style=\"text-align: center;\">When it comes to our bedrooms we’re proud to say we’re different. We offer something a little more special.</h3>\r\nOur five bedrooms are all en-suite and equipped with either king size or queen size beds. The rooms have high ceilings, wall heaters &amp; ceiling fans. Beds all have electric blankets in Winter, 100% cotton percale sheets and thick hyper allergenic microfiber duvets and pillows.[/fusion_text][/two_third][one_sixth last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][/one_sixth][/fullwidth][fullwidth background_color=\"\" background_image=\"http://localhost/assagaylodge/wp-content/uploads/2015/01/DSC01516-1148-x-764.jpg\" background_parallax=\"fixed\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"center center\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"20\" padding_bottom=\"20\" padding_left=\"0\" padding_right=\"0\" hundred_percent=\"no\" equal_height_columns=\"yes\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][recent_works layout=\"grid\" picture_size=\"auto\" boxed_text=\"unboxed\" filters=\"no\" columns=\"3\" column_spacing=\"12\" cat_slug=\"bedrooms\" exclude_cats=\"\" number_posts=\"6\" offset=\"\" excerpt_length=\"35\" strip_html=\"yes\" carousel_layout=\"title_on_rollover\" scroll_items=\"\" autoplay=\"no\" show_nav=\"yes\" mouse_scroll=\"no\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" class=\"\" id=\"\"][/recent_works][/fullwidth][fullwidth background_color=\"#f0f0ed\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"20\" padding_bottom=\"20\" padding_left=\"0\" padding_right=\"0\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][fusion_text]\r\n<h1 style=\"text-align: center;\">GARDENS</h1>\r\n[/fusion_text][separator style_type=\"none\" top_margin=\"40\" bottom_margin=\"\" sep_color=\"\" border_size=\"\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"100%\" alignment=\"center\" class=\"\" id=\"\"][one_sixth last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][/one_sixth][two_third last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][fusion_text]\r\n<h3 style=\"text-align: center;\">Walk &amp; relax in our beautiful gardens</h3>\r\n[/fusion_text][/two_third][one_sixth last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][/one_sixth][separator style_type=\"none\" top_margin=\"40\" bottom_margin=\"\" sep_color=\"\" border_size=\"\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"100%\" alignment=\"center\" class=\"\" id=\"\"][recent_works layout=\"grid\" picture_size=\"auto\" boxed_text=\"boxed\" filters=\"no\" columns=\"3\" column_spacing=\"12\" cat_slug=\"gardens\" exclude_cats=\"\" number_posts=\"9\" offset=\"\" excerpt_length=\"35\" strip_html=\"yes\" carousel_layout=\"title_on_rollover\" scroll_items=\"\" autoplay=\"no\" show_nav=\"yes\" mouse_scroll=\"no\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" class=\"\" id=\"\"][/recent_works][/fullwidth]', 'Home', '', 'inherit', 'closed', 'closed', '', '7-revision-v1', '', '', '2015-09-08 09:42:18', '2015-09-08 07:42:18', '', 7, 'http://localhost/assagaylodge/7-revision-v1/', 0, 'revision', '', 0),
(959, 1, '2015-09-08 09:49:12', '2015-09-08 07:49:12', '[fullwidth background_color=\"\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"90px\" padding_bottom=\"0px\" padding_left=\"0px\" padding_right=\"0px\" hundred_percent=\"yes\" equal_height_columns=\"yes\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][one_half last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"http://localhost/assagaylodge/wp-content/uploads/2015/08/Tha-Lodge.jpg\" background_repeat=\"no-repeat\" background_position=\"center center\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" class=\"\" id=\"\"][/one_half][one_half last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"30px\" margin_top=\"\" margin_bottom=\"0px\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" class=\"special\" id=\"\"][fusion_text]\r\n<h1>5 BEDROOM FAMILY LODGE</h1>\r\n[/fusion_text][separator style_type=\"single\" top_margin=\"0\" bottom_margin=\"30\" sep_color=\"#000000\" border_size=\"\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"170px\" alignment=\"left\" class=\"separator-left\" id=\"\"][fusion_text]\r\n<h3>Self-Catering/Service Options/B&amp;B</h3>\r\n[/fusion_text][/one_half][/fullwidth][fullwidth background_color=\"\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"30px\" padding_bottom=\"60px\" padding_left=\"0px\" padding_right=\"0px\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][one_half last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][fusion_text]\r\n<p style=\"text-align: justify;\">The property boasts over 200 different species of birds and animals. The Lodge is situated on the 1000 Hills tourism route, on the edge of Hillcrest and is a perfect place from which one can launch to any one of the many fantastic destinations and game reserves in KwaZulu Natal, i.e. the Majestic Drakensberg Mountain Range, Shongweni Nature Reserve, Nagle Dam, Durban &amp; Beach Front. We are also the doorstep of one of KZN’s major horse riding venues namely, the Shongweni Horse Riding Club &amp; the Summerveld Horse Riding Academy, makes Assagay Lodge a perfect home away from home for the equestrian lovers. The peace &amp; tranquility will take you far away from the business of city life. Evenings are quiet and peaceful. This is a unique and memorable country experience.</p>\r\n[/fusion_text][/one_half][one_half last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][fusion_text]\r\n<p style=\"text-align: justify;\">We are a homely \'down to earth\' country guest lodge, set on a farm surrounded by acres of beautiful hills, forests, &amp; dams in the Madwala Conservancy of Assagay, where horses still have the right of way on all roads. Our five bedrooms have a rustic charm offering the comforts of modern day life.</p>\r\n<p style=\"text-align: justify;\">Assagay Forest Lodge is owner managed, built in 2005 the lodge provides 5 cozy bedrooms with a large spacious and comfortable homely lounge, which leads onto a large deck area. Set on a 6 acre property in the Assagay Conservancy our lodge is nestled around trees, bushes, and beautiful gardens and a stream, allowing visitors to meander and relax. Guests seeking a quite, relaxing, homely experience will find our lodge the perfect choice away from home. There is a kitchen available should you wish to muster up a snack or quick meal, however breakfast is available on request.</p>\r\n[/fusion_text][/one_half][/fullwidth][fullwidth background_color=\"#f0f0ed\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"60px\" padding_bottom=\"45px\" padding_left=\"0px\" padding_right=\"0px\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][fusion_text]\r\n<h1 style=\"text-align: center;\">Gallery</h1>\r\n[/fusion_text][separator style_type=\"single\" top_margin=\"\" bottom_margin=\"40\" sep_color=\"#000000\" border_size=\"\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"170px\" alignment=\"\" class=\"\" id=\"\"][one_sixth last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][/one_sixth][two_third last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][fusion_text]\r\n<h3 style=\"text-align: center;\">The Lodge is open, spacious, comfortable and homely.</h3>\r\n[/fusion_text][/two_third][one_sixth last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][/one_sixth][recent_works layout=\"grid\" picture_size=\"auto\" boxed_text=\"boxed\" filters=\"no\" columns=\"3\" column_spacing=\"12\" cat_slug=\"the-lodge\" exclude_cats=\"\" number_posts=\"9\" offset=\"\" excerpt_length=\"35\" strip_html=\"yes\" carousel_layout=\"title_on_rollover\" scroll_items=\"\" autoplay=\"no\" show_nav=\"yes\" mouse_scroll=\"no\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" class=\"\" id=\"\"][/recent_works][/fullwidth][fullwidth background_color=\"#ffffff\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"65px\" padding_bottom=\"65px\" padding_left=\"0px\" padding_right=\"0px\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][button link=\"http://localhost/assagaylodge/book-now/\" color=\"default\" size=\"xlarge\" type=\"3d\" shape=\"round\" target=\"_self\" title=\"\" gradient_colors=\"#f0f0ed|#f0f0ed\" gradient_hover_colors=\"#6666a4|#6666a4\" accent_color=\"#ffffff\" accent_hover_color=\"#ffffff\" bevel_color=\"\" border_width=\"0px\" icon=\"\" icon_position=\"left\" icon_divider=\"no\" modal=\"\" animation_type=\"0\" animation_direction=\"left\" animation_speed=\"1\" alignment=\"center\" class=\"\" id=\"\"]Make A Reservation Enquiry[/button][/fullwidth][fullwidth background_color=\"\" background_image=\"\" background_parallax=\"fixed\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"60px\" padding_bottom=\"35px\" padding_left=\"0px\" padding_right=\"0px\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][fusion_text]\r\n<h1 style=\"text-align: center;\">BEDROOMS</h1>\r\n[/fusion_text][separator style_type=\"single\" top_margin=\"\" bottom_margin=\"20\" sep_color=\"#000000\" border_size=\"\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"170px\" alignment=\"\" class=\"\" id=\"\"][one_sixth last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][/one_sixth][two_third last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][fusion_text]\r\n<h3 style=\"text-align: center;\">When it comes to our bedrooms we’re proud to say we’re different. We offer something a little more special.</h3>\r\nOur five bedrooms are all en-suite and equipped with either king size or queen size beds. The rooms have high ceilings, wall heaters &amp; ceiling fans. Beds all have electric blankets in Winter, 100% cotton percale sheets and thick hyper allergenic microfiber duvets and pillows.[/fusion_text][/two_third][one_sixth last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][/one_sixth][/fullwidth][fullwidth background_color=\"\" background_image=\"http://localhost/assagaylodge/wp-content/uploads/2015/01/DSC01516-1148-x-764.jpg\" background_parallax=\"fixed\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"center center\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"40\" padding_bottom=\"20\" padding_left=\"0\" padding_right=\"0\" hundred_percent=\"yes\" equal_height_columns=\"yes\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][recent_works layout=\"grid\" picture_size=\"auto\" boxed_text=\"unboxed\" filters=\"no\" columns=\"3\" column_spacing=\"12\" cat_slug=\"bedrooms\" exclude_cats=\"\" number_posts=\"6\" offset=\"\" excerpt_length=\"35\" strip_html=\"yes\" carousel_layout=\"title_on_rollover\" scroll_items=\"\" autoplay=\"no\" show_nav=\"yes\" mouse_scroll=\"no\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" class=\"\" id=\"\"][/recent_works][/fullwidth][fullwidth background_color=\"#f0f0ed\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"20\" padding_bottom=\"20\" padding_left=\"0\" padding_right=\"0\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][fusion_text]\r\n<h1 style=\"text-align: center;\">GARDENS</h1>\r\n[/fusion_text][separator style_type=\"none\" top_margin=\"40\" bottom_margin=\"\" sep_color=\"\" border_size=\"\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"100%\" alignment=\"center\" class=\"\" id=\"\"][one_sixth last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][/one_sixth][two_third last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][fusion_text]\r\n<h3 style=\"text-align: center;\">Walk &amp; relax in our beautiful gardens</h3>\r\n[/fusion_text][/two_third][one_sixth last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][/one_sixth][separator style_type=\"none\" top_margin=\"40\" bottom_margin=\"\" sep_color=\"\" border_size=\"\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"100%\" alignment=\"center\" class=\"\" id=\"\"][recent_works layout=\"grid\" picture_size=\"auto\" boxed_text=\"boxed\" filters=\"no\" columns=\"3\" column_spacing=\"12\" cat_slug=\"gardens\" exclude_cats=\"\" number_posts=\"9\" offset=\"\" excerpt_length=\"35\" strip_html=\"yes\" carousel_layout=\"title_on_rollover\" scroll_items=\"\" autoplay=\"no\" show_nav=\"yes\" mouse_scroll=\"no\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" class=\"\" id=\"\"][/recent_works][/fullwidth]', 'Home', '', 'inherit', 'closed', 'closed', '', '7-revision-v1', '', '', '2015-09-08 09:49:12', '2015-09-08 07:49:12', '', 7, 'http://localhost/assagaylodge/7-revision-v1/', 0, 'revision', '', 0);
INSERT INTO `wp_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(960, 1, '2015-09-08 09:50:46', '2015-09-08 07:50:46', '[fullwidth background_color=\"\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"90px\" padding_bottom=\"0px\" padding_left=\"0px\" padding_right=\"0px\" hundred_percent=\"yes\" equal_height_columns=\"yes\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][one_half last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"http://localhost/assagaylodge/wp-content/uploads/2015/08/Tha-Lodge.jpg\" background_repeat=\"no-repeat\" background_position=\"center center\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" class=\"\" id=\"\"][/one_half][one_half last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"30px\" margin_top=\"\" margin_bottom=\"0px\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" class=\"special\" id=\"\"][fusion_text]\r\n<h1>5 BEDROOM FAMILY LODGE</h1>\r\n[/fusion_text][separator style_type=\"single\" top_margin=\"0\" bottom_margin=\"30\" sep_color=\"#000000\" border_size=\"\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"170px\" alignment=\"left\" class=\"separator-left\" id=\"\"][fusion_text]\r\n<h3>Self-Catering/Service Options/B&amp;B</h3>\r\n[/fusion_text][/one_half][/fullwidth][fullwidth background_color=\"\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"30px\" padding_bottom=\"60px\" padding_left=\"0px\" padding_right=\"0px\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][one_half last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][fusion_text]\r\n<p style=\"text-align: justify;\">The property boasts over 200 different species of birds and animals. The Lodge is situated on the 1000 Hills tourism route, on the edge of Hillcrest and is a perfect place from which one can launch to any one of the many fantastic destinations and game reserves in KwaZulu Natal, i.e. the Majestic Drakensberg Mountain Range, Shongweni Nature Reserve, Nagle Dam, Durban &amp; Beach Front. We are also the doorstep of one of KZN’s major horse riding venues namely, the Shongweni Horse Riding Club &amp; the Summerveld Horse Riding Academy, makes Assagay Lodge a perfect home away from home for the equestrian lovers. The peace &amp; tranquility will take you far away from the business of city life. Evenings are quiet and peaceful. This is a unique and memorable country experience.</p>\r\n[/fusion_text][/one_half][one_half last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][fusion_text]\r\n<p style=\"text-align: justify;\">We are a homely \'down to earth\' country guest lodge, set on a farm surrounded by acres of beautiful hills, forests, &amp; dams in the Madwala Conservancy of Assagay, where horses still have the right of way on all roads. Our five bedrooms have a rustic charm offering the comforts of modern day life.</p>\r\n<p style=\"text-align: justify;\">Assagay Forest Lodge is owner managed, built in 2005 the lodge provides 5 cozy bedrooms with a large spacious and comfortable homely lounge, which leads onto a large deck area. Set on a 6 acre property in the Assagay Conservancy our lodge is nestled around trees, bushes, and beautiful gardens and a stream, allowing visitors to meander and relax. Guests seeking a quite, relaxing, homely experience will find our lodge the perfect choice away from home. There is a kitchen available should you wish to muster up a snack or quick meal, however breakfast is available on request.</p>\r\n[/fusion_text][/one_half][/fullwidth][fullwidth background_color=\"#f0f0ed\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"60px\" padding_bottom=\"45px\" padding_left=\"0px\" padding_right=\"0px\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][fusion_text]\r\n<h1 style=\"text-align: center;\">Gallery</h1>\r\n[/fusion_text][separator style_type=\"single\" top_margin=\"\" bottom_margin=\"40\" sep_color=\"#000000\" border_size=\"\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"170px\" alignment=\"\" class=\"\" id=\"\"][one_sixth last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][/one_sixth][two_third last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][fusion_text]\r\n<h3 style=\"text-align: center;\">The Lodge is open, spacious, comfortable and homely.</h3>\r\n[/fusion_text][/two_third][one_sixth last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][/one_sixth][recent_works layout=\"grid\" picture_size=\"auto\" boxed_text=\"boxed\" filters=\"no\" columns=\"3\" column_spacing=\"12\" cat_slug=\"the-lodge\" exclude_cats=\"\" number_posts=\"9\" offset=\"\" excerpt_length=\"35\" strip_html=\"yes\" carousel_layout=\"title_on_rollover\" scroll_items=\"\" autoplay=\"no\" show_nav=\"yes\" mouse_scroll=\"no\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" class=\"\" id=\"\"][/recent_works][/fullwidth][fullwidth background_color=\"#ffffff\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"65px\" padding_bottom=\"65px\" padding_left=\"0px\" padding_right=\"0px\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][button link=\"http://localhost/assagaylodge/book-now/\" color=\"default\" size=\"xlarge\" type=\"3d\" shape=\"round\" target=\"_self\" title=\"\" gradient_colors=\"#f0f0ed|#f0f0ed\" gradient_hover_colors=\"#6666a4|#6666a4\" accent_color=\"#ffffff\" accent_hover_color=\"#ffffff\" bevel_color=\"\" border_width=\"0px\" icon=\"\" icon_position=\"left\" icon_divider=\"no\" modal=\"\" animation_type=\"0\" animation_direction=\"left\" animation_speed=\"1\" alignment=\"center\" class=\"\" id=\"\"]Make A Reservation Enquiry[/button][/fullwidth][fullwidth background_color=\"\" background_image=\"\" background_parallax=\"fixed\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"60px\" padding_bottom=\"35px\" padding_left=\"0px\" padding_right=\"0px\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][fusion_text]\r\n<h1 style=\"text-align: center;\">BEDROOMS</h1>\r\n[/fusion_text][separator style_type=\"single\" top_margin=\"\" bottom_margin=\"20\" sep_color=\"#000000\" border_size=\"\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"170px\" alignment=\"\" class=\"\" id=\"\"][one_sixth last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][/one_sixth][two_third last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][fusion_text]\r\n<h3 style=\"text-align: center;\">When it comes to our bedrooms we’re proud to say we’re different. We offer something a little more special.</h3>\r\nOur five bedrooms are all en-suite and equipped with either king size or queen size beds. The rooms have high ceilings, wall heaters &amp; ceiling fans. Beds all have electric blankets in Winter, 100% cotton percale sheets and thick hyper allergenic microfiber duvets and pillows.[/fusion_text][/two_third][one_sixth last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][/one_sixth][/fullwidth][fullwidth background_color=\"\" background_image=\"http://localhost/assagaylodge/wp-content/uploads/2015/01/DSC01516-1148-x-764.jpg\" background_parallax=\"fixed\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"center center\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"60\" padding_bottom=\"20\" padding_left=\"0\" padding_right=\"0\" hundred_percent=\"no\" equal_height_columns=\"yes\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][recent_works layout=\"grid\" picture_size=\"auto\" boxed_text=\"unboxed\" filters=\"no\" columns=\"3\" column_spacing=\"12\" cat_slug=\"bedrooms\" exclude_cats=\"\" number_posts=\"6\" offset=\"\" excerpt_length=\"35\" strip_html=\"yes\" carousel_layout=\"title_on_rollover\" scroll_items=\"\" autoplay=\"no\" show_nav=\"yes\" mouse_scroll=\"no\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" class=\"\" id=\"\"][/recent_works][/fullwidth][fullwidth background_color=\"#f0f0ed\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"20\" padding_bottom=\"20\" padding_left=\"0\" padding_right=\"0\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][fusion_text]\r\n<h1 style=\"text-align: center;\">GARDENS</h1>\r\n[/fusion_text][separator style_type=\"none\" top_margin=\"40\" bottom_margin=\"\" sep_color=\"\" border_size=\"\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"100%\" alignment=\"center\" class=\"\" id=\"\"][one_sixth last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][/one_sixth][two_third last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][fusion_text]\r\n<h3 style=\"text-align: center;\">Walk &amp; relax in our beautiful gardens</h3>\r\n[/fusion_text][/two_third][one_sixth last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][/one_sixth][separator style_type=\"none\" top_margin=\"40\" bottom_margin=\"\" sep_color=\"\" border_size=\"\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"100%\" alignment=\"center\" class=\"\" id=\"\"][recent_works layout=\"grid\" picture_size=\"auto\" boxed_text=\"boxed\" filters=\"no\" columns=\"3\" column_spacing=\"12\" cat_slug=\"gardens\" exclude_cats=\"\" number_posts=\"9\" offset=\"\" excerpt_length=\"35\" strip_html=\"yes\" carousel_layout=\"title_on_rollover\" scroll_items=\"\" autoplay=\"no\" show_nav=\"yes\" mouse_scroll=\"no\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" class=\"\" id=\"\"][/recent_works][/fullwidth]', 'Home', '', 'inherit', 'closed', 'closed', '', '7-revision-v1', '', '', '2015-09-08 09:50:46', '2015-09-08 07:50:46', '', 7, 'http://localhost/assagaylodge/7-revision-v1/', 0, 'revision', '', 0),
(961, 1, '2015-09-08 09:56:48', '2015-09-08 07:56:48', '[fullwidth background_color=\"\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"90px\" padding_bottom=\"0px\" padding_left=\"0px\" padding_right=\"0px\" hundred_percent=\"yes\" equal_height_columns=\"yes\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][one_half last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"http://localhost/assagaylodge/wp-content/uploads/2015/08/Tha-Lodge.jpg\" background_repeat=\"no-repeat\" background_position=\"center center\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" class=\"\" id=\"\"][/one_half][one_half last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"30px\" margin_top=\"\" margin_bottom=\"0px\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" class=\"special\" id=\"\"][fusion_text]\r\n<h1>5 BEDROOM FAMILY LODGE</h1>\r\n[/fusion_text][separator style_type=\"single\" top_margin=\"0\" bottom_margin=\"30\" sep_color=\"#000000\" border_size=\"\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"170px\" alignment=\"left\" class=\"separator-left\" id=\"\"][fusion_text]\r\n<h3>Self-Catering/Service Options/B&amp;B</h3>\r\n[/fusion_text][/one_half][/fullwidth][fullwidth background_color=\"\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"30px\" padding_bottom=\"60px\" padding_left=\"0px\" padding_right=\"0px\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][one_half last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][fusion_text]\r\n<p style=\"text-align: justify;\">The property boasts over 200 different species of birds and animals. The Lodge is situated on the 1000 Hills tourism route, on the edge of Hillcrest and is a perfect place from which one can launch to any one of the many fantastic destinations and game reserves in KwaZulu Natal, i.e. the Majestic Drakensberg Mountain Range, Shongweni Nature Reserve, Nagle Dam, Durban &amp; Beach Front. We are also the doorstep of one of KZN’s major horse riding venues namely, the Shongweni Horse Riding Club &amp; the Summerveld Horse Riding Academy, makes Assagay Lodge a perfect home away from home for the equestrian lovers. The peace &amp; tranquility will take you far away from the business of city life. Evenings are quiet and peaceful. This is a unique and memorable country experience.</p>\r\n[/fusion_text][/one_half][one_half last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][fusion_text]\r\n<p style=\"text-align: justify;\">We are a homely \'down to earth\' country guest lodge, set on a farm surrounded by acres of beautiful hills, forests, &amp; dams in the Madwala Conservancy of Assagay, where horses still have the right of way on all roads. Our five bedrooms have a rustic charm offering the comforts of modern day life.</p>\r\n<p style=\"text-align: justify;\">Assagay Forest Lodge is owner managed, built in 2005 the lodge provides 5 cozy bedrooms with a large spacious and comfortable homely lounge, which leads onto a large deck area. Set on a 6 acre property in the Assagay Conservancy our lodge is nestled around trees, bushes, and beautiful gardens and a stream, allowing visitors to meander and relax. Guests seeking a quite, relaxing, homely experience will find our lodge the perfect choice away from home. There is a kitchen available should you wish to muster up a snack or quick meal, however breakfast is available on request.</p>\r\n[/fusion_text][/one_half][/fullwidth][fullwidth background_color=\"#f0f0ed\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"60px\" padding_bottom=\"45px\" padding_left=\"0px\" padding_right=\"0px\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][fusion_text]\r\n<h1 style=\"text-align: center;\">Gallery</h1>\r\n[/fusion_text][separator style_type=\"single\" top_margin=\"\" bottom_margin=\"40\" sep_color=\"#000000\" border_size=\"\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"170px\" alignment=\"\" class=\"\" id=\"\"][one_sixth last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][/one_sixth][two_third last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][fusion_text]\r\n<h3 style=\"text-align: center;\">The Lodge is open, spacious, comfortable and homely.</h3>\r\n[/fusion_text][/two_third][one_sixth last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][/one_sixth][recent_works layout=\"grid\" picture_size=\"auto\" boxed_text=\"boxed\" filters=\"no\" columns=\"3\" column_spacing=\"12\" cat_slug=\"the-lodge\" exclude_cats=\"\" number_posts=\"9\" offset=\"\" excerpt_length=\"35\" strip_html=\"yes\" carousel_layout=\"title_on_rollover\" scroll_items=\"\" autoplay=\"no\" show_nav=\"yes\" mouse_scroll=\"no\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" class=\"\" id=\"\"][/recent_works][/fullwidth][fullwidth background_color=\"#ffffff\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"65px\" padding_bottom=\"65px\" padding_left=\"0px\" padding_right=\"0px\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][button link=\"http://localhost/assagaylodge/book-now/\" color=\"default\" size=\"xlarge\" type=\"3d\" shape=\"round\" target=\"_self\" title=\"\" gradient_colors=\"#f0f0ed|#f0f0ed\" gradient_hover_colors=\"#6666a4|#6666a4\" accent_color=\"#ffffff\" accent_hover_color=\"#ffffff\" bevel_color=\"\" border_width=\"0px\" icon=\"\" icon_position=\"left\" icon_divider=\"no\" modal=\"\" animation_type=\"0\" animation_direction=\"left\" animation_speed=\"1\" alignment=\"center\" class=\"\" id=\"\"]Make A Reservation Enquiry[/button][/fullwidth][fullwidth background_color=\"\" background_image=\"\" background_parallax=\"fixed\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"60px\" padding_bottom=\"35px\" padding_left=\"0px\" padding_right=\"0px\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][fusion_text]\r\n<h1 style=\"text-align: center;\">BEDROOMS</h1>\r\n[/fusion_text][separator style_type=\"single\" top_margin=\"\" bottom_margin=\"20\" sep_color=\"#000000\" border_size=\"\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"170px\" alignment=\"\" class=\"\" id=\"\"][one_sixth last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][/one_sixth][two_third last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][fusion_text]\r\n<h3 style=\"text-align: center;\">When it comes to our bedrooms we’re proud to say we’re different. We offer something a little more special.</h3>\r\n<h3 style=\"text-align: center;\">Our five bedrooms are all en-suite and equipped with either king size or queen size beds. Each room sleeps two guests. The rooms have high ceilings, wall heaters &amp; ceiling fans. Beds all have electric blankets in Winter, 100% cotton percale sheets and thick hyper allergenic microfiber duvets and pillows.</h3>\r\n[/fusion_text][/two_third][one_sixth last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][/one_sixth][/fullwidth][fullwidth background_color=\"\" background_image=\"http://localhost/assagaylodge/wp-content/uploads/2015/01/DSC01516-1148-x-764.jpg\" background_parallax=\"fixed\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"center center\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"60\" padding_bottom=\"20\" padding_left=\"0\" padding_right=\"0\" hundred_percent=\"no\" equal_height_columns=\"yes\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][recent_works layout=\"grid\" picture_size=\"auto\" boxed_text=\"unboxed\" filters=\"no\" columns=\"3\" column_spacing=\"12\" cat_slug=\"bedrooms\" exclude_cats=\"\" number_posts=\"6\" offset=\"\" excerpt_length=\"35\" strip_html=\"yes\" carousel_layout=\"title_on_rollover\" scroll_items=\"\" autoplay=\"no\" show_nav=\"yes\" mouse_scroll=\"no\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" class=\"\" id=\"\"][/recent_works][/fullwidth][fullwidth background_color=\"#f0f0ed\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"20\" padding_bottom=\"20\" padding_left=\"0\" padding_right=\"0\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][fusion_text]\r\n<h1 style=\"text-align: center;\">GARDENS</h1>\r\n[/fusion_text][separator style_type=\"none\" top_margin=\"40\" bottom_margin=\"\" sep_color=\"\" border_size=\"\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"100%\" alignment=\"center\" class=\"\" id=\"\"][one_sixth last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][/one_sixth][two_third last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][fusion_text]\r\n<h3 style=\"text-align: center;\">Walk &amp; relax in our beautiful gardens</h3>\r\n[/fusion_text][/two_third][one_sixth last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][/one_sixth][separator style_type=\"none\" top_margin=\"40\" bottom_margin=\"\" sep_color=\"\" border_size=\"\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"100%\" alignment=\"center\" class=\"\" id=\"\"][recent_works layout=\"grid\" picture_size=\"auto\" boxed_text=\"boxed\" filters=\"no\" columns=\"3\" column_spacing=\"12\" cat_slug=\"gardens\" exclude_cats=\"\" number_posts=\"9\" offset=\"\" excerpt_length=\"35\" strip_html=\"yes\" carousel_layout=\"title_on_rollover\" scroll_items=\"\" autoplay=\"no\" show_nav=\"yes\" mouse_scroll=\"no\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" class=\"\" id=\"\"][/recent_works][/fullwidth]', 'Home', '', 'inherit', 'closed', 'closed', '', '7-revision-v1', '', '', '2015-09-08 09:56:48', '2015-09-08 07:56:48', '', 7, 'http://localhost/assagaylodge/7-revision-v1/', 0, 'revision', '', 0),
(962, 1, '2015-09-08 10:01:43', '2015-09-08 08:01:43', '[fullwidth background_color=\"\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"90px\" padding_bottom=\"0px\" padding_left=\"0px\" padding_right=\"0px\" hundred_percent=\"yes\" equal_height_columns=\"yes\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][one_half last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"http://localhost/assagaylodge/wp-content/uploads/2015/08/Tha-Lodge.jpg\" background_repeat=\"no-repeat\" background_position=\"center center\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" class=\"\" id=\"\"][/one_half][one_half last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"30px\" margin_top=\"\" margin_bottom=\"0px\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" class=\"special\" id=\"\"][fusion_text]\r\n<h1>5 BEDROOM FAMILY LODGE</h1>\r\n[/fusion_text][separator style_type=\"single\" top_margin=\"0\" bottom_margin=\"30\" sep_color=\"#000000\" border_size=\"\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"170px\" alignment=\"left\" class=\"separator-left\" id=\"\"][fusion_text]\r\n<h3>Self-Catering/Service Options/B&amp;B</h3>\r\n[/fusion_text][/one_half][/fullwidth][fullwidth background_color=\"\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"30px\" padding_bottom=\"60px\" padding_left=\"0px\" padding_right=\"0px\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][one_half last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][fusion_text]\r\n<p style=\"text-align: justify;\">The property boasts over 200 different species of birds and animals. The Lodge is situated on the 1000 Hills tourism route, on the edge of Hillcrest and is a perfect place from which one can launch to any one of the many fantastic destinations and game reserves in KwaZulu Natal, i.e. the Majestic Drakensberg Mountain Range, Shongweni Nature Reserve, Nagle Dam, Durban &amp; Beach Front. We are also the doorstep of one of KZN’s major horse riding venues namely, the Shongweni Horse Riding Club &amp; the Summerveld Horse Riding Academy, makes Assagay Lodge a perfect home away from home for the equestrian lovers. The peace &amp; tranquility will take you far away from the business of city life. Evenings are quiet and peaceful. This is a unique and memorable country experience.</p>\r\n[/fusion_text][/one_half][one_half last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][fusion_text]\r\n<p style=\"text-align: justify;\">We are a homely \'down to earth\' country guest lodge, set on a farm surrounded by acres of beautiful hills, forests, &amp; dams in the Madwala Conservancy of Assagay, where horses still have the right of way on all roads. Our five bedrooms have a rustic charm offering the comforts of modern day life.</p>\r\n<p style=\"text-align: justify;\">Assagay Forest Lodge is owner managed, built in 2005 the lodge provides 5 cozy bedrooms with a large spacious and comfortable homely lounge, which leads onto a large deck area. Set on a 6 acre property in the Assagay Conservancy our lodge is nestled around trees, bushes, and beautiful gardens and a stream, allowing visitors to meander and relax. Guests seeking a quite, relaxing, homely experience will find our lodge the perfect choice away from home. There is a kitchen available should you wish to muster up a snack or quick meal, however breakfast is available on request.</p>\r\n[/fusion_text][/one_half][/fullwidth][fullwidth background_color=\"#f0f0ed\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"60px\" padding_bottom=\"45px\" padding_left=\"0px\" padding_right=\"0px\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][fusion_text]\r\n<h1 style=\"text-align: center;\">Gallery</h1>\r\n[/fusion_text][separator style_type=\"single\" top_margin=\"\" bottom_margin=\"40\" sep_color=\"#000000\" border_size=\"\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"170px\" alignment=\"\" class=\"\" id=\"\"][one_sixth last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][/one_sixth][two_third last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][fusion_text]\r\n<h3 style=\"text-align: center;\">The Lodge is open, spacious, comfortable and homely.</h3>\r\n[/fusion_text][/two_third][one_sixth last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][/one_sixth][recent_works layout=\"grid\" picture_size=\"auto\" boxed_text=\"boxed\" filters=\"no\" columns=\"3\" column_spacing=\"12\" cat_slug=\"the-lodge\" exclude_cats=\"\" number_posts=\"9\" offset=\"\" excerpt_length=\"35\" strip_html=\"yes\" carousel_layout=\"title_on_rollover\" scroll_items=\"\" autoplay=\"no\" show_nav=\"yes\" mouse_scroll=\"no\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" class=\"\" id=\"\"][/recent_works][/fullwidth][fullwidth background_color=\"\" background_image=\"\" background_parallax=\"fixed\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"60px\" padding_bottom=\"35px\" padding_left=\"0px\" padding_right=\"0px\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][fusion_text]\r\n<h1 style=\"text-align: center;\">BEDROOMS</h1>\r\n[/fusion_text][separator style_type=\"single\" top_margin=\"\" bottom_margin=\"20\" sep_color=\"#000000\" border_size=\"\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"170px\" alignment=\"\" class=\"\" id=\"\"][one_sixth last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][/one_sixth][two_third last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][fusion_text]\r\n<h3 style=\"text-align: justify;\">When it comes to our bedrooms we’re proud to say we’re different. We offer something a little more special.</h3>\r\n<h3 style=\"text-align: justify;\">Our five bedrooms are all en-suite and equipped with either king size or queen size beds. Each room sleeps two guests. The rooms have high ceilings, wall heaters &amp; ceiling fans. Beds all have electric blankets in Winter, 100% cotton percale sheets and thick hyper allergenic microfiber duvets and pillows.</h3>\r\n[/fusion_text][/two_third][one_sixth last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][/one_sixth][/fullwidth][fullwidth background_color=\"\" background_image=\"http://localhost/assagaylodge/wp-content/uploads/2015/01/DSC01516-1148-x-764.jpg\" background_parallax=\"fixed\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"center center\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"60\" padding_bottom=\"20\" padding_left=\"0\" padding_right=\"0\" hundred_percent=\"no\" equal_height_columns=\"yes\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][recent_works layout=\"grid\" picture_size=\"auto\" boxed_text=\"unboxed\" filters=\"no\" columns=\"3\" column_spacing=\"12\" cat_slug=\"bedrooms\" exclude_cats=\"\" number_posts=\"6\" offset=\"\" excerpt_length=\"35\" strip_html=\"yes\" carousel_layout=\"title_on_rollover\" scroll_items=\"\" autoplay=\"no\" show_nav=\"yes\" mouse_scroll=\"no\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" class=\"\" id=\"\"][/recent_works][/fullwidth][fullwidth background_color=\"#f0f0ed\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"20\" padding_bottom=\"20\" padding_left=\"0\" padding_right=\"0\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][fusion_text]\r\n<h1 style=\"text-align: center;\">GARDENS</h1>\r\n[/fusion_text][separator style_type=\"none\" top_margin=\"40\" bottom_margin=\"\" sep_color=\"\" border_size=\"\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"100%\" alignment=\"center\" class=\"\" id=\"\"][one_sixth last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][/one_sixth][two_third last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][fusion_text]\r\n<h3 style=\"text-align: center;\">Walk &amp; relax in our beautiful gardens.</h3>\r\n[/fusion_text][/two_third][one_sixth last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][/one_sixth][separator style_type=\"none\" top_margin=\"40\" bottom_margin=\"\" sep_color=\"\" border_size=\"\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"100%\" alignment=\"center\" class=\"\" id=\"\"][recent_works layout=\"grid\" picture_size=\"auto\" boxed_text=\"boxed\" filters=\"no\" columns=\"3\" column_spacing=\"12\" cat_slug=\"gardens\" exclude_cats=\"\" number_posts=\"9\" offset=\"\" excerpt_length=\"35\" strip_html=\"yes\" carousel_layout=\"title_on_rollover\" scroll_items=\"\" autoplay=\"no\" show_nav=\"yes\" mouse_scroll=\"no\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" class=\"\" id=\"\"][/recent_works][/fullwidth][fullwidth background_color=\"#ffffff\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"65px\" padding_bottom=\"65px\" padding_left=\"0px\" padding_right=\"0px\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][button link=\"http://localhost/assagaylodge/book-now/\" color=\"default\" size=\"xlarge\" type=\"3d\" shape=\"round\" target=\"_self\" title=\"\" gradient_colors=\"#f0f0ed|#f0f0ed\" gradient_hover_colors=\"#6666a4|#6666a4\" accent_color=\"#ffffff\" accent_hover_color=\"#ffffff\" bevel_color=\"\" border_width=\"0px\" icon=\"\" icon_position=\"left\" icon_divider=\"no\" modal=\"\" animation_type=\"0\" animation_direction=\"left\" animation_speed=\"1\" alignment=\"center\" class=\"\" id=\"\"]Make A Reservation Enquiry[/button][/fullwidth]', 'Home', '', 'inherit', 'closed', 'closed', '', '7-revision-v1', '', '', '2015-09-08 10:01:43', '2015-09-08 08:01:43', '', 7, 'http://localhost/assagaylodge/7-revision-v1/', 0, 'revision', '', 0);
INSERT INTO `wp_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(963, 1, '2015-09-08 10:03:21', '2015-09-08 08:03:21', '[fullwidth background_color=\"\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"90px\" padding_bottom=\"0px\" padding_left=\"0px\" padding_right=\"0px\" hundred_percent=\"yes\" equal_height_columns=\"yes\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][one_half last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"http://localhost/assagaylodge/wp-content/uploads/2015/08/Tha-Lodge.jpg\" background_repeat=\"no-repeat\" background_position=\"center center\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" class=\"\" id=\"\"][/one_half][one_half last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"30px\" margin_top=\"\" margin_bottom=\"0px\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" class=\"special\" id=\"\"][fusion_text]\r\n<h1>5 BEDROOM FAMILY LODGE</h1>\r\n[/fusion_text][separator style_type=\"single\" top_margin=\"0\" bottom_margin=\"30\" sep_color=\"#000000\" border_size=\"\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"170px\" alignment=\"left\" class=\"separator-left\" id=\"\"][fusion_text]\r\n<h3>Self-Catering/Service Options/B&amp;B</h3>\r\n[/fusion_text][/one_half][/fullwidth][fullwidth background_color=\"\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"30px\" padding_bottom=\"60px\" padding_left=\"0px\" padding_right=\"0px\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][one_half last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][fusion_text]\r\n<p style=\"text-align: justify;\">The property boasts over 200 different species of birds and animals. The Lodge is situated on the 1000 Hills tourism route, on the edge of Hillcrest and is a perfect place from which one can launch to any one of the many fantastic destinations and game reserves in KwaZulu Natal, i.e. the Majestic Drakensberg Mountain Range, Shongweni Nature Reserve, Nagle Dam, Durban &amp; Beach Front. We are also the doorstep of one of KZN’s major horse riding venues namely, the Shongweni Horse Riding Club &amp; the Summerveld Horse Riding Academy, makes Assagay Lodge a perfect home away from home for the equestrian lovers. The peace &amp; tranquility will take you far away from the business of city life. Evenings are quiet and peaceful. This is a unique and memorable country experience.</p>\r\n[/fusion_text][/one_half][one_half last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][fusion_text]\r\n<p style=\"text-align: justify;\">We are a homely \'down to earth\' country guest lodge, set on a farm surrounded by acres of beautiful hills, forests, &amp; dams in the Madwala Conservancy of Assagay, where horses still have the right of way on all roads. Our five bedrooms have a rustic charm offering the comforts of modern day life.</p>\r\n<p style=\"text-align: justify;\">Assagay Forest Lodge is owner managed, built in 2005 the lodge provides 5 cozy bedrooms with a large spacious and comfortable homely lounge, which leads onto a large deck area. Set on a 6 acre property in the Assagay Conservancy our lodge is nestled around trees, bushes, and beautiful gardens and a stream, allowing visitors to meander and relax. Guests seeking a quite, relaxing, homely experience will find our lodge the perfect choice away from home. There is a kitchen available should you wish to muster up a snack or quick meal, however breakfast is available on request.</p>\r\n[/fusion_text][/one_half][/fullwidth][fullwidth background_color=\"#f0f0ed\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"60px\" padding_bottom=\"45px\" padding_left=\"0px\" padding_right=\"0px\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][fusion_text]\r\n<h1 style=\"text-align: center;\">Gallery</h1>\r\n[/fusion_text][separator style_type=\"single\" top_margin=\"\" bottom_margin=\"40\" sep_color=\"#000000\" border_size=\"\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"170px\" alignment=\"\" class=\"\" id=\"\"][one_sixth last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][/one_sixth][two_third last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][fusion_text]\r\n<h3 style=\"text-align: center;\">The Lodge is open, spacious, comfortable and homely.</h3>\r\n[/fusion_text][/two_third][one_sixth last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][/one_sixth][recent_works layout=\"grid\" picture_size=\"auto\" boxed_text=\"boxed\" filters=\"no\" columns=\"3\" column_spacing=\"12\" cat_slug=\"the-lodge\" exclude_cats=\"\" number_posts=\"9\" offset=\"\" excerpt_length=\"35\" strip_html=\"yes\" carousel_layout=\"title_on_rollover\" scroll_items=\"\" autoplay=\"no\" show_nav=\"yes\" mouse_scroll=\"no\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" class=\"\" id=\"\"][/recent_works][/fullwidth][fullwidth background_color=\"\" background_image=\"\" background_parallax=\"fixed\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"60px\" padding_bottom=\"35px\" padding_left=\"0px\" padding_right=\"0px\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][fusion_text]\r\n<h1 style=\"text-align: center;\">BEDROOMS</h1>\r\n[/fusion_text][separator style_type=\"single\" top_margin=\"\" bottom_margin=\"20\" sep_color=\"#000000\" border_size=\"\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"170px\" alignment=\"\" class=\"\" id=\"\"][one_sixth last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][/one_sixth][two_third last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][fusion_text]\r\n<h3 style=\"text-align: justify;\">When it comes to our bedrooms we’re proud to say we’re different. We offer something a little more special.</h3>\r\n<h3 style=\"text-align: justify;\">Our five bedrooms are all en-suite and equipped with either king size or queen size beds. Each room sleeps two guests. The rooms have high ceilings, wall heaters &amp; ceiling fans. Beds all have electric blankets in Winter, 100% cotton percale sheets and thick hyper allergenic microfiber duvets and pillows.</h3>\r\n[/fusion_text][/two_third][one_sixth last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][/one_sixth][/fullwidth][fullwidth background_color=\"\" background_image=\"http://localhost/assagaylodge/wp-content/uploads/2015/01/DSC01516-1148-x-764.jpg\" background_parallax=\"fixed\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"center center\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"60\" padding_bottom=\"20\" padding_left=\"0\" padding_right=\"0\" hundred_percent=\"no\" equal_height_columns=\"yes\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][recent_works layout=\"grid\" picture_size=\"auto\" boxed_text=\"unboxed\" filters=\"no\" columns=\"3\" column_spacing=\"12\" cat_slug=\"bedrooms\" exclude_cats=\"\" number_posts=\"6\" offset=\"\" excerpt_length=\"35\" strip_html=\"yes\" carousel_layout=\"title_on_rollover\" scroll_items=\"\" autoplay=\"no\" show_nav=\"yes\" mouse_scroll=\"no\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" class=\"\" id=\"\"][/recent_works][/fullwidth][fullwidth background_color=\"#f0f0ed\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"20\" padding_bottom=\"20\" padding_left=\"0\" padding_right=\"0\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][fusion_text]\r\n<h1 style=\"text-align: center;\">GARDENS</h1>\r\n[/fusion_text][separator style_type=\"none\" top_margin=\"40\" bottom_margin=\"\" sep_color=\"\" border_size=\"\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"100%\" alignment=\"center\" class=\"\" id=\"\"][one_sixth last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][/one_sixth][two_third last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][fusion_text]\r\n<h3 style=\"text-align: center;\">Walk &amp; relax in our beautiful gardens.</h3>\r\n[/fusion_text][/two_third][one_sixth last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][/one_sixth][recent_works layout=\"grid\" picture_size=\"auto\" boxed_text=\"boxed\" filters=\"no\" columns=\"3\" column_spacing=\"12\" cat_slug=\"gardens\" exclude_cats=\"\" number_posts=\"9\" offset=\"\" excerpt_length=\"35\" strip_html=\"yes\" carousel_layout=\"title_on_rollover\" scroll_items=\"\" autoplay=\"no\" show_nav=\"yes\" mouse_scroll=\"no\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" class=\"\" id=\"\"][/recent_works][/fullwidth][fullwidth background_color=\"#ffffff\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"65px\" padding_bottom=\"65px\" padding_left=\"0px\" padding_right=\"0px\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][button link=\"http://localhost/assagaylodge/book-now/\" color=\"default\" size=\"xlarge\" type=\"3d\" shape=\"round\" target=\"_self\" title=\"\" gradient_colors=\"#f0f0ed|#f0f0ed\" gradient_hover_colors=\"#6666a4|#6666a4\" accent_color=\"#ffffff\" accent_hover_color=\"#ffffff\" bevel_color=\"\" border_width=\"0px\" icon=\"\" icon_position=\"left\" icon_divider=\"no\" modal=\"\" animation_type=\"0\" animation_direction=\"left\" animation_speed=\"1\" alignment=\"center\" class=\"\" id=\"\"]Make A Reservation Enquiry[/button][/fullwidth]', 'Home', '', 'inherit', 'closed', 'closed', '', '7-revision-v1', '', '', '2015-09-08 10:03:21', '2015-09-08 08:03:21', '', 7, 'http://localhost/assagaylodge/7-revision-v1/', 0, 'revision', '', 0),
(965, 1, '2015-09-08 10:29:41', '2015-09-08 08:29:41', '', 'LOGO', '', 'inherit', 'open', 'closed', '', 'logo', '', '', '2015-09-08 10:29:41', '2015-09-08 08:29:41', '', 0, 'http://localhost/assagaylodge/wp-content/uploads/2015/09/LOGO.png', 0, 'attachment', 'image/png', 0),
(966, 1, '2015-09-08 10:29:47', '2015-09-08 08:29:47', '', 'SMALL-LOGO', '', 'inherit', 'open', 'closed', '', 'small-logo-2', '', '', '2015-09-08 10:29:47', '2015-09-08 08:29:47', '', 0, 'http://localhost/assagaylodge/wp-content/uploads/2015/09/SMALL-LOGO.png', 0, 'attachment', 'image/png', 0),
(968, 1, '2015-09-08 10:49:32', '2015-09-08 08:49:32', '[fullwidth background_color=\"\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"90px\" padding_bottom=\"0px\" padding_left=\"0px\" padding_right=\"0px\" hundred_percent=\"yes\" equal_height_columns=\"yes\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][one_half last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"http://localhost/assagaylodge/wp-content/uploads/2015/08/Tha-Lodge.jpg\" background_repeat=\"no-repeat\" background_position=\"center center\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" class=\"\" id=\"\"][/one_half][one_half last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"30px\" margin_top=\"\" margin_bottom=\"0px\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" class=\"special\" id=\"\"][fusion_text]\r\n<h1>5 BEDROOM FAMILY LODGE</h1>\r\n[/fusion_text][separator style_type=\"single\" top_margin=\"0\" bottom_margin=\"30\" sep_color=\"#000000\" border_size=\"\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"170px\" alignment=\"left\" class=\"separator-left\" id=\"\"][fusion_text]\r\n<h3>Self-Catering/Service Options/B&amp;B</h3>\r\n[modal_text_link name=\"2015 Rates\" class=\"\" id=\"\"]SELF CATERING PER NIGHT R650 per room (Single) R990 per room (Sharing - Sleeps 2) R3000 per lodge (Max 10 guests) [/modal_text_link][/fusion_text][/one_half][/fullwidth][fullwidth background_color=\"\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"30px\" padding_bottom=\"60px\" padding_left=\"0px\" padding_right=\"0px\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][one_half last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][fusion_text]\r\n<p style=\"text-align: justify;\">The property boasts over 200 different species of birds and animals. The Lodge is situated on the 1000 Hills tourism route, on the edge of Hillcrest and is a perfect place from which one can launch to any one of the many fantastic destinations and game reserves in KwaZulu Natal, i.e. the Majestic Drakensberg Mountain Range, Shongweni Nature Reserve, Nagle Dam, Durban &amp; Beach Front. We are also the doorstep of one of KZN’s major horse riding venues namely, the Shongweni Horse Riding Club &amp; the Summerveld Horse Riding Academy, makes Assagay Lodge a perfect home away from home for the equestrian lovers. The peace &amp; tranquility will take you far away from the business of city life. Evenings are quiet and peaceful. This is a unique and memorable country experience.</p>\r\n[/fusion_text][/one_half][one_half last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][fusion_text]\r\n<p style=\"text-align: justify;\">We are a homely \'down to earth\' country guest lodge, set on a farm surrounded by acres of beautiful hills, forests, &amp; dams in the Madwala Conservancy of Assagay, where horses still have the right of way on all roads. Our five bedrooms have a rustic charm offering the comforts of modern day life.</p>\r\n<p style=\"text-align: justify;\">Assagay Forest Lodge is owner managed, built in 2005 the lodge provides 5 cozy bedrooms with a large spacious and comfortable homely lounge, which leads onto a large deck area. Set on a 6 acre property in the Assagay Conservancy our lodge is nestled around trees, bushes, and beautiful gardens and a stream, allowing visitors to meander and relax. Guests seeking a quite, relaxing, homely experience will find our lodge the perfect choice away from home. There is a kitchen available should you wish to muster up a snack or quick meal, however breakfast is available on request.</p>\r\n[/fusion_text][/one_half][/fullwidth][fullwidth background_color=\"#f0f0ed\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"60px\" padding_bottom=\"45px\" padding_left=\"0px\" padding_right=\"0px\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][fusion_text]\r\n<h1 style=\"text-align: center;\">Gallery</h1>\r\n[/fusion_text][separator style_type=\"single\" top_margin=\"\" bottom_margin=\"40\" sep_color=\"#000000\" border_size=\"\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"170px\" alignment=\"\" class=\"\" id=\"\"][one_sixth last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][/one_sixth][two_third last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][fusion_text]\r\n<h3 style=\"text-align: center;\">The Lodge is open, spacious, comfortable and homely.</h3>\r\n[/fusion_text][/two_third][one_sixth last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][/one_sixth][recent_works layout=\"grid\" picture_size=\"auto\" boxed_text=\"boxed\" filters=\"no\" columns=\"3\" column_spacing=\"12\" cat_slug=\"the-lodge\" exclude_cats=\"\" number_posts=\"9\" offset=\"\" excerpt_length=\"35\" strip_html=\"yes\" carousel_layout=\"title_on_rollover\" scroll_items=\"\" autoplay=\"no\" show_nav=\"yes\" mouse_scroll=\"no\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" class=\"\" id=\"\"][/recent_works][/fullwidth][fullwidth background_color=\"\" background_image=\"\" background_parallax=\"fixed\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"60px\" padding_bottom=\"35px\" padding_left=\"0px\" padding_right=\"0px\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][fusion_text]\r\n<h1 style=\"text-align: center;\">BEDROOMS</h1>\r\n[/fusion_text][separator style_type=\"single\" top_margin=\"\" bottom_margin=\"20\" sep_color=\"#000000\" border_size=\"\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"170px\" alignment=\"\" class=\"\" id=\"\"][one_sixth last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][/one_sixth][two_third last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][fusion_text]\r\n<h3 style=\"text-align: justify;\">When it comes to our bedrooms we’re proud to say we’re different. We offer something a little more special.</h3>\r\n<h3 style=\"text-align: justify;\">Our five bedrooms are all en-suite and equipped with either king size or queen size beds. Each room sleeps two guests. The rooms have high ceilings, wall heaters &amp; ceiling fans. Beds all have electric blankets in Winter, 100% cotton percale sheets and thick hyper allergenic microfiber duvets and pillows.</h3>\r\n[/fusion_text][/two_third][one_sixth last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][/one_sixth][/fullwidth][fullwidth background_color=\"\" background_image=\"http://localhost/assagaylodge/wp-content/uploads/2015/01/DSC01516-1148-x-764.jpg\" background_parallax=\"fixed\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"center center\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"60\" padding_bottom=\"20\" padding_left=\"0\" padding_right=\"0\" hundred_percent=\"no\" equal_height_columns=\"yes\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][recent_works layout=\"grid\" picture_size=\"auto\" boxed_text=\"unboxed\" filters=\"no\" columns=\"3\" column_spacing=\"12\" cat_slug=\"bedrooms\" exclude_cats=\"\" number_posts=\"6\" offset=\"\" excerpt_length=\"35\" strip_html=\"yes\" carousel_layout=\"title_on_rollover\" scroll_items=\"\" autoplay=\"no\" show_nav=\"yes\" mouse_scroll=\"no\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" class=\"\" id=\"\"][/recent_works][/fullwidth][fullwidth background_color=\"#f0f0ed\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"20\" padding_bottom=\"20\" padding_left=\"0\" padding_right=\"0\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][fusion_text]\r\n<h1 style=\"text-align: center;\">GARDENS</h1>\r\n[/fusion_text][separator style_type=\"none\" top_margin=\"40\" bottom_margin=\"\" sep_color=\"\" border_size=\"\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"100%\" alignment=\"center\" class=\"\" id=\"\"][one_sixth last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][/one_sixth][two_third last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][fusion_text]\r\n<h3 style=\"text-align: center;\">Walk &amp; relax in our beautiful gardens.</h3>\r\n[/fusion_text][/two_third][one_sixth last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][/one_sixth][recent_works layout=\"grid\" picture_size=\"auto\" boxed_text=\"boxed\" filters=\"no\" columns=\"3\" column_spacing=\"12\" cat_slug=\"gardens\" exclude_cats=\"\" number_posts=\"9\" offset=\"\" excerpt_length=\"35\" strip_html=\"yes\" carousel_layout=\"title_on_rollover\" scroll_items=\"\" autoplay=\"no\" show_nav=\"yes\" mouse_scroll=\"no\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" class=\"\" id=\"\"][/recent_works][/fullwidth][fullwidth background_color=\"#ffffff\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"65px\" padding_bottom=\"65px\" padding_left=\"0px\" padding_right=\"0px\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][button link=\"http://localhost/assagaylodge/book-now/\" color=\"default\" size=\"xlarge\" type=\"3d\" shape=\"round\" target=\"_self\" title=\"\" gradient_colors=\"#f0f0ed|#f0f0ed\" gradient_hover_colors=\"#6666a4|#6666a4\" accent_color=\"#ffffff\" accent_hover_color=\"#ffffff\" bevel_color=\"\" border_width=\"0px\" icon=\"\" icon_position=\"left\" icon_divider=\"no\" modal=\"\" animation_type=\"0\" animation_direction=\"left\" animation_speed=\"1\" alignment=\"center\" class=\"\" id=\"\"]Make A Reservation Enquiry[/button][/fullwidth]', 'Home', '', 'inherit', 'closed', 'closed', '', '7-revision-v1', '', '', '2015-09-08 10:49:32', '2015-09-08 08:49:32', '', 7, 'http://localhost/assagaylodge/7-revision-v1/', 0, 'revision', '', 0),
(969, 1, '2015-09-08 10:53:39', '2015-09-08 08:53:39', '[fullwidth background_color=\"\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"90px\" padding_bottom=\"0px\" padding_left=\"0px\" padding_right=\"0px\" hundred_percent=\"yes\" equal_height_columns=\"yes\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][one_half last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"http://localhost/assagaylodge/wp-content/uploads/2015/08/Tha-Lodge.jpg\" background_repeat=\"no-repeat\" background_position=\"center center\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" class=\"\" id=\"\"][/one_half][one_half last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"30px\" margin_top=\"\" margin_bottom=\"0px\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" class=\"special\" id=\"\"][fusion_text]\r\n<h1>5 BEDROOM FAMILY LODGE</h1>\r\n[/fusion_text][separator style_type=\"single\" top_margin=\"0\" bottom_margin=\"30\" sep_color=\"#000000\" border_size=\"\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"170px\" alignment=\"left\" class=\"separator-left\" id=\"\"][fusion_text]\r\n<h3>Self-Catering/Service Options/B&amp;B</h3>\r\n[modal_text_link name=\"2015 Rates\" class=\"\" id=\"\"]SELF CATERING PER NIGHT R650 per room (Single) R990 per room (Sharing - Sleeps 2) R3000 per lodge (Max 10 guests) [/modal_text_link]\r\n\r\n[modal name=\"2015 Rates\" title=\"2015 Rates\" size=\"small\" background=\"\" border_color=\"\" show_footer=\"yes\" class=\"\" id=\"\"]SELF CATERING PER NIGHT R650 per room (Single) R990 per room (Sharing - Sleeps 2) R3000 per lodge (Max 10 guests)[/modal]\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n[/fusion_text][/one_half][/fullwidth][fullwidth background_color=\"\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"30px\" padding_bottom=\"60px\" padding_left=\"0px\" padding_right=\"0px\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][one_half last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][fusion_text]\r\n<p style=\"text-align: justify;\">The property boasts over 200 different species of birds and animals. The Lodge is situated on the 1000 Hills tourism route, on the edge of Hillcrest and is a perfect place from which one can launch to any one of the many fantastic destinations and game reserves in KwaZulu Natal, i.e. the Majestic Drakensberg Mountain Range, Shongweni Nature Reserve, Nagle Dam, Durban &amp; Beach Front. We are also the doorstep of one of KZN’s major horse riding venues namely, the Shongweni Horse Riding Club &amp; the Summerveld Horse Riding Academy, makes Assagay Lodge a perfect home away from home for the equestrian lovers. The peace &amp; tranquility will take you far away from the business of city life. Evenings are quiet and peaceful. This is a unique and memorable country experience.</p>\r\n[/fusion_text][/one_half][one_half last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][fusion_text]\r\n<p style=\"text-align: justify;\">We are a homely \'down to earth\' country guest lodge, set on a farm surrounded by acres of beautiful hills, forests, &amp; dams in the Madwala Conservancy of Assagay, where horses still have the right of way on all roads. Our five bedrooms have a rustic charm offering the comforts of modern day life.</p>\r\n<p style=\"text-align: justify;\">Assagay Forest Lodge is owner managed, built in 2005 the lodge provides 5 cozy bedrooms with a large spacious and comfortable homely lounge, which leads onto a large deck area. Set on a 6 acre property in the Assagay Conservancy our lodge is nestled around trees, bushes, and beautiful gardens and a stream, allowing visitors to meander and relax. Guests seeking a quite, relaxing, homely experience will find our lodge the perfect choice away from home. There is a kitchen available should you wish to muster up a snack or quick meal, however breakfast is available on request.</p>\r\n[/fusion_text][/one_half][/fullwidth][fullwidth background_color=\"#f0f0ed\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"60px\" padding_bottom=\"45px\" padding_left=\"0px\" padding_right=\"0px\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][fusion_text]\r\n<h1 style=\"text-align: center;\">Gallery</h1>\r\n[/fusion_text][separator style_type=\"single\" top_margin=\"\" bottom_margin=\"40\" sep_color=\"#000000\" border_size=\"\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"170px\" alignment=\"\" class=\"\" id=\"\"][one_sixth last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][/one_sixth][two_third last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][fusion_text]\r\n<h3 style=\"text-align: center;\">The Lodge is open, spacious, comfortable and homely.</h3>\r\n[/fusion_text][/two_third][one_sixth last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][/one_sixth][recent_works layout=\"grid\" picture_size=\"auto\" boxed_text=\"boxed\" filters=\"no\" columns=\"3\" column_spacing=\"12\" cat_slug=\"the-lodge\" exclude_cats=\"\" number_posts=\"9\" offset=\"\" excerpt_length=\"35\" strip_html=\"yes\" carousel_layout=\"title_on_rollover\" scroll_items=\"\" autoplay=\"no\" show_nav=\"yes\" mouse_scroll=\"no\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" class=\"\" id=\"\"][/recent_works][/fullwidth][fullwidth background_color=\"\" background_image=\"\" background_parallax=\"fixed\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"60px\" padding_bottom=\"35px\" padding_left=\"0px\" padding_right=\"0px\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][fusion_text]\r\n<h1 style=\"text-align: center;\">BEDROOMS</h1>\r\n[/fusion_text][separator style_type=\"single\" top_margin=\"\" bottom_margin=\"20\" sep_color=\"#000000\" border_size=\"\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"170px\" alignment=\"\" class=\"\" id=\"\"][one_sixth last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][/one_sixth][two_third last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][fusion_text]\r\n<h3 style=\"text-align: justify;\">When it comes to our bedrooms we’re proud to say we’re different. We offer something a little more special.</h3>\r\n<h3 style=\"text-align: justify;\">Our five bedrooms are all en-suite and equipped with either king size or queen size beds. Each room sleeps two guests. The rooms have high ceilings, wall heaters &amp; ceiling fans. Beds all have electric blankets in Winter, 100% cotton percale sheets and thick hyper allergenic microfiber duvets and pillows.</h3>\r\n[/fusion_text][/two_third][one_sixth last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][/one_sixth][/fullwidth][fullwidth background_color=\"\" background_image=\"http://localhost/assagaylodge/wp-content/uploads/2015/01/DSC01516-1148-x-764.jpg\" background_parallax=\"fixed\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"center center\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"60\" padding_bottom=\"20\" padding_left=\"0\" padding_right=\"0\" hundred_percent=\"no\" equal_height_columns=\"yes\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][recent_works layout=\"grid\" picture_size=\"auto\" boxed_text=\"unboxed\" filters=\"no\" columns=\"3\" column_spacing=\"12\" cat_slug=\"bedrooms\" exclude_cats=\"\" number_posts=\"6\" offset=\"\" excerpt_length=\"35\" strip_html=\"yes\" carousel_layout=\"title_on_rollover\" scroll_items=\"\" autoplay=\"no\" show_nav=\"yes\" mouse_scroll=\"no\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" class=\"\" id=\"\"][/recent_works][/fullwidth][fullwidth background_color=\"#f0f0ed\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"20\" padding_bottom=\"20\" padding_left=\"0\" padding_right=\"0\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][fusion_text]\r\n<h1 style=\"text-align: center;\">GARDENS</h1>\r\n[/fusion_text][separator style_type=\"none\" top_margin=\"40\" bottom_margin=\"\" sep_color=\"\" border_size=\"\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"100%\" alignment=\"center\" class=\"\" id=\"\"][one_sixth last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][/one_sixth][two_third last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][fusion_text]\r\n<h3 style=\"text-align: center;\">Walk &amp; relax in our beautiful gardens.</h3>\r\n[/fusion_text][/two_third][one_sixth last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][/one_sixth][recent_works layout=\"grid\" picture_size=\"auto\" boxed_text=\"boxed\" filters=\"no\" columns=\"3\" column_spacing=\"12\" cat_slug=\"gardens\" exclude_cats=\"\" number_posts=\"9\" offset=\"\" excerpt_length=\"35\" strip_html=\"yes\" carousel_layout=\"title_on_rollover\" scroll_items=\"\" autoplay=\"no\" show_nav=\"yes\" mouse_scroll=\"no\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" class=\"\" id=\"\"][/recent_works][/fullwidth][fullwidth background_color=\"#ffffff\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"65px\" padding_bottom=\"65px\" padding_left=\"0px\" padding_right=\"0px\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][button link=\"http://localhost/assagaylodge/book-now/\" color=\"default\" size=\"xlarge\" type=\"3d\" shape=\"round\" target=\"_self\" title=\"\" gradient_colors=\"#f0f0ed|#f0f0ed\" gradient_hover_colors=\"#6666a4|#6666a4\" accent_color=\"#ffffff\" accent_hover_color=\"#ffffff\" bevel_color=\"\" border_width=\"0px\" icon=\"\" icon_position=\"left\" icon_divider=\"no\" modal=\"\" animation_type=\"0\" animation_direction=\"left\" animation_speed=\"1\" alignment=\"center\" class=\"\" id=\"\"]Make A Reservation Enquiry[/button][/fullwidth]', 'Home', '', 'inherit', 'closed', 'closed', '', '7-revision-v1', '', '', '2015-09-08 10:53:39', '2015-09-08 08:53:39', '', 7, 'http://localhost/assagaylodge/7-revision-v1/', 0, 'revision', '', 0);
INSERT INTO `wp_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(970, 1, '2015-09-08 10:59:19', '2015-09-08 08:59:19', '[fullwidth background_color=\"\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"90px\" padding_bottom=\"0px\" padding_left=\"0px\" padding_right=\"0px\" hundred_percent=\"yes\" equal_height_columns=\"yes\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][one_half last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"http://localhost/assagaylodge/wp-content/uploads/2015/08/Tha-Lodge.jpg\" background_repeat=\"no-repeat\" background_position=\"center center\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" class=\"\" id=\"\"][/one_half][one_half last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"30px\" margin_top=\"\" margin_bottom=\"0px\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" class=\"special\" id=\"\"][fusion_text]\r\n<h1>5 BEDROOM FAMILY LODGE</h1>\r\n[/fusion_text][separator style_type=\"single\" top_margin=\"0\" bottom_margin=\"30\" sep_color=\"#000000\" border_size=\"\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"170px\" alignment=\"left\" class=\"separator-left\" id=\"\"][fusion_text]\r\n<h3>Self-Catering/Service Options/B&amp;B</h3>\r\n[modal name=\"2015 Rates\" title=\"2015 Rates\" size=\"small\" background=\"\" border_color=\"\" show_footer=\"yes\" class=\"\" id=\"\"]SELF CATERING PER NIGHT R650 per room (Single) R990 per room (Sharing - Sleeps 2) R3000 per lodge (Max 10 guests)[/modal]\r\n\r\n&nbsp;\r\n\r\n[/fusion_text][/one_half][/fullwidth][fullwidth background_color=\"\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"30px\" padding_bottom=\"60px\" padding_left=\"0px\" padding_right=\"0px\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][one_half last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][fusion_text]\r\n<p style=\"text-align: justify;\">The property boasts over 200 different species of birds and animals. The Lodge is situated on the 1000 Hills tourism route, on the edge of Hillcrest and is a perfect place from which one can launch to any one of the many fantastic destinations and game reserves in KwaZulu Natal, i.e. the Majestic Drakensberg Mountain Range, Shongweni Nature Reserve, Nagle Dam, Durban &amp; Beach Front. We are also the doorstep of one of KZN’s major horse riding venues namely, the Shongweni Horse Riding Club &amp; the Summerveld Horse Riding Academy, makes Assagay Lodge a perfect home away from home for the equestrian lovers. The peace &amp; tranquility will take you far away from the business of city life. Evenings are quiet and peaceful. This is a unique and memorable country experience.</p>\r\n[/fusion_text][/one_half][one_half last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][fusion_text]\r\n<p style=\"text-align: justify;\">We are a homely \'down to earth\' country guest lodge, set on a farm surrounded by acres of beautiful hills, forests, &amp; dams in the Madwala Conservancy of Assagay, where horses still have the right of way on all roads. Our five bedrooms have a rustic charm offering the comforts of modern day life.</p>\r\n<p style=\"text-align: justify;\">Assagay Forest Lodge is owner managed, built in 2005 the lodge provides 5 cozy bedrooms with a large spacious and comfortable homely lounge, which leads onto a large deck area. Set on a 6 acre property in the Assagay Conservancy our lodge is nestled around trees, bushes, and beautiful gardens and a stream, allowing visitors to meander and relax. Guests seeking a quite, relaxing, homely experience will find our lodge the perfect choice away from home. There is a kitchen available should you wish to muster up a snack or quick meal, however breakfast is available on request.</p>\r\n[/fusion_text][/one_half][/fullwidth][fullwidth background_color=\"#f0f0ed\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"60px\" padding_bottom=\"45px\" padding_left=\"0px\" padding_right=\"0px\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][fusion_text]\r\n<h1 style=\"text-align: center;\">Gallery</h1>\r\n[/fusion_text][separator style_type=\"single\" top_margin=\"\" bottom_margin=\"40\" sep_color=\"#000000\" border_size=\"\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"170px\" alignment=\"\" class=\"\" id=\"\"][one_sixth last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][/one_sixth][two_third last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][fusion_text]\r\n<h3 style=\"text-align: center;\">The Lodge is open, spacious, comfortable and homely.</h3>\r\n[/fusion_text][/two_third][one_sixth last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][/one_sixth][recent_works layout=\"grid\" picture_size=\"auto\" boxed_text=\"boxed\" filters=\"no\" columns=\"3\" column_spacing=\"12\" cat_slug=\"the-lodge\" exclude_cats=\"\" number_posts=\"9\" offset=\"\" excerpt_length=\"35\" strip_html=\"yes\" carousel_layout=\"title_on_rollover\" scroll_items=\"\" autoplay=\"no\" show_nav=\"yes\" mouse_scroll=\"no\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" class=\"\" id=\"\"][/recent_works][/fullwidth][fullwidth background_color=\"\" background_image=\"\" background_parallax=\"fixed\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"60px\" padding_bottom=\"35px\" padding_left=\"0px\" padding_right=\"0px\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][fusion_text]\r\n<h1 style=\"text-align: center;\">BEDROOMS</h1>\r\n[/fusion_text][separator style_type=\"single\" top_margin=\"\" bottom_margin=\"20\" sep_color=\"#000000\" border_size=\"\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"170px\" alignment=\"\" class=\"\" id=\"\"][one_sixth last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][/one_sixth][two_third last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][fusion_text]\r\n<h3 style=\"text-align: justify;\">When it comes to our bedrooms we’re proud to say we’re different. We offer something a little more special.</h3>\r\n<h3 style=\"text-align: justify;\">Our five bedrooms are all en-suite and equipped with either king size or queen size beds. Each room sleeps two guests. The rooms have high ceilings, wall heaters &amp; ceiling fans. Beds all have electric blankets in Winter, 100% cotton percale sheets and thick hyper allergenic microfiber duvets and pillows.</h3>\r\n[/fusion_text][/two_third][one_sixth last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][/one_sixth][/fullwidth][fullwidth background_color=\"\" background_image=\"http://localhost/assagaylodge/wp-content/uploads/2015/01/DSC01516-1148-x-764.jpg\" background_parallax=\"fixed\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"center center\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"60\" padding_bottom=\"20\" padding_left=\"0\" padding_right=\"0\" hundred_percent=\"no\" equal_height_columns=\"yes\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][recent_works layout=\"grid\" picture_size=\"auto\" boxed_text=\"unboxed\" filters=\"no\" columns=\"3\" column_spacing=\"12\" cat_slug=\"bedrooms\" exclude_cats=\"\" number_posts=\"6\" offset=\"\" excerpt_length=\"35\" strip_html=\"yes\" carousel_layout=\"title_on_rollover\" scroll_items=\"\" autoplay=\"no\" show_nav=\"yes\" mouse_scroll=\"no\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" class=\"\" id=\"\"][/recent_works][/fullwidth][fullwidth background_color=\"#f0f0ed\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"20\" padding_bottom=\"20\" padding_left=\"0\" padding_right=\"0\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][fusion_text]\r\n<h1 style=\"text-align: center;\">GARDENS</h1>\r\n[/fusion_text][separator style_type=\"none\" top_margin=\"40\" bottom_margin=\"\" sep_color=\"\" border_size=\"\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"100%\" alignment=\"center\" class=\"\" id=\"\"][one_sixth last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][/one_sixth][two_third last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][fusion_text]\r\n<h3 style=\"text-align: center;\">Walk &amp; relax in our beautiful gardens.</h3>\r\n[/fusion_text][/two_third][one_sixth last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][/one_sixth][recent_works layout=\"grid\" picture_size=\"auto\" boxed_text=\"boxed\" filters=\"no\" columns=\"3\" column_spacing=\"12\" cat_slug=\"gardens\" exclude_cats=\"\" number_posts=\"9\" offset=\"\" excerpt_length=\"35\" strip_html=\"yes\" carousel_layout=\"title_on_rollover\" scroll_items=\"\" autoplay=\"no\" show_nav=\"yes\" mouse_scroll=\"no\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" class=\"\" id=\"\"][/recent_works][/fullwidth][fullwidth background_color=\"#ffffff\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"65px\" padding_bottom=\"65px\" padding_left=\"0px\" padding_right=\"0px\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][button link=\"http://localhost/assagaylodge/book-now/\" color=\"default\" size=\"xlarge\" type=\"3d\" shape=\"round\" target=\"_self\" title=\"\" gradient_colors=\"#f0f0ed|#f0f0ed\" gradient_hover_colors=\"#6666a4|#6666a4\" accent_color=\"#ffffff\" accent_hover_color=\"#ffffff\" bevel_color=\"\" border_width=\"0px\" icon=\"\" icon_position=\"left\" icon_divider=\"no\" modal=\"\" animation_type=\"0\" animation_direction=\"left\" animation_speed=\"1\" alignment=\"center\" class=\"\" id=\"\"]Make A Reservation Enquiry[/button][/fullwidth]', 'Home', '', 'inherit', 'closed', 'closed', '', '7-revision-v1', '', '', '2015-09-08 10:59:19', '2015-09-08 08:59:19', '', 7, 'http://localhost/assagaylodge/7-revision-v1/', 0, 'revision', '', 0),
(971, 1, '2015-09-08 11:05:37', '2015-09-08 09:05:37', '[fullwidth background_color=\"\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"90px\" padding_bottom=\"0px\" padding_left=\"0px\" padding_right=\"0px\" hundred_percent=\"yes\" equal_height_columns=\"yes\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][one_half last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"http://localhost/assagaylodge/wp-content/uploads/2015/08/Tha-Lodge.jpg\" background_repeat=\"no-repeat\" background_position=\"center center\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" class=\"\" id=\"\"][/one_half][one_half last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"30px\" margin_top=\"\" margin_bottom=\"0px\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" class=\"special\" id=\"\"][fusion_text]\r\n<h1>5 BEDROOM FAMILY LODGE</h1>\r\n[/fusion_text][separator style_type=\"single\" top_margin=\"0\" bottom_margin=\"30\" sep_color=\"#000000\" border_size=\"\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"170px\" alignment=\"left\" class=\"separator-left\" id=\"\"][fusion_text]\r\n<h3>Self-Catering/Service Options/B&amp;B</h3>\r\n[/fusion_text][/one_half][/fullwidth][one_third last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][/one_third][one_third last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][modal name=\"Rates\" title=\"2015 Rates\" size=\"small\" background=\"\" border_color=\"\" show_footer=\"yes\" class=\"\" id=\"\"]SELF CATERING PER NIGHT\r\n\r\nR650 per room (Single)\r\nR990 per room (Sharing - Sleeps 2)\r\nR3000 per lodge (Max 10 guests)[/modal][/one_third][one_third last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][/one_third][fullwidth background_color=\"\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"30px\" padding_bottom=\"60px\" padding_left=\"0px\" padding_right=\"0px\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][one_half last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][fusion_text]\r\n<p style=\"text-align: justify;\">The property boasts over 200 different species of birds and animals. The Lodge is situated on the 1000 Hills tourism route, on the edge of Hillcrest and is a perfect place from which one can launch to any one of the many fantastic destinations and game reserves in KwaZulu Natal, i.e. the Majestic Drakensberg Mountain Range, Shongweni Nature Reserve, Nagle Dam, Durban &amp; Beach Front. We are also the doorstep of one of KZN’s major horse riding venues namely, the Shongweni Horse Riding Club &amp; the Summerveld Horse Riding Academy, makes Assagay Lodge a perfect home away from home for the equestrian lovers. The peace &amp; tranquility will take you far away from the business of city life. Evenings are quiet and peaceful. This is a unique and memorable country experience.</p>\r\n[/fusion_text][/one_half][one_half last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][fusion_text]\r\n<p style=\"text-align: justify;\">We are a homely \'down to earth\' country guest lodge, set on a farm surrounded by acres of beautiful hills, forests, &amp; dams in the Madwala Conservancy of Assagay, where horses still have the right of way on all roads. Our five bedrooms have a rustic charm offering the comforts of modern day life.</p>\r\n<p style=\"text-align: justify;\">Assagay Forest Lodge is owner managed, built in 2005 the lodge provides 5 cozy bedrooms with a large spacious and comfortable homely lounge, which leads onto a large deck area. Set on a 6 acre property in the Assagay Conservancy our lodge is nestled around trees, bushes, and beautiful gardens and a stream, allowing visitors to meander and relax. Guests seeking a quite, relaxing, homely experience will find our lodge the perfect choice away from home. There is a kitchen available should you wish to muster up a snack or quick meal, however breakfast is available on request.</p>\r\n[/fusion_text][/one_half][/fullwidth][fullwidth background_color=\"#f0f0ed\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"60px\" padding_bottom=\"45px\" padding_left=\"0px\" padding_right=\"0px\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][fusion_text]\r\n<h1 style=\"text-align: center;\">Gallery</h1>\r\n[/fusion_text][separator style_type=\"single\" top_margin=\"\" bottom_margin=\"40\" sep_color=\"#000000\" border_size=\"\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"170px\" alignment=\"\" class=\"\" id=\"\"][one_sixth last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][/one_sixth][two_third last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][fusion_text]\r\n<h3 style=\"text-align: center;\">The Lodge is open, spacious, comfortable and homely.</h3>\r\n[/fusion_text][/two_third][one_sixth last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][/one_sixth][recent_works layout=\"grid\" picture_size=\"auto\" boxed_text=\"boxed\" filters=\"no\" columns=\"3\" column_spacing=\"12\" cat_slug=\"the-lodge\" exclude_cats=\"\" number_posts=\"9\" offset=\"\" excerpt_length=\"35\" strip_html=\"yes\" carousel_layout=\"title_on_rollover\" scroll_items=\"\" autoplay=\"no\" show_nav=\"yes\" mouse_scroll=\"no\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" class=\"\" id=\"\"][/recent_works][/fullwidth][fullwidth background_color=\"\" background_image=\"\" background_parallax=\"fixed\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"60px\" padding_bottom=\"35px\" padding_left=\"0px\" padding_right=\"0px\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][fusion_text]\r\n<h1 style=\"text-align: center;\">BEDROOMS</h1>\r\n[/fusion_text][separator style_type=\"single\" top_margin=\"\" bottom_margin=\"20\" sep_color=\"#000000\" border_size=\"\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"170px\" alignment=\"\" class=\"\" id=\"\"][one_sixth last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][/one_sixth][two_third last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][fusion_text]\r\n<h3 style=\"text-align: justify;\">When it comes to our bedrooms we’re proud to say we’re different. We offer something a little more special.</h3>\r\n<h3 style=\"text-align: justify;\">Our five bedrooms are all en-suite and equipped with either king size or queen size beds. Each room sleeps two guests. The rooms have high ceilings, wall heaters &amp; ceiling fans. Beds all have electric blankets in Winter, 100% cotton percale sheets and thick hyper allergenic microfiber duvets and pillows.</h3>\r\n[/fusion_text][/two_third][one_sixth last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][/one_sixth][/fullwidth][fullwidth background_color=\"\" background_image=\"http://localhost/assagaylodge/wp-content/uploads/2015/01/DSC01516-1148-x-764.jpg\" background_parallax=\"fixed\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"center center\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"60\" padding_bottom=\"20\" padding_left=\"0\" padding_right=\"0\" hundred_percent=\"no\" equal_height_columns=\"yes\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][recent_works layout=\"grid\" picture_size=\"auto\" boxed_text=\"unboxed\" filters=\"no\" columns=\"3\" column_spacing=\"12\" cat_slug=\"bedrooms\" exclude_cats=\"\" number_posts=\"6\" offset=\"\" excerpt_length=\"35\" strip_html=\"yes\" carousel_layout=\"title_on_rollover\" scroll_items=\"\" autoplay=\"no\" show_nav=\"yes\" mouse_scroll=\"no\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" class=\"\" id=\"\"][/recent_works][/fullwidth][fullwidth background_color=\"#f0f0ed\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"20\" padding_bottom=\"20\" padding_left=\"0\" padding_right=\"0\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][fusion_text]\r\n<h1 style=\"text-align: center;\">GARDENS</h1>\r\n[/fusion_text][separator style_type=\"none\" top_margin=\"40\" bottom_margin=\"\" sep_color=\"\" border_size=\"\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"100%\" alignment=\"center\" class=\"\" id=\"\"][one_sixth last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][/one_sixth][two_third last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][fusion_text]\r\n<h3 style=\"text-align: center;\">Walk &amp; relax in our beautiful gardens.</h3>\r\n[/fusion_text][/two_third][one_sixth last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][/one_sixth][recent_works layout=\"grid\" picture_size=\"auto\" boxed_text=\"boxed\" filters=\"no\" columns=\"3\" column_spacing=\"12\" cat_slug=\"gardens\" exclude_cats=\"\" number_posts=\"9\" offset=\"\" excerpt_length=\"35\" strip_html=\"yes\" carousel_layout=\"title_on_rollover\" scroll_items=\"\" autoplay=\"no\" show_nav=\"yes\" mouse_scroll=\"no\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" class=\"\" id=\"\"][/recent_works][/fullwidth][fullwidth background_color=\"#ffffff\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"65px\" padding_bottom=\"65px\" padding_left=\"0px\" padding_right=\"0px\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][button link=\"http://localhost/assagaylodge/book-now/\" color=\"default\" size=\"xlarge\" type=\"3d\" shape=\"round\" target=\"_self\" title=\"\" gradient_colors=\"#f0f0ed|#f0f0ed\" gradient_hover_colors=\"#6666a4|#6666a4\" accent_color=\"#ffffff\" accent_hover_color=\"#ffffff\" bevel_color=\"\" border_width=\"0px\" icon=\"\" icon_position=\"left\" icon_divider=\"no\" modal=\"\" animation_type=\"0\" animation_direction=\"left\" animation_speed=\"1\" alignment=\"center\" class=\"\" id=\"\"]Make A Reservation Enquiry[/button][/fullwidth][modal name=\"\" title=\"\" size=\"\" background=\"\" border_color=\"\" show_footer=\"\" class=\"\" id=\"\"][/modal]', 'Home', '', 'inherit', 'closed', 'closed', '', '7-revision-v1', '', '', '2015-09-08 11:05:37', '2015-09-08 09:05:37', '', 7, 'http://localhost/assagaylodge/7-revision-v1/', 0, 'revision', '', 0),
(972, 1, '2015-09-08 11:10:30', '2015-09-08 09:10:30', '[fullwidth background_color=\"\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"70px\" padding_bottom=\"75px\" padding_left=\"0px\" padding_right=\"0px\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][one_half last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][fusion_text]\r\n<h3>Contact Us</h3>\r\nSend us a message and we will take the time to get to know you so we can help you find your amazing adventure.[/fusion_text][fusion_text][contact-form-7 id=\"246\" title=\"Contact form 1\"][/fusion_text][/one_half][one_half last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][fusion_text]\r\n<h3>FAQ</h3>\r\nStill not sure if we can be of help? Check through some frequently asked questions and then send us a message.[/fusion_text][separator style_type=\"none\" top_margin=\"\" bottom_margin=\"20\" sep_color=\"\" border_size=\"\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"\" alignment=\"\" class=\"\" id=\"\"][accordian class=\"\" id=\"\"][toggle title=\"GPS Location\" open=\"no\"]\r\n\r\nGPS: Latitude(South)-29.771865, Longitude(East)30.736892\r\n\r\n[/toggle][toggle title=\"Directions\" open=\"no\"]\r\n\r\nGPS: Latitude(South)-29.771865, Longitude(East)30.736892\r\n\r\nWhether you are coming from Durban or Pietermaritzburg be sure to take the Shongweni / Assagay / Hillcrest turn off. This is known as Kassier Rd however it is poorly marked but it is nevertheless the road which you turn into from the highway. It runs from Shongweni, over both highways, through to Old Main Rd. Head towards Old Main Road, Hillcrest.\r\n\r\nRemain on Kassier Road for about 2-3km and turn into Assagay Road, a good land mark is the Assagay Nursery almost opposite this turn off, head up the rise. Turn left into Castle Road, carry down the dip for about 500m and cross a small water-bridge. Turn first right into Lello Road, just after the bridge. Continue on Lello Road, the road dips and briefly climbs, the valley falling away to your right. Finally, turn left into Williams Road (it\'s essentially the first left turn on Lello Road), Continue down Williams Road for about 800m. On your right you will come to the entrance of the farm called `Fourever`No 4 Williams Road. There’s a 1000 Hills Tourism Sign outside. A wooden fence and silver gate. Welcome to Assagay Lodge.\r\n\r\n[/toggle][toggle title=\"Do you allow children to travel?\" open=\"no\"]\r\n\r\nAliquam eu augue arcu. Vestibulum finibus eros id elit hendrerit laoreet. Sed fringilla pellentesque justo quis lobortis. Morbi maximus ante at nulla sodales commodo eu a tellus. Etiam rhoncus dolor leo, a fermentum massa tincidunt ut. Phasellus porttitor sapien mi.\r\n\r\nSuspendisse ornare iaculis auctor. Nunc placerat pellentesque tortor eu vehicula. In non magna mollis, sodales metus id, rhoncus elit. Mauris vulputate, tellus in viverra condimentum, metus diam lobortis leo, eu viverra justo elit elementum augue. Suspendisse efficitur maximus tellus quis faucibus. Nam non nunc quis risus tempor dapibus.\r\n\r\n[/toggle][toggle title=\"Special Offers?\" open=\"no\"]\r\n\r\nAliquam eu augue arcu. Vestibulum finibus eros id elit hendrerit laoreet. Sed fringilla pellentesque justo quis lobortis. Morbi maximus ante at nulla sodales commodo eu a tellus. Etiam rhoncus dolor leo, a fermentum massa tincidunt ut. Phasellus porttitor sapien mi.\r\n\r\nSuspendisse ornare iaculis auctor. Nunc placerat pellentesque tortor eu vehicula. In non magna mollis, sodales metus id, rhoncus elit. Mauris vulputate, tellus in viverra condimentum, metus diam lobortis leo, eu viverra justo elit elementum augue. Suspendisse efficitur maximus tellus quis faucibus. Nam non nunc quis risus tempor dapibus.\r\n\r\n[/toggle][/accordian][/one_half][/fullwidth][fullwidth background_color=\"\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"0px\" padding_bottom=\"0px\" padding_left=\"0px\" padding_right=\"0px\" hundred_percent=\"yes\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][map address=\"Assagay Forest Lodge\" type=\"roadmap\" map_style=\"custom\" overlay_color=\"#6666a4\" infobox=\"custom\" infobox_background_color=\"rgba(102,102,164,.8)\" infobox_text_color=\"#ffffff\" infobox_content=\"\" icon=\"http://theme-fusion.com/avada_demos_xml/travel/wp-content/uploads/2015/01/map.png\" width=\"100%\" height=\"700px\" zoom=\"13\" scrollwheel=\"yes\" scale=\"yes\" zoom_pancontrol=\"yes\" animation=\"yes\" popup=\"no\" class=\"\" id=\"\"][/map][/fullwidth][fullwidth background_color=\"\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"0px\" padding_bottom=\"-30px\" padding_left=\"0px\" padding_right=\"0px\" hundred_percent=\"yes\" equal_height_columns=\"yes\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][one_third last=\"no\" spacing=\"no\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"#6666a4\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"10%\" margin_top=\"\" margin_bottom=\"0px\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" class=\"\" id=\"\"][content_boxes layout=\"icon-with-title\" title_size=\"\" icon_circle=\"\" icon_size=\"\" icon_align=\"left\" columns=\"1\" margin_top=\"\" margin_bottom=\"0px\" class=\"\" id=\"\"][content_box title=\"Call Us\" icon=\"fa-phone\" backgroundcolor=\"\" iconcolor=\"#ffffff\" circlecolor=\"#6666a4\" circlebordercolor=\"#6666a4\" iconflip=\"\" iconrotate=\"\" iconspin=\"no\" image=\"\" image_width=\"35\" image_height=\"35\" link=\"\" linktext=\"\" linktarget=\"_self\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\"] <span style=\"color: #ffffff;\">Please call one of our specialist or pop into one of our travel shops and meet with an advisor in person. Alternatively, email us any questions and we will reply as quickly as possible. We look forward to being a small part of your next big adventure.</span>[/content_box][/content_boxes][/one_third][one_third last=\"no\" spacing=\"no\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"#7272b2\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"10%\" margin_top=\"\" margin_bottom=\"0px\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" class=\"\" id=\"\"][content_boxes layout=\"icon-with-title\" title_size=\"\" icon_circle=\"\" icon_size=\"\" icon_align=\"left\" columns=\"1\" margin_top=\"\" margin_bottom=\"0px\" class=\"\" id=\"\"][content_box title=\"Meet Us\" icon=\"fa-comments\" backgroundcolor=\"\" iconcolor=\"#ffffff\" circlecolor=\"#7272b2\" circlebordercolor=\"#7272b2\" iconflip=\"\" iconrotate=\"\" iconspin=\"no\" image=\"\" image_width=\"35\" image_height=\"35\" link=\"\" linktext=\"\" linktarget=\"_self\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\"] <span style=\"color: #ffffff;\">Please call one of our specialist or pop into one of our travel shops and meet with an advisor in person. Alternatively, email us any questions and we will reply as quickly as possible. We look forward to being a small part of your next big adventure.</span>[/content_box][/content_boxes][/one_third][one_third last=\"yes\" spacing=\"no\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"#6666a4\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"10%\" margin_top=\"\" margin_bottom=\"0px\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" class=\"\" id=\"\"][content_boxes layout=\"icon-with-title\" title_size=\"\" icon_circle=\"\" icon_size=\"\" icon_align=\"left\" columns=\"1\" margin_top=\"\" margin_bottom=\"0px\" class=\"\" id=\"\"][content_box title=\"Ask Us\" icon=\"fa-phone\" backgroundcolor=\"\" iconcolor=\"#ffffff\" circlecolor=\"#6666a4\" circlebordercolor=\"#6666a4\" iconflip=\"\" iconrotate=\"\" iconspin=\"no\" image=\"\" image_width=\"35\" image_height=\"35\" link=\"\" linktext=\"\" linktarget=\"_self\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\"] <span style=\"color: #ffffff;\">Please call one of our specialist or pop into one of our travel shops and meet with an advisor in person. Alternatively, email us any questions and we will reply as quickly as possible. We look forward to being a small part of your next big adventure.</span>[/content_box][/content_boxes][/one_third][/fullwidth]', 'Make a reservation', '', 'inherit', 'closed', 'closed', '', '11-revision-v1', '', '', '2015-09-08 11:10:30', '2015-09-08 09:10:30', '', 11, 'http://localhost/assagaylodge/11-revision-v1/', 0, 'revision', '', 0);
INSERT INTO `wp_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(973, 1, '2015-09-08 11:13:45', '2015-09-08 09:13:45', '[fullwidth background_color=\"\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"90px\" padding_bottom=\"0px\" padding_left=\"0px\" padding_right=\"0px\" hundred_percent=\"yes\" equal_height_columns=\"yes\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][one_half last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"http://localhost/assagaylodge/wp-content/uploads/2015/08/Tha-Lodge.jpg\" background_repeat=\"no-repeat\" background_position=\"center center\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" class=\"\" id=\"\"][/one_half][one_half last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"30px\" margin_top=\"\" margin_bottom=\"0px\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" class=\"special\" id=\"\"][fusion_text]\r\n<h1>5 BEDROOM FAMILY LODGE</h1>\r\n[/fusion_text][separator style_type=\"single\" top_margin=\"0\" bottom_margin=\"30\" sep_color=\"#000000\" border_size=\"\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"170px\" alignment=\"left\" class=\"separator-left\" id=\"\"][fusion_text]\r\n<h3>Self-Catering/Service Options/B&amp;B</h3>\r\n[/fusion_text][/one_half][/fullwidth][one_third last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][/one_third][one_third last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][modal name=\"rates\" title=\"2015 Rates\" size=\"small\" background=\"\" border_color=\"\" show_footer=\"yes\" class=\"\" id=\"\"]<p>SELF CATERING PER NIGHT</p>\r\n<p>R650 per room (Single)<br />\r\nR990 per room (Sharing - Sleeps 2)<br />\r\nR3000 per lodge (Max 10 guests)</p>\r\n[/modal][/one_third][one_third last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][/one_third][fullwidth background_color=\"\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"30px\" padding_bottom=\"60px\" padding_left=\"0px\" padding_right=\"0px\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][one_half last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][fusion_text]\r\n<p style=\"text-align: justify;\">The property boasts over 200 different species of birds and animals. The Lodge is situated on the 1000 Hills tourism route, on the edge of Hillcrest and is a perfect place from which one can launch to any one of the many fantastic destinations and game reserves in KwaZulu Natal, i.e. the Majestic Drakensberg Mountain Range, Shongweni Nature Reserve, Nagle Dam, Durban &amp; Beach Front. We are also the doorstep of one of KZN’s major horse riding venues namely, the Shongweni Horse Riding Club &amp; the Summerveld Horse Riding Academy, makes Assagay Lodge a perfect home away from home for the equestrian lovers. The peace &amp; tranquility will take you far away from the business of city life. Evenings are quiet and peaceful. This is a unique and memorable country experience.</p>\r\n[/fusion_text][/one_half][one_half last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][fusion_text]\r\n<p style=\"text-align: justify;\">We are a homely \'down to earth\' country guest lodge, set on a farm surrounded by acres of beautiful hills, forests, &amp; dams in the Madwala Conservancy of Assagay, where horses still have the right of way on all roads. Our five bedrooms have a rustic charm offering the comforts of modern day life.</p>\r\n<p style=\"text-align: justify;\">Assagay Forest Lodge is owner managed, built in 2005 the lodge provides 5 cozy bedrooms with a large spacious and comfortable homely lounge, which leads onto a large deck area. Set on a 6 acre property in the Assagay Conservancy our lodge is nestled around trees, bushes, and beautiful gardens and a stream, allowing visitors to meander and relax. Guests seeking a quite, relaxing, homely experience will find our lodge the perfect choice away from home. There is a kitchen available should you wish to muster up a snack or quick meal, however breakfast is available on request.</p>\r\n[/fusion_text][/one_half][/fullwidth][fullwidth background_color=\"#f0f0ed\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"60px\" padding_bottom=\"45px\" padding_left=\"0px\" padding_right=\"0px\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][fusion_text]\r\n<h1 style=\"text-align: center;\">Gallery</h1>\r\n[/fusion_text][separator style_type=\"single\" top_margin=\"\" bottom_margin=\"40\" sep_color=\"#000000\" border_size=\"\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"170px\" alignment=\"\" class=\"\" id=\"\"][one_sixth last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][/one_sixth][two_third last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][fusion_text]\r\n<h3 style=\"text-align: center;\">The Lodge is open, spacious, comfortable and homely.</h3>\r\n[/fusion_text][/two_third][one_sixth last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][/one_sixth][recent_works layout=\"grid\" picture_size=\"auto\" boxed_text=\"boxed\" filters=\"no\" columns=\"3\" column_spacing=\"12\" cat_slug=\"the-lodge\" exclude_cats=\"\" number_posts=\"9\" offset=\"\" excerpt_length=\"35\" strip_html=\"yes\" carousel_layout=\"title_on_rollover\" scroll_items=\"\" autoplay=\"no\" show_nav=\"yes\" mouse_scroll=\"no\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" class=\"\" id=\"\"][/recent_works][/fullwidth][fullwidth background_color=\"\" background_image=\"\" background_parallax=\"fixed\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"60px\" padding_bottom=\"35px\" padding_left=\"0px\" padding_right=\"0px\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][fusion_text]\r\n<h1 style=\"text-align: center;\">BEDROOMS</h1>\r\n[/fusion_text][separator style_type=\"single\" top_margin=\"\" bottom_margin=\"20\" sep_color=\"#000000\" border_size=\"\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"170px\" alignment=\"\" class=\"\" id=\"\"][one_sixth last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][/one_sixth][two_third last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][fusion_text]\r\n<h3 style=\"text-align: justify;\">When it comes to our bedrooms we’re proud to say we’re different. We offer something a little more special.</h3>\r\n<h3 style=\"text-align: justify;\">Our five bedrooms are all en-suite and equipped with either king size or queen size beds. Each room sleeps two guests. The rooms have high ceilings, wall heaters &amp; ceiling fans. Beds all have electric blankets in Winter, 100% cotton percale sheets and thick hyper allergenic microfiber duvets and pillows.</h3>\r\n[/fusion_text][/two_third][one_sixth last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][/one_sixth][/fullwidth][fullwidth background_color=\"\" background_image=\"http://localhost/assagaylodge/wp-content/uploads/2015/01/DSC01516-1148-x-764.jpg\" background_parallax=\"fixed\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"center center\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"60\" padding_bottom=\"20\" padding_left=\"0\" padding_right=\"0\" hundred_percent=\"no\" equal_height_columns=\"yes\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][recent_works layout=\"grid\" picture_size=\"auto\" boxed_text=\"unboxed\" filters=\"no\" columns=\"3\" column_spacing=\"12\" cat_slug=\"bedrooms\" exclude_cats=\"\" number_posts=\"6\" offset=\"\" excerpt_length=\"35\" strip_html=\"yes\" carousel_layout=\"title_on_rollover\" scroll_items=\"\" autoplay=\"no\" show_nav=\"yes\" mouse_scroll=\"no\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" class=\"\" id=\"\"][/recent_works][/fullwidth][fullwidth background_color=\"#f0f0ed\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"20\" padding_bottom=\"20\" padding_left=\"0\" padding_right=\"0\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][fusion_text]\r\n<h1 style=\"text-align: center;\">GARDENS</h1>\r\n[/fusion_text][separator style_type=\"none\" top_margin=\"40\" bottom_margin=\"\" sep_color=\"\" border_size=\"\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"100%\" alignment=\"center\" class=\"\" id=\"\"][one_sixth last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][/one_sixth][two_third last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][fusion_text]\r\n<h3 style=\"text-align: center;\">Walk &amp; relax in our beautiful gardens.</h3>\r\n[/fusion_text][/two_third][one_sixth last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][/one_sixth][recent_works layout=\"grid\" picture_size=\"auto\" boxed_text=\"boxed\" filters=\"no\" columns=\"3\" column_spacing=\"12\" cat_slug=\"gardens\" exclude_cats=\"\" number_posts=\"9\" offset=\"\" excerpt_length=\"35\" strip_html=\"yes\" carousel_layout=\"title_on_rollover\" scroll_items=\"\" autoplay=\"no\" show_nav=\"yes\" mouse_scroll=\"no\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" class=\"\" id=\"\"][/recent_works][/fullwidth][fullwidth background_color=\"#ffffff\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"65px\" padding_bottom=\"65px\" padding_left=\"0px\" padding_right=\"0px\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][button link=\"http://localhost/assagaylodge/book-now/\" color=\"default\" size=\"xlarge\"  type=\"3d\" shape=\"round\" target=\"_self\" title=\"\" gradient_colors=\"#f0f0ed|#f0f0ed\" gradient_hover_colors=\"#6666a4|#6666a4\" accent_color=\"#ffffff\" accent_hover_color=\"#ffffff\" bevel_color=\"\" border_width=\"0px\" icon=\"\" icon_position=\"left\" icon_divider=\"no\" modal=\"\" animation_type=\"0\" animation_direction=\"left\" animation_speed=\"1\" alignment=\"center\" class=\"\" id=\"\"]Make A Reservation Enquiry[/button][/fullwidth][modal name=\"\" title=\"\" size=\"\" background=\"\" border_color=\"\" show_footer=\"\" class=\"\" id=\"\"][/modal]', 'Home', '', 'inherit', 'closed', 'closed', '', '7-revision-v1', '', '', '2015-09-08 11:13:45', '2015-09-08 09:13:45', '', 7, 'http://localhost/assagaylodge/7-revision-v1/', 0, 'revision', '', 0),
(974, 1, '2015-09-08 11:27:52', '2015-09-08 09:27:52', '[fullwidth background_color=\"\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"90px\" padding_bottom=\"0px\" padding_left=\"0px\" padding_right=\"0px\" hundred_percent=\"yes\" equal_height_columns=\"yes\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][one_half last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"http://localhost/assagaylodge/wp-content/uploads/2015/08/Tha-Lodge.jpg\" background_repeat=\"no-repeat\" background_position=\"center center\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" class=\"\" id=\"\"][/one_half][one_half last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"30px\" margin_top=\"\" margin_bottom=\"0px\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" class=\"special\" id=\"\"][fusion_text]\r\n<h1>5 BEDROOM FAMILY LODGE</h1>\r\n[/fusion_text][separator style_type=\"single\" top_margin=\"0\" bottom_margin=\"30\" sep_color=\"#000000\" border_size=\"\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"170px\" alignment=\"left\" class=\"separator-left\" id=\"\"][fusion_text]\r\n<h3>Self-Catering/Service Options/B&amp;B</h3>\r\n[/fusion_text][/one_half][/fullwidth][one_third last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][/one_third][one_third last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][modal name=\"rates\" title=\"2015 Rates\" size=\"large\" background=\"\" border_color=\"\" show_footer=\"yes\" class=\"\" id=\"\"]SELF CATERING PER NIGHT\r\nR650 per room (Single)<br />R990 per room (Sharing - Sleeps 2)<br />R3000 per lodge (Max 10 guests)\r\n[/modal][/one_third][one_third last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][/one_third][fullwidth background_color=\"\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"30px\" padding_bottom=\"60px\" padding_left=\"0px\" padding_right=\"0px\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][one_half last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][fusion_text]\r\n<p style=\"text-align: justify;\">The property boasts over 200 different species of birds and animals. The Lodge is situated on the 1000 Hills tourism route, on the edge of Hillcrest and is a perfect place from which one can launch to any one of the many fantastic destinations and game reserves in KwaZulu Natal, i.e. the Majestic Drakensberg Mountain Range, Shongweni Nature Reserve, Nagle Dam, Durban &amp; Beach Front. We are also the doorstep of one of KZN’s major horse riding venues namely, the Shongweni Horse Riding Club &amp; the Summerveld Horse Riding Academy, makes Assagay Lodge a perfect home away from home for the equestrian lovers. The peace &amp; tranquility will take you far away from the business of city life. Evenings are quiet and peaceful. This is a unique and memorable country experience.</p>\r\n[/fusion_text][/one_half][one_half last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][fusion_text]\r\n<p style=\"text-align: justify;\">We are a homely \'down to earth\' country guest lodge, set on a farm surrounded by acres of beautiful hills, forests, &amp; dams in the Madwala Conservancy of Assagay, where horses still have the right of way on all roads. Our five bedrooms have a rustic charm offering the comforts of modern day life.</p>\r\n<p style=\"text-align: justify;\">Assagay Forest Lodge is owner managed, built in 2005 the lodge provides 5 cozy bedrooms with a large spacious and comfortable homely lounge, which leads onto a large deck area. Set on a 6 acre property in the Assagay Conservancy our lodge is nestled around trees, bushes, and beautiful gardens and a stream, allowing visitors to meander and relax. Guests seeking a quite, relaxing, homely experience will find our lodge the perfect choice away from home. There is a kitchen available should you wish to muster up a snack or quick meal, however breakfast is available on request.</p>\r\n[/fusion_text][/one_half][/fullwidth][fullwidth background_color=\"#f0f0ed\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"60px\" padding_bottom=\"45px\" padding_left=\"0px\" padding_right=\"0px\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][fusion_text]\r\n<h1 style=\"text-align: center;\">Gallery</h1>\r\n[/fusion_text][separator style_type=\"single\" top_margin=\"\" bottom_margin=\"40\" sep_color=\"#000000\" border_size=\"\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"170px\" alignment=\"\" class=\"\" id=\"\"][one_sixth last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][/one_sixth][two_third last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][fusion_text]\r\n<h3 style=\"text-align: center;\">The Lodge is open, spacious, comfortable and homely.</h3>\r\n[/fusion_text][/two_third][one_sixth last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][/one_sixth][recent_works layout=\"grid\" picture_size=\"auto\" boxed_text=\"boxed\" filters=\"no\" columns=\"3\" column_spacing=\"12\" cat_slug=\"the-lodge\" exclude_cats=\"\" number_posts=\"9\" offset=\"\" excerpt_length=\"35\" strip_html=\"yes\" carousel_layout=\"title_on_rollover\" scroll_items=\"\" autoplay=\"no\" show_nav=\"yes\" mouse_scroll=\"no\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" class=\"\" id=\"\"][/recent_works][/fullwidth][fullwidth background_color=\"\" background_image=\"\" background_parallax=\"fixed\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"60px\" padding_bottom=\"35px\" padding_left=\"0px\" padding_right=\"0px\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][fusion_text]\r\n<h1 style=\"text-align: center;\">BEDROOMS</h1>\r\n[/fusion_text][separator style_type=\"single\" top_margin=\"\" bottom_margin=\"20\" sep_color=\"#000000\" border_size=\"\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"170px\" alignment=\"\" class=\"\" id=\"\"][one_sixth last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][/one_sixth][two_third last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][fusion_text]\r\n<h3 style=\"text-align: justify;\">When it comes to our bedrooms we’re proud to say we’re different. We offer something a little more special.</h3>\r\n<h3 style=\"text-align: justify;\">Our five bedrooms are all en-suite and equipped with either king size or queen size beds. Each room sleeps two guests. The rooms have high ceilings, wall heaters &amp; ceiling fans. Beds all have electric blankets in Winter, 100% cotton percale sheets and thick hyper allergenic microfiber duvets and pillows.</h3>\r\n[/fusion_text][/two_third][one_sixth last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][/one_sixth][/fullwidth][fullwidth background_color=\"\" background_image=\"http://localhost/assagaylodge/wp-content/uploads/2015/01/DSC01516-1148-x-764.jpg\" background_parallax=\"fixed\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"center center\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"60\" padding_bottom=\"20\" padding_left=\"0\" padding_right=\"0\" hundred_percent=\"no\" equal_height_columns=\"yes\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][recent_works layout=\"grid\" picture_size=\"auto\" boxed_text=\"unboxed\" filters=\"no\" columns=\"3\" column_spacing=\"12\" cat_slug=\"bedrooms\" exclude_cats=\"\" number_posts=\"6\" offset=\"\" excerpt_length=\"35\" strip_html=\"yes\" carousel_layout=\"title_on_rollover\" scroll_items=\"\" autoplay=\"no\" show_nav=\"yes\" mouse_scroll=\"no\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" class=\"\" id=\"\"][/recent_works][/fullwidth][fullwidth background_color=\"#f0f0ed\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"20\" padding_bottom=\"20\" padding_left=\"0\" padding_right=\"0\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][fusion_text]\r\n<h1 style=\"text-align: center;\">GARDENS</h1>\r\n[/fusion_text][separator style_type=\"none\" top_margin=\"40\" bottom_margin=\"\" sep_color=\"\" border_size=\"\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"100%\" alignment=\"center\" class=\"\" id=\"\"][one_sixth last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][/one_sixth][two_third last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][fusion_text]\r\n<h3 style=\"text-align: center;\">Walk &amp; relax in our beautiful gardens.</h3>\r\n[/fusion_text][/two_third][one_sixth last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][/one_sixth][recent_works layout=\"grid\" picture_size=\"auto\" boxed_text=\"boxed\" filters=\"no\" columns=\"3\" column_spacing=\"12\" cat_slug=\"gardens\" exclude_cats=\"\" number_posts=\"9\" offset=\"\" excerpt_length=\"35\" strip_html=\"yes\" carousel_layout=\"title_on_rollover\" scroll_items=\"\" autoplay=\"no\" show_nav=\"yes\" mouse_scroll=\"no\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" class=\"\" id=\"\"][/recent_works][/fullwidth][fullwidth background_color=\"#ffffff\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"65px\" padding_bottom=\"65px\" padding_left=\"0px\" padding_right=\"0px\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][button link=\"http://localhost/assagaylodge/book-now/\" color=\"default\" size=\"xlarge\"  type=\"3d\" shape=\"round\" target=\"_self\" title=\"\" gradient_colors=\"#f0f0ed|#f0f0ed\" gradient_hover_colors=\"#6666a4|#6666a4\" accent_color=\"#ffffff\" accent_hover_color=\"#ffffff\" bevel_color=\"\" border_width=\"0px\" icon=\"\" icon_position=\"left\" icon_divider=\"no\" modal=\"\" animation_type=\"0\" animation_direction=\"left\" animation_speed=\"1\" alignment=\"center\" class=\"\" id=\"\"]Make A Reservation Enquiry[/button][/fullwidth][modal name=\"\" title=\"\" size=\"\" background=\"\" border_color=\"\" show_footer=\"\" class=\"\" id=\"\"][/modal]', 'Home', '', 'inherit', 'closed', 'closed', '', '7-revision-v1', '', '', '2015-09-08 11:27:52', '2015-09-08 09:27:52', '', 7, 'http://localhost/assagaylodge/7-revision-v1/', 0, 'revision', '', 0);
INSERT INTO `wp_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(975, 1, '2015-09-08 11:30:28', '2015-09-08 09:30:28', '[fullwidth background_color=\"\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"90px\" padding_bottom=\"0px\" padding_left=\"0px\" padding_right=\"0px\" hundred_percent=\"yes\" equal_height_columns=\"yes\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][one_half last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"http://localhost/assagaylodge/wp-content/uploads/2015/08/Tha-Lodge.jpg\" background_repeat=\"no-repeat\" background_position=\"center center\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" class=\"\" id=\"\"][/one_half][one_half last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"30px\" margin_top=\"\" margin_bottom=\"0px\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" class=\"special\" id=\"\"][fusion_text]\r\n<h1>5 BEDROOM FAMILY LODGE</h1>\r\n[/fusion_text][separator style_type=\"single\" top_margin=\"0\" bottom_margin=\"30\" sep_color=\"#000000\" border_size=\"\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"170px\" alignment=\"left\" class=\"separator-left\" id=\"\"][fusion_text]\r\n<h3>Self-Catering/Service Options/B&amp;B</h3>\r\n[/fusion_text][/one_half][/fullwidth][modal name=\"rates\" title=\"2015 Rates\" size=\"large\" background=\"\" border_color=\"\" show_footer=\"yes\" class=\"\" id=\"\"]SELF CATERING PER NIGHT\r\nR650 per room (Single)<br />R990 per room (Sharing - Sleeps 2)<br />R3000 per lodge (Max 10 guests)\r\n[/modal][fullwidth background_color=\"\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"30px\" padding_bottom=\"60px\" padding_left=\"0px\" padding_right=\"0px\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][one_half last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][fusion_text]\r\n<p style=\"text-align: justify;\">The property boasts over 200 different species of birds and animals. The Lodge is situated on the 1000 Hills tourism route, on the edge of Hillcrest and is a perfect place from which one can launch to any one of the many fantastic destinations and game reserves in KwaZulu Natal, i.e. the Majestic Drakensberg Mountain Range, Shongweni Nature Reserve, Nagle Dam, Durban &amp; Beach Front. We are also the doorstep of one of KZN’s major horse riding venues namely, the Shongweni Horse Riding Club &amp; the Summerveld Horse Riding Academy, makes Assagay Lodge a perfect home away from home for the equestrian lovers. The peace &amp; tranquility will take you far away from the business of city life. Evenings are quiet and peaceful. This is a unique and memorable country experience.</p>\r\n[/fusion_text][/one_half][one_half last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][fusion_text]\r\n<p style=\"text-align: justify;\">We are a homely \'down to earth\' country guest lodge, set on a farm surrounded by acres of beautiful hills, forests, &amp; dams in the Madwala Conservancy of Assagay, where horses still have the right of way on all roads. Our five bedrooms have a rustic charm offering the comforts of modern day life.</p>\r\n<p style=\"text-align: justify;\">Assagay Forest Lodge is owner managed, built in 2005 the lodge provides 5 cozy bedrooms with a large spacious and comfortable homely lounge, which leads onto a large deck area. Set on a 6 acre property in the Assagay Conservancy our lodge is nestled around trees, bushes, and beautiful gardens and a stream, allowing visitors to meander and relax. Guests seeking a quite, relaxing, homely experience will find our lodge the perfect choice away from home. There is a kitchen available should you wish to muster up a snack or quick meal, however breakfast is available on request.</p>\r\n[/fusion_text][/one_half][/fullwidth][fullwidth background_color=\"#f0f0ed\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"60px\" padding_bottom=\"45px\" padding_left=\"0px\" padding_right=\"0px\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][fusion_text]\r\n<h1 style=\"text-align: center;\">Gallery</h1>\r\n[/fusion_text][separator style_type=\"single\" top_margin=\"\" bottom_margin=\"40\" sep_color=\"#000000\" border_size=\"\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"170px\" alignment=\"\" class=\"\" id=\"\"][one_sixth last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][/one_sixth][two_third last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][fusion_text]\r\n<h3 style=\"text-align: center;\">The Lodge is open, spacious, comfortable and homely.</h3>\r\n[/fusion_text][/two_third][one_sixth last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][/one_sixth][recent_works layout=\"grid\" picture_size=\"auto\" boxed_text=\"boxed\" filters=\"no\" columns=\"3\" column_spacing=\"12\" cat_slug=\"the-lodge\" exclude_cats=\"\" number_posts=\"9\" offset=\"\" excerpt_length=\"35\" strip_html=\"yes\" carousel_layout=\"title_on_rollover\" scroll_items=\"\" autoplay=\"no\" show_nav=\"yes\" mouse_scroll=\"no\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" class=\"\" id=\"\"][/recent_works][/fullwidth][fullwidth background_color=\"\" background_image=\"\" background_parallax=\"fixed\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"60px\" padding_bottom=\"35px\" padding_left=\"0px\" padding_right=\"0px\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][fusion_text]\r\n<h1 style=\"text-align: center;\">BEDROOMS</h1>\r\n[/fusion_text][separator style_type=\"single\" top_margin=\"\" bottom_margin=\"20\" sep_color=\"#000000\" border_size=\"\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"170px\" alignment=\"\" class=\"\" id=\"\"][one_sixth last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][/one_sixth][two_third last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][fusion_text]\r\n<h3 style=\"text-align: justify;\">When it comes to our bedrooms we’re proud to say we’re different. We offer something a little more special.</h3>\r\n<h3 style=\"text-align: justify;\">Our five bedrooms are all en-suite and equipped with either king size or queen size beds. Each room sleeps two guests. The rooms have high ceilings, wall heaters &amp; ceiling fans. Beds all have electric blankets in Winter, 100% cotton percale sheets and thick hyper allergenic microfiber duvets and pillows.</h3>\r\n[/fusion_text][/two_third][one_sixth last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][/one_sixth][/fullwidth][fullwidth background_color=\"\" background_image=\"http://localhost/assagaylodge/wp-content/uploads/2015/01/DSC01516-1148-x-764.jpg\" background_parallax=\"fixed\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"center center\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"60\" padding_bottom=\"20\" padding_left=\"0\" padding_right=\"0\" hundred_percent=\"no\" equal_height_columns=\"yes\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][recent_works layout=\"grid\" picture_size=\"auto\" boxed_text=\"unboxed\" filters=\"no\" columns=\"3\" column_spacing=\"12\" cat_slug=\"bedrooms\" exclude_cats=\"\" number_posts=\"6\" offset=\"\" excerpt_length=\"35\" strip_html=\"yes\" carousel_layout=\"title_on_rollover\" scroll_items=\"\" autoplay=\"no\" show_nav=\"yes\" mouse_scroll=\"no\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" class=\"\" id=\"\"][/recent_works][/fullwidth][fullwidth background_color=\"#f0f0ed\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"20\" padding_bottom=\"20\" padding_left=\"0\" padding_right=\"0\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][fusion_text]\r\n<h1 style=\"text-align: center;\">GARDENS</h1>\r\n[/fusion_text][separator style_type=\"none\" top_margin=\"40\" bottom_margin=\"\" sep_color=\"\" border_size=\"\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"100%\" alignment=\"center\" class=\"\" id=\"\"][one_sixth last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][/one_sixth][two_third last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][fusion_text]\r\n<h3 style=\"text-align: center;\">Walk &amp; relax in our beautiful gardens.</h3>\r\n[/fusion_text][/two_third][one_sixth last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][/one_sixth][recent_works layout=\"grid\" picture_size=\"auto\" boxed_text=\"boxed\" filters=\"no\" columns=\"3\" column_spacing=\"12\" cat_slug=\"gardens\" exclude_cats=\"\" number_posts=\"9\" offset=\"\" excerpt_length=\"35\" strip_html=\"yes\" carousel_layout=\"title_on_rollover\" scroll_items=\"\" autoplay=\"no\" show_nav=\"yes\" mouse_scroll=\"no\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" class=\"\" id=\"\"][/recent_works][/fullwidth][fullwidth background_color=\"#ffffff\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"65px\" padding_bottom=\"65px\" padding_left=\"0px\" padding_right=\"0px\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][button link=\"http://localhost/assagaylodge/book-now/\" color=\"default\" size=\"xlarge\"  type=\"3d\" shape=\"round\" target=\"_self\" title=\"\" gradient_colors=\"#f0f0ed|#f0f0ed\" gradient_hover_colors=\"#6666a4|#6666a4\" accent_color=\"#ffffff\" accent_hover_color=\"#ffffff\" bevel_color=\"\" border_width=\"0px\" icon=\"\" icon_position=\"left\" icon_divider=\"no\" modal=\"\" animation_type=\"0\" animation_direction=\"left\" animation_speed=\"1\" alignment=\"center\" class=\"\" id=\"\"]Make A Reservation Enquiry[/button][/fullwidth][modal name=\"\" title=\"\" size=\"\" background=\"\" border_color=\"\" show_footer=\"\" class=\"\" id=\"\"][/modal]', 'Home', '', 'inherit', 'closed', 'closed', '', '7-revision-v1', '', '', '2015-09-08 11:30:28', '2015-09-08 09:30:28', '', 7, 'http://localhost/assagaylodge/7-revision-v1/', 0, 'revision', '', 0),
(976, 1, '2015-09-08 11:32:43', '2015-09-08 09:32:43', '[fullwidth background_color=\"\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"90px\" padding_bottom=\"0px\" padding_left=\"0px\" padding_right=\"0px\" hundred_percent=\"yes\" equal_height_columns=\"yes\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][one_half last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"http://localhost/assagaylodge/wp-content/uploads/2015/08/Tha-Lodge.jpg\" background_repeat=\"no-repeat\" background_position=\"center center\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" class=\"\" id=\"\"][/one_half][one_half last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"30px\" margin_top=\"\" margin_bottom=\"0px\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" class=\"special\" id=\"\"][fusion_text]\r\n<h1>5 BEDROOM FAMILY LODGE</h1>\r\n[/fusion_text][separator style_type=\"single\" top_margin=\"0\" bottom_margin=\"30\" sep_color=\"#000000\" border_size=\"\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"170px\" alignment=\"left\" class=\"separator-left\" id=\"\"][fusion_text]\r\n<h3>Self-Catering/Service Options/B&amp;B</h3>\r\n[/fusion_text][/one_half][/fullwidth][fullwidth background_color=\"\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding_top=\"20\" padding_bottom=\"20\" padding_left=\"0\" padding_right=\"0\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][modal name=\"rates\" title=\"2015 Rates\" size=\"large\" background=\"\" border_color=\"\" show_footer=\"yes\" class=\"\" id=\"\"]SELF CATERING PER NIGHT\r\nR650 per room (Single)<br />R990 per room (Sharing - Sleeps 2)<br />R3000 per lodge (Max 10 guests)\r\n[/modal][/fullwidth][fullwidth background_color=\"\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"30px\" padding_bottom=\"60px\" padding_left=\"0px\" padding_right=\"0px\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][one_half last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][fusion_text]\r\n<p style=\"text-align: justify;\">The property boasts over 200 different species of birds and animals. The Lodge is situated on the 1000 Hills tourism route, on the edge of Hillcrest and is a perfect place from which one can launch to any one of the many fantastic destinations and game reserves in KwaZulu Natal, i.e. the Majestic Drakensberg Mountain Range, Shongweni Nature Reserve, Nagle Dam, Durban &amp; Beach Front. We are also the doorstep of one of KZN’s major horse riding venues namely, the Shongweni Horse Riding Club &amp; the Summerveld Horse Riding Academy, makes Assagay Lodge a perfect home away from home for the equestrian lovers. The peace &amp; tranquility will take you far away from the business of city life. Evenings are quiet and peaceful. This is a unique and memorable country experience.</p>\r\n[/fusion_text][/one_half][one_half last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][fusion_text]\r\n<p style=\"text-align: justify;\">We are a homely \'down to earth\' country guest lodge, set on a farm surrounded by acres of beautiful hills, forests, &amp; dams in the Madwala Conservancy of Assagay, where horses still have the right of way on all roads. Our five bedrooms have a rustic charm offering the comforts of modern day life.</p>\r\n<p style=\"text-align: justify;\">Assagay Forest Lodge is owner managed, built in 2005 the lodge provides 5 cozy bedrooms with a large spacious and comfortable homely lounge, which leads onto a large deck area. Set on a 6 acre property in the Assagay Conservancy our lodge is nestled around trees, bushes, and beautiful gardens and a stream, allowing visitors to meander and relax. Guests seeking a quite, relaxing, homely experience will find our lodge the perfect choice away from home. There is a kitchen available should you wish to muster up a snack or quick meal, however breakfast is available on request.</p>\r\n[/fusion_text][/one_half][/fullwidth][fullwidth background_color=\"#f0f0ed\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"60px\" padding_bottom=\"45px\" padding_left=\"0px\" padding_right=\"0px\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][fusion_text]\r\n<h1 style=\"text-align: center;\">Gallery</h1>\r\n[/fusion_text][separator style_type=\"single\" top_margin=\"\" bottom_margin=\"40\" sep_color=\"#000000\" border_size=\"\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"170px\" alignment=\"\" class=\"\" id=\"\"][one_sixth last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][/one_sixth][two_third last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][fusion_text]\r\n<h3 style=\"text-align: center;\">The Lodge is open, spacious, comfortable and homely.</h3>\r\n[/fusion_text][/two_third][one_sixth last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][/one_sixth][recent_works layout=\"grid\" picture_size=\"auto\" boxed_text=\"boxed\" filters=\"no\" columns=\"3\" column_spacing=\"12\" cat_slug=\"the-lodge\" exclude_cats=\"\" number_posts=\"9\" offset=\"\" excerpt_length=\"35\" strip_html=\"yes\" carousel_layout=\"title_on_rollover\" scroll_items=\"\" autoplay=\"no\" show_nav=\"yes\" mouse_scroll=\"no\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" class=\"\" id=\"\"][/recent_works][/fullwidth][fullwidth background_color=\"\" background_image=\"\" background_parallax=\"fixed\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"60px\" padding_bottom=\"35px\" padding_left=\"0px\" padding_right=\"0px\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][fusion_text]\r\n<h1 style=\"text-align: center;\">BEDROOMS</h1>\r\n[/fusion_text][separator style_type=\"single\" top_margin=\"\" bottom_margin=\"20\" sep_color=\"#000000\" border_size=\"\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"170px\" alignment=\"\" class=\"\" id=\"\"][one_sixth last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][/one_sixth][two_third last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][fusion_text]\r\n<h3 style=\"text-align: justify;\">When it comes to our bedrooms we’re proud to say we’re different. We offer something a little more special.</h3>\r\n<h3 style=\"text-align: justify;\">Our five bedrooms are all en-suite and equipped with either king size or queen size beds. Each room sleeps two guests. The rooms have high ceilings, wall heaters &amp; ceiling fans. Beds all have electric blankets in Winter, 100% cotton percale sheets and thick hyper allergenic microfiber duvets and pillows.</h3>\r\n[/fusion_text][/two_third][one_sixth last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][/one_sixth][/fullwidth][fullwidth background_color=\"\" background_image=\"http://localhost/assagaylodge/wp-content/uploads/2015/01/DSC01516-1148-x-764.jpg\" background_parallax=\"fixed\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"center center\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"60\" padding_bottom=\"20\" padding_left=\"0\" padding_right=\"0\" hundred_percent=\"no\" equal_height_columns=\"yes\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][recent_works layout=\"grid\" picture_size=\"auto\" boxed_text=\"unboxed\" filters=\"no\" columns=\"3\" column_spacing=\"12\" cat_slug=\"bedrooms\" exclude_cats=\"\" number_posts=\"6\" offset=\"\" excerpt_length=\"35\" strip_html=\"yes\" carousel_layout=\"title_on_rollover\" scroll_items=\"\" autoplay=\"no\" show_nav=\"yes\" mouse_scroll=\"no\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" class=\"\" id=\"\"][/recent_works][/fullwidth][fullwidth background_color=\"#f0f0ed\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"20\" padding_bottom=\"20\" padding_left=\"0\" padding_right=\"0\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][fusion_text]\r\n<h1 style=\"text-align: center;\">GARDENS</h1>\r\n[/fusion_text][separator style_type=\"none\" top_margin=\"40\" bottom_margin=\"\" sep_color=\"\" border_size=\"\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"100%\" alignment=\"center\" class=\"\" id=\"\"][one_sixth last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][/one_sixth][two_third last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][fusion_text]\r\n<h3 style=\"text-align: center;\">Walk &amp; relax in our beautiful gardens.</h3>\r\n[/fusion_text][/two_third][one_sixth last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][/one_sixth][recent_works layout=\"grid\" picture_size=\"auto\" boxed_text=\"boxed\" filters=\"no\" columns=\"3\" column_spacing=\"12\" cat_slug=\"gardens\" exclude_cats=\"\" number_posts=\"9\" offset=\"\" excerpt_length=\"35\" strip_html=\"yes\" carousel_layout=\"title_on_rollover\" scroll_items=\"\" autoplay=\"no\" show_nav=\"yes\" mouse_scroll=\"no\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" class=\"\" id=\"\"][/recent_works][/fullwidth][fullwidth background_color=\"#ffffff\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"65px\" padding_bottom=\"65px\" padding_left=\"0px\" padding_right=\"0px\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][button link=\"http://localhost/assagaylodge/book-now/\" color=\"default\" size=\"xlarge\"  type=\"3d\" shape=\"round\" target=\"_self\" title=\"\" gradient_colors=\"#f0f0ed|#f0f0ed\" gradient_hover_colors=\"#6666a4|#6666a4\" accent_color=\"#ffffff\" accent_hover_color=\"#ffffff\" bevel_color=\"\" border_width=\"0px\" icon=\"\" icon_position=\"left\" icon_divider=\"no\" modal=\"\" animation_type=\"0\" animation_direction=\"left\" animation_speed=\"1\" alignment=\"center\" class=\"\" id=\"\"]Make A Reservation Enquiry[/button][/fullwidth][modal name=\"\" title=\"\" size=\"\" background=\"\" border_color=\"\" show_footer=\"\" class=\"\" id=\"\"][/modal]', 'Home', '', 'inherit', 'closed', 'closed', '', '7-revision-v1', '', '', '2015-09-08 11:32:43', '2015-09-08 09:32:43', '', 7, 'http://localhost/assagaylodge/7-revision-v1/', 0, 'revision', '', 0);
INSERT INTO `wp_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(977, 1, '2015-09-08 11:36:30', '2015-09-08 09:36:30', '[fullwidth background_color=\"\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"90px\" padding_bottom=\"0px\" padding_left=\"0px\" padding_right=\"0px\" hundred_percent=\"yes\" equal_height_columns=\"yes\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][one_half last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"http://localhost/assagaylodge/wp-content/uploads/2015/08/Tha-Lodge.jpg\" background_repeat=\"no-repeat\" background_position=\"center center\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" class=\"\" id=\"\"][/one_half][one_half last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"30px\" margin_top=\"\" margin_bottom=\"0px\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" class=\"special\" id=\"\"][fusion_text]\r\n<h1>5 BEDROOM FAMILY LODGE</h1>\r\n[/fusion_text][separator style_type=\"single\" top_margin=\"0\" bottom_margin=\"30\" sep_color=\"#000000\" border_size=\"\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"170px\" alignment=\"left\" class=\"separator-left\" id=\"\"][fusion_text]\r\n<h3>Self-Catering/Service Options/B&amp;B</h3>\r\n[/fusion_text][/one_half][/fullwidth][fullwidth background_color=\"\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding_top=\"20\" padding_bottom=\"20\" padding_left=\"0\" padding_right=\"0\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][modal name=\"test\" title=\"Test\" size=\"small\" background=\"\" border_color=\"\" show_footer=\"yes\" class=\"\" id=\"\"]testing[/modal][modal name=\"rates\" title=\"2015 Rates\" size=\"large\" background=\"\" border_color=\"\" show_footer=\"yes\" class=\"\" id=\"\"]SELF CATERING PER NIGHT\r\nR650 per room (Single)<br />R990 per room (Sharing - Sleeps 2)<br />R3000 per lodge (Max 10 guests)\r\n[/modal][/fullwidth][fullwidth background_color=\"\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"30px\" padding_bottom=\"60px\" padding_left=\"0px\" padding_right=\"0px\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][one_half last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][fusion_text]\r\n<p style=\"text-align: justify;\">The property boasts over 200 different species of birds and animals. The Lodge is situated on the 1000 Hills tourism route, on the edge of Hillcrest and is a perfect place from which one can launch to any one of the many fantastic destinations and game reserves in KwaZulu Natal, i.e. the Majestic Drakensberg Mountain Range, Shongweni Nature Reserve, Nagle Dam, Durban &amp; Beach Front. We are also the doorstep of one of KZN’s major horse riding venues namely, the Shongweni Horse Riding Club &amp; the Summerveld Horse Riding Academy, makes Assagay Lodge a perfect home away from home for the equestrian lovers. The peace &amp; tranquility will take you far away from the business of city life. Evenings are quiet and peaceful. This is a unique and memorable country experience.</p>\r\n[/fusion_text][/one_half][one_half last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][fusion_text]\r\n<p style=\"text-align: justify;\">We are a homely \'down to earth\' country guest lodge, set on a farm surrounded by acres of beautiful hills, forests, &amp; dams in the Madwala Conservancy of Assagay, where horses still have the right of way on all roads. Our five bedrooms have a rustic charm offering the comforts of modern day life.</p>\r\n<p style=\"text-align: justify;\">Assagay Forest Lodge is owner managed, built in 2005 the lodge provides 5 cozy bedrooms with a large spacious and comfortable homely lounge, which leads onto a large deck area. Set on a 6 acre property in the Assagay Conservancy our lodge is nestled around trees, bushes, and beautiful gardens and a stream, allowing visitors to meander and relax. Guests seeking a quite, relaxing, homely experience will find our lodge the perfect choice away from home. There is a kitchen available should you wish to muster up a snack or quick meal, however breakfast is available on request.</p>\r\n[/fusion_text][/one_half][/fullwidth][fullwidth background_color=\"#f0f0ed\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"60px\" padding_bottom=\"45px\" padding_left=\"0px\" padding_right=\"0px\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][fusion_text]\r\n<h1 style=\"text-align: center;\">Gallery</h1>\r\n[/fusion_text][separator style_type=\"single\" top_margin=\"\" bottom_margin=\"40\" sep_color=\"#000000\" border_size=\"\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"170px\" alignment=\"\" class=\"\" id=\"\"][one_sixth last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][/one_sixth][two_third last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][fusion_text]\r\n<h3 style=\"text-align: center;\">The Lodge is open, spacious, comfortable and homely.</h3>\r\n[/fusion_text][/two_third][one_sixth last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][/one_sixth][recent_works layout=\"grid\" picture_size=\"auto\" boxed_text=\"boxed\" filters=\"no\" columns=\"3\" column_spacing=\"12\" cat_slug=\"the-lodge\" exclude_cats=\"\" number_posts=\"9\" offset=\"\" excerpt_length=\"35\" strip_html=\"yes\" carousel_layout=\"title_on_rollover\" scroll_items=\"\" autoplay=\"no\" show_nav=\"yes\" mouse_scroll=\"no\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" class=\"\" id=\"\"][/recent_works][/fullwidth][fullwidth background_color=\"\" background_image=\"\" background_parallax=\"fixed\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"60px\" padding_bottom=\"35px\" padding_left=\"0px\" padding_right=\"0px\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][fusion_text]\r\n<h1 style=\"text-align: center;\">BEDROOMS</h1>\r\n[/fusion_text][separator style_type=\"single\" top_margin=\"\" bottom_margin=\"20\" sep_color=\"#000000\" border_size=\"\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"170px\" alignment=\"\" class=\"\" id=\"\"][one_sixth last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][/one_sixth][two_third last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][fusion_text]\r\n<h3 style=\"text-align: justify;\">When it comes to our bedrooms we’re proud to say we’re different. We offer something a little more special.</h3>\r\n<h3 style=\"text-align: justify;\">Our five bedrooms are all en-suite and equipped with either king size or queen size beds. Each room sleeps two guests. The rooms have high ceilings, wall heaters &amp; ceiling fans. Beds all have electric blankets in Winter, 100% cotton percale sheets and thick hyper allergenic microfiber duvets and pillows.</h3>\r\n[/fusion_text][/two_third][one_sixth last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][/one_sixth][/fullwidth][fullwidth background_color=\"\" background_image=\"http://localhost/assagaylodge/wp-content/uploads/2015/01/DSC01516-1148-x-764.jpg\" background_parallax=\"fixed\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"center center\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"60\" padding_bottom=\"20\" padding_left=\"0\" padding_right=\"0\" hundred_percent=\"no\" equal_height_columns=\"yes\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][recent_works layout=\"grid\" picture_size=\"auto\" boxed_text=\"unboxed\" filters=\"no\" columns=\"3\" column_spacing=\"12\" cat_slug=\"bedrooms\" exclude_cats=\"\" number_posts=\"6\" offset=\"\" excerpt_length=\"35\" strip_html=\"yes\" carousel_layout=\"title_on_rollover\" scroll_items=\"\" autoplay=\"no\" show_nav=\"yes\" mouse_scroll=\"no\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" class=\"\" id=\"\"][/recent_works][/fullwidth][fullwidth background_color=\"#f0f0ed\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"20\" padding_bottom=\"20\" padding_left=\"0\" padding_right=\"0\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][fusion_text]\r\n<h1 style=\"text-align: center;\">GARDENS</h1>\r\n[/fusion_text][separator style_type=\"none\" top_margin=\"40\" bottom_margin=\"\" sep_color=\"\" border_size=\"\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"100%\" alignment=\"center\" class=\"\" id=\"\"][one_sixth last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][/one_sixth][two_third last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][fusion_text]\r\n<h3 style=\"text-align: center;\">Walk &amp; relax in our beautiful gardens.</h3>\r\n[/fusion_text][/two_third][one_sixth last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][/one_sixth][recent_works layout=\"grid\" picture_size=\"auto\" boxed_text=\"boxed\" filters=\"no\" columns=\"3\" column_spacing=\"12\" cat_slug=\"gardens\" exclude_cats=\"\" number_posts=\"9\" offset=\"\" excerpt_length=\"35\" strip_html=\"yes\" carousel_layout=\"title_on_rollover\" scroll_items=\"\" autoplay=\"no\" show_nav=\"yes\" mouse_scroll=\"no\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" class=\"\" id=\"\"][/recent_works][/fullwidth][fullwidth background_color=\"#ffffff\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"65px\" padding_bottom=\"65px\" padding_left=\"0px\" padding_right=\"0px\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][button link=\"http://localhost/assagaylodge/book-now/\" color=\"default\" size=\"xlarge\"  type=\"3d\" shape=\"round\" target=\"_self\" title=\"\" gradient_colors=\"#f0f0ed|#f0f0ed\" gradient_hover_colors=\"#6666a4|#6666a4\" accent_color=\"#ffffff\" accent_hover_color=\"#ffffff\" bevel_color=\"\" border_width=\"0px\" icon=\"\" icon_position=\"left\" icon_divider=\"no\" modal=\"\" animation_type=\"0\" animation_direction=\"left\" animation_speed=\"1\" alignment=\"center\" class=\"\" id=\"\"]Make A Reservation Enquiry[/button][/fullwidth]', 'Home', '', 'inherit', 'closed', 'closed', '', '7-revision-v1', '', '', '2015-09-08 11:36:30', '2015-09-08 09:36:30', '', 7, 'http://localhost/assagaylodge/7-revision-v1/', 0, 'revision', '', 0),
(978, 1, '2015-09-08 11:38:50', '2015-09-08 09:38:50', '[fullwidth background_color=\"\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"70px\" padding_bottom=\"75px\" padding_left=\"0px\" padding_right=\"0px\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][one_half last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][fusion_text]<h3>Contact Us</h3>\r\nSend us a message.[/fusion_text][fusion_text][contact-form-7 id=\"246\" title=\"Contact form 1\"][/fusion_text][/one_half][one_half last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][fusion_text]\r\n<h3>FAQ</h3>\r\nStill not sure if we can be of help? Check through some frequently asked questions and then send us a message.[/fusion_text][separator style_type=\"none\" top_margin=\"\" bottom_margin=\"20\" sep_color=\"\" border_size=\"\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"\" alignment=\"\" class=\"\" id=\"\"][accordian class=\"\" id=\"\"][toggle title=\"GPS Location\" open=\"no\"]<p>\r\nGPS: Latitude(South)-29.771865, Longitude(East)30.736892</p>\r\n[/toggle][toggle title=\"Directions\" open=\"no\"]<p>\r\nGPS: Latitude(South)-29.771865, Longitude(East)30.736892</p>\r\n<p>Whether you are coming from Durban or Pietermaritzburg be sure to take the Shongweni / Assagay / Hillcrest turn off. This is known as Kassier Rd however it is poorly marked but it is nevertheless the road which you turn into from the highway. It runs from Shongweni, over both highways, through to Old Main Rd. Head towards Old Main Road, Hillcrest.</p>\r\n<p>Remain on Kassier Road for about 2-3km and turn into Assagay Road, a good land mark is the Assagay Nursery almost opposite this turn off, head up the rise. Turn left into Castle Road, carry down the dip for about 500m and cross a small water-bridge. Turn first right into Lello Road, just after the bridge. Continue on Lello Road, the road dips and briefly climbs, the valley falling away to your right. Finally, turn left into Williams Road (it\'s essentially the first left turn on Lello Road), Continue down Williams Road for about 800m. On your right you will come to the entrance of the farm called `Fourever`No 4 Williams Road. There’s a 1000 Hills Tourism Sign outside. A wooden fence and silver gate. Welcome to Assagay Lodge.</p>\r\n[/toggle][toggle title=\"Special Offers?\" open=\"no\"]<p>Please Enquire.</p>\r\n[/toggle][/accordian][/one_half][/fullwidth][fullwidth background_color=\"\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"0px\" padding_bottom=\"0px\" padding_left=\"0px\" padding_right=\"0px\" hundred_percent=\"yes\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][map address=\"Assagay Forest Lodge\" type=\"roadmap\" map_style=\"custom\" overlay_color=\"#6666a4\" infobox=\"custom\" infobox_background_color=\"rgba(102,102,164,.8)\" infobox_text_color=\"#ffffff\" infobox_content=\"\" icon=\"http://theme-fusion.com/avada_demos_xml/travel/wp-content/uploads/2015/01/map.png\" width=\"100%\" height=\"700px\" zoom=\"13\" scrollwheel=\"yes\" scale=\"yes\" zoom_pancontrol=\"yes\" animation=\"yes\" popup=\"no\" class=\"\" id=\"\"][/map][/fullwidth][fullwidth background_color=\"\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"0px\" padding_bottom=\"-30px\" padding_left=\"0px\" padding_right=\"0px\" hundred_percent=\"yes\" equal_height_columns=\"yes\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][one_third last=\"no\" spacing=\"no\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"#6666a4\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"10%\" margin_top=\"\" margin_bottom=\"0px\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" class=\"\" id=\"\"][content_boxes layout=\"icon-with-title\" title_size=\"\" icon_circle=\"\" icon_size=\"\" icon_align=\"left\" columns=\"1\" margin_top=\"\" margin_bottom=\"0px\" class=\"\" id=\"\"][content_box title=\"Call Us\" icon=\"fa-phone\" backgroundcolor=\"\" iconcolor=\"#ffffff\" circlecolor=\"#6666a4\" circlebordercolor=\"#6666a4\" iconflip=\"\" iconrotate=\"\" iconspin=\"no\" image=\"\" image_width=\"35\" image_height=\"35\" link=\"\" linktext=\"\" linktarget=\"_self\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\"]   <span style=\"color: #ffffff;\">Please call one of our specialist or pop into one of our travel shops and meet with an advisor in person. Alternatively, email us any questions and we will reply as quickly as possible. We look forward to being a small part of your next big adventure.</span>[/content_box][/content_boxes][/one_third][one_third last=\"no\" spacing=\"no\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"#7272b2\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"10%\" margin_top=\"\" margin_bottom=\"0px\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" class=\"\" id=\"\"][content_boxes layout=\"icon-with-title\" title_size=\"\" icon_circle=\"\" icon_size=\"\" icon_align=\"left\" columns=\"1\" margin_top=\"\" margin_bottom=\"0px\" class=\"\" id=\"\"][content_box title=\"Meet Us\" icon=\"fa-comments\" backgroundcolor=\"\" iconcolor=\"#ffffff\" circlecolor=\"#7272b2\" circlebordercolor=\"#7272b2\" iconflip=\"\" iconrotate=\"\" iconspin=\"no\" image=\"\" image_width=\"35\" image_height=\"35\" link=\"\" linktext=\"\" linktarget=\"_self\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\"]   <span style=\"color: #ffffff;\">Please call one of our specialist or pop into one of our travel shops and meet with an advisor in person. Alternatively, email us any questions and we will reply as quickly as possible. We look forward to being a small part of your next big adventure.</span>[/content_box][/content_boxes][/one_third][one_third last=\"yes\" spacing=\"no\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"#6666a4\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"10%\" margin_top=\"\" margin_bottom=\"0px\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" class=\"\" id=\"\"][content_boxes layout=\"icon-with-title\" title_size=\"\" icon_circle=\"\" icon_size=\"\" icon_align=\"left\" columns=\"1\" margin_top=\"\" margin_bottom=\"0px\" class=\"\" id=\"\"][content_box title=\"Ask Us\" icon=\"fa-phone\" backgroundcolor=\"\" iconcolor=\"#ffffff\" circlecolor=\"#6666a4\" circlebordercolor=\"#6666a4\" iconflip=\"\" iconrotate=\"\" iconspin=\"no\" image=\"\" image_width=\"35\" image_height=\"35\" link=\"\" linktext=\"\" linktarget=\"_self\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\"]   <span style=\"color: #ffffff;\">Please call one of our specialist or pop into one of our travel shops and meet with an advisor in person. Alternatively, email us any questions and we will reply as quickly as possible. We look forward to being a small part of your next big adventure.</span>[/content_box][/content_boxes][/one_third][/fullwidth]', 'Make a reservation', '', 'inherit', 'closed', 'closed', '', '11-revision-v1', '', '', '2015-09-08 11:38:50', '2015-09-08 09:38:50', '', 11, 'http://localhost/assagaylodge/11-revision-v1/', 0, 'revision', '', 0),
(979, 1, '2015-09-08 11:42:30', '2015-09-08 09:42:30', '[fullwidth background_color=\"\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"90px\" padding_bottom=\"0px\" padding_left=\"0px\" padding_right=\"0px\" hundred_percent=\"yes\" equal_height_columns=\"yes\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][one_half last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"http://localhost/assagaylodge/wp-content/uploads/2015/08/Tha-Lodge.jpg\" background_repeat=\"no-repeat\" background_position=\"center center\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" class=\"\" id=\"\"][/one_half][one_half last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"30px\" margin_top=\"\" margin_bottom=\"0px\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" class=\"special\" id=\"\"][fusion_text]\r\n<h1>5 BEDROOM FAMILY LODGE</h1>\r\n[/fusion_text][separator style_type=\"single\" top_margin=\"0\" bottom_margin=\"30\" sep_color=\"#000000\" border_size=\"\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"170px\" alignment=\"left\" class=\"separator-left\" id=\"\"][fusion_text]\r\n<h3>Self-Catering/Service Options/B&amp;B</h3>\r\n[/fusion_text][/one_half][/fullwidth][fullwidth background_color=\"\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding_top=\"20\" padding_bottom=\"20\" padding_left=\"0\" padding_right=\"0\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][fusion_text][pricing_table type=\"1\" backgroundcolor=\"\" bordercolor=\"\" dividercolor=\"\" class=\"\" id=\"\"]\r\n[pricing_column title=\'Standard\'][pricing_price currency=\'$\' price=\'15.55\' time=\'monthly\'][/pricing_price][pricing_row]Feature 1[/pricing_row][pricing_footer]Signup[/pricing_footer][/pricing_column]\r\n[pricing_column title=\'Standard\'][pricing_price currency=\'$\' price=\'15.55\' time=\'monthly\'][/pricing_price][pricing_row]Feature 1[/pricing_row][pricing_footer]Signup[/pricing_footer][/pricing_column]\r\n[pricing_column title=\'Standard\'][pricing_price currency=\'$\' price=\'15.55\' time=\'monthly\'][/pricing_price][pricing_row]Feature 1[/pricing_row][pricing_footer]Signup[/pricing_footer][/pricing_column]\r\n[/pricing_table][/fusion_text][modal name=\"rates\" title=\"2015 Rates\" size=\"large\" background=\"\" border_color=\"\" show_footer=\"yes\" class=\"\" id=\"\"]SELF CATERING PER NIGHT\r\nR650 per room (Single)<br />R990 per room (Sharing - Sleeps 2)<br />R3000 per lodge (Max 10 guests)\r\n[/modal][/fullwidth][fullwidth background_color=\"\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"30px\" padding_bottom=\"60px\" padding_left=\"0px\" padding_right=\"0px\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][one_half last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][fusion_text]\r\n<p style=\"text-align: justify;\">The property boasts over 200 different species of birds and animals. The Lodge is situated on the 1000 Hills tourism route, on the edge of Hillcrest and is a perfect place from which one can launch to any one of the many fantastic destinations and game reserves in KwaZulu Natal, i.e. the Majestic Drakensberg Mountain Range, Shongweni Nature Reserve, Nagle Dam, Durban &amp; Beach Front. We are also the doorstep of one of KZN’s major horse riding venues namely, the Shongweni Horse Riding Club &amp; the Summerveld Horse Riding Academy, makes Assagay Lodge a perfect home away from home for the equestrian lovers. The peace &amp; tranquility will take you far away from the business of city life. Evenings are quiet and peaceful. This is a unique and memorable country experience.</p>\r\n[/fusion_text][/one_half][one_half last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][fusion_text]\r\n<p style=\"text-align: justify;\">We are a homely \'down to earth\' country guest lodge, set on a farm surrounded by acres of beautiful hills, forests, &amp; dams in the Madwala Conservancy of Assagay, where horses still have the right of way on all roads. Our five bedrooms have a rustic charm offering the comforts of modern day life.</p>\r\n<p style=\"text-align: justify;\">Assagay Forest Lodge is owner managed, built in 2005 the lodge provides 5 cozy bedrooms with a large spacious and comfortable homely lounge, which leads onto a large deck area. Set on a 6 acre property in the Assagay Conservancy our lodge is nestled around trees, bushes, and beautiful gardens and a stream, allowing visitors to meander and relax. Guests seeking a quite, relaxing, homely experience will find our lodge the perfect choice away from home. There is a kitchen available should you wish to muster up a snack or quick meal, however breakfast is available on request.</p>\r\n[/fusion_text][/one_half][/fullwidth][fullwidth background_color=\"#f0f0ed\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"60px\" padding_bottom=\"45px\" padding_left=\"0px\" padding_right=\"0px\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][fusion_text]\r\n<h1 style=\"text-align: center;\">Gallery</h1>\r\n[/fusion_text][separator style_type=\"single\" top_margin=\"\" bottom_margin=\"40\" sep_color=\"#000000\" border_size=\"\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"170px\" alignment=\"\" class=\"\" id=\"\"][one_sixth last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][/one_sixth][two_third last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][fusion_text]\r\n<h3 style=\"text-align: center;\">The Lodge is open, spacious, comfortable and homely.</h3>\r\n[/fusion_text][/two_third][one_sixth last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][/one_sixth][recent_works layout=\"grid\" picture_size=\"auto\" boxed_text=\"boxed\" filters=\"no\" columns=\"3\" column_spacing=\"12\" cat_slug=\"the-lodge\" exclude_cats=\"\" number_posts=\"9\" offset=\"\" excerpt_length=\"35\" strip_html=\"yes\" carousel_layout=\"title_on_rollover\" scroll_items=\"\" autoplay=\"no\" show_nav=\"yes\" mouse_scroll=\"no\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" class=\"\" id=\"\"][/recent_works][/fullwidth][fullwidth background_color=\"\" background_image=\"\" background_parallax=\"fixed\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"60px\" padding_bottom=\"35px\" padding_left=\"0px\" padding_right=\"0px\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][fusion_text]\r\n<h1 style=\"text-align: center;\">BEDROOMS</h1>\r\n[/fusion_text][separator style_type=\"single\" top_margin=\"\" bottom_margin=\"20\" sep_color=\"#000000\" border_size=\"\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"170px\" alignment=\"\" class=\"\" id=\"\"][one_sixth last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][/one_sixth][two_third last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][fusion_text]\r\n<h3 style=\"text-align: justify;\">When it comes to our bedrooms we’re proud to say we’re different. We offer something a little more special.</h3>\r\n<h3 style=\"text-align: justify;\">Our five bedrooms are all en-suite and equipped with either king size or queen size beds. Each room sleeps two guests. The rooms have high ceilings, wall heaters &amp; ceiling fans. Beds all have electric blankets in Winter, 100% cotton percale sheets and thick hyper allergenic microfiber duvets and pillows.</h3>\r\n[/fusion_text][/two_third][one_sixth last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][/one_sixth][/fullwidth][fullwidth background_color=\"\" background_image=\"http://localhost/assagaylodge/wp-content/uploads/2015/01/DSC01516-1148-x-764.jpg\" background_parallax=\"fixed\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"center center\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"60\" padding_bottom=\"20\" padding_left=\"0\" padding_right=\"0\" hundred_percent=\"no\" equal_height_columns=\"yes\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][recent_works layout=\"grid\" picture_size=\"auto\" boxed_text=\"unboxed\" filters=\"no\" columns=\"3\" column_spacing=\"12\" cat_slug=\"bedrooms\" exclude_cats=\"\" number_posts=\"6\" offset=\"\" excerpt_length=\"35\" strip_html=\"yes\" carousel_layout=\"title_on_rollover\" scroll_items=\"\" autoplay=\"no\" show_nav=\"yes\" mouse_scroll=\"no\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" class=\"\" id=\"\"][/recent_works][/fullwidth][fullwidth background_color=\"#f0f0ed\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"20\" padding_bottom=\"20\" padding_left=\"0\" padding_right=\"0\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][fusion_text]\r\n<h1 style=\"text-align: center;\">GARDENS</h1>\r\n[/fusion_text][separator style_type=\"none\" top_margin=\"40\" bottom_margin=\"\" sep_color=\"\" border_size=\"\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"100%\" alignment=\"center\" class=\"\" id=\"\"][one_sixth last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][/one_sixth][two_third last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][fusion_text]\r\n<h3 style=\"text-align: center;\">Walk &amp; relax in our beautiful gardens.</h3>\r\n[/fusion_text][/two_third][one_sixth last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][/one_sixth][recent_works layout=\"grid\" picture_size=\"auto\" boxed_text=\"boxed\" filters=\"no\" columns=\"3\" column_spacing=\"12\" cat_slug=\"gardens\" exclude_cats=\"\" number_posts=\"9\" offset=\"\" excerpt_length=\"35\" strip_html=\"yes\" carousel_layout=\"title_on_rollover\" scroll_items=\"\" autoplay=\"no\" show_nav=\"yes\" mouse_scroll=\"no\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" class=\"\" id=\"\"][/recent_works][/fullwidth][fullwidth background_color=\"#ffffff\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"65px\" padding_bottom=\"65px\" padding_left=\"0px\" padding_right=\"0px\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][button link=\"http://localhost/assagaylodge/book-now/\" color=\"default\" size=\"xlarge\"  type=\"3d\" shape=\"round\" target=\"_self\" title=\"\" gradient_colors=\"#f0f0ed|#f0f0ed\" gradient_hover_colors=\"#6666a4|#6666a4\" accent_color=\"#ffffff\" accent_hover_color=\"#ffffff\" bevel_color=\"\" border_width=\"0px\" icon=\"\" icon_position=\"left\" icon_divider=\"no\" modal=\"\" animation_type=\"0\" animation_direction=\"left\" animation_speed=\"1\" alignment=\"center\" class=\"\" id=\"\"]Make A Reservation Enquiry[/button][/fullwidth]', 'Home', '', 'inherit', 'closed', 'closed', '', '7-revision-v1', '', '', '2015-09-08 11:42:30', '2015-09-08 09:42:30', '', 7, 'http://localhost/assagaylodge/7-revision-v1/', 0, 'revision', '', 0);
INSERT INTO `wp_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(980, 1, '2015-09-08 11:46:05', '2015-09-08 09:46:05', '[fullwidth background_color=\"\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"90px\" padding_bottom=\"0px\" padding_left=\"0px\" padding_right=\"0px\" hundred_percent=\"yes\" equal_height_columns=\"yes\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][one_half last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"http://localhost/assagaylodge/wp-content/uploads/2015/08/Tha-Lodge.jpg\" background_repeat=\"no-repeat\" background_position=\"center center\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" class=\"\" id=\"\"][/one_half][one_half last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"30px\" margin_top=\"\" margin_bottom=\"0px\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" class=\"special\" id=\"\"][fusion_text]\r\n<h1>5 BEDROOM FAMILY LODGE</h1>\r\n[/fusion_text][separator style_type=\"single\" top_margin=\"0\" bottom_margin=\"30\" sep_color=\"#000000\" border_size=\"\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"170px\" alignment=\"left\" class=\"separator-left\" id=\"\"][fusion_text]\r\n<h3>Self-Catering/Service Options/B&amp;B</h3>\r\n[/fusion_text][/one_half][/fullwidth][fullwidth background_color=\"\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"20\" padding_bottom=\"20\" padding_left=\"0\" padding_right=\"0\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][modal name=\"rates\" title=\"Rates\" size=\"small\" background=\"\" border_color=\"\" show_footer=\"yes\" class=\"\" id=\"\"]\r\n\r\nSELF CATERING PER NIGHT\r\nR650 per room (Single)\r\nR990 per room (Sharing - Sleeps 2)\r\nR3000 per lodge (Max 10 guests)\r\n\r\n[/modal][/fullwidth][fullwidth background_color=\"\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"30px\" padding_bottom=\"60px\" padding_left=\"0px\" padding_right=\"0px\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][one_half last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][fusion_text]\r\n<p style=\"text-align: justify;\">The property boasts over 200 different species of birds and animals. The Lodge is situated on the 1000 Hills tourism route, on the edge of Hillcrest and is a perfect place from which one can launch to any one of the many fantastic destinations and game reserves in KwaZulu Natal, i.e. the Majestic Drakensberg Mountain Range, Shongweni Nature Reserve, Nagle Dam, Durban &amp; Beach Front. We are also the doorstep of one of KZN’s major horse riding venues namely, the Shongweni Horse Riding Club &amp; the Summerveld Horse Riding Academy, makes Assagay Lodge a perfect home away from home for the equestrian lovers. The peace &amp; tranquility will take you far away from the business of city life. Evenings are quiet and peaceful. This is a unique and memorable country experience.</p>\r\n[/fusion_text][/one_half][one_half last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][fusion_text]\r\n<p style=\"text-align: justify;\">We are a homely \'down to earth\' country guest lodge, set on a farm surrounded by acres of beautiful hills, forests, &amp; dams in the Madwala Conservancy of Assagay, where horses still have the right of way on all roads. Our five bedrooms have a rustic charm offering the comforts of modern day life.</p>\r\n<p style=\"text-align: justify;\">Assagay Forest Lodge is owner managed, built in 2005 the lodge provides 5 cozy bedrooms with a large spacious and comfortable homely lounge, which leads onto a large deck area. Set on a 6 acre property in the Assagay Conservancy our lodge is nestled around trees, bushes, and beautiful gardens and a stream, allowing visitors to meander and relax. Guests seeking a quite, relaxing, homely experience will find our lodge the perfect choice away from home. There is a kitchen available should you wish to muster up a snack or quick meal, however breakfast is available on request.</p>\r\n[/fusion_text][/one_half][/fullwidth][fullwidth background_color=\"#f0f0ed\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"60px\" padding_bottom=\"45px\" padding_left=\"0px\" padding_right=\"0px\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][fusion_text]\r\n<h1 style=\"text-align: center;\">Gallery</h1>\r\n[/fusion_text][separator style_type=\"single\" top_margin=\"\" bottom_margin=\"40\" sep_color=\"#000000\" border_size=\"\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"170px\" alignment=\"\" class=\"\" id=\"\"][one_sixth last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][/one_sixth][two_third last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][fusion_text]\r\n<h3 style=\"text-align: center;\">The Lodge is open, spacious, comfortable and homely.</h3>\r\n[/fusion_text][/two_third][one_sixth last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][/one_sixth][recent_works layout=\"grid\" picture_size=\"auto\" boxed_text=\"boxed\" filters=\"no\" columns=\"3\" column_spacing=\"12\" cat_slug=\"the-lodge\" exclude_cats=\"\" number_posts=\"9\" offset=\"\" excerpt_length=\"35\" strip_html=\"yes\" carousel_layout=\"title_on_rollover\" scroll_items=\"\" autoplay=\"no\" show_nav=\"yes\" mouse_scroll=\"no\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" class=\"\" id=\"\"][/recent_works][/fullwidth][fullwidth background_color=\"\" background_image=\"\" background_parallax=\"fixed\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"60px\" padding_bottom=\"35px\" padding_left=\"0px\" padding_right=\"0px\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][fusion_text]\r\n<h1 style=\"text-align: center;\">BEDROOMS</h1>\r\n[/fusion_text][separator style_type=\"single\" top_margin=\"\" bottom_margin=\"20\" sep_color=\"#000000\" border_size=\"\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"170px\" alignment=\"\" class=\"\" id=\"\"][one_sixth last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][/one_sixth][two_third last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][fusion_text]\r\n<h3 style=\"text-align: justify;\">When it comes to our bedrooms we’re proud to say we’re different. We offer something a little more special.</h3>\r\n<h3 style=\"text-align: justify;\">Our five bedrooms are all en-suite and equipped with either king size or queen size beds. Each room sleeps two guests. The rooms have high ceilings, wall heaters &amp; ceiling fans. Beds all have electric blankets in Winter, 100% cotton percale sheets and thick hyper allergenic microfiber duvets and pillows.</h3>\r\n[/fusion_text][/two_third][one_sixth last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][/one_sixth][/fullwidth][fullwidth background_color=\"\" background_image=\"http://localhost/assagaylodge/wp-content/uploads/2015/01/DSC01516-1148-x-764.jpg\" background_parallax=\"fixed\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"center center\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"60\" padding_bottom=\"20\" padding_left=\"0\" padding_right=\"0\" hundred_percent=\"no\" equal_height_columns=\"yes\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][recent_works layout=\"grid\" picture_size=\"auto\" boxed_text=\"unboxed\" filters=\"no\" columns=\"3\" column_spacing=\"12\" cat_slug=\"bedrooms\" exclude_cats=\"\" number_posts=\"6\" offset=\"\" excerpt_length=\"35\" strip_html=\"yes\" carousel_layout=\"title_on_rollover\" scroll_items=\"\" autoplay=\"no\" show_nav=\"yes\" mouse_scroll=\"no\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" class=\"\" id=\"\"][/recent_works][/fullwidth][fullwidth background_color=\"#f0f0ed\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"20\" padding_bottom=\"20\" padding_left=\"0\" padding_right=\"0\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][fusion_text]\r\n<h1 style=\"text-align: center;\">GARDENS</h1>\r\n[/fusion_text][separator style_type=\"none\" top_margin=\"40\" bottom_margin=\"\" sep_color=\"\" border_size=\"\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"100%\" alignment=\"center\" class=\"\" id=\"\"][one_sixth last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][/one_sixth][two_third last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][fusion_text]\r\n<h3 style=\"text-align: center;\">Walk &amp; relax in our beautiful gardens.</h3>\r\n[/fusion_text][/two_third][one_sixth last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][/one_sixth][recent_works layout=\"grid\" picture_size=\"auto\" boxed_text=\"boxed\" filters=\"no\" columns=\"3\" column_spacing=\"12\" cat_slug=\"gardens\" exclude_cats=\"\" number_posts=\"9\" offset=\"\" excerpt_length=\"35\" strip_html=\"yes\" carousel_layout=\"title_on_rollover\" scroll_items=\"\" autoplay=\"no\" show_nav=\"yes\" mouse_scroll=\"no\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" class=\"\" id=\"\"][/recent_works][/fullwidth][fullwidth background_color=\"#ffffff\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"65px\" padding_bottom=\"65px\" padding_left=\"0px\" padding_right=\"0px\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][button link=\"http://localhost/assagaylodge/book-now/\" color=\"default\" size=\"xlarge\" type=\"3d\" shape=\"round\" target=\"_self\" title=\"\" gradient_colors=\"#f0f0ed|#f0f0ed\" gradient_hover_colors=\"#6666a4|#6666a4\" accent_color=\"#ffffff\" accent_hover_color=\"#ffffff\" bevel_color=\"\" border_width=\"0px\" icon=\"\" icon_position=\"left\" icon_divider=\"no\" modal=\"\" animation_type=\"0\" animation_direction=\"left\" animation_speed=\"1\" alignment=\"center\" class=\"\" id=\"\"]Make A Reservation Enquiry[/button][/fullwidth]', 'Home', '', 'inherit', 'closed', 'closed', '', '7-revision-v1', '', '', '2015-09-08 11:46:05', '2015-09-08 09:46:05', '', 7, 'http://localhost/assagaylodge/7-revision-v1/', 0, 'revision', '', 0),
(981, 1, '2015-09-08 11:49:03', '2015-09-08 09:49:03', '[fullwidth background_color=\"\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"90px\" padding_bottom=\"0px\" padding_left=\"0px\" padding_right=\"0px\" hundred_percent=\"yes\" equal_height_columns=\"yes\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][one_half last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"http://localhost/assagaylodge/wp-content/uploads/2015/08/Tha-Lodge.jpg\" background_repeat=\"no-repeat\" background_position=\"center center\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" class=\"\" id=\"\"][/one_half][one_half last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"30px\" margin_top=\"\" margin_bottom=\"0px\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" class=\"special\" id=\"\"][fusion_text]\r\n<h1>5 BEDROOM FAMILY LODGE</h1>\r\n[/fusion_text][separator style_type=\"single\" top_margin=\"0\" bottom_margin=\"30\" sep_color=\"#000000\" border_size=\"\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"170px\" alignment=\"left\" class=\"separator-left\" id=\"\"][fusion_text]\r\n<h3>Self-Catering/Service Options/B&amp;B</h3>\r\n[/fusion_text][/one_half][/fullwidth][fullwidth background_color=\"\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"20\" padding_bottom=\"20\" padding_left=\"0\" padding_right=\"0\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][modal name=\"rates\" title=\"Rates\" size=\"small\" background=\"\" border_color=\"\" show_footer=\"yes\" class=\"\" id=\"\"]\r\n\r\nSELF CATERING PER NIGHT\r\nR650 per room (Single)\r\nR990 per room (Sharing - Sleeps 2)\r\nR3000 per lodge (Max 10 guests)\r\n\r\n[/modal][fusion_text][modal name=\"rates\" title=\"Rates\" size=\"small\" background=\"\" border_color=\"\" show_footer=\"yes\" class=\"\" id=\"\"]Your Content Goes Here[/modal][/fusion_text][/fullwidth][fullwidth background_color=\"\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"30px\" padding_bottom=\"60px\" padding_left=\"0px\" padding_right=\"0px\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][one_half last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][fusion_text]\r\n<p style=\"text-align: justify;\">The property boasts over 200 different species of birds and animals. The Lodge is situated on the 1000 Hills tourism route, on the edge of Hillcrest and is a perfect place from which one can launch to any one of the many fantastic destinations and game reserves in KwaZulu Natal, i.e. the Majestic Drakensberg Mountain Range, Shongweni Nature Reserve, Nagle Dam, Durban &amp; Beach Front. We are also the doorstep of one of KZN’s major horse riding venues namely, the Shongweni Horse Riding Club &amp; the Summerveld Horse Riding Academy, makes Assagay Lodge a perfect home away from home for the equestrian lovers. The peace &amp; tranquility will take you far away from the business of city life. Evenings are quiet and peaceful. This is a unique and memorable country experience.</p>\r\n[/fusion_text][/one_half][one_half last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][fusion_text]\r\n<p style=\"text-align: justify;\">We are a homely \'down to earth\' country guest lodge, set on a farm surrounded by acres of beautiful hills, forests, &amp; dams in the Madwala Conservancy of Assagay, where horses still have the right of way on all roads. Our five bedrooms have a rustic charm offering the comforts of modern day life.</p>\r\n<p style=\"text-align: justify;\">Assagay Forest Lodge is owner managed, built in 2005 the lodge provides 5 cozy bedrooms with a large spacious and comfortable homely lounge, which leads onto a large deck area. Set on a 6 acre property in the Assagay Conservancy our lodge is nestled around trees, bushes, and beautiful gardens and a stream, allowing visitors to meander and relax. Guests seeking a quite, relaxing, homely experience will find our lodge the perfect choice away from home. There is a kitchen available should you wish to muster up a snack or quick meal, however breakfast is available on request.</p>\r\n[/fusion_text][/one_half][/fullwidth][fullwidth background_color=\"#f0f0ed\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"60px\" padding_bottom=\"45px\" padding_left=\"0px\" padding_right=\"0px\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][fusion_text]\r\n<h1 style=\"text-align: center;\">Gallery</h1>\r\n[/fusion_text][separator style_type=\"single\" top_margin=\"\" bottom_margin=\"40\" sep_color=\"#000000\" border_size=\"\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"170px\" alignment=\"\" class=\"\" id=\"\"][one_sixth last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][/one_sixth][two_third last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][fusion_text]\r\n<h3 style=\"text-align: center;\">The Lodge is open, spacious, comfortable and homely.</h3>\r\n[/fusion_text][/two_third][one_sixth last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][/one_sixth][recent_works layout=\"grid\" picture_size=\"auto\" boxed_text=\"boxed\" filters=\"no\" columns=\"3\" column_spacing=\"12\" cat_slug=\"the-lodge\" exclude_cats=\"\" number_posts=\"9\" offset=\"\" excerpt_length=\"35\" strip_html=\"yes\" carousel_layout=\"title_on_rollover\" scroll_items=\"\" autoplay=\"no\" show_nav=\"yes\" mouse_scroll=\"no\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" class=\"\" id=\"\"][/recent_works][/fullwidth][fullwidth background_color=\"\" background_image=\"\" background_parallax=\"fixed\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"60px\" padding_bottom=\"35px\" padding_left=\"0px\" padding_right=\"0px\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][fusion_text]\r\n<h1 style=\"text-align: center;\">BEDROOMS</h1>\r\n[/fusion_text][separator style_type=\"single\" top_margin=\"\" bottom_margin=\"20\" sep_color=\"#000000\" border_size=\"\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"170px\" alignment=\"\" class=\"\" id=\"\"][one_sixth last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][/one_sixth][two_third last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][fusion_text]\r\n<h3 style=\"text-align: justify;\">When it comes to our bedrooms we’re proud to say we’re different. We offer something a little more special.</h3>\r\n<h3 style=\"text-align: justify;\">Our five bedrooms are all en-suite and equipped with either king size or queen size beds. Each room sleeps two guests. The rooms have high ceilings, wall heaters &amp; ceiling fans. Beds all have electric blankets in Winter, 100% cotton percale sheets and thick hyper allergenic microfiber duvets and pillows.</h3>\r\n[/fusion_text][/two_third][one_sixth last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][/one_sixth][/fullwidth][fullwidth background_color=\"\" background_image=\"http://localhost/assagaylodge/wp-content/uploads/2015/01/DSC01516-1148-x-764.jpg\" background_parallax=\"fixed\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"center center\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"60\" padding_bottom=\"20\" padding_left=\"0\" padding_right=\"0\" hundred_percent=\"no\" equal_height_columns=\"yes\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][recent_works layout=\"grid\" picture_size=\"auto\" boxed_text=\"unboxed\" filters=\"no\" columns=\"3\" column_spacing=\"12\" cat_slug=\"bedrooms\" exclude_cats=\"\" number_posts=\"6\" offset=\"\" excerpt_length=\"35\" strip_html=\"yes\" carousel_layout=\"title_on_rollover\" scroll_items=\"\" autoplay=\"no\" show_nav=\"yes\" mouse_scroll=\"no\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" class=\"\" id=\"\"][/recent_works][/fullwidth][fullwidth background_color=\"#f0f0ed\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"20\" padding_bottom=\"20\" padding_left=\"0\" padding_right=\"0\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][fusion_text]\r\n<h1 style=\"text-align: center;\">GARDENS</h1>\r\n[/fusion_text][separator style_type=\"none\" top_margin=\"40\" bottom_margin=\"\" sep_color=\"\" border_size=\"\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"100%\" alignment=\"center\" class=\"\" id=\"\"][one_sixth last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][/one_sixth][two_third last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][fusion_text]\r\n<h3 style=\"text-align: center;\">Walk &amp; relax in our beautiful gardens.</h3>\r\n[/fusion_text][/two_third][one_sixth last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][/one_sixth][recent_works layout=\"grid\" picture_size=\"auto\" boxed_text=\"boxed\" filters=\"no\" columns=\"3\" column_spacing=\"12\" cat_slug=\"gardens\" exclude_cats=\"\" number_posts=\"9\" offset=\"\" excerpt_length=\"35\" strip_html=\"yes\" carousel_layout=\"title_on_rollover\" scroll_items=\"\" autoplay=\"no\" show_nav=\"yes\" mouse_scroll=\"no\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" class=\"\" id=\"\"][/recent_works][/fullwidth][fullwidth background_color=\"#ffffff\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"65px\" padding_bottom=\"65px\" padding_left=\"0px\" padding_right=\"0px\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][button link=\"http://localhost/assagaylodge/book-now/\" color=\"default\" size=\"xlarge\"  type=\"3d\" shape=\"round\" target=\"_self\" title=\"\" gradient_colors=\"#f0f0ed|#f0f0ed\" gradient_hover_colors=\"#6666a4|#6666a4\" accent_color=\"#ffffff\" accent_hover_color=\"#ffffff\" bevel_color=\"\" border_width=\"0px\" icon=\"\" icon_position=\"left\" icon_divider=\"no\" modal=\"\" animation_type=\"0\" animation_direction=\"left\" animation_speed=\"1\" alignment=\"center\" class=\"\" id=\"\"]Make A Reservation Enquiry[/button][/fullwidth]', 'Home', '', 'inherit', 'closed', 'closed', '', '7-revision-v1', '', '', '2015-09-08 11:49:03', '2015-09-08 09:49:03', '', 7, 'http://localhost/assagaylodge/7-revision-v1/', 0, 'revision', '', 0);
INSERT INTO `wp_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(982, 1, '2015-09-08 11:54:13', '2015-09-08 09:54:13', '[fullwidth background_color=\"\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"90px\" padding_bottom=\"0px\" padding_left=\"0px\" padding_right=\"0px\" hundred_percent=\"yes\" equal_height_columns=\"yes\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][one_half last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"http://localhost/assagaylodge/wp-content/uploads/2015/08/Tha-Lodge.jpg\" background_repeat=\"no-repeat\" background_position=\"center center\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" class=\"\" id=\"\"][/one_half][one_half last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"30px\" margin_top=\"\" margin_bottom=\"0px\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" class=\"special\" id=\"\"][fusion_text]\r\n<h1>5 BEDROOM FAMILY LODGE</h1>\r\n[/fusion_text][separator style_type=\"single\" top_margin=\"0\" bottom_margin=\"30\" sep_color=\"#000000\" border_size=\"\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"170px\" alignment=\"left\" class=\"separator-left\" id=\"\"][checklist icon=\"fa-star-o\" iconcolor=\"\" circle=\"\" circlecolor=\"\" size=\"13px\" class=\"\" id=\"\"][li_item icon=\"\"]Self-Catering[/li_item][li_item icon=\"\"]Service Options[/li_item][li_item icon=\"\"]Bed &amp; Breakfast[/li_item][/checklist][/one_half][/fullwidth][fullwidth background_color=\"\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"20\" padding_bottom=\"20\" padding_left=\"0\" padding_right=\"0\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][fusion_text][modal name=\"rates\" title=\"Rates\" size=\"small\" background=\"\" border_color=\"\" show_footer=\"yes\" class=\"\" id=\"\"]Your Content Goes Here[/modal][/fusion_text][/fullwidth][modal name=\"rates\" title=\"Rates\" size=\"small\" background=\"\" border_color=\"\" show_footer=\"yes\" class=\"\" id=\"\"]\r\n\r\nSELF CATERING PER NIGHT\r\nR650 per room (Single)\r\nR990 per room (Sharing - Sleeps 2)\r\nR3000 per lodge (Max 10 guests)\r\n\r\n[/modal][fullwidth background_color=\"\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"30px\" padding_bottom=\"60px\" padding_left=\"0px\" padding_right=\"0px\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][one_half last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][fusion_text]\r\n<p style=\"text-align: justify;\">The property boasts over 200 different species of birds and animals. The Lodge is situated on the 1000 Hills tourism route, on the edge of Hillcrest and is a perfect place from which one can launch to any one of the many fantastic destinations and game reserves in KwaZulu Natal, i.e. the Majestic Drakensberg Mountain Range, Shongweni Nature Reserve, Nagle Dam, Durban &amp; Beach Front. We are also the doorstep of one of KZN’s major horse riding venues namely, the Shongweni Horse Riding Club &amp; the Summerveld Horse Riding Academy, makes Assagay Lodge a perfect home away from home for the equestrian lovers. The peace &amp; tranquility will take you far away from the business of city life. Evenings are quiet and peaceful. This is a unique and memorable country experience.</p>\r\n[/fusion_text][/one_half][one_half last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][fusion_text]\r\n<p style=\"text-align: justify;\">We are a homely \'down to earth\' country guest lodge, set on a farm surrounded by acres of beautiful hills, forests, &amp; dams in the Madwala Conservancy of Assagay, where horses still have the right of way on all roads. Our five bedrooms have a rustic charm offering the comforts of modern day life.</p>\r\n<p style=\"text-align: justify;\">Assagay Forest Lodge is owner managed, built in 2005 the lodge provides 5 cozy bedrooms with a large spacious and comfortable homely lounge, which leads onto a large deck area. Set on a 6 acre property in the Assagay Conservancy our lodge is nestled around trees, bushes, and beautiful gardens and a stream, allowing visitors to meander and relax. Guests seeking a quite, relaxing, homely experience will find our lodge the perfect choice away from home. There is a kitchen available should you wish to muster up a snack or quick meal, however breakfast is available on request.</p>\r\n[/fusion_text][/one_half][/fullwidth][fullwidth background_color=\"#f0f0ed\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"60px\" padding_bottom=\"45px\" padding_left=\"0px\" padding_right=\"0px\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][fusion_text]\r\n<h1 style=\"text-align: center;\">Gallery</h1>\r\n[/fusion_text][separator style_type=\"single\" top_margin=\"\" bottom_margin=\"40\" sep_color=\"#000000\" border_size=\"\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"170px\" alignment=\"\" class=\"\" id=\"\"][one_sixth last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][/one_sixth][two_third last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][fusion_text]\r\n<h3 style=\"text-align: center;\">The Lodge is open, spacious, comfortable and homely.</h3>\r\n[/fusion_text][/two_third][one_sixth last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][/one_sixth][recent_works layout=\"grid\" picture_size=\"auto\" boxed_text=\"boxed\" filters=\"no\" columns=\"3\" column_spacing=\"12\" cat_slug=\"the-lodge\" exclude_cats=\"\" number_posts=\"9\" offset=\"\" excerpt_length=\"35\" strip_html=\"yes\" carousel_layout=\"title_on_rollover\" scroll_items=\"\" autoplay=\"no\" show_nav=\"yes\" mouse_scroll=\"no\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" class=\"\" id=\"\"][/recent_works][/fullwidth][fullwidth background_color=\"\" background_image=\"\" background_parallax=\"fixed\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"60px\" padding_bottom=\"35px\" padding_left=\"0px\" padding_right=\"0px\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][fusion_text]\r\n<h1 style=\"text-align: center;\">BEDROOMS</h1>\r\n[/fusion_text][separator style_type=\"single\" top_margin=\"\" bottom_margin=\"20\" sep_color=\"#000000\" border_size=\"\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"170px\" alignment=\"\" class=\"\" id=\"\"][one_sixth last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][/one_sixth][two_third last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][fusion_text]\r\n<h3 style=\"text-align: justify;\">When it comes to our bedrooms we’re proud to say we’re different. We offer something a little more special.</h3>\r\n<h3 style=\"text-align: justify;\">Our five bedrooms are all en-suite and equipped with either king size or queen size beds. Each room sleeps two guests. The rooms have high ceilings, wall heaters &amp; ceiling fans. Beds all have electric blankets in Winter, 100% cotton percale sheets and thick hyper allergenic microfiber duvets and pillows.</h3>\r\n[/fusion_text][/two_third][one_sixth last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][/one_sixth][/fullwidth][fullwidth background_color=\"\" background_image=\"http://localhost/assagaylodge/wp-content/uploads/2015/01/DSC01516-1148-x-764.jpg\" background_parallax=\"fixed\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"center center\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"60\" padding_bottom=\"20\" padding_left=\"0\" padding_right=\"0\" hundred_percent=\"no\" equal_height_columns=\"yes\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][recent_works layout=\"grid\" picture_size=\"auto\" boxed_text=\"unboxed\" filters=\"no\" columns=\"3\" column_spacing=\"12\" cat_slug=\"bedrooms\" exclude_cats=\"\" number_posts=\"6\" offset=\"\" excerpt_length=\"35\" strip_html=\"yes\" carousel_layout=\"title_on_rollover\" scroll_items=\"\" autoplay=\"no\" show_nav=\"yes\" mouse_scroll=\"no\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" class=\"\" id=\"\"][/recent_works][/fullwidth][fullwidth background_color=\"#f0f0ed\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"20\" padding_bottom=\"20\" padding_left=\"0\" padding_right=\"0\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][fusion_text]\r\n<h1 style=\"text-align: center;\">GARDENS</h1>\r\n[/fusion_text][separator style_type=\"none\" top_margin=\"40\" bottom_margin=\"\" sep_color=\"\" border_size=\"\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"100%\" alignment=\"center\" class=\"\" id=\"\"][one_sixth last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][/one_sixth][two_third last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][fusion_text]\r\n<h3 style=\"text-align: center;\">Walk &amp; relax in our beautiful gardens.</h3>\r\n[/fusion_text][/two_third][one_sixth last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][/one_sixth][recent_works layout=\"grid\" picture_size=\"auto\" boxed_text=\"boxed\" filters=\"no\" columns=\"3\" column_spacing=\"12\" cat_slug=\"gardens\" exclude_cats=\"\" number_posts=\"9\" offset=\"\" excerpt_length=\"35\" strip_html=\"yes\" carousel_layout=\"title_on_rollover\" scroll_items=\"\" autoplay=\"no\" show_nav=\"yes\" mouse_scroll=\"no\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" class=\"\" id=\"\"][/recent_works][/fullwidth][fullwidth background_color=\"#ffffff\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"65px\" padding_bottom=\"65px\" padding_left=\"0px\" padding_right=\"0px\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][button link=\"http://localhost/assagaylodge/book-now/\" color=\"default\" size=\"xlarge\" type=\"3d\" shape=\"round\" target=\"_self\" title=\"\" gradient_colors=\"#f0f0ed|#f0f0ed\" gradient_hover_colors=\"#6666a4|#6666a4\" accent_color=\"#ffffff\" accent_hover_color=\"#ffffff\" bevel_color=\"\" border_width=\"0px\" icon=\"\" icon_position=\"left\" icon_divider=\"no\" modal=\"\" animation_type=\"0\" animation_direction=\"left\" animation_speed=\"1\" alignment=\"center\" class=\"\" id=\"\"]Make A Reservation Enquiry[/button][/fullwidth]', 'Home', '', 'inherit', 'closed', 'closed', '', '7-revision-v1', '', '', '2015-09-08 11:54:13', '2015-09-08 09:54:13', '', 7, 'http://localhost/assagaylodge/7-revision-v1/', 0, 'revision', '', 0),
(983, 1, '2015-09-08 12:03:23', '2015-09-08 10:03:23', '[fullwidth background_color=\"\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"90px\" padding_bottom=\"0px\" padding_left=\"0px\" padding_right=\"0px\" hundred_percent=\"yes\" equal_height_columns=\"yes\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][one_half last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"http://localhost/assagaylodge/wp-content/uploads/2015/08/Tha-Lodge.jpg\" background_repeat=\"no-repeat\" background_position=\"center center\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" class=\"\" id=\"\"][/one_half][one_half last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"30px\" margin_top=\"\" margin_bottom=\"0px\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" class=\"special\" id=\"\"][fusion_text]\r\n<h1>5 BEDROOM FAMILY LODGE</h1>\r\n[/fusion_text][separator style_type=\"single\" top_margin=\"0\" bottom_margin=\"30\" sep_color=\"#000000\" border_size=\"\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"170px\" alignment=\"left\" class=\"separator-left\" id=\"\"][checklist icon=\"fa-star-o\" iconcolor=\"\" circle=\"\" circlecolor=\"\" size=\"13px\" class=\"\" id=\"\"][li_item icon=\"\"]Self-Catering: Single R650 per night Sharing R990 per couple per night[/li_item][li_item icon=\"\"]Service Options: Yes/No[/li_item][li_item icon=\"\"]Bed &amp; Breakfast: Single R725 per night Sharing R1140 per couple per night[/li_item][/checklist][/one_half][/fullwidth][modal name=\"rates\" title=\"Rates\" size=\"small\" background=\"\" border_color=\"\" show_footer=\"yes\" class=\"\" id=\"\"]\r\n\r\nSELF CATERING PER NIGHT\r\nR650 per room (Single)\r\nR990 per room (Sharing - Sleeps 2)\r\nR3000 per lodge (Max 10 guests)\r\n\r\n[/modal][fullwidth background_color=\"\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"30px\" padding_bottom=\"60px\" padding_left=\"0px\" padding_right=\"0px\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][one_half last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][fusion_text]\r\n<p style=\"text-align: justify;\">The property boasts over 200 different species of birds and animals. The Lodge is situated on the 1000 Hills tourism route, on the edge of Hillcrest and is a perfect place from which one can launch to any one of the many fantastic destinations and game reserves in KwaZulu Natal, i.e. the Majestic Drakensberg Mountain Range, Shongweni Nature Reserve, Nagle Dam, Durban &amp; Beach Front. We are also the doorstep of one of KZN’s major horse riding venues namely, the Shongweni Horse Riding Club &amp; the Summerveld Horse Riding Academy, makes Assagay Lodge a perfect home away from home for the equestrian lovers. The peace &amp; tranquility will take you far away from the business of city life. Evenings are quiet and peaceful. This is a unique and memorable country experience.</p>\r\n[/fusion_text][/one_half][one_half last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][fusion_text]\r\n<p style=\"text-align: justify;\">We are a homely \'down to earth\' country guest lodge, set on a farm surrounded by acres of beautiful hills, forests, &amp; dams in the Madwala Conservancy of Assagay, where horses still have the right of way on all roads. Our five bedrooms have a rustic charm offering the comforts of modern day life.</p>\r\n<p style=\"text-align: justify;\">Assagay Forest Lodge is owner managed, built in 2005 the lodge provides 5 cozy bedrooms with a large spacious and comfortable homely lounge, which leads onto a large deck area. Set on a 6 acre property in the Assagay Conservancy our lodge is nestled around trees, bushes, and beautiful gardens and a stream, allowing visitors to meander and relax. Guests seeking a quite, relaxing, homely experience will find our lodge the perfect choice away from home. There is a kitchen available should you wish to muster up a snack or quick meal, however breakfast is available on request.</p>\r\n[/fusion_text][/one_half][/fullwidth][fullwidth background_color=\"#f0f0ed\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"60px\" padding_bottom=\"45px\" padding_left=\"0px\" padding_right=\"0px\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][fusion_text]\r\n<h1 style=\"text-align: center;\">Gallery</h1>\r\n[/fusion_text][separator style_type=\"single\" top_margin=\"\" bottom_margin=\"40\" sep_color=\"#000000\" border_size=\"\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"170px\" alignment=\"\" class=\"\" id=\"\"][one_sixth last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][/one_sixth][two_third last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][fusion_text]\r\n<h3 style=\"text-align: center;\">The Lodge is open, spacious, comfortable and homely.</h3>\r\n[/fusion_text][/two_third][one_sixth last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][/one_sixth][recent_works layout=\"grid\" picture_size=\"auto\" boxed_text=\"boxed\" filters=\"no\" columns=\"3\" column_spacing=\"12\" cat_slug=\"the-lodge\" exclude_cats=\"\" number_posts=\"9\" offset=\"\" excerpt_length=\"35\" strip_html=\"yes\" carousel_layout=\"title_on_rollover\" scroll_items=\"\" autoplay=\"no\" show_nav=\"yes\" mouse_scroll=\"no\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" class=\"\" id=\"\"][/recent_works][/fullwidth][fullwidth background_color=\"\" background_image=\"\" background_parallax=\"fixed\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"60px\" padding_bottom=\"35px\" padding_left=\"0px\" padding_right=\"0px\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][fusion_text]\r\n<h1 style=\"text-align: center;\">BEDROOMS</h1>\r\n[/fusion_text][separator style_type=\"single\" top_margin=\"\" bottom_margin=\"20\" sep_color=\"#000000\" border_size=\"\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"170px\" alignment=\"\" class=\"\" id=\"\"][one_sixth last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][/one_sixth][two_third last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][fusion_text]\r\n<h3 style=\"text-align: justify;\">When it comes to our bedrooms we’re proud to say we’re different. We offer something a little more special.</h3>\r\n<h3 style=\"text-align: justify;\">Our five bedrooms are all en-suite and equipped with either king size or queen size beds. Each room sleeps two guests. The rooms have high ceilings, wall heaters &amp; ceiling fans. Beds all have electric blankets in Winter, 100% cotton percale sheets and thick hyper allergenic microfiber duvets and pillows.</h3>\r\n[/fusion_text][/two_third][one_sixth last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][/one_sixth][/fullwidth][fullwidth background_color=\"\" background_image=\"http://localhost/assagaylodge/wp-content/uploads/2015/01/DSC01516-1148-x-764.jpg\" background_parallax=\"fixed\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"center center\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"60\" padding_bottom=\"20\" padding_left=\"0\" padding_right=\"0\" hundred_percent=\"no\" equal_height_columns=\"yes\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][recent_works layout=\"grid\" picture_size=\"auto\" boxed_text=\"unboxed\" filters=\"no\" columns=\"3\" column_spacing=\"12\" cat_slug=\"bedrooms\" exclude_cats=\"\" number_posts=\"6\" offset=\"\" excerpt_length=\"35\" strip_html=\"yes\" carousel_layout=\"title_on_rollover\" scroll_items=\"\" autoplay=\"no\" show_nav=\"yes\" mouse_scroll=\"no\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" class=\"\" id=\"\"][/recent_works][/fullwidth][fullwidth background_color=\"#f0f0ed\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"20\" padding_bottom=\"20\" padding_left=\"0\" padding_right=\"0\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][fusion_text]\r\n<h1 style=\"text-align: center;\">GARDENS</h1>\r\n[/fusion_text][separator style_type=\"none\" top_margin=\"40\" bottom_margin=\"\" sep_color=\"\" border_size=\"\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"100%\" alignment=\"center\" class=\"\" id=\"\"][one_sixth last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][/one_sixth][two_third last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][fusion_text]\r\n<h3 style=\"text-align: center;\">Walk &amp; relax in our beautiful gardens.</h3>\r\n[/fusion_text][/two_third][one_sixth last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][/one_sixth][recent_works layout=\"grid\" picture_size=\"auto\" boxed_text=\"boxed\" filters=\"no\" columns=\"3\" column_spacing=\"12\" cat_slug=\"gardens\" exclude_cats=\"\" number_posts=\"9\" offset=\"\" excerpt_length=\"35\" strip_html=\"yes\" carousel_layout=\"title_on_rollover\" scroll_items=\"\" autoplay=\"no\" show_nav=\"yes\" mouse_scroll=\"no\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" class=\"\" id=\"\"][/recent_works][/fullwidth][fullwidth background_color=\"#ffffff\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"65px\" padding_bottom=\"65px\" padding_left=\"0px\" padding_right=\"0px\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][button link=\"http://localhost/assagaylodge/book-now/\" color=\"default\" size=\"xlarge\" type=\"3d\" shape=\"round\" target=\"_self\" title=\"\" gradient_colors=\"#f0f0ed|#f0f0ed\" gradient_hover_colors=\"#6666a4|#6666a4\" accent_color=\"#ffffff\" accent_hover_color=\"#ffffff\" bevel_color=\"\" border_width=\"0px\" icon=\"\" icon_position=\"left\" icon_divider=\"no\" modal=\"\" animation_type=\"0\" animation_direction=\"left\" animation_speed=\"1\" alignment=\"center\" class=\"\" id=\"\"]Make A Reservation Enquiry[/button][/fullwidth]', 'Home', '', 'inherit', 'closed', 'closed', '', '7-revision-v1', '', '', '2015-09-08 12:03:23', '2015-09-08 10:03:23', '', 7, 'http://localhost/assagaylodge/7-revision-v1/', 0, 'revision', '', 0);
INSERT INTO `wp_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(984, 1, '2015-09-08 12:06:48', '2015-09-08 10:06:48', '[fusion_builder_container background_color=\"\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding_top=\"20\" padding_bottom=\"20\" padding_left=\"0\" padding_right=\"0\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][fusion_builder_row][fusion_builder_column type=\"1_1\" background_position=\"left top\" background_color=\"\" border_size=\"\" border_color=\"\" border_style=\"solid\" spacing=\"yes\" background_image=\"\" background_repeat=\"no-repeat\" padding=\"\" margin_top=\"0px\" margin_bottom=\"0px\" class=\"\" id=\"\" animation_type=\"\" animation_speed=\"0.3\" animation_direction=\"left\" hide_on_mobile=\"no\" center_content=\"no\" min_height=\"none\"][fusion_title size=\"1\" content_align=\"right\" style_type=\"default\" sep_color=\"\" margin_top=\"\" margin_bottom=\"\" class=\"\" id=\"\"]Terms &amp; Conditions[/fusion_title][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container hundred_percent=\"yes\" overflow=\"visible\"][fusion_builder_row][fusion_builder_column type=\"1_6\" last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][/fusion_builder_column][fusion_builder_column type=\"2_3\" last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][fusion_text]\r\n<h3><span style=\"font-size: 12pt;\">Conditions you need to know before booking.</span></h3>\r\n<span style=\"font-size: 12pt;\">[fusion_checklist icon=\"fa-star-o\" iconcolor=\"\" circle=\"\" circlecolor=\"\" size=\"13px\" class=\"\" id=\"\"]\r\n[fusion_li_item icon=\"\"]By default, the lodge and bedrooms are not serviced, however <a href=\"http://msla.co.za/lodge/rates/\">Cleaning Services</a> are available as an optional extra.[/fusion_li_item]\r\n[fusion_li_item icon=\"\"]When you book into the lodge it is exclusively yours. i.e. We don\'t book out the other rooms unless we have cleared it with you.[/fusion_li_item]\r\n[fusion_li_item icon=\"\"]Please don’t bring your own Pets.[/fusion_li_item]\r\n[fusion_li_item icon=\"\"]The lodge is strictly a private guest lodge, for the purposes of accommodation and relaxation for paying guests, and not an events venue for functions, parties, etc.[/fusion_li_item]\r\n[/fusion_checklist]</span>[/fusion_text][/fusion_builder_column][fusion_builder_column type=\"1_6\" last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][/fusion_builder_column][fusion_builder_column type=\"1_6\" last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][/fusion_builder_column][fusion_builder_column type=\"2_3\" last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][fusion_text]\r\n<h3><span style=\"font-size: 12pt;\">Day Visitors</span></h3>\r\n<span style=\"font-size: 12pt;\">[fusion_checklist icon=\"fa-star-o\" iconcolor=\"\" circle=\"\" circlecolor=\"\" size=\"13px\" class=\"\" id=\"\"]\r\n</span>[fusion_li_item icon=\"\"]Any day visitor/s you invite must first be pre-arranged with management (right of admission does apply) and will be required to sign in before entering upon the property. A <a href=\"http://msla.co.za/lodge/rates/\">Cover Charge</a> will be levied against your account. Should for whatever reason your visitor ending up overnighting on the property, you will be invoiced for the full B&amp;B rate, as well.[/fusion_li_item][/fusion_checklist][/fusion_text][/fusion_builder_column][fusion_builder_column type=\"1_6\" last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][/fusion_builder_column][fusion_builder_column type=\"1_6\" last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][/fusion_builder_column][fusion_builder_column type=\"2_3\" last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][fusion_text]\r\n<h3 style=\"text-align: justify;\">Check-in Times</h3>\r\n<span style=\"font-size: 12pt;\">[fusion_checklist icon=\"fa-star-o\" iconcolor=\"\" circle=\"\" circlecolor=\"\" size=\"13px\" class=\"\" id=\"\"]\r\n[fusion_li_item icon=\"\"]Check-in Time is from 12h00 to 18h00 (Late arrivals must be arranged before hand).[/fusion_li_item]\r\n[fusion_li_item icon=\"\"]Check-out Time is before 10h00.[/fusion_li_item]\r\n[/fusion_checklist]</span>[/fusion_text][/fusion_builder_column][fusion_builder_column type=\"1_6\" last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][/fusion_builder_column][fusion_builder_column type=\"1_6\" last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][/fusion_builder_column][fusion_builder_column type=\"2_3\" last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][fusion_text]<h3 style=\"text-align: justify;\">Payment Terms</h3>\r\n<p style=\"text-align: justify;\"><span style=\"font-size: 12pt;\">[fusion_checklist icon=\"fa-star-o\" iconcolor=\"\" circle=\"\" circlecolor=\"\" size=\"13px\" class=\"\" id=\"\"]\r\n[fusion_li_item icon=\"\"]Rates are inclusive of <strong>14%</strong> VAT.[/fusion_li_item]\r\n[fusion_li_item icon=\"\"]Payment must be made via <strong>Bank Transfer</strong>, alternatively, <strong>Cash</strong> may be accepted by prior arrangement.[/fusion_li_item]\r\n[fusion_li_item icon=\"\"]We no longer accept Cheques.[/fusion_li_item]\r\n[fusion_li_item icon=\"\"]We do not have Credit Card facilities on site.[/fusion_li_item]\r\n[fusion_li_item icon=\"\"]All accommodation must be settled either before or on arrival.[/fusion_li_item]\r\n[fusion_li_item icon=\"\"]No bookings are guaranteed until your reservation is confirmed, having paid at least a <strong>50% deposit</strong>.[/fusion_li_item]\r\n[/fusion_checklist]</span></p>[/fusion_text][/fusion_builder_column][fusion_builder_column type=\"1_6\" last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][/fusion_builder_column][fusion_builder_column type=\"1_6\" last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][/fusion_builder_column][fusion_builder_column type=\"2_3\" last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][fusion_text]\r\n<h3 style=\"text-align: justify;\">Refunds &amp; Cancelation Terms</h3>\r\n<p style=\"text-align: justify;\"><span style=\"font-size: 12pt;\">[fusion_checklist icon=\"fa-star-o\" iconcolor=\"\" circle=\"\" circlecolor=\"\" size=\"13px\" class=\"\" id=\"\"]\r\n[fusion_li_item icon=\"\"]Guests are liable for the tariff of the full period booked.[/fusion_li_item]\r\n[fusion_li_item icon=\"\"]No refunds will be given for early departures / late arrivals, or due to weather conditions / power outages<span style=\"text-align: justify;\">.</span>[/fusion_li_item]\r\n[fusion_li_item icon=\"\"]<span style=\"text-align: justify;\">Cancellation of any booking must be done via email.</span>[/fusion_li_item]\r\n[fusion_li_item icon=\"\"]<span style=\"text-align: justify;\">If you cancel your reservation 15 days and more, </span><span style=\"text-align: justify;\">before your arrival date, your deposit will be </span><span style=\"text-align: justify;\">r</span><span style=\"text-align: justify;\">efund</span><span style=\"text-align: justify;\">ed</span><span style=\"text-align: justify;\"> less an administration fee of </span>15%.[/fusion_li_item]\r\n[fusion_li_item icon=\"\"]<span style=\"text-align: justify;\">If you cancel your reservation 14 days and less, before your arrival date, your deposit will become </span>non-refundable.[/fusion_li_item]\r\n[fusion_li_item icon=\"\"]<span style=\"text-align: justify;\">Payments are not refundable for reservations not cancelled and not taken up.</span>[/fusion_li_item]\r\n[/fusion_checklist]</span></p>\r\n[/fusion_text][/fusion_builder_column][fusion_builder_column type=\"1_6\" last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][/fusion_builder_column][fusion_builder_column type=\"1_6\" last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][/fusion_builder_column][fusion_builder_column type=\"2_3\" last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][fusion_text]\r\n<h3><span style=\"font-size: 12pt;\">General Terms</span></h3>\r\n[fusion_checklist icon=\"fa-star-o\" iconcolor=\"\" circle=\"\" circlecolor=\"\" size=\"13px\" class=\"\" id=\"\"]\r\n[fusion_li_item icon=\"\"]A reservation may not be transferred.[/fusion_li_item]\r\n[fusion_li_item icon=\"\"]Bookings are for holiday purposes only and cannot give rise to a tenancy.[/fusion_li_item]\r\n[fusion_li_item icon=\"\"]Persons occupying the lodge may not exceed the number of persons indicated upon booking.[/fusion_li_item]\r\n[fusion_li_item icon=\"\"]During nights the all doors must be locked. Please remember to lock the door behind you and to remove the key.[/fusion_li_item]\r\n[fusion_li_item icon=\"\"]Please leave the Lodge reasonable tidy and clean after use.[/fusion_li_item]\r\n[fusion_li_item icon=\"\"]We do not have a Laundry Service.[/fusion_li_item]\r\n[fusion_li_item icon=\"\"]Out of respect for all guests, and the fact that we are in a conservancy, noise must be kept down to a comfortable level especially between the hours 22h00 to 08h00.[/fusion_li_item]\r\n[fusion_li_item icon=\"\"]Please keep furniture, fixtures and fittings in the same state of repair and condition as at the beginning of your stay. In the event of any damage to furniture, fixtures or fittings, you may be held liable for the replacement value or repair costs. This includes damage to the pool area.[/fusion_li_item]\r\n[fusion_li_item icon=\"\"]The use of open fires and the burning of any unprotected candles or fuel burning lanterns, in or around the Lodge, will not be permitted.[/fusion_li_item]\r\n[fusion_li_item icon=\"\"]We operate a non-smoking policy throughout the Lodge. You are welcome to smoke outside the house, where ashtrays are provided.[/fusion_li_item]\r\n[fusion_li_item icon=\"\"]Guests may not bring pets or other animals onto the premises.[/fusion_li_item]\r\n[fusion_li_item icon=\"\"]The use or sale of any illegal substance in the Lodge or on surrounding property is not permissible.[/fusion_li_item]\r\n[fusion_li_item icon=\"\"]Right of admission is reserved.[/fusion_li_item]\r\n[fusion_li_item icon=\"\"]We reserve the right to eject a guest/guests from the Lodge if they are not conducting themselves in an appropriate and/or acceptable manner to the building and/or other residents or staff.[/fusion_li_item]\r\n[fusion_li_item icon=\"\"]Swimming Pool - The premises contains an unsupervised, open pool which may be used at the guests\' own risk.[/fusion_li_item]\r\n[/fusion_checklist][/fusion_text][/fusion_builder_column][fusion_builder_column type=\"1_6\" last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container]', 'T&Cs', '', 'publish', 'closed', 'closed', '', 'tcs', '', '', '2019-11-13 14:13:46', '2019-11-13 12:13:46', '', 0, 'http://localhost/assagaylodge/?page_id=984', 0, 'page', '', 0),
(985, 1, '2015-09-08 12:06:48', '2015-09-08 10:06:48', '<h4 style=\"text-align: justify;\"><strong><span style=\"font-family: verdana, geneva; font-size: 10pt;\">Check In &amp; Check Out</span></strong></h4>\r\n<ul style=\"text-align: justify;\">\r\n	<li class=\"_mce_tagged_br\"><span style=\"font-family: verdana, geneva; font-size: 10pt;\">Check-in Time is from <strong>14h00 to 18h00</strong> (Late arrivals must be arranged before hand).</span></li>\r\n	<li class=\"_mce_tagged_br\"><span style=\"font-family: verdana, geneva; font-size: 10pt;\">Check-out Time is before <strong>10h00</strong>.</span></li>\r\n</ul>\r\n<h4 class=\"_mce_tagged_br\" style=\"text-align: justify;\" align=\"left\"><strong><span style=\"font-family: verdana, geneva; font-size: 10pt;\">Payment</span></strong></h4>\r\n<ul style=\"text-align: justify;\">\r\n	<li><span style=\"font-family: verdana, geneva; font-size: 10pt;\">Rates are quoted in South African Rand \'<strong>ZAR</strong>\' and are subject to change without notice.</span></li>\r\n	<li><span style=\"font-family: verdana, geneva; font-size: 10pt;\">Rates are inclusive of <strong>14%</strong> VAT.</span></li>\r\n	<li><span style=\"font-family: verdana, geneva; font-size: 10pt;\">All accommodation must be settled either before or on arrival.</span></li>\r\n	<li><span style=\"font-family: verdana, geneva; font-size: 10pt;\">No bookings are guaranteed until your reservation is confirmed, having paid a <strong>50%</strong> deposit. </span></li>\r\n	<li><span style=\"font-family: verdana, geneva; font-size: 10pt;\">All online bookings are subject to an e-mail confirmation.</span></li>\r\n	<li><span style=\"text-align: left; font-family: verdana, geneva; font-size: 10pt;\">Payment may be made via <strong>Credit Card</strong> or <strong>Cash</strong>. </span></li>\r\n	<li><span style=\"text-align: left; font-family: verdana, geneva; font-size: 10pt;\">Only bank guaranteed cheques will be accepted.</span></li>\r\n</ul>\r\n<h4 style=\"text-align: justify;\">Refunds</h4>\r\n<ul style=\"text-align: justify;\">\r\n	<li><span style=\"font-family: verdana, geneva; font-size: 10pt;\">Guests are liable for the tariff of the full period booked and <strong>no refunds will be given for early departure, late arrivals, weather conditions or power outages</strong>.</span></li>\r\n</ul>\r\n<h4 style=\"text-align: justify;\"><strong><span style=\"text-align: justify; font-family: verdana, geneva;\">Cancellation Policy</span></strong></h4>\r\n<ul>\r\n	<li style=\"text-align: justify;\"><span style=\"text-align: justify; font-family: verdana, geneva; font-size: 10pt;\">Cancellation of any booking will only be accepted in writing or by email.</span></li>\r\n	<li style=\"text-align: justify;\"><span style=\"font-family: verdana, geneva; font-size: 10pt;\"><span style=\"text-align: justify;\">If you cancel your reservation </span><span style=\"text-align: justify;\">3 weeks</span><span style=\"text-align: justify;\"> before your arrival date, your deposit will be </span><span style=\"text-align: justify;\">r</span><span style=\"text-align: justify;\">efund</span><span style=\"text-align: justify;\">ed</span><span style=\"text-align: justify;\"> less an administration fee of </span><strong style=\"text-align: justify;\">15%</strong><span style=\"text-align: justify;\">. </span></span></li>\r\n	<li style=\"text-align: justify;\"><span style=\"font-family: verdana, geneva; font-size: 10pt;\"><span style=\"text-align: justify;\">If you cancel your reservation 2 weeks before your arrival date, your deposit will become </span><strong style=\"text-align: justify;\">non-refundable</strong><span style=\"text-align: justify;\">.</span></span></li>\r\n	<li style=\"text-align: justify;\"><span style=\"text-align: justify; font-family: verdana, geneva; font-size: 10pt;\">Payments are not refundable for reservations not cancelled and not taken up.</span></li>\r\n</ul>\r\n<h4 style=\"text-align: justify;\"><strong>General</strong></h4>\r\n<ul style=\"text-align: justify;\">\r\n	<li><span style=\"font-family: verdana, geneva; font-size: 10pt;\">A reservation may not be transferred.</span></li>\r\n	<li class=\"_mce_tagged_br\"><span style=\"font-family: verdana, geneva; font-size: 10pt;\">Bookings are for holiday purposes only and cannot give rise to a tenancy.</span></li>\r\n	<li class=\"_mce_tagged_br\"><span style=\"font-family: verdana, geneva; font-size: 10pt;\">Persons occupying the lodge may not exceed the number of persons indicated upon booking.</span></li>\r\n	<li class=\"_mce_tagged_br\"><span style=\"font-family: verdana, geneva; font-size: 10pt;\">During nights the all doors must be locked. Please remember to lock the door behind you and to remove the key. </span></li>\r\n	<li class=\"_mce_tagged_br\"><span style=\"font-family: verdana, geneva; font-size: 10pt;\">Please leave the Lodge reasonable tidy and clean after use.</span></li>\r\n	<li class=\"_mce_tagged_br\"><span style=\"font-family: verdana, geneva; font-size: 10pt;\">Out of respect for all guests, noise must be kept down to a comfortable level and we request that there be silence in the Lodge between 22h00 and 08h00</span></li>\r\n	<li class=\"_mce_tagged_br\"><span style=\"font-family: verdana, geneva; font-size: 10pt;\">Please keep furniture, fixtures and fittings in the same state of repair and condition as at the beginning of your stay. In the event of any damage to furniture, fixtures or fittings, you may be held liable for the replacement value or repair costs. This includes damage to the pool area.</span></li>\r\n	<li class=\"_mce_tagged_br\"><span style=\"font-family: verdana, geneva; font-size: 10pt;\">The use of open fires and the burning of any candles or lanterns, in or around the Lodge, will not be permitted.</span></li>\r\n	<li class=\"_mce_tagged_br\"><span style=\"font-family: verdana, geneva; font-size: 10pt;\">We operate a non-smoking policy throughout the Lodge. You are welcome to smoke outside the house, where ashtrays and/or bins will be provided.</span></li>\r\n	<li class=\"_mce_tagged_br\"><span style=\"font-family: verdana, geneva; font-size: 10pt;\">No pets or animals, with the exception of guide dogs, are allowed on the premises.</span></li>\r\n	<li class=\"_mce_tagged_br\"><span style=\"font-family: verdana, geneva; font-size: 10pt;\">The use or sale of any illegal substance in the Lodge or on surrounding property is not permissible.</span></li>\r\n	<li class=\"_mce_tagged_br\"><span style=\"text-align: justify; font-family: verdana, geneva; font-size: 10pt;\">Right of admission is reserved.</span></li>\r\n	<li class=\"_mce_tagged_br\"><span style=\"font-family: verdana, geneva; font-size: 10pt;\">We reserve the right to eject a guest/guests from the Lodge if they are not conducting themselves in an appropriate and/or acceptable manner to the building and/or other residents or staff.</span></li>\r\n	<li class=\"_mce_tagged_br\"><span style=\"font-family: verdana, geneva; font-size: 10pt;\">Swimming Pool - The premises contains an unsupervised, open pool which may be used at the guests\' own risk.</span></li>\r\n</ul>', 'T&Cs', '', 'inherit', 'closed', 'closed', '', '984-revision-v1', '', '', '2015-09-08 12:06:48', '2015-09-08 10:06:48', '', 984, 'http://localhost/assagaylodge/984-revision-v1/', 0, 'revision', '', 0),
(986, 1, '2017-07-31 14:59:08', '2017-07-31 12:59:08', '[fullwidth background_color=\"\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding_top=\"20\" padding_bottom=\"20\" padding_left=\"0\" padding_right=\"0\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][title size=\"1\" content_align=\"right\" style_type=\"default\" sep_color=\"\" margin_top=\"\" margin_bottom=\"\" class=\"\" id=\"\"]Terms &amp; Conditions[/title][/fullwidth][one_sixth last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][/one_sixth][two_third last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][fusion_text]\n<h3><span style=\"font-size: 12pt;\">General Terms</span></h3>\n<span style=\"font-size: 12pt;\">[checklist icon=\"fa-star-o\" iconcolor=\"\" circle=\"\" circlecolor=\"\" size=\"13px\" class=\"\" id=\"\"]\n[li_item icon=\"\"]When you book into the lodge it is exclusively yours. i.e. We don\'t book out the other rooms unless we have cleared it with you.[/li_item]\n[li_item icon=\"\"]The lodge and bedrooms are not serviced. Cleaning Services are available as optional extras.[/li_item]\n[li_item icon=\"\"]We do not have a Laundry Service.[/li_item]\n[li_item icon=\"\"]Please don\'t bring your own Pets.[/li_item]\n[li_item icon=\"\"]No functions, parties or extra guests allowed unless by prior arrangement and will be at the owners discretion due to conservancy rules &amp; noise restrictions.[/li_item]\n[/checklist]</span>[/fusion_text][/two_third][one_sixth last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][/one_sixth][one_sixth last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][/one_sixth][two_third last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][fusion_text]\n<h3 style=\"text-align: justify;\">Check-in Times</h3>\n<span style=\"font-size: 12pt;\">[checklist icon=\"fa-star-o\" iconcolor=\"\" circle=\"\" circlecolor=\"\" size=\"13px\" class=\"\" id=\"\"]\n[li_item icon=\"\"]Check-in Time is from 14h00 to 18h00 (Late arrivals must be arranged before hand).[/li_item]\n[li_item icon=\"\"]Check-out Time is before 10h00.[/li_item]\n[/checklist]</span>[/fusion_text][/two_third][one_sixth last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][/one_sixth][one_sixth last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][/one_sixth][two_third last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][fusion_text]\n<h3 style=\"text-align: justify;\">Payment Terms</h3>\n<p style=\"text-align: justify;\"><span style=\"font-size: 12pt;\">[checklist icon=\"fa-star-o\" iconcolor=\"\" circle=\"\" circlecolor=\"\" size=\"13px\" class=\"\" id=\"\"]\n[li_item icon=\"\"]Rates are inclusive of <strong>14%</strong> VAT.[/li_item]\n[li_item icon=\"\"]Payment must be made via <strong>Bank Transfer</strong>, alternatively, <strong>Cash</strong> may be accepted by prior arrangement.[/li_item]\n[li_item icon=\"\"]We no longer accept Cheques.[/li_item]\n[li_item icon=\"\"]All accommodation must be settled either before or on arrival.[/li_item]\n[li_item icon=\"\"]No bookings are guaranteed until your reservation is confirmed, having paid at least a <strong>50% deposit</strong>.[/li_item]\n[/checklist]</span></p>\n[/fusion_text][/two_third][one_sixth last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][/one_sixth][one_sixth last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][/one_sixth][two_third last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][fusion_text]\n<h3 style=\"text-align: justify;\">Refunds &amp; Cancelation Terms</h3>\n<p style=\"text-align: justify;\"><span style=\"font-size: 12pt;\">[checklist icon=\"fa-star-o\" iconcolor=\"\" circle=\"\" circlecolor=\"\" size=\"13px\" class=\"\" id=\"\"]\n[li_item icon=\"\"]Guests are liable for the tariff of the full period booked.[/li_item]\n[li_item icon=\"\"]No refunds will be given for early departures / late arrivals, or due to weather conditions / power outages<span style=\"text-align: justify;\">.</span>[/li_item]\n[li_item icon=\"\"]<span style=\"text-align: justify;\">Cancellation of any booking must be done via email.</span>[/li_item]\n[li_item icon=\"\"]<span style=\"text-align: justify;\">If you cancel your reservation 15 days and more, </span><span style=\"text-align: justify;\">before your arrival date, your deposit will be </span><span style=\"text-align: justify;\">r</span><span style=\"text-align: justify;\">efund</span><span style=\"text-align: justify;\">ed</span><span style=\"text-align: justify;\"> less an administration fee of </span>15%.[/li_item]\n[li_item icon=\"\"]<span style=\"text-align: justify;\">If you cancel your reservation 14 days and less, before your arrival date, your deposit will become </span>non-refundable.[/li_item]\n[li_item icon=\"\"]<span style=\"text-align: justify;\">Payments are not refundable for reservations not cancelled and not taken up.</span>[/li_item]\n[/checklist]</span></p>\n[/fusion_text][/two_third][one_sixth last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][/one_sixth][one_sixth last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][/one_sixth][two_third last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][fusion_text]\n<h3><span style=\"font-size: 12pt;\">General Terms</span></h3>\n<span style=\"font-size: 12pt;\">[checklist icon=\"fa-star-o\" iconcolor=\"\" circle=\"\" circlecolor=\"\" size=\"13px\" class=\"\" id=\"\"]\n[li_item icon=\"\"]A reservation may not be transferred.[/li_item]\n[li_item icon=\"\"]Bookings are for holiday purposes only and cannot give rise to a tenancy.[/li_item]\n[li_item icon=\"\"]Persons occupying the lodge may not exceed the number of persons indicated upon booking.[/li_item]\n[li_item icon=\"\"]During nights the all doors must be locked. Please remember to lock the door behind you and to remove the key.[/li_item]\n[li_item icon=\"\"]Please leave the Lodge reasonable tidy and clean after use.[/li_item]\n[li_item icon=\"\"]Out of respect for all guests, and the fact that we are in a conservancy, noise must be kept down to a comfortable level especially between the hours 22h00 to 08h00.[/li_item]\n[li_item icon=\"\"]Please keep furniture, fixtures and fittings in the same state of repair and condition as at the beginning of your stay. In the event of any damage to furniture, fixtures or fittings, you may be held liable for the replacement value or repair costs. This includes damage to the pool area.[/li_item]\n[li_item icon=\"\"]The use of open fires and the burning of any unprotected candles or fuel burning lanterns, in or around the Lodge, will not be permitted.[/li_item]\n[li_item icon=\"\"]We operate a non-smoking policy throughout the Lodge. You are welcome to smoke outside the house, where ashtrays are provided.[/li_item]\n[li_item icon=\"\"]No pets / animals are allowed on the premises.[/li_item]\n[li_item icon=\"\"]The use or sale of any illegal substance in the Lodge or on surrounding property is not permissible.[/li_item]\n[li_item icon=\"\"]<span style=\"text-align: justify;\">Right of admission is reserved.</span>[/li_item]\n[li_item icon=\"\"]We reserve the right to eject a guest/guests from the Lodge if they are not conducting themselves in an appropriate and/or acceptable manner to the building and/or other residents or staff.[/li_item]\n[li_item icon=\"\"]Swimming Pool - The premises contains an unsupervised, open pool which may be used at the guests\' own risk.[/li_item]</span>\n<span style=\"font-size: 12pt;\"> [/checklist]</span>\n\n&nbsp;\n<h3><span style=\"line-height: 1.5em; font-family: verdana, geneva; font-size: 18px;\">PLEASE NOTE!</span></h3>\n<span style=\"font-size: 12pt;\">[checklist icon=\"fa-star-o\" iconcolor=\"\" circle=\"\" circlecolor=\"\" size=\"13px\" class=\"\" id=\"\"]</span>\n<span style=\"font-size: 12pt;\">[li_item icon=\"\"]When you book into the lodge it is exclusively yours. i.e. We don\'t book out the other rooms unless we have cleared it with you.[/li_item]\n</span><span style=\"font-size: 12pt;\">[li_item icon=\"\"]The lodge and bedrooms are not serviced. Cleaning Services are available as optional extras.[/li_item]\n</span><span style=\"font-size: 12pt;\">[li_item icon=\"\"]No Laundry Service.[/li_item]\n</span><span style=\"font-size: 12pt;\">[li_item icon=\"\"]No Pets.[/li_item]\n</span><span style=\"font-size: 12pt;\">[li_item icon=\"\"]No functions, parties or extra guests allowed unless by prior arrangement and will be at the owners discretion due to conservancy rules &amp; noise restrictions.[/li_item]</span>\n<span style=\"font-size: 12pt;\">[/checklist]</span>[/fusion_text][/two_third][one_sixth last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][/one_sixth]', 'T&Cs', '', 'inherit', 'closed', 'closed', '', '984-autosave-v1', '', '', '2017-07-31 14:59:08', '2017-07-31 12:59:08', '', 984, 'http://localhost/assagaylodge/984-autosave-v1/', 0, 'revision', '', 0),
(987, 1, '2015-09-08 12:40:33', '2015-09-08 10:40:33', '[one_sixth last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][/one_sixth][two_third last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][fusion_text]\r\n<h4 style=\"text-align: justify;\"><strong><span style=\"font-family: verdana, geneva; font-size: 10pt;\">Check In &amp; Check Out</span></strong></h4>\r\n<ul style=\"text-align: justify;\">\r\n	<li class=\"_mce_tagged_br\"><span style=\"font-family: verdana, geneva; font-size: 10pt;\">Check-in Time is from <strong>14h00 to 18h00</strong> (Late arrivals must be arranged before hand).</span></li>\r\n	<li class=\"_mce_tagged_br\"><span style=\"font-family: verdana, geneva; font-size: 10pt;\">Check-out Time is before <strong>10h00</strong>.</span></li>\r\n</ul>\r\n<h4 class=\"_mce_tagged_br\" style=\"text-align: justify;\" align=\"left\"><strong><span style=\"font-family: verdana, geneva; font-size: 10pt;\">Payment</span></strong></h4>\r\n<ul style=\"text-align: justify;\">\r\n	<li><span style=\"font-family: verdana, geneva; font-size: 10pt;\">Rates are quoted in South African Rand \'<strong>ZAR</strong>\' and are subject to change without notice.</span></li>\r\n	<li><span style=\"font-family: verdana, geneva; font-size: 10pt;\">Rates are inclusive of <strong>14%</strong> VAT.</span></li>\r\n	<li><span style=\"font-family: verdana, geneva; font-size: 10pt;\">All accommodation must be settled either before or on arrival.</span></li>\r\n	<li><span style=\"font-family: verdana, geneva; font-size: 10pt;\">No bookings are guaranteed until your reservation is confirmed, having paid a <strong>50%</strong> deposit. </span></li>\r\n	<li><span style=\"font-family: verdana, geneva; font-size: 10pt;\">All online bookings are subject to an e-mail confirmation.</span></li>\r\n	<li><span style=\"text-align: left; font-family: verdana, geneva; font-size: 10pt;\">Payment may be made via <strong>Credit Card</strong> or <strong>Cash</strong>. </span></li>\r\n	<li><span style=\"text-align: left; font-family: verdana, geneva; font-size: 10pt;\">Only bank guaranteed cheques will be accepted.</span></li>\r\n</ul>\r\n<h4 style=\"text-align: justify;\">Refunds</h4>\r\n<ul style=\"text-align: justify;\">\r\n	<li><span style=\"font-family: verdana, geneva; font-size: 10pt;\">Guests are liable for the tariff of the full period booked and <strong>no refunds will be given for early departure, late arrivals, weather conditions or power outages</strong>.</span></li>\r\n</ul>\r\n<h4 style=\"text-align: justify;\"><strong><span style=\"text-align: justify; font-family: verdana, geneva;\">Cancellation Policy</span></strong></h4>\r\n<ul>\r\n	<li style=\"text-align: justify;\"><span style=\"text-align: justify; font-family: verdana, geneva; font-size: 10pt;\">Cancellation of any booking will only be accepted in writing or by email.</span></li>\r\n	<li style=\"text-align: justify;\"><span style=\"font-family: verdana, geneva; font-size: 10pt;\"><span style=\"text-align: justify;\">If you cancel your reservation </span><span style=\"text-align: justify;\">3 weeks</span><span style=\"text-align: justify;\"> before your arrival date, your deposit will be </span><span style=\"text-align: justify;\">r</span><span style=\"text-align: justify;\">efund</span><span style=\"text-align: justify;\">ed</span><span style=\"text-align: justify;\"> less an administration fee of </span><strong style=\"text-align: justify;\">15%</strong><span style=\"text-align: justify;\">. </span></span></li>\r\n	<li style=\"text-align: justify;\"><span style=\"font-family: verdana, geneva; font-size: 10pt;\"><span style=\"text-align: justify;\">If you cancel your reservation 2 weeks before your arrival date, your deposit will become </span><strong style=\"text-align: justify;\">non-refundable</strong><span style=\"text-align: justify;\">.</span></span></li>\r\n	<li style=\"text-align: justify;\"><span style=\"text-align: justify; font-family: verdana, geneva; font-size: 10pt;\">Payments are not refundable for reservations not cancelled and not taken up.</span></li>\r\n</ul>\r\n<h4 style=\"text-align: justify;\"><strong>General</strong></h4>\r\n<ul style=\"text-align: justify;\">\r\n	<li><span style=\"font-family: verdana, geneva; font-size: 10pt;\">A reservation may not be transferred.</span></li>\r\n	<li class=\"_mce_tagged_br\"><span style=\"font-family: verdana, geneva; font-size: 10pt;\">Bookings are for holiday purposes only and cannot give rise to a tenancy.</span></li>\r\n	<li class=\"_mce_tagged_br\"><span style=\"font-family: verdana, geneva; font-size: 10pt;\">Persons occupying the lodge may not exceed the number of persons indicated upon booking.</span></li>\r\n	<li class=\"_mce_tagged_br\"><span style=\"font-family: verdana, geneva; font-size: 10pt;\">During nights the all doors must be locked. Please remember to lock the door behind you and to remove the key. </span></li>\r\n	<li class=\"_mce_tagged_br\"><span style=\"font-family: verdana, geneva; font-size: 10pt;\">Please leave the Lodge reasonable tidy and clean after use.</span></li>\r\n	<li class=\"_mce_tagged_br\"><span style=\"font-family: verdana, geneva; font-size: 10pt;\">Out of respect for all guests, noise must be kept down to a comfortable level and we request that there be silence in the Lodge between 22h00 and 08h00</span></li>\r\n	<li class=\"_mce_tagged_br\"><span style=\"font-family: verdana, geneva; font-size: 10pt;\">Please keep furniture, fixtures and fittings in the same state of repair and condition as at the beginning of your stay. In the event of any damage to furniture, fixtures or fittings, you may be held liable for the replacement value or repair costs. This includes damage to the pool area.</span></li>\r\n	<li class=\"_mce_tagged_br\"><span style=\"font-family: verdana, geneva; font-size: 10pt;\">The use of open fires and the burning of any candles or lanterns, in or around the Lodge, will not be permitted.</span></li>\r\n	<li class=\"_mce_tagged_br\"><span style=\"font-family: verdana, geneva; font-size: 10pt;\">We operate a non-smoking policy throughout the Lodge. You are welcome to smoke outside the house, where ashtrays and/or bins will be provided.</span></li>\r\n	<li class=\"_mce_tagged_br\"><span style=\"font-family: verdana, geneva; font-size: 10pt;\">No pets or animals, with the exception of guide dogs, are allowed on the premises.</span></li>\r\n	<li class=\"_mce_tagged_br\"><span style=\"font-family: verdana, geneva; font-size: 10pt;\">The use or sale of any illegal substance in the Lodge or on surrounding property is not permissible.</span></li>\r\n	<li class=\"_mce_tagged_br\"><span style=\"text-align: justify; font-family: verdana, geneva; font-size: 10pt;\">Right of admission is reserved.</span></li>\r\n	<li class=\"_mce_tagged_br\"><span style=\"font-family: verdana, geneva; font-size: 10pt;\">We reserve the right to eject a guest/guests from the Lodge if they are not conducting themselves in an appropriate and/or acceptable manner to the building and/or other residents or staff.</span></li>\r\n	<li class=\"_mce_tagged_br\"><span style=\"font-family: verdana, geneva; font-size: 10pt;\">Swimming Pool - The premises contains an unsupervised, open pool which may be used at the guests\' own risk.</span></li>\r\n</ul>\r\n[/fusion_text][/two_third][one_sixth last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][/one_sixth]', 'T&Cs', '', 'inherit', 'closed', 'closed', '', '984-revision-v1', '', '', '2015-09-08 12:40:33', '2015-09-08 10:40:33', '', 984, 'http://localhost/assagaylodge/984-revision-v1/', 0, 'revision', '', 0);
INSERT INTO `wp_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(988, 1, '2015-09-08 12:44:05', '2015-09-08 10:44:05', '[fullwidth background_color=\"\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding_top=\"20\" padding_bottom=\"20\" padding_left=\"0\" padding_right=\"0\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][title size=\"1\" content_align=\"right\" style_type=\"default\" sep_color=\"\" class=\"\" id=\"\"]Terms &amp; Conditions[/title][/fullwidth][one_sixth last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][/one_sixth][two_third last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][fusion_text]\r\n<h4 style=\"text-align: justify;\"><strong><span style=\"font-family: verdana, geneva; font-size: 10pt;\">Check In &amp; Check Out</span></strong></h4>\r\n<ul style=\"text-align: justify;\">\r\n	<li class=\"_mce_tagged_br\"><span style=\"font-family: verdana, geneva; font-size: 10pt;\">Check-in Time is from <strong>14h00 to 18h00</strong> (Late arrivals must be arranged before hand).</span></li>\r\n	<li class=\"_mce_tagged_br\"><span style=\"font-family: verdana, geneva; font-size: 10pt;\">Check-out Time is before <strong>10h00</strong>.</span></li>\r\n</ul>\r\n<h4 class=\"_mce_tagged_br\" style=\"text-align: justify;\" align=\"left\"><strong><span style=\"font-family: verdana, geneva; font-size: 10pt;\">Payment</span></strong></h4>\r\n<ul style=\"text-align: justify;\">\r\n	<li><span style=\"font-family: verdana, geneva; font-size: 10pt;\">Rates are quoted in South African Rand \'<strong>ZAR</strong>\' and are subject to change without notice.</span></li>\r\n	<li><span style=\"font-family: verdana, geneva; font-size: 10pt;\">Rates are inclusive of <strong>14%</strong> VAT.</span></li>\r\n	<li><span style=\"font-family: verdana, geneva; font-size: 10pt;\">All accommodation must be settled either before or on arrival.</span></li>\r\n	<li><span style=\"font-family: verdana, geneva; font-size: 10pt;\">No bookings are guaranteed until your reservation is confirmed, having paid a <strong>50%</strong> deposit. </span></li>\r\n	<li><span style=\"font-family: verdana, geneva; font-size: 10pt;\">All online bookings are subject to an e-mail confirmation.</span></li>\r\n	<li><span style=\"text-align: left; font-family: verdana, geneva; font-size: 10pt;\">Payment may be made via <strong>Credit Card</strong> or <strong>Cash</strong>. </span></li>\r\n	<li><span style=\"text-align: left; font-family: verdana, geneva; font-size: 10pt;\">Only bank guaranteed cheques will be accepted.</span></li>\r\n</ul>\r\n<h4 style=\"text-align: justify;\">Refunds</h4>\r\n<ul style=\"text-align: justify;\">\r\n	<li><span style=\"font-family: verdana, geneva; font-size: 10pt;\">Guests are liable for the tariff of the full period booked and <strong>no refunds will be given for early departure, late arrivals, weather conditions or power outages</strong>.</span></li>\r\n</ul>\r\n<h4 style=\"text-align: justify;\"><strong><span style=\"text-align: justify; font-family: verdana, geneva;\">Cancellation Policy</span></strong></h4>\r\n<ul>\r\n	<li style=\"text-align: justify;\"><span style=\"text-align: justify; font-family: verdana, geneva; font-size: 10pt;\">Cancellation of any booking will only be accepted in writing or by email.</span></li>\r\n	<li style=\"text-align: justify;\"><span style=\"font-family: verdana, geneva; font-size: 10pt;\"><span style=\"text-align: justify;\">If you cancel your reservation </span><span style=\"text-align: justify;\">3 weeks</span><span style=\"text-align: justify;\"> before your arrival date, your deposit will be </span><span style=\"text-align: justify;\">r</span><span style=\"text-align: justify;\">efund</span><span style=\"text-align: justify;\">ed</span><span style=\"text-align: justify;\"> less an administration fee of </span><strong style=\"text-align: justify;\">15%</strong><span style=\"text-align: justify;\">. </span></span></li>\r\n	<li style=\"text-align: justify;\"><span style=\"font-family: verdana, geneva; font-size: 10pt;\"><span style=\"text-align: justify;\">If you cancel your reservation 2 weeks before your arrival date, your deposit will become </span><strong style=\"text-align: justify;\">non-refundable</strong><span style=\"text-align: justify;\">.</span></span></li>\r\n	<li style=\"text-align: justify;\"><span style=\"text-align: justify; font-family: verdana, geneva; font-size: 10pt;\">Payments are not refundable for reservations not cancelled and not taken up.</span></li>\r\n</ul>\r\n<h4 style=\"text-align: justify;\"><strong>General</strong></h4>\r\n<ul style=\"text-align: justify;\">\r\n	<li><span style=\"font-family: verdana, geneva; font-size: 10pt;\">A reservation may not be transferred.</span></li>\r\n	<li class=\"_mce_tagged_br\"><span style=\"font-family: verdana, geneva; font-size: 10pt;\">Bookings are for holiday purposes only and cannot give rise to a tenancy.</span></li>\r\n	<li class=\"_mce_tagged_br\"><span style=\"font-family: verdana, geneva; font-size: 10pt;\">Persons occupying the lodge may not exceed the number of persons indicated upon booking.</span></li>\r\n	<li class=\"_mce_tagged_br\"><span style=\"font-family: verdana, geneva; font-size: 10pt;\">During nights the all doors must be locked. Please remember to lock the door behind you and to remove the key. </span></li>\r\n	<li class=\"_mce_tagged_br\"><span style=\"font-family: verdana, geneva; font-size: 10pt;\">Please leave the Lodge reasonable tidy and clean after use.</span></li>\r\n	<li class=\"_mce_tagged_br\"><span style=\"font-family: verdana, geneva; font-size: 10pt;\">Out of respect for all guests, noise must be kept down to a comfortable level and we request that there be silence in the Lodge between 22h00 and 08h00</span></li>\r\n	<li class=\"_mce_tagged_br\"><span style=\"font-family: verdana, geneva; font-size: 10pt;\">Please keep furniture, fixtures and fittings in the same state of repair and condition as at the beginning of your stay. In the event of any damage to furniture, fixtures or fittings, you may be held liable for the replacement value or repair costs. This includes damage to the pool area.</span></li>\r\n	<li class=\"_mce_tagged_br\"><span style=\"font-family: verdana, geneva; font-size: 10pt;\">The use of open fires and the burning of any candles or lanterns, in or around the Lodge, will not be permitted.</span></li>\r\n	<li class=\"_mce_tagged_br\"><span style=\"font-family: verdana, geneva; font-size: 10pt;\">We operate a non-smoking policy throughout the Lodge. You are welcome to smoke outside the house, where ashtrays and/or bins will be provided.</span></li>\r\n	<li class=\"_mce_tagged_br\"><span style=\"font-family: verdana, geneva; font-size: 10pt;\">No pets or animals, with the exception of guide dogs, are allowed on the premises.</span></li>\r\n	<li class=\"_mce_tagged_br\"><span style=\"font-family: verdana, geneva; font-size: 10pt;\">The use or sale of any illegal substance in the Lodge or on surrounding property is not permissible.</span></li>\r\n	<li class=\"_mce_tagged_br\"><span style=\"text-align: justify; font-family: verdana, geneva; font-size: 10pt;\">Right of admission is reserved.</span></li>\r\n	<li class=\"_mce_tagged_br\"><span style=\"font-family: verdana, geneva; font-size: 10pt;\">We reserve the right to eject a guest/guests from the Lodge if they are not conducting themselves in an appropriate and/or acceptable manner to the building and/or other residents or staff.</span></li>\r\n	<li class=\"_mce_tagged_br\"><span style=\"font-family: verdana, geneva; font-size: 10pt;\">Swimming Pool - The premises contains an unsupervised, open pool which may be used at the guests\' own risk.</span></li>\r\n</ul>\r\n[/fusion_text][/two_third][one_sixth last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][/one_sixth]', 'T&Cs', '', 'inherit', 'closed', 'closed', '', '984-revision-v1', '', '', '2015-09-08 12:44:05', '2015-09-08 10:44:05', '', 984, 'http://localhost/assagaylodge/984-revision-v1/', 0, 'revision', '', 0),
(989, 1, '2015-09-08 12:49:12', '2015-09-08 10:49:12', '[fullwidth background_color=\"\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding_top=\"20\" padding_bottom=\"20\" padding_left=\"0\" padding_right=\"0\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][title size=\"1\" content_align=\"right\" style_type=\"default\" sep_color=\"\" class=\"\" id=\"\"]Terms &amp; Conditions[/title][/fullwidth][one_sixth last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][/one_sixth][two_third last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][fusion_text]<h3 style=\"text-align: justify;\">Check-in Times</h3>\r\n<h4 style=\"text-align: justify;\"><strong><span style=\"font-family: verdana, geneva; font-size: 10pt;\">[checklist icon=\"fa-star-o\" iconcolor=\"\" circle=\"\" circlecolor=\"\" size=\"13px\" class=\"\" id=\"\"]\r\n[li_item icon=\"\"]Check-in Time is from 14h00 to 18h00 (Late arrivals must be arranged before hand)[/li_item]\r\n[li_item icon=\"\"]Check-out Time is before 10h00[/li_item]\r\n[/checklist]</span></strong></h4>\r\n<strong><span style=\"font-family: verdana, geneva; font-size: 10pt;\">Payment</span></strong>\r\n<ul>\r\n	<li><span style=\"font-family: verdana, geneva; font-size: 10pt;\">Rates are quoted in South African Rand \'<strong>ZAR</strong>\' and are subject to change without notice.</span></li>\r\n	<li><span style=\"font-family: verdana, geneva; font-size: 10pt;\">Rates are inclusive of <strong>14%</strong> VAT.</span></li>\r\n	<li><span style=\"font-family: verdana, geneva; font-size: 10pt;\">All accommodation must be settled either before or on arrival.</span></li>\r\n	<li><span style=\"font-family: verdana, geneva; font-size: 10pt;\">No bookings are guaranteed until your reservation is confirmed, having paid a <strong>50%</strong> deposit. </span></li>\r\n	<li><span style=\"font-family: verdana, geneva; font-size: 10pt;\">All online bookings are subject to an e-mail confirmation.</span></li>\r\n	<li><span style=\"text-align: left; font-family: verdana, geneva; font-size: 10pt;\">Payment may be made via <strong>Credit Card</strong> or <strong>Cash</strong>. </span></li>\r\n	<li><span style=\"text-align: left; font-family: verdana, geneva; font-size: 10pt;\">Only bank guaranteed cheques will be accepted.</span></li>\r\n</ul>\r\n<h4 style=\"text-align: justify;\">Refunds</h4>\r\n<ul style=\"text-align: justify;\">\r\n	<li><span style=\"font-family: verdana, geneva; font-size: 10pt;\">Guests are liable for the tariff of the full period booked and <strong>no refunds will be given for early departure, late arrivals, weather conditions or power outages</strong>.</span></li>\r\n</ul>\r\n<h4 style=\"text-align: justify;\"><strong><span style=\"text-align: justify; font-family: verdana, geneva;\">Cancellation Policy</span></strong></h4>\r\n<ul>\r\n	<li style=\"text-align: justify;\"><span style=\"text-align: justify; font-family: verdana, geneva; font-size: 10pt;\">Cancellation of any booking will only be accepted in writing or by email.</span></li>\r\n	<li style=\"text-align: justify;\"><span style=\"font-family: verdana, geneva; font-size: 10pt;\"><span style=\"text-align: justify;\">If you cancel your reservation </span><span style=\"text-align: justify;\">3 weeks</span><span style=\"text-align: justify;\"> before your arrival date, your deposit will be </span><span style=\"text-align: justify;\">r</span><span style=\"text-align: justify;\">efund</span><span style=\"text-align: justify;\">ed</span><span style=\"text-align: justify;\"> less an administration fee of </span><strong style=\"text-align: justify;\">15%</strong><span style=\"text-align: justify;\">. </span></span></li>\r\n	<li style=\"text-align: justify;\"><span style=\"font-family: verdana, geneva; font-size: 10pt;\"><span style=\"text-align: justify;\">If you cancel your reservation 2 weeks before your arrival date, your deposit will become </span><strong style=\"text-align: justify;\">non-refundable</strong><span style=\"text-align: justify;\">.</span></span></li>\r\n	<li style=\"text-align: justify;\"><span style=\"text-align: justify; font-family: verdana, geneva; font-size: 10pt;\">Payments are not refundable for reservations not cancelled and not taken up.</span></li>\r\n</ul>\r\n<h4 style=\"text-align: justify;\"><strong>General</strong></h4>\r\n<ul style=\"text-align: justify;\">\r\n	<li><span style=\"font-family: verdana, geneva; font-size: 10pt;\">A reservation may not be transferred.</span></li>\r\n	<li class=\"_mce_tagged_br\"><span style=\"font-family: verdana, geneva; font-size: 10pt;\">Bookings are for holiday purposes only and cannot give rise to a tenancy.</span></li>\r\n	<li class=\"_mce_tagged_br\"><span style=\"font-family: verdana, geneva; font-size: 10pt;\">Persons occupying the lodge may not exceed the number of persons indicated upon booking.</span></li>\r\n	<li class=\"_mce_tagged_br\"><span style=\"font-family: verdana, geneva; font-size: 10pt;\">During nights the all doors must be locked. Please remember to lock the door behind you and to remove the key. </span></li>\r\n	<li class=\"_mce_tagged_br\"><span style=\"font-family: verdana, geneva; font-size: 10pt;\">Please leave the Lodge reasonable tidy and clean after use.</span></li>\r\n	<li class=\"_mce_tagged_br\"><span style=\"font-family: verdana, geneva; font-size: 10pt;\">Out of respect for all guests, noise must be kept down to a comfortable level and we request that there be silence in the Lodge between 22h00 and 08h00</span></li>\r\n	<li class=\"_mce_tagged_br\"><span style=\"font-family: verdana, geneva; font-size: 10pt;\">Please keep furniture, fixtures and fittings in the same state of repair and condition as at the beginning of your stay. In the event of any damage to furniture, fixtures or fittings, you may be held liable for the replacement value or repair costs. This includes damage to the pool area.</span></li>\r\n	<li class=\"_mce_tagged_br\"><span style=\"font-family: verdana, geneva; font-size: 10pt;\">The use of open fires and the burning of any candles or lanterns, in or around the Lodge, will not be permitted.</span></li>\r\n	<li class=\"_mce_tagged_br\"><span style=\"font-family: verdana, geneva; font-size: 10pt;\">We operate a non-smoking policy throughout the Lodge. You are welcome to smoke outside the house, where ashtrays and/or bins will be provided.</span></li>\r\n	<li class=\"_mce_tagged_br\"><span style=\"font-family: verdana, geneva; font-size: 10pt;\">No pets or animals, with the exception of guide dogs, are allowed on the premises.</span></li>\r\n	<li class=\"_mce_tagged_br\"><span style=\"font-family: verdana, geneva; font-size: 10pt;\">The use or sale of any illegal substance in the Lodge or on surrounding property is not permissible.</span></li>\r\n	<li class=\"_mce_tagged_br\"><span style=\"text-align: justify; font-family: verdana, geneva; font-size: 10pt;\">Right of admission is reserved.</span></li>\r\n	<li class=\"_mce_tagged_br\"><span style=\"font-family: verdana, geneva; font-size: 10pt;\">We reserve the right to eject a guest/guests from the Lodge if they are not conducting themselves in an appropriate and/or acceptable manner to the building and/or other residents or staff.</span></li>\r\n	<li class=\"_mce_tagged_br\"><span style=\"font-family: verdana, geneva; font-size: 10pt;\">Swimming Pool - The premises contains an unsupervised, open pool which may be used at the guests\' own risk.</span></li>\r\n</ul>[/fusion_text][/two_third][one_sixth last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][/one_sixth]', 'T&Cs', '', 'inherit', 'closed', 'closed', '', '984-revision-v1', '', '', '2015-09-08 12:49:12', '2015-09-08 10:49:12', '', 984, 'http://localhost/assagaylodge/984-revision-v1/', 0, 'revision', '', 0),
(991, 1, '2015-09-08 12:58:13', '2015-09-08 10:58:13', '[fullwidth background_color=\"\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding_top=\"20\" padding_bottom=\"20\" padding_left=\"0\" padding_right=\"0\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][title size=\"1\" content_align=\"right\" style_type=\"default\" sep_color=\"\" class=\"\" id=\"\"]Terms &amp; Conditions[/title][/fullwidth][one_sixth last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][/one_sixth][two_third last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][fusion_text]\r\n<h3 style=\"text-align: justify;\">Check-in Times</h3>\r\n<h4 style=\"text-align: justify;\"><strong><span style=\"font-family: verdana, geneva; font-size: 10pt;\">[checklist icon=\"fa-star-o\" iconcolor=\"\" circle=\"\" circlecolor=\"\" size=\"13px\" class=\"\" id=\"\"]\r\n[li_item icon=\"\"]Check-in Time is from 14h00 to 18h00 (Late arrivals must be arranged before hand)[/li_item]\r\n[li_item icon=\"\"]Check-out Time is before 10h00[/li_item]\r\n[/checklist]</span></strong></h4>\r\n[/fusion_text][/two_third][one_sixth last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][/one_sixth][one_sixth last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][/one_sixth][two_third last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][fusion_text]\r\n<h3 style=\"text-align: justify;\">Payment Terms</h3>\r\n<h4 style=\"text-align: justify;\"><strong><span style=\"font-family: verdana, geneva; font-size: 10pt;\">[checklist icon=\"fa-star-o\" iconcolor=\"\" circle=\"\" circlecolor=\"\" size=\"13px\" class=\"\" id=\"\"]\r\n[li_item icon=\"\"]Rates are inclusive of 14% VAT[/li_item]\r\n<span style=\"font-family: Verdana;\"><span style=\"font-size: small;\">[li_item icon=\"\"]Payment may be made via Bank Transfer, <strong>Credit Card</strong> or <strong>Cash (No Cheques will be accepted)</strong>[/li_item]\r\n</span><span style=\"font-size: small;\"> [li_item icon=\"\"]All accommodation must be settled either before or on arrival[/li_item]</span></span></span></strong><strong><span style=\"font-family: verdana, geneva; font-size: 10pt;\">\r\n[li_item icon=\"\"]No bookings are guaranteed until your reservation is confirmed, having paid a <strong>50%</strong> deposit[/li_item]\r\n[/checklist]</span></strong></h4>\r\n<h4 style=\"text-align: justify;\">Refunds</h4>\r\n<ul style=\"text-align: justify;\">\r\n	<li><span style=\"font-family: verdana, geneva; font-size: 10pt;\">Guests are liable for the tariff of the full period booked and <strong>no refunds will be given for early departure, late arrivals, weather conditions or power outages</strong>.</span></li>\r\n</ul>\r\n<h4 style=\"text-align: justify;\"><strong><span style=\"text-align: justify; font-family: verdana, geneva;\">Cancellation Policy</span></strong></h4>\r\n<ul>\r\n	<li style=\"text-align: justify;\"><span style=\"text-align: justify; font-family: verdana, geneva; font-size: 10pt;\">Cancellation of any booking will only be accepted in writing or by email.</span></li>\r\n	<li style=\"text-align: justify;\"><span style=\"font-family: verdana, geneva; font-size: 10pt;\"><span style=\"text-align: justify;\">If you cancel your reservation </span><span style=\"text-align: justify;\">3 weeks</span><span style=\"text-align: justify;\"> before your arrival date, your deposit will be </span><span style=\"text-align: justify;\">r</span><span style=\"text-align: justify;\">efund</span><span style=\"text-align: justify;\">ed</span><span style=\"text-align: justify;\"> less an administration fee of </span><strong style=\"text-align: justify;\">15%</strong><span style=\"text-align: justify;\">. </span></span></li>\r\n	<li style=\"text-align: justify;\"><span style=\"font-family: verdana, geneva; font-size: 10pt;\"><span style=\"text-align: justify;\">If you cancel your reservation 2 weeks before your arrival date, your deposit will become </span><strong style=\"text-align: justify;\">non-refundable</strong><span style=\"text-align: justify;\">.</span></span></li>\r\n	<li style=\"text-align: justify;\"><span style=\"text-align: justify; font-family: verdana, geneva; font-size: 10pt;\">Payments are not refundable for reservations not cancelled and not taken up.</span></li>\r\n</ul>\r\n<h4 style=\"text-align: justify;\"><strong>General</strong></h4>\r\n<ul style=\"text-align: justify;\">\r\n	<li><span style=\"font-family: verdana, geneva; font-size: 10pt;\">A reservation may not be transferred.</span></li>\r\n	<li class=\"_mce_tagged_br\"><span style=\"font-family: verdana, geneva; font-size: 10pt;\">Bookings are for holiday purposes only and cannot give rise to a tenancy.</span></li>\r\n	<li class=\"_mce_tagged_br\"><span style=\"font-family: verdana, geneva; font-size: 10pt;\">Persons occupying the lodge may not exceed the number of persons indicated upon booking.</span></li>\r\n	<li class=\"_mce_tagged_br\"><span style=\"font-family: verdana, geneva; font-size: 10pt;\">During nights the all doors must be locked. Please remember to lock the door behind you and to remove the key. </span></li>\r\n	<li class=\"_mce_tagged_br\"><span style=\"font-family: verdana, geneva; font-size: 10pt;\">Please leave the Lodge reasonable tidy and clean after use.</span></li>\r\n	<li class=\"_mce_tagged_br\"><span style=\"font-family: verdana, geneva; font-size: 10pt;\">Out of respect for all guests, noise must be kept down to a comfortable level and we request that there be silence in the Lodge between 22h00 and 08h00</span></li>\r\n	<li class=\"_mce_tagged_br\"><span style=\"font-family: verdana, geneva; font-size: 10pt;\">Please keep furniture, fixtures and fittings in the same state of repair and condition as at the beginning of your stay. In the event of any damage to furniture, fixtures or fittings, you may be held liable for the replacement value or repair costs. This includes damage to the pool area.</span></li>\r\n	<li class=\"_mce_tagged_br\"><span style=\"font-family: verdana, geneva; font-size: 10pt;\">The use of open fires and the burning of any candles or lanterns, in or around the Lodge, will not be permitted.</span></li>\r\n	<li class=\"_mce_tagged_br\"><span style=\"font-family: verdana, geneva; font-size: 10pt;\">We operate a non-smoking policy throughout the Lodge. You are welcome to smoke outside the house, where ashtrays and/or bins will be provided.</span></li>\r\n	<li class=\"_mce_tagged_br\"><span style=\"font-family: verdana, geneva; font-size: 10pt;\">No pets or animals, with the exception of guide dogs, are allowed on the premises.</span></li>\r\n	<li class=\"_mce_tagged_br\"><span style=\"font-family: verdana, geneva; font-size: 10pt;\">The use or sale of any illegal substance in the Lodge or on surrounding property is not permissible.</span></li>\r\n	<li class=\"_mce_tagged_br\"><span style=\"text-align: justify; font-family: verdana, geneva; font-size: 10pt;\">Right of admission is reserved.</span></li>\r\n	<li class=\"_mce_tagged_br\"><span style=\"font-family: verdana, geneva; font-size: 10pt;\">We reserve the right to eject a guest/guests from the Lodge if they are not conducting themselves in an appropriate and/or acceptable manner to the building and/or other residents or staff.</span></li>\r\n	<li class=\"_mce_tagged_br\"><span style=\"font-family: verdana, geneva; font-size: 10pt;\">Swimming Pool - The premises contains an unsupervised, open pool which may be used at the guests\' own risk.</span></li>\r\n</ul>\r\n[/fusion_text][/two_third][one_sixth last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][/one_sixth]', 'T&Cs', '', 'inherit', 'closed', 'closed', '', '984-revision-v1', '', '', '2015-09-08 12:58:13', '2015-09-08 10:58:13', '', 984, 'http://localhost/assagaylodge/984-revision-v1/', 0, 'revision', '', 0),
(992, 1, '2015-09-08 13:04:30', '2015-09-08 11:04:30', '[fullwidth background_color=\"\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding_top=\"20\" padding_bottom=\"20\" padding_left=\"0\" padding_right=\"0\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][title size=\"1\" content_align=\"right\" style_type=\"default\" sep_color=\"\" class=\"\" id=\"\"]Terms &amp; Conditions[/title][/fullwidth][one_sixth last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][/one_sixth][two_third last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][fusion_text]\r\n<h3 style=\"text-align: justify;\">Check-in Times</h3>\r\n<h4 style=\"text-align: justify;\"><strong><span style=\"font-family: verdana, geneva; font-size: 10pt;\">[checklist icon=\"fa-star-o\" iconcolor=\"\" circle=\"\" circlecolor=\"\" size=\"13px\" class=\"\" id=\"\"]\r\n[li_item icon=\"\"]Check-in Time is from 14h00 to 18h00 (Late arrivals must be arranged before hand)[/li_item]\r\n[li_item icon=\"\"]Check-out Time is before 10h00[/li_item]\r\n[/checklist]</span></strong></h4>\r\n[/fusion_text][/two_third][one_sixth last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][/one_sixth][one_sixth last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][/one_sixth][two_third last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][fusion_text]\r\n<h3 style=\"text-align: justify;\">Payment Terms</h3>\r\n<h4 style=\"text-align: justify;\"><strong><span style=\"font-family: verdana, geneva; font-size: 10pt;\">[checklist icon=\"fa-star-o\" iconcolor=\"\" circle=\"\" circlecolor=\"\" size=\"13px\" class=\"\" id=\"\"]\r\n[li_item icon=\"\"]Rates are inclusive of 14% VAT[/li_item]\r\n<span style=\"font-family: Verdana;\"><span style=\"font-size: small;\">[li_item icon=\"\"]Payment may be made via Bank Transfer, <strong>Credit Card</strong> or <strong>Cash (No Cheques will be accepted)</strong>[/li_item]\r\n<span style=\"font-family: Verdana; font-size: small;\">[li_item icon=\"\"]No Cheques will be accepted[/li_item]\r\n</span></span></span></span></strong><strong><span style=\"font-family: verdana, geneva; font-size: 10pt;\"><span style=\"font-family: Verdana;\"><span style=\"font-size: small;\">[li_item icon=\"\"]All accommodation must be settled either before or on arrival[/li_item]</span></span></span></strong><strong><span style=\"font-family: verdana, geneva; font-size: 10pt;\">\r\n[li_item icon=\"\"]No bookings are guaranteed until your reservation is confirmed, having paid a <strong>50%</strong> deposit[/li_item]\r\n[/checklist]</span></strong></h4>\r\n[/fusion_text][/two_third][one_sixth last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][/one_sixth][one_sixth last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][/one_sixth][two_third last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][fusion_text]\r\n<h3 style=\"text-align: justify;\">Refunds &amp; Cancelation Terms</h3>\r\n<h4 style=\"text-align: justify;\"><strong><span style=\"font-family: verdana, geneva; font-size: 10pt;\">[checklist icon=\"fa-star-o\" iconcolor=\"\" circle=\"\" circlecolor=\"\" size=\"13px\" class=\"\" id=\"\"]\r\n[li_item icon=\"\"]Guests are liable for the tariff of the full period booked and no refunds will be given for early departure, late arrivals, weather conditions or power outages[/li_item]\r\n<span style=\"font-family: Verdana;\"><span style=\"font-size: small;\">[li_item icon=\"\"]<span style=\"text-align: justify; font-family: verdana, geneva; font-size: 10pt;\">Cancellation of any booking will only be accepted in writing or by email.</span>[/li_item]\r\n<span style=\"font-family: Verdana; font-size: small;\">[li_item icon=\"\"]<span style=\"text-align: justify;\">If you cancel your reservation </span><span style=\"text-align: justify;\">3 weeks</span><span style=\"text-align: justify;\"> before your arrival date, your deposit will be </span><span style=\"text-align: justify;\">r</span><span style=\"text-align: justify;\">efund</span><span style=\"text-align: justify;\">ed</span><span style=\"text-align: justify;\"> less an administration fee of </span><strong style=\"text-align: justify;\">15%</strong>[/li_item]\r\n</span></span></span></span></strong><strong><span style=\"font-family: verdana, geneva; font-size: 10pt;\"><span style=\"font-family: Verdana;\"><span style=\"font-size: small;\">[li_item icon=\"\"]<span style=\"text-align: justify;\">If you cancel your reservation 2 weeks before your arrival date, your deposit will become </span><strong style=\"text-align: justify;\">non-refundable</strong>[/li_item]</span></span></span></strong><strong><span style=\"font-family: verdana, geneva; font-size: 10pt;\">\r\n[li_item icon=\"\"]<span style=\"text-align: justify; font-family: verdana, geneva; font-size: 10pt;\">Payments are not refundable for reservations not cancelled and not taken up</span>[/li_item]\r\n[/checklist]</span></strong></h4>\r\n<h4 style=\"text-align: justify;\"><span style=\"text-align: justify; font-family: verdana, geneva; font-size: 10pt;\"> </span></h4>\r\n<h4 style=\"text-align: justify;\"><strong>General</strong></h4>\r\n<ul style=\"text-align: justify;\">\r\n	<li><span style=\"font-family: verdana, geneva; font-size: 10pt;\">A reservation may not be transferred.</span></li>\r\n	<li class=\"_mce_tagged_br\"><span style=\"font-family: verdana, geneva; font-size: 10pt;\">Bookings are for holiday purposes only and cannot give rise to a tenancy.</span></li>\r\n	<li class=\"_mce_tagged_br\"><span style=\"font-family: verdana, geneva; font-size: 10pt;\">Persons occupying the lodge may not exceed the number of persons indicated upon booking.</span></li>\r\n	<li class=\"_mce_tagged_br\"><span style=\"font-family: verdana, geneva; font-size: 10pt;\">During nights the all doors must be locked. Please remember to lock the door behind you and to remove the key. </span></li>\r\n	<li class=\"_mce_tagged_br\"><span style=\"font-family: verdana, geneva; font-size: 10pt;\">Please leave the Lodge reasonable tidy and clean after use.</span></li>\r\n	<li class=\"_mce_tagged_br\"><span style=\"font-family: verdana, geneva; font-size: 10pt;\">Out of respect for all guests, noise must be kept down to a comfortable level and we request that there be silence in the Lodge between 22h00 and 08h00</span></li>\r\n	<li class=\"_mce_tagged_br\"><span style=\"font-family: verdana, geneva; font-size: 10pt;\">Please keep furniture, fixtures and fittings in the same state of repair and condition as at the beginning of your stay. In the event of any damage to furniture, fixtures or fittings, you may be held liable for the replacement value or repair costs. This includes damage to the pool area.</span></li>\r\n	<li class=\"_mce_tagged_br\"><span style=\"font-family: verdana, geneva; font-size: 10pt;\">The use of open fires and the burning of any candles or lanterns, in or around the Lodge, will not be permitted.</span></li>\r\n	<li class=\"_mce_tagged_br\"><span style=\"font-family: verdana, geneva; font-size: 10pt;\">We operate a non-smoking policy throughout the Lodge. You are welcome to smoke outside the house, where ashtrays and/or bins will be provided.</span></li>\r\n	<li class=\"_mce_tagged_br\"><span style=\"font-family: verdana, geneva; font-size: 10pt;\">No pets or animals, with the exception of guide dogs, are allowed on the premises.</span></li>\r\n	<li class=\"_mce_tagged_br\"><span style=\"font-family: verdana, geneva; font-size: 10pt;\">The use or sale of any illegal substance in the Lodge or on surrounding property is not permissible.</span></li>\r\n	<li class=\"_mce_tagged_br\"><span style=\"text-align: justify; font-family: verdana, geneva; font-size: 10pt;\">Right of admission is reserved.</span></li>\r\n	<li class=\"_mce_tagged_br\"><span style=\"font-family: verdana, geneva; font-size: 10pt;\">We reserve the right to eject a guest/guests from the Lodge if they are not conducting themselves in an appropriate and/or acceptable manner to the building and/or other residents or staff.</span></li>\r\n	<li class=\"_mce_tagged_br\"><span style=\"font-family: verdana, geneva; font-size: 10pt;\">Swimming Pool - The premises contains an unsupervised, open pool which may be used at the guests\' own risk.</span></li>\r\n</ul>\r\n[/fusion_text][/two_third][one_sixth last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][/one_sixth]', 'T&Cs', '', 'inherit', 'closed', 'closed', '', '984-revision-v1', '', '', '2015-09-08 13:04:30', '2015-09-08 11:04:30', '', 984, 'http://localhost/assagaylodge/984-revision-v1/', 0, 'revision', '', 0);
INSERT INTO `wp_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(993, 1, '2015-09-08 13:19:17', '2015-09-08 11:19:17', '[fullwidth background_color=\"\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding_top=\"20\" padding_bottom=\"20\" padding_left=\"0\" padding_right=\"0\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][title size=\"1\" content_align=\"right\" style_type=\"default\" sep_color=\"\" class=\"\" id=\"\"]Terms &amp; Conditions[/title][/fullwidth][one_sixth last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][/one_sixth][two_third last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][fusion_text]\r\n<h3 style=\"text-align: justify;\">Check-in Times</h3>\r\n<p style=\"text-align: justify;\"><span style=\"font-family: verdana, geneva; font-size: 10pt;\">[checklist icon=\"fa-star-o\" iconcolor=\"\" circle=\"\" circlecolor=\"\" size=\"13px\" class=\"\" id=\"\"]\r\n[li_item icon=\"\"]Check-in Time is from 14h00 to 18h00 (Late arrivals must be arranged before hand).[/li_item]\r\n[li_item icon=\"\"]Check-out Time is before 10h00.[/li_item]\r\n[/checklist]</span></p>\r\n[/fusion_text][/two_third][one_sixth last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][/one_sixth][one_sixth last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][/one_sixth][two_third last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][fusion_text]\r\n<h3 style=\"text-align: justify;\">Payment Terms</h3>\r\n<p style=\"text-align: justify;\"><span style=\"font-family: verdana, geneva; font-size: 10pt;\">[checklist icon=\"fa-star-o\" iconcolor=\"\" circle=\"\" circlecolor=\"\" size=\"13px\" class=\"\" id=\"\"]\r\n[li_item icon=\"\"]Rates are inclusive of 14% VAT.[/li_item]\r\n<span style=\"font-family: Verdana;\"><span style=\"font-size: small;\">[li_item icon=\"\"]Payment may be made via Bank Transfer, Credit Card or Cash.[/li_item]\r\n<span style=\"font-family: Verdana; font-size: small;\">[li_item icon=\"\"]No Cheques will be accepted.[/li_item]\r\n</span></span></span></span><span style=\"font-family: verdana, geneva; font-size: 10pt;\"><span style=\"font-family: Verdana;\"><span style=\"font-size: small;\">[li_item icon=\"\"]All accommodation must be settled either before or on arrival.[/li_item]</span></span></span><span style=\"font-family: verdana, geneva; font-size: 10pt;\">\r\n[li_item icon=\"\"]No bookings are guaranteed until your reservation is confirmed, having paid a 50% deposit.[/li_item]\r\n[/checklist]</span></p>\r\n[/fusion_text][/two_third][one_sixth last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][/one_sixth][one_sixth last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][/one_sixth][two_third last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][fusion_text]\r\n<h3 style=\"text-align: justify;\">Refunds &amp; Cancelation Terms</h3>\r\n<p style=\"text-align: justify;\"><span style=\"font-family: verdana, geneva; font-size: 10pt;\">[checklist icon=\"fa-star-o\" iconcolor=\"\" circle=\"\" circlecolor=\"\" size=\"13px\" class=\"\" id=\"\"]\r\n[li_item icon=\"\"]Guests are liable for the tariff of the full period booked.[/li_item]\r\n<span style=\"font-family: Verdana;\"><span style=\"font-size: small;\">[li_item icon=\"\"]N<span style=\"font-family: Verdana; font-size: small;\">o refunds will be given for early departures, late arrivals, weather conditions or power outages</span><span style=\"text-align: justify; font-family: verdana, geneva; font-size: 10pt;\">.</span>[/li_item]</span></span></span><span style=\"font-family: verdana, geneva; font-size: 10pt;\">\r\n<span style=\"font-family: Verdana;\"><span style=\"font-size: small;\">[li_item icon=\"\"]<span style=\"text-align: justify; font-family: verdana, geneva; font-size: 10pt;\">Cancellation of any booking will only be accepted in writing or by email.</span>[/li_item]\r\n<span style=\"font-family: Verdana; font-size: small;\">[li_item icon=\"\"]<span style=\"text-align: justify;\">If you cancel your reservation </span><span style=\"text-align: justify;\">3 weeks</span><span style=\"text-align: justify;\"> before your arrival date, your deposit will be </span><span style=\"text-align: justify;\">r</span><span style=\"text-align: justify;\">efund</span><span style=\"text-align: justify;\">ed</span><span style=\"text-align: justify;\"> less an administration fee of </span>15%.[/li_item]\r\n</span></span></span></span><span style=\"font-family: verdana, geneva; font-size: 10pt;\"><span style=\"font-family: Verdana;\"><span style=\"font-size: small;\">[li_item icon=\"\"]<span style=\"text-align: justify;\">If you cancel your reservation 2 weeks before your arrival date, your deposit will become </span>non-refundable.[/li_item]</span></span></span><span style=\"font-family: verdana, geneva; font-size: 10pt;\">\r\n[li_item icon=\"\"]<span style=\"text-align: justify; font-family: verdana, geneva; font-size: 10pt;\">Payments are not refundable for reservations not cancelled and not taken up.</span>[/li_item]\r\n[/checklist]</span></p>\r\n[/fusion_text][/two_third][one_sixth last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][/one_sixth][one_sixth last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][/one_sixth][two_third last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][fusion_text]\r\n<h3 style=\"text-align: justify;\">General Terms</h3>\r\n<span style=\"font-family: verdana, geneva; font-size: 10pt;\">[checklist icon=\"fa-star-o\" iconcolor=\"\" circle=\"\" circlecolor=\"\" size=\"13px\" class=\"\" id=\"\"]\r\n[li_item icon=\"\"]A reservation may not be transferred.[/li_item]\r\n<span style=\"font-family: Verdana;\"><span style=\"font-size: small;\">[li_item icon=\"\"]Bookings are for holiday purposes only and cannot give rise to a tenancy.[/li_item]\r\n<span style=\"font-family: Verdana; font-size: small;\">[li_item icon=\"\"]Persons occupying the lodge may not exceed the number of persons indicated upon booking.[/li_item]\r\n</span></span></span></span><span style=\"font-family: verdana, geneva; font-size: 10pt;\"><span style=\"font-family: Verdana;\"><span style=\"font-size: small;\">[li_item icon=\"\"]During nights the all doors must be locked. Please remember to lock the door behind you and to remove the key.[/li_item]</span></span></span><span style=\"font-family: verdana, geneva; font-size: 10pt;\">\r\n[li_item icon=\"\"]Please leave the Lodge reasonable tidy and clean after use.[/li_item]\r\n<span style=\"font-family: Verdana; font-size: small;\">[li_item icon=\"\"]Out of respect for all guests, and the fact that we are in a conservancy, noise must be kept down to a comfortable level and we request that there be silence in the Lodge between 22h00 and 08h00.[/li_item]\r\n<span style=\"font-family: Verdana; font-size: small;\">[li_item icon=\"\"]Please keep furniture, fixtures and fittings in the same state of repair and condition as at the beginning of your stay. In the event of any damage to furniture, fixtures or fittings, you may be held liable for the replacement value or repair costs. This includes damage to the pool area.[/li_item]</span>\r\n<span style=\"font-family: Verdana; font-size: small;\">[li_item icon=\"\"]The use of open fires and the burning of any candles or lanterns, in or around the Lodge, will not be permitted.[/li_item]</span>\r\n<span style=\"font-family: Verdana; font-size: small;\">[li_item icon=\"\"]We operate a non-smoking policy throughout the Lodge. You are welcome to smoke outside the house, where ashtrays and/or bins will be provided.[/li_item]\r\n[li_item icon=\"\"]No pets or animals, with the exception of guide dogs, are allowed on the premises.[/li_item]\r\n</span></span></span><span style=\"font-family: verdana, geneva; font-size: 10pt;\"><span style=\"font-family: Verdana; font-size: small;\"><span style=\"font-family: Verdana; font-size: small;\"><span style=\"font-family: Verdana; font-size: small;\">[li_item icon=\"\"]The use or sale of any illegal substance in the Lodge or on surrounding property is not permissible.[/li_item]\r\n</span></span></span></span><span style=\"font-family: verdana, geneva; font-size: 10pt;\"><span style=\"font-family: Verdana; font-size: small;\"><span style=\"font-family: Verdana; font-size: small;\"><span style=\"font-family: Verdana; font-size: small;\">[li_item icon=\"\"]No pets or animals, with the exception of guide dogs, are allowed on the premises.[/li_item]\r\n</span></span></span></span><span style=\"font-family: verdana, geneva; font-size: 10pt;\"><span style=\"font-family: Verdana; font-size: small;\"><span style=\"font-family: Verdana; font-size: small;\"><span style=\"font-family: Verdana; font-size: small;\">[li_item icon=\"\"]<span style=\"text-align: justify; font-family: verdana, geneva; font-size: 10pt;\">Right of admission is reserved.</span>[/li_item]\r\n</span></span></span></span><span style=\"font-family: verdana, geneva; font-size: 10pt;\"><span style=\"font-family: Verdana; font-size: small;\"><span style=\"font-family: Verdana; font-size: small;\"><span style=\"font-family: Verdana; font-size: small;\">[li_item icon=\"\"]We reserve the right to eject a guest/guests from the Lodge if they are not conducting themselves in an appropriate and/or acceptable manner to the building and/or other residents or staff.[/li_item]\r\n[li_item icon=\"\"]Swimming Pool - The premises contains an unsupervised, open pool which may be used at the guests\' own risk.[/li_item]</span></span></span></span>\r\n[/checklist][/fusion_text][/two_third][one_sixth last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][/one_sixth]', 'T&Cs', '', 'inherit', 'closed', 'closed', '', '984-revision-v1', '', '', '2015-09-08 13:19:17', '2015-09-08 11:19:17', '', 984, 'http://localhost/assagaylodge/984-revision-v1/', 0, 'revision', '', 0),
(994, 1, '2015-09-08 13:26:33', '2015-09-08 11:26:33', '[fullwidth background_color=\"\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding_top=\"20\" padding_bottom=\"20\" padding_left=\"0\" padding_right=\"0\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][title size=\"1\" content_align=\"right\" style_type=\"default\" sep_color=\"\" class=\"\" id=\"\"]Terms &amp; Conditions[/title][/fullwidth][one_sixth last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][/one_sixth][two_third last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][fusion_text]\r\n<h3 style=\"text-align: justify;\">Check-in Times</h3>\r\n<span style=\"font-size: 10pt;\">[checklist icon=\"fa-star-o\" iconcolor=\"\" circle=\"\" circlecolor=\"\" size=\"13px\" class=\"\" id=\"\"]\r\n[li_item icon=\"\"]Check-in Time is from 14h00 to 18h00 (Late arrivals must be arranged before hand).[/li_item]\r\n[li_item icon=\"\"]Check-out Time is before 10h00.[/li_item]\r\n[/checklist]</span>[/fusion_text][/two_third][one_sixth last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][/one_sixth][one_sixth last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][/one_sixth][two_third last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][fusion_text]\r\n<h3 style=\"text-align: justify;\">Payment Terms</h3>\r\n<p style=\"text-align: justify;\"><span style=\"font-size: 10pt;\">[checklist icon=\"fa-star-o\" iconcolor=\"\" circle=\"\" circlecolor=\"\" size=\"13px\" class=\"\" id=\"\"]\r\n[li_item icon=\"\"]Rates are inclusive of 14% VAT.[/li_item]\r\n<span style=\"font-size: small;\">[li_item icon=\"\"]Payment may be made via Bank Transfer, Credit Card or Cash.[/li_item]\r\n<span style=\"font-size: small;\">[li_item icon=\"\"]No Cheques will be accepted.[/li_item]\r\n</span></span></span><span style=\"font-size: 10pt;\"><span style=\"font-size: small;\">[li_item icon=\"\"]All accommodation must be settled either before or on arrival.[/li_item]</span></span><span style=\"font-size: 10pt;\">\r\n[li_item icon=\"\"]No bookings are guaranteed until your reservation is confirmed, having paid a 50% deposit.[/li_item]\r\n[/checklist]</span></p>\r\n[/fusion_text][/two_third][one_sixth last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][/one_sixth][one_sixth last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][/one_sixth][two_third last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][fusion_text]\r\n<h3 style=\"text-align: justify;\">Refunds &amp; Cancelation Terms</h3>\r\n<p style=\"text-align: justify;\"><span style=\"font-family: verdana, geneva; font-size: 10pt;\">[checklist icon=\"fa-star-o\" iconcolor=\"\" circle=\"\" circlecolor=\"\" size=\"13px\" class=\"\" id=\"\"]\r\n[li_item icon=\"\"]Guests are liable for the tariff of the full period booked.[/li_item]\r\n<span style=\"font-family: Verdana;\"><span style=\"font-size: small;\">[li_item icon=\"\"]N<span style=\"font-family: Verdana; font-size: small;\">o refunds will be given for early departures, late arrivals, weather conditions or power outages</span><span style=\"text-align: justify; font-family: verdana, geneva; font-size: 10pt;\">.</span>[/li_item]</span></span></span><span style=\"font-family: verdana, geneva; font-size: 10pt;\">\r\n<span style=\"font-family: Verdana;\"><span style=\"font-size: small;\">[li_item icon=\"\"]<span style=\"text-align: justify; font-family: verdana, geneva; font-size: 10pt;\">Cancellation of any booking will only be accepted in writing or by email.</span>[/li_item]\r\n<span style=\"font-family: Verdana; font-size: small;\">[li_item icon=\"\"]<span style=\"text-align: justify;\">If you cancel your reservation </span><span style=\"text-align: justify;\">3 weeks</span><span style=\"text-align: justify;\"> before your arrival date, your deposit will be </span><span style=\"text-align: justify;\">r</span><span style=\"text-align: justify;\">efund</span><span style=\"text-align: justify;\">ed</span><span style=\"text-align: justify;\"> less an administration fee of </span>15%.[/li_item]\r\n</span></span></span></span><span style=\"font-family: verdana, geneva; font-size: 10pt;\"><span style=\"font-family: Verdana;\"><span style=\"font-size: small;\">[li_item icon=\"\"]<span style=\"text-align: justify;\">If you cancel your reservation 2 weeks before your arrival date, your deposit will become </span>non-refundable.[/li_item]</span></span></span><span style=\"font-family: verdana, geneva; font-size: 10pt;\">\r\n[li_item icon=\"\"]<span style=\"text-align: justify; font-family: verdana, geneva; font-size: 10pt;\">Payments are not refundable for reservations not cancelled and not taken up.</span>[/li_item]\r\n[/checklist]</span></p>\r\n[/fusion_text][/two_third][one_sixth last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][/one_sixth][one_sixth last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][/one_sixth][two_third last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][fusion_text]\r\n<h3 style=\"text-align: justify;\">General Terms</h3>\r\n<span style=\"font-family: verdana, geneva; font-size: 10pt;\">[checklist icon=\"fa-star-o\" iconcolor=\"\" circle=\"\" circlecolor=\"\" size=\"13px\" class=\"\" id=\"\"]\r\n[li_item icon=\"\"]A reservation may not be transferred.[/li_item]\r\n<span style=\"font-family: Verdana;\"><span style=\"font-size: small;\">[li_item icon=\"\"]Bookings are for holiday purposes only and cannot give rise to a tenancy.[/li_item]\r\n<span style=\"font-family: Verdana; font-size: small;\">[li_item icon=\"\"]Persons occupying the lodge may not exceed the number of persons indicated upon booking.[/li_item]\r\n</span></span></span></span><span style=\"font-family: verdana, geneva; font-size: 10pt;\"><span style=\"font-family: Verdana;\"><span style=\"font-size: small;\">[li_item icon=\"\"]During nights the all doors must be locked. Please remember to lock the door behind you and to remove the key.[/li_item]</span></span></span><span style=\"font-family: verdana, geneva; font-size: 10pt;\">\r\n[li_item icon=\"\"]Please leave the Lodge reasonable tidy and clean after use.[/li_item]\r\n<span style=\"font-family: Verdana; font-size: small;\">[li_item icon=\"\"]Out of respect for all guests, and the fact that we are in a conservancy, noise must be kept down to a comfortable level and we request that there be silence in the Lodge between 22h00 and 08h00.[/li_item]\r\n<span style=\"font-family: Verdana; font-size: small;\">[li_item icon=\"\"]Please keep furniture, fixtures and fittings in the same state of repair and condition as at the beginning of your stay. In the event of any damage to furniture, fixtures or fittings, you may be held liable for the replacement value or repair costs. This includes damage to the pool area.[/li_item]</span>\r\n<span style=\"font-family: Verdana; font-size: small;\">[li_item icon=\"\"]The use of open fires and the burning of any candles or lanterns, in or around the Lodge, will not be permitted.[/li_item]</span>\r\n<span style=\"font-family: Verdana; font-size: small;\">[li_item icon=\"\"]We operate a non-smoking policy throughout the Lodge. You are welcome to smoke outside the house, where ashtrays and/or bins will be provided.[/li_item]\r\n[li_item icon=\"\"]No pets or animals, with the exception of guide dogs, are allowed on the premises.[/li_item]\r\n</span></span></span><span style=\"font-family: verdana, geneva; font-size: 10pt;\"><span style=\"font-family: Verdana; font-size: small;\"><span style=\"font-family: Verdana; font-size: small;\"><span style=\"font-family: Verdana; font-size: small;\">[li_item icon=\"\"]The use or sale of any illegal substance in the Lodge or on surrounding property is not permissible.[/li_item]\r\n</span></span></span></span><span style=\"font-family: verdana, geneva; font-size: 10pt;\"><span style=\"font-family: Verdana; font-size: small;\"><span style=\"font-family: Verdana; font-size: small;\"><span style=\"font-family: Verdana; font-size: small;\">[li_item icon=\"\"]No pets or animals, with the exception of guide dogs, are allowed on the premises.[/li_item]\r\n</span></span></span></span><span style=\"font-family: verdana, geneva; font-size: 10pt;\"><span style=\"font-family: Verdana; font-size: small;\"><span style=\"font-family: Verdana; font-size: small;\"><span style=\"font-family: Verdana; font-size: small;\">[li_item icon=\"\"]<span style=\"text-align: justify; font-family: verdana, geneva; font-size: 10pt;\">Right of admission is reserved.</span>[/li_item]\r\n</span></span></span></span><span style=\"font-family: verdana, geneva; font-size: 10pt;\"><span style=\"font-family: Verdana; font-size: small;\"><span style=\"font-family: Verdana; font-size: small;\"><span style=\"font-family: Verdana; font-size: small;\">[li_item icon=\"\"]We reserve the right to eject a guest/guests from the Lodge if they are not conducting themselves in an appropriate and/or acceptable manner to the building and/or other residents or staff.[/li_item]\r\n[li_item icon=\"\"]Swimming Pool - The premises contains an unsupervised, open pool which may be used at the guests\' own risk.[/li_item]</span></span></span></span>\r\n[/checklist][/fusion_text][/two_third][one_sixth last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][/one_sixth]', 'T&Cs', '', 'inherit', 'closed', 'closed', '', '984-revision-v1', '', '', '2015-09-08 13:26:33', '2015-09-08 11:26:33', '', 984, 'http://localhost/assagaylodge/984-revision-v1/', 0, 'revision', '', 0),
(995, 1, '2015-09-08 13:31:31', '2015-09-08 11:31:31', '[fullwidth background_color=\"\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding_top=\"20\" padding_bottom=\"20\" padding_left=\"0\" padding_right=\"0\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][title size=\"1\" content_align=\"right\" style_type=\"default\" sep_color=\"\" class=\"\" id=\"\"]Terms &amp; Conditions[/title][/fullwidth][one_sixth last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][/one_sixth][two_third last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][fusion_text]\r\n<h3 style=\"text-align: justify;\">Check-in Times</h3>\r\n<span style=\"font-size: 12pt;\">[checklist icon=\"fa-star-o\" iconcolor=\"\" circle=\"\" circlecolor=\"\" size=\"13px\" class=\"\" id=\"\"]\r\n[li_item icon=\"\"]Check-in Time is from 14h00 to 18h00 (Late arrivals must be arranged before hand).[/li_item]\r\n[li_item icon=\"\"]Check-out Time is before 10h00.[/li_item]\r\n[/checklist]</span>[/fusion_text][/two_third][one_sixth last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][/one_sixth][one_sixth last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][/one_sixth][two_third last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][fusion_text]\r\n<h3 style=\"text-align: justify;\">Payment Terms</h3>\r\n<p style=\"text-align: justify;\"><span style=\"font-size: 12pt;\">[checklist icon=\"fa-star-o\" iconcolor=\"\" circle=\"\" circlecolor=\"\" size=\"13px\" class=\"\" id=\"\"]\r\n[li_item icon=\"\"]Rates are inclusive of 14% VAT.[/li_item]\r\n[li_item icon=\"\"]Payment may be made via Bank Transfer, Credit Card or Cash.[/li_item]\r\n[li_item icon=\"\"]No Cheques will be accepted.[/li_item]\r\n[li_item icon=\"\"]All accommodation must be settled either before or on arrival.[/li_item]\r\n[li_item icon=\"\"]No bookings are guaranteed until your reservation is confirmed, having paid a 50% deposit.[/li_item]\r\n[/checklist]</span></p>\r\n[/fusion_text][/two_third][one_sixth last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][/one_sixth][one_sixth last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][/one_sixth][two_third last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][fusion_text]\r\n<h3 style=\"text-align: justify;\">Refunds &amp; Cancelation Terms</h3>\r\n<p style=\"text-align: justify;\"><span style=\"font-size: 12pt;\"><span style=\"font-family: verdana, geneva;\">[checklist icon=\"fa-star-o\" iconcolor=\"\" circle=\"\" circlecolor=\"\" size=\"13px\" class=\"\" id=\"\"]\r\n[li_item icon=\"\"]Guests are liable for the tariff of the full period booked.[/li_item]\r\n<span style=\"font-family: Verdana;\">[li_item icon=\"\"]N<span style=\"font-family: Verdana;\">o refunds will be given for early departures, late arrivals, weather conditions or power outages</span><span style=\"text-align: justify; font-family: verdana, geneva;\">.</span>[/li_item]\r\n</span></span><span style=\"font-family: verdana, geneva;\"> <span style=\"font-family: Verdana;\">[li_item icon=\"\"]<span style=\"text-align: justify; font-family: verdana, geneva;\">Cancellation of any booking will only be accepted in writing or by email.</span>[/li_item]\r\n<span style=\"font-family: Verdana;\">[li_item icon=\"\"]<span style=\"text-align: justify;\">If you cancel your reservation </span><span style=\"text-align: justify;\">3 weeks</span><span style=\"text-align: justify;\"> before your arrival date, your deposit will be </span><span style=\"text-align: justify;\">r</span><span style=\"text-align: justify;\">efund</span><span style=\"text-align: justify;\">ed</span><span style=\"text-align: justify;\"> less an administration fee of </span>15%.[/li_item]\r\n</span></span></span><span style=\"font-family: verdana, geneva;\"><span style=\"font-family: Verdana;\">[li_item icon=\"\"]<span style=\"text-align: justify;\">If you cancel your reservation 2 weeks before your arrival date, your deposit will become </span>non-refundable.[/li_item]\r\n</span></span><span style=\"font-family: verdana, geneva;\"> [li_item icon=\"\"]<span style=\"text-align: justify; font-family: verdana, geneva;\">Payments are not refundable for reservations not cancelled and not taken up.</span>[/li_item]\r\n[/checklist]</span></span></p>\r\n[/fusion_text][/two_third][one_sixth last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][/one_sixth][one_sixth last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][/one_sixth][two_third last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][fusion_text]\r\n<h3 style=\"text-align: justify;\">General Terms</h3>\r\n<span style=\"font-size: 12pt;\"><span style=\"font-family: verdana, geneva;\">[checklist icon=\"fa-star-o\" iconcolor=\"\" circle=\"\" circlecolor=\"\" size=\"13px\" class=\"\" id=\"\"]\r\n[li_item icon=\"\"]A reservation may not be transferred.[/li_item]\r\n<span style=\"font-family: Verdana;\">[li_item icon=\"\"]Bookings are for holiday purposes only and cannot give rise to a tenancy.[/li_item]\r\n<span style=\"font-family: Verdana;\">[li_item icon=\"\"]Persons occupying the lodge may not exceed the number of persons indicated upon booking.[/li_item]\r\n</span></span></span><span style=\"font-family: verdana, geneva;\"><span style=\"font-family: Verdana;\">[li_item icon=\"\"]During nights the all doors must be locked. Please remember to lock the door behind you and to remove the key.[/li_item]\r\n</span></span><span style=\"font-family: verdana, geneva;\"> [li_item icon=\"\"]Please leave the Lodge reasonable tidy and clean after use.[/li_item]\r\n<span style=\"font-family: Verdana;\">[li_item icon=\"\"]Out of respect for all guests, and the fact that we are in a conservancy, noise must be kept down to a comfortable level and we request that there be silence in the Lodge between 22h00 and 08h00.[/li_item]\r\n<span style=\"font-family: Verdana;\">[li_item icon=\"\"]Please keep furniture, fixtures and fittings in the same state of repair and condition as at the beginning of your stay. In the event of any damage to furniture, fixtures or fittings, you may be held liable for the replacement value or repair costs. This includes damage to the pool area.[/li_item]\r\n</span> <span style=\"font-family: Verdana;\">[li_item icon=\"\"]The use of open fires and the burning of any candles or lanterns, in or around the Lodge, will not be permitted.[/li_item]\r\n</span> <span style=\"font-family: Verdana;\">[li_item icon=\"\"]We operate a non-smoking policy throughout the Lodge. You are welcome to smoke outside the house, where ashtrays and/or bins will be provided.[/li_item]\r\n[li_item icon=\"\"]No pets or animals, with the exception of guide dogs, are allowed on the premises.[/li_item]\r\n</span></span></span><span style=\"font-family: verdana, geneva;\"><span style=\"font-family: Verdana;\"><span style=\"font-family: Verdana;\"><span style=\"font-family: Verdana;\">[li_item icon=\"\"]The use or sale of any illegal substance in the Lodge or on surrounding property is not permissible.[/li_item]\r\n</span></span></span></span><span style=\"font-family: verdana, geneva;\"><span style=\"font-family: Verdana;\"><span style=\"font-family: Verdana;\"><span style=\"font-family: Verdana;\">[li_item icon=\"\"]No pets or animals, with the exception of guide dogs, are allowed on the premises.[/li_item]\r\n</span></span></span></span><span style=\"font-family: verdana, geneva;\"><span style=\"font-family: Verdana;\"><span style=\"font-family: Verdana;\"><span style=\"font-family: Verdana;\">[li_item icon=\"\"]<span style=\"text-align: justify; font-family: verdana, geneva;\">Right of admission is reserved.</span>[/li_item]\r\n</span></span></span></span><span style=\"font-family: verdana, geneva;\"><span style=\"font-family: Verdana;\"><span style=\"font-family: Verdana;\"><span style=\"font-family: Verdana;\">[li_item icon=\"\"]We reserve the right to eject a guest/guests from the Lodge if they are not conducting themselves in an appropriate and/or acceptable manner to the building and/or other residents or staff.[/li_item]\r\n[li_item icon=\"\"]Swimming Pool - The premises contains an unsupervised, open pool which may be used at the guests\' own risk.[/li_item]</span></span></span></span></span>\r\n<span style=\"font-size: 12pt;\"> [/checklist]</span>[/fusion_text][/two_third][one_sixth last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][/one_sixth]', 'T&Cs', '', 'inherit', 'closed', 'closed', '', '984-revision-v1', '', '', '2015-09-08 13:31:31', '2015-09-08 11:31:31', '', 984, 'http://localhost/assagaylodge/984-revision-v1/', 0, 'revision', '', 0);
INSERT INTO `wp_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(996, 1, '2015-09-08 13:33:44', '2015-09-08 11:33:44', '[fullwidth background_color=\"\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding_top=\"20\" padding_bottom=\"20\" padding_left=\"0\" padding_right=\"0\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][title size=\"1\" content_align=\"right\" style_type=\"default\" sep_color=\"\" class=\"\" id=\"\"]Terms &amp; Conditions[/title][/fullwidth][one_sixth last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][/one_sixth][two_third last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][fusion_text]\r\n<h3 style=\"text-align: justify;\">Check-in Times</h3>\r\n<span style=\"font-size: 12pt;\">[checklist icon=\"fa-star-o\" iconcolor=\"\" circle=\"\" circlecolor=\"\" size=\"13px\" class=\"\" id=\"\"]\r\n[li_item icon=\"\"]Check-in Time is from 14h00 to 18h00 (Late arrivals must be arranged before hand).[/li_item]\r\n[li_item icon=\"\"]Check-out Time is before 10h00.[/li_item]\r\n[/checklist]</span>[/fusion_text][/two_third][one_sixth last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][/one_sixth][one_sixth last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][/one_sixth][two_third last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][fusion_text]\r\n<h3 style=\"text-align: justify;\">Payment Terms</h3>\r\n<p style=\"text-align: justify;\"><span style=\"font-size: 12pt;\">[checklist icon=\"fa-star-o\" iconcolor=\"\" circle=\"\" circlecolor=\"\" size=\"13px\" class=\"\" id=\"\"]\r\n[li_item icon=\"\"]Rates are inclusive of 14% VAT.[/li_item]\r\n[li_item icon=\"\"]Payment may be made via Bank Transfer, Credit Card or Cash.[/li_item]\r\n[li_item icon=\"\"]No Cheques will be accepted.[/li_item]\r\n[li_item icon=\"\"]All accommodation must be settled either before or on arrival.[/li_item]\r\n[li_item icon=\"\"]No bookings are guaranteed until your reservation is confirmed, having paid a 50% deposit.[/li_item]\r\n[/checklist]</span></p>\r\n[/fusion_text][/two_third][one_sixth last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][/one_sixth][one_sixth last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][/one_sixth][two_third last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][fusion_text]\r\n<h3 style=\"text-align: justify;\">Refunds &amp; Cancelation Terms</h3>\r\n<p style=\"text-align: justify;\"><span style=\"font-size: 12pt;\"><span style=\"font-family: verdana, geneva;\">[checklist icon=\"fa-star-o\" iconcolor=\"\" circle=\"\" circlecolor=\"\" size=\"13px\" class=\"\" id=\"\"]\r\n[li_item icon=\"\"]Guests are liable for the tariff of the full period booked.[/li_item]\r\n<span style=\"font-family: Verdana;\">[li_item icon=\"\"]N<span style=\"font-family: Verdana;\">o refunds will be given for early departures, late arrivals, weather conditions or power outages</span><span style=\"text-align: justify; font-family: verdana, geneva;\">.</span>[/li_item]\r\n</span></span><span style=\"font-family: verdana, geneva;\"> <span style=\"font-family: Verdana;\">[li_item icon=\"\"]<span style=\"text-align: justify; font-family: verdana, geneva;\">Cancellation of any booking will only be accepted in writing or by email.</span>[/li_item]\r\n<span style=\"font-family: Verdana;\">[li_item icon=\"\"]<span style=\"text-align: justify;\">If you cancel your reservation </span><span style=\"text-align: justify;\">3 weeks</span><span style=\"text-align: justify;\"> before your arrival date, your deposit will be </span><span style=\"text-align: justify;\">r</span><span style=\"text-align: justify;\">efund</span><span style=\"text-align: justify;\">ed</span><span style=\"text-align: justify;\"> less an administration fee of </span>15%.[/li_item]\r\n</span></span></span><span style=\"font-family: verdana, geneva;\"><span style=\"font-family: Verdana;\">[li_item icon=\"\"]<span style=\"text-align: justify;\">If you cancel your reservation 2 weeks before your arrival date, your deposit will become </span>non-refundable.[/li_item]\r\n</span></span><span style=\"font-family: verdana, geneva;\"> [li_item icon=\"\"]<span style=\"text-align: justify; font-family: verdana, geneva;\">Payments are not refundable for reservations not cancelled and not taken up.</span>[/li_item]\r\n[/checklist]</span></span></p>\r\n[/fusion_text][/two_third][one_sixth last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][/one_sixth][one_sixth last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][/one_sixth][two_third last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][fusion_text]\r\n<h3><span style=\"font-size: 12pt;\">General Terms</span></h3>\r\n<span style=\"font-size: 12pt;\">[checklist icon=\"fa-star-o\" iconcolor=\"\" circle=\"\" circlecolor=\"\" size=\"13px\" class=\"\" id=\"\"]\r\n[li_item icon=\"\"]A reservation may not be transferred.[/li_item]\r\n[li_item icon=\"\"]Bookings are for holiday purposes only and cannot give rise to a tenancy.[/li_item]\r\n[li_item icon=\"\"]Persons occupying the lodge may not exceed the number of persons indicated upon booking.[/li_item]\r\n[li_item icon=\"\"]During nights the all doors must be locked. Please remember to lock the door behind you and to remove the key.[/li_item]\r\n[li_item icon=\"\"]Please leave the Lodge reasonable tidy and clean after use.[/li_item]\r\n[li_item icon=\"\"]Out of respect for all guests, and the fact that we are in a conservancy, noise must be kept down to a comfortable level and we request that there be silence in the Lodge between 22h00 and 08h00.[/li_item]\r\n[li_item icon=\"\"]Please keep furniture, fixtures and fittings in the same state of repair and condition as at the beginning of your stay. In the event of any damage to furniture, fixtures or fittings, you may be held liable for the replacement value or repair costs. This includes damage to the pool area.[/li_item]\r\n[li_item icon=\"\"]The use of open fires and the burning of any candles or lanterns, in or around the Lodge, will not be permitted.[/li_item]\r\n[li_item icon=\"\"]We operate a non-smoking policy throughout the Lodge. You are welcome to smoke outside the house, where ashtrays and/or bins will be provided.[/li_item]\r\n[li_item icon=\"\"]No pets or animals, with the exception of guide dogs, are allowed on the premises.[/li_item]\r\n[li_item icon=\"\"]The use or sale of any illegal substance in the Lodge or on surrounding property is not permissible.[/li_item]\r\n[li_item icon=\"\"]No pets or animals, with the exception of guide dogs, are allowed on the premises.[/li_item]\r\n[li_item icon=\"\"]<span style=\"text-align: justify;\">Right of admission is reserved.</span>[/li_item]\r\n[li_item icon=\"\"]We reserve the right to eject a guest/guests from the Lodge if they are not conducting themselves in an appropriate and/or acceptable manner to the building and/or other residents or staff.[/li_item]\r\n[li_item icon=\"\"]Swimming Pool - The premises contains an unsupervised, open pool which may be used at the guests\' own risk.[/li_item]</span>\r\n<span style=\"font-size: 12pt;\"> [/checklist]</span>[/fusion_text][/two_third][one_sixth last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][/one_sixth]', 'T&Cs', '', 'inherit', 'closed', 'closed', '', '984-revision-v1', '', '', '2015-09-08 13:33:44', '2015-09-08 11:33:44', '', 984, 'http://localhost/assagaylodge/984-revision-v1/', 0, 'revision', '', 0),
(997, 1, '2015-09-08 13:37:28', '2015-09-08 11:37:28', '[fullwidth background_color=\"\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding_top=\"20\" padding_bottom=\"20\" padding_left=\"0\" padding_right=\"0\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][title size=\"1\" content_align=\"right\" style_type=\"default\" sep_color=\"\" class=\"\" id=\"\"]Terms &amp; Conditions[/title][/fullwidth][one_sixth last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][/one_sixth][two_third last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][fusion_text]\r\n<h3 style=\"text-align: justify;\">Check-in Times</h3>\r\n<span style=\"font-size: 12pt;\">[checklist icon=\"fa-star-o\" iconcolor=\"\" circle=\"\" circlecolor=\"\" size=\"13px\" class=\"\" id=\"\"]\r\n[li_item icon=\"\"]Check-in Time is from 14h00 to 18h00 (Late arrivals must be arranged before hand).[/li_item]\r\n[li_item icon=\"\"]Check-out Time is before 10h00.[/li_item]\r\n[/checklist]</span>[/fusion_text][/two_third][one_sixth last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][/one_sixth][one_sixth last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][/one_sixth][two_third last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][fusion_text]\r\n<h3 style=\"text-align: justify;\">Payment Terms</h3>\r\n<p style=\"text-align: justify;\"><span style=\"font-size: 12pt;\">[checklist icon=\"fa-star-o\" iconcolor=\"\" circle=\"\" circlecolor=\"\" size=\"13px\" class=\"\" id=\"\"]\r\n[li_item icon=\"\"]Rates are inclusive of 14% VAT.[/li_item]\r\n[li_item icon=\"\"]Payment may be made via Bank Transfer, Credit Card or Cash.[/li_item]\r\n[li_item icon=\"\"]No Cheques will be accepted.[/li_item]\r\n[li_item icon=\"\"]All accommodation must be settled either before or on arrival.[/li_item]\r\n[li_item icon=\"\"]No bookings are guaranteed until your reservation is confirmed, having paid a 50% deposit.[/li_item]\r\n[/checklist]</span></p>\r\n[/fusion_text][/two_third][one_sixth last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][/one_sixth][one_sixth last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][/one_sixth][two_third last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][fusion_text]\r\n<h3 style=\"text-align: justify;\">Refunds &amp; Cancelation Terms</h3>\r\n<p style=\"text-align: justify;\"><span style=\"font-size: 12pt;\">[checklist icon=\"fa-star-o\" iconcolor=\"\" circle=\"\" circlecolor=\"\" size=\"13px\" class=\"\" id=\"\"]\r\n[li_item icon=\"\"]Guests are liable for the tariff of the full period booked.[/li_item]\r\n[li_item icon=\"\"]No refunds will be given for early departures, late arrivals, weather conditions or power outages<span style=\"text-align: justify;\">.</span>[/li_item]\r\n[li_item icon=\"\"]<span style=\"text-align: justify;\">Cancellation of any booking will only be accepted in writing or by email.</span>[/li_item]\r\n[li_item icon=\"\"]<span style=\"text-align: justify;\">If you cancel your reservation </span><span style=\"text-align: justify;\">3 weeks</span><span style=\"text-align: justify;\"> before your arrival date, your deposit will be </span><span style=\"text-align: justify;\">r</span><span style=\"text-align: justify;\">efund</span><span style=\"text-align: justify;\">ed</span><span style=\"text-align: justify;\"> less an administration fee of </span>15%.[/li_item]\r\n[li_item icon=\"\"]<span style=\"text-align: justify;\">If you cancel your reservation 2 weeks before your arrival date, your deposit will become </span>non-refundable.[/li_item]\r\n[li_item icon=\"\"]<span style=\"text-align: justify;\">Payments are not refundable for reservations not cancelled and not taken up.</span>[/li_item]\r\n[/checklist]</span></p>\r\n[/fusion_text][/two_third][one_sixth last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][/one_sixth][one_sixth last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][/one_sixth][two_third last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][fusion_text]\r\n<h3><span style=\"font-size: 12pt;\">General Terms</span></h3>\r\n<span style=\"font-size: 12pt;\">[checklist icon=\"fa-star-o\" iconcolor=\"\" circle=\"\" circlecolor=\"\" size=\"13px\" class=\"\" id=\"\"]\r\n[li_item icon=\"\"]A reservation may not be transferred.[/li_item]\r\n[li_item icon=\"\"]Bookings are for holiday purposes only and cannot give rise to a tenancy.[/li_item]\r\n[li_item icon=\"\"]Persons occupying the lodge may not exceed the number of persons indicated upon booking.[/li_item]\r\n[li_item icon=\"\"]During nights the all doors must be locked. Please remember to lock the door behind you and to remove the key.[/li_item]\r\n[li_item icon=\"\"]Please leave the Lodge reasonable tidy and clean after use.[/li_item]\r\n[li_item icon=\"\"]Out of respect for all guests, and the fact that we are in a conservancy, noise must be kept down to a comfortable level and we request that there be silence in the Lodge between 22h00 and 08h00.[/li_item]\r\n[li_item icon=\"\"]Please keep furniture, fixtures and fittings in the same state of repair and condition as at the beginning of your stay. In the event of any damage to furniture, fixtures or fittings, you may be held liable for the replacement value or repair costs. This includes damage to the pool area.[/li_item]\r\n[li_item icon=\"\"]The use of open fires and the burning of any candles or lanterns, in or around the Lodge, will not be permitted.[/li_item]\r\n[li_item icon=\"\"]We operate a non-smoking policy throughout the Lodge. You are welcome to smoke outside the house, where ashtrays and/or bins will be provided.[/li_item]\r\n[li_item icon=\"\"]No pets or animals, with the exception of guide dogs, are allowed on the premises.[/li_item]\r\n[li_item icon=\"\"]The use or sale of any illegal substance in the Lodge or on surrounding property is not permissible.[/li_item]\r\n[li_item icon=\"\"]No pets or animals, with the exception of guide dogs, are allowed on the premises.[/li_item]\r\n[li_item icon=\"\"]<span style=\"text-align: justify;\">Right of admission is reserved.</span>[/li_item]\r\n[li_item icon=\"\"]We reserve the right to eject a guest/guests from the Lodge if they are not conducting themselves in an appropriate and/or acceptable manner to the building and/or other residents or staff.[/li_item]\r\n[li_item icon=\"\"]Swimming Pool - The premises contains an unsupervised, open pool which may be used at the guests\' own risk.[/li_item]</span>\r\n<span style=\"font-size: 12pt;\"> [/checklist]</span>[/fusion_text][/two_third][one_sixth last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][/one_sixth]', 'T&Cs', '', 'inherit', 'closed', 'closed', '', '984-revision-v1', '', '', '2015-09-08 13:37:28', '2015-09-08 11:37:28', '', 984, 'http://localhost/assagaylodge/984-revision-v1/', 0, 'revision', '', 0),
(998, 1, '2015-09-08 13:53:28', '2015-09-08 11:53:28', '[fusion_builder_container background_color=\"\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding_top=\"20\" padding_bottom=\"20\" padding_left=\"0\" padding_right=\"0\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][fusion_builder_row][fusion_builder_column type=\"1_1\" layout=\"1_1\" background_position=\"left top\" background_color=\"\" border_size=\"\" border_color=\"\" border_style=\"solid\" spacing=\"yes\" background_image=\"\" background_repeat=\"no-repeat\" padding_top=\"\" padding_right=\"\" padding_bottom=\"\" padding_left=\"\" margin_top=\"0px\" margin_bottom=\"0px\" class=\"\" id=\"\" animation_type=\"\" animation_speed=\"0.3\" animation_direction=\"left\" hide_on_mobile=\"no\" center_content=\"no\" min_height=\"none\" last=\"no\" hover_type=\"none\" link=\"\" border_position=\"all\"][fusion_title size=\"1\" content_align=\"right\" style_type=\"default\" sep_color=\"\" margin_top=\"\" margin_bottom=\"\" class=\"\" id=\"\"]Lodge Facilities &amp; Amenities[/fusion_title][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container hundred_percent=\"yes\" overflow=\"visible\"][fusion_builder_row][fusion_builder_column type=\"1_6\" layout=\"1_6\" last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding_top=\"\" padding_right=\"\" padding_bottom=\"\" padding_left=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\" min_height=\"\"][/fusion_builder_column][fusion_builder_column type=\"2_3\" layout=\"2_3\" last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding_top=\"\" padding_right=\"\" padding_bottom=\"\" padding_left=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\" min_height=\"\"][fusion_text columns=\"\" column_min_width=\"\" column_spacing=\"\" rule_style=\"default\" rule_size=\"\" rule_color=\"\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" class=\"\" id=\"\"]<h3><span style=\"text-align: justify; line-height: 1.5em; font-family: verdana, geneva; font-size: 18px;\">Rooms</span></h3><p><span style=\"font-size: 12pt;\">[fusion_checklist icon=\"fa-star-o\" iconcolor=\"\" circle=\"\" circlecolor=\"\" size=\"13px\" class=\"\" id=\"\"]</span><br /><span style=\"font-size: 12pt;\"> [fusion_li_item icon=\"\"]All Rooms are en-suite i.e. Hand Basin, Toilet, Shower.[/fusion_li_item]<br /></span><span style=\"font-size: 12pt;\">[fusion_li_item icon=\"\"]Wall to Wall Carpeting.[/fusion_li_item]<br /></span><span style=\"font-size: 12pt;\">[fusion_li_item icon=\"\"]Ceiling Fan.[/fusion_li_item]<br /></span><span style=\"font-size: 12pt;\">[fusion_li_item icon=\"\"]Wall Heater.[/fusion_li_item]<br /></span><span style=\"font-size: 12pt;\">[fusion_li_item icon=\"\"]Electrical Plug Sockets.[/fusion_li_item]<br /></span><span style=\"font-size: 12pt;\">[fusion_li_item icon=\"\"]Cupboard.[/fusion_li_item]<br />[fusion_li_item icon=\"\"]Bedside Lamps.[/fusion_li_item]</span><br /><span style=\"font-size: 12pt;\">[/fusion_checklist]</span></p>[/fusion_text][fusion_text columns=\"\" column_min_width=\"\" column_spacing=\"\" rule_style=\"default\" rule_size=\"\" rule_color=\"\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" class=\"\" id=\"\"]<h3><span style=\"text-align: justify; line-height: 1.5em; font-family: verdana, geneva; font-size: 18px;\">Beds</span></h3><p><span style=\"font-size: 12pt;\">[fusion_checklist icon=\"fa-star-o\" iconcolor=\"\" circle=\"\" circlecolor=\"\" size=\"13px\" class=\"\" id=\"\"]</span><br /><span style=\"font-size: 12pt;\">[fusion_li_item icon=\"\"]King or Queen Bed &amp; Mattress Protector.[/fusion_li_item]<br /></span><span style=\"font-size: 12pt;\">[fusion_li_item icon=\"\"]Electric Blankets.[/fusion_li_item]<br />[fusion_li_item icon=\"\"]100% Cotton Percale Fitted Sheet.[/fusion_li_item]<br /></span><span style=\"font-size: 12pt;\">[fusion_li_item icon=\"\"]100% Cotton Percale Flat Sheet.[/fusion_li_item]<br /></span><span style=\"font-size: 12pt;\">[fusion_li_item icon=\"\"]2x King Microfibre Pillows, Pillow Protectors &amp; 100% Cotton Percale Pillow Cases.[/fusion_li_item]<br />[fusion_li_item icon=\"\"]2x Standard Microfibre Pillows, Pillow Protectors &amp; 100% Cotton Percale Pillow Cases.[/fusion_li_item]<br /></span><span style=\"font-size: 12pt;\">[fusion_li_item icon=\"\"]Microfibre Duvet Inner.[/fusion_li_item]<br /></span><span style=\"font-size: 12pt;\">[fusion_li_item icon=\"\"]Duvet Cover.[/fusion_li_item]<br /></span><span style=\"font-size: 12pt;\">[fusion_li_item icon=\"\"]A Bed Blanket.[/fusion_li_item]<br /></span><span style=\"font-size: 12pt;\">[/fusion_checklist]</span></p>[/fusion_text][fusion_text columns=\"\" column_min_width=\"\" column_spacing=\"\" rule_style=\"default\" rule_size=\"\" rule_color=\"\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" class=\"\" id=\"\"]<h3><span style=\"text-align: justify; line-height: 1.5em; font-family: verdana, geneva; font-size: 18px;\">Kitchen</span></h3><p><span style=\"font-size: 12pt;\">[fusion_checklist icon=\"fa-star-o\" iconcolor=\"\" circle=\"\" circlecolor=\"\" size=\"13px\" class=\"\" id=\"\"]</span><br /><span style=\"font-size: 12pt;\"> [fusion_li_item icon=\"\"]Fridge &amp; Freezer Unit.[/fusion_li_item]<br /></span><span style=\"font-size: 12pt;\">[fusion_li_item icon=\"\"]Microwave.[/fusion_li_item]<br /></span><span style=\"font-size: 12pt;\">[fusion_li_item icon=\"\"]Electric Frying Pan[/fusion_li_item]<br /></span><span style=\"font-size: 12pt;\">[fusion_li_item icon=\"\"]Toaster.[/fusion_li_item]<br /></span><span style=\"font-size: 12pt;\">[fusion_li_item icon=\"\"]Iron &amp; Ironing Board.[/fusion_li_item]<br /></span><span style=\"font-size: 12pt;\">[fusion_li_item icon=\"\"]Kettle &amp; Urn.[/fusion_li_item]<br /></span><span style=\"font-size: 12pt;\">[fusion_li_item icon=\"\"]Gas Stove &amp; Oven.[/fusion_li_item]<br /></span><span style=\"font-size: 12pt;\">[fusion_li_item icon=\"\"]Coffee Peculator.[/fusion_li_item]<br /></span><span style=\"font-size: 12pt;\">[fusion_li_item icon=\"\"]Glasses.[/fusion_li_item]<br /></span><span style=\"font-size: 12pt;\">[fusion_li_item icon=\"\"]Pot &amp; Pans.[/fusion_li_item]<br /></span><span style=\"font-size: 12pt;\">[fusion_li_item icon=\"\"]Crockery &amp; Cutlery.[/fusion_li_item]</span></p><p><span style=\"font-size: 12pt;\">[/fusion_checklist]</span></p>[/fusion_text][/fusion_builder_column][fusion_builder_column type=\"1_6\" layout=\"1_6\" last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding_top=\"\" padding_right=\"\" padding_bottom=\"\" padding_left=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\" min_height=\"\"][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container]', 'Facilities', '', 'publish', 'closed', 'closed', '', 'facilities', '', '', '2020-03-03 08:23:36', '2020-03-03 06:23:36', '', 0, 'http://localhost/assagaylodge/?page_id=998', 0, 'page', '', 0),
(999, 1, '2015-09-08 13:53:28', '2015-09-08 11:53:28', '[fullwidth background_color=\"\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding_top=\"20\" padding_bottom=\"20\" padding_left=\"0\" padding_right=\"0\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][title size=\"1\" content_align=\"right\" style_type=\"default\" sep_color=\"\" class=\"\" id=\"\"]Lodge Facilities[/title][/fullwidth][one_sixth last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][/one_sixth][two_third last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][fusion_text]\r\n<h3><span style=\"text-align: justify; line-height: 1.5em; font-family: verdana, geneva; font-size: 18px;\">The Lodge &amp; Facilities</span></h3>\r\n<span style=\"font-size: 12pt;\">[checklist icon=\"fa-star-o\" iconcolor=\"\" circle=\"\" circlecolor=\"\" size=\"13px\" class=\"\" id=\"\"]</span>\r\n<span style=\"font-size: 12pt;\"> [li_item icon=\"\"]All Rooms are en-suite (Showers only).[/li_item]</span>\r\n<span style=\"font-size: 12pt;\"> [li_item icon=\"\"]Non-smoking rooms, Non-smoking throughout.[/li_item]</span>\r\n<span style=\"font-size: 12pt;\"> [li_item icon=\"\"]Kitchenette - Fridge, Freezer, Microwave, Toaster, Kettle, Urn, Electric Frying Pan, 2 Plate Stove, Coffee Peculator, Glasses, Crockery &amp; Cutlery.[/li_item]</span>\r\n<span style=\"font-size: 12pt;\"> [li_item icon=\"\"]Tea Station with initial Complimentary Tea, Coffee, Sugar &amp; Milk.[/li_item]</span>\r\n<span style=\"font-size: 12pt;\"> [li_item icon=\"\"]Iron/Ironing Board.[/li_item]</span>\r\n<span style=\"font-size: 12pt;\"> [li_item icon=\"\"]Radio.[/li_item]</span>\r\n<span style=\"font-size: 12pt;\"> [li_item icon=\"\"]DVD Player.[/li_item]</span>\r\n<span style=\"font-size: 12pt;\"> [li_item icon=\"\"]Full DSTV.[/li_item]</span>\r\n<span style=\"font-size: 12pt;\"> [li_item icon=\"\"]Open Wi-Fi.[/li_item]</span>\r\n<span style=\"font-size: 12pt;\"> [li_item icon=\"\"]Gas Braai.[/li_item]</span>\r\n<span style=\"font-size: 12pt;\"> [li_item icon=\"\"]Swimming Pool.[/li_item]</span>\r\n<span style=\"font-size: 12pt;\"> [li_item icon=\"\"]Large Gardens.[/li_item]</span>\r\n<span style=\"font-size: 12pt;\"> [li_item icon=\"\"]Ample Parking.[/li_item]</span>\r\n<span style=\"font-size: 12pt;\"> [/checklist]</span>\r\n<h3><span style=\"line-height: 1.5em; font-family: verdana, geneva; font-size: 18px;\">PLEASE NOTE!</span></h3>\r\n<span style=\"font-size: 12pt;\">[checklist icon=\"fa-star-o\" iconcolor=\"\" circle=\"\" circlecolor=\"\" size=\"13px\" class=\"\" id=\"\"]</span>\r\n<span style=\"font-size: 12pt;\">[li_item icon=\"\"]When you book into the lodge it is exclusively yours. i.e. We don\'t book out the other rooms unless we have cleared it with you.[/li_item]</span>\r\n<span style=\"font-size: 12pt;\"> [li_item icon=\"\"]No Cleaning Service is included in the Self-Catering option.[/li_item]</span>\r\n<span style=\"font-size: 12pt;\"> [li_item icon=\"\"]No Laundry Service.[/li_item]</span>\r\n<span style=\"font-size: 12pt;\"> [li_item icon=\"\"]No Pets.[/li_item]</span>\r\n<span style=\"font-size: 12pt;\"> [li_item icon=\"\"]No functions, parties or extra guests allowed unless by prior arrangement and will be at the owners discretion due to conservancy rules &amp; noise restrictions.[/li_item]</span>[/fusion_text][/two_third][one_sixth last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][/one_sixth]', 'Facilities', '', 'inherit', 'closed', 'closed', '', '998-revision-v1', '', '', '2015-09-08 13:53:28', '2015-09-08 11:53:28', '', 998, 'http://localhost/assagaylodge/998-revision-v1/', 0, 'revision', '', 0),
(1000, 1, '2015-09-08 13:57:29', '2015-09-08 11:57:29', '[fullwidth background_color=\"\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding_top=\"20\" padding_bottom=\"20\" padding_left=\"0\" padding_right=\"0\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][title size=\"1\" content_align=\"right\" style_type=\"default\" sep_color=\"\" class=\"\" id=\"\"]Lodge Facilities[/title][/fullwidth][one_sixth last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][/one_sixth][two_third last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][fusion_text]<h3><span style=\"text-align: justify; line-height: 1.5em; font-family: verdana, geneva; font-size: 18px;\">The Lodge &amp; Facilities</span></h3>\r\n<span style=\"font-size: 12pt;\">[checklist icon=\"fa-star-o\" iconcolor=\"\" circle=\"\" circlecolor=\"\" size=\"13px\" class=\"\" id=\"\"]</span>\r\n<span style=\"font-size: 12pt;\"> [li_item icon=\"\"]All Rooms are en-suite (Showers only).[/li_item]</span>\r\n<span style=\"font-size: 12pt;\"> [li_item icon=\"\"]Non-smoking rooms, Non-smoking throughout.[/li_item]</span>\r\n<span style=\"font-size: 12pt;\"> [li_item icon=\"\"]Kitchenette - Fridge, Freezer, Microwave, Toaster, Kettle, Urn, Electric Frying Pan, 2 Plate Stove, Coffee Peculator, Glasses, Crockery &amp; Cutlery.[/li_item]</span>\r\n<span style=\"font-size: 12pt;\"> [li_item icon=\"\"]Tea Station with initial Complimentary Tea, Coffee, Sugar &amp; Milk.[/li_item]</span>\r\n<span style=\"font-size: 12pt;\"> [li_item icon=\"\"]Iron/Ironing Board.[/li_item]</span>\r\n<span style=\"font-size: 12pt;\"> [li_item icon=\"\"]Radio.[/li_item]</span>\r\n<span style=\"font-size: 12pt;\"> [li_item icon=\"\"]DVD Player.[/li_item]</span>\r\n<span style=\"font-size: 12pt;\"> [li_item icon=\"\"]Full DSTV.[/li_item]</span>\r\n<span style=\"font-size: 12pt;\"> [li_item icon=\"\"]Open Wi-Fi.[/li_item]</span>\r\n<span style=\"font-size: 12pt;\"> [li_item icon=\"\"]Gas Braai.[/li_item]</span>\r\n<span style=\"font-size: 12pt;\"> [li_item icon=\"\"]Swimming Pool.[/li_item]</span>\r\n<span style=\"font-size: 12pt;\"> [li_item icon=\"\"]Large Gardens.[/li_item]</span>\r\n<span style=\"font-size: 12pt;\"> [li_item icon=\"\"]Ample Parking.[/li_item]</span>\r\n<span style=\"font-size: 12pt;\"> [/checklist]</span>\r\n<h3><span style=\"line-height: 1.5em; font-family: verdana, geneva; font-size: 18px;\">PLEASE NOTE!</span></h3>\r\n<span style=\"font-size: 12pt;\">[checklist icon=\"fa-star-o\" iconcolor=\"\" circle=\"\" circlecolor=\"\" size=\"13px\" class=\"\" id=\"\"]</span>\r\n<span style=\"font-size: 12pt;\">[li_item icon=\"\"]When you book into the lodge it is exclusively yours. i.e. We don\'t book out the other rooms unless we have cleared it with you.[/li_item]</span>\r\n<span style=\"font-size: 12pt;\"> [li_item icon=\"\"]No Cleaning Service is included in the Self-Catering option.[/li_item]</span>\r\n<span style=\"font-size: 12pt;\"> [li_item icon=\"\"]No Laundry Service.[/li_item]</span>\r\n<span style=\"font-size: 12pt;\"> [li_item icon=\"\"]No Pets.[/li_item]</span>\r\n<span style=\"font-size: 12pt;\"> [li_item icon=\"\"]No functions, parties or extra guests allowed unless by prior arrangement and will be at the owners discretion due to conservancy rules &amp; noise restrictions.[/li_item]</span>[/fusion_text][/two_third][one_sixth last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][/one_sixth]', 'Facilities', '', 'inherit', 'closed', 'closed', '', '998-revision-v1', '', '', '2015-09-08 13:57:29', '2015-09-08 11:57:29', '', 998, 'http://localhost/assagaylodge/998-revision-v1/', 0, 'revision', '', 0),
(1001, 1, '2015-09-08 14:03:27', '2015-09-08 12:03:27', '[fullwidth background_color=\"\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding_top=\"20\" padding_bottom=\"20\" padding_left=\"0\" padding_right=\"0\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][title size=\"1\" content_align=\"right\" style_type=\"default\" sep_color=\"\" class=\"\" id=\"\"]Lodge Facilities[/title][/fullwidth][one_sixth last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][/one_sixth][two_third last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][fusion_text]<h3><span style=\"text-align: justify; line-height: 1.5em; font-family: verdana, geneva; font-size: 18px;\">The Lodge &amp; Facilities</span></h3>\r\n<span style=\"font-size: 12pt;\">[checklist icon=\"fa-star-o\" iconcolor=\"\" circle=\"\" circlecolor=\"\" size=\"13px\" class=\"\" id=\"\"]</span>\r\n<span style=\"font-size: 12pt;\"> [li_item icon=\"\"]All Rooms are en-suite (Showers only).[/li_item]\r\n</span><span style=\"font-size: 12pt;\">[li_item icon=\"\"]Non-smoking rooms, Non-smoking throughout.[/li_item]\r\n</span><span style=\"font-size: 12pt;\">[li_item icon=\"\"]Kitchenette - Fridge, Freezer, Microwave, Toaster, Kettle, Urn, Electric Frying Pan, 2 Plate Stove, Coffee Peculator, Glasses, Crockery &amp; Cutlery.[/li_item]\r\n</span><span style=\"font-size: 12pt;\">[li_item icon=\"\"]Tea Station with initial Complimentary Tea, Coffee, Sugar &amp; Milk.[/li_item]\r\n</span><span style=\"font-size: 12pt;\">[li_item icon=\"\"]Iron/Ironing Board.[/li_item]\r\n</span><span style=\"font-size: 12pt;\">[li_item icon=\"\"]Radio.[/li_item]\r\n</span><span style=\"font-size: 12pt;\">[li_item icon=\"\"]DVD Player.[/li_item]\r\n</span><span style=\"font-size: 12pt;\">[li_item icon=\"\"]Full DSTV.[/li_item]\r\n</span><span style=\"font-size: 12pt;\">[li_item icon=\"\"]Open Wi-Fi.[/li_item]\r\n</span><span style=\"font-size: 12pt;\">[li_item icon=\"\"]Gas Braai.[/li_item]\r\n</span><span style=\"font-size: 12pt;\">[li_item icon=\"\"]Swimming Pool.[/li_item]\r\n</span><span style=\"font-size: 12pt;\">[li_item icon=\"\"]Large Gardens.[/li_item]\r\n</span><span style=\"font-size: 12pt;\">[li_item icon=\"\"]Ample Parking.[/li_item]</span>\r\n<span style=\"font-size: 12pt;\"> [/checklist]</span>[/fusion_text][/two_third][one_sixth last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][/one_sixth][one_sixth last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][/one_sixth][two_third last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][fusion_text]<h3><span style=\"line-height: 1.5em; font-family: verdana, geneva; font-size: 18px;\">PLEASE NOTE!</span></h3>\r\n<span style=\"font-size: 12pt;\">[checklist icon=\"fa-star-o\" iconcolor=\"\" circle=\"\" circlecolor=\"\" size=\"13px\" class=\"\" id=\"\"]</span>\r\n<span style=\"font-size: 12pt;\"> [li_item icon=\"\"]When you book into the lodge it is exclusively yours. i.e. We don\'t book out the other rooms unless we have cleared it with you.[/li_item]\r\n</span><span style=\"font-size: 12pt;\">[li_item icon=\"\"]No Cleaning Service is included in the Self-Catering option.[/li_item]\r\n</span><span style=\"font-size: 12pt;\">[li_item icon=\"\"]No Laundry Service.[/li_item]\r\n</span><span style=\"font-size: 12pt;\">[li_item icon=\"\"]No Pets.[/li_item]\r\n</span><span style=\"font-size: 12pt;\">[li_item icon=\"\"]No functions, parties or extra guests allowed unless by prior arrangement and will be at the owners discretion due to conservancy rules &amp; noise restrictions.[/li_item]</span>[/fusion_text][/two_third][one_sixth last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][/one_sixth]', 'Facilities', '', 'inherit', 'closed', 'closed', '', '998-revision-v1', '', '', '2015-09-08 14:03:27', '2015-09-08 12:03:27', '', 998, 'http://localhost/assagaylodge/998-revision-v1/', 0, 'revision', '', 0);
INSERT INTO `wp_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(1002, 1, '2015-09-08 14:10:11', '2015-09-08 12:10:11', '[fullwidth background_color=\"\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding_top=\"20\" padding_bottom=\"20\" padding_left=\"0\" padding_right=\"0\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][title size=\"1\" content_align=\"right\" style_type=\"default\" sep_color=\"\" class=\"\" id=\"\"]Lodge Facilities[/title][/fullwidth][one_sixth last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][/one_sixth][two_third last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][fusion_text]\r\n<h3><span style=\"text-align: justify; line-height: 1.5em; font-family: verdana, geneva; font-size: 18px;\">The Lodge &amp; Facilities</span></h3>\r\n<span style=\"font-size: 12pt;\">[checklist icon=\"fa-star-o\" iconcolor=\"\" circle=\"\" circlecolor=\"\" size=\"13px\" class=\"\" id=\"\"]</span>\r\n<span style=\"font-size: 12pt;\"> [li_item icon=\"\"]All Rooms are en-suite (Showers only).[/li_item]\r\n</span><span style=\"font-size: 12pt;\">[li_item icon=\"\"]Non-smoking rooms, Non-smoking throughout.[/li_item]\r\n</span><span style=\"font-size: 12pt;\">[li_item icon=\"\"]Kitchenette - Fridge, Freezer, Microwave, Toaster, Kettle, Urn, Electric Frying Pan, 2 Plate Stove, Coffee Peculator, Glasses, Crockery &amp; Cutlery.[/li_item]\r\n</span><span style=\"font-size: 12pt;\">[li_item icon=\"\"]Tea Station with initial Complimentary Tea, Coffee, Sugar &amp; Milk.[/li_item]\r\n</span><span style=\"font-size: 12pt;\">[li_item icon=\"\"]Iron/Ironing Board.[/li_item]\r\n</span><span style=\"font-size: 12pt;\">[li_item icon=\"\"]Radio.[/li_item]\r\n</span><span style=\"font-size: 12pt;\">[li_item icon=\"\"]DVD Player.[/li_item]\r\n</span><span style=\"font-size: 12pt;\">[li_item icon=\"\"]Full DSTV.[/li_item]\r\n</span><span style=\"font-size: 12pt;\">[li_item icon=\"\"]Open Wi-Fi.[/li_item]\r\n</span><span style=\"font-size: 12pt;\">[li_item icon=\"\"]Gas Braai.[/li_item]\r\n</span><span style=\"font-size: 12pt;\">[li_item icon=\"\"]Swimming Pool.[/li_item]\r\n</span><span style=\"font-size: 12pt;\">[li_item icon=\"\"]Large Gardens.[/li_item]\r\n</span><span style=\"font-size: 12pt;\">[li_item icon=\"\"]Ample Parking.[/li_item]</span>\r\n<span style=\"font-size: 12pt;\"> [/checklist]</span>[/fusion_text][/two_third][one_sixth last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][/one_sixth][one_sixth last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][/one_sixth][two_third last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][fusion_text]\r\n<h3><span style=\"line-height: 1.5em; font-family: verdana, geneva; font-size: 18px;\">PLEASE NOTE!</span></h3>\r\n<span style=\"font-size: 12pt;\">[checklist icon=\"fa-star-o\" iconcolor=\"\" circle=\"\" circlecolor=\"\" size=\"13px\" class=\"\" id=\"\"]</span>\r\n<span style=\"font-size: 12pt;\">[li_item icon=\"\"]When you book into the lodge it is exclusively yours. i.e. We don\'t book out the other rooms unless we have cleared it with you.[/li_item]</span>\r\n<span style=\"font-size: 12pt;\">[li_item icon=\"\"]The lodge and rooms are not serviced. Cleaning Service is an option.[/li_item]\r\n</span><span style=\"font-size: 12pt;\">[li_item icon=\"\"]No Laundry Service.[/li_item]</span>\r\n<span style=\"font-size: 12pt;\">[li_item icon=\"\"]No Pets.[/li_item]</span>\r\n<span style=\"font-size: 12pt;\">[li_item icon=\"\"]No functions, parties or extra guests allowed unless by prior arrangement and will be at the owners discretion due to conservancy rules &amp; noise restrictions.[/li_item]</span>\r\n<span style=\"font-size: 12pt;\">[/checklist]</span>[/fusion_text][/two_third][one_sixth last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][/one_sixth]', 'Facilities', '', 'inherit', 'closed', 'closed', '', '998-revision-v1', '', '', '2015-09-08 14:10:11', '2015-09-08 12:10:11', '', 998, 'http://localhost/assagaylodge/998-revision-v1/', 0, 'revision', '', 0),
(1003, 1, '2015-09-08 14:13:04', '2015-09-08 12:13:04', '[fullwidth background_color=\"\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding_top=\"20\" padding_bottom=\"20\" padding_left=\"0\" padding_right=\"0\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][title size=\"1\" content_align=\"right\" style_type=\"default\" sep_color=\"\" class=\"\" id=\"\"]Lodge Facilities[/title][/fullwidth][one_sixth last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][/one_sixth][two_third last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][fusion_text]\r\n<h3><span style=\"text-align: justify; line-height: 1.5em; font-family: verdana, geneva; font-size: 18px;\">The Lodge &amp; Facilities</span></h3>\r\n<span style=\"font-size: 12pt;\">[checklist icon=\"fa-star-o\" iconcolor=\"\" circle=\"\" circlecolor=\"\" size=\"13px\" class=\"\" id=\"\"]</span>\r\n<span style=\"font-size: 12pt;\"> [li_item icon=\"\"]All Rooms are en-suite (Showers only).[/li_item]\r\n</span><span style=\"font-size: 12pt;\">[li_item icon=\"\"]Non-smoking rooms, Non-smoking throughout.[/li_item]\r\n</span><span style=\"font-size: 12pt;\">[li_item icon=\"\"]Kitchenette - Fridge, Freezer, Microwave, Toaster, Kettle, Urn, Electric Frying Pan, 2 Plate Stove, Coffee Peculator, Glasses, Crockery &amp; Cutlery.[/li_item]\r\n</span><span style=\"font-size: 12pt;\">[li_item icon=\"\"]Tea Station with initial Complimentary Tea, Coffee, Sugar &amp; Milk.[/li_item]\r\n</span><span style=\"font-size: 12pt;\">[li_item icon=\"\"]Iron/Ironing Board.[/li_item]\r\n</span><span style=\"font-size: 12pt;\">[li_item icon=\"\"]Radio.[/li_item]\r\n</span><span style=\"font-size: 12pt;\">[li_item icon=\"\"]DVD Player.[/li_item]\r\n</span><span style=\"font-size: 12pt;\">[li_item icon=\"\"]Full DSTV.[/li_item]\r\n</span><span style=\"font-size: 12pt;\">[li_item icon=\"\"]Open Wi-Fi.[/li_item]\r\n</span><span style=\"font-size: 12pt;\">[li_item icon=\"\"]Gas Braai.[/li_item]\r\n</span><span style=\"font-size: 12pt;\">[li_item icon=\"\"]Swimming Pool.[/li_item]\r\n</span><span style=\"font-size: 12pt;\">[li_item icon=\"\"]Large Gardens.[/li_item]\r\n</span><span style=\"font-size: 12pt;\">[li_item icon=\"\"]Ample Parking.[/li_item]</span>\r\n<span style=\"font-size: 12pt;\"> [/checklist]</span>[/fusion_text][/two_third][one_sixth last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][/one_sixth][one_sixth last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][/one_sixth][two_third last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][fusion_text]\r\n<h3><span style=\"line-height: 1.5em; font-family: verdana, geneva; font-size: 18px;\">PLEASE NOTE!</span></h3>\r\n<span style=\"font-size: 12pt;\">[checklist icon=\"fa-star-o\" iconcolor=\"\" circle=\"\" circlecolor=\"\" size=\"13px\" class=\"\" id=\"\"]</span>\r\n<span style=\"font-size: 12pt;\">[li_item icon=\"\"]When you book into the lodge it is exclusively yours. i.e. We don\'t book out the other rooms unless we have cleared it with you.[/li_item]\r\n[</span><span style=\"font-size: 12pt;\">li_item icon=\"\"]The lodge and rooms are not serviced. Cleaning Service is an option.[/li_item]\r\n</span><span style=\"font-size: 12pt;\">[li_item icon=\"\"]No Laundry Service.[/li_item]\r\n</span><span style=\"font-size: 12pt;\">[li_item icon=\"\"]No Pets.[/li_item]\r\n</span><span style=\"font-size: 12pt;\">[li_item icon=\"\"]No functions, parties or extra guests allowed unless by prior arrangement and will be at the owners discretion due to conservancy rules &amp; noise restrictions.[/li_item]</span>\r\n<span style=\"font-size: 12pt;\">[/checklist]</span>[/fusion_text][/two_third][one_sixth last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][/one_sixth]', 'Facilities', '', 'inherit', 'closed', 'closed', '', '998-revision-v1', '', '', '2015-09-08 14:13:04', '2015-09-08 12:13:04', '', 998, 'http://localhost/assagaylodge/998-revision-v1/', 0, 'revision', '', 0),
(1004, 1, '2015-09-08 14:16:12', '2015-09-08 12:16:12', '[fullwidth background_color=\"\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding_top=\"20\" padding_bottom=\"20\" padding_left=\"0\" padding_right=\"0\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][title size=\"1\" content_align=\"right\" style_type=\"default\" sep_color=\"\" class=\"\" id=\"\"]Lodge Facilities[/title][/fullwidth][one_sixth last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][/one_sixth][two_third last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][fusion_text]\r\n<h3><span style=\"text-align: justify; line-height: 1.5em; font-family: verdana, geneva; font-size: 18px;\">The Lodge &amp; Facilities</span></h3>\r\n<span style=\"font-size: 12pt;\">[checklist icon=\"fa-star-o\" iconcolor=\"\" circle=\"\" circlecolor=\"\" size=\"13px\" class=\"\" id=\"\"]</span>\r\n<span style=\"font-size: 12pt;\"> [li_item icon=\"\"]All Rooms are en-suite (Showers only).[/li_item]\r\n</span><span style=\"font-size: 12pt;\">[li_item icon=\"\"]Non-smoking rooms, Non-smoking throughout.[/li_item]\r\n</span><span style=\"font-size: 12pt;\">[li_item icon=\"\"]Kitchenette - Fridge, Freezer, Microwave, Toaster, Kettle, Urn, Electric Frying Pan, 2 Plate Stove, Coffee Peculator, Glasses, Crockery &amp; Cutlery.[/li_item]\r\n</span><span style=\"font-size: 12pt;\">[li_item icon=\"\"]Tea Station with initial Complimentary Tea, Coffee, Sugar &amp; Milk.[/li_item]\r\n</span><span style=\"font-size: 12pt;\">[li_item icon=\"\"]Iron/Ironing Board.[/li_item]\r\n</span><span style=\"font-size: 12pt;\">[li_item icon=\"\"]Radio.[/li_item]\r\n</span><span style=\"font-size: 12pt;\">[li_item icon=\"\"]DVD Player.[/li_item]\r\n</span><span style=\"font-size: 12pt;\">[li_item icon=\"\"]Full DSTV.[/li_item]\r\n</span><span style=\"font-size: 12pt;\">[li_item icon=\"\"]Open Wi-Fi.[/li_item]\r\n</span><span style=\"font-size: 12pt;\">[li_item icon=\"\"]Gas Braai.[/li_item]\r\n</span><span style=\"font-size: 12pt;\">[li_item icon=\"\"]Swimming Pool.[/li_item]\r\n</span><span style=\"font-size: 12pt;\">[li_item icon=\"\"]Large Gardens.[/li_item]\r\n</span><span style=\"font-size: 12pt;\">[li_item icon=\"\"]Ample Parking.[/li_item]</span>\r\n<span style=\"font-size: 12pt;\"> [/checklist]</span>[/fusion_text][/two_third][one_sixth last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][/one_sixth][one_sixth last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][/one_sixth][two_third last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][fusion_text]\r\n<h3><span style=\"line-height: 1.5em; font-family: verdana, geneva; font-size: 18px;\">PLEASE NOTE!</span></h3>\r\n<span style=\"font-size: 12pt;\">[checklist icon=\"fa-star-o\" iconcolor=\"\" circle=\"\" circlecolor=\"\" size=\"13px\" class=\"\" id=\"\"]</span>\r\n<span style=\"font-size: 12pt;\">[li_item icon=\"\"]When you book into the lodge it is exclusively yours. i.e. We don\'t book out the other rooms unless we have cleared it with you.[/li_item]\r\n</span><span style=\"font-size: 12pt;\">[li_item icon=\"\"]The lodge and rooms are not serviced. Cleaning Service is an option.[/li_item]\r\n</span><span style=\"font-size: 12pt;\">[li_item icon=\"\"]No Laundry Service.[/li_item]\r\n</span><span style=\"font-size: 12pt;\">[li_item icon=\"\"]No Pets.[/li_item]\r\n</span><span style=\"font-size: 12pt;\">[li_item icon=\"\"]No functions, parties or extra guests allowed unless by prior arrangement and will be at the owners discretion due to conservancy rules &amp; noise restrictions.[/li_item]</span>\r\n<span style=\"font-size: 12pt;\">[/checklist]</span>[/fusion_text][/two_third][one_sixth last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][/one_sixth]', 'Facilities', '', 'inherit', 'closed', 'closed', '', '998-revision-v1', '', '', '2015-09-08 14:16:12', '2015-09-08 12:16:12', '', 998, 'http://localhost/assagaylodge/998-revision-v1/', 0, 'revision', '', 0),
(1005, 1, '2015-09-08 14:16:56', '2015-09-08 12:16:56', ' ', '', '', 'publish', 'closed', 'closed', '', '1005', '', '', '2016-04-19 11:33:14', '2016-04-19 09:33:14', '', 0, 'http://localhost/assagaylodge/?p=1005', 3, 'nav_menu_item', '', 0),
(1006, 1, '2015-09-08 14:16:55', '2015-09-08 12:16:55', ' ', '', '', 'publish', 'closed', 'closed', '', '1006', '', '', '2016-04-19 11:33:14', '2016-04-19 09:33:14', '', 0, 'http://localhost/assagaylodge/?p=1006', 2, 'nav_menu_item', '', 0),
(1007, 1, '2020-03-03 08:22:44', '2020-03-03 06:22:44', '[fusion_builder_container background_color=\"\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding_top=\"20\" padding_bottom=\"20\" padding_left=\"0\" padding_right=\"0\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][fusion_builder_row][fusion_builder_column type=\"1_1\" layout=\"1_1\" background_position=\"left top\" background_color=\"\" border_size=\"\" border_color=\"\" border_style=\"solid\" spacing=\"yes\" background_image=\"\" background_repeat=\"no-repeat\" padding_top=\"\" padding_right=\"\" padding_bottom=\"\" padding_left=\"\" margin_top=\"0px\" margin_bottom=\"0px\" class=\"\" id=\"\" animation_type=\"\" animation_speed=\"0.3\" animation_direction=\"left\" hide_on_mobile=\"no\" center_content=\"no\" min_height=\"none\" last=\"no\" hover_type=\"none\" link=\"\" border_position=\"all\"][fusion_title size=\"1\" content_align=\"right\" style_type=\"default\" sep_color=\"\" margin_top=\"\" margin_bottom=\"\" class=\"\" id=\"\"]Lodge Facilities &amp; Amenities[/fusion_title][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container hundred_percent=\"yes\" overflow=\"visible\"][fusion_builder_row][fusion_builder_column type=\"1_6\" layout=\"1_6\" last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding_top=\"\" padding_right=\"\" padding_bottom=\"\" padding_left=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\" min_height=\"\"][/fusion_builder_column][fusion_builder_column type=\"2_3\" layout=\"2_3\" last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding_top=\"\" padding_right=\"\" padding_bottom=\"\" padding_left=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\" min_height=\"\"][fusion_text columns=\"\" column_min_width=\"\" column_spacing=\"\" rule_style=\"default\" rule_size=\"\" rule_color=\"\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" class=\"\" id=\"\"]<h3><span style=\"text-align: justify; line-height: 1.5em; font-family: verdana, geneva; font-size: 18px;\">Rooms</span></h3><p><span style=\"font-size: 12pt;\">[fusion_checklist icon=\"fa-star-o\" iconcolor=\"\" circle=\"\" circlecolor=\"\" size=\"13px\" class=\"\" id=\"\"]</span><br /><span style=\"font-size: 12pt;\"> [fusion_li_item icon=\"\"]All Rooms are en-suite i.e. Hand Basin, Toilet, Shower.[/fusion_li_item]<br /></span><span style=\"font-size: 12pt;\">[fusion_li_item icon=\"\"]Wall to Wall Carpeting.[/fusion_li_item]<br /></span><span style=\"font-size: 12pt;\">[fusion_li_item icon=\"\"]Ceiling Fan.[/fusion_li_item]<br /></span><span style=\"font-size: 12pt;\">[fusion_li_item icon=\"\"]Wall Heater.[/fusion_li_item]<br /></span><span style=\"font-size: 12pt;\">[fusion_li_item icon=\"\"]Electrical Plug Sockets.[/fusion_li_item]<br /></span><span style=\"font-size: 12pt;\">[fusion_li_item icon=\"\"]Cupboard.[/fusion_li_item]<br />[fusion_li_item icon=\"\"]Bedside Lamps.[/fusion_li_item]</span><br /><span style=\"font-size: 12pt;\">[/fusion_checklist]</span></p>[/fusion_text][fusion_text columns=\"\" column_min_width=\"\" column_spacing=\"\" rule_style=\"default\" rule_size=\"\" rule_color=\"\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" class=\"\" id=\"\"]<h3><span style=\"text-align: justify; line-height: 1.5em; font-family: verdana, geneva; font-size: 18px;\">Beds</span></h3><p><span style=\"font-size: 12pt;\">[fusion_checklist icon=\"fa-star-o\" iconcolor=\"\" circle=\"\" circlecolor=\"\" size=\"13px\" class=\"\" id=\"\"]</span><br /><span style=\"font-size: 12pt;\">[fusion_li_item icon=\"\"]King or Queen Bed &amp; Mattress Protector.[/fusion_li_item]<br /></span><span style=\"font-size: 12pt;\">[fusion_li_item icon=\"\"]Electric Blankets.[/fusion_li_item]<br />[fusion_li_item icon=\"\"]100% Cotton Percale Fitted Sheet.[/fusion_li_item]<br /></span><span style=\"font-size: 12pt;\">[fusion_li_item icon=\"\"]100% Cotton Percale Flat Sheet.[/fusion_li_item]<br /></span><span style=\"font-size: 12pt;\">[fusion_li_item icon=\"\"]2x King Microfibre Pillows, Pillow Protectors &amp; 100% Cotton Percale Pillow Cases.[/fusion_li_item]<br />[fusion_li_item icon=\"\"]2x Standard Microfibre Pillows, Pillow Protectors &amp; 100% Cotton Percale Pillow Cases.[/fusion_li_item]<br /></span><span style=\"font-size: 12pt;\">[fusion_li_item icon=\"\"]Microfibre Duvet Inner.[/fusion_li_item]<br /></span><span style=\"font-size: 12pt;\">[fusion_li_item icon=\"\"]Duvet Cover.[/fusion_li_item]<br /></span><span style=\"font-size: 12pt;\">[fusion_li_item icon=\"\"]A Bed Blanket.[/fusion_li_item]<br /></span><span style=\"font-size: 12pt;\">[/fusion_checklist]</span></p>[/fusion_text][fusion_text columns=\"\" column_min_width=\"\" column_spacing=\"\" rule_style=\"default\" rule_size=\"\" rule_color=\"\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" class=\"\" id=\"\"]\n<h3><span style=\"text-align: justify; line-height: 1.5em; font-family: verdana, geneva; font-size: 18px;\">Kitchen</span></h3>\n<span style=\"font-size: 12pt;\">[fusion_checklist icon=\"fa-star-o\" iconcolor=\"\" circle=\"\" circlecolor=\"\" size=\"13px\" class=\"\" id=\"\"]</span>\n<span style=\"font-size: 12pt;\"> [fusion_li_item icon=\"\"]Fridge &amp; Freezer Unit.[/fusion_li_item]\n</span><span style=\"font-size: 12pt;\">[fusion_li_item icon=\"\"]Microwave.[/fusion_li_item]\n</span><span style=\"font-size: 12pt;\">[fusion_li_item icon=\"\"]Electric Frying Pan[/fusion_li_item]\n</span><span style=\"font-size: 12pt;\">[fusion_li_item icon=\"\"]Toaster.[/fusion_li_item]\n</span><span style=\"font-size: 12pt;\">[fusion_li_item icon=\"\"]Iron &amp; Ironing Board.[/fusion_li_item]\n</span><span style=\"font-size: 12pt;\">[fusion_li_item icon=\"\"]Kettle &amp; Urn.[/fusion_li_item]\n</span><span style=\"font-size: 12pt;\">[fusion_li_item icon=\"\"]Gas Stove &amp; Oven.[/fusion_li_item]\n</span><span style=\"font-size: 12pt;\">[fusion_li_item icon=\"\"]Coffee Peculator.[/fusion_li_item]\n</span><span style=\"font-size: 12pt;\">[fusion_li_item icon=\"\"]Glasses.[/fusion_li_item]\n</span><span style=\"font-size: 12pt;\">[fusion_li_item icon=\"\"]Pot &amp; Pans.[/fusion_li_item]\n</span><span style=\"font-size: 12pt;\">[fusion_li_item icon=\"\"]Crockery &amp; Cutlery.[/fusion_li_item]</span>\n\n<span style=\"font-size: 12pt;\">[/fusion_checklist]</span>\n\n[/fusion_text][/fusion_builder_column][fusion_builder_column type=\"1_6\" layout=\"1_6\" last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding_top=\"\" padding_right=\"\" padding_bottom=\"\" padding_left=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\" min_height=\"\"][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container]', 'Facilities', '', 'inherit', 'closed', 'closed', '', '998-autosave-v1', '', '', '2020-03-03 08:22:44', '2020-03-03 06:22:44', '', 998, 'http://localhost/assagaylodge/998-autosave-v1/', 0, 'revision', '', 0),
(1008, 1, '2015-09-08 14:43:35', '2015-09-08 12:43:35', '[fullwidth background_color=\"\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding_top=\"20\" padding_bottom=\"20\" padding_left=\"0\" padding_right=\"0\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][title size=\"1\" content_align=\"right\" style_type=\"default\" sep_color=\"\" class=\"\" id=\"\"]Lodge Facilities[/title][/fullwidth][one_sixth last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][/one_sixth][two_third last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][fusion_text]\r\n<h3><span style=\"text-align: justify; line-height: 1.5em; font-family: verdana, geneva; font-size: 18px;\">The Lodge &amp; Facilities</span></h3>\r\n<span style=\"font-size: 12pt;\">[checklist icon=\"fa-star-o\" iconcolor=\"\" circle=\"\" circlecolor=\"\" size=\"13px\" class=\"\" id=\"\"]</span>\r\n<span style=\"font-size: 12pt;\"> [li_item icon=\"\"]All Rooms are en-suite (Showers only).[/li_item]\r\n</span><span style=\"font-size: 12pt;\">[li_item icon=\"\"]Non-smoking rooms, Non-smoking throughout.[/li_item]\r\n</span><span style=\"font-size: 12pt;\">[li_item icon=\"\"]Kitchen - Fridge/Freezer, Microwave, Toaster, Kettle, Urn, Electric Frying Pan, Gas Stove, Gas Oven, Coffee Peculator, Glasses, Pot, Pans, Crockery &amp; Cutlery.[/li_item]\r\n</span><span style=\"font-size: 12pt;\">[li_item icon=\"\"]Tea Station with initial Complimentary Tea, Coffee, Sugar &amp; Milk.[/li_item]\r\n</span><span style=\"font-size: 12pt;\">[li_item icon=\"\"]Iron/Ironing Board.[/li_item]\r\n</span><span style=\"font-size: 12pt;\">[li_item icon=\"\"]Radio.[/li_item]\r\n</span><span style=\"font-size: 12pt;\">[li_item icon=\"\"]DVD Player.[/li_item]\r\n</span><span style=\"font-size: 12pt;\">[li_item icon=\"\"]Full DSTV.[/li_item]\r\n</span><span style=\"font-size: 12pt;\">[li_item icon=\"\"]Open Wi-Fi.[/li_item]\r\n</span><span style=\"font-size: 12pt;\">[li_item icon=\"\"]Gas Braai.[/li_item]\r\n</span><span style=\"font-size: 12pt;\">[li_item icon=\"\"]Swimming Pool.[/li_item]\r\n</span><span style=\"font-size: 12pt;\">[li_item icon=\"\"]Large Gardens.[/li_item]\r\n</span><span style=\"font-size: 12pt;\">[li_item icon=\"\"]Ample Parking.[/li_item]</span>\r\n<span style=\"font-size: 12pt;\"> [/checklist]</span>[/fusion_text][/two_third][one_sixth last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][/one_sixth][one_sixth last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][/one_sixth][two_third last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][fusion_text]\r\n<h3><span style=\"line-height: 1.5em; font-family: verdana, geneva; font-size: 18px;\">PLEASE NOTE!</span></h3>\r\n<span style=\"font-size: 12pt;\">[checklist icon=\"fa-star-o\" iconcolor=\"\" circle=\"\" circlecolor=\"\" size=\"13px\" class=\"\" id=\"\"]</span>\r\n<span style=\"font-size: 12pt;\">[li_item icon=\"\"]When you book into the lodge it is exclusively yours. i.e. We don\'t book out the other rooms unless we have cleared it with you.[/li_item]\r\n</span><span style=\"font-size: 12pt;\">[li_item icon=\"\"]The lodge and rooms are not serviced. Cleaning Service is an option.[/li_item]\r\n</span><span style=\"font-size: 12pt;\">[li_item icon=\"\"]No Laundry Service.[/li_item]\r\n</span><span style=\"font-size: 12pt;\">[li_item icon=\"\"]No Pets.[/li_item]\r\n</span><span style=\"font-size: 12pt;\">[li_item icon=\"\"]No functions, parties or extra guests allowed unless by prior arrangement and will be at the owners discretion due to conservancy rules &amp; noise restrictions.[/li_item]</span>\r\n<span style=\"font-size: 12pt;\">[/checklist]</span>[/fusion_text][/two_third][one_sixth last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][/one_sixth]', 'Facilities', '', 'inherit', 'closed', 'closed', '', '998-revision-v1', '', '', '2015-09-08 14:43:35', '2015-09-08 12:43:35', '', 998, 'http://localhost/assagaylodge/998-revision-v1/', 0, 'revision', '', 0),
(1009, 1, '2015-09-08 14:58:05', '2015-09-08 12:58:05', '[fullwidth background_color=\"\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding_top=\"20\" padding_bottom=\"20\" padding_left=\"0\" padding_right=\"0\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][title size=\"1\" content_align=\"right\" style_type=\"default\" sep_color=\"\" class=\"\" id=\"\"]Lodge Facilities[/title][/fullwidth][one_sixth last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][/one_sixth][two_third last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][fusion_text]\r\n<h3><span style=\"text-align: justify; line-height: 1.5em; font-family: verdana, geneva; font-size: 18px;\">Rooms</span></h3>\r\n<span style=\"font-size: 12pt;\">[checklist icon=\"fa-star-o\" iconcolor=\"\" circle=\"\" circlecolor=\"\" size=\"13px\" class=\"\" id=\"\"]</span>\r\n<span style=\"font-size: 12pt;\"> [li_item icon=\"\"]All Rooms are en-suite (Showers only).[/li_item]\r\n</span><span style=\"font-size: 12pt;\">[li_item icon=\"\"]1x Double Electric Blankets.[/li_item]\r\n</span><span style=\"font-size: 12pt;\">[li_item icon=\"\"]1x King or Queen Bed &amp; Mattress Protector.[/li_item]\r\n</span><span style=\"font-size: 12pt;\">[li_item icon=\"\"]1x 100% Cotton Percale Fitted Sheet.[/li_item]\r\n</span><span style=\"font-size: 12pt;\">[li_item icon=\"\"]1x 100% Cotton Percale Flat Sheet.[/.[/li_item]\r\n</span><span style=\"font-size: 12pt;\">[li_item icon=\"\"]2x King Microfibre Pillows, Pillow Protectors &amp; 100% Cotton Percale Pillow Cases.[/li_item]\r\n[li_item icon=\"\"]2x Standard Microfibre Pillows, Pillow Protectors &amp; 100% Cotton Percale Pillow Cases.[/li_item]\r\n</span><span style=\"font-size: 12pt;\">[li_item icon=\"\"]1x 11 TOG Microfibre Duvet Inner.[/li_item]\r\n</span><span style=\"font-size: 12pt;\">[li_item icon=\"\"]1x Duvet Cover.[/li_item]\r\n</span><span style=\"font-size: 12pt;\">[li_item icon=\"\"]1x Bed Blanket.[/li_item]\r\n</span><span style=\"font-size: 12pt;\">[li_item icon=\"\"]1x Ceiling Fan.[/li_item]\r\n</span><span style=\"font-size: 12pt;\">[li_item icon=\"\"]1x Wall Heater.[/li_item]\r\n</span><span style=\"font-size: 12pt;\">[li_item icon=\"\"]4 Electrical Plug Sockets.[/li_item]\r\n</span><span style=\"font-size: 12pt;\">[li_item icon=\"\"]2x Bedside Lamps.[/li_item]\r\n</span><span style=\"font-size: 12pt;\">[li_item icon=\"\"]...[/li_item]</span>\r\n<span style=\"font-size: 12pt;\">[/checklist]</span>[/fusion_text][/two_third][one_sixth last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][/one_sixth][one_sixth last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][/one_sixth][two_third last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][fusion_text]\r\n<h3><span style=\"text-align: justify; line-height: 1.5em; font-family: verdana, geneva; font-size: 18px;\">The Lodge &amp; Facilities</span></h3>\r\n<span style=\"font-size: 12pt;\">[checklist icon=\"fa-star-o\" iconcolor=\"\" circle=\"\" circlecolor=\"\" size=\"13px\" class=\"\" id=\"\"]</span>\r\n<span style=\"font-size: 12pt;\"> [li_item icon=\"\"]All Rooms are en-suite (Showers only).[/li_item]\r\n</span><span style=\"font-size: 12pt;\">[li_item icon=\"\"]Non-smoking rooms, Non-smoking throughout.[/li_item]\r\n</span><span style=\"font-size: 12pt;\">[li_item icon=\"\"]Kitchen - Fridge/Freezer, Microwave, Toaster, Kettle, Urn, Electric Frying Pan, Gas Stove, Gas Oven, Coffee Peculator, Glasses, Pot, Pans, Crockery &amp; Cutlery.[/li_item]\r\n</span><span style=\"font-size: 12pt;\">[li_item icon=\"\"]Tea Station with initial Complimentary Tea, Coffee, Sugar &amp; Milk.[/li_item]\r\n</span><span style=\"font-size: 12pt;\">[li_item icon=\"\"]Iron/Ironing Board.[/li_item]\r\n</span><span style=\"font-size: 12pt;\">[li_item icon=\"\"]Radio.[/li_item]\r\n</span><span style=\"font-size: 12pt;\">[li_item icon=\"\"]DVD Player.[/li_item]\r\n</span><span style=\"font-size: 12pt;\">[li_item icon=\"\"]Full DSTV.[/li_item]\r\n</span><span style=\"font-size: 12pt;\">[li_item icon=\"\"]Open Wi-Fi.[/li_item]\r\n</span><span style=\"font-size: 12pt;\">[li_item icon=\"\"]Gas Braai.[/li_item]\r\n</span><span style=\"font-size: 12pt;\">[li_item icon=\"\"]Swimming Pool.[/li_item]\r\n</span><span style=\"font-size: 12pt;\">[li_item icon=\"\"]Large Gardens.[/li_item]\r\n</span><span style=\"font-size: 12pt;\">[li_item icon=\"\"]Ample Parking.[/li_item]</span>\r\n<span style=\"font-size: 12pt;\"> [/checklist]</span>[/fusion_text][/two_third][one_sixth last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][/one_sixth][one_sixth last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][/one_sixth][two_third last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][fusion_text]\r\n<h3><span style=\"line-height: 1.5em; font-family: verdana, geneva; font-size: 18px;\">PLEASE NOTE!</span></h3>\r\n<span style=\"font-size: 12pt;\">[checklist icon=\"fa-star-o\" iconcolor=\"\" circle=\"\" circlecolor=\"\" size=\"13px\" class=\"\" id=\"\"]</span>\r\n<span style=\"font-size: 12pt;\">[li_item icon=\"\"]When you book into the lodge it is exclusively yours. i.e. We don\'t book out the other rooms unless we have cleared it with you.[/li_item]\r\n</span><span style=\"font-size: 12pt;\">[li_item icon=\"\"]The lodge and rooms are not serviced. Cleaning Service is an option.[/li_item]\r\n</span><span style=\"font-size: 12pt;\">[li_item icon=\"\"]No Laundry Service.[/li_item]\r\n</span><span style=\"font-size: 12pt;\">[li_item icon=\"\"]No Pets.[/li_item]\r\n</span><span style=\"font-size: 12pt;\">[li_item icon=\"\"]No functions, parties or extra guests allowed unless by prior arrangement and will be at the owners discretion due to conservancy rules &amp; noise restrictions.[/li_item]</span>\r\n<span style=\"font-size: 12pt;\">[/checklist]</span>[/fusion_text][/two_third][one_sixth last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][/one_sixth]', 'Facilities', '', 'inherit', 'closed', 'closed', '', '998-revision-v1', '', '', '2015-09-08 14:58:05', '2015-09-08 12:58:05', '', 998, 'http://localhost/assagaylodge/998-revision-v1/', 0, 'revision', '', 0);
INSERT INTO `wp_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(1010, 1, '2015-09-08 15:03:06', '2015-09-08 13:03:06', '[fullwidth background_color=\"\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding_top=\"20\" padding_bottom=\"20\" padding_left=\"0\" padding_right=\"0\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][title size=\"1\" content_align=\"right\" style_type=\"default\" sep_color=\"\" class=\"\" id=\"\"]Lodge Facilities[/title][/fullwidth][one_sixth last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][/one_sixth][two_third last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][fusion_text]\r\n<h3><span style=\"text-align: justify; line-height: 1.5em; font-family: verdana, geneva; font-size: 18px;\">Rooms</span></h3>\r\n<span style=\"font-size: 12pt;\">[checklist icon=\"fa-star-o\" iconcolor=\"\" circle=\"\" circlecolor=\"\" size=\"13px\" class=\"\" id=\"\"]</span>\r\n<span style=\"font-size: 12pt;\"> [li_item icon=\"\"]All Rooms are en-suite (Showers only).[/li_item]\r\n</span><span style=\"font-size: 12pt;\">[li_item icon=\"\"]1x Double Electric Blankets.[/li_item]\r\n</span><span style=\"font-size: 12pt;\">[li_item icon=\"\"]1x King or Queen Bed &amp; Mattress Protector.[/li_item]\r\n</span><span style=\"font-size: 12pt;\">[li_item icon=\"\"]1x 100% Cotton Percale Fitted Sheet.[/li_item]\r\n</span><span style=\"font-size: 12pt;\">[li_item icon=\"\"]1x 100% Cotton Percale Flat Sheet.[/.[/li_item]\r\n</span><span style=\"font-size: 12pt;\">[li_item icon=\"\"]2x King Microfibre Pillows, Pillow Protectors &amp; 100% Cotton Percale Pillow Cases.[/li_item]\r\n[li_item icon=\"\"]2x Standard Microfibre Pillows, Pillow Protectors &amp; 100% Cotton Percale Pillow Cases.[/li_item]\r\n</span><span style=\"font-size: 12pt;\">[li_item icon=\"\"]1x 11 TOG Microfibre Duvet Inner.[/li_item]\r\n</span><span style=\"font-size: 12pt;\">[li_item icon=\"\"]1x Duvet Cover.[/li_item]\r\n</span><span style=\"font-size: 12pt;\">[li_item icon=\"\"]1x Bed Blanket.[/li_item]\r\n</span><span style=\"font-size: 12pt;\">[li_item icon=\"\"]1x Ceiling Fan.[/li_item]\r\n</span><span style=\"font-size: 12pt;\">[li_item icon=\"\"]1x Wall Heater.[/li_item]\r\n</span><span style=\"font-size: 12pt;\">[li_item icon=\"\"]4 Electrical Plug Sockets.[/li_item]\r\n</span><span style=\"font-size: 12pt;\">[li_item icon=\"\"]2x Bedside Lamps.[/li_item]\r\n</span><span style=\"font-size: 12pt;\">[li_item icon=\"\"]...[/li_item]</span>\r\n<span style=\"font-size: 12pt;\">[/checklist]</span>[/fusion_text][/two_third][one_sixth last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][/one_sixth][one_sixth last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][/one_sixth][two_third last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][fusion_text]\r\n<h3><span style=\"text-align: justify; line-height: 1.5em; font-family: verdana, geneva; font-size: 18px;\">Kitchen</span></h3>\r\n<span style=\"font-size: 12pt;\">[checklist icon=\"fa-star-o\" iconcolor=\"\" circle=\"\" circlecolor=\"\" size=\"13px\" class=\"\" id=\"\"]</span>\r\n<span style=\"font-size: 12pt;\"> [li_item icon=\"\"]Fridge/Freezer.[/li_item]\r\n</span><span style=\"font-size: 12pt;\">[li_item icon=\"\"]Microwave.[/li_item]\r\n</span><span style=\"font-size: 12pt;\">[li_item icon=\"\"]...[/li_item]\r\n</span><span style=\"font-size: 12pt;\">[li_item icon=\"\"]Toaster.[/li_item]\r\n</span><span style=\"font-size: 12pt;\">[li_item icon=\"\"]Iron &amp; Ironing Board.[/li_item]\r\n</span><span style=\"font-size: 12pt;\">[li_item icon=\"\"]Kettle &amp; Urn.[/li_item]\r\n</span><span style=\"font-size: 12pt;\">[li_item icon=\"\"]Gas Stove &amp; Oven.[/li_item]\r\n</span><span style=\"font-size: 12pt;\">[li_item icon=\"\"]Coffee Peculator.[/li_item]\r\n</span><span style=\"font-size: 12pt;\">[li_item icon=\"\"]Glasses.[/li_item]\r\n</span><span style=\"font-size: 12pt;\">[li_item icon=\"\"]Pot &amp; Pans.[/li_item]\r\n</span><span style=\"font-size: 12pt;\">[li_item icon=\"\"]Crockery &amp; Cutlery.[/li_item]\r\n</span><span style=\"font-size: 12pt;\">[li_item icon=\"\"]Large Gardens.[/li_item]\r\n</span><span style=\"font-size: 12pt;\">[li_item icon=\"\"]...[/li_item]</span>\r\n<span style=\"font-size: 12pt;\"> [/checklist]</span>[/fusion_text][/two_third][one_sixth last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][/one_sixth][one_sixth last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][/one_sixth][two_third last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][fusion_text]\r\n<h3><span style=\"line-height: 1.5em; font-family: verdana, geneva; font-size: 18px;\">PLEASE NOTE!</span></h3>\r\n<span style=\"font-size: 12pt;\">[checklist icon=\"fa-star-o\" iconcolor=\"\" circle=\"\" circlecolor=\"\" size=\"13px\" class=\"\" id=\"\"]</span>\r\n<span style=\"font-size: 12pt;\">[li_item icon=\"\"]When you book into the lodge it is exclusively yours. i.e. We don\'t book out the other rooms unless we have cleared it with you.[/li_item]\r\n</span><span style=\"font-size: 12pt;\">[li_item icon=\"\"]The lodge and rooms are not serviced. Cleaning Service is an option.[/li_item]\r\n</span><span style=\"font-size: 12pt;\">[li_item icon=\"\"]No Laundry Service.[/li_item]\r\n</span><span style=\"font-size: 12pt;\">[li_item icon=\"\"]No Pets.[/li_item]\r\n</span><span style=\"font-size: 12pt;\">[li_item icon=\"\"]No functions, parties or extra guests allowed unless by prior arrangement and will be at the owners discretion due to conservancy rules &amp; noise restrictions.[/li_item]</span>\r\n<span style=\"font-size: 12pt;\">[/checklist]</span>[/fusion_text][/two_third][one_sixth last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][/one_sixth]', 'Facilities', '', 'inherit', 'closed', 'closed', '', '998-revision-v1', '', '', '2015-09-08 15:03:06', '2015-09-08 13:03:06', '', 998, 'http://localhost/assagaylodge/998-revision-v1/', 0, 'revision', '', 0),
(1011, 1, '2015-09-08 15:42:21', '2015-09-08 13:42:21', '[fullwidth background_color=\"\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding_top=\"20\" padding_bottom=\"20\" padding_left=\"0\" padding_right=\"0\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][title size=\"1\" content_align=\"right\" style_type=\"default\" sep_color=\"\" class=\"\" id=\"\"]Lodge Facilities[/title][/fullwidth][one_sixth last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][/one_sixth][two_third last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][fusion_text]\r\n<h3><span style=\"text-align: justify; line-height: 1.5em; font-family: verdana, geneva; font-size: 18px;\">Rooms</span></h3>\r\n<span style=\"font-size: 12pt;\">[checklist icon=\"fa-star-o\" iconcolor=\"\" circle=\"\" circlecolor=\"\" size=\"13px\" class=\"\" id=\"\"]</span>\r\n<span style=\"font-size: 12pt;\"> [li_item icon=\"\"]All Rooms are en-suite (Showers only).[/li_item]\r\n</span><span style=\"font-size: 12pt;\">[li_item icon=\"\"]1x Double Electric Blankets.[/li_item]\r\n</span><span style=\"font-size: 12pt;\">[li_item icon=\"\"]1x King or Queen Bed &amp; Mattress Protector.[/li_item]\r\n</span><span style=\"font-size: 12pt;\">[li_item icon=\"\"]1x 100% Cotton Percale Fitted Sheet.[/li_item]\r\n</span><span style=\"font-size: 12pt;\">[li_item icon=\"\"]1x 100% Cotton Percale Flat Sheet.[/li_item]\r\n</span><span style=\"font-size: 12pt;\">[li_item icon=\"\"]2x King Microfibre Pillows, Pillow Protectors &amp; 100% Cotton Percale Pillow Cases.[/li_item]\r\n[li_item icon=\"\"]2x Standard Microfibre Pillows, Pillow Protectors &amp; 100% Cotton Percale Pillow Cases.[/li_item]\r\n</span><span style=\"font-size: 12pt;\">[li_item icon=\"\"]1x 11 TOG Microfibre Duvet Inner.[/li_item]\r\n</span><span style=\"font-size: 12pt;\">[li_item icon=\"\"]1x Duvet Cover.[/li_item]\r\n</span><span style=\"font-size: 12pt;\">[li_item icon=\"\"]1x Bed Blanket.[/li_item]\r\n</span><span style=\"font-size: 12pt;\">[li_item icon=\"\"]1x Ceiling Fan.[/li_item]\r\n</span><span style=\"font-size: 12pt;\">[li_item icon=\"\"]1x Wall Heater.[/li_item]\r\n</span><span style=\"font-size: 12pt;\">[li_item icon=\"\"]4 Electrical Plug Sockets.[/li_item]\r\n</span><span style=\"font-size: 12pt;\">[li_item icon=\"\"]2x Bedside Lamps.[/li_item]\r\n</span><span style=\"font-size: 12pt;\">[li_item icon=\"\"]...[/li_item]</span>\r\n<span style=\"font-size: 12pt;\">[/checklist]</span>[/fusion_text][/two_third][one_sixth last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][/one_sixth][one_sixth last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][/one_sixth][two_third last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][fusion_text]\r\n<h3><span style=\"text-align: justify; line-height: 1.5em; font-family: verdana, geneva; font-size: 18px;\">Kitchen</span></h3>\r\n<span style=\"font-size: 12pt;\">[checklist icon=\"fa-star-o\" iconcolor=\"\" circle=\"\" circlecolor=\"\" size=\"13px\" class=\"\" id=\"\"]</span>\r\n<span style=\"font-size: 12pt;\"> [li_item icon=\"\"]Fridge/Freezer.[/li_item]\r\n</span><span style=\"font-size: 12pt;\">[li_item icon=\"\"]Microwave.[/li_item]\r\n</span><span style=\"font-size: 12pt;\">[li_item icon=\"\"]...[/li_item]\r\n</span><span style=\"font-size: 12pt;\">[li_item icon=\"\"]Toaster.[/li_item]\r\n</span><span style=\"font-size: 12pt;\">[li_item icon=\"\"]Iron &amp; Ironing Board.[/li_item]\r\n</span><span style=\"font-size: 12pt;\">[li_item icon=\"\"]Kettle &amp; Urn.[/li_item]\r\n</span><span style=\"font-size: 12pt;\">[li_item icon=\"\"]Gas Stove &amp; Oven.[/li_item]\r\n</span><span style=\"font-size: 12pt;\">[li_item icon=\"\"]Coffee Peculator.[/li_item]\r\n</span><span style=\"font-size: 12pt;\">[li_item icon=\"\"]Glasses.[/li_item]\r\n</span><span style=\"font-size: 12pt;\">[li_item icon=\"\"]Pot &amp; Pans.[/li_item]\r\n</span><span style=\"font-size: 12pt;\">[li_item icon=\"\"]Crockery &amp; Cutlery.[/li_item]\r\n</span><span style=\"font-size: 12pt;\">[li_item icon=\"\"]Large Gardens.[/li_item]\r\n</span><span style=\"font-size: 12pt;\">[li_item icon=\"\"]...[/li_item]</span>\r\n<span style=\"font-size: 12pt;\"> [/checklist]</span>[/fusion_text][/two_third][one_sixth last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][/one_sixth][one_sixth last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][/one_sixth][two_third last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][fusion_text]\r\n<h3><span style=\"line-height: 1.5em; font-family: verdana, geneva; font-size: 18px;\">PLEASE NOTE!</span></h3>\r\n<span style=\"font-size: 12pt;\">[checklist icon=\"fa-star-o\" iconcolor=\"\" circle=\"\" circlecolor=\"\" size=\"13px\" class=\"\" id=\"\"]</span>\r\n<span style=\"font-size: 12pt;\">[li_item icon=\"\"]When you book into the lodge it is exclusively yours. i.e. We don\'t book out the other rooms unless we have cleared it with you.[/li_item]\r\n</span><span style=\"font-size: 12pt;\">[li_item icon=\"\"]The lodge and rooms are not serviced. Cleaning Service is an option.[/li_item]\r\n</span><span style=\"font-size: 12pt;\">[li_item icon=\"\"]No Laundry Service.[/li_item]\r\n</span><span style=\"font-size: 12pt;\">[li_item icon=\"\"]No Pets.[/li_item]\r\n</span><span style=\"font-size: 12pt;\">[li_item icon=\"\"]No functions, parties or extra guests allowed unless by prior arrangement and will be at the owners discretion due to conservancy rules &amp; noise restrictions.[/li_item]</span>\r\n<span style=\"font-size: 12pt;\">[/checklist]</span>[/fusion_text][/two_third][one_sixth last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][/one_sixth]', 'Facilities', '', 'inherit', 'closed', 'closed', '', '998-revision-v1', '', '', '2015-09-08 15:42:21', '2015-09-08 13:42:21', '', 998, 'http://localhost/assagaylodge/998-revision-v1/', 0, 'revision', '', 0),
(1012, 1, '2015-09-08 15:47:44', '2015-09-08 13:47:44', '[fullwidth background_color=\"\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding_top=\"20\" padding_bottom=\"20\" padding_left=\"0\" padding_right=\"0\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][title size=\"1\" content_align=\"right\" style_type=\"default\" sep_color=\"\" class=\"\" id=\"\"]Lodge Facilities[/title][/fullwidth][one_sixth last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][/one_sixth][two_third last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][fusion_text]\r\n<h3><span style=\"text-align: justify; line-height: 1.5em; font-family: verdana, geneva; font-size: 18px;\">Rooms</span></h3>\r\n<span style=\"font-size: 12pt;\">[checklist icon=\"fa-star-o\" iconcolor=\"\" circle=\"\" circlecolor=\"\" size=\"13px\" class=\"\" id=\"\"]</span>\r\n<span style=\"font-size: 12pt;\"> [li_item icon=\"\"]All Rooms are en-suite (Showers only).[/li_item]\r\n</span><span style=\"font-size: 12pt;\">[li_item icon=\"\"]1x Ceiling Fan.[/li_item]\r\n</span><span style=\"font-size: 12pt;\">[li_item icon=\"\"]1x Wall Heater.[/li_item]\r\n</span><span style=\"font-size: 12pt;\">[li_item icon=\"\"]4 Electrical Plug Sockets.[/li_item]\r\n</span><span style=\"font-size: 12pt;\">[li_item icon=\"\"]2x Bedside Lamps.[/li_item]\r\n</span><span style=\"font-size: 12pt;\">[li_item icon=\"\"]...[/li_item]</span>\r\n<span style=\"font-size: 12pt;\">[/checklist]</span>[/fusion_text][fusion_text]\r\n<h3><span style=\"text-align: justify; line-height: 1.5em; font-family: verdana, geneva; font-size: 18px;\">Beds</span></h3>\r\n<span style=\"font-size: 12pt;\">[checklist icon=\"fa-star-o\" iconcolor=\"\" circle=\"\" circlecolor=\"\" size=\"13px\" class=\"\" id=\"\"]</span>\r\n<span style=\"font-size: 12pt;\">[li_item icon=\"\"]1x King or Queen Bed &amp; Mattress Protector.[/li_item]\r\n</span><span style=\"font-size: 12pt;\">[li_item icon=\"\"]1x Double Electric Blankets.[/li_item]\r\n[li_item icon=\"\"]1x 100% Cotton Percale Fitted Sheet.[/li_item]\r\n</span><span style=\"font-size: 12pt;\">[li_item icon=\"\"]1x 100% Cotton Percale Flat Sheet.[/li_item]\r\n</span><span style=\"font-size: 12pt;\">[li_item icon=\"\"]2x King Microfibre Pillows, Pillow Protectors &amp; 100% Cotton Percale Pillow Cases.[/li_item]\r\n[li_item icon=\"\"]2x Standard Microfibre Pillows, Pillow Protectors &amp; 100% Cotton Percale Pillow Cases.[/li_item]\r\n</span><span style=\"font-size: 12pt;\">[li_item icon=\"\"]1x 11 TOG Microfibre Duvet Inner.[/li_item]\r\n</span><span style=\"font-size: 12pt;\">[li_item icon=\"\"]1x Duvet Cover.[/li_item]\r\n</span><span style=\"font-size: 12pt;\">[li_item icon=\"\"]1x Bed Blanket.[/li_item]\r\n</span><span style=\"font-size: 12pt;\">[/checklist]</span>[/fusion_text][/two_third][one_sixth last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][/one_sixth][one_sixth last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][/one_sixth][two_third last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][fusion_text]\r\n<h3><span style=\"text-align: justify; line-height: 1.5em; font-family: verdana, geneva; font-size: 18px;\">Kitchen</span></h3>\r\n<span style=\"font-size: 12pt;\">[checklist icon=\"fa-star-o\" iconcolor=\"\" circle=\"\" circlecolor=\"\" size=\"13px\" class=\"\" id=\"\"]</span>\r\n<span style=\"font-size: 12pt;\"> [li_item icon=\"\"]Fridge/Freezer.[/li_item]\r\n</span><span style=\"font-size: 12pt;\">[li_item icon=\"\"]Microwave.[/li_item]\r\n</span><span style=\"font-size: 12pt;\">[li_item icon=\"\"]...[/li_item]\r\n</span><span style=\"font-size: 12pt;\">[li_item icon=\"\"]Toaster.[/li_item]\r\n</span><span style=\"font-size: 12pt;\">[li_item icon=\"\"]Iron &amp; Ironing Board.[/li_item]\r\n</span><span style=\"font-size: 12pt;\">[li_item icon=\"\"]Kettle &amp; Urn.[/li_item]\r\n</span><span style=\"font-size: 12pt;\">[li_item icon=\"\"]Gas Stove &amp; Oven.[/li_item]\r\n</span><span style=\"font-size: 12pt;\">[li_item icon=\"\"]Coffee Peculator.[/li_item]\r\n</span><span style=\"font-size: 12pt;\">[li_item icon=\"\"]Glasses.[/li_item]\r\n</span><span style=\"font-size: 12pt;\">[li_item icon=\"\"]Pot &amp; Pans.[/li_item]\r\n</span><span style=\"font-size: 12pt;\">[li_item icon=\"\"]Crockery &amp; Cutlery.[/li_item]\r\n</span><span style=\"font-size: 12pt;\">[li_item icon=\"\"]Large Gardens.[/li_item]\r\n</span><span style=\"font-size: 12pt;\">[li_item icon=\"\"]...[/li_item]</span>\r\n<span style=\"font-size: 12pt;\"> [/checklist]</span>[/fusion_text][/two_third][one_sixth last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][/one_sixth][one_sixth last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][/one_sixth][two_third last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][fusion_text]\r\n<h3><span style=\"line-height: 1.5em; font-family: verdana, geneva; font-size: 18px;\">PLEASE NOTE!</span></h3>\r\n<span style=\"font-size: 12pt;\">[checklist icon=\"fa-star-o\" iconcolor=\"\" circle=\"\" circlecolor=\"\" size=\"13px\" class=\"\" id=\"\"]</span>\r\n<span style=\"font-size: 12pt;\">[li_item icon=\"\"]When you book into the lodge it is exclusively yours. i.e. We don\'t book out the other rooms unless we have cleared it with you.[/li_item]\r\n</span><span style=\"font-size: 12pt;\">[li_item icon=\"\"]The lodge and rooms are not serviced. Cleaning Service is an option.[/li_item]\r\n</span><span style=\"font-size: 12pt;\">[li_item icon=\"\"]No Laundry Service.[/li_item]\r\n</span><span style=\"font-size: 12pt;\">[li_item icon=\"\"]No Pets.[/li_item]\r\n</span><span style=\"font-size: 12pt;\">[li_item icon=\"\"]No functions, parties or extra guests allowed unless by prior arrangement and will be at the owners discretion due to conservancy rules &amp; noise restrictions.[/li_item]</span>\r\n<span style=\"font-size: 12pt;\">[/checklist]</span>[/fusion_text][/two_third][one_sixth last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][/one_sixth]', 'Facilities', '', 'inherit', 'closed', 'closed', '', '998-revision-v1', '', '', '2015-09-08 15:47:44', '2015-09-08 13:47:44', '', 998, 'http://localhost/assagaylodge/998-revision-v1/', 0, 'revision', '', 0),
(1013, 1, '2015-09-08 15:52:19', '2015-09-08 13:52:19', '[fullwidth background_color=\"\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding_top=\"20\" padding_bottom=\"20\" padding_left=\"0\" padding_right=\"0\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][title size=\"1\" content_align=\"right\" style_type=\"default\" sep_color=\"\" class=\"\" id=\"\"]Lodge Facilities[/title][/fullwidth][one_sixth last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][/one_sixth][two_third last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][fusion_text]\r\n<h3><span style=\"text-align: justify; line-height: 1.5em; font-family: verdana, geneva; font-size: 18px;\">Rooms</span></h3>\r\n<span style=\"font-size: 12pt;\">[checklist icon=\"fa-star-o\" iconcolor=\"\" circle=\"\" circlecolor=\"\" size=\"13px\" class=\"\" id=\"\"]</span>\r\n<span style=\"font-size: 12pt;\"> [li_item icon=\"\"]All Rooms are en-suite i.e. Hand Basin, Toilet, Shower.[/li_item]\r\n</span><span style=\"font-size: 12pt;\">[li_item icon=\"\"]Ceiling Fan.[/li_item]\r\n</span><span style=\"font-size: 12pt;\">[li_item icon=\"\"]Wall Heater.[/li_item]\r\n</span><span style=\"font-size: 12pt;\">[li_item icon=\"\"]Electrical Plug Sockets.[/li_item]\r\n</span><span style=\"font-size: 12pt;\">[li_item icon=\"\"]Bedside Lamps.[/li_item]\r\n</span><span style=\"font-size: 12pt;\">[li_item icon=\"\"]Waste Bin[/li_item]</span>\r\n<span style=\"font-size: 12pt;\">[/checklist]</span>[/fusion_text][fusion_text]\r\n<h3><span style=\"text-align: justify; line-height: 1.5em; font-family: verdana, geneva; font-size: 18px;\">Beds</span></h3>\r\n<span style=\"font-size: 12pt;\">[checklist icon=\"fa-star-o\" iconcolor=\"\" circle=\"\" circlecolor=\"\" size=\"13px\" class=\"\" id=\"\"]</span>\r\n<span style=\"font-size: 12pt;\">[li_item icon=\"\"]1x King or Queen Bed &amp; Mattress Protector.[/li_item]\r\n</span><span style=\"font-size: 12pt;\">[li_item icon=\"\"]1x Double Electric Blankets.[/li_item]\r\n[li_item icon=\"\"]1x 100% Cotton Percale Fitted Sheet.[/li_item]\r\n</span><span style=\"font-size: 12pt;\">[li_item icon=\"\"]1x 100% Cotton Percale Flat Sheet.[/li_item]\r\n</span><span style=\"font-size: 12pt;\">[li_item icon=\"\"]2x King Microfibre Pillows, Pillow Protectors &amp; 100% Cotton Percale Pillow Cases.[/li_item]\r\n[li_item icon=\"\"]2x Standard Microfibre Pillows, Pillow Protectors &amp; 100% Cotton Percale Pillow Cases.[/li_item]\r\n</span><span style=\"font-size: 12pt;\">[li_item icon=\"\"]1x 11 TOG Microfibre Duvet Inner.[/li_item]\r\n</span><span style=\"font-size: 12pt;\">[li_item icon=\"\"]1x Duvet Cover.[/li_item]\r\n</span><span style=\"font-size: 12pt;\">[li_item icon=\"\"]1x Bed Blanket.[/li_item]\r\n</span><span style=\"font-size: 12pt;\">[/checklist]</span>[/fusion_text][/two_third][one_sixth last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][/one_sixth][one_sixth last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][/one_sixth][two_third last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][fusion_text]\r\n<h3><span style=\"text-align: justify; line-height: 1.5em; font-family: verdana, geneva; font-size: 18px;\">Kitchen</span></h3>\r\n<span style=\"font-size: 12pt;\">[checklist icon=\"fa-star-o\" iconcolor=\"\" circle=\"\" circlecolor=\"\" size=\"13px\" class=\"\" id=\"\"]</span>\r\n<span style=\"font-size: 12pt;\"> [li_item icon=\"\"]Fridge/Freezer.[/li_item]\r\n</span><span style=\"font-size: 12pt;\">[li_item icon=\"\"]Microwave.[/li_item]\r\n</span><span style=\"font-size: 12pt;\">[li_item icon=\"\"]...[/li_item]\r\n</span><span style=\"font-size: 12pt;\">[li_item icon=\"\"]Toaster.[/li_item]\r\n</span><span style=\"font-size: 12pt;\">[li_item icon=\"\"]Iron &amp; Ironing Board.[/li_item]\r\n</span><span style=\"font-size: 12pt;\">[li_item icon=\"\"]Kettle &amp; Urn.[/li_item]\r\n</span><span style=\"font-size: 12pt;\">[li_item icon=\"\"]Gas Stove &amp; Oven.[/li_item]\r\n</span><span style=\"font-size: 12pt;\">[li_item icon=\"\"]Coffee Peculator.[/li_item]\r\n</span><span style=\"font-size: 12pt;\">[li_item icon=\"\"]Glasses.[/li_item]\r\n</span><span style=\"font-size: 12pt;\">[li_item icon=\"\"]Pot &amp; Pans.[/li_item]\r\n</span><span style=\"font-size: 12pt;\">[li_item icon=\"\"]Crockery &amp; Cutlery.[/li_item]\r\n</span><span style=\"font-size: 12pt;\">[li_item icon=\"\"]Large Gardens.[/li_item]\r\n</span><span style=\"font-size: 12pt;\">[li_item icon=\"\"]...[/li_item]</span>\r\n<span style=\"font-size: 12pt;\"> [/checklist]</span>[/fusion_text][/two_third][one_sixth last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][/one_sixth][one_sixth last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][/one_sixth][two_third last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][fusion_text]\r\n<h3><span style=\"line-height: 1.5em; font-family: verdana, geneva; font-size: 18px;\">PLEASE NOTE!</span></h3>\r\n<span style=\"font-size: 12pt;\">[checklist icon=\"fa-star-o\" iconcolor=\"\" circle=\"\" circlecolor=\"\" size=\"13px\" class=\"\" id=\"\"]</span>\r\n<span style=\"font-size: 12pt;\">[li_item icon=\"\"]When you book into the lodge it is exclusively yours. i.e. We don\'t book out the other rooms unless we have cleared it with you.[/li_item]\r\n</span><span style=\"font-size: 12pt;\">[li_item icon=\"\"]The lodge and rooms are not serviced. Cleaning Service is an option.[/li_item]\r\n</span><span style=\"font-size: 12pt;\">[li_item icon=\"\"]No Laundry Service.[/li_item]\r\n</span><span style=\"font-size: 12pt;\">[li_item icon=\"\"]No Pets.[/li_item]\r\n</span><span style=\"font-size: 12pt;\">[li_item icon=\"\"]No functions, parties or extra guests allowed unless by prior arrangement and will be at the owners discretion due to conservancy rules &amp; noise restrictions.[/li_item]</span>\r\n<span style=\"font-size: 12pt;\">[/checklist]</span>[/fusion_text][/two_third][one_sixth last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][/one_sixth]', 'Facilities', '', 'inherit', 'closed', 'closed', '', '998-revision-v1', '', '', '2015-09-08 15:52:19', '2015-09-08 13:52:19', '', 998, 'http://localhost/assagaylodge/998-revision-v1/', 0, 'revision', '', 0),
(1014, 1, '2015-09-08 16:03:31', '2015-09-08 14:03:31', '[fullwidth background_color=\"\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding_top=\"20\" padding_bottom=\"20\" padding_left=\"0\" padding_right=\"0\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][title size=\"1\" content_align=\"right\" style_type=\"default\" sep_color=\"\" class=\"\" id=\"\"]Lodge Facilities[/title][/fullwidth][one_sixth last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][/one_sixth][two_third last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][fusion_text]\r\n<h3><span style=\"text-align: justify; line-height: 1.5em; font-family: verdana, geneva; font-size: 18px;\">Rooms</span></h3>\r\n<span style=\"font-size: 12pt;\">[checklist icon=\"fa-star-o\" iconcolor=\"\" circle=\"\" circlecolor=\"\" size=\"13px\" class=\"\" id=\"\"]</span>\r\n<span style=\"font-size: 12pt;\"> [li_item icon=\"\"]All Rooms are en-suite i.e. Hand Basin, Toilet, Shower.[/li_item]\r\n[li_item icon=\"\"]Wall to Wall Carpeting[/li_item]\r\n</span><span style=\"font-size: 12pt;\">[li_item icon=\"\"]Ceiling Fan.[/li_item]\r\n</span><span style=\"font-size: 12pt;\">[li_item icon=\"\"]Wall Heater.[/li_item]\r\n</span><span style=\"font-size: 12pt;\">[li_item icon=\"\"]Electrical Plug Sockets.[/li_item]\r\n</span><span style=\"font-size: 12pt;\">[li_item icon=\"\"]Bedside Lamps.[/li_item]\r\n</span><span style=\"font-size: 12pt;\">[li_item icon=\"\"]Waste Bin[/li_item]</span>\r\n<span style=\"font-size: 12pt;\">[/checklist]</span>[/fusion_text][fusion_text]\r\n<h3><span style=\"text-align: justify; line-height: 1.5em; font-family: verdana, geneva; font-size: 18px;\">Beds</span></h3>\r\n<span style=\"font-size: 12pt;\">[checklist icon=\"fa-star-o\" iconcolor=\"\" circle=\"\" circlecolor=\"\" size=\"13px\" class=\"\" id=\"\"]</span>\r\n<span style=\"font-size: 12pt;\">[li_item icon=\"\"]King or Queen Bed &amp; Mattress Protector.[/li_item]\r\n</span><span style=\"font-size: 12pt;\">[li_item icon=\"\"]Electric Blankets.[/li_item]\r\n[li_item icon=\"\"]100% Cotton Percale Fitted Sheet.[/li_item]\r\n</span><span style=\"font-size: 12pt;\">[li_item icon=\"\"]100% Cotton Percale Flat Sheet.[/li_item]\r\n</span><span style=\"font-size: 12pt;\">[li_item icon=\"\"]2x King Microfibre Pillows, Pillow Protectors &amp; 100% Cotton Percale Pillow Cases.[/li_item]\r\n[li_item icon=\"\"]2x Standard Microfibre Pillows, Pillow Protectors &amp; 100% Cotton Percale Pillow Cases.[/li_item]\r\n</span><span style=\"font-size: 12pt;\">[li_item icon=\"\"]Microfibre Duvet Inner.[/li_item]\r\n</span><span style=\"font-size: 12pt;\">[li_item icon=\"\"]Duvet Cover.[/li_item]\r\n</span><span style=\"font-size: 12pt;\">[li_item icon=\"\"]A Bed Blanket.[/li_item]\r\n</span><span style=\"font-size: 12pt;\">[/checklist]</span>[/fusion_text][fusion_text]\r\n<h3><span style=\"text-align: justify; line-height: 1.5em; font-family: verdana, geneva; font-size: 18px;\">Kitchen</span></h3>\r\n<span style=\"font-size: 12pt;\">[checklist icon=\"fa-star-o\" iconcolor=\"\" circle=\"\" circlecolor=\"\" size=\"13px\" class=\"\" id=\"\"]</span>\r\n<span style=\"font-size: 12pt;\"> [li_item icon=\"\"]Fridge &amp; Freezer Unit.[/li_item]\r\n</span><span style=\"font-size: 12pt;\">[li_item icon=\"\"]Microwave.[/li_item]\r\n</span><span style=\"font-size: 12pt;\">[li_item icon=\"\"]...[/li_item]\r\n</span><span style=\"font-size: 12pt;\">[li_item icon=\"\"]Toaster.[/li_item]\r\n</span><span style=\"font-size: 12pt;\">[li_item icon=\"\"]Iron &amp; Ironing Board.[/li_item]\r\n</span><span style=\"font-size: 12pt;\">[li_item icon=\"\"]Kettle &amp; Urn.[/li_item]\r\n</span><span style=\"font-size: 12pt;\">[li_item icon=\"\"]Gas Stove &amp; Oven.[/li_item]\r\n</span><span style=\"font-size: 12pt;\">[li_item icon=\"\"]Coffee Peculator.[/li_item]\r\n</span><span style=\"font-size: 12pt;\">[li_item icon=\"\"]Glasses.[/li_item]\r\n</span><span style=\"font-size: 12pt;\">[li_item icon=\"\"]Pot &amp; Pans.[/li_item]\r\n</span><span style=\"font-size: 12pt;\">[li_item icon=\"\"]Crockery &amp; Cutlery.[/li_item]\r\n</span><span style=\"font-size: 12pt;\">[li_item icon=\"\"]Large Gardens.[/li_item]\r\n</span><span style=\"font-size: 12pt;\">[li_item icon=\"\"]...[/li_item]</span>\r\n<span style=\"font-size: 12pt;\"> [/checklist]</span>[/fusion_text][/two_third][one_sixth last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][/one_sixth][one_sixth last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][/one_sixth][two_third last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][fusion_text]\r\n<h3><span style=\"line-height: 1.5em; font-family: verdana, geneva; font-size: 18px;\">PLEASE NOTE!</span></h3>\r\n<span style=\"font-size: 12pt;\">[checklist icon=\"fa-star-o\" iconcolor=\"\" circle=\"\" circlecolor=\"\" size=\"13px\" class=\"\" id=\"\"]</span>\r\n<span style=\"font-size: 12pt;\">[li_item icon=\"\"]When you book into the lodge it is exclusively yours. i.e. We don\'t book out the other rooms unless we have cleared it with you.[/li_item]\r\n</span><span style=\"font-size: 12pt;\">[li_item icon=\"\"]The lodge and rooms are not serviced. Cleaning Service is an option.[/li_item]\r\n</span><span style=\"font-size: 12pt;\">[li_item icon=\"\"]No Laundry Service.[/li_item]\r\n</span><span style=\"font-size: 12pt;\">[li_item icon=\"\"]No Pets.[/li_item]\r\n</span><span style=\"font-size: 12pt;\">[li_item icon=\"\"]No functions, parties or extra guests allowed unless by prior arrangement and will be at the owners discretion due to conservancy rules &amp; noise restrictions.[/li_item]</span>\r\n<span style=\"font-size: 12pt;\">[/checklist]</span>[/fusion_text][/two_third][one_sixth last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][/one_sixth]', 'Facilities', '', 'inherit', 'closed', 'closed', '', '998-revision-v1', '', '', '2015-09-08 16:03:31', '2015-09-08 14:03:31', '', 998, 'http://localhost/assagaylodge/998-revision-v1/', 0, 'revision', '', 0);
INSERT INTO `wp_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(1015, 1, '2015-09-08 16:05:22', '2015-09-08 14:05:22', '[fullwidth background_color=\"\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding_top=\"20\" padding_bottom=\"20\" padding_left=\"0\" padding_right=\"0\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][title size=\"1\" content_align=\"right\" style_type=\"default\" sep_color=\"\" class=\"\" id=\"\"]Lodge Facilities &amp; Amenities[/title][/fullwidth][one_sixth last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][/one_sixth][two_third last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][fusion_text]\r\n<h3><span style=\"text-align: justify; line-height: 1.5em; font-family: verdana, geneva; font-size: 18px;\">Rooms</span></h3>\r\n<span style=\"font-size: 12pt;\">[checklist icon=\"fa-star-o\" iconcolor=\"\" circle=\"\" circlecolor=\"\" size=\"13px\" class=\"\" id=\"\"]</span>\r\n<span style=\"font-size: 12pt;\"> [li_item icon=\"\"]All Rooms are en-suite i.e. Hand Basin, Toilet, Shower.[/li_item]\r\n[li_item icon=\"\"]Wall to Wall Carpeting[/li_item]\r\n</span><span style=\"font-size: 12pt;\">[li_item icon=\"\"]Ceiling Fan.[/li_item]\r\n</span><span style=\"font-size: 12pt;\">[li_item icon=\"\"]Wall Heater.[/li_item]\r\n</span><span style=\"font-size: 12pt;\">[li_item icon=\"\"]Electrical Plug Sockets.[/li_item]\r\n</span><span style=\"font-size: 12pt;\">[li_item icon=\"\"]Bedside Lamps.[/li_item]\r\n</span><span style=\"font-size: 12pt;\">[li_item icon=\"\"]Waste Bin[/li_item]</span>\r\n<span style=\"font-size: 12pt;\">[/checklist]</span>[/fusion_text][fusion_text]\r\n<h3><span style=\"text-align: justify; line-height: 1.5em; font-family: verdana, geneva; font-size: 18px;\">Beds</span></h3>\r\n<span style=\"font-size: 12pt;\">[checklist icon=\"fa-star-o\" iconcolor=\"\" circle=\"\" circlecolor=\"\" size=\"13px\" class=\"\" id=\"\"]</span>\r\n<span style=\"font-size: 12pt;\">[li_item icon=\"\"]King or Queen Bed &amp; Mattress Protector.[/li_item]\r\n</span><span style=\"font-size: 12pt;\">[li_item icon=\"\"]Electric Blankets.[/li_item]\r\n[li_item icon=\"\"]100% Cotton Percale Fitted Sheet.[/li_item]\r\n</span><span style=\"font-size: 12pt;\">[li_item icon=\"\"]100% Cotton Percale Flat Sheet.[/li_item]\r\n</span><span style=\"font-size: 12pt;\">[li_item icon=\"\"]2x King Microfibre Pillows, Pillow Protectors &amp; 100% Cotton Percale Pillow Cases.[/li_item]\r\n[li_item icon=\"\"]2x Standard Microfibre Pillows, Pillow Protectors &amp; 100% Cotton Percale Pillow Cases.[/li_item]\r\n</span><span style=\"font-size: 12pt;\">[li_item icon=\"\"]Microfibre Duvet Inner.[/li_item]\r\n</span><span style=\"font-size: 12pt;\">[li_item icon=\"\"]Duvet Cover.[/li_item]\r\n</span><span style=\"font-size: 12pt;\">[li_item icon=\"\"]A Bed Blanket.[/li_item]\r\n</span><span style=\"font-size: 12pt;\">[/checklist]</span>[/fusion_text][fusion_text]\r\n<h3><span style=\"text-align: justify; line-height: 1.5em; font-family: verdana, geneva; font-size: 18px;\">Kitchen</span></h3>\r\n<span style=\"font-size: 12pt;\">[checklist icon=\"fa-star-o\" iconcolor=\"\" circle=\"\" circlecolor=\"\" size=\"13px\" class=\"\" id=\"\"]</span>\r\n<span style=\"font-size: 12pt;\"> [li_item icon=\"\"]Fridge &amp; Freezer Unit.[/li_item]\r\n</span><span style=\"font-size: 12pt;\">[li_item icon=\"\"]Microwave.[/li_item]\r\n</span><span style=\"font-size: 12pt;\">[li_item icon=\"\"]...[/li_item]\r\n</span><span style=\"font-size: 12pt;\">[li_item icon=\"\"]Toaster.[/li_item]\r\n</span><span style=\"font-size: 12pt;\">[li_item icon=\"\"]Iron &amp; Ironing Board.[/li_item]\r\n</span><span style=\"font-size: 12pt;\">[li_item icon=\"\"]Kettle &amp; Urn.[/li_item]\r\n</span><span style=\"font-size: 12pt;\">[li_item icon=\"\"]Gas Stove &amp; Oven.[/li_item]\r\n</span><span style=\"font-size: 12pt;\">[li_item icon=\"\"]Coffee Peculator.[/li_item]\r\n</span><span style=\"font-size: 12pt;\">[li_item icon=\"\"]Glasses.[/li_item]\r\n</span><span style=\"font-size: 12pt;\">[li_item icon=\"\"]Pot &amp; Pans.[/li_item]\r\n</span><span style=\"font-size: 12pt;\">[li_item icon=\"\"]Crockery &amp; Cutlery.[/li_item]\r\n</span><span style=\"font-size: 12pt;\">[li_item icon=\"\"]Large Gardens.[/li_item]\r\n</span><span style=\"font-size: 12pt;\">[li_item icon=\"\"]...[/li_item]</span>\r\n<span style=\"font-size: 12pt;\"> [/checklist]</span>[/fusion_text][/two_third][one_sixth last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][/one_sixth][one_sixth last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][/one_sixth][two_third last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][fusion_text]\r\n<h3><span style=\"line-height: 1.5em; font-family: verdana, geneva; font-size: 18px;\">PLEASE NOTE!</span></h3>\r\n<span style=\"font-size: 12pt;\">[checklist icon=\"fa-star-o\" iconcolor=\"\" circle=\"\" circlecolor=\"\" size=\"13px\" class=\"\" id=\"\"]</span>\r\n<span style=\"font-size: 12pt;\">[li_item icon=\"\"]When you book into the lodge it is exclusively yours. i.e. We don\'t book out the other rooms unless we have cleared it with you.[/li_item]\r\n</span><span style=\"font-size: 12pt;\">[li_item icon=\"\"]The lodge and rooms are not serviced. Cleaning Service is an option.[/li_item]\r\n</span><span style=\"font-size: 12pt;\">[li_item icon=\"\"]No Laundry Service.[/li_item]\r\n</span><span style=\"font-size: 12pt;\">[li_item icon=\"\"]No Pets.[/li_item]\r\n</span><span style=\"font-size: 12pt;\">[li_item icon=\"\"]No functions, parties or extra guests allowed unless by prior arrangement and will be at the owners discretion due to conservancy rules &amp; noise restrictions.[/li_item]</span>\r\n<span style=\"font-size: 12pt;\">[/checklist]</span>[/fusion_text][/two_third][one_sixth last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][/one_sixth]', 'Facilities', '', 'inherit', 'closed', 'closed', '', '998-revision-v1', '', '', '2015-09-08 16:05:22', '2015-09-08 14:05:22', '', 998, 'http://localhost/assagaylodge/998-revision-v1/', 0, 'revision', '', 0),
(1016, 1, '2015-09-10 10:10:44', '2015-09-10 08:10:44', '[fullwidth background_color=\"\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"90px\" padding_bottom=\"0px\" padding_left=\"0px\" padding_right=\"0px\" hundred_percent=\"yes\" equal_height_columns=\"yes\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][one_half last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"http://localhost/assagaylodge/wp-content/uploads/2015/08/Tha-Lodge.jpg\" background_repeat=\"no-repeat\" background_position=\"center center\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" class=\"\" id=\"\"][/one_half][one_half last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"30px\" margin_top=\"\" margin_bottom=\"0px\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" class=\"special\" id=\"\"][fusion_text]\r\n<h1>5 BEDROOM FAMILY LODGE</h1>\r\n[/fusion_text][separator style_type=\"single\" top_margin=\"0\" bottom_margin=\"30\" sep_color=\"#000000\" border_size=\"\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"170px\" alignment=\"left\" class=\"separator-left\" id=\"\"][checklist icon=\"fa-star-o\" iconcolor=\"\" circle=\"\" circlecolor=\"\" size=\"13px\" class=\"\" id=\"\"][li_item icon=\"\"]Self-Catering: Single R650 per night Sharing R990 per couple per night[/li_item][li_item icon=\"\"]Service Options: Yes/No[/li_item][li_item icon=\"\"]Bed &amp; Breakfast: Single R725 per night Sharing R1140 per couple per night[/li_item][/checklist][/one_half][/fullwidth][modal name=\"rates\" title=\"Rates\" size=\"small\" background=\"\" border_color=\"\" show_footer=\"yes\" class=\"\" id=\"\"]\r\n\r\nSELF CATERING PER NIGHT\r\nR650 per room (Single)\r\nR990 per room (Sharing - Sleeps 2)\r\nR3000 per lodge (Max 10 guests)\r\n\r\n[/modal][fullwidth background_color=\"\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"30px\" padding_bottom=\"60px\" padding_left=\"0px\" padding_right=\"0px\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][one_half last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][fusion_text]\r\n<p style=\"text-align: justify;\">The property boasts over 200 different species of birds and animals. The Lodge is situated on the 1000 Hills tourism route, on the edge of Hillcrest and is a perfect place from which one can launch to any one of the many fantastic destinations and game reserves in KwaZulu Natal, i.e. the Majestic Drakensberg Mountain Range, Shongweni Nature Reserve, Nagle Dam, Durban &amp; Beach Front. We are also the doorstep of one of KZN’s major horse riding venues namely, the Shongweni Horse Riding Club &amp; the Summerveld Horse Riding Academy, makes Assagay Lodge a perfect home away from home for the equestrian lovers. The peace &amp; tranquility will take you far away from the business of city life. Evenings are quiet and peaceful. This is a unique and memorable country experience.</p>\r\n[/fusion_text][/one_half][one_half last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][fusion_text]\r\n<p style=\"text-align: justify;\">We are a homely \'down to earth\' country guest lodge, set on a farm surrounded by acres of beautiful hills, forests, &amp; dams in the Madwala Conservancy of Assagay, where horses still have the right of way on all roads. Our five bedrooms have a rustic charm offering the comforts of modern day life.</p>\r\n<p style=\"text-align: justify;\">Assagay Forest Lodge is owner managed, built in 2005 the lodge provides 5 cozy bedrooms with a large spacious and comfortable homely lounge, which leads onto a large deck area. Set on a 6 acre property in the Assagay Conservancy our lodge is nestled around trees, bushes, and beautiful gardens and a stream, allowing visitors to meander and relax. Guests seeking a quite, relaxing, homely experience will find our lodge the perfect choice away from home. There is a kitchen available should you wish to muster up a snack or quick meal, however breakfast is available on request.</p>\r\n[/fusion_text][/one_half][/fullwidth][fullwidth background_color=\"#f0f0ed\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"60px\" padding_bottom=\"45px\" padding_left=\"0px\" padding_right=\"0px\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][fusion_text]\r\n<h1 style=\"text-align: center;\">Gallery</h1>\r\n[/fusion_text][separator style_type=\"single\" top_margin=\"\" bottom_margin=\"40\" sep_color=\"#000000\" border_size=\"\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"170px\" alignment=\"\" class=\"\" id=\"\"][one_sixth last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][/one_sixth][two_third last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][fusion_text]\r\n<h3 style=\"text-align: center;\">The Lodge is open, spacious, comfortable and homely.</h3>\r\n[/fusion_text][/two_third][one_sixth last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][/one_sixth][recent_works layout=\"grid\" picture_size=\"auto\" boxed_text=\"boxed\" filters=\"no\" columns=\"3\" column_spacing=\"12\" cat_slug=\"the-lodge\" exclude_cats=\"\" number_posts=\"9\" offset=\"\" excerpt_length=\"35\" strip_html=\"yes\" carousel_layout=\"title_on_rollover\" scroll_items=\"\" autoplay=\"no\" show_nav=\"yes\" mouse_scroll=\"no\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" class=\"\" id=\"\"][/recent_works][/fullwidth][fullwidth background_color=\"#f0f0ed\" background_image=\"\" background_parallax=\"fixed\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"60px\" padding_bottom=\"35px\" padding_left=\"0px\" padding_right=\"0px\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][fusion_text]\r\n<h1 style=\"text-align: center;\">BEDROOMS</h1>\r\n[/fusion_text][separator style_type=\"single\" top_margin=\"\" bottom_margin=\"20\" sep_color=\"#000000\" border_size=\"\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"170px\" alignment=\"\" class=\"\" id=\"\"][one_sixth last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][/one_sixth][two_third last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][fusion_text]\r\n<h3 style=\"text-align: justify;\">When it comes to our bedrooms we’re proud to say we’re different. We offer something a little more special.</h3>\r\n<h3 style=\"text-align: justify;\">Our five bedrooms are all en-suite and equipped with either king size or queen size beds. Each room sleeps two guests. The rooms have high ceilings, wall heaters &amp; ceiling fans. Beds all have electric blankets in Winter, 100% cotton percale sheets and thick hyper allergenic microfiber duvets and pillows.</h3>\r\n[/fusion_text][/two_third][one_sixth last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][/one_sixth][/fullwidth][fullwidth background_color=\"\" background_image=\"http://localhost/assagaylodge/wp-content/uploads/2015/01/DSC01516-1148-x-764.jpg\" background_parallax=\"fixed\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"center center\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"60\" padding_bottom=\"20\" padding_left=\"0\" padding_right=\"0\" hundred_percent=\"no\" equal_height_columns=\"yes\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][recent_works layout=\"grid\" picture_size=\"auto\" boxed_text=\"unboxed\" filters=\"no\" columns=\"3\" column_spacing=\"12\" cat_slug=\"bedrooms\" exclude_cats=\"\" number_posts=\"6\" offset=\"\" excerpt_length=\"35\" strip_html=\"yes\" carousel_layout=\"title_on_rollover\" scroll_items=\"\" autoplay=\"no\" show_nav=\"yes\" mouse_scroll=\"no\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" class=\"\" id=\"\"][/recent_works][/fullwidth][fullwidth background_color=\"#f0f0ed\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"20\" padding_bottom=\"20\" padding_left=\"0\" padding_right=\"0\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][fusion_text]\r\n<h1 style=\"text-align: center;\">GARDENS</h1>\r\n[/fusion_text][separator style_type=\"none\" top_margin=\"40\" bottom_margin=\"\" sep_color=\"\" border_size=\"\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"100%\" alignment=\"center\" class=\"\" id=\"\"][one_sixth last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][/one_sixth][two_third last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][fusion_text]\r\n<h3 style=\"text-align: center;\">Walk &amp; relax in our beautiful gardens.</h3>\r\n[/fusion_text][/two_third][one_sixth last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][/one_sixth][recent_works layout=\"grid\" picture_size=\"auto\" boxed_text=\"boxed\" filters=\"no\" columns=\"3\" column_spacing=\"12\" cat_slug=\"gardens\" exclude_cats=\"\" number_posts=\"9\" offset=\"\" excerpt_length=\"35\" strip_html=\"yes\" carousel_layout=\"title_on_rollover\" scroll_items=\"\" autoplay=\"no\" show_nav=\"yes\" mouse_scroll=\"no\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" class=\"\" id=\"\"][/recent_works][/fullwidth][fullwidth background_color=\"#ffffff\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"65px\" padding_bottom=\"65px\" padding_left=\"0px\" padding_right=\"0px\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][button link=\"http://localhost/assagaylodge/book-now/\" color=\"default\" size=\"xlarge\"  type=\"3d\" shape=\"round\" target=\"_self\" title=\"\" gradient_colors=\"#f0f0ed|#f0f0ed\" gradient_hover_colors=\"#6666a4|#6666a4\" accent_color=\"#ffffff\" accent_hover_color=\"#ffffff\" bevel_color=\"\" border_width=\"0px\" icon=\"\" icon_position=\"left\" icon_divider=\"no\" modal=\"\" animation_type=\"0\" animation_direction=\"left\" animation_speed=\"1\" alignment=\"center\" class=\"\" id=\"\"]Make A Reservation Enquiry[/button][/fullwidth]', 'Home', '', 'inherit', 'closed', 'closed', '', '7-revision-v1', '', '', '2015-09-10 10:10:44', '2015-09-10 08:10:44', '', 7, 'http://localhost/assagaylodge/7-revision-v1/', 0, 'revision', '', 0),
(1017, 1, '2015-09-10 10:49:47', '2015-09-10 08:49:47', '[fullwidth background_color=\"\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"90px\" padding_bottom=\"0px\" padding_left=\"0px\" padding_right=\"0px\" hundred_percent=\"yes\" equal_height_columns=\"yes\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][one_half last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"http://localhost/assagaylodge/wp-content/uploads/2015/08/Tha-Lodge.jpg\" background_repeat=\"no-repeat\" background_position=\"center center\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" class=\"\" id=\"\"][/one_half][one_half last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"30px\" margin_top=\"\" margin_bottom=\"0px\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" class=\"special\" id=\"\"][fusion_text]\r\n<h1>5 BEDROOM FAMILY LODGE</h1>\r\n[/fusion_text][separator style_type=\"single\" top_margin=\"0\" bottom_margin=\"30\" sep_color=\"#000000\" border_size=\"\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"170px\" alignment=\"left\" class=\"separator-left\" id=\"\"][checklist icon=\"fa-star-o\" iconcolor=\"\" circle=\"\" circlecolor=\"\" size=\"13px\" class=\"\" id=\"\"][li_item icon=\"\"]Self-Catering: Single R650 per night Sharing R990 per couple per night[/li_item][li_item icon=\"\"]Service Options: Yes/No[/li_item][li_item icon=\"\"]Bed &amp; Breakfast: Single R725 per night Sharing R1140 per couple per night[/li_item][/checklist][/one_half][/fullwidth][modal name=\"myrates\" title=\"Rates\" size=\"small\" background=\"\" border_color=\"\" show_footer=\"yes\" class=\"\" id=\"\"]\r\n\r\nSELF CATERING PER NIGHT\r\nR650 per room (Single)\r\nR990 per room (Sharing - Sleeps 2)\r\nR3000 per lodge (Max 10 guests)\r\n\r\n[/modal][fullwidth background_color=\"\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"30px\" padding_bottom=\"60px\" padding_left=\"0px\" padding_right=\"0px\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][one_half last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][fusion_text]\r\n<p style=\"text-align: justify;\">The property boasts over 200 different species of birds and animals. The Lodge is situated on the 1000 Hills tourism route, on the edge of Hillcrest and is a perfect place from which one can launch to any one of the many fantastic destinations and game reserves in KwaZulu Natal, i.e. the Majestic Drakensberg Mountain Range, Shongweni Nature Reserve, Nagle Dam, Durban &amp; Beach Front. We are also the doorstep of one of KZN’s major horse riding venues namely, the Shongweni Horse Riding Club &amp; the Summerveld Horse Riding Academy, makes Assagay Lodge a perfect home away from home for the equestrian lovers. The peace &amp; tranquility will take you far away from the business of city life. Evenings are quiet and peaceful. This is a unique and memorable country experience.</p>\r\n[/fusion_text][/one_half][one_half last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][fusion_text]\r\n<p style=\"text-align: justify;\">We are a homely \'down to earth\' country guest lodge, set on a farm surrounded by acres of beautiful hills, forests, &amp; dams in the Madwala Conservancy of Assagay, where horses still have the right of way on all roads. Our five bedrooms have a rustic charm offering the comforts of modern day life.</p>\r\n<p style=\"text-align: justify;\">Assagay Forest Lodge is owner managed, built in 2005 the lodge provides 5 cozy bedrooms with a large spacious and comfortable homely lounge, which leads onto a large deck area. Set on a 6 acre property in the Assagay Conservancy our lodge is nestled around trees, bushes, and beautiful gardens and a stream, allowing visitors to meander and relax. Guests seeking a quite, relaxing, homely experience will find our lodge the perfect choice away from home. There is a kitchen available should you wish to muster up a snack or quick meal, however breakfast is available on request.</p>\r\n[/fusion_text][/one_half][/fullwidth][fullwidth background_color=\"#f0f0ed\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"60px\" padding_bottom=\"45px\" padding_left=\"0px\" padding_right=\"0px\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][fusion_text]\r\n<h1 style=\"text-align: center;\">Gallery</h1>\r\n[/fusion_text][separator style_type=\"single\" top_margin=\"\" bottom_margin=\"40\" sep_color=\"#000000\" border_size=\"\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"170px\" alignment=\"\" class=\"\" id=\"\"][one_sixth last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][/one_sixth][two_third last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][fusion_text]\r\n<h3 style=\"text-align: center;\">The Lodge is open, spacious, comfortable and homely.</h3>\r\n[/fusion_text][/two_third][one_sixth last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][/one_sixth][recent_works layout=\"grid\" picture_size=\"auto\" boxed_text=\"boxed\" filters=\"no\" columns=\"3\" column_spacing=\"12\" cat_slug=\"the-lodge\" exclude_cats=\"\" number_posts=\"9\" offset=\"\" excerpt_length=\"35\" strip_html=\"yes\" carousel_layout=\"title_on_rollover\" scroll_items=\"\" autoplay=\"no\" show_nav=\"yes\" mouse_scroll=\"no\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" class=\"\" id=\"\"][/recent_works][/fullwidth][fullwidth background_color=\"#f0f0ed\" background_image=\"\" background_parallax=\"fixed\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"60px\" padding_bottom=\"35px\" padding_left=\"0px\" padding_right=\"0px\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][fusion_text]\r\n<h1 style=\"text-align: center;\">BEDROOMS</h1>\r\n[/fusion_text][separator style_type=\"single\" top_margin=\"\" bottom_margin=\"20\" sep_color=\"#000000\" border_size=\"\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"170px\" alignment=\"\" class=\"\" id=\"\"][one_sixth last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][/one_sixth][two_third last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][fusion_text]\r\n<h3 style=\"text-align: justify;\">When it comes to our bedrooms we’re proud to say we’re different. We offer something a little more special.</h3>\r\n<h3 style=\"text-align: justify;\">Our five bedrooms are all en-suite and equipped with either king size or queen size beds. Each room sleeps two guests. The rooms have high ceilings, wall heaters &amp; ceiling fans. Beds all have electric blankets in Winter, 100% cotton percale sheets and thick hyper allergenic microfiber duvets and pillows.</h3>\r\n[/fusion_text][/two_third][one_sixth last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][/one_sixth][/fullwidth][fullwidth background_color=\"\" background_image=\"http://localhost/assagaylodge/wp-content/uploads/2015/01/DSC01516-1148-x-764.jpg\" background_parallax=\"fixed\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"center center\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"60\" padding_bottom=\"20\" padding_left=\"0\" padding_right=\"0\" hundred_percent=\"no\" equal_height_columns=\"yes\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][recent_works layout=\"grid\" picture_size=\"auto\" boxed_text=\"unboxed\" filters=\"no\" columns=\"3\" column_spacing=\"12\" cat_slug=\"bedrooms\" exclude_cats=\"\" number_posts=\"6\" offset=\"\" excerpt_length=\"35\" strip_html=\"yes\" carousel_layout=\"title_on_rollover\" scroll_items=\"\" autoplay=\"no\" show_nav=\"yes\" mouse_scroll=\"no\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" class=\"\" id=\"\"][/recent_works][/fullwidth][fullwidth background_color=\"#f0f0ed\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"20\" padding_bottom=\"20\" padding_left=\"0\" padding_right=\"0\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][fusion_text]\r\n<h1 style=\"text-align: center;\">GARDENS</h1>\r\n[/fusion_text][separator style_type=\"none\" top_margin=\"40\" bottom_margin=\"\" sep_color=\"\" border_size=\"\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"100%\" alignment=\"center\" class=\"\" id=\"\"][one_sixth last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][/one_sixth][two_third last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][fusion_text]\r\n<h3 style=\"text-align: center;\">Walk &amp; relax in our beautiful gardens.</h3>\r\n[/fusion_text][/two_third][one_sixth last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][/one_sixth][recent_works layout=\"grid\" picture_size=\"auto\" boxed_text=\"boxed\" filters=\"no\" columns=\"3\" column_spacing=\"12\" cat_slug=\"gardens\" exclude_cats=\"\" number_posts=\"9\" offset=\"\" excerpt_length=\"35\" strip_html=\"yes\" carousel_layout=\"title_on_rollover\" scroll_items=\"\" autoplay=\"no\" show_nav=\"yes\" mouse_scroll=\"no\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" class=\"\" id=\"\"][/recent_works][/fullwidth][fullwidth background_color=\"#ffffff\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"65px\" padding_bottom=\"65px\" padding_left=\"0px\" padding_right=\"0px\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][button link=\"http://localhost/assagaylodge/book-now/\" color=\"default\" size=\"xlarge\" type=\"3d\" shape=\"round\" target=\"_self\" title=\"\" gradient_colors=\"#f0f0ed|#f0f0ed\" gradient_hover_colors=\"#6666a4|#6666a4\" accent_color=\"#ffffff\" accent_hover_color=\"#ffffff\" bevel_color=\"\" border_width=\"0px\" icon=\"\" icon_position=\"left\" icon_divider=\"no\" modal=\"\" animation_type=\"0\" animation_direction=\"left\" animation_speed=\"1\" alignment=\"center\" class=\"\" id=\"\"]Make A Reservation Enquiry[/button][/fullwidth]', 'Home', '', 'inherit', 'closed', 'closed', '', '7-revision-v1', '', '', '2015-09-10 10:49:47', '2015-09-10 08:49:47', '', 7, 'http://localhost/assagaylodge/7-revision-v1/', 0, 'revision', '', 0);
INSERT INTO `wp_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(1018, 1, '2015-09-10 11:28:18', '2015-09-10 09:28:18', '[fullwidth background_color=\"\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"90px\" padding_bottom=\"0px\" padding_left=\"0px\" padding_right=\"0px\" hundred_percent=\"yes\" equal_height_columns=\"yes\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][one_half last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"http://localhost/assagaylodge/wp-content/uploads/2015/08/Tha-Lodge.jpg\" background_repeat=\"no-repeat\" background_position=\"center center\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" class=\"\" id=\"\"][/one_half][one_half last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"30px\" margin_top=\"\" margin_bottom=\"0px\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" class=\"special\" id=\"\"][fusion_text]\r\n<h1>5 BEDROOM FAMILY LODGE</h1>\r\n[/fusion_text][separator style_type=\"single\" top_margin=\"0\" bottom_margin=\"30\" sep_color=\"#000000\" border_size=\"\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"170px\" alignment=\"left\" class=\"separator-left\" id=\"\"][checklist icon=\"fa-star-o\" iconcolor=\"\" circle=\"\" circlecolor=\"\" size=\"13px\" class=\"\" id=\"\"][li_item icon=\"\"]Self-Catering: Single R650 per night Sharing R990 per couple per night[/li_item][li_item icon=\"\"]Service Options: Yes/No[/li_item][li_item icon=\"\"]Bed &amp; Breakfast: Single R725 per night Sharing R1140 per couple per night[/li_item][/checklist][/one_half][/fullwidth][modal name=\"myrates\" title=\"Rates\" size=\"small\" background=\"\" border_color=\"\" show_footer=\"yes\" class=\"\" id=\"\"]\r\n\r\nSELF CATERING PER NIGHT\r\nR650 per room (Single)\r\nR990 per room (Sharing - Sleeps 2)\r\nR3000 per lodge (Max 10 guests)\r\n\r\n[/modal][fullwidth background_color=\"#f0f0ed\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"30px\" padding_bottom=\"60px\" padding_left=\"0px\" padding_right=\"0px\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][one_half last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][fusion_text]\r\n<p style=\"text-align: justify;\">The property boasts over 200 different species of birds and animals. The Lodge is situated on the 1000 Hills tourism route, on the edge of Hillcrest and is a perfect place from which one can launch to any one of the many fantastic destinations and game reserves in KwaZulu Natal, i.e. the Majestic Drakensberg Mountain Range, Shongweni Nature Reserve, Nagle Dam, Durban &amp; Beach Front. We are also the doorstep of one of KZN’s major horse riding venues namely, the Shongweni Horse Riding Club &amp; the Summerveld Horse Riding Academy, makes Assagay Lodge a perfect home away from home for the equestrian lovers. The peace &amp; tranquility will take you far away from the business of city life. Evenings are quiet and peaceful. This is a unique and memorable country experience.</p>\r\n[/fusion_text][/one_half][one_half last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][fusion_text]\r\n<p style=\"text-align: justify;\">We are a homely \'down to earth\' country guest lodge, set on a farm surrounded by acres of beautiful hills, forests, &amp; dams in the Madwala Conservancy of Assagay, where horses still have the right of way on all roads. Our five bedrooms have a rustic charm offering the comforts of modern day life.</p>\r\n<p style=\"text-align: justify;\">Assagay Forest Lodge is owner managed, built in 2005 the lodge provides 5 cozy bedrooms with a large spacious and comfortable homely lounge, which leads onto a large deck area. Set on a 6 acre property in the Assagay Conservancy our lodge is nestled around trees, bushes, and beautiful gardens and a stream, allowing visitors to meander and relax. Guests seeking a quite, relaxing, homely experience will find our lodge the perfect choice away from home. There is a kitchen available should you wish to muster up a snack or quick meal, however breakfast is available on request.</p>\r\n[/fusion_text][/one_half][/fullwidth][fullwidth background_color=\"#f0f0ed\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"60px\" padding_bottom=\"45px\" padding_left=\"0px\" padding_right=\"0px\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][fusion_text]\r\n<h1 style=\"text-align: center;\">Gallery</h1>\r\n[/fusion_text][separator style_type=\"single\" top_margin=\"\" bottom_margin=\"40\" sep_color=\"#000000\" border_size=\"\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"170px\" alignment=\"\" class=\"\" id=\"\"][one_sixth last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][/one_sixth][two_third last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][fusion_text]\r\n<h3 style=\"text-align: center;\">The Lodge is open, spacious, comfortable and homely.</h3>\r\n[/fusion_text][/two_third][one_sixth last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][/one_sixth][recent_works layout=\"grid\" picture_size=\"auto\" boxed_text=\"boxed\" filters=\"no\" columns=\"3\" column_spacing=\"12\" cat_slug=\"the-lodge\" exclude_cats=\"\" number_posts=\"9\" offset=\"\" excerpt_length=\"35\" strip_html=\"yes\" carousel_layout=\"title_on_rollover\" scroll_items=\"\" autoplay=\"no\" show_nav=\"yes\" mouse_scroll=\"no\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" class=\"\" id=\"\"][/recent_works][/fullwidth][fullwidth background_color=\"#f0f0ed\" background_image=\"\" background_parallax=\"fixed\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"60px\" padding_bottom=\"35px\" padding_left=\"0px\" padding_right=\"0px\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][fusion_text]\r\n<h1 style=\"text-align: center;\">BEDROOMS</h1>\r\n[/fusion_text][separator style_type=\"single\" top_margin=\"\" bottom_margin=\"20\" sep_color=\"#000000\" border_size=\"\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"170px\" alignment=\"\" class=\"\" id=\"\"][one_sixth last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][/one_sixth][two_third last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][fusion_text]\r\n<h3 style=\"text-align: justify;\">When it comes to our bedrooms we’re proud to say we’re different. We offer something a little more special.</h3>\r\n<h3 style=\"text-align: justify;\">Our five bedrooms are all en-suite and equipped with either king size or queen size beds. Each room sleeps two guests. The rooms have high ceilings, wall heaters &amp; ceiling fans. Beds all have electric blankets in Winter, 100% cotton percale sheets and thick hyper allergenic microfiber duvets and pillows.</h3>\r\n[/fusion_text][/two_third][one_sixth last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][/one_sixth][recent_works layout=\"grid\" picture_size=\"auto\" boxed_text=\"unboxed\" filters=\"no\" columns=\"3\" column_spacing=\"12\" cat_slug=\"bedrooms\" exclude_cats=\"\" number_posts=\"6\" offset=\"\" excerpt_length=\"35\" strip_html=\"yes\" carousel_layout=\"title_on_rollover\" scroll_items=\"\" autoplay=\"no\" show_nav=\"yes\" mouse_scroll=\"no\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" class=\"\" id=\"\"][/recent_works][/fullwidth][fullwidth background_color=\"\" background_image=\"http://localhost/assagaylodge/wp-content/uploads/2015/01/DSC01516-1148-x-764.jpg\" background_parallax=\"fixed\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"center center\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"60\" padding_bottom=\"20\" padding_left=\"0\" padding_right=\"0\" hundred_percent=\"no\" equal_height_columns=\"yes\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][/fullwidth][fullwidth background_color=\"#f0f0ed\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"20\" padding_bottom=\"20\" padding_left=\"0\" padding_right=\"0\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][fusion_text]\r\n<h1 style=\"text-align: center;\">GARDENS</h1>\r\n[/fusion_text][separator style_type=\"none\" top_margin=\"40\" bottom_margin=\"\" sep_color=\"\" border_size=\"\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"100%\" alignment=\"center\" class=\"\" id=\"\"][one_sixth last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][/one_sixth][two_third last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][fusion_text]\r\n<h3 style=\"text-align: center;\">Walk &amp; relax in our beautiful gardens.</h3>\r\n[/fusion_text][/two_third][one_sixth last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][/one_sixth][recent_works layout=\"grid\" picture_size=\"auto\" boxed_text=\"boxed\" filters=\"no\" columns=\"3\" column_spacing=\"12\" cat_slug=\"gardens\" exclude_cats=\"\" number_posts=\"9\" offset=\"\" excerpt_length=\"35\" strip_html=\"yes\" carousel_layout=\"title_on_rollover\" scroll_items=\"\" autoplay=\"no\" show_nav=\"yes\" mouse_scroll=\"no\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" class=\"\" id=\"\"][/recent_works][/fullwidth][fullwidth background_color=\"#ffffff\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"65px\" padding_bottom=\"65px\" padding_left=\"0px\" padding_right=\"0px\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][button link=\"http://localhost/assagaylodge/book-now/\" color=\"default\" size=\"xlarge\" type=\"3d\" shape=\"round\" target=\"_self\" title=\"\" gradient_colors=\"#f0f0ed|#f0f0ed\" gradient_hover_colors=\"#6666a4|#6666a4\" accent_color=\"#ffffff\" accent_hover_color=\"#ffffff\" bevel_color=\"\" border_width=\"0px\" icon=\"\" icon_position=\"left\" icon_divider=\"no\" modal=\"\" animation_type=\"0\" animation_direction=\"left\" animation_speed=\"1\" alignment=\"center\" class=\"\" id=\"\"]Make A Reservation Enquiry[/button][/fullwidth]', 'Home', '', 'inherit', 'closed', 'closed', '', '7-revision-v1', '', '', '2015-09-10 11:28:18', '2015-09-10 09:28:18', '', 7, 'http://localhost/assagaylodge/7-revision-v1/', 0, 'revision', '', 0),
(1019, 1, '2015-09-10 11:30:37', '2015-09-10 09:30:37', '[fullwidth background_color=\"#f0f0ed\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"90px\" padding_bottom=\"0px\" padding_left=\"0px\" padding_right=\"0px\" hundred_percent=\"yes\" equal_height_columns=\"yes\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][one_half last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"http://localhost/assagaylodge/wp-content/uploads/2015/08/Tha-Lodge.jpg\" background_repeat=\"no-repeat\" background_position=\"center center\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" class=\"\" id=\"\"][/one_half][one_half last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"30px\" margin_top=\"\" margin_bottom=\"0px\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" class=\"special\" id=\"\"][fusion_text]\r\n<h1>5 BEDROOM FAMILY LODGE</h1>\r\n[/fusion_text][separator style_type=\"single\" top_margin=\"0\" bottom_margin=\"30\" sep_color=\"#000000\" border_size=\"\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"170px\" alignment=\"left\" class=\"separator-left\" id=\"\"][checklist icon=\"fa-star-o\" iconcolor=\"\" circle=\"\" circlecolor=\"\" size=\"13px\" class=\"\" id=\"\"][li_item icon=\"\"]Self-Catering: Single R650 per night Sharing R990 per couple per night[/li_item][li_item icon=\"\"]Service Options: Yes/No[/li_item][li_item icon=\"\"]Bed &amp; Breakfast: Single R725 per night Sharing R1140 per couple per night[/li_item][/checklist][/one_half][/fullwidth][fullwidth background_color=\"#f0f0ed\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"30px\" padding_bottom=\"60px\" padding_left=\"0px\" padding_right=\"0px\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][modal name=\"myrates\" title=\"Rates\" size=\"small\" background=\"\" border_color=\"\" show_footer=\"yes\" class=\"\" id=\"\"]\r\n\r\nSELF CATERING PER NIGHT\r\nR650 per room (Single)\r\nR990 per room (Sharing - Sleeps 2)\r\nR3000 per lodge (Max 10 guests)\r\n\r\n[/modal][one_half last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][fusion_text]\r\n<p style=\"text-align: justify;\">The property boasts over 200 different species of birds and animals. The Lodge is situated on the 1000 Hills tourism route, on the edge of Hillcrest and is a perfect place from which one can launch to any one of the many fantastic destinations and game reserves in KwaZulu Natal, i.e. the Majestic Drakensberg Mountain Range, Shongweni Nature Reserve, Nagle Dam, Durban &amp; Beach Front. We are also the doorstep of one of KZN’s major horse riding venues namely, the Shongweni Horse Riding Club &amp; the Summerveld Horse Riding Academy, makes Assagay Lodge a perfect home away from home for the equestrian lovers. The peace &amp; tranquility will take you far away from the business of city life. Evenings are quiet and peaceful. This is a unique and memorable country experience.</p>\r\n[/fusion_text][/one_half][one_half last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][fusion_text]\r\n<p style=\"text-align: justify;\">We are a homely \'down to earth\' country guest lodge, set on a farm surrounded by acres of beautiful hills, forests, &amp; dams in the Madwala Conservancy of Assagay, where horses still have the right of way on all roads. Our five bedrooms have a rustic charm offering the comforts of modern day life.</p>\r\n<p style=\"text-align: justify;\">Assagay Forest Lodge is owner managed, built in 2005 the lodge provides 5 cozy bedrooms with a large spacious and comfortable homely lounge, which leads onto a large deck area. Set on a 6 acre property in the Assagay Conservancy our lodge is nestled around trees, bushes, and beautiful gardens and a stream, allowing visitors to meander and relax. Guests seeking a quite, relaxing, homely experience will find our lodge the perfect choice away from home. There is a kitchen available should you wish to muster up a snack or quick meal, however breakfast is available on request.</p>\r\n[/fusion_text][/one_half][/fullwidth][fullwidth background_color=\"#f0f0ed\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"60px\" padding_bottom=\"45px\" padding_left=\"0px\" padding_right=\"0px\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][fusion_text]\r\n<h1 style=\"text-align: center;\">Gallery</h1>\r\n[/fusion_text][separator style_type=\"single\" top_margin=\"\" bottom_margin=\"40\" sep_color=\"#000000\" border_size=\"\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"170px\" alignment=\"\" class=\"\" id=\"\"][one_sixth last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][/one_sixth][two_third last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][fusion_text]\r\n<h3 style=\"text-align: center;\">The Lodge is open, spacious, comfortable and homely.</h3>\r\n[/fusion_text][/two_third][one_sixth last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][/one_sixth][recent_works layout=\"grid\" picture_size=\"auto\" boxed_text=\"boxed\" filters=\"no\" columns=\"3\" column_spacing=\"12\" cat_slug=\"the-lodge\" exclude_cats=\"\" number_posts=\"9\" offset=\"\" excerpt_length=\"35\" strip_html=\"yes\" carousel_layout=\"title_on_rollover\" scroll_items=\"\" autoplay=\"no\" show_nav=\"yes\" mouse_scroll=\"no\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" class=\"\" id=\"\"][/recent_works][/fullwidth][fullwidth background_color=\"#f0f0ed\" background_image=\"\" background_parallax=\"fixed\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"60px\" padding_bottom=\"35px\" padding_left=\"0px\" padding_right=\"0px\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][fusion_text]\r\n<h1 style=\"text-align: center;\">BEDROOMS</h1>\r\n[/fusion_text][separator style_type=\"single\" top_margin=\"\" bottom_margin=\"20\" sep_color=\"#000000\" border_size=\"\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"170px\" alignment=\"\" class=\"\" id=\"\"][one_sixth last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][/one_sixth][two_third last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][fusion_text]\r\n<h3 style=\"text-align: justify;\">When it comes to our bedrooms we’re proud to say we’re different. We offer something a little more special.</h3>\r\n<h3 style=\"text-align: justify;\">Our five bedrooms are all en-suite and equipped with either king size or queen size beds. Each room sleeps two guests. The rooms have high ceilings, wall heaters &amp; ceiling fans. Beds all have electric blankets in Winter, 100% cotton percale sheets and thick hyper allergenic microfiber duvets and pillows.</h3>\r\n[/fusion_text][/two_third][one_sixth last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][/one_sixth][/fullwidth][fullwidth background_color=\"\" background_image=\"http://localhost/assagaylodge/wp-content/uploads/2015/01/DSC01516-1148-x-764.jpg\" background_parallax=\"fixed\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"center center\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"60\" padding_bottom=\"20\" padding_left=\"0\" padding_right=\"0\" hundred_percent=\"no\" equal_height_columns=\"yes\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][recent_works layout=\"grid\" picture_size=\"auto\" boxed_text=\"unboxed\" filters=\"no\" columns=\"3\" column_spacing=\"12\" cat_slug=\"bedrooms\" exclude_cats=\"\" number_posts=\"6\" offset=\"\" excerpt_length=\"35\" strip_html=\"yes\" carousel_layout=\"title_on_rollover\" scroll_items=\"\" autoplay=\"no\" show_nav=\"yes\" mouse_scroll=\"no\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" class=\"\" id=\"\"][/recent_works][/fullwidth][fullwidth background_color=\"#f0f0ed\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"20\" padding_bottom=\"20\" padding_left=\"0\" padding_right=\"0\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][fusion_text]\r\n<h1 style=\"text-align: center;\">GARDENS</h1>\r\n[/fusion_text][separator style_type=\"none\" top_margin=\"40\" bottom_margin=\"\" sep_color=\"\" border_size=\"\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"100%\" alignment=\"center\" class=\"\" id=\"\"][one_sixth last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][/one_sixth][two_third last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][fusion_text]\r\n<h3 style=\"text-align: center;\">Walk &amp; relax in our beautiful gardens.</h3>\r\n[/fusion_text][/two_third][one_sixth last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][/one_sixth][recent_works layout=\"grid\" picture_size=\"auto\" boxed_text=\"boxed\" filters=\"no\" columns=\"3\" column_spacing=\"12\" cat_slug=\"gardens\" exclude_cats=\"\" number_posts=\"9\" offset=\"\" excerpt_length=\"35\" strip_html=\"yes\" carousel_layout=\"title_on_rollover\" scroll_items=\"\" autoplay=\"no\" show_nav=\"yes\" mouse_scroll=\"no\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" class=\"\" id=\"\"][/recent_works][/fullwidth][fullwidth background_color=\"#ffffff\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"65px\" padding_bottom=\"65px\" padding_left=\"0px\" padding_right=\"0px\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][button link=\"http://localhost/assagaylodge/book-now/\" color=\"default\" size=\"xlarge\" type=\"3d\" shape=\"round\" target=\"_self\" title=\"\" gradient_colors=\"#f0f0ed|#f0f0ed\" gradient_hover_colors=\"#6666a4|#6666a4\" accent_color=\"#ffffff\" accent_hover_color=\"#ffffff\" bevel_color=\"\" border_width=\"0px\" icon=\"\" icon_position=\"left\" icon_divider=\"no\" modal=\"\" animation_type=\"0\" animation_direction=\"left\" animation_speed=\"1\" alignment=\"center\" class=\"\" id=\"\"]Make A Reservation Enquiry[/button][/fullwidth]', 'Home', '', 'inherit', 'closed', 'closed', '', '7-revision-v1', '', '', '2015-09-10 11:30:37', '2015-09-10 09:30:37', '', 7, 'http://localhost/assagaylodge/7-revision-v1/', 0, 'revision', '', 0);
INSERT INTO `wp_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(1020, 1, '2015-09-10 11:39:01', '2015-09-10 09:39:01', '[fullwidth background_color=\"#f0f0ed\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"90px\" padding_bottom=\"0px\" padding_left=\"0px\" padding_right=\"0px\" hundred_percent=\"yes\" equal_height_columns=\"yes\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][one_half last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"http://localhost/assagaylodge/wp-content/uploads/2015/08/Tha-Lodge.jpg\" background_repeat=\"no-repeat\" background_position=\"center center\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" class=\"\" id=\"\"][/one_half][one_half last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"30px\" margin_top=\"\" margin_bottom=\"0px\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" class=\"special\" id=\"\"][fusion_text]\r\n<h1>5 BEDROOM FAMILY LODGE</h1>\r\n[/fusion_text][separator style_type=\"single\" top_margin=\"0\" bottom_margin=\"30\" sep_color=\"#000000\" border_size=\"\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"170px\" alignment=\"left\" class=\"separator-left\" id=\"\"][checklist icon=\"fa-star-o\" iconcolor=\"\" circle=\"\" circlecolor=\"\" size=\"13px\" class=\"\" id=\"\"][li_item icon=\"\"]Self-Catering: Single R650 per night Sharing R990 per couple per night[/li_item][li_item icon=\"\"]Service Options: Yes/No[/li_item][li_item icon=\"\"]Bed &amp; Breakfast: Single R725 per night Sharing R1140 per couple per night[/li_item][/checklist][/one_half][/fullwidth][fullwidth background_color=\"#f0f0ed\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"30px\" padding_bottom=\"60px\" padding_left=\"0px\" padding_right=\"0px\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][one_half last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][fusion_text]\r\n<p style=\"text-align: justify;\">The property boasts over 200 different species of birds and animals. The Lodge is situated on the 1000 Hills tourism route, on the edge of Hillcrest and is a perfect place from which one can launch to any one of the many fantastic destinations and game reserves in KwaZulu Natal, i.e. the Majestic Drakensberg Mountain Range, Shongweni Nature Reserve, Nagle Dam, Durban &amp; Beach Front. We are also the doorstep of one of KZN’s major horse riding venues namely, the Shongweni Horse Riding Club &amp; the Summerveld Horse Riding Academy, makes Assagay Lodge a perfect home away from home for the equestrian lovers. The peace &amp; tranquility will take you far away from the business of city life. Evenings are quiet and peaceful. This is a unique and memorable country experience.</p>\r\n[/fusion_text][/one_half][one_half last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][fusion_text]\r\n<p style=\"text-align: justify;\">We are a homely \'down to earth\' country guest lodge, set on a farm surrounded by acres of beautiful hills, forests, &amp; dams in the Madwala Conservancy of Assagay, where horses still have the right of way on all roads. Our five bedrooms have a rustic charm offering the comforts of modern day life.</p>\r\n<p style=\"text-align: justify;\">Assagay Forest Lodge is owner managed, built in 2005 the lodge provides 5 cozy bedrooms with a large spacious and comfortable homely lounge, which leads onto a large deck area. Set on a 6 acre property in the Assagay Conservancy our lodge is nestled around trees, bushes, and beautiful gardens and a stream, allowing visitors to meander and relax. Guests seeking a quite, relaxing, homely experience will find our lodge the perfect choice away from home. There is a kitchen available should you wish to muster up a snack or quick meal, however breakfast is available on request.</p>\r\n[/fusion_text][/one_half][/fullwidth][fullwidth background_color=\"#f0f0ed\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"60px\" padding_bottom=\"45px\" padding_left=\"0px\" padding_right=\"0px\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][fusion_text]\r\n<h1 style=\"text-align: center;\">Gallery</h1>\r\n[/fusion_text][separator style_type=\"single\" top_margin=\"\" bottom_margin=\"40\" sep_color=\"#000000\" border_size=\"\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"170px\" alignment=\"\" class=\"\" id=\"\"][one_sixth last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][/one_sixth][two_third last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][fusion_text]\r\n<h3 style=\"text-align: center;\">The Lodge is open, spacious, comfortable and homely.</h3>\r\n[/fusion_text][/two_third][one_sixth last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][/one_sixth][/fullwidth][fullwidth background_color=\"#f0f0ed\" background_image=\"http://localhost/assagaylodge/wp-content/uploads/2015/09/DSC01487.jpg\" background_parallax=\"fixed\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"20\" padding_bottom=\"20\" padding_left=\"0\" padding_right=\"0\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][recent_works layout=\"grid\" picture_size=\"auto\" boxed_text=\"unboxed\" filters=\"no\" columns=\"3\" column_spacing=\"12\" cat_slug=\"the-lodge\" exclude_cats=\"\" number_posts=\"9\" offset=\"\" excerpt_length=\"35\" strip_html=\"yes\" carousel_layout=\"title_on_rollover\" scroll_items=\"\" autoplay=\"no\" show_nav=\"yes\" mouse_scroll=\"no\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" class=\"\" id=\"\"][/recent_works][/fullwidth][fullwidth background_color=\"#f0f0ed\" background_image=\"\" background_parallax=\"fixed\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"60px\" padding_bottom=\"35px\" padding_left=\"0px\" padding_right=\"0px\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][fusion_text]\r\n<h1 style=\"text-align: center;\">BEDROOMS</h1>\r\n[/fusion_text][separator style_type=\"single\" top_margin=\"\" bottom_margin=\"20\" sep_color=\"#000000\" border_size=\"\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"170px\" alignment=\"\" class=\"\" id=\"\"][one_sixth last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][/one_sixth][two_third last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][fusion_text]\r\n<h3 style=\"text-align: justify;\">When it comes to our bedrooms we’re proud to say we’re different. We offer something a little more special.</h3>\r\n<h3 style=\"text-align: justify;\">Our five bedrooms are all en-suite and equipped with either king size or queen size beds. Each room sleeps two guests. The rooms have high ceilings, wall heaters &amp; ceiling fans. Beds all have electric blankets in Winter, 100% cotton percale sheets and thick hyper allergenic microfiber duvets and pillows.</h3>\r\n[/fusion_text][/two_third][one_sixth last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][/one_sixth][/fullwidth][fullwidth background_color=\"\" background_image=\"http://localhost/assagaylodge/wp-content/uploads/2015/01/DSC01516-1148-x-764.jpg\" background_parallax=\"fixed\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"center center\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"60\" padding_bottom=\"20\" padding_left=\"0\" padding_right=\"0\" hundred_percent=\"no\" equal_height_columns=\"yes\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][recent_works layout=\"grid\" picture_size=\"auto\" boxed_text=\"unboxed\" filters=\"no\" columns=\"3\" column_spacing=\"12\" cat_slug=\"bedrooms\" exclude_cats=\"\" number_posts=\"6\" offset=\"\" excerpt_length=\"35\" strip_html=\"yes\" carousel_layout=\"title_on_rollover\" scroll_items=\"\" autoplay=\"no\" show_nav=\"yes\" mouse_scroll=\"no\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" class=\"\" id=\"\"][/recent_works][/fullwidth][fullwidth background_color=\"#f0f0ed\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"20\" padding_bottom=\"20\" padding_left=\"0\" padding_right=\"0\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][fusion_text]\r\n<h1 style=\"text-align: center;\">GARDENS</h1>\r\n[/fusion_text][separator style_type=\"none\" top_margin=\"40\" bottom_margin=\"\" sep_color=\"\" border_size=\"\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"100%\" alignment=\"center\" class=\"\" id=\"\"][one_sixth last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][/one_sixth][two_third last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][fusion_text]\r\n<h3 style=\"text-align: center;\">Walk &amp; relax in our beautiful gardens.</h3>\r\n[/fusion_text][/two_third][one_sixth last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][/one_sixth][recent_works layout=\"grid\" picture_size=\"auto\" boxed_text=\"boxed\" filters=\"no\" columns=\"3\" column_spacing=\"12\" cat_slug=\"gardens\" exclude_cats=\"\" number_posts=\"9\" offset=\"\" excerpt_length=\"35\" strip_html=\"yes\" carousel_layout=\"title_on_rollover\" scroll_items=\"\" autoplay=\"no\" show_nav=\"yes\" mouse_scroll=\"no\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" class=\"\" id=\"\"][/recent_works][/fullwidth][fullwidth background_color=\"#ffffff\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"65px\" padding_bottom=\"65px\" padding_left=\"0px\" padding_right=\"0px\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][button link=\"http://localhost/assagaylodge/book-now/\" color=\"default\" size=\"xlarge\" type=\"3d\" shape=\"round\" target=\"_self\" title=\"\" gradient_colors=\"#f0f0ed|#f0f0ed\" gradient_hover_colors=\"#6666a4|#6666a4\" accent_color=\"#ffffff\" accent_hover_color=\"#ffffff\" bevel_color=\"\" border_width=\"0px\" icon=\"\" icon_position=\"left\" icon_divider=\"no\" modal=\"\" animation_type=\"0\" animation_direction=\"left\" animation_speed=\"1\" alignment=\"center\" class=\"\" id=\"\"]Make A Reservation Enquiry[/button][/fullwidth]', 'Home', '', 'inherit', 'closed', 'closed', '', '7-revision-v1', '', '', '2015-09-10 11:39:01', '2015-09-10 09:39:01', '', 7, 'http://localhost/assagaylodge/7-revision-v1/', 0, 'revision', '', 0),
(1021, 1, '2015-09-10 11:48:34', '2015-09-10 09:48:34', '[fullwidth background_color=\"#f0f0ed\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"90px\" padding_bottom=\"0px\" padding_left=\"0px\" padding_right=\"0px\" hundred_percent=\"yes\" equal_height_columns=\"yes\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][one_half last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"http://localhost/assagaylodge/wp-content/uploads/2015/08/Tha-Lodge.jpg\" background_repeat=\"no-repeat\" background_position=\"center center\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" class=\"\" id=\"\"][/one_half][one_half last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"30px\" margin_top=\"\" margin_bottom=\"0px\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" class=\"special\" id=\"\"][fusion_text]\r\n<h1>5 BEDROOM FAMILY LODGE</h1>\r\n[/fusion_text][separator style_type=\"single\" top_margin=\"0\" bottom_margin=\"30\" sep_color=\"#000000\" border_size=\"\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"170px\" alignment=\"left\" class=\"separator-left\" id=\"\"][checklist icon=\"fa-star-o\" iconcolor=\"\" circle=\"\" circlecolor=\"\" size=\"13px\" class=\"\" id=\"\"][li_item icon=\"\"]Self-Catering: Single R650 per night Sharing R990 per couple per night[/li_item][li_item icon=\"\"]Service Options: Yes/No[/li_item][li_item icon=\"\"]Bed &amp; Breakfast: Single R725 per night Sharing R1140 per couple per night[/li_item][/checklist][/one_half][/fullwidth][fullwidth background_color=\"#f0f0ed\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"30px\" padding_bottom=\"30px\" padding_left=\"0px\" padding_right=\"0px\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][one_half last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][fusion_text]\r\n<p style=\"text-align: justify;\">The property boasts over 200 different species of birds and animals. The Lodge is situated on the 1000 Hills tourism route, on the edge of Hillcrest and is a perfect place from which one can launch to any one of the many fantastic destinations and game reserves in KwaZulu Natal, i.e. the Majestic Drakensberg Mountain Range, Shongweni Nature Reserve, Nagle Dam, Durban &amp; Beach Front. We are also the doorstep of one of KZN’s major horse riding venues namely, the Shongweni Horse Riding Club &amp; the Summerveld Horse Riding Academy, makes Assagay Lodge a perfect home away from home for the equestrian lovers. The peace &amp; tranquility will take you far away from the business of city life. Evenings are quiet and peaceful. This is a unique and memorable country experience.</p>\r\n[/fusion_text][/one_half][one_half last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][fusion_text]\r\n<p style=\"text-align: justify;\">We are a homely \'down to earth\' country guest lodge, set on a farm surrounded by acres of beautiful hills, forests, &amp; dams in the Madwala Conservancy of Assagay, where horses still have the right of way on all roads. Our five bedrooms have a rustic charm offering the comforts of modern day life.</p>\r\n<p style=\"text-align: justify;\">Assagay Forest Lodge is owner managed, built in 2005 the lodge provides 5 cozy bedrooms with a large spacious and comfortable homely lounge, which leads onto a large deck area. Set on a 6 acre property in the Assagay Conservancy our lodge is nestled around trees, bushes, and beautiful gardens and a stream, allowing visitors to meander and relax. Guests seeking a quite, relaxing, homely experience will find our lodge the perfect choice away from home. There is a kitchen available should you wish to muster up a snack or quick meal, however breakfast is available on request.</p>\r\n[/fusion_text][/one_half][/fullwidth][fullwidth background_color=\"#f0f0ed\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"60px\" padding_bottom=\"45px\" padding_left=\"0px\" padding_right=\"0px\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][fusion_text]\r\n<h1 style=\"text-align: center;\">Gallery</h1>\r\n[/fusion_text][separator style_type=\"single\" top_margin=\"\" bottom_margin=\"40\" sep_color=\"#000000\" border_size=\"\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"170px\" alignment=\"\" class=\"\" id=\"\"][one_sixth last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][/one_sixth][two_third last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][fusion_text]\r\n<h3 style=\"text-align: center;\">The Lodge is open, spacious, comfortable and homely.</h3>\r\n[/fusion_text][/two_third][one_sixth last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][/one_sixth][/fullwidth][fullwidth background_color=\"#f0f0ed\" background_image=\"http://localhost/assagaylodge/wp-content/uploads/2015/09/DSC01487.jpg\" background_parallax=\"fixed\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"20\" padding_bottom=\"20\" padding_left=\"0\" padding_right=\"0\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][recent_works layout=\"grid\" picture_size=\"auto\" boxed_text=\"unboxed\" filters=\"no\" columns=\"3\" column_spacing=\"12\" cat_slug=\"the-lodge\" exclude_cats=\"\" number_posts=\"9\" offset=\"\" excerpt_length=\"35\" strip_html=\"yes\" carousel_layout=\"title_on_rollover\" scroll_items=\"\" autoplay=\"no\" show_nav=\"yes\" mouse_scroll=\"no\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" class=\"\" id=\"\"][/recent_works][/fullwidth][fullwidth background_color=\"#f0f0ed\" background_image=\"\" background_parallax=\"fixed\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"60px\" padding_bottom=\"35px\" padding_left=\"0px\" padding_right=\"0px\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][fusion_text]\r\n<h1 style=\"text-align: center;\">BEDROOMS</h1>\r\n[/fusion_text][separator style_type=\"single\" top_margin=\"\" bottom_margin=\"20\" sep_color=\"#000000\" border_size=\"\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"170px\" alignment=\"\" class=\"\" id=\"\"][one_sixth last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][/one_sixth][two_third last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][fusion_text]\r\n<h3 style=\"text-align: justify;\">When it comes to our bedrooms we’re proud to say we’re different. We offer something a little more special.</h3>\r\n<h3 style=\"text-align: justify;\">Our five bedrooms are all en-suite and equipped with either king size or queen size beds. Each room sleeps two guests. The rooms have high ceilings, wall heaters &amp; ceiling fans. Beds all have electric blankets in Winter, 100% cotton percale sheets and thick hyper allergenic microfiber duvets and pillows.</h3>\r\n[/fusion_text][/two_third][one_sixth last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][/one_sixth][/fullwidth][fullwidth background_color=\"\" background_image=\"http://localhost/assagaylodge/wp-content/uploads/2015/01/DSC01516-1148-x-764.jpg\" background_parallax=\"fixed\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"center center\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"60\" padding_bottom=\"20\" padding_left=\"0\" padding_right=\"0\" hundred_percent=\"no\" equal_height_columns=\"yes\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][recent_works layout=\"grid\" picture_size=\"auto\" boxed_text=\"unboxed\" filters=\"no\" columns=\"3\" column_spacing=\"12\" cat_slug=\"bedrooms\" exclude_cats=\"\" number_posts=\"6\" offset=\"\" excerpt_length=\"35\" strip_html=\"yes\" carousel_layout=\"title_on_rollover\" scroll_items=\"\" autoplay=\"no\" show_nav=\"yes\" mouse_scroll=\"no\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" class=\"\" id=\"\"][/recent_works][/fullwidth][fullwidth background_color=\"#f0f0ed\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"20\" padding_bottom=\"20\" padding_left=\"0\" padding_right=\"0\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][fusion_text]\r\n<h1 style=\"text-align: center;\">GARDENS</h1>\r\n[/fusion_text][separator style_type=\"none\" top_margin=\"40\" bottom_margin=\"\" sep_color=\"\" border_size=\"\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"100%\" alignment=\"center\" class=\"\" id=\"\"][one_sixth last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][/one_sixth][two_third last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][fusion_text]\r\n<h3 style=\"text-align: center;\">Walk &amp; relax in our beautiful gardens.</h3>\r\n[/fusion_text][/two_third][one_sixth last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][/one_sixth][recent_works layout=\"grid\" picture_size=\"auto\" boxed_text=\"boxed\" filters=\"no\" columns=\"3\" column_spacing=\"12\" cat_slug=\"gardens\" exclude_cats=\"\" number_posts=\"9\" offset=\"\" excerpt_length=\"35\" strip_html=\"yes\" carousel_layout=\"title_on_rollover\" scroll_items=\"\" autoplay=\"no\" show_nav=\"yes\" mouse_scroll=\"no\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" class=\"\" id=\"\"][/recent_works][/fullwidth][fullwidth background_color=\"#ffffff\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"65px\" padding_bottom=\"65px\" padding_left=\"0px\" padding_right=\"0px\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][button link=\"http://localhost/assagaylodge/book-now/\" color=\"default\" size=\"xlarge\" type=\"3d\" shape=\"round\" target=\"_self\" title=\"\" gradient_colors=\"#f0f0ed|#f0f0ed\" gradient_hover_colors=\"#6666a4|#6666a4\" accent_color=\"#ffffff\" accent_hover_color=\"#ffffff\" bevel_color=\"\" border_width=\"0px\" icon=\"\" icon_position=\"left\" icon_divider=\"no\" modal=\"\" animation_type=\"0\" animation_direction=\"left\" animation_speed=\"1\" alignment=\"center\" class=\"\" id=\"\"]Make A Reservation Enquiry[/button][/fullwidth]', 'Home', '', 'inherit', 'closed', 'closed', '', '7-revision-v1', '', '', '2015-09-10 11:48:34', '2015-09-10 09:48:34', '', 7, 'http://localhost/assagaylodge/7-revision-v1/', 0, 'revision', '', 0);
INSERT INTO `wp_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(1022, 1, '2015-09-10 11:51:14', '2015-09-10 09:51:14', '[fullwidth background_color=\"#f0f0ed\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"90px\" padding_bottom=\"0px\" padding_left=\"0px\" padding_right=\"0px\" hundred_percent=\"yes\" equal_height_columns=\"yes\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][one_half last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"http://localhost/assagaylodge/wp-content/uploads/2015/08/Tha-Lodge.jpg\" background_repeat=\"no-repeat\" background_position=\"center center\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" class=\"\" id=\"\"][/one_half][one_half last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"30px\" margin_top=\"\" margin_bottom=\"0px\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" class=\"special\" id=\"\"][fusion_text]\r\n<h1>5 BEDROOM FAMILY LODGE</h1>\r\n[/fusion_text][separator style_type=\"single\" top_margin=\"0\" bottom_margin=\"30\" sep_color=\"#000000\" border_size=\"\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"170px\" alignment=\"left\" class=\"separator-left\" id=\"\"][checklist icon=\"fa-star-o\" iconcolor=\"\" circle=\"\" circlecolor=\"\" size=\"13px\" class=\"\" id=\"\"][li_item icon=\"\"]Self-Catering: Single R650 per night Sharing R990 per couple per night[/li_item][li_item icon=\"\"]Service Options: Yes/No[/li_item][li_item icon=\"\"]Bed &amp; Breakfast: Single R725 per night Sharing R1140 per couple per night[/li_item][/checklist][/one_half][/fullwidth][fullwidth background_color=\"#f0f0ed\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"\" padding_bottom=\"\" padding_left=\"0px\" padding_right=\"0px\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][one_half last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][fusion_text]\r\n<p style=\"text-align: justify;\">The property boasts over 200 different species of birds and animals. The Lodge is situated on the 1000 Hills tourism route, on the edge of Hillcrest and is a perfect place from which one can launch to any one of the many fantastic destinations and game reserves in KwaZulu Natal, i.e. the Majestic Drakensberg Mountain Range, Shongweni Nature Reserve, Nagle Dam, Durban &amp; Beach Front. We are also the doorstep of one of KZN’s major horse riding venues namely, the Shongweni Horse Riding Club &amp; the Summerveld Horse Riding Academy, makes Assagay Lodge a perfect home away from home for the equestrian lovers. The peace &amp; tranquility will take you far away from the business of city life. Evenings are quiet and peaceful. This is a unique and memorable country experience.</p>\r\n[/fusion_text][/one_half][one_half last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][fusion_text]\r\n<p style=\"text-align: justify;\">We are a homely \'down to earth\' country guest lodge, set on a farm surrounded by acres of beautiful hills, forests, &amp; dams in the Madwala Conservancy of Assagay, where horses still have the right of way on all roads. Our five bedrooms have a rustic charm offering the comforts of modern day life.</p>\r\n<p style=\"text-align: justify;\">Assagay Forest Lodge is owner managed, built in 2005 the lodge provides 5 cozy bedrooms with a large spacious and comfortable homely lounge, which leads onto a large deck area. Set on a 6 acre property in the Assagay Conservancy our lodge is nestled around trees, bushes, and beautiful gardens and a stream, allowing visitors to meander and relax. Guests seeking a quite, relaxing, homely experience will find our lodge the perfect choice away from home. There is a kitchen available should you wish to muster up a snack or quick meal, however breakfast is available on request.</p>\r\n[/fusion_text][/one_half][/fullwidth][fullwidth background_color=\"#f0f0ed\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"60px\" padding_bottom=\"45px\" padding_left=\"0px\" padding_right=\"0px\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][fusion_text]\r\n<h1 style=\"text-align: center;\">Gallery</h1>\r\n[/fusion_text][separator style_type=\"single\" top_margin=\"\" bottom_margin=\"40\" sep_color=\"#000000\" border_size=\"\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"170px\" alignment=\"\" class=\"\" id=\"\"][one_sixth last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][/one_sixth][two_third last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][fusion_text]\r\n<h3 style=\"text-align: center;\">The Lodge is open, spacious, comfortable and homely.</h3>\r\n[/fusion_text][/two_third][one_sixth last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][/one_sixth][/fullwidth][fullwidth background_color=\"#f0f0ed\" background_image=\"http://localhost/assagaylodge/wp-content/uploads/2015/09/DSC01487.jpg\" background_parallax=\"fixed\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"20\" padding_bottom=\"20\" padding_left=\"0\" padding_right=\"0\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][recent_works layout=\"grid\" picture_size=\"auto\" boxed_text=\"unboxed\" filters=\"no\" columns=\"3\" column_spacing=\"12\" cat_slug=\"the-lodge\" exclude_cats=\"\" number_posts=\"9\" offset=\"\" excerpt_length=\"35\" strip_html=\"yes\" carousel_layout=\"title_on_rollover\" scroll_items=\"\" autoplay=\"no\" show_nav=\"yes\" mouse_scroll=\"no\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" class=\"\" id=\"\"][/recent_works][/fullwidth][fullwidth background_color=\"#f0f0ed\" background_image=\"\" background_parallax=\"fixed\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"60px\" padding_bottom=\"35px\" padding_left=\"0px\" padding_right=\"0px\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][fusion_text]\r\n<h1 style=\"text-align: center;\">BEDROOMS</h1>\r\n[/fusion_text][separator style_type=\"single\" top_margin=\"\" bottom_margin=\"20\" sep_color=\"#000000\" border_size=\"\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"170px\" alignment=\"\" class=\"\" id=\"\"][one_sixth last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][/one_sixth][two_third last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][fusion_text]\r\n<h3 style=\"text-align: justify;\">When it comes to our bedrooms we’re proud to say we’re different. We offer something a little more special.</h3>\r\n<h3 style=\"text-align: justify;\">Our five bedrooms are all en-suite and equipped with either king size or queen size beds. Each room sleeps two guests. The rooms have high ceilings, wall heaters &amp; ceiling fans. Beds all have electric blankets in Winter, 100% cotton percale sheets and thick hyper allergenic microfiber duvets and pillows.</h3>\r\n[/fusion_text][/two_third][one_sixth last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][/one_sixth][/fullwidth][fullwidth background_color=\"\" background_image=\"http://localhost/assagaylodge/wp-content/uploads/2015/01/DSC01516-1148-x-764.jpg\" background_parallax=\"fixed\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"center center\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"60\" padding_bottom=\"20\" padding_left=\"0\" padding_right=\"0\" hundred_percent=\"no\" equal_height_columns=\"yes\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][recent_works layout=\"grid\" picture_size=\"auto\" boxed_text=\"unboxed\" filters=\"no\" columns=\"3\" column_spacing=\"12\" cat_slug=\"bedrooms\" exclude_cats=\"\" number_posts=\"6\" offset=\"\" excerpt_length=\"35\" strip_html=\"yes\" carousel_layout=\"title_on_rollover\" scroll_items=\"\" autoplay=\"no\" show_nav=\"yes\" mouse_scroll=\"no\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" class=\"\" id=\"\"][/recent_works][/fullwidth][fullwidth background_color=\"#f0f0ed\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"20\" padding_bottom=\"20\" padding_left=\"0\" padding_right=\"0\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][fusion_text]\r\n<h1 style=\"text-align: center;\">GARDENS</h1>\r\n[/fusion_text][separator style_type=\"none\" top_margin=\"40\" bottom_margin=\"\" sep_color=\"\" border_size=\"\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"100%\" alignment=\"center\" class=\"\" id=\"\"][one_sixth last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][/one_sixth][two_third last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][fusion_text]\r\n<h3 style=\"text-align: center;\">Walk &amp; relax in our beautiful gardens.</h3>\r\n[/fusion_text][/two_third][one_sixth last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][/one_sixth][recent_works layout=\"grid\" picture_size=\"auto\" boxed_text=\"boxed\" filters=\"no\" columns=\"3\" column_spacing=\"12\" cat_slug=\"gardens\" exclude_cats=\"\" number_posts=\"9\" offset=\"\" excerpt_length=\"35\" strip_html=\"yes\" carousel_layout=\"title_on_rollover\" scroll_items=\"\" autoplay=\"no\" show_nav=\"yes\" mouse_scroll=\"no\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" class=\"\" id=\"\"][/recent_works][/fullwidth][fullwidth background_color=\"#ffffff\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"65px\" padding_bottom=\"65px\" padding_left=\"0px\" padding_right=\"0px\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][button link=\"http://localhost/assagaylodge/book-now/\" color=\"default\" size=\"xlarge\" type=\"3d\" shape=\"round\" target=\"_self\" title=\"\" gradient_colors=\"#f0f0ed|#f0f0ed\" gradient_hover_colors=\"#6666a4|#6666a4\" accent_color=\"#ffffff\" accent_hover_color=\"#ffffff\" bevel_color=\"\" border_width=\"0px\" icon=\"\" icon_position=\"left\" icon_divider=\"no\" modal=\"\" animation_type=\"0\" animation_direction=\"left\" animation_speed=\"1\" alignment=\"center\" class=\"\" id=\"\"]Make A Reservation Enquiry[/button][/fullwidth]', 'Home', '', 'inherit', 'closed', 'closed', '', '7-revision-v1', '', '', '2015-09-10 11:51:14', '2015-09-10 09:51:14', '', 7, 'http://localhost/assagaylodge/7-revision-v1/', 0, 'revision', '', 0),
(1023, 1, '2015-09-10 11:54:01', '2015-09-10 09:54:01', '[fullwidth background_color=\"#f0f0ed\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"90px\" padding_bottom=\"0px\" padding_left=\"0px\" padding_right=\"0px\" hundred_percent=\"yes\" equal_height_columns=\"yes\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][one_half last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"http://localhost/assagaylodge/wp-content/uploads/2015/08/Tha-Lodge.jpg\" background_repeat=\"no-repeat\" background_position=\"center center\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" class=\"\" id=\"\"][/one_half][one_half last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"30px\" margin_top=\"\" margin_bottom=\"0px\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" class=\"special\" id=\"\"][fusion_text]\r\n<h1>5 BEDROOM FAMILY LODGE</h1>\r\n[/fusion_text][separator style_type=\"single\" top_margin=\"0\" bottom_margin=\"30\" sep_color=\"#000000\" border_size=\"\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"170px\" alignment=\"left\" class=\"separator-left\" id=\"\"][checklist icon=\"fa-star-o\" iconcolor=\"\" circle=\"\" circlecolor=\"\" size=\"13px\" class=\"\" id=\"\"][li_item icon=\"\"]Self-Catering: Single R650 per night Sharing R990 per couple per night[/li_item][li_item icon=\"\"]Service Options: Yes/No[/li_item][li_item icon=\"\"]Bed &amp; Breakfast: Single R725 per night Sharing R1140 per couple per night[/li_item][/checklist][/one_half][/fullwidth][fullwidth background_color=\"#f0f0ed\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"20\" padding_bottom=\"20\" padding_left=\"0px\" padding_right=\"0px\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][one_half last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][fusion_text]\r\n<p style=\"text-align: justify;\">The property boasts over 200 different species of birds and animals. The Lodge is situated on the 1000 Hills tourism route, on the edge of Hillcrest and is a perfect place from which one can launch to any one of the many fantastic destinations and game reserves in KwaZulu Natal, i.e. the Majestic Drakensberg Mountain Range, Shongweni Nature Reserve, Nagle Dam, Durban &amp; Beach Front. We are also the doorstep of one of KZN’s major horse riding venues namely, the Shongweni Horse Riding Club &amp; the Summerveld Horse Riding Academy, makes Assagay Lodge a perfect home away from home for the equestrian lovers. The peace &amp; tranquility will take you far away from the business of city life. Evenings are quiet and peaceful. This is a unique and memorable country experience.</p>\r\n[/fusion_text][/one_half][one_half last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][fusion_text]\r\n<p style=\"text-align: justify;\">We are a homely \'down to earth\' country guest lodge, set on a farm surrounded by acres of beautiful hills, forests, &amp; dams in the Madwala Conservancy of Assagay, where horses still have the right of way on all roads. Our five bedrooms have a rustic charm offering the comforts of modern day life.</p>\r\n<p style=\"text-align: justify;\">Assagay Forest Lodge is owner managed, built in 2005 the lodge provides 5 cozy bedrooms with a large spacious and comfortable homely lounge, which leads onto a large deck area. Set on a 6 acre property in the Assagay Conservancy our lodge is nestled around trees, bushes, and beautiful gardens and a stream, allowing visitors to meander and relax. Guests seeking a quite, relaxing, homely experience will find our lodge the perfect choice away from home. There is a kitchen available should you wish to muster up a snack or quick meal, however breakfast is available on request.</p>\r\n[/fusion_text][/one_half][/fullwidth][fullwidth background_color=\"#f0f0ed\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"20\" padding_bottom=\"20\" padding_left=\"0px\" padding_right=\"0px\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][fusion_text]\r\n<h1 style=\"text-align: center;\">Gallery</h1>\r\n[/fusion_text][separator style_type=\"single\" top_margin=\"\" bottom_margin=\"40\" sep_color=\"#000000\" border_size=\"\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"170px\" alignment=\"\" class=\"\" id=\"\"][one_sixth last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][/one_sixth][two_third last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][fusion_text]\r\n<h3 style=\"text-align: center;\">The Lodge is open, spacious, comfortable and homely.</h3>\r\n[/fusion_text][/two_third][one_sixth last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][/one_sixth][/fullwidth][fullwidth background_color=\"#f0f0ed\" background_image=\"http://localhost/assagaylodge/wp-content/uploads/2015/09/DSC01487.jpg\" background_parallax=\"fixed\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"20\" padding_bottom=\"20\" padding_left=\"0\" padding_right=\"0\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][recent_works layout=\"grid\" picture_size=\"auto\" boxed_text=\"unboxed\" filters=\"no\" columns=\"3\" column_spacing=\"12\" cat_slug=\"the-lodge\" exclude_cats=\"\" number_posts=\"9\" offset=\"\" excerpt_length=\"35\" strip_html=\"yes\" carousel_layout=\"title_on_rollover\" scroll_items=\"\" autoplay=\"no\" show_nav=\"yes\" mouse_scroll=\"no\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" class=\"\" id=\"\"][/recent_works][/fullwidth][fullwidth background_color=\"#f0f0ed\" background_image=\"\" background_parallax=\"fixed\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"20\" padding_bottom=\"20\" padding_left=\"0px\" padding_right=\"0px\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][fusion_text]\r\n<h1 style=\"text-align: center;\">BEDROOMS</h1>\r\n[/fusion_text][separator style_type=\"single\" top_margin=\"\" bottom_margin=\"20\" sep_color=\"#000000\" border_size=\"\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"170px\" alignment=\"\" class=\"\" id=\"\"][one_sixth last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][/one_sixth][two_third last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][fusion_text]\r\n<h3 style=\"text-align: justify;\">When it comes to our bedrooms we’re proud to say we’re different. We offer something a little more special.</h3>\r\n<h3 style=\"text-align: justify;\">Our five bedrooms are all en-suite and equipped with either king size or queen size beds. Each room sleeps two guests. The rooms have high ceilings, wall heaters &amp; ceiling fans. Beds all have electric blankets in Winter, 100% cotton percale sheets and thick hyper allergenic microfiber duvets and pillows.</h3>\r\n[/fusion_text][/two_third][one_sixth last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][/one_sixth][/fullwidth][fullwidth background_color=\"\" background_image=\"http://localhost/assagaylodge/wp-content/uploads/2015/01/DSC01516-1148-x-764.jpg\" background_parallax=\"fixed\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"center center\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"20\" padding_bottom=\"20\" padding_left=\"0\" padding_right=\"0\" hundred_percent=\"no\" equal_height_columns=\"yes\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][recent_works layout=\"grid\" picture_size=\"auto\" boxed_text=\"unboxed\" filters=\"no\" columns=\"3\" column_spacing=\"12\" cat_slug=\"bedrooms\" exclude_cats=\"\" number_posts=\"6\" offset=\"\" excerpt_length=\"35\" strip_html=\"yes\" carousel_layout=\"title_on_rollover\" scroll_items=\"\" autoplay=\"no\" show_nav=\"yes\" mouse_scroll=\"no\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" class=\"\" id=\"\"][/recent_works][/fullwidth][fullwidth background_color=\"#f0f0ed\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"20\" padding_bottom=\"20\" padding_left=\"0\" padding_right=\"0\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][fusion_text]\r\n<h1 style=\"text-align: center;\">GARDENS</h1>\r\n[/fusion_text][separator style_type=\"none\" top_margin=\"40\" bottom_margin=\"\" sep_color=\"\" border_size=\"\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"100%\" alignment=\"center\" class=\"\" id=\"\"][one_sixth last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][/one_sixth][two_third last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][fusion_text]\r\n<h3 style=\"text-align: center;\">Walk &amp; relax in our beautiful gardens.</h3>\r\n[/fusion_text][/two_third][one_sixth last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][/one_sixth][recent_works layout=\"grid\" picture_size=\"auto\" boxed_text=\"boxed\" filters=\"no\" columns=\"3\" column_spacing=\"12\" cat_slug=\"gardens\" exclude_cats=\"\" number_posts=\"9\" offset=\"\" excerpt_length=\"35\" strip_html=\"yes\" carousel_layout=\"title_on_rollover\" scroll_items=\"\" autoplay=\"no\" show_nav=\"yes\" mouse_scroll=\"no\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" class=\"\" id=\"\"][/recent_works][/fullwidth][fullwidth background_color=\"#ffffff\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"65px\" padding_bottom=\"65px\" padding_left=\"0px\" padding_right=\"0px\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][button link=\"http://localhost/assagaylodge/book-now/\" color=\"default\" size=\"xlarge\" type=\"3d\" shape=\"round\" target=\"_self\" title=\"\" gradient_colors=\"#f0f0ed|#f0f0ed\" gradient_hover_colors=\"#6666a4|#6666a4\" accent_color=\"#ffffff\" accent_hover_color=\"#ffffff\" bevel_color=\"\" border_width=\"0px\" icon=\"\" icon_position=\"left\" icon_divider=\"no\" modal=\"\" animation_type=\"0\" animation_direction=\"left\" animation_speed=\"1\" alignment=\"center\" class=\"\" id=\"\"]Make A Reservation Enquiry[/button][/fullwidth]', 'Home', '', 'inherit', 'closed', 'closed', '', '7-revision-v1', '', '', '2015-09-10 11:54:01', '2015-09-10 09:54:01', '', 7, 'http://localhost/assagaylodge/7-revision-v1/', 0, 'revision', '', 0);
INSERT INTO `wp_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(1024, 1, '2015-09-10 11:57:33', '2015-09-10 09:57:33', '[fullwidth background_color=\"#f0f0ed\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"90px\" padding_bottom=\"0px\" padding_left=\"0px\" padding_right=\"0px\" hundred_percent=\"yes\" equal_height_columns=\"yes\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][one_half last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"http://localhost/assagaylodge/wp-content/uploads/2015/08/Tha-Lodge.jpg\" background_repeat=\"no-repeat\" background_position=\"center center\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" class=\"\" id=\"\"][/one_half][one_half last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"30px\" margin_top=\"\" margin_bottom=\"0px\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" class=\"special\" id=\"\"][fusion_text]\r\n<h1>5 BEDROOM FAMILY LODGE</h1>\r\n[/fusion_text][separator style_type=\"single\" top_margin=\"0\" bottom_margin=\"30\" sep_color=\"#000000\" border_size=\"\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"170px\" alignment=\"left\" class=\"separator-left\" id=\"\"][checklist icon=\"fa-star-o\" iconcolor=\"\" circle=\"\" circlecolor=\"\" size=\"13px\" class=\"\" id=\"\"][li_item icon=\"\"]Self-Catering: Single R650 per night Sharing R990 per couple per night[/li_item][li_item icon=\"\"]Service Options: Yes/No[/li_item][li_item icon=\"\"]Bed &amp; Breakfast: Single R725 per night Sharing R1140 per couple per night[/li_item][/checklist][/one_half][/fullwidth][fullwidth background_color=\"#f0f0ed\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"20\" padding_bottom=\"20\" padding_left=\"0px\" padding_right=\"0px\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][one_half last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][fusion_text]\r\n<p style=\"text-align: justify;\">The property boasts over 200 different species of birds and animals. The Lodge is situated on the 1000 Hills tourism route, on the edge of Hillcrest and is a perfect place from which one can launch to any one of the many fantastic destinations and game reserves in KwaZulu Natal, i.e. the Majestic Drakensberg Mountain Range, Shongweni Nature Reserve, Nagle Dam, Durban &amp; Beach Front. We are also the doorstep of one of KZN’s major horse riding venues namely, the Shongweni Horse Riding Club &amp; the Summerveld Horse Riding Academy, makes Assagay Lodge a perfect home away from home for the equestrian lovers. The peace &amp; tranquility will take you far away from the business of city life. Evenings are quiet and peaceful. This is a unique and memorable country experience.</p>\r\n[/fusion_text][/one_half][one_half last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][fusion_text]\r\n<p style=\"text-align: justify;\">We are a homely \'down to earth\' country guest lodge, set on a farm surrounded by acres of beautiful hills, forests, &amp; dams in the Madwala Conservancy of Assagay, where horses still have the right of way on all roads. Our five bedrooms have a rustic charm offering the comforts of modern day life.</p>\r\n<p style=\"text-align: justify;\">Assagay Forest Lodge is owner managed, built in 2005 the lodge provides 5 cozy bedrooms with a large spacious and comfortable homely lounge, which leads onto a large deck area. Set on a 6 acre property in the Assagay Conservancy our lodge is nestled around trees, bushes, and beautiful gardens and a stream, allowing visitors to meander and relax. Guests seeking a quite, relaxing, homely experience will find our lodge the perfect choice away from home. There is a kitchen available should you wish to muster up a snack or quick meal, however breakfast is available on request.</p>\r\n[/fusion_text][/one_half][/fullwidth][fullwidth background_color=\"#f0f0ed\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"20\" padding_bottom=\"20\" padding_left=\"0px\" padding_right=\"0px\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][fusion_text]\r\n<h1 style=\"text-align: center;\">Gallery</h1>\r\n[/fusion_text][separator style_type=\"single\" top_margin=\"\" bottom_margin=\"40\" sep_color=\"#000000\" border_size=\"\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"170px\" alignment=\"\" class=\"\" id=\"\"][one_sixth last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][/one_sixth][two_third last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][fusion_text]\r\n<h3 style=\"text-align: center;\">The Lodge is open, spacious, comfortable and homely.</h3>\r\n[/fusion_text][/two_third][one_sixth last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][/one_sixth][/fullwidth][fullwidth background_color=\"#f0f0ed\" background_image=\"http://localhost/assagaylodge/wp-content/uploads/2015/09/DSC01487.jpg\" background_parallax=\"fixed\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"30\" padding_bottom=\"10\" padding_left=\"0\" padding_right=\"0\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][recent_works layout=\"grid\" picture_size=\"auto\" boxed_text=\"unboxed\" filters=\"no\" columns=\"3\" column_spacing=\"12\" cat_slug=\"the-lodge\" exclude_cats=\"\" number_posts=\"9\" offset=\"\" excerpt_length=\"35\" strip_html=\"yes\" carousel_layout=\"title_on_rollover\" scroll_items=\"\" autoplay=\"no\" show_nav=\"yes\" mouse_scroll=\"no\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" class=\"\" id=\"\"][/recent_works][/fullwidth][fullwidth background_color=\"#f0f0ed\" background_image=\"\" background_parallax=\"fixed\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"20\" padding_bottom=\"20\" padding_left=\"0px\" padding_right=\"0px\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][fusion_text]\r\n<h1 style=\"text-align: center;\">BEDROOMS</h1>\r\n[/fusion_text][separator style_type=\"single\" top_margin=\"\" bottom_margin=\"20\" sep_color=\"#000000\" border_size=\"\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"170px\" alignment=\"\" class=\"\" id=\"\"][one_sixth last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][/one_sixth][two_third last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][fusion_text]\r\n<h3 style=\"text-align: justify;\">When it comes to our bedrooms we’re proud to say we’re different. We offer something a little more special.</h3>\r\n<h3 style=\"text-align: justify;\">Our five bedrooms are all en-suite and equipped with either king size or queen size beds. Each room sleeps two guests. The rooms have high ceilings, wall heaters &amp; ceiling fans. Beds all have electric blankets in Winter, 100% cotton percale sheets and thick hyper allergenic microfiber duvets and pillows.</h3>\r\n[/fusion_text][/two_third][one_sixth last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][/one_sixth][/fullwidth][fullwidth background_color=\"\" background_image=\"http://localhost/assagaylodge/wp-content/uploads/2015/01/DSC01516-1148-x-764.jpg\" background_parallax=\"fixed\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"center center\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"20\" padding_bottom=\"20\" padding_left=\"0\" padding_right=\"0\" hundred_percent=\"no\" equal_height_columns=\"yes\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][recent_works layout=\"grid\" picture_size=\"auto\" boxed_text=\"unboxed\" filters=\"no\" columns=\"3\" column_spacing=\"12\" cat_slug=\"bedrooms\" exclude_cats=\"\" number_posts=\"6\" offset=\"\" excerpt_length=\"35\" strip_html=\"yes\" carousel_layout=\"title_on_rollover\" scroll_items=\"\" autoplay=\"no\" show_nav=\"yes\" mouse_scroll=\"no\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" class=\"\" id=\"\"][/recent_works][/fullwidth][fullwidth background_color=\"#f0f0ed\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"20\" padding_bottom=\"20\" padding_left=\"0\" padding_right=\"0\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][fusion_text]\r\n<h1 style=\"text-align: center;\">GARDENS</h1>\r\n[/fusion_text][separator style_type=\"none\" top_margin=\"40\" bottom_margin=\"\" sep_color=\"\" border_size=\"\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"100%\" alignment=\"center\" class=\"\" id=\"\"][one_sixth last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][/one_sixth][two_third last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][fusion_text]\r\n<h3 style=\"text-align: center;\">Walk &amp; relax in our beautiful gardens.</h3>\r\n[/fusion_text][/two_third][one_sixth last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][/one_sixth][recent_works layout=\"grid\" picture_size=\"auto\" boxed_text=\"boxed\" filters=\"no\" columns=\"3\" column_spacing=\"12\" cat_slug=\"gardens\" exclude_cats=\"\" number_posts=\"9\" offset=\"\" excerpt_length=\"35\" strip_html=\"yes\" carousel_layout=\"title_on_rollover\" scroll_items=\"\" autoplay=\"no\" show_nav=\"yes\" mouse_scroll=\"no\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" class=\"\" id=\"\"][/recent_works][/fullwidth][fullwidth background_color=\"#ffffff\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"65px\" padding_bottom=\"65px\" padding_left=\"0px\" padding_right=\"0px\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][button link=\"http://localhost/assagaylodge/book-now/\" color=\"default\" size=\"xlarge\" type=\"3d\" shape=\"round\" target=\"_self\" title=\"\" gradient_colors=\"#f0f0ed|#f0f0ed\" gradient_hover_colors=\"#6666a4|#6666a4\" accent_color=\"#ffffff\" accent_hover_color=\"#ffffff\" bevel_color=\"\" border_width=\"0px\" icon=\"\" icon_position=\"left\" icon_divider=\"no\" modal=\"\" animation_type=\"0\" animation_direction=\"left\" animation_speed=\"1\" alignment=\"center\" class=\"\" id=\"\"]Make A Reservation Enquiry[/button][/fullwidth]', 'Home', '', 'inherit', 'closed', 'closed', '', '7-revision-v1', '', '', '2015-09-10 11:57:33', '2015-09-10 09:57:33', '', 7, 'http://localhost/assagaylodge/7-revision-v1/', 0, 'revision', '', 0),
(1025, 1, '2015-09-10 13:41:27', '2015-09-10 11:41:27', '[fullwidth background_color=\"#f0f0ed\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"90px\" padding_bottom=\"0px\" padding_left=\"0px\" padding_right=\"0px\" hundred_percent=\"yes\" equal_height_columns=\"yes\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][one_half last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"http://localhost/assagaylodge/wp-content/uploads/2015/08/Tha-Lodge.jpg\" background_repeat=\"no-repeat\" background_position=\"center center\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" class=\"\" id=\"\"][/one_half][one_half last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"30px\" margin_top=\"\" margin_bottom=\"0px\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" class=\"special\" id=\"\"][fusion_text]\r\n<h1>5 BEDROOM FAMILY LODGE</h1>\r\n[/fusion_text][separator style_type=\"single\" top_margin=\"0\" bottom_margin=\"30\" sep_color=\"#000000\" border_size=\"\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"170px\" alignment=\"left\" class=\"separator-left\" id=\"\"][checklist icon=\"fa-star-o\" iconcolor=\"\" circle=\"\" circlecolor=\"\" size=\"13px\" class=\"\" id=\"\"][li_item icon=\"\"]Self-Catering: Single R650 per night Sharing R990 per couple per night[/li_item][li_item icon=\"\"]Service Options: Yes/No[/li_item][li_item icon=\"\"]Bed &amp; Breakfast: Single R725 per night Sharing R1140 per couple per night[/li_item][/checklist][/one_half][/fullwidth][menu_anchor name=\"LODGE\"][fullwidth background_color=\"#f0f0ed\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"20\" padding_bottom=\"20\" padding_left=\"0px\" padding_right=\"0px\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][one_half last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][fusion_text]\r\n<p style=\"text-align: justify;\">The property boasts over 200 different species of birds and animals. The Lodge is situated on the 1000 Hills tourism route, on the edge of Hillcrest and is a perfect place from which one can launch to any one of the many fantastic destinations and game reserves in KwaZulu Natal, i.e. the Majestic Drakensberg Mountain Range, Shongweni Nature Reserve, Nagle Dam, Durban &amp; Beach Front. We are also the doorstep of one of KZN’s major horse riding venues namely, the Shongweni Horse Riding Club &amp; the Summerveld Horse Riding Academy, makes Assagay Lodge a perfect home away from home for the equestrian lovers. The peace &amp; tranquility will take you far away from the business of city life. Evenings are quiet and peaceful. This is a unique and memorable country experience.</p>\r\n[/fusion_text][/one_half][one_half last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][fusion_text]\r\n<p style=\"text-align: justify;\">We are a homely \'down to earth\' country guest lodge, set on a farm surrounded by acres of beautiful hills, forests, &amp; dams in the Madwala Conservancy of Assagay, where horses still have the right of way on all roads. Our five bedrooms have a rustic charm offering the comforts of modern day life.</p>\r\n<p style=\"text-align: justify;\">Assagay Forest Lodge is owner managed, built in 2005 the lodge provides 5 cozy bedrooms with a large spacious and comfortable homely lounge, which leads onto a large deck area. Set on a 6 acre property in the Assagay Conservancy our lodge is nestled around trees, bushes, and beautiful gardens and a stream, allowing visitors to meander and relax. Guests seeking a quite, relaxing, homely experience will find our lodge the perfect choice away from home. There is a kitchen available should you wish to muster up a snack or quick meal, however breakfast is available on request.</p>\r\n[/fusion_text][/one_half][/fullwidth][fullwidth background_color=\"#f0f0ed\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"20\" padding_bottom=\"20\" padding_left=\"0px\" padding_right=\"0px\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][fusion_text]\r\n<h1 style=\"text-align: center;\">Gallery</h1>\r\n[/fusion_text][separator style_type=\"single\" top_margin=\"\" bottom_margin=\"40\" sep_color=\"#000000\" border_size=\"\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"170px\" alignment=\"\" class=\"\" id=\"\"][one_sixth last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][/one_sixth][two_third last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][fusion_text]\r\n<h3 style=\"text-align: center;\">The Lodge is open, spacious, comfortable and homely.</h3>\r\n[/fusion_text][/two_third][one_sixth last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][/one_sixth][/fullwidth][fullwidth background_color=\"#f0f0ed\" background_image=\"http://localhost/assagaylodge/wp-content/uploads/2015/09/DSC01487.jpg\" background_parallax=\"fixed\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"30\" padding_bottom=\"10\" padding_left=\"0\" padding_right=\"0\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][recent_works layout=\"grid\" picture_size=\"auto\" boxed_text=\"unboxed\" filters=\"no\" columns=\"3\" column_spacing=\"12\" cat_slug=\"the-lodge\" exclude_cats=\"\" number_posts=\"9\" offset=\"\" excerpt_length=\"35\" strip_html=\"yes\" carousel_layout=\"title_on_rollover\" scroll_items=\"\" autoplay=\"no\" show_nav=\"yes\" mouse_scroll=\"no\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" class=\"\" id=\"\"][/recent_works][/fullwidth][fullwidth background_color=\"#f0f0ed\" background_image=\"\" background_parallax=\"fixed\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"20\" padding_bottom=\"20\" padding_left=\"0px\" padding_right=\"0px\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][menu_anchor name=\"BEDROOMS\"][fusion_text]\r\n<h1 style=\"text-align: center;\">BEDROOMS</h1>\r\n[/fusion_text][separator style_type=\"single\" top_margin=\"\" bottom_margin=\"20\" sep_color=\"#000000\" border_size=\"\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"170px\" alignment=\"\" class=\"\" id=\"\"][one_sixth last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][/one_sixth][two_third last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][fusion_text]\r\n<h3 style=\"text-align: justify;\">When it comes to our bedrooms we’re proud to say we’re different. We offer something a little more special.</h3>\r\n<h3 style=\"text-align: justify;\">Our five bedrooms are all en-suite and equipped with either king size or queen size beds. Each room sleeps two guests. The rooms have high ceilings, wall heaters &amp; ceiling fans. Beds all have electric blankets in Winter, 100% cotton percale sheets and thick hyper allergenic microfiber duvets and pillows.</h3>\r\n[/fusion_text][/two_third][one_sixth last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][/one_sixth][/fullwidth][fullwidth background_color=\"\" background_image=\"http://localhost/assagaylodge/wp-content/uploads/2015/01/DSC01516-1148-x-764.jpg\" background_parallax=\"fixed\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"center center\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"20\" padding_bottom=\"20\" padding_left=\"0\" padding_right=\"0\" hundred_percent=\"no\" equal_height_columns=\"yes\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][recent_works layout=\"grid\" picture_size=\"auto\" boxed_text=\"unboxed\" filters=\"no\" columns=\"3\" column_spacing=\"12\" cat_slug=\"bedrooms\" exclude_cats=\"\" number_posts=\"6\" offset=\"\" excerpt_length=\"35\" strip_html=\"yes\" carousel_layout=\"title_on_rollover\" scroll_items=\"\" autoplay=\"no\" show_nav=\"yes\" mouse_scroll=\"no\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" class=\"\" id=\"\"][/recent_works][/fullwidth][fullwidth background_color=\"#f0f0ed\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"20\" padding_bottom=\"20\" padding_left=\"0\" padding_right=\"0\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][menu_anchor name=\"GARDENS\"][fusion_text]\r\n<h1 style=\"text-align: center;\">GARDENS</h1>\r\n[/fusion_text][separator style_type=\"none\" top_margin=\"40\" bottom_margin=\"\" sep_color=\"\" border_size=\"\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"100%\" alignment=\"center\" class=\"\" id=\"\"][one_sixth last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][/one_sixth][two_third last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][fusion_text]\r\n<h3 style=\"text-align: center;\">Walk &amp; relax in our beautiful gardens.</h3>\r\n[/fusion_text][/two_third][one_sixth last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][/one_sixth][recent_works layout=\"grid\" picture_size=\"auto\" boxed_text=\"boxed\" filters=\"no\" columns=\"3\" column_spacing=\"12\" cat_slug=\"gardens\" exclude_cats=\"\" number_posts=\"9\" offset=\"\" excerpt_length=\"35\" strip_html=\"yes\" carousel_layout=\"title_on_rollover\" scroll_items=\"\" autoplay=\"no\" show_nav=\"yes\" mouse_scroll=\"no\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" class=\"\" id=\"\"][/recent_works][/fullwidth][fullwidth background_color=\"#ffffff\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"65px\" padding_bottom=\"65px\" padding_left=\"0px\" padding_right=\"0px\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][button link=\"http://localhost/assagaylodge/book-now/\" color=\"default\" size=\"xlarge\" type=\"3d\" shape=\"round\" target=\"_self\" title=\"\" gradient_colors=\"#f0f0ed|#f0f0ed\" gradient_hover_colors=\"#6666a4|#6666a4\" accent_color=\"#ffffff\" accent_hover_color=\"#ffffff\" bevel_color=\"\" border_width=\"0px\" icon=\"\" icon_position=\"left\" icon_divider=\"no\" modal=\"\" animation_type=\"0\" animation_direction=\"left\" animation_speed=\"1\" alignment=\"center\" class=\"\" id=\"\"]Make A Reservation Enquiry[/button][/fullwidth]', 'Home', '', 'inherit', 'closed', 'closed', '', '7-revision-v1', '', '', '2015-09-10 13:41:27', '2015-09-10 11:41:27', '', 7, 'http://localhost/assagaylodge/7-revision-v1/', 0, 'revision', '', 0);
INSERT INTO `wp_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(1026, 1, '2015-09-10 13:59:54', '2015-09-10 11:59:54', '[fullwidth background_color=\"#f0f0ed\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"90px\" padding_bottom=\"0px\" padding_left=\"0px\" padding_right=\"0px\" hundred_percent=\"yes\" equal_height_columns=\"yes\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][one_half last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"http://localhost/assagaylodge/wp-content/uploads/2015/08/Tha-Lodge.jpg\" background_repeat=\"no-repeat\" background_position=\"center center\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" class=\"\" id=\"\"][/one_half][one_half last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"30px\" margin_top=\"\" margin_bottom=\"0px\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" class=\"special\" id=\"\"][fusion_text]\r\n<h1>5 BEDROOM FAMILY LODGE</h1>\r\n[/fusion_text][separator style_type=\"single\" top_margin=\"0\" bottom_margin=\"30\" sep_color=\"#000000\" border_size=\"\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"170px\" alignment=\"left\" class=\"separator-left\" id=\"\"][checklist icon=\"fa-star-o\" iconcolor=\"\" circle=\"\" circlecolor=\"\" size=\"13px\" class=\"\" id=\"\"][li_item icon=\"\"]Self-Catering: Single R650 per night Sharing R990 per couple per night[/li_item][li_item icon=\"\"]Service Options: Yes/No[/li_item][li_item icon=\"\"]Bed &amp; Breakfast: Single R725 per night Sharing R1140 per couple per night[/li_item][/checklist][modal name=\"rates\" title=\"2015 Rates\" size=\"small\" background=\"\" border_color=\"\" show_footer=\"yes\" class=\"\" id=\"\"][/modal][button link=\"\" color=\"darkgreen\" size=\"\" type=\"\" shape=\"\" target=\"_self\" title=\"\" gradient_colors=\"|\" gradient_hover_colors=\"|\" accent_color=\"\" accent_hover_color=\"\" bevel_color=\"\" border_width=\"1px\" icon=\"\" icon_position=\"left\" icon_divider=\"no\" modal=\"\" animation_type=\"0\" animation_direction=\"left\" animation_speed=\"1\" alignment=\"\" class=\"\" id=\"\"]Button Text[/button][/one_half][/fullwidth][menu_anchor name=\"LODGE\"][fullwidth background_color=\"#f0f0ed\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"20\" padding_bottom=\"20\" padding_left=\"0px\" padding_right=\"0px\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][one_half last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][fusion_text]\r\n<p style=\"text-align: justify;\">The property boasts over 200 different species of birds and animals. The Lodge is situated on the 1000 Hills tourism route, on the edge of Hillcrest and is a perfect place from which one can launch to any one of the many fantastic destinations and game reserves in KwaZulu Natal, i.e. the Majestic Drakensberg Mountain Range, Shongweni Nature Reserve, Nagle Dam, Durban &amp; Beach Front. We are also the doorstep of one of KZN’s major horse riding venues namely, the Shongweni Horse Riding Club &amp; the Summerveld Horse Riding Academy, makes Assagay Lodge a perfect home away from home for the equestrian lovers. The peace &amp; tranquility will take you far away from the business of city life. Evenings are quiet and peaceful. This is a unique and memorable country experience.</p>\r\n[/fusion_text][/one_half][one_half last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][fusion_text]\r\n<p style=\"text-align: justify;\">We are a homely \'down to earth\' country guest lodge, set on a farm surrounded by acres of beautiful hills, forests, &amp; dams in the Madwala Conservancy of Assagay, where horses still have the right of way on all roads. Our five bedrooms have a rustic charm offering the comforts of modern day life.</p>\r\n<p style=\"text-align: justify;\">Assagay Forest Lodge is owner managed, built in 2005 the lodge provides 5 cozy bedrooms with a large spacious and comfortable homely lounge, which leads onto a large deck area. Set on a 6 acre property in the Assagay Conservancy our lodge is nestled around trees, bushes, and beautiful gardens and a stream, allowing visitors to meander and relax. Guests seeking a quite, relaxing, homely experience will find our lodge the perfect choice away from home. There is a kitchen available should you wish to muster up a snack or quick meal, however breakfast is available on request.</p>\r\n[/fusion_text][/one_half][/fullwidth][fullwidth background_color=\"#f0f0ed\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"20\" padding_bottom=\"20\" padding_left=\"0px\" padding_right=\"0px\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][fusion_text]\r\n<h1 style=\"text-align: center;\">Gallery</h1>\r\n[/fusion_text][separator style_type=\"single\" top_margin=\"\" bottom_margin=\"40\" sep_color=\"#000000\" border_size=\"\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"170px\" alignment=\"\" class=\"\" id=\"\"][one_sixth last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][/one_sixth][two_third last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][fusion_text]\r\n<h3 style=\"text-align: center;\">The Lodge is open, spacious, comfortable and homely.</h3>\r\n[/fusion_text][/two_third][one_sixth last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][/one_sixth][/fullwidth][fullwidth background_color=\"#f0f0ed\" background_image=\"http://localhost/assagaylodge/wp-content/uploads/2015/09/DSC01487.jpg\" background_parallax=\"fixed\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"30\" padding_bottom=\"10\" padding_left=\"0\" padding_right=\"0\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][recent_works layout=\"grid\" picture_size=\"auto\" boxed_text=\"unboxed\" filters=\"no\" columns=\"3\" column_spacing=\"12\" cat_slug=\"the-lodge\" exclude_cats=\"\" number_posts=\"9\" offset=\"\" excerpt_length=\"35\" strip_html=\"yes\" carousel_layout=\"title_on_rollover\" scroll_items=\"\" autoplay=\"no\" show_nav=\"yes\" mouse_scroll=\"no\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" class=\"\" id=\"\"][/recent_works][/fullwidth][fullwidth background_color=\"#f0f0ed\" background_image=\"\" background_parallax=\"fixed\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"20\" padding_bottom=\"20\" padding_left=\"0px\" padding_right=\"0px\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][menu_anchor name=\"BEDROOMS\"][fusion_text]\r\n<h1 style=\"text-align: center;\">BEDROOMS</h1>\r\n[/fusion_text][separator style_type=\"single\" top_margin=\"\" bottom_margin=\"20\" sep_color=\"#000000\" border_size=\"\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"170px\" alignment=\"\" class=\"\" id=\"\"][one_sixth last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][/one_sixth][two_third last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][fusion_text]\r\n<h3 style=\"text-align: justify;\">When it comes to our bedrooms we’re proud to say we’re different. We offer something a little more special.</h3>\r\n<h3 style=\"text-align: justify;\">Our five bedrooms are all en-suite and equipped with either king size or queen size beds. Each room sleeps two guests. The rooms have high ceilings, wall heaters &amp; ceiling fans. Beds all have electric blankets in Winter, 100% cotton percale sheets and thick hyper allergenic microfiber duvets and pillows.</h3>\r\n[/fusion_text][/two_third][one_sixth last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][/one_sixth][/fullwidth][fullwidth background_color=\"\" background_image=\"http://localhost/assagaylodge/wp-content/uploads/2015/01/DSC01516-1148-x-764.jpg\" background_parallax=\"fixed\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"center center\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"20\" padding_bottom=\"20\" padding_left=\"0\" padding_right=\"0\" hundred_percent=\"no\" equal_height_columns=\"yes\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][recent_works layout=\"grid\" picture_size=\"auto\" boxed_text=\"unboxed\" filters=\"no\" columns=\"3\" column_spacing=\"12\" cat_slug=\"bedrooms\" exclude_cats=\"\" number_posts=\"6\" offset=\"\" excerpt_length=\"35\" strip_html=\"yes\" carousel_layout=\"title_on_rollover\" scroll_items=\"\" autoplay=\"no\" show_nav=\"yes\" mouse_scroll=\"no\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" class=\"\" id=\"\"][/recent_works][/fullwidth][fullwidth background_color=\"#f0f0ed\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"20\" padding_bottom=\"20\" padding_left=\"0\" padding_right=\"0\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][menu_anchor name=\"GARDENS\"][fusion_text]\r\n<h1 style=\"text-align: center;\">GARDENS</h1>\r\n[/fusion_text][separator style_type=\"none\" top_margin=\"40\" bottom_margin=\"\" sep_color=\"\" border_size=\"\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"100%\" alignment=\"center\" class=\"\" id=\"\"][one_sixth last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][/one_sixth][two_third last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][fusion_text]\r\n<h3 style=\"text-align: center;\">Walk &amp; relax in our beautiful gardens.</h3>\r\n[/fusion_text][/two_third][one_sixth last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][/one_sixth][recent_works layout=\"grid\" picture_size=\"auto\" boxed_text=\"boxed\" filters=\"no\" columns=\"3\" column_spacing=\"12\" cat_slug=\"gardens\" exclude_cats=\"\" number_posts=\"9\" offset=\"\" excerpt_length=\"35\" strip_html=\"yes\" carousel_layout=\"title_on_rollover\" scroll_items=\"\" autoplay=\"no\" show_nav=\"yes\" mouse_scroll=\"no\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" class=\"\" id=\"\"][/recent_works][/fullwidth][fullwidth background_color=\"#ffffff\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"65px\" padding_bottom=\"65px\" padding_left=\"0px\" padding_right=\"0px\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][button link=\"http://localhost/assagaylodge/book-now/\" color=\"default\" size=\"xlarge\" type=\"3d\" shape=\"round\" target=\"_self\" title=\"\" gradient_colors=\"#f0f0ed|#f0f0ed\" gradient_hover_colors=\"#6666a4|#6666a4\" accent_color=\"#ffffff\" accent_hover_color=\"#ffffff\" bevel_color=\"\" border_width=\"0px\" icon=\"\" icon_position=\"left\" icon_divider=\"no\" modal=\"\" animation_type=\"0\" animation_direction=\"left\" animation_speed=\"1\" alignment=\"center\" class=\"\" id=\"\"]Make A Reservation Enquiry[/button][/fullwidth][menu_anchor name=\"\"][modal name=\"\" title=\"\" size=\"\" background=\"\" border_color=\"\" show_footer=\"\" class=\"\" id=\"\"][/modal][modal name=\"\" title=\"\" size=\"\" background=\"\" border_color=\"\" show_footer=\"\" class=\"\" id=\"\"][/modal][modal name=\"\" title=\"\" size=\"\" background=\"\" border_color=\"\" show_footer=\"\" class=\"\" id=\"\"][/modal][modal name=\"\" title=\"\" size=\"\" background=\"\" border_color=\"\" show_footer=\"\" class=\"\" id=\"\"][/modal]', 'Home', '', 'inherit', 'closed', 'closed', '', '7-revision-v1', '', '', '2015-09-10 13:59:54', '2015-09-10 11:59:54', '', 7, 'http://localhost/assagaylodge/7-revision-v1/', 0, 'revision', '', 0),
(1027, 1, '2015-09-10 14:04:04', '2015-09-10 12:04:04', '[fullwidth background_color=\"#f0f0ed\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"90px\" padding_bottom=\"0px\" padding_left=\"0px\" padding_right=\"0px\" hundred_percent=\"yes\" equal_height_columns=\"yes\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][one_half last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"http://localhost/assagaylodge/wp-content/uploads/2015/08/Tha-Lodge.jpg\" background_repeat=\"no-repeat\" background_position=\"center center\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" class=\"\" id=\"\"][/one_half][one_half last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"30px\" margin_top=\"\" margin_bottom=\"0px\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" class=\"special\" id=\"\"][fusion_text]\r\n<h1>5 BEDROOM FAMILY LODGE</h1>\r\n[/fusion_text][separator style_type=\"single\" top_margin=\"0\" bottom_margin=\"30\" sep_color=\"#000000\" border_size=\"\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"170px\" alignment=\"left\" class=\"separator-left\" id=\"\"][checklist icon=\"fa-star-o\" iconcolor=\"\" circle=\"\" circlecolor=\"\" size=\"13px\" class=\"\" id=\"\"][li_item icon=\"\"]Self-Catering: Single R650 per night Sharing R990 per couple per night[/li_item][li_item icon=\"\"]Service Options: Yes/No[/li_item][li_item icon=\"\"]Bed &amp; Breakfast: Single R725 per night Sharing R1140 per couple per night[/li_item][/checklist][modal name=\"rates\" title=\"2015 Rates\" size=\"small\" background=\"\" border_color=\"\" show_footer=\"yes\" class=\"\" id=\"\"]Self-Catering: Single R650 per night Sharing R990 per couple per night.[/modal][button link=\"\" color=\"darkgreen\" size=\"\"  type=\"\" shape=\"\" target=\"_self\" title=\"\" gradient_colors=\"|\" gradient_hover_colors=\"|\" accent_color=\"\" accent_hover_color=\"\" bevel_color=\"\" border_width=\"1px\" icon=\"\" icon_position=\"left\" icon_divider=\"no\" modal=\"rates\" animation_type=\"0\" animation_direction=\"left\" animation_speed=\"1\" alignment=\"\" class=\"\" id=\"\"]2015 RATES[/button][/one_half][/fullwidth][menu_anchor name=\"LODGE\"][fullwidth background_color=\"#f0f0ed\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"20\" padding_bottom=\"20\" padding_left=\"0px\" padding_right=\"0px\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][one_half last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][fusion_text]\r\n<p style=\"text-align: justify;\">The property boasts over 200 different species of birds and animals. The Lodge is situated on the 1000 Hills tourism route, on the edge of Hillcrest and is a perfect place from which one can launch to any one of the many fantastic destinations and game reserves in KwaZulu Natal, i.e. the Majestic Drakensberg Mountain Range, Shongweni Nature Reserve, Nagle Dam, Durban &amp; Beach Front. We are also the doorstep of one of KZN’s major horse riding venues namely, the Shongweni Horse Riding Club &amp; the Summerveld Horse Riding Academy, makes Assagay Lodge a perfect home away from home for the equestrian lovers. The peace &amp; tranquility will take you far away from the business of city life. Evenings are quiet and peaceful. This is a unique and memorable country experience.</p>\r\n[/fusion_text][/one_half][one_half last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][fusion_text]\r\n<p style=\"text-align: justify;\">We are a homely \'down to earth\' country guest lodge, set on a farm surrounded by acres of beautiful hills, forests, &amp; dams in the Madwala Conservancy of Assagay, where horses still have the right of way on all roads. Our five bedrooms have a rustic charm offering the comforts of modern day life.</p>\r\n<p style=\"text-align: justify;\">Assagay Forest Lodge is owner managed, built in 2005 the lodge provides 5 cozy bedrooms with a large spacious and comfortable homely lounge, which leads onto a large deck area. Set on a 6 acre property in the Assagay Conservancy our lodge is nestled around trees, bushes, and beautiful gardens and a stream, allowing visitors to meander and relax. Guests seeking a quite, relaxing, homely experience will find our lodge the perfect choice away from home. There is a kitchen available should you wish to muster up a snack or quick meal, however breakfast is available on request.</p>\r\n[/fusion_text][/one_half][/fullwidth][fullwidth background_color=\"#f0f0ed\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"20\" padding_bottom=\"20\" padding_left=\"0px\" padding_right=\"0px\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][fusion_text]\r\n<h1 style=\"text-align: center;\">Gallery</h1>\r\n[/fusion_text][separator style_type=\"single\" top_margin=\"\" bottom_margin=\"40\" sep_color=\"#000000\" border_size=\"\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"170px\" alignment=\"\" class=\"\" id=\"\"][one_sixth last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][/one_sixth][two_third last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][fusion_text]\r\n<h3 style=\"text-align: center;\">The Lodge is open, spacious, comfortable and homely.</h3>\r\n[/fusion_text][/two_third][one_sixth last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][/one_sixth][/fullwidth][fullwidth background_color=\"#f0f0ed\" background_image=\"http://localhost/assagaylodge/wp-content/uploads/2015/09/DSC01487.jpg\" background_parallax=\"fixed\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"30\" padding_bottom=\"10\" padding_left=\"0\" padding_right=\"0\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][recent_works layout=\"grid\" picture_size=\"auto\" boxed_text=\"unboxed\" filters=\"no\" columns=\"3\" column_spacing=\"12\" cat_slug=\"the-lodge\" exclude_cats=\"\" number_posts=\"9\" offset=\"\" excerpt_length=\"35\" strip_html=\"yes\" carousel_layout=\"title_on_rollover\" scroll_items=\"\" autoplay=\"no\" show_nav=\"yes\" mouse_scroll=\"no\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" class=\"\" id=\"\"][/recent_works][/fullwidth][fullwidth background_color=\"#f0f0ed\" background_image=\"\" background_parallax=\"fixed\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"20\" padding_bottom=\"20\" padding_left=\"0px\" padding_right=\"0px\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][menu_anchor name=\"BEDROOMS\"][fusion_text]\r\n<h1 style=\"text-align: center;\">BEDROOMS</h1>\r\n[/fusion_text][separator style_type=\"single\" top_margin=\"\" bottom_margin=\"20\" sep_color=\"#000000\" border_size=\"\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"170px\" alignment=\"\" class=\"\" id=\"\"][one_sixth last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][/one_sixth][two_third last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][fusion_text]\r\n<h3 style=\"text-align: justify;\">When it comes to our bedrooms we’re proud to say we’re different. We offer something a little more special.</h3>\r\n<h3 style=\"text-align: justify;\">Our five bedrooms are all en-suite and equipped with either king size or queen size beds. Each room sleeps two guests. The rooms have high ceilings, wall heaters &amp; ceiling fans. Beds all have electric blankets in Winter, 100% cotton percale sheets and thick hyper allergenic microfiber duvets and pillows.</h3>\r\n[/fusion_text][/two_third][one_sixth last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][/one_sixth][/fullwidth][fullwidth background_color=\"\" background_image=\"http://localhost/assagaylodge/wp-content/uploads/2015/01/DSC01516-1148-x-764.jpg\" background_parallax=\"fixed\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"center center\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"20\" padding_bottom=\"20\" padding_left=\"0\" padding_right=\"0\" hundred_percent=\"no\" equal_height_columns=\"yes\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][recent_works layout=\"grid\" picture_size=\"auto\" boxed_text=\"unboxed\" filters=\"no\" columns=\"3\" column_spacing=\"12\" cat_slug=\"bedrooms\" exclude_cats=\"\" number_posts=\"6\" offset=\"\" excerpt_length=\"35\" strip_html=\"yes\" carousel_layout=\"title_on_rollover\" scroll_items=\"\" autoplay=\"no\" show_nav=\"yes\" mouse_scroll=\"no\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" class=\"\" id=\"\"][/recent_works][/fullwidth][fullwidth background_color=\"#f0f0ed\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"20\" padding_bottom=\"20\" padding_left=\"0\" padding_right=\"0\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][menu_anchor name=\"GARDENS\"][fusion_text]\r\n<h1 style=\"text-align: center;\">GARDENS</h1>\r\n[/fusion_text][separator style_type=\"none\" top_margin=\"40\" bottom_margin=\"\" sep_color=\"\" border_size=\"\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"100%\" alignment=\"center\" class=\"\" id=\"\"][one_sixth last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][/one_sixth][two_third last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][fusion_text]\r\n<h3 style=\"text-align: center;\">Walk &amp; relax in our beautiful gardens.</h3>\r\n[/fusion_text][/two_third][one_sixth last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][/one_sixth][recent_works layout=\"grid\" picture_size=\"auto\" boxed_text=\"boxed\" filters=\"no\" columns=\"3\" column_spacing=\"12\" cat_slug=\"gardens\" exclude_cats=\"\" number_posts=\"9\" offset=\"\" excerpt_length=\"35\" strip_html=\"yes\" carousel_layout=\"title_on_rollover\" scroll_items=\"\" autoplay=\"no\" show_nav=\"yes\" mouse_scroll=\"no\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" class=\"\" id=\"\"][/recent_works][/fullwidth][fullwidth background_color=\"#ffffff\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"65px\" padding_bottom=\"65px\" padding_left=\"0px\" padding_right=\"0px\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][button link=\"http://localhost/assagaylodge/book-now/\" color=\"default\" size=\"xlarge\"  type=\"3d\" shape=\"round\" target=\"_self\" title=\"\" gradient_colors=\"#f0f0ed|#f0f0ed\" gradient_hover_colors=\"#6666a4|#6666a4\" accent_color=\"#ffffff\" accent_hover_color=\"#ffffff\" bevel_color=\"\" border_width=\"0px\" icon=\"\" icon_position=\"left\" icon_divider=\"no\" modal=\"\" animation_type=\"0\" animation_direction=\"left\" animation_speed=\"1\" alignment=\"center\" class=\"\" id=\"\"]Make A Reservation Enquiry[/button][/fullwidth][menu_anchor name=\"\"][modal name=\"\" title=\"\" size=\"\" background=\"\" border_color=\"\" show_footer=\"\" class=\"\" id=\"\"][/modal][modal name=\"\" title=\"\" size=\"\" background=\"\" border_color=\"\" show_footer=\"\" class=\"\" id=\"\"][/modal][modal name=\"\" title=\"\" size=\"\" background=\"\" border_color=\"\" show_footer=\"\" class=\"\" id=\"\"][/modal][modal name=\"\" title=\"\" size=\"\" background=\"\" border_color=\"\" show_footer=\"\" class=\"\" id=\"\"][/modal]', 'Home', '', 'inherit', 'closed', 'closed', '', '7-revision-v1', '', '', '2015-09-10 14:04:04', '2015-09-10 12:04:04', '', 7, 'http://localhost/assagaylodge/7-revision-v1/', 0, 'revision', '', 0);
INSERT INTO `wp_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(1028, 1, '2015-09-10 14:10:10', '2015-09-10 12:10:10', '[fullwidth background_color=\"#f0f0ed\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"90px\" padding_bottom=\"0px\" padding_left=\"0px\" padding_right=\"0px\" hundred_percent=\"yes\" equal_height_columns=\"yes\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][one_half last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"http://localhost/assagaylodge/wp-content/uploads/2015/08/Tha-Lodge.jpg\" background_repeat=\"no-repeat\" background_position=\"center center\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" class=\"\" id=\"\"][/one_half][one_half last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"30px\" margin_top=\"\" margin_bottom=\"0px\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" class=\"special\" id=\"\"][fusion_text]\r\n<h1>5 BEDROOM FAMILY LODGE</h1>\r\n[/fusion_text][separator style_type=\"single\" top_margin=\"0\" bottom_margin=\"30\" sep_color=\"#000000\" border_size=\"\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"170px\" alignment=\"left\" class=\"separator-left\" id=\"\"][modal name=\"rates\" title=\"2015 Rates\" size=\"small\" background=\"\" border_color=\"\" show_footer=\"yes\" class=\"\" id=\"\"]Self-Catering - per room per night:\r\nSingle R650\r\nSharing R990\r\n\r\nBed &amp; Breakfast - per room per night:\r\nSingle R725\r\nSharing R1140[/modal][button link=\"\" color=\"darkgreen\" size=\"\" type=\"\" shape=\"\" target=\"_self\" title=\"\" gradient_colors=\"|\" gradient_hover_colors=\"|\" accent_color=\"\" accent_hover_color=\"\" bevel_color=\"\" border_width=\"1px\" icon=\"\" icon_position=\"left\" icon_divider=\"no\" modal=\"rates\" animation_type=\"0\" animation_direction=\"left\" animation_speed=\"1\" alignment=\"\" class=\"\" id=\"\"]2015 RATES[/button][/one_half][/fullwidth][menu_anchor name=\"LODGE\"][fullwidth background_color=\"#f0f0ed\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"20\" padding_bottom=\"20\" padding_left=\"0px\" padding_right=\"0px\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][one_half last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][fusion_text]\r\n<p style=\"text-align: justify;\">The property boasts over 200 different species of birds and animals. The Lodge is situated on the 1000 Hills tourism route, on the edge of Hillcrest and is a perfect place from which one can launch to any one of the many fantastic destinations and game reserves in KwaZulu Natal, i.e. the Majestic Drakensberg Mountain Range, Shongweni Nature Reserve, Nagle Dam, Durban &amp; Beach Front. We are also the doorstep of one of KZN’s major horse riding venues namely, the Shongweni Horse Riding Club &amp; the Summerveld Horse Riding Academy, makes Assagay Lodge a perfect home away from home for the equestrian lovers. The peace &amp; tranquility will take you far away from the business of city life. Evenings are quiet and peaceful. This is a unique and memorable country experience.</p>\r\n[/fusion_text][/one_half][one_half last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][fusion_text]\r\n<p style=\"text-align: justify;\">We are a homely \'down to earth\' country guest lodge, set on a farm surrounded by acres of beautiful hills, forests, &amp; dams in the Madwala Conservancy of Assagay, where horses still have the right of way on all roads. Our five bedrooms have a rustic charm offering the comforts of modern day life.</p>\r\n<p style=\"text-align: justify;\">Assagay Forest Lodge is owner managed, built in 2005 the lodge provides 5 cozy bedrooms with a large spacious and comfortable homely lounge, which leads onto a large deck area. Set on a 6 acre property in the Assagay Conservancy our lodge is nestled around trees, bushes, and beautiful gardens and a stream, allowing visitors to meander and relax. Guests seeking a quite, relaxing, homely experience will find our lodge the perfect choice away from home. There is a kitchen available should you wish to muster up a snack or quick meal, however breakfast is available on request.</p>\r\n[/fusion_text][/one_half][/fullwidth][fullwidth background_color=\"#f0f0ed\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"20\" padding_bottom=\"20\" padding_left=\"0px\" padding_right=\"0px\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][fusion_text]\r\n<h1 style=\"text-align: center;\">Gallery</h1>\r\n[/fusion_text][separator style_type=\"single\" top_margin=\"\" bottom_margin=\"40\" sep_color=\"#000000\" border_size=\"\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"170px\" alignment=\"\" class=\"\" id=\"\"][one_sixth last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][/one_sixth][two_third last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][fusion_text]\r\n<h3 style=\"text-align: center;\">The Lodge is open, spacious, comfortable and homely.</h3>\r\n[/fusion_text][/two_third][one_sixth last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][/one_sixth][/fullwidth][fullwidth background_color=\"#f0f0ed\" background_image=\"http://localhost/assagaylodge/wp-content/uploads/2015/09/DSC01487.jpg\" background_parallax=\"fixed\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"30\" padding_bottom=\"10\" padding_left=\"0\" padding_right=\"0\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][recent_works layout=\"grid\" picture_size=\"auto\" boxed_text=\"unboxed\" filters=\"no\" columns=\"3\" column_spacing=\"12\" cat_slug=\"the-lodge\" exclude_cats=\"\" number_posts=\"9\" offset=\"\" excerpt_length=\"35\" strip_html=\"yes\" carousel_layout=\"title_on_rollover\" scroll_items=\"\" autoplay=\"no\" show_nav=\"yes\" mouse_scroll=\"no\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" class=\"\" id=\"\"][/recent_works][/fullwidth][fullwidth background_color=\"#f0f0ed\" background_image=\"\" background_parallax=\"fixed\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"20\" padding_bottom=\"20\" padding_left=\"0px\" padding_right=\"0px\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][menu_anchor name=\"BEDROOMS\"][fusion_text]\r\n<h1 style=\"text-align: center;\">BEDROOMS</h1>\r\n[/fusion_text][separator style_type=\"single\" top_margin=\"\" bottom_margin=\"20\" sep_color=\"#000000\" border_size=\"\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"170px\" alignment=\"\" class=\"\" id=\"\"][one_sixth last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][/one_sixth][two_third last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][fusion_text]\r\n<h3 style=\"text-align: justify;\">When it comes to our bedrooms we’re proud to say we’re different. We offer something a little more special.</h3>\r\n<h3 style=\"text-align: justify;\">Our five bedrooms are all en-suite and equipped with either king size or queen size beds. Each room sleeps two guests. The rooms have high ceilings, wall heaters &amp; ceiling fans. Beds all have electric blankets in Winter, 100% cotton percale sheets and thick hyper allergenic microfiber duvets and pillows.</h3>\r\n[/fusion_text][/two_third][one_sixth last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][/one_sixth][/fullwidth][fullwidth background_color=\"\" background_image=\"http://localhost/assagaylodge/wp-content/uploads/2015/01/DSC01516-1148-x-764.jpg\" background_parallax=\"fixed\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"center center\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"20\" padding_bottom=\"20\" padding_left=\"0\" padding_right=\"0\" hundred_percent=\"no\" equal_height_columns=\"yes\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][recent_works layout=\"grid\" picture_size=\"auto\" boxed_text=\"unboxed\" filters=\"no\" columns=\"3\" column_spacing=\"12\" cat_slug=\"bedrooms\" exclude_cats=\"\" number_posts=\"6\" offset=\"\" excerpt_length=\"35\" strip_html=\"yes\" carousel_layout=\"title_on_rollover\" scroll_items=\"\" autoplay=\"no\" show_nav=\"yes\" mouse_scroll=\"no\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" class=\"\" id=\"\"][/recent_works][/fullwidth][fullwidth background_color=\"#f0f0ed\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"20\" padding_bottom=\"20\" padding_left=\"0\" padding_right=\"0\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][menu_anchor name=\"GARDENS\"][fusion_text]\r\n<h1 style=\"text-align: center;\">GARDENS</h1>\r\n[/fusion_text][separator style_type=\"none\" top_margin=\"40\" bottom_margin=\"\" sep_color=\"\" border_size=\"\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"100%\" alignment=\"center\" class=\"\" id=\"\"][one_sixth last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][/one_sixth][two_third last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][fusion_text]\r\n<h3 style=\"text-align: center;\">Walk &amp; relax in our beautiful gardens.</h3>\r\n[/fusion_text][/two_third][one_sixth last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][/one_sixth][recent_works layout=\"grid\" picture_size=\"auto\" boxed_text=\"boxed\" filters=\"no\" columns=\"3\" column_spacing=\"12\" cat_slug=\"gardens\" exclude_cats=\"\" number_posts=\"9\" offset=\"\" excerpt_length=\"35\" strip_html=\"yes\" carousel_layout=\"title_on_rollover\" scroll_items=\"\" autoplay=\"no\" show_nav=\"yes\" mouse_scroll=\"no\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" class=\"\" id=\"\"][/recent_works][/fullwidth][fullwidth background_color=\"#ffffff\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"65px\" padding_bottom=\"65px\" padding_left=\"0px\" padding_right=\"0px\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][button link=\"http://localhost/assagaylodge/book-now/\" color=\"default\" size=\"xlarge\" type=\"3d\" shape=\"round\" target=\"_self\" title=\"\" gradient_colors=\"#f0f0ed|#f0f0ed\" gradient_hover_colors=\"#6666a4|#6666a4\" accent_color=\"#ffffff\" accent_hover_color=\"#ffffff\" bevel_color=\"\" border_width=\"0px\" icon=\"\" icon_position=\"left\" icon_divider=\"no\" modal=\"\" animation_type=\"0\" animation_direction=\"left\" animation_speed=\"1\" alignment=\"center\" class=\"\" id=\"\"]Make A Reservation Enquiry[/button][/fullwidth][menu_anchor name=\"\"][modal name=\"\" title=\"\" size=\"\" background=\"\" border_color=\"\" show_footer=\"\" class=\"\" id=\"\"][/modal][modal name=\"\" title=\"\" size=\"\" background=\"\" border_color=\"\" show_footer=\"\" class=\"\" id=\"\"][/modal][modal name=\"\" title=\"\" size=\"\" background=\"\" border_color=\"\" show_footer=\"\" class=\"\" id=\"\"][/modal][modal name=\"\" title=\"\" size=\"\" background=\"\" border_color=\"\" show_footer=\"\" class=\"\" id=\"\"][/modal]', 'Home', '', 'inherit', 'closed', 'closed', '', '7-revision-v1', '', '', '2015-09-10 14:10:10', '2015-09-10 12:10:10', '', 7, 'http://localhost/assagaylodge/7-revision-v1/', 0, 'revision', '', 0),
(1029, 1, '2015-09-10 14:16:16', '2015-09-10 12:16:16', '[fullwidth background_color=\"#f0f0ed\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"90px\" padding_bottom=\"0px\" padding_left=\"0px\" padding_right=\"0px\" hundred_percent=\"yes\" equal_height_columns=\"yes\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][one_half last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"http://localhost/assagaylodge/wp-content/uploads/2015/08/Tha-Lodge.jpg\" background_repeat=\"no-repeat\" background_position=\"center center\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" class=\"\" id=\"\"][/one_half][one_half last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"30px\" margin_top=\"\" margin_bottom=\"0px\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" class=\"special\" id=\"\"][fusion_text]\r\n<h1>5 BEDROOM FAMILY LODGE</h1>\r\n[/fusion_text][separator style_type=\"single\" top_margin=\"0\" bottom_margin=\"30\" sep_color=\"#000000\" border_size=\"\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"170px\" alignment=\"left\" class=\"separator-left\" id=\"\"][modal name=\"rates\" title=\"2015 Rates\" size=\"small\" background=\"\" border_color=\"\" show_footer=\"yes\" class=\"\" id=\"\"]\r\n\r\nSelf-Catering - per room per night:\r\nSingle R650\r\nSharing R990 (R495 per person)\r\n\r\nBed &amp; Breakfast - per room per night:\r\nSingle R725\r\nSharing R1140 (R570 per person)\r\n\r\nLodge % Room Servicing - per day:\r\nR220\r\n\r\n[/modal][button link=\"\" color=\"darkgreen\" size=\"\" type=\"\" shape=\"\" target=\"_self\" title=\"\" gradient_colors=\"|\" gradient_hover_colors=\"|\" accent_color=\"\" accent_hover_color=\"\" bevel_color=\"\" border_width=\"1px\" icon=\"\" icon_position=\"left\" icon_divider=\"no\" modal=\"rates\" animation_type=\"0\" animation_direction=\"left\" animation_speed=\"1\" alignment=\"\" class=\"\" id=\"\"]2015 RATES[/button][/one_half][/fullwidth][menu_anchor name=\"LODGE\"][fullwidth background_color=\"#f0f0ed\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"20\" padding_bottom=\"20\" padding_left=\"0px\" padding_right=\"0px\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][one_half last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][fusion_text]\r\n<p style=\"text-align: justify;\">The property boasts over 200 different species of birds and animals. The Lodge is situated on the 1000 Hills tourism route, on the edge of Hillcrest and is a perfect place from which one can launch to any one of the many fantastic destinations and game reserves in KwaZulu Natal, i.e. the Majestic Drakensberg Mountain Range, Shongweni Nature Reserve, Nagle Dam, Durban &amp; Beach Front. We are also the doorstep of one of KZN’s major horse riding venues namely, the Shongweni Horse Riding Club &amp; the Summerveld Horse Riding Academy, makes Assagay Lodge a perfect home away from home for the equestrian lovers. The peace &amp; tranquility will take you far away from the business of city life. Evenings are quiet and peaceful. This is a unique and memorable country experience.</p>\r\n[/fusion_text][/one_half][one_half last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][fusion_text]\r\n<p style=\"text-align: justify;\">We are a homely \'down to earth\' country guest lodge, set on a farm surrounded by acres of beautiful hills, forests, &amp; dams in the Madwala Conservancy of Assagay, where horses still have the right of way on all roads. Our five bedrooms have a rustic charm offering the comforts of modern day life.</p>\r\n<p style=\"text-align: justify;\">Assagay Forest Lodge is owner managed, built in 2005 the lodge provides 5 cozy bedrooms with a large spacious and comfortable homely lounge, which leads onto a large deck area. Set on a 6 acre property in the Assagay Conservancy our lodge is nestled around trees, bushes, and beautiful gardens and a stream, allowing visitors to meander and relax. Guests seeking a quite, relaxing, homely experience will find our lodge the perfect choice away from home. There is a kitchen available should you wish to muster up a snack or quick meal, however breakfast is available on request.</p>\r\n[/fusion_text][/one_half][/fullwidth][fullwidth background_color=\"#f0f0ed\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"20\" padding_bottom=\"20\" padding_left=\"0px\" padding_right=\"0px\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][fusion_text]\r\n<h1 style=\"text-align: center;\">Gallery</h1>\r\n[/fusion_text][separator style_type=\"single\" top_margin=\"\" bottom_margin=\"40\" sep_color=\"#000000\" border_size=\"\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"170px\" alignment=\"\" class=\"\" id=\"\"][one_sixth last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][/one_sixth][two_third last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][fusion_text]\r\n<h3 style=\"text-align: center;\">The Lodge is open, spacious, comfortable and homely.</h3>\r\n[/fusion_text][/two_third][one_sixth last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][/one_sixth][/fullwidth][fullwidth background_color=\"#f0f0ed\" background_image=\"http://localhost/assagaylodge/wp-content/uploads/2015/09/DSC01487.jpg\" background_parallax=\"fixed\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"30\" padding_bottom=\"10\" padding_left=\"0\" padding_right=\"0\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][recent_works layout=\"grid\" picture_size=\"auto\" boxed_text=\"unboxed\" filters=\"no\" columns=\"3\" column_spacing=\"12\" cat_slug=\"the-lodge\" exclude_cats=\"\" number_posts=\"9\" offset=\"\" excerpt_length=\"35\" strip_html=\"yes\" carousel_layout=\"title_on_rollover\" scroll_items=\"\" autoplay=\"no\" show_nav=\"yes\" mouse_scroll=\"no\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" class=\"\" id=\"\"][/recent_works][/fullwidth][fullwidth background_color=\"#f0f0ed\" background_image=\"\" background_parallax=\"fixed\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"20\" padding_bottom=\"20\" padding_left=\"0px\" padding_right=\"0px\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][menu_anchor name=\"BEDROOMS\"][fusion_text]\r\n<h1 style=\"text-align: center;\">BEDROOMS</h1>\r\n[/fusion_text][separator style_type=\"single\" top_margin=\"\" bottom_margin=\"20\" sep_color=\"#000000\" border_size=\"\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"170px\" alignment=\"\" class=\"\" id=\"\"][one_sixth last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][/one_sixth][two_third last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][fusion_text]\r\n<h3 style=\"text-align: justify;\">When it comes to our bedrooms we’re proud to say we’re different. We offer something a little more special.</h3>\r\n<h3 style=\"text-align: justify;\">Our five bedrooms are all en-suite and equipped with either king size or queen size beds. Each room sleeps two guests. The rooms have high ceilings, wall heaters &amp; ceiling fans. Beds all have electric blankets in Winter, 100% cotton percale sheets and thick hyper allergenic microfiber duvets and pillows.</h3>\r\n[/fusion_text][/two_third][one_sixth last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][/one_sixth][/fullwidth][fullwidth background_color=\"\" background_image=\"http://localhost/assagaylodge/wp-content/uploads/2015/01/DSC01516-1148-x-764.jpg\" background_parallax=\"fixed\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"center center\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"20\" padding_bottom=\"20\" padding_left=\"0\" padding_right=\"0\" hundred_percent=\"no\" equal_height_columns=\"yes\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][recent_works layout=\"grid\" picture_size=\"auto\" boxed_text=\"unboxed\" filters=\"no\" columns=\"3\" column_spacing=\"12\" cat_slug=\"bedrooms\" exclude_cats=\"\" number_posts=\"6\" offset=\"\" excerpt_length=\"35\" strip_html=\"yes\" carousel_layout=\"title_on_rollover\" scroll_items=\"\" autoplay=\"no\" show_nav=\"yes\" mouse_scroll=\"no\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" class=\"\" id=\"\"][/recent_works][/fullwidth][fullwidth background_color=\"#f0f0ed\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"20\" padding_bottom=\"20\" padding_left=\"0\" padding_right=\"0\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][menu_anchor name=\"GARDENS\"][fusion_text]\r\n<h1 style=\"text-align: center;\">GARDENS</h1>\r\n[/fusion_text][separator style_type=\"none\" top_margin=\"40\" bottom_margin=\"\" sep_color=\"\" border_size=\"\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"100%\" alignment=\"center\" class=\"\" id=\"\"][one_sixth last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][/one_sixth][two_third last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][fusion_text]\r\n<h3 style=\"text-align: center;\">Walk &amp; relax in our beautiful gardens.</h3>\r\n[/fusion_text][/two_third][one_sixth last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][/one_sixth][recent_works layout=\"grid\" picture_size=\"auto\" boxed_text=\"boxed\" filters=\"no\" columns=\"3\" column_spacing=\"12\" cat_slug=\"gardens\" exclude_cats=\"\" number_posts=\"9\" offset=\"\" excerpt_length=\"35\" strip_html=\"yes\" carousel_layout=\"title_on_rollover\" scroll_items=\"\" autoplay=\"no\" show_nav=\"yes\" mouse_scroll=\"no\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" class=\"\" id=\"\"][/recent_works][/fullwidth][fullwidth background_color=\"#ffffff\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"65px\" padding_bottom=\"65px\" padding_left=\"0px\" padding_right=\"0px\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][button link=\"http://localhost/assagaylodge/book-now/\" color=\"default\" size=\"xlarge\" type=\"3d\" shape=\"round\" target=\"_self\" title=\"\" gradient_colors=\"#f0f0ed|#f0f0ed\" gradient_hover_colors=\"#6666a4|#6666a4\" accent_color=\"#ffffff\" accent_hover_color=\"#ffffff\" bevel_color=\"\" border_width=\"0px\" icon=\"\" icon_position=\"left\" icon_divider=\"no\" modal=\"\" animation_type=\"0\" animation_direction=\"left\" animation_speed=\"1\" alignment=\"center\" class=\"\" id=\"\"]Make A Reservation Enquiry[/button][/fullwidth][menu_anchor name=\"\"][modal name=\"\" title=\"\" size=\"\" background=\"\" border_color=\"\" show_footer=\"\" class=\"\" id=\"\"][/modal][modal name=\"\" title=\"\" size=\"\" background=\"\" border_color=\"\" show_footer=\"\" class=\"\" id=\"\"][/modal][modal name=\"\" title=\"\" size=\"\" background=\"\" border_color=\"\" show_footer=\"\" class=\"\" id=\"\"][/modal][modal name=\"\" title=\"\" size=\"\" background=\"\" border_color=\"\" show_footer=\"\" class=\"\" id=\"\"][/modal]', 'Home', '', 'inherit', 'closed', 'closed', '', '7-revision-v1', '', '', '2015-09-10 14:16:16', '2015-09-10 12:16:16', '', 7, 'http://localhost/assagaylodge/7-revision-v1/', 0, 'revision', '', 0);
INSERT INTO `wp_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(1030, 1, '2015-09-10 14:18:45', '2015-09-10 12:18:45', '[fullwidth background_color=\"#f0f0ed\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"90px\" padding_bottom=\"0px\" padding_left=\"0px\" padding_right=\"0px\" hundred_percent=\"yes\" equal_height_columns=\"yes\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][one_half last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"http://localhost/assagaylodge/wp-content/uploads/2015/08/Tha-Lodge.jpg\" background_repeat=\"no-repeat\" background_position=\"center center\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" class=\"\" id=\"\"][/one_half][one_half last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"30px\" margin_top=\"\" margin_bottom=\"0px\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" class=\"special\" id=\"\"][fusion_text]\r\n<h1>5 BEDROOM FAMILY LODGE</h1>\r\n[/fusion_text][separator style_type=\"single\" top_margin=\"0\" bottom_margin=\"30\" sep_color=\"#000000\" border_size=\"\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"170px\" alignment=\"left\" class=\"separator-left\" id=\"\"][modal name=\"rates\" title=\"2015 Rates\" size=\"small\" background=\"\" border_color=\"\" show_footer=\"yes\" class=\"\" id=\"\"]<p>\r\n<strong>Self-Catering </strong>- per room per night:<br />\r\nSingle R650<br />\r\nSharing R990 (R495 per person)</p>\r\n<p><strong>Bed & Breakfast </strong>- per room per night:<br />\r\nSingle R725<br />\r\nSharing R1140 (R570 per person)</p>\r\n<p><strong>Lodge % Room Servicing </strong>- per day:<br />\r\nR220</p>\r\n[/modal][button link=\"\" color=\"darkgreen\" size=\"\"  type=\"\" shape=\"\" target=\"_self\" title=\"\" gradient_colors=\"|\" gradient_hover_colors=\"|\" accent_color=\"\" accent_hover_color=\"\" bevel_color=\"\" border_width=\"1px\" icon=\"\" icon_position=\"left\" icon_divider=\"no\" modal=\"rates\" animation_type=\"0\" animation_direction=\"left\" animation_speed=\"1\" alignment=\"\" class=\"\" id=\"\"]2015 RATES[/button][/one_half][/fullwidth][menu_anchor name=\"LODGE\"][fullwidth background_color=\"#f0f0ed\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"20\" padding_bottom=\"20\" padding_left=\"0px\" padding_right=\"0px\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][one_half last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][fusion_text]\r\n<p style=\"text-align: justify;\">The property boasts over 200 different species of birds and animals. The Lodge is situated on the 1000 Hills tourism route, on the edge of Hillcrest and is a perfect place from which one can launch to any one of the many fantastic destinations and game reserves in KwaZulu Natal, i.e. the Majestic Drakensberg Mountain Range, Shongweni Nature Reserve, Nagle Dam, Durban &amp; Beach Front. We are also the doorstep of one of KZN’s major horse riding venues namely, the Shongweni Horse Riding Club &amp; the Summerveld Horse Riding Academy, makes Assagay Lodge a perfect home away from home for the equestrian lovers. The peace &amp; tranquility will take you far away from the business of city life. Evenings are quiet and peaceful. This is a unique and memorable country experience.</p>\r\n[/fusion_text][/one_half][one_half last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][fusion_text]\r\n<p style=\"text-align: justify;\">We are a homely \'down to earth\' country guest lodge, set on a farm surrounded by acres of beautiful hills, forests, &amp; dams in the Madwala Conservancy of Assagay, where horses still have the right of way on all roads. Our five bedrooms have a rustic charm offering the comforts of modern day life.</p>\r\n<p style=\"text-align: justify;\">Assagay Forest Lodge is owner managed, built in 2005 the lodge provides 5 cozy bedrooms with a large spacious and comfortable homely lounge, which leads onto a large deck area. Set on a 6 acre property in the Assagay Conservancy our lodge is nestled around trees, bushes, and beautiful gardens and a stream, allowing visitors to meander and relax. Guests seeking a quite, relaxing, homely experience will find our lodge the perfect choice away from home. There is a kitchen available should you wish to muster up a snack or quick meal, however breakfast is available on request.</p>\r\n[/fusion_text][/one_half][/fullwidth][fullwidth background_color=\"#f0f0ed\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"20\" padding_bottom=\"20\" padding_left=\"0px\" padding_right=\"0px\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][fusion_text]\r\n<h1 style=\"text-align: center;\">Gallery</h1>\r\n[/fusion_text][separator style_type=\"single\" top_margin=\"\" bottom_margin=\"40\" sep_color=\"#000000\" border_size=\"\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"170px\" alignment=\"\" class=\"\" id=\"\"][one_sixth last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][/one_sixth][two_third last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][fusion_text]\r\n<h3 style=\"text-align: center;\">The Lodge is open, spacious, comfortable and homely.</h3>\r\n[/fusion_text][/two_third][one_sixth last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][/one_sixth][/fullwidth][fullwidth background_color=\"#f0f0ed\" background_image=\"http://localhost/assagaylodge/wp-content/uploads/2015/09/DSC01487.jpg\" background_parallax=\"fixed\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"30\" padding_bottom=\"10\" padding_left=\"0\" padding_right=\"0\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][recent_works layout=\"grid\" picture_size=\"auto\" boxed_text=\"unboxed\" filters=\"no\" columns=\"3\" column_spacing=\"12\" cat_slug=\"the-lodge\" exclude_cats=\"\" number_posts=\"9\" offset=\"\" excerpt_length=\"35\" strip_html=\"yes\" carousel_layout=\"title_on_rollover\" scroll_items=\"\" autoplay=\"no\" show_nav=\"yes\" mouse_scroll=\"no\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" class=\"\" id=\"\"][/recent_works][/fullwidth][fullwidth background_color=\"#f0f0ed\" background_image=\"\" background_parallax=\"fixed\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"20\" padding_bottom=\"20\" padding_left=\"0px\" padding_right=\"0px\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][menu_anchor name=\"BEDROOMS\"][fusion_text]\r\n<h1 style=\"text-align: center;\">BEDROOMS</h1>\r\n[/fusion_text][separator style_type=\"single\" top_margin=\"\" bottom_margin=\"20\" sep_color=\"#000000\" border_size=\"\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"170px\" alignment=\"\" class=\"\" id=\"\"][one_sixth last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][/one_sixth][two_third last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][fusion_text]\r\n<h3 style=\"text-align: justify;\">When it comes to our bedrooms we’re proud to say we’re different. We offer something a little more special.</h3>\r\n<h3 style=\"text-align: justify;\">Our five bedrooms are all en-suite and equipped with either king size or queen size beds. Each room sleeps two guests. The rooms have high ceilings, wall heaters &amp; ceiling fans. Beds all have electric blankets in Winter, 100% cotton percale sheets and thick hyper allergenic microfiber duvets and pillows.</h3>\r\n[/fusion_text][/two_third][one_sixth last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][/one_sixth][/fullwidth][fullwidth background_color=\"\" background_image=\"http://localhost/assagaylodge/wp-content/uploads/2015/01/DSC01516-1148-x-764.jpg\" background_parallax=\"fixed\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"center center\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"20\" padding_bottom=\"20\" padding_left=\"0\" padding_right=\"0\" hundred_percent=\"no\" equal_height_columns=\"yes\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][recent_works layout=\"grid\" picture_size=\"auto\" boxed_text=\"unboxed\" filters=\"no\" columns=\"3\" column_spacing=\"12\" cat_slug=\"bedrooms\" exclude_cats=\"\" number_posts=\"6\" offset=\"\" excerpt_length=\"35\" strip_html=\"yes\" carousel_layout=\"title_on_rollover\" scroll_items=\"\" autoplay=\"no\" show_nav=\"yes\" mouse_scroll=\"no\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" class=\"\" id=\"\"][/recent_works][/fullwidth][fullwidth background_color=\"#f0f0ed\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"20\" padding_bottom=\"20\" padding_left=\"0\" padding_right=\"0\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][menu_anchor name=\"GARDENS\"][fusion_text]\r\n<h1 style=\"text-align: center;\">GARDENS</h1>\r\n[/fusion_text][separator style_type=\"none\" top_margin=\"40\" bottom_margin=\"\" sep_color=\"\" border_size=\"\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"100%\" alignment=\"center\" class=\"\" id=\"\"][one_sixth last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][/one_sixth][two_third last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][fusion_text]\r\n<h3 style=\"text-align: center;\">Walk &amp; relax in our beautiful gardens.</h3>\r\n[/fusion_text][/two_third][one_sixth last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][/one_sixth][recent_works layout=\"grid\" picture_size=\"auto\" boxed_text=\"boxed\" filters=\"no\" columns=\"3\" column_spacing=\"12\" cat_slug=\"gardens\" exclude_cats=\"\" number_posts=\"9\" offset=\"\" excerpt_length=\"35\" strip_html=\"yes\" carousel_layout=\"title_on_rollover\" scroll_items=\"\" autoplay=\"no\" show_nav=\"yes\" mouse_scroll=\"no\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" class=\"\" id=\"\"][/recent_works][/fullwidth][fullwidth background_color=\"#ffffff\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"65px\" padding_bottom=\"65px\" padding_left=\"0px\" padding_right=\"0px\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][button link=\"http://localhost/assagaylodge/book-now/\" color=\"default\" size=\"xlarge\"  type=\"3d\" shape=\"round\" target=\"_self\" title=\"\" gradient_colors=\"#f0f0ed|#f0f0ed\" gradient_hover_colors=\"#6666a4|#6666a4\" accent_color=\"#ffffff\" accent_hover_color=\"#ffffff\" bevel_color=\"\" border_width=\"0px\" icon=\"\" icon_position=\"left\" icon_divider=\"no\" modal=\"\" animation_type=\"0\" animation_direction=\"left\" animation_speed=\"1\" alignment=\"center\" class=\"\" id=\"\"]Make A Reservation Enquiry[/button][/fullwidth][menu_anchor name=\"\"][modal name=\"\" title=\"\" size=\"\" background=\"\" border_color=\"\" show_footer=\"\" class=\"\" id=\"\"][/modal][modal name=\"\" title=\"\" size=\"\" background=\"\" border_color=\"\" show_footer=\"\" class=\"\" id=\"\"][/modal][modal name=\"\" title=\"\" size=\"\" background=\"\" border_color=\"\" show_footer=\"\" class=\"\" id=\"\"][/modal][modal name=\"\" title=\"\" size=\"\" background=\"\" border_color=\"\" show_footer=\"\" class=\"\" id=\"\"][/modal]', 'Home', '', 'inherit', 'closed', 'closed', '', '7-revision-v1', '', '', '2015-09-10 14:18:45', '2015-09-10 12:18:45', '', 7, 'http://localhost/assagaylodge/7-revision-v1/', 0, 'revision', '', 0),
(1031, 1, '2015-09-10 14:26:38', '2015-09-10 12:26:38', '[fullwidth background_color=\"#f0f0ed\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"90px\" padding_bottom=\"0px\" padding_left=\"0px\" padding_right=\"0px\" hundred_percent=\"yes\" equal_height_columns=\"yes\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][one_half last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"http://localhost/assagaylodge/wp-content/uploads/2015/08/Tha-Lodge.jpg\" background_repeat=\"no-repeat\" background_position=\"center center\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" class=\"\" id=\"\"][/one_half][one_half last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"30px\" margin_top=\"\" margin_bottom=\"0px\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" class=\"special\" id=\"\"][fusion_text]\r\n<h1>5 BEDROOM FAMILY LODGE</h1>\r\n[/fusion_text][separator style_type=\"single\" top_margin=\"0\" bottom_margin=\"30\" sep_color=\"#000000\" border_size=\"\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"170px\" alignment=\"left\" class=\"separator-left\" id=\"\"][modal name=\"rates\" title=\"2015 Rates\" size=\"small\" background=\"\" border_color=\"\" show_footer=\"yes\" class=\"\" id=\"\"]<p>\r\n<strong>Full House </strong>- per night:<br />R3500 (R350 per person)</p>\r\n<p><strong>Self-Catering </strong>- per room per night:<br />Single R650<br />Sharing R990 (R495 per person)</p>\r\n<p><strong>Bed & Breakfast </strong>- per room per night:<br />Single R725<br />Sharing R1140 (R570 per person)</p>\r\n<p><strong>Lodge % Room Servicing </strong>- per day:<br />R220</p>\r\n[/modal][button link=\"\" color=\"darkgreen\" size=\"\"  type=\"\" shape=\"\" target=\"_self\" title=\"\" gradient_colors=\"|\" gradient_hover_colors=\"|\" accent_color=\"\" accent_hover_color=\"\" bevel_color=\"\" border_width=\"1px\" icon=\"\" icon_position=\"left\" icon_divider=\"no\" modal=\"rates\" animation_type=\"0\" animation_direction=\"left\" animation_speed=\"1\" alignment=\"\" class=\"\" id=\"\"]2015 RATES[/button][/one_half][/fullwidth][menu_anchor name=\"LODGE\"][fullwidth background_color=\"#f0f0ed\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"20\" padding_bottom=\"20\" padding_left=\"0px\" padding_right=\"0px\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][one_half last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][fusion_text]\r\n<p style=\"text-align: justify;\">The property boasts over 200 different species of birds and animals. The Lodge is situated on the 1000 Hills tourism route, on the edge of Hillcrest and is a perfect place from which one can launch to any one of the many fantastic destinations and game reserves in KwaZulu Natal, i.e. the Majestic Drakensberg Mountain Range, Shongweni Nature Reserve, Nagle Dam, Durban &amp; Beach Front. We are also the doorstep of one of KZN’s major horse riding venues namely, the Shongweni Horse Riding Club &amp; the Summerveld Horse Riding Academy, makes Assagay Lodge a perfect home away from home for the equestrian lovers. The peace &amp; tranquility will take you far away from the business of city life. Evenings are quiet and peaceful. This is a unique and memorable country experience.</p>\r\n[/fusion_text][/one_half][one_half last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][fusion_text]\r\n<p style=\"text-align: justify;\">We are a homely \'down to earth\' country guest lodge, set on a farm surrounded by acres of beautiful hills, forests, &amp; dams in the Madwala Conservancy of Assagay, where horses still have the right of way on all roads. Our five bedrooms have a rustic charm offering the comforts of modern day life.</p>\r\n<p style=\"text-align: justify;\">Assagay Forest Lodge is owner managed, built in 2005 the lodge provides 5 cozy bedrooms with a large spacious and comfortable homely lounge, which leads onto a large deck area. Set on a 6 acre property in the Assagay Conservancy our lodge is nestled around trees, bushes, and beautiful gardens and a stream, allowing visitors to meander and relax. Guests seeking a quite, relaxing, homely experience will find our lodge the perfect choice away from home. There is a kitchen available should you wish to muster up a snack or quick meal, however breakfast is available on request.</p>\r\n[/fusion_text][/one_half][/fullwidth][fullwidth background_color=\"#f0f0ed\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"20\" padding_bottom=\"20\" padding_left=\"0px\" padding_right=\"0px\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][fusion_text]\r\n<h1 style=\"text-align: center;\">Gallery</h1>\r\n[/fusion_text][separator style_type=\"single\" top_margin=\"\" bottom_margin=\"40\" sep_color=\"#000000\" border_size=\"\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"170px\" alignment=\"\" class=\"\" id=\"\"][one_sixth last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][/one_sixth][two_third last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][fusion_text]\r\n<h3 style=\"text-align: center;\">The Lodge is open, spacious, comfortable and homely.</h3>\r\n[/fusion_text][/two_third][one_sixth last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][/one_sixth][/fullwidth][fullwidth background_color=\"#f0f0ed\" background_image=\"http://localhost/assagaylodge/wp-content/uploads/2015/09/DSC01487.jpg\" background_parallax=\"fixed\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"30\" padding_bottom=\"10\" padding_left=\"0\" padding_right=\"0\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][recent_works layout=\"grid\" picture_size=\"auto\" boxed_text=\"unboxed\" filters=\"no\" columns=\"3\" column_spacing=\"12\" cat_slug=\"the-lodge\" exclude_cats=\"\" number_posts=\"9\" offset=\"\" excerpt_length=\"35\" strip_html=\"yes\" carousel_layout=\"title_on_rollover\" scroll_items=\"\" autoplay=\"no\" show_nav=\"yes\" mouse_scroll=\"no\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" class=\"\" id=\"\"][/recent_works][/fullwidth][fullwidth background_color=\"#f0f0ed\" background_image=\"\" background_parallax=\"fixed\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"20\" padding_bottom=\"20\" padding_left=\"0px\" padding_right=\"0px\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][menu_anchor name=\"BEDROOMS\"][fusion_text]\r\n<h1 style=\"text-align: center;\">BEDROOMS</h1>\r\n[/fusion_text][separator style_type=\"single\" top_margin=\"\" bottom_margin=\"20\" sep_color=\"#000000\" border_size=\"\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"170px\" alignment=\"\" class=\"\" id=\"\"][one_sixth last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][/one_sixth][two_third last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][fusion_text]\r\n<h3 style=\"text-align: justify;\">When it comes to our bedrooms we’re proud to say we’re different. We offer something a little more special.</h3>\r\n<h3 style=\"text-align: justify;\">Our five bedrooms are all en-suite and equipped with either king size or queen size beds. Each room sleeps two guests. The rooms have high ceilings, wall heaters &amp; ceiling fans. Beds all have electric blankets in Winter, 100% cotton percale sheets and thick hyper allergenic microfiber duvets and pillows.</h3>\r\n[/fusion_text][/two_third][one_sixth last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][/one_sixth][/fullwidth][fullwidth background_color=\"\" background_image=\"http://localhost/assagaylodge/wp-content/uploads/2015/01/DSC01516-1148-x-764.jpg\" background_parallax=\"fixed\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"center center\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"20\" padding_bottom=\"20\" padding_left=\"0\" padding_right=\"0\" hundred_percent=\"no\" equal_height_columns=\"yes\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][recent_works layout=\"grid\" picture_size=\"auto\" boxed_text=\"unboxed\" filters=\"no\" columns=\"3\" column_spacing=\"12\" cat_slug=\"bedrooms\" exclude_cats=\"\" number_posts=\"6\" offset=\"\" excerpt_length=\"35\" strip_html=\"yes\" carousel_layout=\"title_on_rollover\" scroll_items=\"\" autoplay=\"no\" show_nav=\"yes\" mouse_scroll=\"no\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" class=\"\" id=\"\"][/recent_works][/fullwidth][fullwidth background_color=\"#f0f0ed\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"20\" padding_bottom=\"20\" padding_left=\"0\" padding_right=\"0\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][menu_anchor name=\"GARDENS\"][fusion_text]\r\n<h1 style=\"text-align: center;\">GARDENS</h1>\r\n[/fusion_text][separator style_type=\"none\" top_margin=\"40\" bottom_margin=\"\" sep_color=\"\" border_size=\"\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"100%\" alignment=\"center\" class=\"\" id=\"\"][one_sixth last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][/one_sixth][two_third last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][fusion_text]\r\n<h3 style=\"text-align: center;\">Walk &amp; relax in our beautiful gardens.</h3>\r\n[/fusion_text][/two_third][one_sixth last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][/one_sixth][recent_works layout=\"grid\" picture_size=\"auto\" boxed_text=\"boxed\" filters=\"no\" columns=\"3\" column_spacing=\"12\" cat_slug=\"gardens\" exclude_cats=\"\" number_posts=\"9\" offset=\"\" excerpt_length=\"35\" strip_html=\"yes\" carousel_layout=\"title_on_rollover\" scroll_items=\"\" autoplay=\"no\" show_nav=\"yes\" mouse_scroll=\"no\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" class=\"\" id=\"\"][/recent_works][/fullwidth][fullwidth background_color=\"#ffffff\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"65px\" padding_bottom=\"65px\" padding_left=\"0px\" padding_right=\"0px\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][button link=\"http://localhost/assagaylodge/book-now/\" color=\"default\" size=\"xlarge\"  type=\"3d\" shape=\"round\" target=\"_self\" title=\"\" gradient_colors=\"#f0f0ed|#f0f0ed\" gradient_hover_colors=\"#6666a4|#6666a4\" accent_color=\"#ffffff\" accent_hover_color=\"#ffffff\" bevel_color=\"\" border_width=\"0px\" icon=\"\" icon_position=\"left\" icon_divider=\"no\" modal=\"\" animation_type=\"0\" animation_direction=\"left\" animation_speed=\"1\" alignment=\"center\" class=\"\" id=\"\"]Make A Reservation Enquiry[/button][/fullwidth][menu_anchor name=\"\"][modal name=\"\" title=\"\" size=\"\" background=\"\" border_color=\"\" show_footer=\"\" class=\"\" id=\"\"][/modal][modal name=\"\" title=\"\" size=\"\" background=\"\" border_color=\"\" show_footer=\"\" class=\"\" id=\"\"][/modal][modal name=\"\" title=\"\" size=\"\" background=\"\" border_color=\"\" show_footer=\"\" class=\"\" id=\"\"][/modal][modal name=\"\" title=\"\" size=\"\" background=\"\" border_color=\"\" show_footer=\"\" class=\"\" id=\"\"][/modal]', 'Home', '', 'inherit', 'closed', 'closed', '', '7-revision-v1', '', '', '2015-09-10 14:26:38', '2015-09-10 12:26:38', '', 7, 'http://localhost/assagaylodge/7-revision-v1/', 0, 'revision', '', 0),
(1034, 1, '2015-09-12 09:59:57', '2015-09-12 07:59:57', '', 'trees_silhouette 800 x 450', '', 'inherit', 'open', 'closed', '', 'trees_silhouette-800-x-450', '', '', '2015-09-12 09:59:57', '2015-09-12 07:59:57', '', 7, 'http://localhost/assagaylodge/wp-content/uploads/2015/01/trees_silhouette-800-x-450.jpg', 0, 'attachment', 'image/jpeg', 0);
INSERT INTO `wp_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(1035, 1, '2015-09-12 10:00:44', '2015-09-12 08:00:44', '[fullwidth background_color=\"#f0f0ed\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"90px\" padding_bottom=\"0px\" padding_left=\"0px\" padding_right=\"0px\" hundred_percent=\"yes\" equal_height_columns=\"yes\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][one_half last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"http://localhost/assagaylodge/wp-content/uploads/2015/08/Tha-Lodge.jpg\" background_repeat=\"no-repeat\" background_position=\"center center\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" class=\"\" id=\"\"][/one_half][one_half last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"30px\" margin_top=\"\" margin_bottom=\"0px\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" class=\"special\" id=\"\"][fusion_text]\r\n<h1>5 BEDROOM FAMILY LODGE</h1>\r\n[/fusion_text][separator style_type=\"single\" top_margin=\"0\" bottom_margin=\"30\" sep_color=\"#000000\" border_size=\"\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"170px\" alignment=\"left\" class=\"separator-left\" id=\"\"][modal name=\"rates\" title=\"2015 Rates\" size=\"small\" background=\"\" border_color=\"\" show_footer=\"yes\" class=\"\" id=\"\"]<p>\r\n<strong>Full House </strong>- per night:<br />R3500 (R350 per person)</p>\r\n<p><strong>Self-Catering </strong>- per room per night:<br />Single R650<br />Sharing R990 (R495 per person)</p>\r\n<p><strong>Bed & Breakfast </strong>- per room per night:<br />Single R725<br />Sharing R1140 (R570 per person)</p>\r\n<p><strong>Lodge % Room Servicing </strong>- per day:<br />R220</p>\r\n[/modal][button link=\"\" color=\"darkgreen\" size=\"\"  type=\"\" shape=\"\" target=\"_self\" title=\"\" gradient_colors=\"|\" gradient_hover_colors=\"|\" accent_color=\"\" accent_hover_color=\"\" bevel_color=\"\" border_width=\"1px\" icon=\"\" icon_position=\"left\" icon_divider=\"no\" modal=\"rates\" animation_type=\"0\" animation_direction=\"left\" animation_speed=\"1\" alignment=\"\" class=\"\" id=\"\"]2015 RATES[/button][/one_half][/fullwidth][menu_anchor name=\"LODGE\"][fullwidth background_color=\"#f0f0ed\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"20\" padding_bottom=\"20\" padding_left=\"0px\" padding_right=\"0px\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][one_half last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][fusion_text]\r\n<p style=\"text-align: justify;\">The property boasts over 200 different species of birds and animals. The Lodge is situated on the 1000 Hills tourism route, on the edge of Hillcrest and is a perfect place from which one can launch to any one of the many fantastic destinations and game reserves in KwaZulu Natal, i.e. the Majestic Drakensberg Mountain Range, Shongweni Nature Reserve, Nagle Dam, Durban &amp; Beach Front. We are also the doorstep of one of KZN’s major horse riding venues namely, the Shongweni Horse Riding Club &amp; the Summerveld Horse Riding Academy, makes Assagay Lodge a perfect home away from home for the equestrian lovers. The peace &amp; tranquility will take you far away from the business of city life. Evenings are quiet and peaceful. This is a unique and memorable country experience.</p>\r\n[/fusion_text][/one_half][one_half last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][fusion_text]\r\n<p style=\"text-align: justify;\">We are a homely \'down to earth\' country guest lodge, set on a farm surrounded by acres of beautiful hills, forests, &amp; dams in the Madwala Conservancy of Assagay, where horses still have the right of way on all roads. Our five bedrooms have a rustic charm offering the comforts of modern day life.</p>\r\n<p style=\"text-align: justify;\">Assagay Forest Lodge is owner managed, built in 2005 the lodge provides 5 cozy bedrooms with a large spacious and comfortable homely lounge, which leads onto a large deck area. Set on a 6 acre property in the Assagay Conservancy our lodge is nestled around trees, bushes, and beautiful gardens and a stream, allowing visitors to meander and relax. Guests seeking a quite, relaxing, homely experience will find our lodge the perfect choice away from home. There is a kitchen available should you wish to muster up a snack or quick meal, however breakfast is available on request.</p>\r\n[/fusion_text][/one_half][/fullwidth][fullwidth background_color=\"#f0f0ed\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"20\" padding_bottom=\"20\" padding_left=\"0px\" padding_right=\"0px\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][fusion_text]\r\n<h1 style=\"text-align: center;\">Gallery</h1>\r\n[/fusion_text][separator style_type=\"single\" top_margin=\"\" bottom_margin=\"40\" sep_color=\"#000000\" border_size=\"\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"170px\" alignment=\"\" class=\"\" id=\"\"][one_sixth last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][/one_sixth][two_third last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][fusion_text]\r\n<h3 style=\"text-align: center;\">The Lodge is open, spacious, comfortable and homely.</h3>\r\n[/fusion_text][/two_third][one_sixth last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][/one_sixth][/fullwidth][fullwidth background_color=\"#f0f0ed\" background_image=\"http://localhost/assagaylodge/wp-content/uploads/2015/01/trees_silhouette-800-x-450.jpg\" background_parallax=\"fixed\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"30\" padding_bottom=\"10\" padding_left=\"0\" padding_right=\"0\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][recent_works layout=\"grid\" picture_size=\"auto\" boxed_text=\"unboxed\" filters=\"no\" columns=\"3\" column_spacing=\"12\" cat_slug=\"the-lodge\" exclude_cats=\"\" number_posts=\"9\" offset=\"\" excerpt_length=\"35\" strip_html=\"yes\" carousel_layout=\"title_on_rollover\" scroll_items=\"\" autoplay=\"no\" show_nav=\"yes\" mouse_scroll=\"no\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" class=\"\" id=\"\"][/recent_works][/fullwidth][fullwidth background_color=\"#f0f0ed\" background_image=\"\" background_parallax=\"fixed\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"20\" padding_bottom=\"20\" padding_left=\"0px\" padding_right=\"0px\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][menu_anchor name=\"BEDROOMS\"][fusion_text]\r\n<h1 style=\"text-align: center;\">BEDROOMS</h1>\r\n[/fusion_text][separator style_type=\"single\" top_margin=\"\" bottom_margin=\"20\" sep_color=\"#000000\" border_size=\"\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"170px\" alignment=\"\" class=\"\" id=\"\"][one_sixth last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][/one_sixth][two_third last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][fusion_text]\r\n<h3 style=\"text-align: justify;\">When it comes to our bedrooms we’re proud to say we’re different. We offer something a little more special.</h3>\r\n<h3 style=\"text-align: justify;\">Our five bedrooms are all en-suite and equipped with either king size or queen size beds. Each room sleeps two guests. The rooms have high ceilings, wall heaters &amp; ceiling fans. Beds all have electric blankets in Winter, 100% cotton percale sheets and thick hyper allergenic microfiber duvets and pillows.</h3>\r\n[/fusion_text][/two_third][one_sixth last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][/one_sixth][/fullwidth][fullwidth background_color=\"\" background_image=\"http://localhost/assagaylodge/wp-content/uploads/2015/01/DSC01516-1148-x-764.jpg\" background_parallax=\"fixed\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"center center\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"20\" padding_bottom=\"20\" padding_left=\"0\" padding_right=\"0\" hundred_percent=\"no\" equal_height_columns=\"yes\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][recent_works layout=\"grid\" picture_size=\"auto\" boxed_text=\"unboxed\" filters=\"no\" columns=\"3\" column_spacing=\"12\" cat_slug=\"bedrooms\" exclude_cats=\"\" number_posts=\"6\" offset=\"\" excerpt_length=\"35\" strip_html=\"yes\" carousel_layout=\"title_on_rollover\" scroll_items=\"\" autoplay=\"no\" show_nav=\"yes\" mouse_scroll=\"no\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" class=\"\" id=\"\"][/recent_works][/fullwidth][fullwidth background_color=\"#f0f0ed\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"20\" padding_bottom=\"20\" padding_left=\"0\" padding_right=\"0\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][menu_anchor name=\"GARDENS\"][fusion_text]\r\n<h1 style=\"text-align: center;\">GARDENS</h1>\r\n[/fusion_text][separator style_type=\"none\" top_margin=\"40\" bottom_margin=\"\" sep_color=\"\" border_size=\"\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"100%\" alignment=\"center\" class=\"\" id=\"\"][one_sixth last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][/one_sixth][two_third last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][fusion_text]\r\n<h3 style=\"text-align: center;\">Walk &amp; relax in our beautiful gardens.</h3>\r\n[/fusion_text][/two_third][one_sixth last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][/one_sixth][recent_works layout=\"grid\" picture_size=\"auto\" boxed_text=\"boxed\" filters=\"no\" columns=\"3\" column_spacing=\"12\" cat_slug=\"gardens\" exclude_cats=\"\" number_posts=\"9\" offset=\"\" excerpt_length=\"35\" strip_html=\"yes\" carousel_layout=\"title_on_rollover\" scroll_items=\"\" autoplay=\"no\" show_nav=\"yes\" mouse_scroll=\"no\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" class=\"\" id=\"\"][/recent_works][/fullwidth][fullwidth background_color=\"#ffffff\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"65px\" padding_bottom=\"65px\" padding_left=\"0px\" padding_right=\"0px\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][button link=\"http://localhost/assagaylodge/book-now/\" color=\"default\" size=\"xlarge\"  type=\"3d\" shape=\"round\" target=\"_self\" title=\"\" gradient_colors=\"#f0f0ed|#f0f0ed\" gradient_hover_colors=\"#6666a4|#6666a4\" accent_color=\"#ffffff\" accent_hover_color=\"#ffffff\" bevel_color=\"\" border_width=\"0px\" icon=\"\" icon_position=\"left\" icon_divider=\"no\" modal=\"\" animation_type=\"0\" animation_direction=\"left\" animation_speed=\"1\" alignment=\"center\" class=\"\" id=\"\"]Make A Reservation Enquiry[/button][/fullwidth][menu_anchor name=\"\"][modal name=\"\" title=\"\" size=\"\" background=\"\" border_color=\"\" show_footer=\"\" class=\"\" id=\"\"][/modal][modal name=\"\" title=\"\" size=\"\" background=\"\" border_color=\"\" show_footer=\"\" class=\"\" id=\"\"][/modal][modal name=\"\" title=\"\" size=\"\" background=\"\" border_color=\"\" show_footer=\"\" class=\"\" id=\"\"][/modal][modal name=\"\" title=\"\" size=\"\" background=\"\" border_color=\"\" show_footer=\"\" class=\"\" id=\"\"][/modal]', 'Home', '', 'inherit', 'closed', 'closed', '', '7-revision-v1', '', '', '2015-09-12 10:00:44', '2015-09-12 08:00:44', '', 7, 'http://localhost/assagaylodge/7-revision-v1/', 0, 'revision', '', 0),
(1037, 1, '2015-09-12 10:24:51', '2015-09-12 08:24:51', '[fullwidth background_color=\"#f0f0ed\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"90px\" padding_bottom=\"0px\" padding_left=\"0px\" padding_right=\"0px\" hundred_percent=\"yes\" equal_height_columns=\"yes\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][one_half last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"http://localhost/assagaylodge/wp-content/uploads/2015/08/Tha-Lodge.jpg\" background_repeat=\"no-repeat\" background_position=\"center center\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" class=\"\" id=\"\"][/one_half][one_half last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"30px\" margin_top=\"\" margin_bottom=\"0px\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" class=\"special\" id=\"\"][fusion_text]\r\n<h1>5 BEDROOM FAMILY LODGE</h1>\r\n[/fusion_text][separator style_type=\"single\" top_margin=\"0\" bottom_margin=\"30\" sep_color=\"#000000\" border_size=\"\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"170px\" alignment=\"left\" class=\"separator-left\" id=\"\"][modal name=\"rates\" title=\"2015 Rates\" size=\"small\" background=\"\" border_color=\"\" show_footer=\"yes\" class=\"\" id=\"\"]<p>\r\n<strong>Full House </strong>- per night:<br />R3500 (R350 per person)</p>\r\n<p><strong>Self-Catering </strong>- per room per night:<br />Single R650<br />Sharing R990 (R495 per person)</p>\r\n<p><strong>Bed & Breakfast </strong>- per room per night:<br />Single R725<br />Sharing R1140 (R570 per person)</p>\r\n<p><strong>Lodge % Room Servicing </strong>- per day:<br />R220</p>\r\n[/modal][button link=\"\" color=\"darkgreen\" size=\"\"  type=\"\" shape=\"\" target=\"_self\" title=\"\" gradient_colors=\"|\" gradient_hover_colors=\"|\" accent_color=\"\" accent_hover_color=\"\" bevel_color=\"\" border_width=\"1px\" icon=\"\" icon_position=\"left\" icon_divider=\"no\" modal=\"rates\" animation_type=\"0\" animation_direction=\"left\" animation_speed=\"1\" alignment=\"\" class=\"\" id=\"\"]2015 RATES[/button][/one_half][/fullwidth][menu_anchor name=\"LODGE\"][fullwidth background_color=\"#f0f0ed\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"20\" padding_bottom=\"20\" padding_left=\"0px\" padding_right=\"0px\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][one_half last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][fusion_text]\r\n<p style=\"text-align: justify;\">The property boasts over 200 different species of birds and animals. The Lodge is situated on the 1000 Hills tourism route, on the edge of Hillcrest and is a perfect place from which one can launch to any one of the many fantastic destinations and game reserves in KwaZulu Natal, i.e. the Majestic Drakensberg Mountain Range, Shongweni Nature Reserve, Nagle Dam, Durban &amp; Beach Front. We are also the doorstep of one of KZN’s major horse riding venues namely, the Shongweni Horse Riding Club &amp; the Summerveld Horse Riding Academy, makes Assagay Lodge a perfect home away from home for the equestrian lovers. The peace &amp; tranquility will take you far away from the business of city life. Evenings are quiet and peaceful. This is a unique and memorable country experience.</p>\r\n[/fusion_text][/one_half][one_half last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][fusion_text]\r\n<p style=\"text-align: justify;\">We are a homely \'down to earth\' country guest lodge, set on a farm surrounded by acres of beautiful hills, forests, &amp; dams in the Madwala Conservancy of Assagay, where horses still have the right of way on all roads. Our five bedrooms have a rustic charm offering the comforts of modern day life.</p>\r\n<p style=\"text-align: justify;\">Assagay Forest Lodge is owner managed, built in 2005 the lodge provides 5 cozy bedrooms with a large spacious and comfortable homely lounge, which leads onto a large deck area. Set on a 6 acre property in the Assagay Conservancy our lodge is nestled around trees, bushes, and beautiful gardens and a stream, allowing visitors to meander and relax. Guests seeking a quite, relaxing, homely experience will find our lodge the perfect choice away from home. There is a kitchen available should you wish to muster up a snack or quick meal, however breakfast is available on request.</p>\r\n[/fusion_text][/one_half][/fullwidth][fullwidth background_color=\"#f0f0ed\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"20\" padding_bottom=\"20\" padding_left=\"0px\" padding_right=\"0px\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][fusion_text]\r\n<h1 style=\"text-align: center;\">Gallery</h1>\r\n[/fusion_text][separator style_type=\"single\" top_margin=\"\" bottom_margin=\"40\" sep_color=\"#000000\" border_size=\"\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"170px\" alignment=\"\" class=\"\" id=\"\"][one_sixth last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][/one_sixth][two_third last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][fusion_text]\r\n<h3 style=\"text-align: center;\">The Lodge is open, spacious, comfortable and homely.</h3>\r\n[/fusion_text][/two_third][one_sixth last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][/one_sixth][/fullwidth][fullwidth background_color=\"#f0f0ed\" background_image=\"http://localhost/assagaylodge/wp-content/uploads/2015/01/rustic-wood-floor-texture-1-800-x-563.jpg\" background_parallax=\"fixed\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"30\" padding_bottom=\"10\" padding_left=\"0\" padding_right=\"0\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][recent_works layout=\"grid\" picture_size=\"auto\" boxed_text=\"unboxed\" filters=\"no\" columns=\"3\" column_spacing=\"12\" cat_slug=\"the-lodge\" exclude_cats=\"\" number_posts=\"9\" offset=\"\" excerpt_length=\"35\" strip_html=\"yes\" carousel_layout=\"title_on_rollover\" scroll_items=\"\" autoplay=\"no\" show_nav=\"yes\" mouse_scroll=\"no\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" class=\"\" id=\"\"][/recent_works][/fullwidth][fullwidth background_color=\"#f0f0ed\" background_image=\"\" background_parallax=\"fixed\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"20\" padding_bottom=\"20\" padding_left=\"0px\" padding_right=\"0px\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][menu_anchor name=\"BEDROOMS\"][fusion_text]\r\n<h1 style=\"text-align: center;\">BEDROOMS</h1>\r\n[/fusion_text][separator style_type=\"single\" top_margin=\"\" bottom_margin=\"20\" sep_color=\"#000000\" border_size=\"\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"170px\" alignment=\"\" class=\"\" id=\"\"][one_sixth last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][/one_sixth][two_third last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][fusion_text]\r\n<h3 style=\"text-align: justify;\">When it comes to our bedrooms we’re proud to say we’re different. We offer something a little more special.</h3>\r\n<h3 style=\"text-align: justify;\">Our five bedrooms are all en-suite and equipped with either king size or queen size beds. Each room sleeps two guests. The rooms have high ceilings, wall heaters &amp; ceiling fans. Beds all have electric blankets in Winter, 100% cotton percale sheets and thick hyper allergenic microfiber duvets and pillows.</h3>\r\n[/fusion_text][/two_third][one_sixth last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][/one_sixth][/fullwidth][fullwidth background_color=\"\" background_image=\"http://localhost/assagaylodge/wp-content/uploads/2015/01/DSC01516-1148-x-764.jpg\" background_parallax=\"fixed\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"center center\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"20\" padding_bottom=\"20\" padding_left=\"0\" padding_right=\"0\" hundred_percent=\"no\" equal_height_columns=\"yes\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][recent_works layout=\"grid\" picture_size=\"auto\" boxed_text=\"unboxed\" filters=\"no\" columns=\"3\" column_spacing=\"12\" cat_slug=\"bedrooms\" exclude_cats=\"\" number_posts=\"6\" offset=\"\" excerpt_length=\"35\" strip_html=\"yes\" carousel_layout=\"title_on_rollover\" scroll_items=\"\" autoplay=\"no\" show_nav=\"yes\" mouse_scroll=\"no\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" class=\"\" id=\"\"][/recent_works][/fullwidth][fullwidth background_color=\"#f0f0ed\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"20\" padding_bottom=\"20\" padding_left=\"0\" padding_right=\"0\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][menu_anchor name=\"GARDENS\"][fusion_text]\r\n<h1 style=\"text-align: center;\">GARDENS</h1>\r\n[/fusion_text][separator style_type=\"none\" top_margin=\"40\" bottom_margin=\"\" sep_color=\"\" border_size=\"\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"100%\" alignment=\"center\" class=\"\" id=\"\"][one_sixth last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][/one_sixth][two_third last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][fusion_text]\r\n<h3 style=\"text-align: center;\">Walk &amp; relax in our beautiful gardens.</h3>\r\n[/fusion_text][/two_third][one_sixth last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][/one_sixth][recent_works layout=\"grid\" picture_size=\"auto\" boxed_text=\"boxed\" filters=\"no\" columns=\"3\" column_spacing=\"12\" cat_slug=\"gardens\" exclude_cats=\"\" number_posts=\"9\" offset=\"\" excerpt_length=\"35\" strip_html=\"yes\" carousel_layout=\"title_on_rollover\" scroll_items=\"\" autoplay=\"no\" show_nav=\"yes\" mouse_scroll=\"no\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" class=\"\" id=\"\"][/recent_works][/fullwidth][fullwidth background_color=\"#ffffff\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"65px\" padding_bottom=\"65px\" padding_left=\"0px\" padding_right=\"0px\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][button link=\"http://localhost/assagaylodge/book-now/\" color=\"default\" size=\"xlarge\"  type=\"3d\" shape=\"round\" target=\"_self\" title=\"\" gradient_colors=\"#f0f0ed|#f0f0ed\" gradient_hover_colors=\"#6666a4|#6666a4\" accent_color=\"#ffffff\" accent_hover_color=\"#ffffff\" bevel_color=\"\" border_width=\"0px\" icon=\"\" icon_position=\"left\" icon_divider=\"no\" modal=\"\" animation_type=\"0\" animation_direction=\"left\" animation_speed=\"1\" alignment=\"center\" class=\"\" id=\"\"]Make A Reservation Enquiry[/button][/fullwidth][menu_anchor name=\"\"][modal name=\"\" title=\"\" size=\"\" background=\"\" border_color=\"\" show_footer=\"\" class=\"\" id=\"\"][/modal][modal name=\"\" title=\"\" size=\"\" background=\"\" border_color=\"\" show_footer=\"\" class=\"\" id=\"\"][/modal][modal name=\"\" title=\"\" size=\"\" background=\"\" border_color=\"\" show_footer=\"\" class=\"\" id=\"\"][/modal][modal name=\"\" title=\"\" size=\"\" background=\"\" border_color=\"\" show_footer=\"\" class=\"\" id=\"\"][/modal]', 'Home', '', 'inherit', 'closed', 'closed', '', '7-revision-v1', '', '', '2015-09-12 10:24:51', '2015-09-12 08:24:51', '', 7, 'http://localhost/assagaylodge/7-revision-v1/', 0, 'revision', '', 0);
INSERT INTO `wp_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(1039, 1, '2015-09-12 10:44:13', '2015-09-12 08:44:13', '[fullwidth background_color=\"#f0f0ed\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"90px\" padding_bottom=\"0px\" padding_left=\"0px\" padding_right=\"0px\" hundred_percent=\"yes\" equal_height_columns=\"yes\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][one_half last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"http://localhost/assagaylodge/wp-content/uploads/2015/08/Tha-Lodge.jpg\" background_repeat=\"no-repeat\" background_position=\"center center\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" class=\"\" id=\"\"][/one_half][one_half last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"30px\" margin_top=\"\" margin_bottom=\"0px\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" class=\"special\" id=\"\"][fusion_text]\r\n<h1>5 BEDROOM FAMILY LODGE</h1>\r\n[/fusion_text][separator style_type=\"single\" top_margin=\"0\" bottom_margin=\"30\" sep_color=\"#000000\" border_size=\"\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"170px\" alignment=\"left\" class=\"separator-left\" id=\"\"][modal name=\"rates\" title=\"2015 Rates\" size=\"small\" background=\"\" border_color=\"\" show_footer=\"yes\" class=\"\" id=\"\"]<p>\r\n<strong>Full House </strong>- per night:<br />R3500 (R350 per person)</p>\r\n<p><strong>Self-Catering </strong>- per room per night:<br />Single R650<br />Sharing R990 (R495 per person)</p>\r\n<p><strong>Bed & Breakfast </strong>- per room per night:<br />Single R725<br />Sharing R1140 (R570 per person)</p>\r\n<p><strong>Lodge % Room Servicing </strong>- per day:<br />R220</p>\r\n[/modal][button link=\"\" color=\"darkgreen\" size=\"\"  type=\"\" shape=\"\" target=\"_self\" title=\"\" gradient_colors=\"|\" gradient_hover_colors=\"|\" accent_color=\"\" accent_hover_color=\"\" bevel_color=\"\" border_width=\"1px\" icon=\"\" icon_position=\"left\" icon_divider=\"no\" modal=\"rates\" animation_type=\"0\" animation_direction=\"left\" animation_speed=\"1\" alignment=\"\" class=\"\" id=\"\"]2015 RATES[/button][/one_half][/fullwidth][menu_anchor name=\"LODGE\"][fullwidth background_color=\"#f0f0ed\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"20\" padding_bottom=\"20\" padding_left=\"0px\" padding_right=\"0px\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][one_half last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][fusion_text]\r\n<p style=\"text-align: justify;\">The property boasts over 200 different species of birds and animals. The Lodge is situated on the 1000 Hills tourism route, on the edge of Hillcrest and is a perfect place from which one can launch to any one of the many fantastic destinations and game reserves in KwaZulu Natal, i.e. the Majestic Drakensberg Mountain Range, Shongweni Nature Reserve, Nagle Dam, Durban &amp; Beach Front. We are also the doorstep of one of KZN’s major horse riding venues namely, the Shongweni Horse Riding Club &amp; the Summerveld Horse Riding Academy, makes Assagay Lodge a perfect home away from home for the equestrian lovers. The peace &amp; tranquility will take you far away from the business of city life. Evenings are quiet and peaceful. This is a unique and memorable country experience.</p>\r\n[/fusion_text][/one_half][one_half last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][fusion_text]\r\n<p style=\"text-align: justify;\">We are a homely \'down to earth\' country guest lodge, set on a farm surrounded by acres of beautiful hills, forests, &amp; dams in the Madwala Conservancy of Assagay, where horses still have the right of way on all roads. Our five bedrooms have a rustic charm offering the comforts of modern day life.</p>\r\n<p style=\"text-align: justify;\">Assagay Forest Lodge is owner managed, built in 2005 the lodge provides 5 cozy bedrooms with a large spacious and comfortable homely lounge, which leads onto a large deck area. Set on a 6 acre property in the Assagay Conservancy our lodge is nestled around trees, bushes, and beautiful gardens and a stream, allowing visitors to meander and relax. Guests seeking a quite, relaxing, homely experience will find our lodge the perfect choice away from home. There is a kitchen available should you wish to muster up a snack or quick meal, however breakfast is available on request.</p>\r\n[/fusion_text][/one_half][/fullwidth][fullwidth background_color=\"#f0f0ed\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"20\" padding_bottom=\"20\" padding_left=\"0px\" padding_right=\"0px\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][fusion_text]\r\n<h1 style=\"text-align: center;\">Gallery</h1>\r\n[/fusion_text][separator style_type=\"single\" top_margin=\"\" bottom_margin=\"40\" sep_color=\"#000000\" border_size=\"\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"170px\" alignment=\"\" class=\"\" id=\"\"][one_sixth last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][/one_sixth][two_third last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][fusion_text]\r\n<h3 style=\"text-align: center;\">The Lodge is open, spacious, comfortable and homely.</h3>\r\n[/fusion_text][/two_third][one_sixth last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][/one_sixth][/fullwidth][fullwidth background_color=\"#f0f0ed\" background_image=\"http://localhost/assagaylodge/wp-content/uploads/2015/01/bark-texture.jpg\" background_parallax=\"fixed\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"30\" padding_bottom=\"10\" padding_left=\"0\" padding_right=\"0\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][recent_works layout=\"grid\" picture_size=\"auto\" boxed_text=\"unboxed\" filters=\"no\" columns=\"3\" column_spacing=\"12\" cat_slug=\"the-lodge\" exclude_cats=\"\" number_posts=\"9\" offset=\"\" excerpt_length=\"35\" strip_html=\"yes\" carousel_layout=\"title_on_rollover\" scroll_items=\"\" autoplay=\"no\" show_nav=\"yes\" mouse_scroll=\"no\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" class=\"\" id=\"\"][/recent_works][/fullwidth][fullwidth background_color=\"#f0f0ed\" background_image=\"\" background_parallax=\"fixed\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"20\" padding_bottom=\"20\" padding_left=\"0px\" padding_right=\"0px\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][menu_anchor name=\"BEDROOMS\"][fusion_text]\r\n<h1 style=\"text-align: center;\">BEDROOMS</h1>\r\n[/fusion_text][separator style_type=\"single\" top_margin=\"\" bottom_margin=\"20\" sep_color=\"#000000\" border_size=\"\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"170px\" alignment=\"\" class=\"\" id=\"\"][one_sixth last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][/one_sixth][two_third last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][fusion_text]\r\n<h3 style=\"text-align: justify;\">When it comes to our bedrooms we’re proud to say we’re different. We offer something a little more special.</h3>\r\n<h3 style=\"text-align: justify;\">Our five bedrooms are all en-suite and equipped with either king size or queen size beds. Each room sleeps two guests. The rooms have high ceilings, wall heaters &amp; ceiling fans. Beds all have electric blankets in Winter, 100% cotton percale sheets and thick hyper allergenic microfiber duvets and pillows.</h3>\r\n[/fusion_text][/two_third][one_sixth last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][/one_sixth][/fullwidth][fullwidth background_color=\"\" background_image=\"http://localhost/assagaylodge/wp-content/uploads/2015/01/DSC01516-1148-x-764.jpg\" background_parallax=\"fixed\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"center center\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"20\" padding_bottom=\"20\" padding_left=\"0\" padding_right=\"0\" hundred_percent=\"no\" equal_height_columns=\"yes\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][recent_works layout=\"grid\" picture_size=\"auto\" boxed_text=\"unboxed\" filters=\"no\" columns=\"3\" column_spacing=\"12\" cat_slug=\"bedrooms\" exclude_cats=\"\" number_posts=\"6\" offset=\"\" excerpt_length=\"35\" strip_html=\"yes\" carousel_layout=\"title_on_rollover\" scroll_items=\"\" autoplay=\"no\" show_nav=\"yes\" mouse_scroll=\"no\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" class=\"\" id=\"\"][/recent_works][/fullwidth][fullwidth background_color=\"#f0f0ed\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"20\" padding_bottom=\"20\" padding_left=\"0\" padding_right=\"0\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][menu_anchor name=\"GARDENS\"][fusion_text]\r\n<h1 style=\"text-align: center;\">GARDENS</h1>\r\n[/fusion_text][separator style_type=\"none\" top_margin=\"40\" bottom_margin=\"\" sep_color=\"\" border_size=\"\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"100%\" alignment=\"center\" class=\"\" id=\"\"][one_sixth last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][/one_sixth][two_third last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][fusion_text]\r\n<h3 style=\"text-align: center;\">Walk &amp; relax in our beautiful gardens.</h3>\r\n[/fusion_text][/two_third][one_sixth last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][/one_sixth][recent_works layout=\"grid\" picture_size=\"auto\" boxed_text=\"boxed\" filters=\"no\" columns=\"3\" column_spacing=\"12\" cat_slug=\"gardens\" exclude_cats=\"\" number_posts=\"9\" offset=\"\" excerpt_length=\"35\" strip_html=\"yes\" carousel_layout=\"title_on_rollover\" scroll_items=\"\" autoplay=\"no\" show_nav=\"yes\" mouse_scroll=\"no\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" class=\"\" id=\"\"][/recent_works][/fullwidth][fullwidth background_color=\"#ffffff\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"65px\" padding_bottom=\"65px\" padding_left=\"0px\" padding_right=\"0px\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][button link=\"http://localhost/assagaylodge/book-now/\" color=\"default\" size=\"xlarge\"  type=\"3d\" shape=\"round\" target=\"_self\" title=\"\" gradient_colors=\"#f0f0ed|#f0f0ed\" gradient_hover_colors=\"#6666a4|#6666a4\" accent_color=\"#ffffff\" accent_hover_color=\"#ffffff\" bevel_color=\"\" border_width=\"0px\" icon=\"\" icon_position=\"left\" icon_divider=\"no\" modal=\"\" animation_type=\"0\" animation_direction=\"left\" animation_speed=\"1\" alignment=\"center\" class=\"\" id=\"\"]Make A Reservation Enquiry[/button][/fullwidth][menu_anchor name=\"\"][modal name=\"\" title=\"\" size=\"\" background=\"\" border_color=\"\" show_footer=\"\" class=\"\" id=\"\"][/modal][modal name=\"\" title=\"\" size=\"\" background=\"\" border_color=\"\" show_footer=\"\" class=\"\" id=\"\"][/modal][modal name=\"\" title=\"\" size=\"\" background=\"\" border_color=\"\" show_footer=\"\" class=\"\" id=\"\"][/modal][modal name=\"\" title=\"\" size=\"\" background=\"\" border_color=\"\" show_footer=\"\" class=\"\" id=\"\"][/modal]', 'Home', '', 'inherit', 'closed', 'closed', '', '7-revision-v1', '', '', '2015-09-12 10:44:13', '2015-09-12 08:44:13', '', 7, 'http://localhost/assagaylodge/7-revision-v1/', 0, 'revision', '', 0),
(1041, 1, '2015-09-12 10:47:20', '2015-09-12 08:47:20', '[fullwidth background_color=\"#f0f0ed\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"90px\" padding_bottom=\"0px\" padding_left=\"0px\" padding_right=\"0px\" hundred_percent=\"yes\" equal_height_columns=\"yes\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][one_half last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"http://localhost/assagaylodge/wp-content/uploads/2015/08/Tha-Lodge.jpg\" background_repeat=\"no-repeat\" background_position=\"center center\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" class=\"\" id=\"\"][/one_half][one_half last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"30px\" margin_top=\"\" margin_bottom=\"0px\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" class=\"special\" id=\"\"][fusion_text]\r\n<h1>5 BEDROOM FAMILY LODGE</h1>\r\n[/fusion_text][separator style_type=\"single\" top_margin=\"0\" bottom_margin=\"30\" sep_color=\"#000000\" border_size=\"\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"170px\" alignment=\"left\" class=\"separator-left\" id=\"\"][modal name=\"rates\" title=\"2015 Rates\" size=\"small\" background=\"\" border_color=\"\" show_footer=\"yes\" class=\"\" id=\"\"]<p>\r\n<strong>Full House </strong>- per night:<br />R3500 (R350 per person)</p>\r\n<p><strong>Self-Catering </strong>- per room per night:<br />Single R650<br />Sharing R990 (R495 per person)</p>\r\n<p><strong>Bed & Breakfast </strong>- per room per night:<br />Single R725<br />Sharing R1140 (R570 per person)</p>\r\n<p><strong>Lodge % Room Servicing </strong>- per day:<br />R220</p>\r\n[/modal][button link=\"\" color=\"darkgreen\" size=\"\"  type=\"\" shape=\"\" target=\"_self\" title=\"\" gradient_colors=\"|\" gradient_hover_colors=\"|\" accent_color=\"\" accent_hover_color=\"\" bevel_color=\"\" border_width=\"1px\" icon=\"\" icon_position=\"left\" icon_divider=\"no\" modal=\"rates\" animation_type=\"0\" animation_direction=\"left\" animation_speed=\"1\" alignment=\"\" class=\"\" id=\"\"]2015 RATES[/button][/one_half][/fullwidth][menu_anchor name=\"LODGE\"][fullwidth background_color=\"#f0f0ed\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"20\" padding_bottom=\"20\" padding_left=\"0px\" padding_right=\"0px\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][one_half last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][fusion_text]\r\n<p style=\"text-align: justify;\">The property boasts over 200 different species of birds and animals. The Lodge is situated on the 1000 Hills tourism route, on the edge of Hillcrest and is a perfect place from which one can launch to any one of the many fantastic destinations and game reserves in KwaZulu Natal, i.e. the Majestic Drakensberg Mountain Range, Shongweni Nature Reserve, Nagle Dam, Durban &amp; Beach Front. We are also the doorstep of one of KZN’s major horse riding venues namely, the Shongweni Horse Riding Club &amp; the Summerveld Horse Riding Academy, makes Assagay Lodge a perfect home away from home for the equestrian lovers. The peace &amp; tranquility will take you far away from the business of city life. Evenings are quiet and peaceful. This is a unique and memorable country experience.</p>\r\n[/fusion_text][/one_half][one_half last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][fusion_text]\r\n<p style=\"text-align: justify;\">We are a homely \'down to earth\' country guest lodge, set on a farm surrounded by acres of beautiful hills, forests, &amp; dams in the Madwala Conservancy of Assagay, where horses still have the right of way on all roads. Our five bedrooms have a rustic charm offering the comforts of modern day life.</p>\r\n<p style=\"text-align: justify;\">Assagay Forest Lodge is owner managed, built in 2005 the lodge provides 5 cozy bedrooms with a large spacious and comfortable homely lounge, which leads onto a large deck area. Set on a 6 acre property in the Assagay Conservancy our lodge is nestled around trees, bushes, and beautiful gardens and a stream, allowing visitors to meander and relax. Guests seeking a quite, relaxing, homely experience will find our lodge the perfect choice away from home. There is a kitchen available should you wish to muster up a snack or quick meal, however breakfast is available on request.</p>\r\n[/fusion_text][/one_half][/fullwidth][fullwidth background_color=\"#f0f0ed\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"20\" padding_bottom=\"20\" padding_left=\"0px\" padding_right=\"0px\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][fusion_text]\r\n<h1 style=\"text-align: center;\">Gallery</h1>\r\n[/fusion_text][separator style_type=\"single\" top_margin=\"\" bottom_margin=\"40\" sep_color=\"#000000\" border_size=\"\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"170px\" alignment=\"\" class=\"\" id=\"\"][one_sixth last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][/one_sixth][two_third last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][fusion_text]\r\n<h3 style=\"text-align: center;\">The Lodge is open, spacious, comfortable and homely.</h3>\r\n[/fusion_text][/two_third][one_sixth last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][/one_sixth][/fullwidth][fullwidth background_color=\"#f0f0ed\" background_image=\"http://localhost/assagaylodge/wp-content/uploads/2015/01/bark-texture2.jpg\" background_parallax=\"fixed\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"30\" padding_bottom=\"10\" padding_left=\"0\" padding_right=\"0\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][recent_works layout=\"grid\" picture_size=\"auto\" boxed_text=\"unboxed\" filters=\"no\" columns=\"3\" column_spacing=\"12\" cat_slug=\"the-lodge\" exclude_cats=\"\" number_posts=\"9\" offset=\"\" excerpt_length=\"35\" strip_html=\"yes\" carousel_layout=\"title_on_rollover\" scroll_items=\"\" autoplay=\"no\" show_nav=\"yes\" mouse_scroll=\"no\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" class=\"\" id=\"\"][/recent_works][/fullwidth][fullwidth background_color=\"#f0f0ed\" background_image=\"\" background_parallax=\"fixed\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"20\" padding_bottom=\"20\" padding_left=\"0px\" padding_right=\"0px\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][menu_anchor name=\"BEDROOMS\"][fusion_text]\r\n<h1 style=\"text-align: center;\">BEDROOMS</h1>\r\n[/fusion_text][separator style_type=\"single\" top_margin=\"\" bottom_margin=\"20\" sep_color=\"#000000\" border_size=\"\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"170px\" alignment=\"\" class=\"\" id=\"\"][one_sixth last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][/one_sixth][two_third last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][fusion_text]\r\n<h3 style=\"text-align: justify;\">When it comes to our bedrooms we’re proud to say we’re different. We offer something a little more special.</h3>\r\n<h3 style=\"text-align: justify;\">Our five bedrooms are all en-suite and equipped with either king size or queen size beds. Each room sleeps two guests. The rooms have high ceilings, wall heaters &amp; ceiling fans. Beds all have electric blankets in Winter, 100% cotton percale sheets and thick hyper allergenic microfiber duvets and pillows.</h3>\r\n[/fusion_text][/two_third][one_sixth last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][/one_sixth][/fullwidth][fullwidth background_color=\"\" background_image=\"http://localhost/assagaylodge/wp-content/uploads/2015/01/DSC01516-1148-x-764.jpg\" background_parallax=\"fixed\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"center center\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"20\" padding_bottom=\"20\" padding_left=\"0\" padding_right=\"0\" hundred_percent=\"no\" equal_height_columns=\"yes\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][recent_works layout=\"grid\" picture_size=\"auto\" boxed_text=\"unboxed\" filters=\"no\" columns=\"3\" column_spacing=\"12\" cat_slug=\"bedrooms\" exclude_cats=\"\" number_posts=\"6\" offset=\"\" excerpt_length=\"35\" strip_html=\"yes\" carousel_layout=\"title_on_rollover\" scroll_items=\"\" autoplay=\"no\" show_nav=\"yes\" mouse_scroll=\"no\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" class=\"\" id=\"\"][/recent_works][/fullwidth][fullwidth background_color=\"#f0f0ed\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"20\" padding_bottom=\"20\" padding_left=\"0\" padding_right=\"0\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][menu_anchor name=\"GARDENS\"][fusion_text]\r\n<h1 style=\"text-align: center;\">GARDENS</h1>\r\n[/fusion_text][separator style_type=\"none\" top_margin=\"40\" bottom_margin=\"\" sep_color=\"\" border_size=\"\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"100%\" alignment=\"center\" class=\"\" id=\"\"][one_sixth last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][/one_sixth][two_third last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][fusion_text]\r\n<h3 style=\"text-align: center;\">Walk &amp; relax in our beautiful gardens.</h3>\r\n[/fusion_text][/two_third][one_sixth last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][/one_sixth][recent_works layout=\"grid\" picture_size=\"auto\" boxed_text=\"boxed\" filters=\"no\" columns=\"3\" column_spacing=\"12\" cat_slug=\"gardens\" exclude_cats=\"\" number_posts=\"9\" offset=\"\" excerpt_length=\"35\" strip_html=\"yes\" carousel_layout=\"title_on_rollover\" scroll_items=\"\" autoplay=\"no\" show_nav=\"yes\" mouse_scroll=\"no\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" class=\"\" id=\"\"][/recent_works][/fullwidth][fullwidth background_color=\"#ffffff\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"65px\" padding_bottom=\"65px\" padding_left=\"0px\" padding_right=\"0px\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][button link=\"http://localhost/assagaylodge/book-now/\" color=\"default\" size=\"xlarge\"  type=\"3d\" shape=\"round\" target=\"_self\" title=\"\" gradient_colors=\"#f0f0ed|#f0f0ed\" gradient_hover_colors=\"#6666a4|#6666a4\" accent_color=\"#ffffff\" accent_hover_color=\"#ffffff\" bevel_color=\"\" border_width=\"0px\" icon=\"\" icon_position=\"left\" icon_divider=\"no\" modal=\"\" animation_type=\"0\" animation_direction=\"left\" animation_speed=\"1\" alignment=\"center\" class=\"\" id=\"\"]Make A Reservation Enquiry[/button][/fullwidth][menu_anchor name=\"\"][modal name=\"\" title=\"\" size=\"\" background=\"\" border_color=\"\" show_footer=\"\" class=\"\" id=\"\"][/modal][modal name=\"\" title=\"\" size=\"\" background=\"\" border_color=\"\" show_footer=\"\" class=\"\" id=\"\"][/modal][modal name=\"\" title=\"\" size=\"\" background=\"\" border_color=\"\" show_footer=\"\" class=\"\" id=\"\"][/modal][modal name=\"\" title=\"\" size=\"\" background=\"\" border_color=\"\" show_footer=\"\" class=\"\" id=\"\"][/modal]', 'Home', '', 'inherit', 'closed', 'closed', '', '7-revision-v1', '', '', '2015-09-12 10:47:20', '2015-09-12 08:47:20', '', 7, 'http://localhost/assagaylodge/7-revision-v1/', 0, 'revision', '', 0),
(1042, 1, '2015-09-12 10:52:39', '2015-09-12 08:52:39', '', 'Wood_Texture', '', 'inherit', 'open', 'closed', '', 'wood_texture', '', '', '2015-09-12 10:52:39', '2015-09-12 08:52:39', '', 7, 'http://localhost/assagaylodge/wp-content/uploads/2015/01/Wood_Texture.jpg', 0, 'attachment', 'image/jpeg', 0);
INSERT INTO `wp_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(1043, 1, '2015-09-12 10:53:28', '2015-09-12 08:53:28', '[fullwidth background_color=\"#f0f0ed\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"90px\" padding_bottom=\"0px\" padding_left=\"0px\" padding_right=\"0px\" hundred_percent=\"yes\" equal_height_columns=\"yes\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][one_half last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"http://localhost/assagaylodge/wp-content/uploads/2015/08/Tha-Lodge.jpg\" background_repeat=\"no-repeat\" background_position=\"center center\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" class=\"\" id=\"\"][/one_half][one_half last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"30px\" margin_top=\"\" margin_bottom=\"0px\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" class=\"special\" id=\"\"][fusion_text]\r\n<h1>5 BEDROOM FAMILY LODGE</h1>\r\n[/fusion_text][separator style_type=\"single\" top_margin=\"0\" bottom_margin=\"30\" sep_color=\"#000000\" border_size=\"\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"170px\" alignment=\"left\" class=\"separator-left\" id=\"\"][modal name=\"rates\" title=\"2015 Rates\" size=\"small\" background=\"\" border_color=\"\" show_footer=\"yes\" class=\"\" id=\"\"]<p>\r\n<strong>Full House </strong>- per night:<br />R3500 (R350 per person)</p>\r\n<p><strong>Self-Catering </strong>- per room per night:<br />Single R650<br />Sharing R990 (R495 per person)</p>\r\n<p><strong>Bed & Breakfast </strong>- per room per night:<br />Single R725<br />Sharing R1140 (R570 per person)</p>\r\n<p><strong>Lodge % Room Servicing </strong>- per day:<br />R220</p>\r\n[/modal][button link=\"\" color=\"darkgreen\" size=\"\"  type=\"\" shape=\"\" target=\"_self\" title=\"\" gradient_colors=\"|\" gradient_hover_colors=\"|\" accent_color=\"\" accent_hover_color=\"\" bevel_color=\"\" border_width=\"1px\" icon=\"\" icon_position=\"left\" icon_divider=\"no\" modal=\"rates\" animation_type=\"0\" animation_direction=\"left\" animation_speed=\"1\" alignment=\"\" class=\"\" id=\"\"]2015 RATES[/button][/one_half][/fullwidth][menu_anchor name=\"LODGE\"][fullwidth background_color=\"#f0f0ed\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"20\" padding_bottom=\"20\" padding_left=\"0px\" padding_right=\"0px\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][one_half last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][fusion_text]\r\n<p style=\"text-align: justify;\">The property boasts over 200 different species of birds and animals. The Lodge is situated on the 1000 Hills tourism route, on the edge of Hillcrest and is a perfect place from which one can launch to any one of the many fantastic destinations and game reserves in KwaZulu Natal, i.e. the Majestic Drakensberg Mountain Range, Shongweni Nature Reserve, Nagle Dam, Durban &amp; Beach Front. We are also the doorstep of one of KZN’s major horse riding venues namely, the Shongweni Horse Riding Club &amp; the Summerveld Horse Riding Academy, makes Assagay Lodge a perfect home away from home for the equestrian lovers. The peace &amp; tranquility will take you far away from the business of city life. Evenings are quiet and peaceful. This is a unique and memorable country experience.</p>\r\n[/fusion_text][/one_half][one_half last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][fusion_text]\r\n<p style=\"text-align: justify;\">We are a homely \'down to earth\' country guest lodge, set on a farm surrounded by acres of beautiful hills, forests, &amp; dams in the Madwala Conservancy of Assagay, where horses still have the right of way on all roads. Our five bedrooms have a rustic charm offering the comforts of modern day life.</p>\r\n<p style=\"text-align: justify;\">Assagay Forest Lodge is owner managed, built in 2005 the lodge provides 5 cozy bedrooms with a large spacious and comfortable homely lounge, which leads onto a large deck area. Set on a 6 acre property in the Assagay Conservancy our lodge is nestled around trees, bushes, and beautiful gardens and a stream, allowing visitors to meander and relax. Guests seeking a quite, relaxing, homely experience will find our lodge the perfect choice away from home. There is a kitchen available should you wish to muster up a snack or quick meal, however breakfast is available on request.</p>\r\n[/fusion_text][/one_half][/fullwidth][fullwidth background_color=\"#f0f0ed\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"20\" padding_bottom=\"20\" padding_left=\"0px\" padding_right=\"0px\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][fusion_text]\r\n<h1 style=\"text-align: center;\">Gallery</h1>\r\n[/fusion_text][separator style_type=\"single\" top_margin=\"\" bottom_margin=\"40\" sep_color=\"#000000\" border_size=\"\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"170px\" alignment=\"\" class=\"\" id=\"\"][one_sixth last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][/one_sixth][two_third last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][fusion_text]\r\n<h3 style=\"text-align: center;\">The Lodge is open, spacious, comfortable and homely.</h3>\r\n[/fusion_text][/two_third][one_sixth last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][/one_sixth][/fullwidth][fullwidth background_color=\"#f0f0ed\" background_image=\"http://localhost/assagaylodge/wp-content/uploads/2015/01/Wood_Texture.jpg\" background_parallax=\"fixed\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"30\" padding_bottom=\"10\" padding_left=\"0\" padding_right=\"0\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][recent_works layout=\"grid\" picture_size=\"auto\" boxed_text=\"unboxed\" filters=\"no\" columns=\"3\" column_spacing=\"12\" cat_slug=\"the-lodge\" exclude_cats=\"\" number_posts=\"9\" offset=\"\" excerpt_length=\"35\" strip_html=\"yes\" carousel_layout=\"title_on_rollover\" scroll_items=\"\" autoplay=\"no\" show_nav=\"yes\" mouse_scroll=\"no\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" class=\"\" id=\"\"][/recent_works][/fullwidth][fullwidth background_color=\"#f0f0ed\" background_image=\"\" background_parallax=\"fixed\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"20\" padding_bottom=\"20\" padding_left=\"0px\" padding_right=\"0px\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][menu_anchor name=\"BEDROOMS\"][fusion_text]\r\n<h1 style=\"text-align: center;\">BEDROOMS</h1>\r\n[/fusion_text][separator style_type=\"single\" top_margin=\"\" bottom_margin=\"20\" sep_color=\"#000000\" border_size=\"\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"170px\" alignment=\"\" class=\"\" id=\"\"][one_sixth last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][/one_sixth][two_third last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][fusion_text]\r\n<h3 style=\"text-align: justify;\">When it comes to our bedrooms we’re proud to say we’re different. We offer something a little more special.</h3>\r\n<h3 style=\"text-align: justify;\">Our five bedrooms are all en-suite and equipped with either king size or queen size beds. Each room sleeps two guests. The rooms have high ceilings, wall heaters &amp; ceiling fans. Beds all have electric blankets in Winter, 100% cotton percale sheets and thick hyper allergenic microfiber duvets and pillows.</h3>\r\n[/fusion_text][/two_third][one_sixth last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][/one_sixth][/fullwidth][fullwidth background_color=\"\" background_image=\"http://localhost/assagaylodge/wp-content/uploads/2015/01/DSC01516-1148-x-764.jpg\" background_parallax=\"fixed\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"center center\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"20\" padding_bottom=\"20\" padding_left=\"0\" padding_right=\"0\" hundred_percent=\"no\" equal_height_columns=\"yes\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][recent_works layout=\"grid\" picture_size=\"auto\" boxed_text=\"unboxed\" filters=\"no\" columns=\"3\" column_spacing=\"12\" cat_slug=\"bedrooms\" exclude_cats=\"\" number_posts=\"6\" offset=\"\" excerpt_length=\"35\" strip_html=\"yes\" carousel_layout=\"title_on_rollover\" scroll_items=\"\" autoplay=\"no\" show_nav=\"yes\" mouse_scroll=\"no\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" class=\"\" id=\"\"][/recent_works][/fullwidth][fullwidth background_color=\"#f0f0ed\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"20\" padding_bottom=\"20\" padding_left=\"0\" padding_right=\"0\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][menu_anchor name=\"GARDENS\"][fusion_text]\r\n<h1 style=\"text-align: center;\">GARDENS</h1>\r\n[/fusion_text][separator style_type=\"none\" top_margin=\"40\" bottom_margin=\"\" sep_color=\"\" border_size=\"\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"100%\" alignment=\"center\" class=\"\" id=\"\"][one_sixth last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][/one_sixth][two_third last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][fusion_text]\r\n<h3 style=\"text-align: center;\">Walk &amp; relax in our beautiful gardens.</h3>\r\n[/fusion_text][/two_third][one_sixth last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][/one_sixth][recent_works layout=\"grid\" picture_size=\"auto\" boxed_text=\"boxed\" filters=\"no\" columns=\"3\" column_spacing=\"12\" cat_slug=\"gardens\" exclude_cats=\"\" number_posts=\"9\" offset=\"\" excerpt_length=\"35\" strip_html=\"yes\" carousel_layout=\"title_on_rollover\" scroll_items=\"\" autoplay=\"no\" show_nav=\"yes\" mouse_scroll=\"no\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" class=\"\" id=\"\"][/recent_works][/fullwidth][fullwidth background_color=\"#ffffff\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"65px\" padding_bottom=\"65px\" padding_left=\"0px\" padding_right=\"0px\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][button link=\"http://localhost/assagaylodge/book-now/\" color=\"default\" size=\"xlarge\"  type=\"3d\" shape=\"round\" target=\"_self\" title=\"\" gradient_colors=\"#f0f0ed|#f0f0ed\" gradient_hover_colors=\"#6666a4|#6666a4\" accent_color=\"#ffffff\" accent_hover_color=\"#ffffff\" bevel_color=\"\" border_width=\"0px\" icon=\"\" icon_position=\"left\" icon_divider=\"no\" modal=\"\" animation_type=\"0\" animation_direction=\"left\" animation_speed=\"1\" alignment=\"center\" class=\"\" id=\"\"]Make A Reservation Enquiry[/button][/fullwidth][menu_anchor name=\"\"][modal name=\"\" title=\"\" size=\"\" background=\"\" border_color=\"\" show_footer=\"\" class=\"\" id=\"\"][/modal][modal name=\"\" title=\"\" size=\"\" background=\"\" border_color=\"\" show_footer=\"\" class=\"\" id=\"\"][/modal][modal name=\"\" title=\"\" size=\"\" background=\"\" border_color=\"\" show_footer=\"\" class=\"\" id=\"\"][/modal][modal name=\"\" title=\"\" size=\"\" background=\"\" border_color=\"\" show_footer=\"\" class=\"\" id=\"\"][/modal]', 'Home', '', 'inherit', 'closed', 'closed', '', '7-revision-v1', '', '', '2015-09-12 10:53:28', '2015-09-12 08:53:28', '', 7, 'http://localhost/assagaylodge/7-revision-v1/', 0, 'revision', '', 0),
(1044, 1, '2015-09-14 23:12:48', '2015-09-14 21:12:48', '[fullwidth background_color=\"#f0f0ed\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"90px\" padding_bottom=\"0px\" padding_left=\"0px\" padding_right=\"0px\" hundred_percent=\"yes\" equal_height_columns=\"yes\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][one_half last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"http://localhost/assagaylodge/wp-content/uploads/2015/08/Tha-Lodge.jpg\" background_repeat=\"no-repeat\" background_position=\"center center\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" class=\"\" id=\"\"][/one_half][one_half last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"30px\" margin_top=\"\" margin_bottom=\"0px\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" class=\"special\" id=\"\"][fusion_text]\r\n<h1>5 BEDROOM FAMILY LODGE</h1>\r\n[/fusion_text][separator style_type=\"single\" top_margin=\"0\" bottom_margin=\"30\" sep_color=\"#000000\" border_size=\"\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"170px\" alignment=\"left\" class=\"separator-left\" id=\"\"][modal name=\"rates\" title=\"2015 Rates\" size=\"small\" background=\"\" border_color=\"\" show_footer=\"yes\" class=\"\" id=\"\"]<p>\r\n<strong>Full House </strong>- per night:<br />R3500 (R350 per person)</p>\r\n<p><strong>Self-Catering </strong>- per room per night:<br />Single R650<br />Sharing R990 (R495 per person)</p>\r\n<p><strong>Bed & Breakfast </strong>- per room per night:<br />Single R725<br />Sharing R1140 (R570 per person)</p>\r\n<p><strong>Lodge % Room Servicing </strong>- per day:<br />R220</p>\r\n[/modal][button link=\"\" color=\"darkgreen\" size=\"\"  type=\"\" shape=\"\" target=\"_self\" title=\"\" gradient_colors=\"|\" gradient_hover_colors=\"|\" accent_color=\"\" accent_hover_color=\"\" bevel_color=\"\" border_width=\"1px\" icon=\"\" icon_position=\"left\" icon_divider=\"no\" modal=\"rates\" animation_type=\"0\" animation_direction=\"left\" animation_speed=\"1\" alignment=\"\" class=\"\" id=\"\"]2015 RATES[/button][/one_half][/fullwidth][menu_anchor name=\"LODGE\"][fullwidth background_color=\"#f0f0ed\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"20\" padding_bottom=\"20\" padding_left=\"0px\" padding_right=\"0px\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][one_half last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][fusion_text]<h3 style=\"text-align: justify;\">The property boasts over 200 different species of birds and animals. The Lodge is situated on the 1000 Hills tourism route, on the edge of Hillcrest and is a perfect place from which one can launch to any one of the many fantastic destinations and game reserves in KwaZulu Natal, i.e. the Majestic Drakensberg Mountain Range, Shongweni Nature Reserve, Nagle Dam, Durban &amp; Beach Front. We are also the doorstep of one of KZN’s major horse riding venues namely, the Shongweni Horse Riding Club &amp; the Summerveld Horse Riding Academy, makes Assagay Lodge a perfect home away from home for the equestrian lovers. The peace &amp; tranquility will take you far away from the business of city life. Evenings are quiet and peaceful. This is a unique and memorable country experience.</h3>[/fusion_text][/one_half][one_half last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][fusion_text]<h3 style=\"text-align: justify;\">We are a homely \'down to earth\' country guest lodge, set on a farm surrounded by acres of beautiful hills, forests, &amp; dams in the Madwala Conservancy of Assagay, where horses still have the right of way on all roads. Our five bedrooms have a rustic charm offering the comforts of modern day life.</h3>\r\n<h3 style=\"text-align: justify;\">Assagay Forest Lodge is owner managed, built in 2005 the lodge provides 5 cozy bedrooms with a large spacious and comfortable homely lounge, which leads onto a large deck area. Set on a 6 acre property in the Assagay Conservancy our lodge is nestled around trees, bushes, and beautiful gardens and a stream, allowing visitors to meander and relax. Guests seeking a quite, relaxing, homely experience will find our lodge the perfect choice away from home. There is a kitchen available should you wish to muster up a snack or quick meal, however breakfast is available on request.</h3>[/fusion_text][/one_half][/fullwidth][fullwidth background_color=\"#f0f0ed\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"20\" padding_bottom=\"20\" padding_left=\"0px\" padding_right=\"0px\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][fusion_text]\r\n<h1 style=\"text-align: center;\">Gallery</h1>\r\n[/fusion_text][separator style_type=\"single\" top_margin=\"\" bottom_margin=\"40\" sep_color=\"#000000\" border_size=\"\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"170px\" alignment=\"\" class=\"\" id=\"\"][one_sixth last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][/one_sixth][two_third last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][fusion_text]\r\n<h3 style=\"text-align: center;\">The Lodge is open, spacious, comfortable and homely.</h3>\r\n[/fusion_text][/two_third][one_sixth last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][/one_sixth][/fullwidth][fullwidth background_color=\"#f0f0ed\" background_image=\"http://localhost/assagaylodge/wp-content/uploads/2015/01/Wood_Texture.jpg\" background_parallax=\"fixed\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"30\" padding_bottom=\"10\" padding_left=\"0\" padding_right=\"0\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][recent_works layout=\"grid\" picture_size=\"auto\" boxed_text=\"unboxed\" filters=\"no\" columns=\"3\" column_spacing=\"12\" cat_slug=\"the-lodge\" exclude_cats=\"\" number_posts=\"9\" offset=\"\" excerpt_length=\"35\" strip_html=\"yes\" carousel_layout=\"title_on_rollover\" scroll_items=\"\" autoplay=\"no\" show_nav=\"yes\" mouse_scroll=\"no\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" class=\"\" id=\"\"][/recent_works][/fullwidth][fullwidth background_color=\"#f0f0ed\" background_image=\"\" background_parallax=\"fixed\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"20\" padding_bottom=\"20\" padding_left=\"0px\" padding_right=\"0px\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][menu_anchor name=\"BEDROOMS\"][fusion_text]\r\n<h1 style=\"text-align: center;\">BEDROOMS</h1>\r\n[/fusion_text][separator style_type=\"single\" top_margin=\"\" bottom_margin=\"20\" sep_color=\"#000000\" border_size=\"\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"170px\" alignment=\"\" class=\"\" id=\"\"][one_sixth last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][/one_sixth][two_third last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][fusion_text]\r\n<h3 style=\"text-align: justify;\">When it comes to our bedrooms we’re proud to say we’re different. We offer something a little more special.</h3>\r\n<h3 style=\"text-align: justify;\">Our five bedrooms are all en-suite and equipped with either king size or queen size beds. Each room sleeps two guests. The rooms have high ceilings, wall heaters &amp; ceiling fans. Beds all have electric blankets in Winter, 100% cotton percale sheets and thick hyper allergenic microfiber duvets and pillows.</h3>\r\n[/fusion_text][/two_third][one_sixth last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][/one_sixth][/fullwidth][fullwidth background_color=\"\" background_image=\"http://localhost/assagaylodge/wp-content/uploads/2015/01/DSC01516-1148-x-764.jpg\" background_parallax=\"fixed\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"center center\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"20\" padding_bottom=\"20\" padding_left=\"0\" padding_right=\"0\" hundred_percent=\"no\" equal_height_columns=\"yes\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][recent_works layout=\"grid\" picture_size=\"auto\" boxed_text=\"unboxed\" filters=\"no\" columns=\"3\" column_spacing=\"12\" cat_slug=\"bedrooms\" exclude_cats=\"\" number_posts=\"6\" offset=\"\" excerpt_length=\"35\" strip_html=\"yes\" carousel_layout=\"title_on_rollover\" scroll_items=\"\" autoplay=\"no\" show_nav=\"yes\" mouse_scroll=\"no\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" class=\"\" id=\"\"][/recent_works][/fullwidth][fullwidth background_color=\"#f0f0ed\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"20\" padding_bottom=\"20\" padding_left=\"0\" padding_right=\"0\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][menu_anchor name=\"GARDENS\"][fusion_text]\r\n<h1 style=\"text-align: center;\">GARDENS</h1>\r\n[/fusion_text][separator style_type=\"none\" top_margin=\"40\" bottom_margin=\"\" sep_color=\"\" border_size=\"\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"100%\" alignment=\"center\" class=\"\" id=\"\"][one_sixth last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][/one_sixth][two_third last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][fusion_text]\r\n<h3 style=\"text-align: center;\">Walk &amp; relax in our beautiful gardens.</h3>\r\n[/fusion_text][/two_third][one_sixth last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][/one_sixth][recent_works layout=\"grid\" picture_size=\"auto\" boxed_text=\"boxed\" filters=\"no\" columns=\"3\" column_spacing=\"12\" cat_slug=\"gardens\" exclude_cats=\"\" number_posts=\"9\" offset=\"\" excerpt_length=\"35\" strip_html=\"yes\" carousel_layout=\"title_on_rollover\" scroll_items=\"\" autoplay=\"no\" show_nav=\"yes\" mouse_scroll=\"no\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" class=\"\" id=\"\"][/recent_works][/fullwidth][fullwidth background_color=\"#ffffff\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"65px\" padding_bottom=\"65px\" padding_left=\"0px\" padding_right=\"0px\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][button link=\"http://localhost/assagaylodge/book-now/\" color=\"default\" size=\"xlarge\"  type=\"3d\" shape=\"round\" target=\"_self\" title=\"\" gradient_colors=\"#f0f0ed|#f0f0ed\" gradient_hover_colors=\"#6666a4|#6666a4\" accent_color=\"#ffffff\" accent_hover_color=\"#ffffff\" bevel_color=\"\" border_width=\"0px\" icon=\"\" icon_position=\"left\" icon_divider=\"no\" modal=\"\" animation_type=\"0\" animation_direction=\"left\" animation_speed=\"1\" alignment=\"center\" class=\"\" id=\"\"]Make A Reservation Enquiry[/button][/fullwidth][menu_anchor name=\"\"][modal name=\"\" title=\"\" size=\"\" background=\"\" border_color=\"\" show_footer=\"\" class=\"\" id=\"\"][/modal][modal name=\"\" title=\"\" size=\"\" background=\"\" border_color=\"\" show_footer=\"\" class=\"\" id=\"\"][/modal][modal name=\"\" title=\"\" size=\"\" background=\"\" border_color=\"\" show_footer=\"\" class=\"\" id=\"\"][/modal][modal name=\"\" title=\"\" size=\"\" background=\"\" border_color=\"\" show_footer=\"\" class=\"\" id=\"\"][/modal]', 'Home', '', 'inherit', 'closed', 'closed', '', '7-revision-v1', '', '', '2015-09-14 23:12:48', '2015-09-14 21:12:48', '', 7, 'http://localhost/assagaylodge/7-revision-v1/', 0, 'revision', '', 0);
INSERT INTO `wp_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(1045, 1, '2015-09-15 09:28:15', '2015-09-15 07:28:15', '[fullwidth background_color=\"#f0f0ed\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"90px\" padding_bottom=\"0px\" padding_left=\"0px\" padding_right=\"0px\" hundred_percent=\"yes\" equal_height_columns=\"yes\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][one_half last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"http://localhost/assagaylodge/wp-content/uploads/2015/08/Tha-Lodge.jpg\" background_repeat=\"no-repeat\" background_position=\"center center\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" class=\"\" id=\"\"][/one_half][one_half last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"30px\" margin_top=\"\" margin_bottom=\"0px\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" class=\"special\" id=\"\"][fusion_text]\r\n<h1>5 BEDROOM FAMILY LODGE</h1>\r\n[/fusion_text][separator style_type=\"single\" top_margin=\"0\" bottom_margin=\"30\" sep_color=\"#000000\" border_size=\"\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"170px\" alignment=\"left\" class=\"separator-left\" id=\"\"][modal name=\"rates\" title=\"2015 Rates\" size=\"large\" background=\"\" border_color=\"\" show_footer=\"yes\" class=\"\" id=\"\"]\r\n\r\n<strong>Full House </strong>- per night:\r\nR2950 (R295 per person)\r\n\r\n<strong>Self-Catering </strong>- per room per night:\r\nSingle R595\r\nSharing R790 (R395 per person)\r\n\r\n<strong>Breakfast </strong>- per person:\r\nR75\r\n\r\n<strong>Lodge &amp; Room Servicing </strong>- per day:\r\nR195\r\n\r\n[/modal][button link=\"\" color=\"darkgreen\" size=\"\" type=\"\" shape=\"\" target=\"_self\" title=\"\" gradient_colors=\"|\" gradient_hover_colors=\"|\" accent_color=\"\" accent_hover_color=\"\" bevel_color=\"\" border_width=\"1px\" icon=\"\" icon_position=\"left\" icon_divider=\"no\" modal=\"rates\" animation_type=\"0\" animation_direction=\"left\" animation_speed=\"1\" alignment=\"\" class=\"\" id=\"\"]2015 RATES[/button][/one_half][/fullwidth][menu_anchor name=\"LODGE\"][fullwidth background_color=\"#f0f0ed\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"20\" padding_bottom=\"20\" padding_left=\"0px\" padding_right=\"0px\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][one_half last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][fusion_text]\r\n<h3 style=\"text-align: justify;\">The property boasts over 200 different species of birds and animals. The Lodge is situated on the 1000 Hills tourism route, on the edge of Hillcrest and is a perfect place from which one can launch to any one of the many fantastic destinations and game reserves in KwaZulu Natal, i.e. the Majestic Drakensberg Mountain Range, Shongweni Nature Reserve, Nagle Dam, Durban &amp; Beach Front. We are also the doorstep of one of KZN’s major horse riding venues namely, the Shongweni Horse Riding Club &amp; the Summerveld Horse Riding Academy, makes Assagay Lodge a perfect home away from home for the equestrian lovers. The peace &amp; tranquility will take you far away from the business of city life. Evenings are quiet and peaceful. This is a unique and memorable country experience.</h3>\r\n[/fusion_text][/one_half][one_half last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][fusion_text]\r\n<h3 style=\"text-align: justify;\">We are a homely \'down to earth\' country guest lodge, set on a farm surrounded by acres of beautiful hills, forests, &amp; dams in the Madwala Conservancy of Assagay, where horses still have the right of way on all roads. Our five bedrooms have a rustic charm offering the comforts of modern day life.</h3>\r\n<h3 style=\"text-align: justify;\">Assagay Forest Lodge is owner managed, built in 2005 the lodge provides 5 cozy bedrooms with a large spacious and comfortable homely lounge, which leads onto a large deck area. Set on a 6 acre property in the Assagay Conservancy our lodge is nestled around trees, bushes, and beautiful gardens and a stream, allowing visitors to meander and relax. Guests seeking a quite, relaxing, homely experience will find our lodge the perfect choice away from home. There is a kitchen available should you wish to muster up a snack or quick meal, however breakfast is available on request.</h3>\r\n[/fusion_text][/one_half][/fullwidth][fullwidth background_color=\"#f0f0ed\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"20\" padding_bottom=\"20\" padding_left=\"0px\" padding_right=\"0px\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][fusion_text]\r\n<h1 style=\"text-align: center;\">Gallery</h1>\r\n[/fusion_text][separator style_type=\"single\" top_margin=\"\" bottom_margin=\"40\" sep_color=\"#000000\" border_size=\"\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"170px\" alignment=\"\" class=\"\" id=\"\"][one_sixth last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][/one_sixth][two_third last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][fusion_text]\r\n<h3 style=\"text-align: center;\">The Lodge is open, spacious, comfortable and homely.</h3>\r\n[/fusion_text][/two_third][one_sixth last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][/one_sixth][/fullwidth][fullwidth background_color=\"#f0f0ed\" background_image=\"http://localhost/assagaylodge/wp-content/uploads/2015/01/Wood_Texture.jpg\" background_parallax=\"fixed\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"30\" padding_bottom=\"10\" padding_left=\"0\" padding_right=\"0\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][recent_works layout=\"grid\" picture_size=\"auto\" boxed_text=\"unboxed\" filters=\"no\" columns=\"3\" column_spacing=\"12\" cat_slug=\"the-lodge\" exclude_cats=\"\" number_posts=\"9\" offset=\"\" excerpt_length=\"35\" strip_html=\"yes\" carousel_layout=\"title_on_rollover\" scroll_items=\"\" autoplay=\"no\" show_nav=\"yes\" mouse_scroll=\"no\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" class=\"\" id=\"\"][/recent_works][/fullwidth][fullwidth background_color=\"#f0f0ed\" background_image=\"\" background_parallax=\"fixed\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"20\" padding_bottom=\"20\" padding_left=\"0px\" padding_right=\"0px\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][menu_anchor name=\"BEDROOMS\"][fusion_text]\r\n<h1 style=\"text-align: center;\">BEDROOMS</h1>\r\n[/fusion_text][separator style_type=\"single\" top_margin=\"\" bottom_margin=\"20\" sep_color=\"#000000\" border_size=\"\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"170px\" alignment=\"\" class=\"\" id=\"\"][one_sixth last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][/one_sixth][two_third last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][fusion_text]\r\n<h3 style=\"text-align: justify;\">When it comes to our bedrooms we’re proud to say we’re different. We offer something a little more special.</h3>\r\n<h3 style=\"text-align: justify;\">Our five bedrooms are all en-suite and equipped with either king size or queen size beds. Each room sleeps two guests. The rooms have high ceilings, wall heaters &amp; ceiling fans. Beds all have electric blankets in Winter, 100% cotton percale sheets and thick hyper allergenic microfiber duvets and pillows.</h3>\r\n[/fusion_text][/two_third][one_sixth last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][/one_sixth][/fullwidth][fullwidth background_color=\"\" background_image=\"http://localhost/assagaylodge/wp-content/uploads/2015/01/DSC01516-1148-x-764.jpg\" background_parallax=\"fixed\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"center center\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"20\" padding_bottom=\"20\" padding_left=\"0\" padding_right=\"0\" hundred_percent=\"no\" equal_height_columns=\"yes\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][recent_works layout=\"grid\" picture_size=\"auto\" boxed_text=\"unboxed\" filters=\"no\" columns=\"3\" column_spacing=\"12\" cat_slug=\"bedrooms\" exclude_cats=\"\" number_posts=\"6\" offset=\"\" excerpt_length=\"35\" strip_html=\"yes\" carousel_layout=\"title_on_rollover\" scroll_items=\"\" autoplay=\"no\" show_nav=\"yes\" mouse_scroll=\"no\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" class=\"\" id=\"\"][/recent_works][/fullwidth][fullwidth background_color=\"#f0f0ed\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"20\" padding_bottom=\"20\" padding_left=\"0\" padding_right=\"0\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][menu_anchor name=\"GARDENS\"][fusion_text]\r\n<h1 style=\"text-align: center;\">GARDENS</h1>\r\n[/fusion_text][separator style_type=\"none\" top_margin=\"40\" bottom_margin=\"\" sep_color=\"\" border_size=\"\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"100%\" alignment=\"center\" class=\"\" id=\"\"][one_sixth last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][/one_sixth][two_third last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][fusion_text]\r\n<h3 style=\"text-align: center;\">Walk &amp; relax in our beautiful gardens.</h3>\r\n[/fusion_text][/two_third][one_sixth last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][/one_sixth][recent_works layout=\"grid\" picture_size=\"auto\" boxed_text=\"boxed\" filters=\"no\" columns=\"3\" column_spacing=\"12\" cat_slug=\"gardens\" exclude_cats=\"\" number_posts=\"9\" offset=\"\" excerpt_length=\"35\" strip_html=\"yes\" carousel_layout=\"title_on_rollover\" scroll_items=\"\" autoplay=\"no\" show_nav=\"yes\" mouse_scroll=\"no\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" class=\"\" id=\"\"][/recent_works][/fullwidth][fullwidth background_color=\"#ffffff\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"65px\" padding_bottom=\"65px\" padding_left=\"0px\" padding_right=\"0px\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][button link=\"http://localhost/assagaylodge/book-now/\" color=\"default\" size=\"xlarge\" type=\"3d\" shape=\"round\" target=\"_self\" title=\"\" gradient_colors=\"#f0f0ed|#f0f0ed\" gradient_hover_colors=\"#6666a4|#6666a4\" accent_color=\"#ffffff\" accent_hover_color=\"#ffffff\" bevel_color=\"\" border_width=\"0px\" icon=\"\" icon_position=\"left\" icon_divider=\"no\" modal=\"\" animation_type=\"0\" animation_direction=\"left\" animation_speed=\"1\" alignment=\"center\" class=\"\" id=\"\"]Make A Reservation Enquiry[/button][/fullwidth][menu_anchor name=\"\"][modal name=\"\" title=\"\" size=\"\" background=\"\" border_color=\"\" show_footer=\"\" class=\"\" id=\"\"][/modal][modal name=\"\" title=\"\" size=\"\" background=\"\" border_color=\"\" show_footer=\"\" class=\"\" id=\"\"][/modal][modal name=\"\" title=\"\" size=\"\" background=\"\" border_color=\"\" show_footer=\"\" class=\"\" id=\"\"][/modal][modal name=\"\" title=\"\" size=\"\" background=\"\" border_color=\"\" show_footer=\"\" class=\"\" id=\"\"][/modal]', 'Home', '', 'inherit', 'closed', 'closed', '', '7-revision-v1', '', '', '2015-09-15 09:28:15', '2015-09-15 07:28:15', '', 7, 'http://localhost/assagaylodge/7-revision-v1/', 0, 'revision', '', 0),
(1046, 1, '2015-09-15 09:46:08', '2015-09-15 07:46:08', '[fullwidth background_color=\"#f0f0ed\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"90px\" padding_bottom=\"0px\" padding_left=\"0px\" padding_right=\"0px\" hundred_percent=\"yes\" equal_height_columns=\"yes\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][one_half last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"http://localhost/assagaylodge/wp-content/uploads/2015/08/Tha-Lodge.jpg\" background_repeat=\"no-repeat\" background_position=\"center center\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" class=\"\" id=\"\"][/one_half][one_half last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"30px\" margin_top=\"\" margin_bottom=\"0px\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" class=\"special\" id=\"\"][fusion_text]\r\n<h1>5 BEDROOM FAMILY LODGE</h1>\r\n[/fusion_text][separator style_type=\"single\" top_margin=\"0\" bottom_margin=\"30\" sep_color=\"#000000\" border_size=\"\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"170px\" alignment=\"left\" class=\"separator-left\" id=\"\"][modal name=\"rates\" title=\"2015 Rates\" size=\"large\" background=\"\" border_color=\"\" show_footer=\"yes\" class=\"\" id=\"\"]\r\n<h2>Full House Self-Catering - per night:\r\nR2950 (R295 per person)</h2>\r\n<h2>Self-Catering - per person per night:\r\nSingle Private Room R595\r\nSharing R395</h2>\r\n<h2>Breakfast Optional- per person:\r\nR75</h2>\r\n<h2>Lodge &amp; Room Servicing Optional- per day:\r\nR195</h2>\r\n[/modal][button link=\"\" color=\"darkgreen\" size=\"\" type=\"\" shape=\"\" target=\"_self\" title=\"\" gradient_colors=\"|\" gradient_hover_colors=\"|\" accent_color=\"\" accent_hover_color=\"\" bevel_color=\"\" border_width=\"1px\" icon=\"\" icon_position=\"left\" icon_divider=\"no\" modal=\"rates\" animation_type=\"0\" animation_direction=\"left\" animation_speed=\"1\" alignment=\"\" class=\"\" id=\"\"]2015 RATES[/button][/one_half][/fullwidth][menu_anchor name=\"LODGE\"][fullwidth background_color=\"#f0f0ed\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"20\" padding_bottom=\"20\" padding_left=\"0px\" padding_right=\"0px\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][one_half last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][fusion_text]\r\n<h3 style=\"text-align: justify;\">The property boasts over 200 different species of birds and animals. The Lodge is situated on the 1000 Hills tourism route, on the edge of Hillcrest and is a perfect place from which one can launch to any one of the many fantastic destinations and game reserves in KwaZulu Natal, i.e. the Majestic Drakensberg Mountain Range, Shongweni Nature Reserve, Nagle Dam, Durban &amp; Beach Front. We are also the doorstep of one of KZN’s major horse riding venues namely, the Shongweni Horse Riding Club &amp; the Summerveld Horse Riding Academy, makes Assagay Lodge a perfect home away from home for the equestrian lovers. The peace &amp; tranquility will take you far away from the business of city life. Evenings are quiet and peaceful. This is a unique and memorable country experience.</h3>\r\n[/fusion_text][/one_half][one_half last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][fusion_text]\r\n<h3 style=\"text-align: justify;\">We are a homely \'down to earth\' country guest lodge, set on a farm surrounded by acres of beautiful hills, forests, &amp; dams in the Madwala Conservancy of Assagay, where horses still have the right of way on all roads. Our five bedrooms have a rustic charm offering the comforts of modern day life.</h3>\r\n<h3 style=\"text-align: justify;\">Assagay Forest Lodge is owner managed, built in 2005 the lodge provides 5 cozy bedrooms with a large spacious and comfortable homely lounge, which leads onto a large deck area. Set on a 6 acre property in the Assagay Conservancy our lodge is nestled around trees, bushes, and beautiful gardens and a stream, allowing visitors to meander and relax. Guests seeking a quite, relaxing, homely experience will find our lodge the perfect choice away from home. There is a kitchen available should you wish to muster up a snack or quick meal, however breakfast is available on request.</h3>\r\n[/fusion_text][/one_half][/fullwidth][fullwidth background_color=\"#f0f0ed\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"20\" padding_bottom=\"20\" padding_left=\"0px\" padding_right=\"0px\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][fusion_text]\r\n<h1 style=\"text-align: center;\">Gallery</h1>\r\n[/fusion_text][separator style_type=\"single\" top_margin=\"\" bottom_margin=\"40\" sep_color=\"#000000\" border_size=\"\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"170px\" alignment=\"\" class=\"\" id=\"\"][one_sixth last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][/one_sixth][two_third last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][fusion_text]\r\n<h3 style=\"text-align: center;\">The Lodge is open, spacious, comfortable and homely.</h3>\r\n[/fusion_text][/two_third][one_sixth last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][/one_sixth][/fullwidth][fullwidth background_color=\"#f0f0ed\" background_image=\"http://localhost/assagaylodge/wp-content/uploads/2015/01/Wood_Texture.jpg\" background_parallax=\"fixed\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"30\" padding_bottom=\"10\" padding_left=\"0\" padding_right=\"0\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][recent_works layout=\"grid\" picture_size=\"auto\" boxed_text=\"unboxed\" filters=\"no\" columns=\"3\" column_spacing=\"12\" cat_slug=\"the-lodge\" exclude_cats=\"\" number_posts=\"9\" offset=\"\" excerpt_length=\"35\" strip_html=\"yes\" carousel_layout=\"title_on_rollover\" scroll_items=\"\" autoplay=\"no\" show_nav=\"yes\" mouse_scroll=\"no\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" class=\"\" id=\"\"][/recent_works][/fullwidth][fullwidth background_color=\"#f0f0ed\" background_image=\"\" background_parallax=\"fixed\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"20\" padding_bottom=\"20\" padding_left=\"0px\" padding_right=\"0px\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][menu_anchor name=\"BEDROOMS\"][fusion_text]\r\n<h1 style=\"text-align: center;\">BEDROOMS</h1>\r\n[/fusion_text][separator style_type=\"single\" top_margin=\"\" bottom_margin=\"20\" sep_color=\"#000000\" border_size=\"\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"170px\" alignment=\"\" class=\"\" id=\"\"][one_sixth last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][/one_sixth][two_third last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][fusion_text]\r\n<h3 style=\"text-align: justify;\">When it comes to our bedrooms we’re proud to say we’re different. We offer something a little more special.</h3>\r\n<h3 style=\"text-align: justify;\">Our five bedrooms are all en-suite and equipped with either king size or queen size beds. Each room sleeps two guests. The rooms have high ceilings, wall heaters &amp; ceiling fans. Beds all have electric blankets in Winter, 100% cotton percale sheets and thick hyper allergenic microfiber duvets and pillows.</h3>\r\n[/fusion_text][/two_third][one_sixth last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][/one_sixth][/fullwidth][fullwidth background_color=\"\" background_image=\"http://localhost/assagaylodge/wp-content/uploads/2015/01/DSC01516-1148-x-764.jpg\" background_parallax=\"fixed\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"center center\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"20\" padding_bottom=\"20\" padding_left=\"0\" padding_right=\"0\" hundred_percent=\"no\" equal_height_columns=\"yes\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][recent_works layout=\"grid\" picture_size=\"auto\" boxed_text=\"unboxed\" filters=\"no\" columns=\"3\" column_spacing=\"12\" cat_slug=\"bedrooms\" exclude_cats=\"\" number_posts=\"6\" offset=\"\" excerpt_length=\"35\" strip_html=\"yes\" carousel_layout=\"title_on_rollover\" scroll_items=\"\" autoplay=\"no\" show_nav=\"yes\" mouse_scroll=\"no\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" class=\"\" id=\"\"][/recent_works][/fullwidth][fullwidth background_color=\"#f0f0ed\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"20\" padding_bottom=\"20\" padding_left=\"0\" padding_right=\"0\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][menu_anchor name=\"GARDENS\"][fusion_text]\r\n<h1 style=\"text-align: center;\">GARDENS</h1>\r\n[/fusion_text][separator style_type=\"none\" top_margin=\"40\" bottom_margin=\"\" sep_color=\"\" border_size=\"\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"100%\" alignment=\"center\" class=\"\" id=\"\"][one_sixth last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][/one_sixth][two_third last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][fusion_text]\r\n<h3 style=\"text-align: center;\">Walk &amp; relax in our beautiful gardens.</h3>\r\n[/fusion_text][/two_third][one_sixth last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][/one_sixth][recent_works layout=\"grid\" picture_size=\"auto\" boxed_text=\"boxed\" filters=\"no\" columns=\"3\" column_spacing=\"12\" cat_slug=\"gardens\" exclude_cats=\"\" number_posts=\"9\" offset=\"\" excerpt_length=\"35\" strip_html=\"yes\" carousel_layout=\"title_on_rollover\" scroll_items=\"\" autoplay=\"no\" show_nav=\"yes\" mouse_scroll=\"no\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" class=\"\" id=\"\"][/recent_works][/fullwidth][fullwidth background_color=\"#ffffff\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"65px\" padding_bottom=\"65px\" padding_left=\"0px\" padding_right=\"0px\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][button link=\"http://localhost/assagaylodge/book-now/\" color=\"default\" size=\"xlarge\" type=\"3d\" shape=\"round\" target=\"_self\" title=\"\" gradient_colors=\"#f0f0ed|#f0f0ed\" gradient_hover_colors=\"#6666a4|#6666a4\" accent_color=\"#ffffff\" accent_hover_color=\"#ffffff\" bevel_color=\"\" border_width=\"0px\" icon=\"\" icon_position=\"left\" icon_divider=\"no\" modal=\"\" animation_type=\"0\" animation_direction=\"left\" animation_speed=\"1\" alignment=\"center\" class=\"\" id=\"\"]Make A Reservation Enquiry[/button][/fullwidth][menu_anchor name=\"\"][modal name=\"\" title=\"\" size=\"\" background=\"\" border_color=\"\" show_footer=\"\" class=\"\" id=\"\"][/modal][modal name=\"\" title=\"\" size=\"\" background=\"\" border_color=\"\" show_footer=\"\" class=\"\" id=\"\"][/modal][modal name=\"\" title=\"\" size=\"\" background=\"\" border_color=\"\" show_footer=\"\" class=\"\" id=\"\"][/modal][modal name=\"\" title=\"\" size=\"\" background=\"\" border_color=\"\" show_footer=\"\" class=\"\" id=\"\"][/modal]', 'Home', '', 'inherit', 'closed', 'closed', '', '7-revision-v1', '', '', '2015-09-15 09:46:08', '2015-09-15 07:46:08', '', 7, 'http://localhost/assagaylodge/7-revision-v1/', 0, 'revision', '', 0),
(1047, 1, '2015-09-15 12:14:08', '2015-09-15 10:14:08', '<h3>Full House Self-Catering (Max 10 persons): <strong>R2950</strong> per night (R295 per person)</h3>\r\n<h3>Self-Catering:</h3>\r\n<strong>Weekdays (Monday, Tuesday, Wednesday or Thursday):</strong>\r\n\r\nSingle Private Room <strong>R595</strong> per person per night\r\nSharing <strong>R395</strong> per person per night\r\n\r\n<strong>Weekends (Friday, Saturday, Sunday):</strong>\r\n\r\nSingle Private Room <strong>R645</strong> per person per night\r\nSharing <strong>R445</strong> per person per night\r\n<h3>Breakfast Optional:</h3>\r\nContinental<strong> R55</strong> per person\r\nFull English <strong>R95</strong> per person\r\n<h3>Lodge &amp; Room Servicing Optional: <strong>R195 </strong>per day</h3>\r\n\r\n<hr />\r\n\r\n&nbsp;\r\n<h3>Specials</h3>\r\nWeekdays: Book any 3 weekdays, Monday, Tuesday, Wednesday or Thursday, and only pay for 2 days.\r\n\r\n15% Discount. Arrive Friday Depart Sunday.', 'test rates', '', 'publish', 'closed', 'closed', '', 'test-rates', '', '', '2019-11-13 14:13:46', '2019-11-13 12:13:46', '', 0, 'http://localhost/assagaylodge/?page_id=1047', 0, 'page', '', 0);
INSERT INTO `wp_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(1048, 1, '2015-09-15 10:00:19', '2015-09-15 08:00:19', '[fullwidth background_color=\"#f0f0ed\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"90px\" padding_bottom=\"0px\" padding_left=\"0px\" padding_right=\"0px\" hundred_percent=\"yes\" equal_height_columns=\"yes\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][one_half last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"http://localhost/assagaylodge/wp-content/uploads/2015/08/Tha-Lodge.jpg\" background_repeat=\"no-repeat\" background_position=\"center center\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" class=\"\" id=\"\"][/one_half][one_half last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"30px\" margin_top=\"\" margin_bottom=\"0px\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" class=\"special\" id=\"\"][fusion_text]\r\n<h1>5 BEDROOM FAMILY LODGE</h1>\r\n[/fusion_text][separator style_type=\"single\" top_margin=\"0\" bottom_margin=\"30\" sep_color=\"#000000\" border_size=\"\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"170px\" alignment=\"left\" class=\"separator-left\" id=\"\"][modal name=\"rates\" title=\"2015 Rates\" size=\"large\" background=\"\" border_color=\"\" show_footer=\"yes\" class=\"\" id=\"\"][one_half spacing=\"yes\" last=\"no\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" class=\"\" id=\"\"]\r\n<h3>Full House Self-Catering (Max 10 persons):</h3>\r\n<strong>R2950</strong> per night (R295 per person)\r\n<h3>Self-Catering:</h3>\r\nSingle Private Room <strong>R595</strong> per person per night\r\nSharing <strong>R395</strong> per person per night\r\n<h3>Breakfast Optional:</h3>\r\n<strong>R75</strong> per person\r\n<h3>Lodge &amp; Room Servicing Optional:</h3>\r\n<strong>R195 </strong>per day\r\n\r\n[/one_half]\r\n[one_half spacing=\"yes\" last=\"no\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" class=\"\" id=\"\"]\r\n<h3>Specials</h3>\r\nBook any 3 weekdays, Monday, Tuesday, Wednesday or Thursday, and only pay for 2 days.\r\n\r\n15% Discount. Arrive Friday Depart Sunday.\r\n\r\n[/one_half][/modal][button link=\"\" color=\"darkgreen\" size=\"\" type=\"\" shape=\"\" target=\"_self\" title=\"\" gradient_colors=\"|\" gradient_hover_colors=\"|\" accent_color=\"\" accent_hover_color=\"\" bevel_color=\"\" border_width=\"1px\" icon=\"\" icon_position=\"left\" icon_divider=\"no\" modal=\"rates\" animation_type=\"0\" animation_direction=\"left\" animation_speed=\"1\" alignment=\"\" class=\"\" id=\"\"]2015 RATES[/button][/one_half][/fullwidth][menu_anchor name=\"LODGE\"][fullwidth background_color=\"#f0f0ed\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"20\" padding_bottom=\"20\" padding_left=\"0px\" padding_right=\"0px\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][one_half last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][fusion_text]\r\n<h3 style=\"text-align: justify;\">The property boasts over 200 different species of birds and animals. The Lodge is situated on the 1000 Hills tourism route, on the edge of Hillcrest and is a perfect place from which one can launch to any one of the many fantastic destinations and game reserves in KwaZulu Natal, i.e. the Majestic Drakensberg Mountain Range, Shongweni Nature Reserve, Nagle Dam, Durban &amp; Beach Front. We are also the doorstep of one of KZN’s major horse riding venues namely, the Shongweni Horse Riding Club &amp; the Summerveld Horse Riding Academy, makes Assagay Lodge a perfect home away from home for the equestrian lovers. The peace &amp; tranquility will take you far away from the business of city life. Evenings are quiet and peaceful. This is a unique and memorable country experience.</h3>\r\n[/fusion_text][/one_half][one_half last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][fusion_text]\r\n<h3 style=\"text-align: justify;\">We are a homely \'down to earth\' country guest lodge, set on a farm surrounded by acres of beautiful hills, forests, &amp; dams in the Madwala Conservancy of Assagay, where horses still have the right of way on all roads. Our five bedrooms have a rustic charm offering the comforts of modern day life.</h3>\r\n<h3 style=\"text-align: justify;\">Assagay Forest Lodge is owner managed, built in 2005 the lodge provides 5 cozy bedrooms with a large spacious and comfortable homely lounge, which leads onto a large deck area. Set on a 6 acre property in the Assagay Conservancy our lodge is nestled around trees, bushes, and beautiful gardens and a stream, allowing visitors to meander and relax. Guests seeking a quite, relaxing, homely experience will find our lodge the perfect choice away from home. There is a kitchen available should you wish to muster up a snack or quick meal, however breakfast is available on request.</h3>\r\n[/fusion_text][/one_half][/fullwidth][fullwidth background_color=\"#f0f0ed\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"20\" padding_bottom=\"20\" padding_left=\"0px\" padding_right=\"0px\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][fusion_text]\r\n<h1 style=\"text-align: center;\">Gallery</h1>\r\n[/fusion_text][separator style_type=\"single\" top_margin=\"\" bottom_margin=\"40\" sep_color=\"#000000\" border_size=\"\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"170px\" alignment=\"\" class=\"\" id=\"\"][one_sixth last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][/one_sixth][two_third last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][fusion_text]\r\n<h3 style=\"text-align: center;\">The Lodge is open, spacious, comfortable and homely.</h3>\r\n[/fusion_text][/two_third][one_sixth last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][/one_sixth][/fullwidth][fullwidth background_color=\"#f0f0ed\" background_image=\"http://localhost/assagaylodge/wp-content/uploads/2015/01/Wood_Texture.jpg\" background_parallax=\"fixed\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"30\" padding_bottom=\"10\" padding_left=\"0\" padding_right=\"0\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][recent_works layout=\"grid\" picture_size=\"auto\" boxed_text=\"unboxed\" filters=\"no\" columns=\"3\" column_spacing=\"12\" cat_slug=\"the-lodge\" exclude_cats=\"\" number_posts=\"9\" offset=\"\" excerpt_length=\"35\" strip_html=\"yes\" carousel_layout=\"title_on_rollover\" scroll_items=\"\" autoplay=\"no\" show_nav=\"yes\" mouse_scroll=\"no\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" class=\"\" id=\"\"][/recent_works][/fullwidth][fullwidth background_color=\"#f0f0ed\" background_image=\"\" background_parallax=\"fixed\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"20\" padding_bottom=\"20\" padding_left=\"0px\" padding_right=\"0px\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][menu_anchor name=\"BEDROOMS\"][fusion_text]\r\n<h1 style=\"text-align: center;\">BEDROOMS</h1>\r\n[/fusion_text][separator style_type=\"single\" top_margin=\"\" bottom_margin=\"20\" sep_color=\"#000000\" border_size=\"\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"170px\" alignment=\"\" class=\"\" id=\"\"][one_sixth last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][/one_sixth][two_third last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][fusion_text]\r\n<h3 style=\"text-align: justify;\">When it comes to our bedrooms we’re proud to say we’re different. We offer something a little more special.</h3>\r\n<h3 style=\"text-align: justify;\">Our five bedrooms are all en-suite and equipped with either king size or queen size beds. Each room sleeps two guests. The rooms have high ceilings, wall heaters &amp; ceiling fans. Beds all have electric blankets in Winter, 100% cotton percale sheets and thick hyper allergenic microfiber duvets and pillows.</h3>\r\n[/fusion_text][/two_third][one_sixth last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][/one_sixth][/fullwidth][fullwidth background_color=\"\" background_image=\"http://localhost/assagaylodge/wp-content/uploads/2015/01/DSC01516-1148-x-764.jpg\" background_parallax=\"fixed\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"center center\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"20\" padding_bottom=\"20\" padding_left=\"0\" padding_right=\"0\" hundred_percent=\"no\" equal_height_columns=\"yes\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][recent_works layout=\"grid\" picture_size=\"auto\" boxed_text=\"unboxed\" filters=\"no\" columns=\"3\" column_spacing=\"12\" cat_slug=\"bedrooms\" exclude_cats=\"\" number_posts=\"6\" offset=\"\" excerpt_length=\"35\" strip_html=\"yes\" carousel_layout=\"title_on_rollover\" scroll_items=\"\" autoplay=\"no\" show_nav=\"yes\" mouse_scroll=\"no\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" class=\"\" id=\"\"][/recent_works][/fullwidth][fullwidth background_color=\"#f0f0ed\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"20\" padding_bottom=\"20\" padding_left=\"0\" padding_right=\"0\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][menu_anchor name=\"GARDENS\"][fusion_text]\r\n<h1 style=\"text-align: center;\">GARDENS</h1>\r\n[/fusion_text][separator style_type=\"none\" top_margin=\"40\" bottom_margin=\"\" sep_color=\"\" border_size=\"\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"100%\" alignment=\"center\" class=\"\" id=\"\"][one_sixth last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][/one_sixth][two_third last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][fusion_text]\r\n<h3 style=\"text-align: center;\">Walk &amp; relax in our beautiful gardens.</h3>\r\n[/fusion_text][/two_third][one_sixth last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][/one_sixth][recent_works layout=\"grid\" picture_size=\"auto\" boxed_text=\"boxed\" filters=\"no\" columns=\"3\" column_spacing=\"12\" cat_slug=\"gardens\" exclude_cats=\"\" number_posts=\"9\" offset=\"\" excerpt_length=\"35\" strip_html=\"yes\" carousel_layout=\"title_on_rollover\" scroll_items=\"\" autoplay=\"no\" show_nav=\"yes\" mouse_scroll=\"no\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" class=\"\" id=\"\"][/recent_works][/fullwidth][fullwidth background_color=\"#ffffff\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"65px\" padding_bottom=\"65px\" padding_left=\"0px\" padding_right=\"0px\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][button link=\"http://localhost/assagaylodge/book-now/\" color=\"default\" size=\"xlarge\" type=\"3d\" shape=\"round\" target=\"_self\" title=\"\" gradient_colors=\"#f0f0ed|#f0f0ed\" gradient_hover_colors=\"#6666a4|#6666a4\" accent_color=\"#ffffff\" accent_hover_color=\"#ffffff\" bevel_color=\"\" border_width=\"0px\" icon=\"\" icon_position=\"left\" icon_divider=\"no\" modal=\"\" animation_type=\"0\" animation_direction=\"left\" animation_speed=\"1\" alignment=\"center\" class=\"\" id=\"\"]Make A Reservation Enquiry[/button][/fullwidth][menu_anchor name=\"\"][modal name=\"\" title=\"\" size=\"\" background=\"\" border_color=\"\" show_footer=\"\" class=\"\" id=\"\"][/modal][modal name=\"\" title=\"\" size=\"\" background=\"\" border_color=\"\" show_footer=\"\" class=\"\" id=\"\"][/modal][modal name=\"\" title=\"\" size=\"\" background=\"\" border_color=\"\" show_footer=\"\" class=\"\" id=\"\"][/modal][modal name=\"\" title=\"\" size=\"\" background=\"\" border_color=\"\" show_footer=\"\" class=\"\" id=\"\"][/modal]', 'Home', '', 'inherit', 'closed', 'closed', '', '7-revision-v1', '', '', '2015-09-15 10:00:19', '2015-09-15 08:00:19', '', 7, 'http://localhost/assagaylodge/7-revision-v1/', 0, 'revision', '', 0),
(1049, 1, '2015-09-15 10:21:17', '2015-09-15 08:21:17', '[fullwidth background_color=\"#f0f0ed\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"90px\" padding_bottom=\"0px\" padding_left=\"0px\" padding_right=\"0px\" hundred_percent=\"yes\" equal_height_columns=\"yes\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][one_half last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"http://localhost/assagaylodge/wp-content/uploads/2015/08/Tha-Lodge.jpg\" background_repeat=\"no-repeat\" background_position=\"center center\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" class=\"\" id=\"\"][/one_half][one_half last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"30px\" margin_top=\"\" margin_bottom=\"0px\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" class=\"special\" id=\"\"][fusion_text]\r\n<h1>5 BEDROOM FAMILY LODGE</h1>\r\n[/fusion_text][separator style_type=\"single\" top_margin=\"0\" bottom_margin=\"30\" sep_color=\"#000000\" border_size=\"\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"170px\" alignment=\"left\" class=\"separator-left\" id=\"\"][modal name=\"rates\" title=\"2015 Rates\" size=\"large\" background=\"\" border_color=\"\" show_footer=\"yes\" class=\"\" id=\"\"]<h3>Full House Self-Catering (Max 10 persons):</h3>\r\n<strong>R2950</strong> per night (R295 per person)\r\n<h3>Self-Catering:</h3>\r\n<strong>Weekdays (Monday, Tuesday, Wednesday or Thursday):</strong>\r\n\r\nSingle Private Room <strong>R595</strong> per person per night\r\nSharing <strong>R395</strong> per person per night\r\n\r\n<strong>Weekends (Friday, Saturday, Sunday):</strong>\r\n\r\nSingle Private Room <strong>R695</strong> per person per night\r\nSharing <strong>R495</strong> per person per night\r\n<h3>Breakfast Optional:</h3>\r\nContinental<strong> R55</strong> per person\r\nFull English <strong>R95</strong> per person\r\n<h3>Lodge &amp; Room Servicing Optional:</h3>\r\n<strong>R195 </strong>per day\r\n\r\n<hr />\r\n\r\n&nbsp;\r\n<h3>Specials</h3>\r\nWeekdays: Book any 3 weekdays, Monday, Tuesday, Wednesday or Thursday, and only pay for 2 days.\r\n\r\n15% Discount. Arrive Friday Depart Sunday.[/modal][button link=\"\" color=\"darkgreen\" size=\"\"  type=\"\" shape=\"\" target=\"_self\" title=\"\" gradient_colors=\"|\" gradient_hover_colors=\"|\" accent_color=\"\" accent_hover_color=\"\" bevel_color=\"\" border_width=\"1px\" icon=\"\" icon_position=\"left\" icon_divider=\"no\" modal=\"rates\" animation_type=\"0\" animation_direction=\"left\" animation_speed=\"1\" alignment=\"\" class=\"\" id=\"\"]2015 RATES[/button][/one_half][/fullwidth][menu_anchor name=\"LODGE\"][fullwidth background_color=\"#f0f0ed\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"20\" padding_bottom=\"20\" padding_left=\"0px\" padding_right=\"0px\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][one_half last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][fusion_text]\r\n<h3 style=\"text-align: justify;\">The property boasts over 200 different species of birds and animals. The Lodge is situated on the 1000 Hills tourism route, on the edge of Hillcrest and is a perfect place from which one can launch to any one of the many fantastic destinations and game reserves in KwaZulu Natal, i.e. the Majestic Drakensberg Mountain Range, Shongweni Nature Reserve, Nagle Dam, Durban &amp; Beach Front. We are also the doorstep of one of KZN’s major horse riding venues namely, the Shongweni Horse Riding Club &amp; the Summerveld Horse Riding Academy, makes Assagay Lodge a perfect home away from home for the equestrian lovers. The peace &amp; tranquility will take you far away from the business of city life. Evenings are quiet and peaceful. This is a unique and memorable country experience.</h3>\r\n[/fusion_text][/one_half][one_half last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][fusion_text]\r\n<h3 style=\"text-align: justify;\">We are a homely \'down to earth\' country guest lodge, set on a farm surrounded by acres of beautiful hills, forests, &amp; dams in the Madwala Conservancy of Assagay, where horses still have the right of way on all roads. Our five bedrooms have a rustic charm offering the comforts of modern day life.</h3>\r\n<h3 style=\"text-align: justify;\">Assagay Forest Lodge is owner managed, built in 2005 the lodge provides 5 cozy bedrooms with a large spacious and comfortable homely lounge, which leads onto a large deck area. Set on a 6 acre property in the Assagay Conservancy our lodge is nestled around trees, bushes, and beautiful gardens and a stream, allowing visitors to meander and relax. Guests seeking a quite, relaxing, homely experience will find our lodge the perfect choice away from home. There is a kitchen available should you wish to muster up a snack or quick meal, however breakfast is available on request.</h3>\r\n[/fusion_text][/one_half][/fullwidth][fullwidth background_color=\"#f0f0ed\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"20\" padding_bottom=\"20\" padding_left=\"0px\" padding_right=\"0px\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][fusion_text]\r\n<h1 style=\"text-align: center;\">Gallery</h1>\r\n[/fusion_text][separator style_type=\"single\" top_margin=\"\" bottom_margin=\"40\" sep_color=\"#000000\" border_size=\"\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"170px\" alignment=\"\" class=\"\" id=\"\"][one_sixth last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][/one_sixth][two_third last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][fusion_text]\r\n<h3 style=\"text-align: center;\">The Lodge is open, spacious, comfortable and homely.</h3>\r\n[/fusion_text][/two_third][one_sixth last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][/one_sixth][/fullwidth][fullwidth background_color=\"#f0f0ed\" background_image=\"http://localhost/assagaylodge/wp-content/uploads/2015/01/Wood_Texture.jpg\" background_parallax=\"fixed\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"30\" padding_bottom=\"10\" padding_left=\"0\" padding_right=\"0\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][recent_works layout=\"grid\" picture_size=\"auto\" boxed_text=\"unboxed\" filters=\"no\" columns=\"3\" column_spacing=\"12\" cat_slug=\"the-lodge\" exclude_cats=\"\" number_posts=\"9\" offset=\"\" excerpt_length=\"35\" strip_html=\"yes\" carousel_layout=\"title_on_rollover\" scroll_items=\"\" autoplay=\"no\" show_nav=\"yes\" mouse_scroll=\"no\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" class=\"\" id=\"\"][/recent_works][/fullwidth][fullwidth background_color=\"#f0f0ed\" background_image=\"\" background_parallax=\"fixed\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"20\" padding_bottom=\"20\" padding_left=\"0px\" padding_right=\"0px\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][menu_anchor name=\"BEDROOMS\"][fusion_text]\r\n<h1 style=\"text-align: center;\">BEDROOMS</h1>\r\n[/fusion_text][separator style_type=\"single\" top_margin=\"\" bottom_margin=\"20\" sep_color=\"#000000\" border_size=\"\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"170px\" alignment=\"\" class=\"\" id=\"\"][one_sixth last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][/one_sixth][two_third last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][fusion_text]\r\n<h3 style=\"text-align: justify;\">When it comes to our bedrooms we’re proud to say we’re different. We offer something a little more special.</h3>\r\n<h3 style=\"text-align: justify;\">Our five bedrooms are all en-suite and equipped with either king size or queen size beds. Each room sleeps two guests. The rooms have high ceilings, wall heaters &amp; ceiling fans. Beds all have electric blankets in Winter, 100% cotton percale sheets and thick hyper allergenic microfiber duvets and pillows.</h3>\r\n[/fusion_text][/two_third][one_sixth last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][/one_sixth][/fullwidth][fullwidth background_color=\"\" background_image=\"http://localhost/assagaylodge/wp-content/uploads/2015/01/DSC01516-1148-x-764.jpg\" background_parallax=\"fixed\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"center center\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"20\" padding_bottom=\"20\" padding_left=\"0\" padding_right=\"0\" hundred_percent=\"no\" equal_height_columns=\"yes\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][recent_works layout=\"grid\" picture_size=\"auto\" boxed_text=\"unboxed\" filters=\"no\" columns=\"3\" column_spacing=\"12\" cat_slug=\"bedrooms\" exclude_cats=\"\" number_posts=\"6\" offset=\"\" excerpt_length=\"35\" strip_html=\"yes\" carousel_layout=\"title_on_rollover\" scroll_items=\"\" autoplay=\"no\" show_nav=\"yes\" mouse_scroll=\"no\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" class=\"\" id=\"\"][/recent_works][/fullwidth][fullwidth background_color=\"#f0f0ed\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"20\" padding_bottom=\"20\" padding_left=\"0\" padding_right=\"0\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][menu_anchor name=\"GARDENS\"][fusion_text]\r\n<h1 style=\"text-align: center;\">GARDENS</h1>\r\n[/fusion_text][separator style_type=\"none\" top_margin=\"40\" bottom_margin=\"\" sep_color=\"\" border_size=\"\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"100%\" alignment=\"center\" class=\"\" id=\"\"][one_sixth last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][/one_sixth][two_third last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][fusion_text]\r\n<h3 style=\"text-align: center;\">Walk &amp; relax in our beautiful gardens.</h3>\r\n[/fusion_text][/two_third][one_sixth last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][/one_sixth][recent_works layout=\"grid\" picture_size=\"auto\" boxed_text=\"boxed\" filters=\"no\" columns=\"3\" column_spacing=\"12\" cat_slug=\"gardens\" exclude_cats=\"\" number_posts=\"9\" offset=\"\" excerpt_length=\"35\" strip_html=\"yes\" carousel_layout=\"title_on_rollover\" scroll_items=\"\" autoplay=\"no\" show_nav=\"yes\" mouse_scroll=\"no\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" class=\"\" id=\"\"][/recent_works][/fullwidth][fullwidth background_color=\"#ffffff\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"65px\" padding_bottom=\"65px\" padding_left=\"0px\" padding_right=\"0px\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][button link=\"http://localhost/assagaylodge/book-now/\" color=\"default\" size=\"xlarge\"  type=\"3d\" shape=\"round\" target=\"_self\" title=\"\" gradient_colors=\"#f0f0ed|#f0f0ed\" gradient_hover_colors=\"#6666a4|#6666a4\" accent_color=\"#ffffff\" accent_hover_color=\"#ffffff\" bevel_color=\"\" border_width=\"0px\" icon=\"\" icon_position=\"left\" icon_divider=\"no\" modal=\"\" animation_type=\"0\" animation_direction=\"left\" animation_speed=\"1\" alignment=\"center\" class=\"\" id=\"\"]Make A Reservation Enquiry[/button][/fullwidth][menu_anchor name=\"\"][modal name=\"\" title=\"\" size=\"\" background=\"\" border_color=\"\" show_footer=\"\" class=\"\" id=\"\"][/modal][modal name=\"\" title=\"\" size=\"\" background=\"\" border_color=\"\" show_footer=\"\" class=\"\" id=\"\"][/modal][modal name=\"\" title=\"\" size=\"\" background=\"\" border_color=\"\" show_footer=\"\" class=\"\" id=\"\"][/modal][modal name=\"\" title=\"\" size=\"\" background=\"\" border_color=\"\" show_footer=\"\" class=\"\" id=\"\"][/modal]', 'Home', '', 'inherit', 'closed', 'closed', '', '7-revision-v1', '', '', '2015-09-15 10:21:17', '2015-09-15 08:21:17', '', 7, 'http://localhost/assagaylodge/7-revision-v1/', 0, 'revision', '', 0);
INSERT INTO `wp_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(1050, 1, '2015-09-15 10:25:38', '2015-09-15 08:25:38', '[fullwidth background_color=\"#f0f0ed\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"90px\" padding_bottom=\"0px\" padding_left=\"0px\" padding_right=\"0px\" hundred_percent=\"yes\" equal_height_columns=\"yes\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][one_half last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"http://localhost/assagaylodge/wp-content/uploads/2015/08/Tha-Lodge.jpg\" background_repeat=\"no-repeat\" background_position=\"center center\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" class=\"\" id=\"\"][/one_half][one_half last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"30px\" margin_top=\"\" margin_bottom=\"0px\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" class=\"special\" id=\"\"][fusion_text]\r\n<h1>5 BEDROOM FAMILY LODGE</h1>\r\n[/fusion_text][separator style_type=\"single\" top_margin=\"0\" bottom_margin=\"30\" sep_color=\"#000000\" border_size=\"\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"170px\" alignment=\"left\" class=\"separator-left\" id=\"\"][modal name=\"rates\" title=\"2015 Rates\" size=\"large\" background=\"\" border_color=\"\" show_footer=\"yes\" class=\"\" id=\"\"]<p>ALL PRICES ARE VAT INCLUSIVE</p>\r\n<h3>Full House Self-Catering (Max 10 persons):</h3>\r\n<p><strong>R2950</strong> per night (R295 per person)</p>\r\n<h3>Self-Catering:</h3>\r\n<p><strong>Weekdays (Monday, Tuesday, Wednesday or Thursday):</strong></p>\r\n<p>Single Private Room <strong>R595</strong> per person per night<br />\r\nSharing <strong>R395</strong> per person per night</p>\r\n<p><strong>Weekends (Friday, Saturday, Sunday):</strong></p>\r\n<p>Single Private Room <strong>R695</strong> per person per night<br />\r\nSharing <strong>R495</strong> per person per night</p>\r\n<h3>Breakfast Optional:</h3>\r\n<p>Continental<strong> R55</strong> per person<br />\r\nFull English <strong>R95</strong> per person</p>\r\n<h3>Lodge & Room Servicing Optional:</h3>\r\n<p><strong>R195 </strong>per day</p>\r\n<hr />\r\n<p> </p>\r\n<h3>Specials</h3>\r\n<p>Weekdays: Book any 3 weekdays, Monday, Tuesday, Wednesday or Thursday, and only pay for 2 days.</p>\r\n<p>15% Discount. Arrive Friday Depart Sunday.</p>\r\n[/modal][button link=\"\" color=\"darkgreen\" size=\"\"  type=\"\" shape=\"\" target=\"_self\" title=\"\" gradient_colors=\"|\" gradient_hover_colors=\"|\" accent_color=\"\" accent_hover_color=\"\" bevel_color=\"\" border_width=\"1px\" icon=\"\" icon_position=\"left\" icon_divider=\"no\" modal=\"rates\" animation_type=\"0\" animation_direction=\"left\" animation_speed=\"1\" alignment=\"\" class=\"\" id=\"\"]2015 RATES[/button][/one_half][/fullwidth][menu_anchor name=\"LODGE\"][fullwidth background_color=\"#f0f0ed\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"20\" padding_bottom=\"20\" padding_left=\"0px\" padding_right=\"0px\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][one_half last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][fusion_text]\r\n<h3 style=\"text-align: justify;\">The property boasts over 200 different species of birds and animals. The Lodge is situated on the 1000 Hills tourism route, on the edge of Hillcrest and is a perfect place from which one can launch to any one of the many fantastic destinations and game reserves in KwaZulu Natal, i.e. the Majestic Drakensberg Mountain Range, Shongweni Nature Reserve, Nagle Dam, Durban &amp; Beach Front. We are also the doorstep of one of KZN’s major horse riding venues namely, the Shongweni Horse Riding Club &amp; the Summerveld Horse Riding Academy, makes Assagay Lodge a perfect home away from home for the equestrian lovers. The peace &amp; tranquility will take you far away from the business of city life. Evenings are quiet and peaceful. This is a unique and memorable country experience.</h3>\r\n[/fusion_text][/one_half][one_half last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][fusion_text]\r\n<h3 style=\"text-align: justify;\">We are a homely \'down to earth\' country guest lodge, set on a farm surrounded by acres of beautiful hills, forests, &amp; dams in the Madwala Conservancy of Assagay, where horses still have the right of way on all roads. Our five bedrooms have a rustic charm offering the comforts of modern day life.</h3>\r\n<h3 style=\"text-align: justify;\">Assagay Forest Lodge is owner managed, built in 2005 the lodge provides 5 cozy bedrooms with a large spacious and comfortable homely lounge, which leads onto a large deck area. Set on a 6 acre property in the Assagay Conservancy our lodge is nestled around trees, bushes, and beautiful gardens and a stream, allowing visitors to meander and relax. Guests seeking a quite, relaxing, homely experience will find our lodge the perfect choice away from home. There is a kitchen available should you wish to muster up a snack or quick meal, however breakfast is available on request.</h3>\r\n[/fusion_text][/one_half][/fullwidth][fullwidth background_color=\"#f0f0ed\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"20\" padding_bottom=\"20\" padding_left=\"0px\" padding_right=\"0px\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][fusion_text]\r\n<h1 style=\"text-align: center;\">Gallery</h1>\r\n[/fusion_text][separator style_type=\"single\" top_margin=\"\" bottom_margin=\"40\" sep_color=\"#000000\" border_size=\"\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"170px\" alignment=\"\" class=\"\" id=\"\"][one_sixth last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][/one_sixth][two_third last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][fusion_text]\r\n<h3 style=\"text-align: center;\">The Lodge is open, spacious, comfortable and homely.</h3>\r\n[/fusion_text][/two_third][one_sixth last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][/one_sixth][/fullwidth][fullwidth background_color=\"#f0f0ed\" background_image=\"http://localhost/assagaylodge/wp-content/uploads/2015/01/Wood_Texture.jpg\" background_parallax=\"fixed\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"30\" padding_bottom=\"10\" padding_left=\"0\" padding_right=\"0\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][recent_works layout=\"grid\" picture_size=\"auto\" boxed_text=\"unboxed\" filters=\"no\" columns=\"3\" column_spacing=\"12\" cat_slug=\"the-lodge\" exclude_cats=\"\" number_posts=\"9\" offset=\"\" excerpt_length=\"35\" strip_html=\"yes\" carousel_layout=\"title_on_rollover\" scroll_items=\"\" autoplay=\"no\" show_nav=\"yes\" mouse_scroll=\"no\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" class=\"\" id=\"\"][/recent_works][/fullwidth][fullwidth background_color=\"#f0f0ed\" background_image=\"\" background_parallax=\"fixed\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"20\" padding_bottom=\"20\" padding_left=\"0px\" padding_right=\"0px\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][menu_anchor name=\"BEDROOMS\"][fusion_text]\r\n<h1 style=\"text-align: center;\">BEDROOMS</h1>\r\n[/fusion_text][separator style_type=\"single\" top_margin=\"\" bottom_margin=\"20\" sep_color=\"#000000\" border_size=\"\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"170px\" alignment=\"\" class=\"\" id=\"\"][one_sixth last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][/one_sixth][two_third last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][fusion_text]\r\n<h3 style=\"text-align: justify;\">When it comes to our bedrooms we’re proud to say we’re different. We offer something a little more special.</h3>\r\n<h3 style=\"text-align: justify;\">Our five bedrooms are all en-suite and equipped with either king size or queen size beds. Each room sleeps two guests. The rooms have high ceilings, wall heaters &amp; ceiling fans. Beds all have electric blankets in Winter, 100% cotton percale sheets and thick hyper allergenic microfiber duvets and pillows.</h3>\r\n[/fusion_text][/two_third][one_sixth last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][/one_sixth][/fullwidth][fullwidth background_color=\"\" background_image=\"http://localhost/assagaylodge/wp-content/uploads/2015/01/DSC01516-1148-x-764.jpg\" background_parallax=\"fixed\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"center center\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"20\" padding_bottom=\"20\" padding_left=\"0\" padding_right=\"0\" hundred_percent=\"no\" equal_height_columns=\"yes\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][recent_works layout=\"grid\" picture_size=\"auto\" boxed_text=\"unboxed\" filters=\"no\" columns=\"3\" column_spacing=\"12\" cat_slug=\"bedrooms\" exclude_cats=\"\" number_posts=\"6\" offset=\"\" excerpt_length=\"35\" strip_html=\"yes\" carousel_layout=\"title_on_rollover\" scroll_items=\"\" autoplay=\"no\" show_nav=\"yes\" mouse_scroll=\"no\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" class=\"\" id=\"\"][/recent_works][/fullwidth][fullwidth background_color=\"#f0f0ed\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"20\" padding_bottom=\"20\" padding_left=\"0\" padding_right=\"0\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][menu_anchor name=\"GARDENS\"][fusion_text]\r\n<h1 style=\"text-align: center;\">GARDENS</h1>\r\n[/fusion_text][separator style_type=\"none\" top_margin=\"40\" bottom_margin=\"\" sep_color=\"\" border_size=\"\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"100%\" alignment=\"center\" class=\"\" id=\"\"][one_sixth last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][/one_sixth][two_third last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][fusion_text]\r\n<h3 style=\"text-align: center;\">Walk &amp; relax in our beautiful gardens.</h3>\r\n[/fusion_text][/two_third][one_sixth last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][/one_sixth][recent_works layout=\"grid\" picture_size=\"auto\" boxed_text=\"boxed\" filters=\"no\" columns=\"3\" column_spacing=\"12\" cat_slug=\"gardens\" exclude_cats=\"\" number_posts=\"9\" offset=\"\" excerpt_length=\"35\" strip_html=\"yes\" carousel_layout=\"title_on_rollover\" scroll_items=\"\" autoplay=\"no\" show_nav=\"yes\" mouse_scroll=\"no\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" class=\"\" id=\"\"][/recent_works][/fullwidth][fullwidth background_color=\"#ffffff\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"65px\" padding_bottom=\"65px\" padding_left=\"0px\" padding_right=\"0px\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][button link=\"http://localhost/assagaylodge/book-now/\" color=\"default\" size=\"xlarge\"  type=\"3d\" shape=\"round\" target=\"_self\" title=\"\" gradient_colors=\"#f0f0ed|#f0f0ed\" gradient_hover_colors=\"#6666a4|#6666a4\" accent_color=\"#ffffff\" accent_hover_color=\"#ffffff\" bevel_color=\"\" border_width=\"0px\" icon=\"\" icon_position=\"left\" icon_divider=\"no\" modal=\"\" animation_type=\"0\" animation_direction=\"left\" animation_speed=\"1\" alignment=\"center\" class=\"\" id=\"\"]Make A Reservation Enquiry[/button][/fullwidth][menu_anchor name=\"\"][modal name=\"\" title=\"\" size=\"\" background=\"\" border_color=\"\" show_footer=\"\" class=\"\" id=\"\"][/modal][modal name=\"\" title=\"\" size=\"\" background=\"\" border_color=\"\" show_footer=\"\" class=\"\" id=\"\"][/modal][modal name=\"\" title=\"\" size=\"\" background=\"\" border_color=\"\" show_footer=\"\" class=\"\" id=\"\"][/modal][modal name=\"\" title=\"\" size=\"\" background=\"\" border_color=\"\" show_footer=\"\" class=\"\" id=\"\"][/modal]', 'Home', '', 'inherit', 'closed', 'closed', '', '7-revision-v1', '', '', '2015-09-15 10:25:38', '2015-09-15 08:25:38', '', 7, 'http://localhost/assagaylodge/7-revision-v1/', 0, 'revision', '', 0),
(1051, 1, '2015-09-15 10:34:52', '2015-09-15 08:34:52', '[fullwidth background_color=\"#f0f0ed\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"90px\" padding_bottom=\"0px\" padding_left=\"0px\" padding_right=\"0px\" hundred_percent=\"yes\" equal_height_columns=\"yes\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][one_half last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"http://localhost/assagaylodge/wp-content/uploads/2015/08/Tha-Lodge.jpg\" background_repeat=\"no-repeat\" background_position=\"center center\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" class=\"\" id=\"\"][/one_half][one_half last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"30px\" margin_top=\"\" margin_bottom=\"0px\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" class=\"special\" id=\"\"][fusion_text]\r\n<h1>5 BEDROOM FAMILY LODGE</h1>\r\n[/fusion_text][separator style_type=\"single\" top_margin=\"0\" bottom_margin=\"30\" sep_color=\"#000000\" border_size=\"\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"170px\" alignment=\"left\" class=\"separator-left\" id=\"\"][modal name=\"rates\" title=\"2015 Rates\" size=\"large\" background=\"\" border_color=\"\" show_footer=\"yes\" class=\"\" id=\"\"]<p>ALL PRICES ARE VAT INCLUSIVE</p>\r\n<h3>Full House Self-Catering (Max 10 persons):</h3>\r\n<p><strong>R2950</strong> per night (R295 per person)</p>\r\n<h3>Self-Catering:</h3>\r\n<p><strong>Weekdays (Monday, Tuesday, Wednesday or Thursday):</strong></p>\r\n<p>Single Private Room <strong>R595</strong> per person per night<br />Sharing <strong>R395</strong> per person per night</p>\r\n<p><strong>Weekends (Friday, Saturday, Sunday):</strong></p>\r\n<p>Single Private Room <strong>R695</strong> per person per night<br />Sharing <strong>R495</strong> per person per night</p>\r\n<h3>Breakfast Optional:</h3>\r\n<p>Continental<strong> R55</strong> per person<br />Full English <strong>R95</strong> per person</p>\r\n<h3>Lodge & Room Servicing Optional:</h3>\r\n<p><strong>R195 </strong>per day</p>\r\n<hr />\r\n<h3>Specials</h3>\r\n<p>Weekdays: Book any 3 weekdays, Monday, Tuesday, Wednesday or Thursday, and only pay for 2 days.</p>\r\n<p>15% Discount. Arrive Friday Depart Sunday.</p>[/modal][button link=\"\" color=\"darkgreen\" size=\"\"  type=\"\" shape=\"\" target=\"_self\" title=\"\" gradient_colors=\"|\" gradient_hover_colors=\"|\" accent_color=\"\" accent_hover_color=\"\" bevel_color=\"\" border_width=\"1px\" icon=\"\" icon_position=\"left\" icon_divider=\"no\" modal=\"rates\" animation_type=\"0\" animation_direction=\"left\" animation_speed=\"1\" alignment=\"\" class=\"\" id=\"\"]2015 RATES[/button][/one_half][/fullwidth][menu_anchor name=\"LODGE\"][fullwidth background_color=\"#f0f0ed\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"20\" padding_bottom=\"20\" padding_left=\"0px\" padding_right=\"0px\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][one_half last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][fusion_text]\r\n<h3 style=\"text-align: justify;\">The property boasts over 200 different species of birds and animals. The Lodge is situated on the 1000 Hills tourism route, on the edge of Hillcrest and is a perfect place from which one can launch to any one of the many fantastic destinations and game reserves in KwaZulu Natal, i.e. the Majestic Drakensberg Mountain Range, Shongweni Nature Reserve, Nagle Dam, Durban &amp; Beach Front. We are also the doorstep of one of KZN’s major horse riding venues namely, the Shongweni Horse Riding Club &amp; the Summerveld Horse Riding Academy, makes Assagay Lodge a perfect home away from home for the equestrian lovers. The peace &amp; tranquility will take you far away from the business of city life. Evenings are quiet and peaceful. This is a unique and memorable country experience.</h3>\r\n[/fusion_text][/one_half][one_half last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][fusion_text]\r\n<h3 style=\"text-align: justify;\">We are a homely \'down to earth\' country guest lodge, set on a farm surrounded by acres of beautiful hills, forests, &amp; dams in the Madwala Conservancy of Assagay, where horses still have the right of way on all roads. Our five bedrooms have a rustic charm offering the comforts of modern day life.</h3>\r\n<h3 style=\"text-align: justify;\">Assagay Forest Lodge is owner managed, built in 2005 the lodge provides 5 cozy bedrooms with a large spacious and comfortable homely lounge, which leads onto a large deck area. Set on a 6 acre property in the Assagay Conservancy our lodge is nestled around trees, bushes, and beautiful gardens and a stream, allowing visitors to meander and relax. Guests seeking a quite, relaxing, homely experience will find our lodge the perfect choice away from home. There is a kitchen available should you wish to muster up a snack or quick meal, however breakfast is available on request.</h3>\r\n[/fusion_text][/one_half][/fullwidth][fullwidth background_color=\"#f0f0ed\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"20\" padding_bottom=\"20\" padding_left=\"0px\" padding_right=\"0px\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][fusion_text]\r\n<h1 style=\"text-align: center;\">Gallery</h1>\r\n[/fusion_text][separator style_type=\"single\" top_margin=\"\" bottom_margin=\"40\" sep_color=\"#000000\" border_size=\"\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"170px\" alignment=\"\" class=\"\" id=\"\"][one_sixth last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][/one_sixth][two_third last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][fusion_text]\r\n<h3 style=\"text-align: center;\">The Lodge is open, spacious, comfortable and homely.</h3>\r\n[/fusion_text][/two_third][one_sixth last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][/one_sixth][/fullwidth][fullwidth background_color=\"#f0f0ed\" background_image=\"http://localhost/assagaylodge/wp-content/uploads/2015/01/Wood_Texture.jpg\" background_parallax=\"fixed\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"30\" padding_bottom=\"10\" padding_left=\"0\" padding_right=\"0\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][recent_works layout=\"grid\" picture_size=\"auto\" boxed_text=\"unboxed\" filters=\"no\" columns=\"3\" column_spacing=\"12\" cat_slug=\"the-lodge\" exclude_cats=\"\" number_posts=\"9\" offset=\"\" excerpt_length=\"35\" strip_html=\"yes\" carousel_layout=\"title_on_rollover\" scroll_items=\"\" autoplay=\"no\" show_nav=\"yes\" mouse_scroll=\"no\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" class=\"\" id=\"\"][/recent_works][/fullwidth][fullwidth background_color=\"#f0f0ed\" background_image=\"\" background_parallax=\"fixed\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"20\" padding_bottom=\"20\" padding_left=\"0px\" padding_right=\"0px\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][menu_anchor name=\"BEDROOMS\"][fusion_text]\r\n<h1 style=\"text-align: center;\">BEDROOMS</h1>\r\n[/fusion_text][separator style_type=\"single\" top_margin=\"\" bottom_margin=\"20\" sep_color=\"#000000\" border_size=\"\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"170px\" alignment=\"\" class=\"\" id=\"\"][one_sixth last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][/one_sixth][two_third last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][fusion_text]\r\n<h3 style=\"text-align: justify;\">When it comes to our bedrooms we’re proud to say we’re different. We offer something a little more special.</h3>\r\n<h3 style=\"text-align: justify;\">Our five bedrooms are all en-suite and equipped with either king size or queen size beds. Each room sleeps two guests. The rooms have high ceilings, wall heaters &amp; ceiling fans. Beds all have electric blankets in Winter, 100% cotton percale sheets and thick hyper allergenic microfiber duvets and pillows.</h3>\r\n[/fusion_text][/two_third][one_sixth last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][/one_sixth][/fullwidth][fullwidth background_color=\"\" background_image=\"http://localhost/assagaylodge/wp-content/uploads/2015/01/DSC01516-1148-x-764.jpg\" background_parallax=\"fixed\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"center center\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"20\" padding_bottom=\"20\" padding_left=\"0\" padding_right=\"0\" hundred_percent=\"no\" equal_height_columns=\"yes\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][recent_works layout=\"grid\" picture_size=\"auto\" boxed_text=\"unboxed\" filters=\"no\" columns=\"3\" column_spacing=\"12\" cat_slug=\"bedrooms\" exclude_cats=\"\" number_posts=\"6\" offset=\"\" excerpt_length=\"35\" strip_html=\"yes\" carousel_layout=\"title_on_rollover\" scroll_items=\"\" autoplay=\"no\" show_nav=\"yes\" mouse_scroll=\"no\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" class=\"\" id=\"\"][/recent_works][/fullwidth][fullwidth background_color=\"#f0f0ed\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"20\" padding_bottom=\"20\" padding_left=\"0\" padding_right=\"0\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][menu_anchor name=\"GARDENS\"][fusion_text]\r\n<h1 style=\"text-align: center;\">GARDENS</h1>\r\n[/fusion_text][separator style_type=\"none\" top_margin=\"40\" bottom_margin=\"\" sep_color=\"\" border_size=\"\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"100%\" alignment=\"center\" class=\"\" id=\"\"][one_sixth last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][/one_sixth][two_third last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][fusion_text]\r\n<h3 style=\"text-align: center;\">Walk &amp; relax in our beautiful gardens.</h3>\r\n[/fusion_text][/two_third][one_sixth last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][/one_sixth][recent_works layout=\"grid\" picture_size=\"auto\" boxed_text=\"boxed\" filters=\"no\" columns=\"3\" column_spacing=\"12\" cat_slug=\"gardens\" exclude_cats=\"\" number_posts=\"9\" offset=\"\" excerpt_length=\"35\" strip_html=\"yes\" carousel_layout=\"title_on_rollover\" scroll_items=\"\" autoplay=\"no\" show_nav=\"yes\" mouse_scroll=\"no\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" class=\"\" id=\"\"][/recent_works][/fullwidth][fullwidth background_color=\"#ffffff\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"65px\" padding_bottom=\"65px\" padding_left=\"0px\" padding_right=\"0px\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][button link=\"http://localhost/assagaylodge/book-now/\" color=\"default\" size=\"xlarge\"  type=\"3d\" shape=\"round\" target=\"_self\" title=\"\" gradient_colors=\"#f0f0ed|#f0f0ed\" gradient_hover_colors=\"#6666a4|#6666a4\" accent_color=\"#ffffff\" accent_hover_color=\"#ffffff\" bevel_color=\"\" border_width=\"0px\" icon=\"\" icon_position=\"left\" icon_divider=\"no\" modal=\"\" animation_type=\"0\" animation_direction=\"left\" animation_speed=\"1\" alignment=\"center\" class=\"\" id=\"\"]Make A Reservation Enquiry[/button][/fullwidth][menu_anchor name=\"\"][modal name=\"\" title=\"\" size=\"\" background=\"\" border_color=\"\" show_footer=\"\" class=\"\" id=\"\"][/modal][modal name=\"\" title=\"\" size=\"\" background=\"\" border_color=\"\" show_footer=\"\" class=\"\" id=\"\"][/modal][modal name=\"\" title=\"\" size=\"\" background=\"\" border_color=\"\" show_footer=\"\" class=\"\" id=\"\"][/modal][modal name=\"\" title=\"\" size=\"\" background=\"\" border_color=\"\" show_footer=\"\" class=\"\" id=\"\"][/modal]', 'Home', '', 'inherit', 'closed', 'closed', '', '7-revision-v1', '', '', '2015-09-15 10:34:52', '2015-09-15 08:34:52', '', 7, 'http://localhost/assagaylodge/7-revision-v1/', 0, 'revision', '', 0),
(1052, 1, '2015-09-15 12:11:46', '2015-09-15 10:11:46', '', 'DSC01554', '', 'inherit', 'open', 'closed', '', 'dsc01554', '', '', '2015-09-15 12:11:46', '2015-09-15 10:11:46', '', 7, 'http://localhost/assagaylodge/wp-content/uploads/2015/01/DSC01554.jpg', 0, 'attachment', 'image/jpeg', 0);
INSERT INTO `wp_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(1053, 1, '2015-09-15 12:13:41', '2015-09-15 10:13:41', '[fullwidth background_color=\"#f0f0ed\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"90px\" padding_bottom=\"0px\" padding_left=\"0px\" padding_right=\"0px\" hundred_percent=\"yes\" equal_height_columns=\"yes\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][one_half last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"http://localhost/assagaylodge/wp-content/uploads/2015/01/DSC01554.jpg\" background_repeat=\"no-repeat\" background_position=\"center center\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" class=\"\" id=\"\"][/one_half][one_half last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"30px\" margin_top=\"\" margin_bottom=\"0px\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" class=\"special\" id=\"\"][fusion_text]\r\n<h1>5 BEDROOM FAMILY LODGE</h1>\r\n[/fusion_text][separator style_type=\"single\" top_margin=\"0\" bottom_margin=\"30\" sep_color=\"#000000\" border_size=\"\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"170px\" alignment=\"left\" class=\"separator-left\" id=\"\"][modal name=\"rates\" title=\"2015 Rates\" size=\"large\" background=\"\" border_color=\"\" show_footer=\"yes\" class=\"\" id=\"\"]<p>ALL PRICES ARE VAT INCLUSIVE</p>\r\n<h3>Full House Self-Catering (Max 10 persons):</h3>\r\n<p><strong>R2950</strong> per night (R295 per person)</p>\r\n<h3>Self-Catering:</h3>\r\n<p><strong>Weekdays (Monday, Tuesday, Wednesday or Thursday):</strong></p>\r\n<p>Single Private Room <strong>R595</strong> per person per night<br />Sharing <strong>R395</strong> per person per night</p>\r\n<p><strong>Weekends (Friday, Saturday, Sunday):</strong></p>\r\n<p>Single Private Room <strong>R695</strong> per person per night<br />Sharing <strong>R495</strong> per person per night</p>\r\n<h3>Breakfast Optional:</h3>\r\n<p>Continental<strong> R55</strong> per person<br />Full English <strong>R95</strong> per person</p>\r\n<h3>Lodge & Room Servicing Optional:</h3>\r\n<p><strong>R195 </strong>per day</p>\r\n<hr />\r\n<h3>Specials</h3>\r\n<p>Weekdays: Book any 3 weekdays, Monday, Tuesday, Wednesday or Thursday, and only pay for 2 days.</p>\r\n<p>15% Discount. Arrive Friday Depart Sunday.</p>[/modal][button link=\"\" color=\"darkgreen\" size=\"\"  type=\"\" shape=\"\" target=\"_self\" title=\"\" gradient_colors=\"|\" gradient_hover_colors=\"|\" accent_color=\"\" accent_hover_color=\"\" bevel_color=\"\" border_width=\"1px\" icon=\"\" icon_position=\"left\" icon_divider=\"no\" modal=\"rates\" animation_type=\"0\" animation_direction=\"left\" animation_speed=\"1\" alignment=\"\" class=\"\" id=\"\"]2015 RATES[/button][/one_half][/fullwidth][menu_anchor name=\"LODGE\"][fullwidth background_color=\"#f0f0ed\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"20\" padding_bottom=\"20\" padding_left=\"0px\" padding_right=\"0px\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][one_half last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][fusion_text]\r\n<h3 style=\"text-align: justify;\">The property boasts over 200 different species of birds and animals. The Lodge is situated on the 1000 Hills tourism route, on the edge of Hillcrest and is a perfect place from which one can launch to any one of the many fantastic destinations and game reserves in KwaZulu Natal, i.e. the Majestic Drakensberg Mountain Range, Shongweni Nature Reserve, Nagle Dam, Durban &amp; Beach Front. We are also the doorstep of one of KZN’s major horse riding venues namely, the Shongweni Horse Riding Club &amp; the Summerveld Horse Riding Academy, makes Assagay Lodge a perfect home away from home for the equestrian lovers. The peace &amp; tranquility will take you far away from the business of city life. Evenings are quiet and peaceful. This is a unique and memorable country experience.</h3>\r\n[/fusion_text][/one_half][one_half last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][fusion_text]\r\n<h3 style=\"text-align: justify;\">We are a homely \'down to earth\' country guest lodge, set on a farm surrounded by acres of beautiful hills, forests, &amp; dams in the Madwala Conservancy of Assagay, where horses still have the right of way on all roads. Our five bedrooms have a rustic charm offering the comforts of modern day life.</h3>\r\n<h3 style=\"text-align: justify;\">Assagay Forest Lodge is owner managed, built in 2005 the lodge provides 5 cozy bedrooms with a large spacious and comfortable homely lounge, which leads onto a large deck area. Set on a 6 acre property in the Assagay Conservancy our lodge is nestled around trees, bushes, and beautiful gardens and a stream, allowing visitors to meander and relax. Guests seeking a quite, relaxing, homely experience will find our lodge the perfect choice away from home. There is a kitchen available should you wish to muster up a snack or quick meal, however breakfast is available on request.</h3>\r\n[/fusion_text][/one_half][/fullwidth][fullwidth background_color=\"#f0f0ed\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"20\" padding_bottom=\"20\" padding_left=\"0px\" padding_right=\"0px\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][fusion_text]\r\n<h1 style=\"text-align: center;\">Gallery</h1>\r\n[/fusion_text][separator style_type=\"single\" top_margin=\"\" bottom_margin=\"40\" sep_color=\"#000000\" border_size=\"\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"170px\" alignment=\"\" class=\"\" id=\"\"][one_sixth last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][/one_sixth][two_third last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][fusion_text]\r\n<h3 style=\"text-align: center;\">The Lodge is open, spacious, comfortable and homely.</h3>\r\n[/fusion_text][/two_third][one_sixth last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][/one_sixth][/fullwidth][fullwidth background_color=\"#f0f0ed\" background_image=\"http://localhost/assagaylodge/wp-content/uploads/2015/01/Wood_Texture.jpg\" background_parallax=\"fixed\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"30\" padding_bottom=\"10\" padding_left=\"0\" padding_right=\"0\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][recent_works layout=\"grid\" picture_size=\"auto\" boxed_text=\"unboxed\" filters=\"no\" columns=\"3\" column_spacing=\"12\" cat_slug=\"the-lodge\" exclude_cats=\"\" number_posts=\"9\" offset=\"\" excerpt_length=\"35\" strip_html=\"yes\" carousel_layout=\"title_on_rollover\" scroll_items=\"\" autoplay=\"no\" show_nav=\"yes\" mouse_scroll=\"no\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" class=\"\" id=\"\"][/recent_works][/fullwidth][fullwidth background_color=\"#f0f0ed\" background_image=\"\" background_parallax=\"fixed\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"20\" padding_bottom=\"20\" padding_left=\"0px\" padding_right=\"0px\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][menu_anchor name=\"BEDROOMS\"][fusion_text]\r\n<h1 style=\"text-align: center;\">BEDROOMS</h1>\r\n[/fusion_text][separator style_type=\"single\" top_margin=\"\" bottom_margin=\"20\" sep_color=\"#000000\" border_size=\"\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"170px\" alignment=\"\" class=\"\" id=\"\"][one_sixth last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][/one_sixth][two_third last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][fusion_text]\r\n<h3 style=\"text-align: justify;\">When it comes to our bedrooms we’re proud to say we’re different. We offer something a little more special.</h3>\r\n<h3 style=\"text-align: justify;\">Our five bedrooms are all en-suite and equipped with either king size or queen size beds. Each room sleeps two guests. The rooms have high ceilings, wall heaters &amp; ceiling fans. Beds all have electric blankets in Winter, 100% cotton percale sheets and thick hyper allergenic microfiber duvets and pillows.</h3>\r\n[/fusion_text][/two_third][one_sixth last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][/one_sixth][/fullwidth][fullwidth background_color=\"\" background_image=\"http://localhost/assagaylodge/wp-content/uploads/2015/01/DSC01516-1148-x-764.jpg\" background_parallax=\"fixed\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"center center\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"20\" padding_bottom=\"20\" padding_left=\"0\" padding_right=\"0\" hundred_percent=\"no\" equal_height_columns=\"yes\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][recent_works layout=\"grid\" picture_size=\"auto\" boxed_text=\"unboxed\" filters=\"no\" columns=\"3\" column_spacing=\"12\" cat_slug=\"bedrooms\" exclude_cats=\"\" number_posts=\"6\" offset=\"\" excerpt_length=\"35\" strip_html=\"yes\" carousel_layout=\"title_on_rollover\" scroll_items=\"\" autoplay=\"no\" show_nav=\"yes\" mouse_scroll=\"no\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" class=\"\" id=\"\"][/recent_works][/fullwidth][fullwidth background_color=\"#f0f0ed\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"20\" padding_bottom=\"20\" padding_left=\"0\" padding_right=\"0\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][menu_anchor name=\"GARDENS\"][fusion_text]\r\n<h1 style=\"text-align: center;\">GARDENS</h1>\r\n[/fusion_text][separator style_type=\"none\" top_margin=\"40\" bottom_margin=\"\" sep_color=\"\" border_size=\"\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"100%\" alignment=\"center\" class=\"\" id=\"\"][one_sixth last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][/one_sixth][two_third last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][fusion_text]\r\n<h3 style=\"text-align: center;\">Walk &amp; relax in our beautiful gardens.</h3>\r\n[/fusion_text][/two_third][one_sixth last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][/one_sixth][recent_works layout=\"grid\" picture_size=\"auto\" boxed_text=\"boxed\" filters=\"no\" columns=\"3\" column_spacing=\"12\" cat_slug=\"gardens\" exclude_cats=\"\" number_posts=\"9\" offset=\"\" excerpt_length=\"35\" strip_html=\"yes\" carousel_layout=\"title_on_rollover\" scroll_items=\"\" autoplay=\"no\" show_nav=\"yes\" mouse_scroll=\"no\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" class=\"\" id=\"\"][/recent_works][/fullwidth][fullwidth background_color=\"#ffffff\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"65px\" padding_bottom=\"65px\" padding_left=\"0px\" padding_right=\"0px\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][button link=\"http://localhost/assagaylodge/book-now/\" color=\"default\" size=\"xlarge\"  type=\"3d\" shape=\"round\" target=\"_self\" title=\"\" gradient_colors=\"#f0f0ed|#f0f0ed\" gradient_hover_colors=\"#6666a4|#6666a4\" accent_color=\"#ffffff\" accent_hover_color=\"#ffffff\" bevel_color=\"\" border_width=\"0px\" icon=\"\" icon_position=\"left\" icon_divider=\"no\" modal=\"\" animation_type=\"0\" animation_direction=\"left\" animation_speed=\"1\" alignment=\"center\" class=\"\" id=\"\"]Make A Reservation Enquiry[/button][/fullwidth][menu_anchor name=\"\"][modal name=\"\" title=\"\" size=\"\" background=\"\" border_color=\"\" show_footer=\"\" class=\"\" id=\"\"][/modal][modal name=\"\" title=\"\" size=\"\" background=\"\" border_color=\"\" show_footer=\"\" class=\"\" id=\"\"][/modal][modal name=\"\" title=\"\" size=\"\" background=\"\" border_color=\"\" show_footer=\"\" class=\"\" id=\"\"][/modal][modal name=\"\" title=\"\" size=\"\" background=\"\" border_color=\"\" show_footer=\"\" class=\"\" id=\"\"][/modal]', 'Home', '', 'inherit', 'closed', 'closed', '', '7-revision-v1', '', '', '2015-09-15 12:13:41', '2015-09-15 10:13:41', '', 7, 'http://localhost/assagaylodge/7-revision-v1/', 0, 'revision', '', 0),
(1054, 1, '2015-09-15 12:14:09', '2015-09-15 10:14:09', '<table>\r\n<tbody>\r\n<tr>\r\n<td>Full House Self-Catering</td>\r\n<td>Max 10 persons</td>\r\n<td><strong>R2950</strong> per night (R295 per person)</td>\r\n</tr>\r\n<tr>\r\n<td>Self-Catering</td>\r\n<td></td>\r\n<td></td>\r\n</tr>\r\n<tr>\r\n<td>Weekdays (Monday, Tuesday, Wednesday or Thursday):</td>\r\n<td>Single Private Room <strong>R595</strong> per person per night</td>\r\n<td>Sharing <strong>R395</strong> per person per night</td>\r\n</tr>\r\n<tr>\r\n<td>Weekends (Friday, Saturday, Sunday):</td>\r\n<td>Single Private Room <strong>R695</strong> per person per night</td>\r\n<td>Sharing <strong>R495</strong> per person per night</td>\r\n</tr>\r\n<tr>\r\n<td>Breakfast Optional:</td>\r\n<td>Continental<strong> R55</strong> per person</td>\r\n<td> Full English <strong>R95</strong> per person</td>\r\n</tr>\r\n<tr>\r\n<td></td>\r\n<td></td>\r\n<td></td>\r\n</tr>\r\n<tr>\r\n<td></td>\r\n<td></td>\r\n<td></td>\r\n</tr>\r\n<tr>\r\n<td></td>\r\n<td>Continental<strong> R55</strong> per person</td>\r\n<td> Full English <strong>R95</strong> per person</td>\r\n</tr>\r\n<tr>\r\n<td></td>\r\n<td></td>\r\n<td></td>\r\n</tr>\r\n<tr>\r\n<td></td>\r\n<td></td>\r\n<td></td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n<h3></h3>\r\n<h3>Full House Self-Catering (Max 10 persons):</h3>\r\n<strong>R2950</strong> per night (R295 per person)\r\n<h3>Self-Catering:</h3>\r\n<strong>Weekdays (Monday, Tuesday, Wednesday or Thursday):</strong>\r\n\r\nSingle Private Room <strong>R595</strong> per person per night\r\nSharing <strong>R395</strong> per person per night\r\n\r\n<strong>Weekends (Friday, Saturday, Sunday):</strong>\r\n\r\nSingle Private Room <strong>R695</strong> per person per night\r\nSharing <strong>R495</strong> per person per night\r\n<h3>Breakfast Optional:</h3>\r\nContinental<strong> R55</strong> per person\r\nFull English <strong>R95</strong> per person\r\n<h3>Lodge &amp; Room Servicing Optional:</h3>\r\n<strong>R195 </strong>per day\r\n<h3>Full House Self-Catering (Max 10 persons):</h3>\r\n<strong>R2950</strong> per night (R295 per person)\r\n<h3>Self-Catering:</h3>\r\n<strong>Weekdays (Monday, Tuesday, Wednesday or Thursday):</strong>\r\n\r\nSingle Private Room <strong>R595</strong> per person per night\r\nSharing <strong>R395</strong> per person per night\r\n\r\n<strong>Weekends (Friday, Saturday, Sunday):</strong>\r\n\r\nSingle Private Room <strong>R695</strong> per person per night\r\nSharing <strong>R495</strong> per person per night\r\n<h3>Breakfast Optional:</h3>\r\nContinental<strong> R55</strong> per person\r\nFull English <strong>R95</strong> per person\r\n<h3>Lodge &amp; Room Servicing Optional:</h3>\r\n<strong>R195 </strong>per day\r\n\r\n<hr />\r\n\r\n&nbsp;\r\n<h3>Specials</h3>\r\nWeekdays: Book any 3 weekdays, Monday, Tuesday, Wednesday or Thursday, and only pay for 2 days.\r\n\r\n15% Discount. Arrive Friday Depart Sunday.', 'test rates', '', 'inherit', 'closed', 'closed', '', '1047-revision-v1', '', '', '2015-09-15 12:14:09', '2015-09-15 10:14:09', '', 1047, 'http://localhost/assagaylodge/1047-revision-v1/', 0, 'revision', '', 0),
(1055, 1, '2015-09-15 12:33:49', '2015-09-15 10:33:49', '<h3>Full House Self-Catering (Max 10 persons): <strong>R2950</strong> per night (R295 per person)</h3>\n<h3>Self-Catering:</h3>\n<strong>Weekdays (Monday, Tuesday, Wednesday or Thursday):</strong>\n\nSingle Private Room <strong>R595</strong> per person per night\nSharing <strong>R395</strong> per person per night\n\n<strong>Weekends (Friday, Saturday, Sunday):</strong>\n\nSingle Private Room <strong>R645</strong> per person per night\nSharing <strong>R445</strong> per person per night\n<h3>Breakfast Optional:</h3>\nContinental<strong> R55</strong> per person\nFull English <strong>R95</strong> per person\n<h3>Lodge &amp; Room Servicing Optional: <strong>R195 </strong>per day</h3>\n\n<hr />\n\n&nbsp;\n<h3>Specials</h3>\nWeekdays: Book any 3 weekdays, Monday, Tuesday, Wednesday or Thursday, and only pay for 2 days.\n\n15% Discount. Arrive Friday Depart Sunday.', 'test rates', '', 'inherit', 'closed', 'closed', '', '1047-autosave-v1', '', '', '2015-09-15 12:33:49', '2015-09-15 10:33:49', '', 1047, 'http://localhost/assagaylodge/1047-autosave-v1/', 0, 'revision', '', 0),
(1056, 1, '2015-09-15 12:23:13', '2015-09-15 10:23:13', '[fullwidth background_color=\"#f0f0ed\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"90px\" padding_bottom=\"0px\" padding_left=\"0px\" padding_right=\"0px\" hundred_percent=\"yes\" equal_height_columns=\"yes\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][one_half last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"http://localhost/assagaylodge/wp-content/uploads/2015/01/DSC01554.jpg\" background_repeat=\"no-repeat\" background_position=\"center center\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" class=\"\" id=\"\"][/one_half][one_half last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"30px\" margin_top=\"\" margin_bottom=\"0px\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" class=\"special\" id=\"\"][fusion_text]\r\n<h1>5 BEDROOM FAMILY LODGE</h1>\r\n[/fusion_text][separator style_type=\"single\" top_margin=\"0\" bottom_margin=\"30\" sep_color=\"#000000\" border_size=\"\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"170px\" alignment=\"left\" class=\"separator-left\" id=\"\"][modal name=\"rates\" title=\"2015 Rates\" size=\"large\" background=\"\" border_color=\"\" show_footer=\"yes\" class=\"\" id=\"\"]\r\n\r\nALL PRICES ARE VAT INCLUSIVE\r\n<h3>Full House Self-Catering (Max 10 persons):</h3>\r\n<strong>R2950</strong> per night (R295 per person)\r\n<h3>Self-Catering:</h3>\r\n<strong>Weekdays (Monday, Tuesday, Wednesday or Thursday):</strong>\r\n\r\nSingle Private Room <strong>R595</strong> per person per night\r\nSharing <strong>R395</strong> per person per night\r\n\r\n<strong>Weekends (Friday, Saturday, Sunday):</strong>\r\n\r\nSingle Private Room <strong>R695</strong> per person per night\r\nSharing <strong>R495</strong> per person per night\r\n<h3>Breakfast Optional:</h3>\r\nContinental<strong> R55</strong> per person\r\nFull English <strong>R95</strong> per person\r\n<h3>Lodge &amp; Room Servicing Optional:</h3>\r\n<strong>R195 </strong>per day\r\n\r\n<hr />\r\n\r\n<h3>Specials</h3>\r\nWeekdays: Book any 3 weekdays, Monday, Tuesday, Wednesday or Thursday, and only pay for 2 days.\r\n\r\n15% Discount. Arrive Friday Depart Sunday.\r\n\r\n[/modal][button link=\"\" color=\"darkgreen\" size=\"\" type=\"\" shape=\"\" target=\"_self\" title=\"\" gradient_colors=\"|\" gradient_hover_colors=\"|\" accent_color=\"\" accent_hover_color=\"\" bevel_color=\"\" border_width=\"1px\" icon=\"\" icon_position=\"left\" icon_divider=\"no\" modal=\"rates\" animation_type=\"0\" animation_direction=\"left\" animation_speed=\"1\" alignment=\"\" class=\"\" id=\"\"]2015 RATES[/button][button link=\"\" color=\"darkgreen\" size=\"\" type=\"\" shape=\"\" target=\"_self\" title=\"\" gradient_colors=\"|\" gradient_hover_colors=\"|\" accent_color=\"\" accent_hover_color=\"\" bevel_color=\"\" border_width=\"1px\" icon=\"\" icon_position=\"left\" icon_divider=\"no\" modal=\"rates\" animation_type=\"0\" animation_direction=\"left\" animation_speed=\"1\" alignment=\"\" class=\"\" id=\"\"]2015 RATES[/button][/one_half][/fullwidth][menu_anchor name=\"LODGE\"][fullwidth background_color=\"#f0f0ed\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"20\" padding_bottom=\"20\" padding_left=\"0px\" padding_right=\"0px\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][one_half last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][fusion_text]\r\n<h3 style=\"text-align: justify;\">The property boasts over 200 different species of birds and animals. The Lodge is situated on the 1000 Hills tourism route, on the edge of Hillcrest and is a perfect place from which one can launch to any one of the many fantastic destinations and game reserves in KwaZulu Natal, i.e. the Majestic Drakensberg Mountain Range, Shongweni Nature Reserve, Nagle Dam, Durban &amp; Beach Front. We are also the doorstep of one of KZN’s major horse riding venues namely, the Shongweni Horse Riding Club &amp; the Summerveld Horse Riding Academy, makes Assagay Lodge a perfect home away from home for the equestrian lovers. The peace &amp; tranquility will take you far away from the business of city life. Evenings are quiet and peaceful. This is a unique and memorable country experience.</h3>\r\n[/fusion_text][/one_half][one_half last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][fusion_text]\r\n<h3 style=\"text-align: justify;\">We are a homely \'down to earth\' country guest lodge, set on a farm surrounded by acres of beautiful hills, forests, &amp; dams in the Madwala Conservancy of Assagay, where horses still have the right of way on all roads. Our five bedrooms have a rustic charm offering the comforts of modern day life.</h3>\r\n<h3 style=\"text-align: justify;\">Assagay Forest Lodge is owner managed, built in 2005 the lodge provides 5 cozy bedrooms with a large spacious and comfortable homely lounge, which leads onto a large deck area. Set on a 6 acre property in the Assagay Conservancy our lodge is nestled around trees, bushes, and beautiful gardens and a stream, allowing visitors to meander and relax. Guests seeking a quite, relaxing, homely experience will find our lodge the perfect choice away from home. There is a kitchen available should you wish to muster up a snack or quick meal, however breakfast is available on request.</h3>\r\n[/fusion_text][/one_half][/fullwidth][fullwidth background_color=\"#f0f0ed\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"20\" padding_bottom=\"20\" padding_left=\"0px\" padding_right=\"0px\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][fusion_text]\r\n<h1 style=\"text-align: center;\">Gallery</h1>\r\n[/fusion_text][separator style_type=\"single\" top_margin=\"\" bottom_margin=\"40\" sep_color=\"#000000\" border_size=\"\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"170px\" alignment=\"\" class=\"\" id=\"\"][one_sixth last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][/one_sixth][two_third last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][fusion_text]\r\n<h3 style=\"text-align: center;\">The Lodge is open, spacious, comfortable and homely.</h3>\r\n[/fusion_text][/two_third][one_sixth last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][/one_sixth][/fullwidth][fullwidth background_color=\"#f0f0ed\" background_image=\"http://localhost/assagaylodge/wp-content/uploads/2015/01/Wood_Texture.jpg\" background_parallax=\"fixed\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"30\" padding_bottom=\"10\" padding_left=\"0\" padding_right=\"0\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][recent_works layout=\"grid\" picture_size=\"auto\" boxed_text=\"unboxed\" filters=\"no\" columns=\"3\" column_spacing=\"12\" cat_slug=\"the-lodge\" exclude_cats=\"\" number_posts=\"9\" offset=\"\" excerpt_length=\"35\" strip_html=\"yes\" carousel_layout=\"title_on_rollover\" scroll_items=\"\" autoplay=\"no\" show_nav=\"yes\" mouse_scroll=\"no\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" class=\"\" id=\"\"][/recent_works][/fullwidth][fullwidth background_color=\"#f0f0ed\" background_image=\"\" background_parallax=\"fixed\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"20\" padding_bottom=\"20\" padding_left=\"0px\" padding_right=\"0px\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][menu_anchor name=\"BEDROOMS\"][fusion_text]\r\n<h1 style=\"text-align: center;\">BEDROOMS</h1>\r\n[/fusion_text][separator style_type=\"single\" top_margin=\"\" bottom_margin=\"20\" sep_color=\"#000000\" border_size=\"\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"170px\" alignment=\"\" class=\"\" id=\"\"][one_sixth last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][/one_sixth][two_third last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][fusion_text]\r\n<h3 style=\"text-align: justify;\">When it comes to our bedrooms we’re proud to say we’re different. We offer something a little more special.</h3>\r\n<h3 style=\"text-align: justify;\">Our five bedrooms are all en-suite and equipped with either king size or queen size beds. Each room sleeps two guests. The rooms have high ceilings, wall heaters &amp; ceiling fans. Beds all have electric blankets in Winter, 100% cotton percale sheets and thick hyper allergenic microfiber duvets and pillows.</h3>\r\n[/fusion_text][/two_third][one_sixth last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][/one_sixth][/fullwidth][fullwidth background_color=\"\" background_image=\"http://localhost/assagaylodge/wp-content/uploads/2015/01/DSC01516-1148-x-764.jpg\" background_parallax=\"fixed\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"center center\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"20\" padding_bottom=\"20\" padding_left=\"0\" padding_right=\"0\" hundred_percent=\"no\" equal_height_columns=\"yes\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][recent_works layout=\"grid\" picture_size=\"auto\" boxed_text=\"unboxed\" filters=\"no\" columns=\"3\" column_spacing=\"12\" cat_slug=\"bedrooms\" exclude_cats=\"\" number_posts=\"6\" offset=\"\" excerpt_length=\"35\" strip_html=\"yes\" carousel_layout=\"title_on_rollover\" scroll_items=\"\" autoplay=\"no\" show_nav=\"yes\" mouse_scroll=\"no\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" class=\"\" id=\"\"][/recent_works][/fullwidth][fullwidth background_color=\"#f0f0ed\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"20\" padding_bottom=\"20\" padding_left=\"0\" padding_right=\"0\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][menu_anchor name=\"GARDENS\"][fusion_text]\r\n<h1 style=\"text-align: center;\">GARDENS</h1>\r\n[/fusion_text][separator style_type=\"none\" top_margin=\"40\" bottom_margin=\"\" sep_color=\"\" border_size=\"\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"100%\" alignment=\"center\" class=\"\" id=\"\"][one_sixth last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][/one_sixth][two_third last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][fusion_text]\r\n<h3 style=\"text-align: center;\">Walk &amp; relax in our beautiful gardens.</h3>\r\n[/fusion_text][/two_third][one_sixth last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][/one_sixth][recent_works layout=\"grid\" picture_size=\"auto\" boxed_text=\"boxed\" filters=\"no\" columns=\"3\" column_spacing=\"12\" cat_slug=\"gardens\" exclude_cats=\"\" number_posts=\"9\" offset=\"\" excerpt_length=\"35\" strip_html=\"yes\" carousel_layout=\"title_on_rollover\" scroll_items=\"\" autoplay=\"no\" show_nav=\"yes\" mouse_scroll=\"no\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" class=\"\" id=\"\"][/recent_works][/fullwidth][fullwidth background_color=\"#ffffff\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"65px\" padding_bottom=\"65px\" padding_left=\"0px\" padding_right=\"0px\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][button link=\"http://localhost/assagaylodge/book-now/\" color=\"default\" size=\"xlarge\" type=\"3d\" shape=\"round\" target=\"_self\" title=\"\" gradient_colors=\"#f0f0ed|#f0f0ed\" gradient_hover_colors=\"#6666a4|#6666a4\" accent_color=\"#ffffff\" accent_hover_color=\"#ffffff\" bevel_color=\"\" border_width=\"0px\" icon=\"\" icon_position=\"left\" icon_divider=\"no\" modal=\"\" animation_type=\"0\" animation_direction=\"left\" animation_speed=\"1\" alignment=\"center\" class=\"\" id=\"\"]Make A Reservation Enquiry[/button][/fullwidth][menu_anchor name=\"\"][modal name=\"\" title=\"\" size=\"\" background=\"\" border_color=\"\" show_footer=\"\" class=\"\" id=\"\"][/modal][modal name=\"\" title=\"\" size=\"\" background=\"\" border_color=\"\" show_footer=\"\" class=\"\" id=\"\"][/modal][modal name=\"\" title=\"\" size=\"\" background=\"\" border_color=\"\" show_footer=\"\" class=\"\" id=\"\"][/modal][modal name=\"\" title=\"\" size=\"\" background=\"\" border_color=\"\" show_footer=\"\" class=\"\" id=\"\"][/modal]', 'Home', '', 'inherit', 'closed', 'closed', '', '7-revision-v1', '', '', '2015-09-15 12:23:13', '2015-09-15 10:23:13', '', 7, 'http://localhost/assagaylodge/7-revision-v1/', 0, 'revision', '', 0);
INSERT INTO `wp_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(1057, 1, '2015-09-15 12:25:53', '2015-09-15 10:25:53', '[fullwidth background_color=\"#f0f0ed\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"90px\" padding_bottom=\"0px\" padding_left=\"0px\" padding_right=\"0px\" hundred_percent=\"yes\" equal_height_columns=\"yes\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][one_half last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"http://localhost/assagaylodge/wp-content/uploads/2015/01/DSC01554.jpg\" background_repeat=\"no-repeat\" background_position=\"center center\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" class=\"\" id=\"\"][/one_half][one_half last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"30px\" margin_top=\"\" margin_bottom=\"0px\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" class=\"special\" id=\"\"][fusion_text]\r\n<h1>5 BEDROOM FAMILY LODGE</h1>\r\n<h3>We are a homely \'down to earth\' country guest lodge, set on a farm surrounded by acres of beautiful hills, forests, &amp; dams in the Madwala Conservancy of Assagay.</h3>\r\n[/fusion_text][separator style_type=\"single\" top_margin=\"0\" bottom_margin=\"30\" sep_color=\"#000000\" border_size=\"\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"170px\" alignment=\"left\" class=\"separator-left\" id=\"\"][modal name=\"rates\" title=\"2015 Rates\" size=\"large\" background=\"\" border_color=\"\" show_footer=\"yes\" class=\"\" id=\"\"]\r\n\r\nALL PRICES ARE VAT INCLUSIVE\r\n<h3>Full House Self-Catering (Max 10 persons):</h3>\r\n<strong>R2950</strong> per night (R295 per person)\r\n<h3>Self-Catering:</h3>\r\n<strong>Weekdays (Monday, Tuesday, Wednesday or Thursday):</strong>\r\n\r\nSingle Private Room <strong>R595</strong> per person per night\r\nSharing <strong>R395</strong> per person per night\r\n\r\n<strong>Weekends (Friday, Saturday, Sunday):</strong>\r\n\r\nSingle Private Room <strong>R695</strong> per person per night\r\nSharing <strong>R495</strong> per person per night\r\n<h3>Breakfast Optional:</h3>\r\nContinental<strong> R55</strong> per person\r\nFull English <strong>R95</strong> per person\r\n<h3>Lodge &amp; Room Servicing Optional:</h3>\r\n<strong>R195 </strong>per day\r\n\r\n<hr />\r\n\r\n<h3>Specials</h3>\r\nWeekdays: Book any 3 weekdays, Monday, Tuesday, Wednesday or Thursday, and only pay for 2 days.\r\n\r\n15% Discount. Arrive Friday Depart Sunday.\r\n\r\n[/modal][button link=\"\" color=\"darkgreen\" size=\"\" type=\"\" shape=\"\" target=\"_self\" title=\"\" gradient_colors=\"|\" gradient_hover_colors=\"|\" accent_color=\"\" accent_hover_color=\"\" bevel_color=\"\" border_width=\"1px\" icon=\"\" icon_position=\"left\" icon_divider=\"no\" modal=\"rates\" animation_type=\"0\" animation_direction=\"left\" animation_speed=\"1\" alignment=\"\" class=\"\" id=\"\"]2015 RATES[/button][/one_half][/fullwidth][menu_anchor name=\"LODGE\"][fullwidth background_color=\"#f0f0ed\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"20\" padding_bottom=\"20\" padding_left=\"0px\" padding_right=\"0px\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][one_half last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][fusion_text]\r\n<h3 style=\"text-align: justify;\">The property boasts over 200 different species of birds and animals. The Lodge is situated on the 1000 Hills tourism route, on the edge of Hillcrest and is a perfect place from which one can launch to any one of the many fantastic destinations and game reserves in KwaZulu Natal, i.e. the Majestic Drakensberg Mountain Range, Shongweni Nature Reserve, Nagle Dam, Durban &amp; Beach Front. We are also the doorstep of one of KZN’s major horse riding venues namely, the Shongweni Horse Riding Club &amp; the Summerveld Horse Riding Academy, makes Assagay Lodge a perfect home away from home for the equestrian lovers. The peace &amp; tranquility will take you far away from the business of city life. Evenings are quiet and peaceful. This is a unique and memorable country experience.</h3>\r\n[/fusion_text][/one_half][one_half last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][fusion_text]\r\n<h3 style=\"text-align: justify;\">We are a homely \'down to earth\' country guest lodge, set on a farm surrounded by acres of beautiful hills, forests, &amp; dams in the Madwala Conservancy of Assagay, where horses still have the right of way on all roads. Our five bedrooms have a rustic charm offering the comforts of modern day life.</h3>\r\n<h3 style=\"text-align: justify;\">Assagay Forest Lodge is owner managed, built in 2005 the lodge provides 5 cozy bedrooms with a large spacious and comfortable homely lounge, which leads onto a large deck area. Set on a 6 acre property in the Assagay Conservancy our lodge is nestled around trees, bushes, and beautiful gardens and a stream, allowing visitors to meander and relax. Guests seeking a quite, relaxing, homely experience will find our lodge the perfect choice away from home. There is a kitchen available should you wish to muster up a snack or quick meal, however breakfast is available on request.</h3>\r\n[/fusion_text][/one_half][/fullwidth][fullwidth background_color=\"#f0f0ed\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"20\" padding_bottom=\"20\" padding_left=\"0px\" padding_right=\"0px\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][fusion_text]\r\n<h1 style=\"text-align: center;\">Gallery</h1>\r\n[/fusion_text][separator style_type=\"single\" top_margin=\"\" bottom_margin=\"40\" sep_color=\"#000000\" border_size=\"\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"170px\" alignment=\"\" class=\"\" id=\"\"][one_sixth last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][/one_sixth][two_third last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][fusion_text]\r\n<h3 style=\"text-align: center;\">The Lodge is open, spacious, comfortable and homely.</h3>\r\n[/fusion_text][/two_third][one_sixth last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][/one_sixth][/fullwidth][fullwidth background_color=\"#f0f0ed\" background_image=\"http://localhost/assagaylodge/wp-content/uploads/2015/01/Wood_Texture.jpg\" background_parallax=\"fixed\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"30\" padding_bottom=\"10\" padding_left=\"0\" padding_right=\"0\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][recent_works layout=\"grid\" picture_size=\"auto\" boxed_text=\"unboxed\" filters=\"no\" columns=\"3\" column_spacing=\"12\" cat_slug=\"the-lodge\" exclude_cats=\"\" number_posts=\"9\" offset=\"\" excerpt_length=\"35\" strip_html=\"yes\" carousel_layout=\"title_on_rollover\" scroll_items=\"\" autoplay=\"no\" show_nav=\"yes\" mouse_scroll=\"no\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" class=\"\" id=\"\"][/recent_works][/fullwidth][fullwidth background_color=\"#f0f0ed\" background_image=\"\" background_parallax=\"fixed\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"20\" padding_bottom=\"20\" padding_left=\"0px\" padding_right=\"0px\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][menu_anchor name=\"BEDROOMS\"][fusion_text]\r\n<h1 style=\"text-align: center;\">BEDROOMS</h1>\r\n[/fusion_text][separator style_type=\"single\" top_margin=\"\" bottom_margin=\"20\" sep_color=\"#000000\" border_size=\"\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"170px\" alignment=\"\" class=\"\" id=\"\"][one_sixth last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][/one_sixth][two_third last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][fusion_text]\r\n<h3 style=\"text-align: justify;\">When it comes to our bedrooms we’re proud to say we’re different. We offer something a little more special.</h3>\r\n<h3 style=\"text-align: justify;\">Our five bedrooms are all en-suite and equipped with either king size or queen size beds. Each room sleeps two guests. The rooms have high ceilings, wall heaters &amp; ceiling fans. Beds all have electric blankets in Winter, 100% cotton percale sheets and thick hyper allergenic microfiber duvets and pillows.</h3>\r\n[/fusion_text][/two_third][one_sixth last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][/one_sixth][/fullwidth][fullwidth background_color=\"\" background_image=\"http://localhost/assagaylodge/wp-content/uploads/2015/01/DSC01516-1148-x-764.jpg\" background_parallax=\"fixed\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"center center\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"20\" padding_bottom=\"20\" padding_left=\"0\" padding_right=\"0\" hundred_percent=\"no\" equal_height_columns=\"yes\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][recent_works layout=\"grid\" picture_size=\"auto\" boxed_text=\"unboxed\" filters=\"no\" columns=\"3\" column_spacing=\"12\" cat_slug=\"bedrooms\" exclude_cats=\"\" number_posts=\"6\" offset=\"\" excerpt_length=\"35\" strip_html=\"yes\" carousel_layout=\"title_on_rollover\" scroll_items=\"\" autoplay=\"no\" show_nav=\"yes\" mouse_scroll=\"no\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" class=\"\" id=\"\"][/recent_works][/fullwidth][fullwidth background_color=\"#f0f0ed\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"20\" padding_bottom=\"20\" padding_left=\"0\" padding_right=\"0\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][menu_anchor name=\"GARDENS\"][fusion_text]\r\n<h1 style=\"text-align: center;\">GARDENS</h1>\r\n[/fusion_text][separator style_type=\"none\" top_margin=\"40\" bottom_margin=\"\" sep_color=\"\" border_size=\"\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"100%\" alignment=\"center\" class=\"\" id=\"\"][one_sixth last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][/one_sixth][two_third last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][fusion_text]\r\n<h3 style=\"text-align: center;\">Walk &amp; relax in our beautiful gardens.</h3>\r\n[/fusion_text][/two_third][one_sixth last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][/one_sixth][recent_works layout=\"grid\" picture_size=\"auto\" boxed_text=\"boxed\" filters=\"no\" columns=\"3\" column_spacing=\"12\" cat_slug=\"gardens\" exclude_cats=\"\" number_posts=\"9\" offset=\"\" excerpt_length=\"35\" strip_html=\"yes\" carousel_layout=\"title_on_rollover\" scroll_items=\"\" autoplay=\"no\" show_nav=\"yes\" mouse_scroll=\"no\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" class=\"\" id=\"\"][/recent_works][/fullwidth][fullwidth background_color=\"#ffffff\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"65px\" padding_bottom=\"65px\" padding_left=\"0px\" padding_right=\"0px\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][button link=\"http://localhost/assagaylodge/book-now/\" color=\"default\" size=\"xlarge\" type=\"3d\" shape=\"round\" target=\"_self\" title=\"\" gradient_colors=\"#f0f0ed|#f0f0ed\" gradient_hover_colors=\"#6666a4|#6666a4\" accent_color=\"#ffffff\" accent_hover_color=\"#ffffff\" bevel_color=\"\" border_width=\"0px\" icon=\"\" icon_position=\"left\" icon_divider=\"no\" modal=\"\" animation_type=\"0\" animation_direction=\"left\" animation_speed=\"1\" alignment=\"center\" class=\"\" id=\"\"]Make A Reservation Enquiry[/button][/fullwidth][menu_anchor name=\"\"][modal name=\"\" title=\"\" size=\"\" background=\"\" border_color=\"\" show_footer=\"\" class=\"\" id=\"\"][/modal][modal name=\"\" title=\"\" size=\"\" background=\"\" border_color=\"\" show_footer=\"\" class=\"\" id=\"\"][/modal][modal name=\"\" title=\"\" size=\"\" background=\"\" border_color=\"\" show_footer=\"\" class=\"\" id=\"\"][/modal][modal name=\"\" title=\"\" size=\"\" background=\"\" border_color=\"\" show_footer=\"\" class=\"\" id=\"\"][/modal]', 'Home', '', 'inherit', 'closed', 'closed', '', '7-revision-v1', '', '', '2015-09-15 12:25:53', '2015-09-15 10:25:53', '', 7, 'http://localhost/assagaylodge/7-revision-v1/', 0, 'revision', '', 0),
(1058, 1, '2015-09-15 12:34:08', '2015-09-15 10:34:08', '[fullwidth background_color=\"#f0f0ed\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"90px\" padding_bottom=\"0px\" padding_left=\"0px\" padding_right=\"0px\" hundred_percent=\"yes\" equal_height_columns=\"yes\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][one_half last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"http://localhost/assagaylodge/wp-content/uploads/2015/01/DSC01554.jpg\" background_repeat=\"no-repeat\" background_position=\"center center\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" class=\"\" id=\"\"][/one_half][one_half last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"30px\" margin_top=\"\" margin_bottom=\"0px\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" class=\"special\" id=\"\"][fusion_text]\r\n<h1>5 BEDROOM FAMILY LODGE</h1>\r\n<h3>We are a homely \'down to earth\' country guest lodge, set on a farm surrounded by acres of beautiful hills, forests, &amp; dams in the Madwala Conservancy of Assagay.</h3>\r\n[/fusion_text][separator style_type=\"single\" top_margin=\"0\" bottom_margin=\"30\" sep_color=\"#000000\" border_size=\"\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"170px\" alignment=\"left\" class=\"separator-left\" id=\"\"][modal name=\"rates\" title=\"2015 Rates\" size=\"large\" background=\"\" border_color=\"\" show_footer=\"yes\" class=\"\" id=\"\"]\r\n<h3>Full House Self-Catering (Max 10 persons): <strong>R2950</strong> per night (R295 per person)</h3>\r\n<h3>Self-Catering:</h3>\r\n<strong>Weekdays (Monday, Tuesday, Wednesday or Thursday):</strong>\r\n\r\nSingle Private Room <strong>R595</strong> per person per night\r\nSharing <strong>R395</strong> per person per night\r\n\r\n<strong>Weekends (Friday, Saturday, Sunday):</strong>\r\n\r\nSingle Private Room <strong>R645</strong> per person per night\r\nSharing <strong>R445</strong> per person per night\r\n<h3>Breakfast Optional:</h3>\r\nContinental<strong> R55</strong> per person\r\nFull English <strong>R95</strong> per person\r\n<h3>Lodge &amp; Room Servicing Optional: <strong>R195 </strong>per day</h3>\r\n\r\n<hr />\r\n\r\n&nbsp;\r\n<h3>Specials</h3>\r\nWeekdays: Book any 3 weekdays, Monday, Tuesday, Wednesday or Thursday, and only pay for 2 days.\r\n\r\n15% Discount. Arrive Friday Depart Sunday.[/modal][button link=\"\" color=\"darkgreen\" size=\"\" type=\"\" shape=\"\" target=\"_self\" title=\"\" gradient_colors=\"|\" gradient_hover_colors=\"|\" accent_color=\"\" accent_hover_color=\"\" bevel_color=\"\" border_width=\"1px\" icon=\"\" icon_position=\"left\" icon_divider=\"no\" modal=\"rates\" animation_type=\"0\" animation_direction=\"left\" animation_speed=\"1\" alignment=\"\" class=\"\" id=\"\"]2015 RATES[/button][/one_half][/fullwidth][menu_anchor name=\"LODGE\"][fullwidth background_color=\"#f0f0ed\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"20\" padding_bottom=\"20\" padding_left=\"0px\" padding_right=\"0px\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][one_half last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][fusion_text]\r\n<h3 style=\"text-align: justify;\">The property boasts over 200 different species of birds and animals. The Lodge is situated on the 1000 Hills tourism route, on the edge of Hillcrest and is a perfect place from which one can launch to any one of the many fantastic destinations and game reserves in KwaZulu Natal, i.e. the Majestic Drakensberg Mountain Range, Shongweni Nature Reserve, Nagle Dam, Durban &amp; Beach Front. We are also the doorstep of one of KZN’s major horse riding venues namely, the Shongweni Horse Riding Club &amp; the Summerveld Horse Riding Academy, makes Assagay Lodge a perfect home away from home for the equestrian lovers. The peace &amp; tranquility will take you far away from the business of city life. Evenings are quiet and peaceful. This is a unique and memorable country experience.</h3>\r\n[/fusion_text][/one_half][one_half last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][fusion_text]\r\n<h3 style=\"text-align: justify;\">We are a homely \'down to earth\' country guest lodge, set on a farm surrounded by acres of beautiful hills, forests, &amp; dams in the Madwala Conservancy of Assagay, where horses still have the right of way on all roads. Our five bedrooms have a rustic charm offering the comforts of modern day life.</h3>\r\n<h3 style=\"text-align: justify;\">Assagay Forest Lodge is owner managed, built in 2005 the lodge provides 5 cozy bedrooms with a large spacious and comfortable homely lounge, which leads onto a large deck area. Set on a 6 acre property in the Assagay Conservancy our lodge is nestled around trees, bushes, and beautiful gardens and a stream, allowing visitors to meander and relax. Guests seeking a quite, relaxing, homely experience will find our lodge the perfect choice away from home. There is a kitchen available should you wish to muster up a snack or quick meal, however breakfast is available on request.</h3>\r\n[/fusion_text][/one_half][/fullwidth][fullwidth background_color=\"#f0f0ed\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"20\" padding_bottom=\"20\" padding_left=\"0px\" padding_right=\"0px\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][fusion_text]\r\n<h1 style=\"text-align: center;\">Gallery</h1>\r\n[/fusion_text][separator style_type=\"single\" top_margin=\"\" bottom_margin=\"40\" sep_color=\"#000000\" border_size=\"\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"170px\" alignment=\"\" class=\"\" id=\"\"][one_sixth last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][/one_sixth][two_third last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][fusion_text]\r\n<h3 style=\"text-align: center;\">The Lodge is open, spacious, comfortable and homely.</h3>\r\n[/fusion_text][/two_third][one_sixth last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][/one_sixth][/fullwidth][fullwidth background_color=\"#f0f0ed\" background_image=\"http://localhost/assagaylodge/wp-content/uploads/2015/01/Wood_Texture.jpg\" background_parallax=\"fixed\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"30\" padding_bottom=\"10\" padding_left=\"0\" padding_right=\"0\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][recent_works layout=\"grid\" picture_size=\"auto\" boxed_text=\"unboxed\" filters=\"no\" columns=\"3\" column_spacing=\"12\" cat_slug=\"the-lodge\" exclude_cats=\"\" number_posts=\"9\" offset=\"\" excerpt_length=\"35\" strip_html=\"yes\" carousel_layout=\"title_on_rollover\" scroll_items=\"\" autoplay=\"no\" show_nav=\"yes\" mouse_scroll=\"no\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" class=\"\" id=\"\"][/recent_works][/fullwidth][fullwidth background_color=\"#f0f0ed\" background_image=\"\" background_parallax=\"fixed\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"20\" padding_bottom=\"20\" padding_left=\"0px\" padding_right=\"0px\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][menu_anchor name=\"BEDROOMS\"][fusion_text]\r\n<h1 style=\"text-align: center;\">BEDROOMS</h1>\r\n[/fusion_text][separator style_type=\"single\" top_margin=\"\" bottom_margin=\"20\" sep_color=\"#000000\" border_size=\"\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"170px\" alignment=\"\" class=\"\" id=\"\"][one_sixth last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][/one_sixth][two_third last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][fusion_text]\r\n<h3 style=\"text-align: justify;\">When it comes to our bedrooms we’re proud to say we’re different. We offer something a little more special.</h3>\r\n<h3 style=\"text-align: justify;\">Our five bedrooms are all en-suite and equipped with either king size or queen size beds. Each room sleeps two guests. The rooms have high ceilings, wall heaters &amp; ceiling fans. Beds all have electric blankets in Winter, 100% cotton percale sheets and thick hyper allergenic microfiber duvets and pillows.</h3>\r\n[/fusion_text][/two_third][one_sixth last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][/one_sixth][/fullwidth][fullwidth background_color=\"\" background_image=\"http://localhost/assagaylodge/wp-content/uploads/2015/01/DSC01516-1148-x-764.jpg\" background_parallax=\"fixed\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"center center\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"20\" padding_bottom=\"20\" padding_left=\"0\" padding_right=\"0\" hundred_percent=\"no\" equal_height_columns=\"yes\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][recent_works layout=\"grid\" picture_size=\"auto\" boxed_text=\"unboxed\" filters=\"no\" columns=\"3\" column_spacing=\"12\" cat_slug=\"bedrooms\" exclude_cats=\"\" number_posts=\"6\" offset=\"\" excerpt_length=\"35\" strip_html=\"yes\" carousel_layout=\"title_on_rollover\" scroll_items=\"\" autoplay=\"no\" show_nav=\"yes\" mouse_scroll=\"no\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" class=\"\" id=\"\"][/recent_works][/fullwidth][fullwidth background_color=\"#f0f0ed\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"20\" padding_bottom=\"20\" padding_left=\"0\" padding_right=\"0\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][menu_anchor name=\"GARDENS\"][fusion_text]\r\n<h1 style=\"text-align: center;\">GARDENS</h1>\r\n[/fusion_text][separator style_type=\"none\" top_margin=\"40\" bottom_margin=\"\" sep_color=\"\" border_size=\"\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"100%\" alignment=\"center\" class=\"\" id=\"\"][one_sixth last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][/one_sixth][two_third last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][fusion_text]\r\n<h3 style=\"text-align: center;\">Walk &amp; relax in our beautiful gardens.</h3>\r\n[/fusion_text][/two_third][one_sixth last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][/one_sixth][recent_works layout=\"grid\" picture_size=\"auto\" boxed_text=\"boxed\" filters=\"no\" columns=\"3\" column_spacing=\"12\" cat_slug=\"gardens\" exclude_cats=\"\" number_posts=\"9\" offset=\"\" excerpt_length=\"35\" strip_html=\"yes\" carousel_layout=\"title_on_rollover\" scroll_items=\"\" autoplay=\"no\" show_nav=\"yes\" mouse_scroll=\"no\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" class=\"\" id=\"\"][/recent_works][/fullwidth][fullwidth background_color=\"#ffffff\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"65px\" padding_bottom=\"65px\" padding_left=\"0px\" padding_right=\"0px\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][button link=\"http://localhost/assagaylodge/book-now/\" color=\"default\" size=\"xlarge\" type=\"3d\" shape=\"round\" target=\"_self\" title=\"\" gradient_colors=\"#f0f0ed|#f0f0ed\" gradient_hover_colors=\"#6666a4|#6666a4\" accent_color=\"#ffffff\" accent_hover_color=\"#ffffff\" bevel_color=\"\" border_width=\"0px\" icon=\"\" icon_position=\"left\" icon_divider=\"no\" modal=\"\" animation_type=\"0\" animation_direction=\"left\" animation_speed=\"1\" alignment=\"center\" class=\"\" id=\"\"]Make A Reservation Enquiry[/button][/fullwidth][menu_anchor name=\"\"][modal name=\"\" title=\"\" size=\"\" background=\"\" border_color=\"\" show_footer=\"\" class=\"\" id=\"\"][/modal][modal name=\"\" title=\"\" size=\"\" background=\"\" border_color=\"\" show_footer=\"\" class=\"\" id=\"\"][/modal][modal name=\"\" title=\"\" size=\"\" background=\"\" border_color=\"\" show_footer=\"\" class=\"\" id=\"\"][/modal][modal name=\"\" title=\"\" size=\"\" background=\"\" border_color=\"\" show_footer=\"\" class=\"\" id=\"\"][/modal]', 'Home', '', 'inherit', 'closed', 'closed', '', '7-revision-v1', '', '', '2015-09-15 12:34:08', '2015-09-15 10:34:08', '', 7, 'http://localhost/assagaylodge/7-revision-v1/', 0, 'revision', '', 0);
INSERT INTO `wp_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(1059, 1, '2015-09-15 12:36:33', '2015-09-15 10:36:33', '[fullwidth background_color=\"#f0f0ed\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"90px\" padding_bottom=\"0px\" padding_left=\"0px\" padding_right=\"0px\" hundred_percent=\"yes\" equal_height_columns=\"yes\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][one_half last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"http://localhost/assagaylodge/wp-content/uploads/2015/01/DSC01554.jpg\" background_repeat=\"no-repeat\" background_position=\"center center\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" class=\"\" id=\"\"][/one_half][one_half last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"30px\" margin_top=\"\" margin_bottom=\"0px\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" class=\"special\" id=\"\"][fusion_text]\r\n<h1>5 BEDROOM FAMILY LODGE</h1>\r\n<h3>We are a homely \'down to earth\' country guest lodge, set on a farm surrounded by acres of beautiful hills, forests, &amp; dams in the Madwala Conservancy of Assagay.</h3>\r\n[/fusion_text][separator style_type=\"single\" top_margin=\"0\" bottom_margin=\"30\" sep_color=\"#000000\" border_size=\"\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"170px\" alignment=\"left\" class=\"separator-left\" id=\"\"][modal name=\"rates\" title=\"2015 Rates\" size=\"large\" background=\"\" border_color=\"\" show_footer=\"yes\" class=\"\" id=\"\"]<p>ALL PRICES INCLUDE VAT</p>\r\n<h3>Full House Self-Catering (Max 10 persons): <strong>R2950</strong> per night (R295 per person)</h3>\r\n<h3>Self-Catering:</h3>\r\n<p><strong>Weekdays (Monday, Tuesday, Wednesday or Thursday):</strong></p>\r\n<p>Single Private Room <strong>R595</strong> per person per night<br />\r\nSharing <strong>R395</strong> per person per night</p>\r\n<p><strong>Weekends (Friday, Saturday, Sunday):</strong></p>\r\n<p>Single Private Room <strong>R645</strong> per person per night<br />\r\nSharing <strong>R445</strong> per person per night</p>\r\n<h3>Breakfast Optional:</h3>\r\n<p>Continental<strong> R55</strong> per person<br />\r\nFull English <strong>R95</strong> per person</p>\r\n<h3>Lodge & Room Servicing Optional: <strong>R195 </strong>per day</h3>\r\n<hr />\r\n<p> </p>\r\n<h3>Specials</h3>\r\n<p>Weekdays: Book any 3 weekdays, Monday, Tuesday, Wednesday or Thursday, and only pay for 2 days.</p>\r\n<p>15% Discount. Arrive Friday Depart Sunday.</p>\r\n[/modal][button link=\"\" color=\"darkgreen\" size=\"\"  type=\"\" shape=\"\" target=\"_self\" title=\"\" gradient_colors=\"|\" gradient_hover_colors=\"|\" accent_color=\"\" accent_hover_color=\"\" bevel_color=\"\" border_width=\"1px\" icon=\"\" icon_position=\"left\" icon_divider=\"no\" modal=\"rates\" animation_type=\"0\" animation_direction=\"left\" animation_speed=\"1\" alignment=\"\" class=\"\" id=\"\"]2015 RATES[/button][/one_half][/fullwidth][menu_anchor name=\"LODGE\"][fullwidth background_color=\"#f0f0ed\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"20\" padding_bottom=\"20\" padding_left=\"0px\" padding_right=\"0px\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][one_half last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][fusion_text]\r\n<h3 style=\"text-align: justify;\">The property boasts over 200 different species of birds and animals. The Lodge is situated on the 1000 Hills tourism route, on the edge of Hillcrest and is a perfect place from which one can launch to any one of the many fantastic destinations and game reserves in KwaZulu Natal, i.e. the Majestic Drakensberg Mountain Range, Shongweni Nature Reserve, Nagle Dam, Durban &amp; Beach Front. We are also the doorstep of one of KZN’s major horse riding venues namely, the Shongweni Horse Riding Club &amp; the Summerveld Horse Riding Academy, makes Assagay Lodge a perfect home away from home for the equestrian lovers. The peace &amp; tranquility will take you far away from the business of city life. Evenings are quiet and peaceful. This is a unique and memorable country experience.</h3>\r\n[/fusion_text][/one_half][one_half last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][fusion_text]\r\n<h3 style=\"text-align: justify;\">We are a homely \'down to earth\' country guest lodge, set on a farm surrounded by acres of beautiful hills, forests, &amp; dams in the Madwala Conservancy of Assagay, where horses still have the right of way on all roads. Our five bedrooms have a rustic charm offering the comforts of modern day life.</h3>\r\n<h3 style=\"text-align: justify;\">Assagay Forest Lodge is owner managed, built in 2005 the lodge provides 5 cozy bedrooms with a large spacious and comfortable homely lounge, which leads onto a large deck area. Set on a 6 acre property in the Assagay Conservancy our lodge is nestled around trees, bushes, and beautiful gardens and a stream, allowing visitors to meander and relax. Guests seeking a quite, relaxing, homely experience will find our lodge the perfect choice away from home. There is a kitchen available should you wish to muster up a snack or quick meal, however breakfast is available on request.</h3>\r\n[/fusion_text][/one_half][/fullwidth][fullwidth background_color=\"#f0f0ed\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"20\" padding_bottom=\"20\" padding_left=\"0px\" padding_right=\"0px\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][fusion_text]\r\n<h1 style=\"text-align: center;\">Gallery</h1>\r\n[/fusion_text][separator style_type=\"single\" top_margin=\"\" bottom_margin=\"40\" sep_color=\"#000000\" border_size=\"\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"170px\" alignment=\"\" class=\"\" id=\"\"][one_sixth last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][/one_sixth][two_third last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][fusion_text]\r\n<h3 style=\"text-align: center;\">The Lodge is open, spacious, comfortable and homely.</h3>\r\n[/fusion_text][/two_third][one_sixth last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][/one_sixth][/fullwidth][fullwidth background_color=\"#f0f0ed\" background_image=\"http://localhost/assagaylodge/wp-content/uploads/2015/01/Wood_Texture.jpg\" background_parallax=\"fixed\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"30\" padding_bottom=\"10\" padding_left=\"0\" padding_right=\"0\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][recent_works layout=\"grid\" picture_size=\"auto\" boxed_text=\"unboxed\" filters=\"no\" columns=\"3\" column_spacing=\"12\" cat_slug=\"the-lodge\" exclude_cats=\"\" number_posts=\"9\" offset=\"\" excerpt_length=\"35\" strip_html=\"yes\" carousel_layout=\"title_on_rollover\" scroll_items=\"\" autoplay=\"no\" show_nav=\"yes\" mouse_scroll=\"no\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" class=\"\" id=\"\"][/recent_works][/fullwidth][fullwidth background_color=\"#f0f0ed\" background_image=\"\" background_parallax=\"fixed\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"20\" padding_bottom=\"20\" padding_left=\"0px\" padding_right=\"0px\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][menu_anchor name=\"BEDROOMS\"][fusion_text]\r\n<h1 style=\"text-align: center;\">BEDROOMS</h1>\r\n[/fusion_text][separator style_type=\"single\" top_margin=\"\" bottom_margin=\"20\" sep_color=\"#000000\" border_size=\"\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"170px\" alignment=\"\" class=\"\" id=\"\"][one_sixth last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][/one_sixth][two_third last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][fusion_text]\r\n<h3 style=\"text-align: justify;\">When it comes to our bedrooms we’re proud to say we’re different. We offer something a little more special.</h3>\r\n<h3 style=\"text-align: justify;\">Our five bedrooms are all en-suite and equipped with either king size or queen size beds. Each room sleeps two guests. The rooms have high ceilings, wall heaters &amp; ceiling fans. Beds all have electric blankets in Winter, 100% cotton percale sheets and thick hyper allergenic microfiber duvets and pillows.</h3>\r\n[/fusion_text][/two_third][one_sixth last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][/one_sixth][/fullwidth][fullwidth background_color=\"\" background_image=\"http://localhost/assagaylodge/wp-content/uploads/2015/01/DSC01516-1148-x-764.jpg\" background_parallax=\"fixed\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"center center\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"20\" padding_bottom=\"20\" padding_left=\"0\" padding_right=\"0\" hundred_percent=\"no\" equal_height_columns=\"yes\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][recent_works layout=\"grid\" picture_size=\"auto\" boxed_text=\"unboxed\" filters=\"no\" columns=\"3\" column_spacing=\"12\" cat_slug=\"bedrooms\" exclude_cats=\"\" number_posts=\"6\" offset=\"\" excerpt_length=\"35\" strip_html=\"yes\" carousel_layout=\"title_on_rollover\" scroll_items=\"\" autoplay=\"no\" show_nav=\"yes\" mouse_scroll=\"no\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" class=\"\" id=\"\"][/recent_works][/fullwidth][fullwidth background_color=\"#f0f0ed\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"20\" padding_bottom=\"20\" padding_left=\"0\" padding_right=\"0\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][menu_anchor name=\"GARDENS\"][fusion_text]\r\n<h1 style=\"text-align: center;\">GARDENS</h1>\r\n[/fusion_text][separator style_type=\"none\" top_margin=\"40\" bottom_margin=\"\" sep_color=\"\" border_size=\"\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"100%\" alignment=\"center\" class=\"\" id=\"\"][one_sixth last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][/one_sixth][two_third last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][fusion_text]\r\n<h3 style=\"text-align: center;\">Walk &amp; relax in our beautiful gardens.</h3>\r\n[/fusion_text][/two_third][one_sixth last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][/one_sixth][recent_works layout=\"grid\" picture_size=\"auto\" boxed_text=\"boxed\" filters=\"no\" columns=\"3\" column_spacing=\"12\" cat_slug=\"gardens\" exclude_cats=\"\" number_posts=\"9\" offset=\"\" excerpt_length=\"35\" strip_html=\"yes\" carousel_layout=\"title_on_rollover\" scroll_items=\"\" autoplay=\"no\" show_nav=\"yes\" mouse_scroll=\"no\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" class=\"\" id=\"\"][/recent_works][/fullwidth][fullwidth background_color=\"#ffffff\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"65px\" padding_bottom=\"65px\" padding_left=\"0px\" padding_right=\"0px\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][button link=\"http://localhost/assagaylodge/book-now/\" color=\"default\" size=\"xlarge\"  type=\"3d\" shape=\"round\" target=\"_self\" title=\"\" gradient_colors=\"#f0f0ed|#f0f0ed\" gradient_hover_colors=\"#6666a4|#6666a4\" accent_color=\"#ffffff\" accent_hover_color=\"#ffffff\" bevel_color=\"\" border_width=\"0px\" icon=\"\" icon_position=\"left\" icon_divider=\"no\" modal=\"\" animation_type=\"0\" animation_direction=\"left\" animation_speed=\"1\" alignment=\"center\" class=\"\" id=\"\"]Make A Reservation Enquiry[/button][/fullwidth][menu_anchor name=\"\"][modal name=\"\" title=\"\" size=\"\" background=\"\" border_color=\"\" show_footer=\"\" class=\"\" id=\"\"][/modal][modal name=\"\" title=\"\" size=\"\" background=\"\" border_color=\"\" show_footer=\"\" class=\"\" id=\"\"][/modal][modal name=\"\" title=\"\" size=\"\" background=\"\" border_color=\"\" show_footer=\"\" class=\"\" id=\"\"][/modal][modal name=\"\" title=\"\" size=\"\" background=\"\" border_color=\"\" show_footer=\"\" class=\"\" id=\"\"][/modal]', 'Home', '', 'inherit', 'closed', 'closed', '', '7-revision-v1', '', '', '2015-09-15 12:36:33', '2015-09-15 10:36:33', '', 7, 'http://localhost/assagaylodge/7-revision-v1/', 0, 'revision', '', 0),
(1060, 1, '2015-09-15 15:51:58', '2015-09-15 13:51:58', '[fullwidth background_color=\"#f0f0ed\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"90px\" padding_bottom=\"0px\" padding_left=\"0px\" padding_right=\"0px\" hundred_percent=\"yes\" equal_height_columns=\"yes\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][one_half last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"http://localhost/assagaylodge/wp-content/uploads/2015/01/DSC01554-e1442325082893.jpg\" background_repeat=\"no-repeat\" background_position=\"center center\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" class=\"\" id=\"\"][/one_half][one_half last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"30px\" margin_top=\"\" margin_bottom=\"0px\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" class=\"special\" id=\"\"][fusion_text]\r\n<h1>5 BEDROOM FAMILY LODGE</h1>\r\n<h3>We are a homely \'down to earth\' country guest lodge, set on a farm surrounded by acres of beautiful hills, forests, &amp; dams in the Madwala Conservancy of Assagay.</h3>\r\n[/fusion_text][separator style_type=\"single\" top_margin=\"0\" bottom_margin=\"30\" sep_color=\"#000000\" border_size=\"\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"170px\" alignment=\"left\" class=\"separator-left\" id=\"\"][modal name=\"rates\" title=\"2015 Rates\" size=\"large\" background=\"\" border_color=\"\" show_footer=\"yes\" class=\"\" id=\"\"]<p>ALL PRICES INCLUDE VAT</p>\r\n<h3>Full House Self-Catering (Max 10 persons): <strong>R2950</strong> per night (R295 per person)</h3>\r\n<h3>Self-Catering:</h3>\r\n<p><strong>Weekdays (Monday, Tuesday, Wednesday or Thursday):</strong></p>\r\n<p>Single Private Room <strong>R595</strong> per person per night<br />\r\nSharing <strong>R395</strong> per person per night</p>\r\n<p><strong>Weekends (Friday, Saturday, Sunday):</strong></p>\r\n<p>Single Private Room <strong>R645</strong> per person per night<br />\r\nSharing <strong>R445</strong> per person per night</p>\r\n<h3>Breakfast Optional:</h3>\r\n<p>Continental<strong> R55</strong> per person<br />\r\nFull English <strong>R95</strong> per person</p>\r\n<h3>Lodge & Room Servicing Optional: <strong>R195 </strong>per day</h3>\r\n<hr />\r\n<p> </p>\r\n<h3>Specials</h3>\r\n<p>Weekdays: Book any 3 weekdays, Monday, Tuesday, Wednesday or Thursday, and only pay for 2 days.</p>\r\n<p>15% Discount. Arrive Friday Depart Sunday.</p>\r\n[/modal][button link=\"\" color=\"darkgreen\" size=\"\"  type=\"\" shape=\"\" target=\"_self\" title=\"\" gradient_colors=\"|\" gradient_hover_colors=\"|\" accent_color=\"\" accent_hover_color=\"\" bevel_color=\"\" border_width=\"1px\" icon=\"\" icon_position=\"left\" icon_divider=\"no\" modal=\"rates\" animation_type=\"0\" animation_direction=\"left\" animation_speed=\"1\" alignment=\"\" class=\"\" id=\"\"]2015 RATES[/button][/one_half][/fullwidth][menu_anchor name=\"LODGE\"][fullwidth background_color=\"#f0f0ed\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"20\" padding_bottom=\"20\" padding_left=\"0px\" padding_right=\"0px\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][one_half last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][fusion_text]\r\n<h3 style=\"text-align: justify;\">The property boasts over 200 different species of birds and animals. The Lodge is situated on the 1000 Hills tourism route, on the edge of Hillcrest and is a perfect place from which one can launch to any one of the many fantastic destinations and game reserves in KwaZulu Natal, i.e. the Majestic Drakensberg Mountain Range, Shongweni Nature Reserve, Nagle Dam, Durban &amp; Beach Front. We are also the doorstep of one of KZN’s major horse riding venues namely, the Shongweni Horse Riding Club &amp; the Summerveld Horse Riding Academy, makes Assagay Lodge a perfect home away from home for the equestrian lovers. The peace &amp; tranquility will take you far away from the business of city life. Evenings are quiet and peaceful. This is a unique and memorable country experience.</h3>\r\n[/fusion_text][/one_half][one_half last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][fusion_text]\r\n<h3 style=\"text-align: justify;\">We are a homely \'down to earth\' country guest lodge, set on a farm surrounded by acres of beautiful hills, forests, &amp; dams in the Madwala Conservancy of Assagay, where horses still have the right of way on all roads. Our five bedrooms have a rustic charm offering the comforts of modern day life.</h3>\r\n<h3 style=\"text-align: justify;\">Assagay Forest Lodge is owner managed, built in 2005 the lodge provides 5 cozy bedrooms with a large spacious and comfortable homely lounge, which leads onto a large deck area. Set on a 6 acre property in the Assagay Conservancy our lodge is nestled around trees, bushes, and beautiful gardens and a stream, allowing visitors to meander and relax. Guests seeking a quite, relaxing, homely experience will find our lodge the perfect choice away from home. There is a kitchen available should you wish to muster up a snack or quick meal, however breakfast is available on request.</h3>\r\n[/fusion_text][/one_half][/fullwidth][fullwidth background_color=\"#f0f0ed\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"20\" padding_bottom=\"20\" padding_left=\"0px\" padding_right=\"0px\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][fusion_text]\r\n<h1 style=\"text-align: center;\">Gallery</h1>\r\n[/fusion_text][separator style_type=\"single\" top_margin=\"\" bottom_margin=\"40\" sep_color=\"#000000\" border_size=\"\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"170px\" alignment=\"\" class=\"\" id=\"\"][one_sixth last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][/one_sixth][two_third last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][fusion_text]\r\n<h3 style=\"text-align: center;\">The Lodge is open, spacious, comfortable and homely.</h3>\r\n[/fusion_text][/two_third][one_sixth last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][/one_sixth][/fullwidth][fullwidth background_color=\"#f0f0ed\" background_image=\"http://localhost/assagaylodge/wp-content/uploads/2015/01/Wood_Texture.jpg\" background_parallax=\"fixed\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"30\" padding_bottom=\"10\" padding_left=\"0\" padding_right=\"0\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][recent_works layout=\"grid\" picture_size=\"auto\" boxed_text=\"unboxed\" filters=\"no\" columns=\"3\" column_spacing=\"12\" cat_slug=\"the-lodge\" exclude_cats=\"\" number_posts=\"9\" offset=\"\" excerpt_length=\"35\" strip_html=\"yes\" carousel_layout=\"title_on_rollover\" scroll_items=\"\" autoplay=\"no\" show_nav=\"yes\" mouse_scroll=\"no\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" class=\"\" id=\"\"][/recent_works][/fullwidth][fullwidth background_color=\"#f0f0ed\" background_image=\"\" background_parallax=\"fixed\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"20\" padding_bottom=\"20\" padding_left=\"0px\" padding_right=\"0px\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][menu_anchor name=\"BEDROOMS\"][fusion_text]\r\n<h1 style=\"text-align: center;\">BEDROOMS</h1>\r\n[/fusion_text][separator style_type=\"single\" top_margin=\"\" bottom_margin=\"20\" sep_color=\"#000000\" border_size=\"\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"170px\" alignment=\"\" class=\"\" id=\"\"][one_sixth last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][/one_sixth][two_third last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][fusion_text]\r\n<h3 style=\"text-align: justify;\">When it comes to our bedrooms we’re proud to say we’re different. We offer something a little more special.</h3>\r\n<h3 style=\"text-align: justify;\">Our five bedrooms are all en-suite and equipped with either king size or queen size beds. Each room sleeps two guests. The rooms have high ceilings, wall heaters &amp; ceiling fans. Beds all have electric blankets in Winter, 100% cotton percale sheets and thick hyper allergenic microfiber duvets and pillows.</h3>\r\n[/fusion_text][/two_third][one_sixth last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][/one_sixth][/fullwidth][fullwidth background_color=\"\" background_image=\"http://localhost/assagaylodge/wp-content/uploads/2015/01/DSC01516-1148-x-764.jpg\" background_parallax=\"fixed\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"center center\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"20\" padding_bottom=\"20\" padding_left=\"0\" padding_right=\"0\" hundred_percent=\"no\" equal_height_columns=\"yes\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][recent_works layout=\"grid\" picture_size=\"auto\" boxed_text=\"unboxed\" filters=\"no\" columns=\"3\" column_spacing=\"12\" cat_slug=\"bedrooms\" exclude_cats=\"\" number_posts=\"6\" offset=\"\" excerpt_length=\"35\" strip_html=\"yes\" carousel_layout=\"title_on_rollover\" scroll_items=\"\" autoplay=\"no\" show_nav=\"yes\" mouse_scroll=\"no\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" class=\"\" id=\"\"][/recent_works][/fullwidth][fullwidth background_color=\"#f0f0ed\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"20\" padding_bottom=\"20\" padding_left=\"0\" padding_right=\"0\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][menu_anchor name=\"GARDENS\"][fusion_text]\r\n<h1 style=\"text-align: center;\">GARDENS</h1>\r\n[/fusion_text][separator style_type=\"none\" top_margin=\"40\" bottom_margin=\"\" sep_color=\"\" border_size=\"\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"100%\" alignment=\"center\" class=\"\" id=\"\"][one_sixth last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][/one_sixth][two_third last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][fusion_text]\r\n<h3 style=\"text-align: center;\">Walk &amp; relax in our beautiful gardens.</h3>\r\n[/fusion_text][/two_third][one_sixth last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][/one_sixth][recent_works layout=\"grid\" picture_size=\"auto\" boxed_text=\"boxed\" filters=\"no\" columns=\"3\" column_spacing=\"12\" cat_slug=\"gardens\" exclude_cats=\"\" number_posts=\"9\" offset=\"\" excerpt_length=\"35\" strip_html=\"yes\" carousel_layout=\"title_on_rollover\" scroll_items=\"\" autoplay=\"no\" show_nav=\"yes\" mouse_scroll=\"no\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" class=\"\" id=\"\"][/recent_works][/fullwidth][fullwidth background_color=\"#ffffff\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"65px\" padding_bottom=\"65px\" padding_left=\"0px\" padding_right=\"0px\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][button link=\"http://localhost/assagaylodge/book-now/\" color=\"default\" size=\"xlarge\"  type=\"3d\" shape=\"round\" target=\"_self\" title=\"\" gradient_colors=\"#f0f0ed|#f0f0ed\" gradient_hover_colors=\"#6666a4|#6666a4\" accent_color=\"#ffffff\" accent_hover_color=\"#ffffff\" bevel_color=\"\" border_width=\"0px\" icon=\"\" icon_position=\"left\" icon_divider=\"no\" modal=\"\" animation_type=\"0\" animation_direction=\"left\" animation_speed=\"1\" alignment=\"center\" class=\"\" id=\"\"]Make A Reservation Enquiry[/button][/fullwidth][menu_anchor name=\"\"][modal name=\"\" title=\"\" size=\"\" background=\"\" border_color=\"\" show_footer=\"\" class=\"\" id=\"\"][/modal][modal name=\"\" title=\"\" size=\"\" background=\"\" border_color=\"\" show_footer=\"\" class=\"\" id=\"\"][/modal][modal name=\"\" title=\"\" size=\"\" background=\"\" border_color=\"\" show_footer=\"\" class=\"\" id=\"\"][/modal][modal name=\"\" title=\"\" size=\"\" background=\"\" border_color=\"\" show_footer=\"\" class=\"\" id=\"\"][/modal]', 'Home', '', 'inherit', 'closed', 'closed', '', '7-revision-v1', '', '', '2015-09-15 15:51:58', '2015-09-15 13:51:58', '', 7, 'http://localhost/assagaylodge/7-revision-v1/', 0, 'revision', '', 0),
(1061, 1, '2015-09-15 15:52:47', '2015-09-15 13:52:47', '<h3>Full House Self-Catering (Max 10 persons): <strong>R2950</strong> per night (R295 per person)</h3>\r\n<h3>Self-Catering:</h3>\r\n<strong>Weekdays (Monday, Tuesday, Wednesday or Thursday):</strong>\r\n\r\nSingle Private Room <strong>R595</strong> per person per night\r\nSharing <strong>R395</strong> per person per night\r\n\r\n<strong>Weekends (Friday, Saturday, Sunday):</strong>\r\n\r\nSingle Private Room <strong>R645</strong> per person per night\r\nSharing <strong>R445</strong> per person per night\r\n<h3>Breakfast Optional:</h3>\r\nContinental<strong> R55</strong> per person\r\nFull English <strong>R95</strong> per person\r\n<h3>Lodge &amp; Room Servicing Optional: <strong>R195 </strong>per day</h3>\r\n\r\n<hr />\r\n\r\n&nbsp;\r\n<h3>Specials</h3>\r\nWeekdays: Book any 3 weekdays, Monday, Tuesday, Wednesday or Thursday, and only pay for 2 days.\r\n\r\n15% Discount. Arrive Friday Depart Sunday.', 'test rates', '', 'inherit', 'closed', 'closed', '', '1047-revision-v1', '', '', '2015-09-15 15:52:47', '2015-09-15 13:52:47', '', 1047, 'http://localhost/assagaylodge/1047-revision-v1/', 0, 'revision', '', 0),
(1062, 1, '2015-09-15 16:13:48', '2015-09-15 14:13:48', '[fullwidth background_color=\"\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"70px\" padding_bottom=\"75px\" padding_left=\"0px\" padding_right=\"0px\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][one_half last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][fusion_text]\r\n<h3>Contact Us</h3>\r\nSend us a message.[/fusion_text][fusion_text][contact-form-7 id=\"246\" title=\"Contact form 1\"][/fusion_text][/one_half][one_half last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][fusion_text]\r\n<h3>Where are we?</h3>\r\n4 Williams Road\r\nAssagay, Hillcrest\r\nKwaZulu Natal\r\n<h3>Contact</h3>\r\n0317656046 or 0317655961[/fusion_text][separator style_type=\"none\" top_margin=\"\" bottom_margin=\"20\" sep_color=\"\" border_size=\"\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"\" alignment=\"\" class=\"\" id=\"\"][accordian class=\"\" id=\"\"][toggle title=\"GPS Location\" open=\"no\"]\r\n\r\nGPS: Latitude(South)-29.771865, Longitude(East)30.736892\r\n\r\n[/toggle][toggle title=\"Directions\" open=\"no\"]\r\n\r\nWhether you are coming from Durban or Pietermaritzburg be sure to take the Shongweni / Assagay / Hillcrest turn off. This is known as Kassier Rd however it is poorly marked but it is nevertheless the road which you turn into from the highway. It runs from Shongweni in the south, over both highways (N3 &amp; M13), passed the Hillcrest Hospital, through to Old Main Rd, in the north.\r\n\r\nHead towards Old Main Road, Hillcrest.\r\n\r\nRemain on Kassier Road, heading north, for about 2-3km and turn into Assagay Road, a good land mark is the Assagay Nursery &amp; Equitack (Animal Feeds) almost opposite this turn off.\r\n\r\nTake the turn into Assagay Road (not Assagay Cresent). Head up the rise. Turn left into Castle Road, carry down the dip for about 500m and cross a small water-bridge. Turn first right into Lello Road, just after the bridge. Continue on Lello Road, the road dips and briefly climbs, the valley falling away to your right. Finally, turn left into Williams Road (it\'s essentially the first left turn on Lello Road), Continue down Williams Road for about 800m. On your right you will come to the entrance of the farm called `Fourever`No 4 Williams Road. There’s a 1000 Hills Tourism Sign outside. A wooden fence and silver gate. Welcome to Assagay Lodge.\r\n\r\n[/toggle][/accordian][/one_half][/fullwidth][fullwidth background_color=\"\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"0px\" padding_bottom=\"0px\" padding_left=\"0px\" padding_right=\"0px\" hundred_percent=\"yes\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][map address=\"Assagay Forest Lodge\" type=\"roadmap\" map_style=\"custom\" overlay_color=\"#6666a4\" infobox=\"custom\" infobox_background_color=\"rgba(102,102,164,.8)\" infobox_text_color=\"#ffffff\" infobox_content=\"\" icon=\"http://theme-fusion.com/avada_demos_xml/travel/wp-content/uploads/2015/01/map.png\" width=\"100%\" height=\"700px\" zoom=\"13\" scrollwheel=\"yes\" scale=\"yes\" zoom_pancontrol=\"yes\" animation=\"yes\" popup=\"no\" class=\"\" id=\"\"][/map][/fullwidth][fullwidth background_color=\"\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"0px\" padding_bottom=\"-30px\" padding_left=\"0px\" padding_right=\"0px\" hundred_percent=\"yes\" equal_height_columns=\"yes\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][one_third last=\"no\" spacing=\"no\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"#6666a4\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"10%\" margin_top=\"\" margin_bottom=\"0px\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" class=\"\" id=\"\"][content_boxes layout=\"icon-with-title\" title_size=\"\" icon_circle=\"\" icon_size=\"\" icon_align=\"left\" columns=\"1\" margin_top=\"\" margin_bottom=\"0px\" class=\"\" id=\"\"][content_box title=\"Call Us\" icon=\"fa-phone\" backgroundcolor=\"\" iconcolor=\"#ffffff\" circlecolor=\"#6666a4\" circlebordercolor=\"#6666a4\" iconflip=\"\" iconrotate=\"\" iconspin=\"no\" image=\"\" image_width=\"35\" image_height=\"35\" link=\"\" linktext=\"\" linktarget=\"_self\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\"] <span style=\"color: #ffffff;\">Please call one of our specialist or pop into one of our travel shops and meet with an advisor in person. Alternatively, email us any questions and we will reply as quickly as possible. We look forward to being a small part of your next big adventure.</span>[/content_box][/content_boxes][/one_third][one_third last=\"no\" spacing=\"no\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"#7272b2\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"10%\" margin_top=\"\" margin_bottom=\"0px\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" class=\"\" id=\"\"][content_boxes layout=\"icon-with-title\" title_size=\"\" icon_circle=\"\" icon_size=\"\" icon_align=\"left\" columns=\"1\" margin_top=\"\" margin_bottom=\"0px\" class=\"\" id=\"\"][content_box title=\"Meet Us\" icon=\"fa-comments\" backgroundcolor=\"\" iconcolor=\"#ffffff\" circlecolor=\"#7272b2\" circlebordercolor=\"#7272b2\" iconflip=\"\" iconrotate=\"\" iconspin=\"no\" image=\"\" image_width=\"35\" image_height=\"35\" link=\"\" linktext=\"\" linktarget=\"_self\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\"] <span style=\"color: #ffffff;\">Please call one of our specialist or pop into one of our travel shops and meet with an advisor in person. Alternatively, email us any questions and we will reply as quickly as possible. We look forward to being a small part of your next big adventure.</span>[/content_box][/content_boxes][/one_third][one_third last=\"yes\" spacing=\"no\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"#6666a4\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"10%\" margin_top=\"\" margin_bottom=\"0px\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" class=\"\" id=\"\"][content_boxes layout=\"icon-with-title\" title_size=\"\" icon_circle=\"\" icon_size=\"\" icon_align=\"left\" columns=\"1\" margin_top=\"\" margin_bottom=\"0px\" class=\"\" id=\"\"][content_box title=\"Ask Us\" icon=\"fa-phone\" backgroundcolor=\"\" iconcolor=\"#ffffff\" circlecolor=\"#6666a4\" circlebordercolor=\"#6666a4\" iconflip=\"\" iconrotate=\"\" iconspin=\"no\" image=\"\" image_width=\"35\" image_height=\"35\" link=\"\" linktext=\"\" linktarget=\"_self\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\"] <span style=\"color: #ffffff;\">Please call one of our specialist or pop into one of our travel shops and meet with an advisor in person. Alternatively, email us any questions and we will reply as quickly as possible. We look forward to being a small part of your next big adventure.</span>[/content_box][/content_boxes][/one_third][/fullwidth]', 'Contact & Directions', '', 'inherit', 'closed', 'closed', '', '11-revision-v1', '', '', '2015-09-15 16:13:48', '2015-09-15 14:13:48', '', 11, 'http://localhost/assagaylodge/11-revision-v1/', 0, 'revision', '', 0);
INSERT INTO `wp_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(1063, 1, '2015-09-15 16:20:49', '2015-09-15 14:20:49', '[fullwidth background_color=\"\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"70px\" padding_bottom=\"75px\" padding_left=\"0px\" padding_right=\"0px\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][one_half last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][fusion_text]\r\n<h3>Contact Us</h3>\r\nSend us a message.[/fusion_text][fusion_text][contact-form-7 id=\"246\" title=\"Contact form 1\"][/fusion_text][/one_half][one_half last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][fusion_text]\r\n<h3>Where are we?</h3>\r\n4 Williams Road\r\nAssagay, Hillcrest\r\nKwaZulu Natal\r\n<h3>Contact</h3>\r\n<h3>0317656046 or 0317655961</h3>\r\n[/fusion_text][separator style_type=\"none\" top_margin=\"\" bottom_margin=\"20\" sep_color=\"\" border_size=\"\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"\" alignment=\"\" class=\"\" id=\"\"][accordian class=\"\" id=\"\"][toggle title=\"GPS Location\" open=\"no\"]\r\n\r\n<strong>GPS: Latitude (South) -29.771865, Longitude (East) 30.736892</strong>\r\n\r\n[/toggle][toggle title=\"Directions\" open=\"no\"]\r\n\r\nWhether you are coming from Durban or Pietermaritzburg be sure to take the Shongweni / Assagay / Hillcrest turn off. This is known as Kassier Rd however it is poorly marked but it is nevertheless the road which you turn into from the highway. It runs from Shongweni in the south, over both highways (N3 &amp; M13), passed the Hillcrest Hospital, through to Old Main Rd, in the north.\r\n\r\nHead towards Old Main Road, Hillcrest.\r\n\r\nRemain on Kassier Road, heading north, for about 2-3km and turn into Assagay Road, a good land mark is the Assagay Nursery &amp; Equitack (Animal Feeds) almost opposite this turn off.\r\n\r\nTake the turn into Assagay Road (not Assagay Cresent). Head up the rise. Turn left into Castle Road, carry down the dip for about 500m and cross a small water-bridge. Turn first right into Lello Road, just after the bridge. Continue on Lello Road, the road dips and briefly climbs, the valley falling away to your right. Finally, turn left into Williams Road (it\'s essentially the first left turn on Lello Road), Continue down Williams Road for about 800m. On your right you will come to the entrance of the farm called `Fourever`No 4 Williams Road. There’s a 1000 Hills Tourism Sign outside. A wooden fence and silver gate. Welcome to Assagay Lodge.\r\n\r\n[/toggle][/accordian][/one_half][/fullwidth][fullwidth background_color=\"\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"0px\" padding_bottom=\"0px\" padding_left=\"0px\" padding_right=\"0px\" hundred_percent=\"yes\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][map address=\"Assagay Forest Lodge\" type=\"roadmap\" map_style=\"custom\" overlay_color=\"#6666a4\" infobox=\"custom\" infobox_background_color=\"rgba(102,102,164,.8)\" infobox_text_color=\"#ffffff\" infobox_content=\"\" icon=\"http://theme-fusion.com/avada_demos_xml/travel/wp-content/uploads/2015/01/map.png\" width=\"100%\" height=\"700px\" zoom=\"13\" scrollwheel=\"yes\" scale=\"yes\" zoom_pancontrol=\"yes\" animation=\"yes\" popup=\"no\" class=\"\" id=\"\"][/map][/fullwidth]', 'Contact & Directions', '', 'inherit', 'closed', 'closed', '', '11-revision-v1', '', '', '2015-09-15 16:20:49', '2015-09-15 14:20:49', '', 11, 'http://localhost/assagaylodge/11-revision-v1/', 0, 'revision', '', 0),
(1065, 1, '2015-09-15 16:30:24', '2015-09-15 14:30:24', '[fullwidth background_color=\"\" background_image=\"http://localhost/assagaylodge/wp-content/uploads/2015/01/about-parallax11.jpg\" background_parallax=\"fixed\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"20\" padding_bottom=\"20\" padding_left=\"0\" padding_right=\"0\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][fusion_text][easy_form booknow style=\"none\" submit=\"Reservation successfully sent\" subsubmit=\"Please continue.\" credit=\"Reservation complete\" subcredit=\"You\'ll receive an email with the reservations details\" resourcename=\"Room\" price=\"1\" pers=\"1\" resource=\"854\"][/fusion_text][/fullwidth]', 'Book Now', '', 'inherit', 'closed', 'closed', '', '855-revision-v1', '', '', '2015-09-15 16:30:24', '2015-09-15 14:30:24', '', 855, 'http://localhost/assagaylodge/855-revision-v1/', 0, 'revision', '', 0),
(1066, 1, '2015-09-15 16:31:59', '2015-09-15 14:31:59', '[fullwidth background_color=\"\" background_image=\"http://localhost/assagaylodge/wp-content/uploads/2015/01/about-parallax11.jpg\" background_parallax=\"fixed\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"20\" padding_bottom=\"20\" padding_left=\"0\" padding_right=\"0\" hundred_percent=\"yes\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][fusion_text][easy_form booknow style=\"none\" submit=\"Reservation successfully sent\" subsubmit=\"Please continue.\" credit=\"Reservation complete\" subcredit=\"You\'ll receive an email with the reservations details\" resourcename=\"Room\" price=\"1\" pers=\"1\" resource=\"854\"][/fusion_text][/fullwidth]', 'Book Now', '', 'inherit', 'closed', 'closed', '', '855-revision-v1', '', '', '2015-09-15 16:31:59', '2015-09-15 14:31:59', '', 855, 'http://localhost/assagaylodge/855-revision-v1/', 0, 'revision', '', 0),
(1067, 1, '2015-09-15 16:34:20', '2015-09-15 14:34:20', '[fullwidth background_color=\"\" background_image=\"http://localhost/assagaylodge/wp-content/uploads/2015/01/about-parallax11.jpg\" background_parallax=\"fixed\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"center center\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"20\" padding_bottom=\"20\" padding_left=\"0\" padding_right=\"0\" hundred_percent=\"yes\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][fusion_text][easy_form booknow style=\"none\" submit=\"Reservation successfully sent\" subsubmit=\"Please continue.\" credit=\"Reservation complete\" subcredit=\"You\'ll receive an email with the reservations details\" resourcename=\"Room\" price=\"1\" pers=\"1\" resource=\"854\"][/fusion_text][/fullwidth]', 'Book Now', '', 'inherit', 'closed', 'closed', '', '855-revision-v1', '', '', '2015-09-15 16:34:20', '2015-09-15 14:34:20', '', 855, 'http://localhost/assagaylodge/855-revision-v1/', 0, 'revision', '', 0),
(1068, 1, '2015-09-15 16:35:33', '2015-09-15 14:35:33', '[fullwidth background_color=\"\" background_image=\"http://localhost/assagaylodge/wp-content/uploads/2015/01/about-parallax11.jpg\" background_parallax=\"fixed\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"center center\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"20\" padding_bottom=\"20\" padding_left=\"0\" padding_right=\"0\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][fusion_text][easy_form booknow style=\"none\" submit=\"Reservation successfully sent\" subsubmit=\"Please continue.\" credit=\"Reservation complete\" subcredit=\"You\'ll receive an email with the reservations details\" resourcename=\"Room\" price=\"1\" pers=\"1\" resource=\"854\"][/fusion_text][/fullwidth]', 'Book Now', '', 'inherit', 'closed', 'closed', '', '855-revision-v1', '', '', '2015-09-15 16:35:33', '2015-09-15 14:35:33', '', 855, 'http://localhost/assagaylodge/855-revision-v1/', 0, 'revision', '', 0),
(1069, 1, '2015-09-15 16:47:18', '2015-09-15 14:47:18', '[fullwidth background_color=\"\" background_image=\"http://localhost/assagaylodge/wp-content/uploads/2015/01/about-parallax11.jpg\" background_parallax=\"fixed\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"center center\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"20\" padding_bottom=\"20\" padding_left=\"0\" padding_right=\"0\" hundred_percent=\"yes\" equal_height_columns=\"yes\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][fusion_text][easy_form booknow style=\"none\" submit=\"Reservation successfully sent\" subsubmit=\"Please continue.\" credit=\"Reservation complete\" subcredit=\"You\'ll receive an email with the reservations details\" resourcename=\"Room\" price=\"1\" pers=\"1\" resource=\"854\"][/fusion_text][/fullwidth]', 'Book Now', '', 'inherit', 'closed', 'closed', '', '855-revision-v1', '', '', '2015-09-15 16:47:18', '2015-09-15 14:47:18', '', 855, 'http://localhost/assagaylodge/855-revision-v1/', 0, 'revision', '', 0),
(1070, 1, '2015-09-15 16:50:58', '2015-09-15 14:50:58', '[fullwidth background_color=\"\" background_image=\"http://localhost/assagaylodge/wp-content/uploads/2015/01/about-parallax11.jpg\" background_parallax=\"fixed\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"center center\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"20\" padding_bottom=\"20\" padding_left=\"0\" padding_right=\"0\" hundred_percent=\"yes\" equal_height_columns=\"yes\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][one_sixth last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][/one_sixth][two_third last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][fusion_text][easy_form booknow style=\"none\" submit=\"Reservation successfully sent\" subsubmit=\"Please continue.\" credit=\"Reservation complete\" subcredit=\"You\'ll receive an email with the reservations details\" resourcename=\"Room\" price=\"1\" pers=\"1\" resource=\"854\"][/fusion_text][/two_third][one_sixth last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][/one_sixth][/fullwidth]', 'Book Now', '', 'inherit', 'closed', 'closed', '', '855-revision-v1', '', '', '2015-09-15 16:50:58', '2015-09-15 14:50:58', '', 855, 'http://localhost/assagaylodge/855-revision-v1/', 0, 'revision', '', 0),
(1071, 1, '2015-09-15 17:00:00', '2015-09-15 15:00:00', '[fullwidth background_color=\"\" background_image=\"http://localhost/assagaylodge/wp-content/uploads/2015/01/about-parallax11.jpg\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"center center\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"20\" padding_bottom=\"20\" padding_left=\"0\" padding_right=\"0\" hundred_percent=\"yes\" equal_height_columns=\"yes\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][one_sixth last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][/one_sixth][two_third last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][fusion_text][easy_form booknow style=\"none\" submit=\"Reservation successfully sent\" subsubmit=\"Please continue.\" credit=\"Reservation complete\" subcredit=\"You\'ll receive an email with the reservations details\" resourcename=\"Room\" price=\"1\" pers=\"1\" resource=\"854\"][/fusion_text][/two_third][one_sixth last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][/one_sixth][/fullwidth]', 'Book Now', '', 'inherit', 'closed', 'closed', '', '855-revision-v1', '', '', '2015-09-15 17:00:00', '2015-09-15 15:00:00', '', 855, 'http://localhost/assagaylodge/855-revision-v1/', 0, 'revision', '', 0),
(1072, 1, '2015-09-15 23:40:10', '2015-09-15 21:40:10', '<div>\r\n<table class=\" alignleft\" style=\"width: 100%;\" cellspacing=\"0\" cellpadding=\"0\">\r\n<tbody>\r\n<tr style=\"height: 25px;\">\r\n<td style=\"width: 25%; height: 25px; text-align: left; vertical-align: middle;\"><span style=\"color: #99ccff; font-family: arial,helvetica,sans-serif; font-size: 12pt;\"><strong>RESERVATION DETAILS</strong></span></td>\r\n<td style=\"width: 25%; height: 25px; text-align: left; vertical-align: middle;\"><span style=\"color: #99ccff; font-family: arial,helvetica,sans-serif; font-size: 8pt;\"><span style=\"background-color: #0191c8;\">[fusion_builder_container hundred_percent=\"yes\" overflow=\"visible\"][fusion_builder_row][fusion_builder_column type=\"1_1\" background_position=\"left top\" background_color=\"\" border_size=\"\" border_color=\"\" border_style=\"solid\" spacing=\"yes\" background_image=\"\" background_repeat=\"no-repeat\" padding=\"\" margin_top=\"0px\" margin_bottom=\"0px\" class=\"\" id=\"\" animation_type=\"\" animation_speed=\"0.3\" animation_direction=\"left\" hide_on_mobile=\"no\" center_content=\"no\" min_height=\"none\"][error error_title=\"Errors found in the form\" error_message=\"There is a problem.\"]</span></span></td>\r\n<td style=\"width: 25%; height: 25px; text-align: left; vertical-align: middle;\"><span style=\"color: #99ccff; font-family: arial,helvetica,sans-serif; font-size: 12pt;\"> <strong><span style=\"color: #99ccff; font-family: Arial;\">ESTIMATED PRICE INCL VAT</span></strong></span></td>\r\n<td style=\"width: 25%; height: 25px; vertical-align: middle;\"><span style=\"color: #99ccff; font-family: arial,helvetica,sans-serif; font-size: 12pt;\"><span style=\"font-family: arial,helvetica,sans-serif;\">[show_price]</span><strong> </strong></span></td>\r\n</tr>\r\n<tr style=\"height: 25px;\">\r\n<td style=\"width: 25%; height: 25px; text-align: left; vertical-align: middle;\"><span style=\"color: #99ccff; font-family: arial,helvetica,sans-serif; font-size: 10pt;\"> </span></td>\r\n<td style=\"width: 25%; height: 25px; text-align: left; vertical-align: middle;\"><span style=\"color: #99ccff; font-family: arial,helvetica,sans-serif; font-size: 10pt;\"> </span></td>\r\n<td style=\"width: 25%; height: 25px; text-align: left; vertical-align: middle;\"><span style=\"color: #99ccff; font-family: arial,helvetica,sans-serif; font-size: 10pt;\"> </span></td>\r\n<td style=\"width: 25%; height: 25px; text-align: left; vertical-align: middle;\"><span style=\"color: #99ccff; font-family: arial,helvetica,sans-serif; font-size: 10pt;\"> <span style=\"color: #99ccff; font-family: arial,helvetica,sans-serif; font-size: 12pt;\"><strong><span style=\"font-family: Arial;\">[hidden resource 854]</span></strong></span></span></td>\r\n</tr>\r\n<tr style=\"height: 25px;\">\r\n<td style=\"width: 25%; height: 25px; text-align: left; vertical-align: middle;\"><span style=\"color: #99ccff; font-family: arial,helvetica,sans-serif; font-size: 10pt;\">Arrival Date</span></td>\r\n<td style=\"width: 25%; height: 25px; text-align: left; vertical-align: middle;\"><span style=\"color: #99ccff; font-family: arial,helvetica,sans-serif; font-size: 10pt;\">[date-from value=\"+1\"]</span></td>\r\n<td style=\"width: 25%; height: 25px; text-align: left; vertical-align: middle;\"><span style=\"color: #99ccff; font-family: arial,helvetica,sans-serif; font-size: 10pt;\">Departure Date</span></td>\r\n<td style=\"width: 20%; height: 25px; text-align: left; vertical-align: middle;\"><span style=\"color: #99ccff; font-family: arial,helvetica,sans-serif; font-size: 10pt;\">[date-to value=\"+2\"]</span></td>\r\n</tr>\r\n<tr style=\"height: 25px;\">\r\n<td style=\"width: 25%; height: 25px; text-align: left; vertical-align: middle;\"><span style=\"color: #99ccff; font-family: arial,helvetica,sans-serif; font-size: 10pt;\">Number Of Guests (excluding children under 2yrs)</span></td>\r\n<td style=\"width: 25%; height: 25px; text-align: left; vertical-align: middle;\"><span style=\"color: #99ccff; font-family: arial,helvetica,sans-serif; font-size: 10pt;\">[adults 1 10 value=\"1\"]</span></td>\r\n<td style=\"width: 25%; height: 25px; text-align: left; vertical-align: middle;\"><span style=\"color: #99ccff; font-family: arial,helvetica,sans-serif; font-size: 10pt;\">Children Under 2yrs (Own Bedding)</span></td>\r\n<td style=\"width: 25%; height: 25px; text-align: left; vertical-align: middle;\"><span style=\"color: #99ccff; font-family: arial,helvetica,sans-serif; font-size: 10pt;\">...Stay Free</span></td>\r\n</tr>\r\n<tr style=\"height: 25px;\">\r\n<td style=\"width: 25%; height: 25px; text-align: left; vertical-align: middle;\"><span style=\"color: #99ccff;\"> </span></td>\r\n<td style=\"width: 25%; height: 25px; text-align: left; vertical-align: middle;\"><span style=\"color: #99ccff;\"> </span></td>\r\n<td style=\"width: 25%; height: 25px; text-align: left; vertical-align: middle;\"><span style=\"color: #99ccff;\"> </span></td>\r\n<td style=\"width: 25%; height: 25px; text-align: left; vertical-align: middle;\"><span style=\"color: #99ccff;\"> </span></td>\r\n</tr>\r\n<tr style=\"height: 25px;\">\r\n<td style=\"width: 25%; height: 25px; text-align: left; vertical-align: middle;\"><span style=\"color: #99ccff; font-family: arial,helvetica,sans-serif; font-size: 10pt;\"><span style=\"font-family: arial,helvetica,sans-serif; font-size: 12pt;\"><strong>MEAL OPTIONS</strong></span></span></td>\r\n<td style=\"width: 25%; height: 25px; text-align: left; vertical-align: middle;\"><span style=\"color: #99ccff;\"> </span></td>\r\n<td style=\"width: 25%; height: 25px; text-align: left; vertical-align: middle;\"><span style=\"color: #99ccff; font-family: arial,helvetica,sans-serif; font-size: 10pt;\"><span style=\"font-family: arial,helvetica,sans-serif; font-size: 12pt;\"><strong>CLEANING SERVICE OPTIONS</strong></span></span></td>\r\n<td style=\"width: 25%; height: 25px; text-align: left; vertical-align: middle;\"><span style=\"color: #99ccff;\"> </span></td>\r\n</tr>\r\n<tr style=\"height: 25px;\">\r\n<td style=\"width: 25%; height: 25px; text-align: left; vertical-align: middle;\"><span style=\"color: #99ccff; font-family: arial,helvetica,sans-serif; font-size: 10pt;\">Include Morning Breakfast</span></td>\r\n<td style=\"width: 25%; height: 25px; text-align: left; vertical-align: middle;\"><span style=\"color: #99ccff; font-family: arial,helvetica,sans-serif; font-size: 10pt;\">[custom id=\"8\"]</span></td>\r\n<td style=\"width: 25%; height: 25px; text-align: left; vertical-align: middle;\"><span style=\"color: #99ccff; font-family: arial,helvetica,sans-serif; font-size: 10pt;\">Include Services for Lodge (excluding room/s)</span></td>\r\n<td style=\"width: 25%; height: 25px; text-align: left; vertical-align: middle;\"><span style=\"color: #99ccff; font-family: arial,helvetica,sans-serif; font-size: 10pt;\">[custom id=\"6\"]</span></td>\r\n</tr>\r\n<tr style=\"height: 25px;\">\r\n<td style=\"width: 25%; height: 25px; text-align: left; vertical-align: middle;\"><span style=\"color: #99ccff; font-family: arial,helvetica,sans-serif; font-size: 12pt;\"><span style=\"font-family: arial,helvetica,sans-serif; font-size: 10pt;\">Include Evening Dinner</span></span></td>\r\n<td style=\"width: 25%; height: 25px; text-align: left; vertical-align: middle;\"><span style=\"color: #99ccff; font-family: arial,helvetica,sans-serif; font-size: 12pt;\"><span style=\"font-family: arial,helvetica,sans-serif; font-size: 10pt;\">[custom id=\"9\"]</span></span></td>\r\n<td style=\"width: 25%; height: 25px; text-align: left; vertical-align: middle;\"><span style=\"color: #99ccff;\"><span style=\"color: #99ccff; font-family: arial,helvetica,sans-serif; font-size: 10pt;\">Include Services for Rooms</span></span></td>\r\n<td style=\"width: 25%; height: 25px; text-align: left; vertical-align: middle;\"><span style=\"color: #99ccff;\"><span style=\"color: #99ccff; font-family: arial,helvetica,sans-serif; font-size: 10pt;\">[custom id=\"7\"]</span></span></td>\r\n</tr>\r\n<tr style=\"height: 25px;\">\r\n<td style=\"width: 25%; height: 25px; text-align: left; vertical-align: middle;\" colspan=\"4\"><span style=\"color: #99ccff;\"> </span></td>\r\n</tr>\r\n<tr style=\"height: 25px;\">\r\n<td style=\"width: 25%; height: 25px; text-align: left; vertical-align: middle;\" colspan=\"4\"><span style=\"color: #99ccff; font-family: arial,helvetica,sans-serif; font-size: 12pt;\"><strong>PERSONAL DETAILS</strong></span></td>\r\n</tr>\r\n<tr style=\"height: 25px;\">\r\n<td style=\"width: 25%; height: 25px; text-align: left; vertical-align: middle;\"><span style=\"color: #99ccff; font-family: arial,helvetica,sans-serif; font-size: 10pt;\">Name &amp; Surname</span></td>\r\n<td style=\"width: 25%; height: 25px; text-align: left; vertical-align: middle;\"><span style=\"color: #99ccff; font-family: arial,helvetica,sans-serif; font-size: 10pt;\">[thename]</span></td>\r\n<td style=\"width: 25%; height: 25px; text-align: left; vertical-align: middle;\"><span style=\"color: #99ccff; font-family: arial,helvetica,sans-serif; font-size: 10pt;\">Email Address</span></td>\r\n<td style=\"width: 25%; height: 25px; text-align: left; vertical-align: middle;\"><span style=\"color: #99ccff; font-family: arial,helvetica,sans-serif; font-size: 10pt;\">[email]</span></td>\r\n</tr>\r\n<tr style=\"height: 25px;\">\r\n<td style=\"width: 25%; height: 25px; text-align: left; vertical-align: middle;\"><span style=\"color: #99ccff; font-family: arial,helvetica,sans-serif; font-size: 10pt;\">Country</span></td>\r\n<td style=\"width: 25%; height: 25px; text-align: left; vertical-align: middle;\"><span style=\"color: #99ccff; font-family: arial,helvetica,sans-serif; font-size: 10pt;\">[country value=\"ZA\"]</span></td>\r\n<td style=\"width: 25%; height: 25px; text-align: left; vertical-align: middle;\"><span style=\"color: #99ccff; font-family: arial,helvetica,sans-serif; font-size: 10pt;\">Contact Phone</span></td>\r\n<td style=\"width: 25%; height: 25px; text-align: left; vertical-align: middle;\"><span style=\"color: #99ccff; font-family: arial,helvetica,sans-serif; font-size: 10pt;\">[custom text Phone *]</span></td>\r\n</tr>\r\n<tr style=\"height: 25px;\">\r\n<td style=\"width: 25%; height: 25px; text-align: left; vertical-align: middle;\"><span style=\"color: #99ccff; font-family: arial,helvetica,sans-serif; font-size: 10pt;\"> </span></td>\r\n<td style=\"width: 25%; height: 25px; text-align: left; vertical-align: middle;\"><span style=\"color: #99ccff; font-family: arial,helvetica,sans-serif; font-size: 10pt;\"> </span></td>\r\n<td style=\"width: 25%; height: 25px; text-align: left; vertical-align: middle;\"><span style=\"color: #99ccff;\"> </span></td>\r\n<td style=\"width: 25%; height: 25px; text-align: left; vertical-align: middle;\"><span style=\"color: #99ccff;\"> </span></td>\r\n</tr>\r\n<tr style=\"height: 25px;\">\r\n<td style=\"width: 25%; height: 25px; text-align: left; vertical-align: top;\" colspan=\"2\" rowspan=\"3\"><span style=\"color: #99ccff; font-family: arial,helvetica,sans-serif; font-size: 10pt;\">custom id=\"10\" title=\"Comments\"]</span><span style=\"color: #99ccff; font-family: arial,helvetica,sans-serif; font-size: 10pt;\"> </span><span style=\"color: #99ccff; font-family: arial,helvetica,sans-serif; font-size: 10pt;\"> </span><span style=\"color: #99ccff;\"> </span><span style=\"color: #99ccff;\"> </span></td>\r\n<td style=\"width: 25%; height: 25px; text-align: left; vertical-align: middle;\"><span style=\"color: #99ccff; font-family: arial,helvetica,sans-serif; font-size: 10pt;\">I accept <span style=\"text-decoration: underline;\"><strong> <a style=\"color: #99ccff; text-decoration: underline;\" href=\"http://msla.co.za/lodge/tcs/\">Terms &amp; Conditions</a></strong></span></span></td>\r\n<td style=\"width: 25%; height: 25px; text-align: left; vertical-align: middle;\"><span style=\"color: #99ccff; font-family: arial,helvetica,sans-serif; font-size: 10pt;\">[custom id=\"1\" title=\"Terms &amp; Conditions\"]</span></td>\r\n</tr>\r\n<tr style=\"height: 25px;\">\r\n<td style=\"width: 25%; height: 25px; text-align: left; vertical-align: middle;\"><span style=\"color: #99ccff; font-family: arial,helvetica,sans-serif; font-size: 10pt;\">Enter Security Code</span></td>\r\n<td style=\"width: 25%; height: 25px; text-align: left; vertical-align: middle;\"><span style=\"color: #99ccff; font-family: arial,helvetica,sans-serif; font-size: 16pt;\">[captcha]</span></td>\r\n</tr>\r\n<tr style=\"height: 25px;\">\r\n<td style=\"width: 25%; height: 25px; text-align: left; vertical-align: middle;\"><span style=\"color: #99ccff;\"> </span></td>\r\n<td style=\"width: 25%; height: 25px; text-align: left; vertical-align: middle;\"><span style=\"color: #99ccff; font-family: arial,helvetica,sans-serif; font-size: 10pt;\">[submit value=\"Submit\"]</span></td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n</div>[/fusion_builder_column][/fusion_builder_row][/fusion_builder_container]', 'Form Templet', '', 'draft', 'closed', 'closed', '', 'form-templet', '', '', '2019-11-13 14:13:46', '2019-11-13 12:13:46', '', 0, 'http://localhost/assagaylodge/?page_id=1072', 0, 'page', '', 0),
(1073, 1, '2015-09-15 17:28:13', '2015-09-15 15:28:13', '[fullwidth background_color=\"\" background_image=\"http://localhost/assagaylodge/wp-content/uploads/2015/01/about-parallax11.jpg\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"center center\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"20\" padding_bottom=\"20\" padding_left=\"0\" padding_right=\"0\" hundred_percent=\"yes\" equal_height_columns=\"yes\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][one_sixth last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][modal name=\"rates\" title=\"2015 Rates\" size=\"large\" background=\"\" border_color=\"\" show_footer=\"yes\" class=\"\" id=\"\"]\r\n\r\nALL PRICES INCLUDE VAT\r\n<h3>Full House Self-Catering (Max 10 persons): <strong>R2950</strong> per night (R295 per person)</h3>\r\n<h3>Self-Catering:</h3>\r\n<strong>Weekdays (Monday, Tuesday, Wednesday or Thursday):</strong>\r\n\r\nSingle Private Room <strong>R595</strong> per person per night\r\nSharing <strong>R395</strong> per person per night\r\n\r\n<strong>Weekends (Friday, Saturday, Sunday):</strong>\r\n\r\nSingle Private Room <strong>R645</strong> per person per night\r\nSharing <strong>R445</strong> per person per night\r\n<h3>Breakfast Optional:</h3>\r\nContinental<strong> R55</strong> per person\r\nFull English <strong>R95</strong> per person\r\n<h3>Lodge &amp; Room Servicing Optional: <strong>R195 </strong>per day</h3>\r\n\r\n<hr />\r\n\r\n<h3>Specials</h3>\r\nWeekdays: Book any 3 weekdays, Monday, Tuesday, Wednesday or Thursday, and only pay for 2 days.\r\n\r\n15% Discount. Arrive Friday Depart Sunday.\r\n\r\n[/modal][button link=\"\" color=\"green\" size=\"medium\" type=\"\" shape=\"\" target=\"_self\" title=\"\" gradient_colors=\"|\" gradient_hover_colors=\"|\" accent_color=\"\" accent_hover_color=\"\" bevel_color=\"\" border_width=\"1px\" icon=\"\" icon_position=\"left\" icon_divider=\"no\" modal=\"rates\" animation_type=\"0\" animation_direction=\"left\" animation_speed=\"1\" alignment=\"center\" class=\"\" id=\"\"]2015 Rates[/button][/one_sixth][two_third last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][fusion_text][easy_form booknow style=\"none\" submit=\"Reservation successfully sent\" subsubmit=\"Please continue.\" credit=\"Reservation complete\" subcredit=\"You\'ll receive an email with the reservations details\" resourcename=\"Room\" price=\"1\" pers=\"1\" resource=\"854\"][/fusion_text][/two_third][one_sixth last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][/one_sixth][/fullwidth]', 'Book Now', '', 'inherit', 'closed', 'closed', '', '855-revision-v1', '', '', '2015-09-15 17:28:13', '2015-09-15 15:28:13', '', 855, 'http://localhost/assagaylodge/855-revision-v1/', 0, 'revision', '', 0),
(1074, 1, '2015-09-15 23:40:10', '2015-09-15 21:40:10', '<div>\r\n<table class=\" alignleft\" style=\"width: 100%;\" cellspacing=\"0\" cellpadding=\"0\">\r\n<tbody>\r\n<tr style=\"height: 40px;\">\r\n<td style=\"width: 25%; height: 30px; text-align: left; vertical-align: middle;\"><span style=\"color: #ebf8fa; font-family: arial,helvetica,sans-serif; font-size: 12pt;\"><strong>RESERVATION DETAILS</strong></span></td>\r\n<td style=\"width: 25%; height: 30px; text-align: left; vertical-align: middle;\"><span style=\"color: #ebf8fa; font-family: arial,helvetica,sans-serif; font-size: 8pt;\"><strong>[error error_title=\"Errors found in the form\" error_message=\"There is a problem with the form</strong></span></td>\r\n<td style=\"width: 25%; height: 30px; text-align: left; vertical-align: middle;\"><span style=\"color: #ebf8fa; font-family: arial,helvetica,sans-serif; font-size: 12pt;\"> <span style=\"font-family: arial,helvetica,sans-serif;\">[<span style=\"color: #ffffff;\">show_price before=\"PRICE: \"]</span></span></span></td>\r\n<td style=\"width: 25%; height: 30px; text-align: right; vertical-align: middle;\"><span style=\"color: #ebf8fa; font-family: arial,helvetica,sans-serif; font-size: 12pt;\"><strong><span style=\"color: #ebf8fa; font-family: Arial;\">[hidden resource 11535]</span> </strong></span></td>\r\n</tr>\r\n<tr style=\"height: 40px;\">\r\n<td style=\"width: 25%; height: 30px; text-align: left; vertical-align: middle;\"><span style=\"color: #ebf8fa; font-family: arial,helvetica,sans-serif; font-size: 10pt;\">Arrival Date</span></td>\r\n<td style=\"width: 25%; height: 30px; text-align: left; vertical-align: middle;\"><span style=\"color: #ebf8fa; font-family: arial,helvetica,sans-serif; font-size: 10pt;\">[date-from value=\"+1\"]</span></td>\r\n<td style=\"width: 25%; height: 30px; text-align: left; vertical-align: middle;\"><span style=\"color: #ebf8fa; font-family: arial,helvetica,sans-serif; font-size: 10pt;\">Departure Date</span></td>\r\n<td style=\"width: 25%; height: 30px; text-align: left; vertical-align: middle;\"><span style=\"color: #ebf8fa; font-family: arial,helvetica,sans-serif; font-size: 10pt;\">[date-to value=\"+2\"]</span></td>\r\n</tr>\r\n<tr style=\"height: 40px;\">\r\n<td style=\"width: 25%; height: 30px; text-align: left; vertical-align: middle;\"><span style=\"color: #ebf8fa; font-family: arial,helvetica,sans-serif; font-size: 10pt;\">Number Of Guests</span></td>\r\n<td style=\"width: 25%; height: 30px; text-align: left; vertical-align: middle;\"><span style=\"color: #ebf8fa; font-family: arial,helvetica,sans-serif; font-size: 10pt;\">[adults 1 10 value=\"2\"]</span></td>\r\n<td style=\"width: 25%; height: 30px; text-align: left; vertical-align: middle;\"><span style=\"color: #ebf8fa; font-family: arial,helvetica,sans-serif; font-size: 10pt;\">Children Under 2yrs</span></td>\r\n<td style=\"width: 25%; height: 30px; text-align: left; vertical-align: middle;\"><span style=\"color: #ebf8fa; font-family: arial,helvetica,sans-serif; font-size: 10pt;\">[childs 0 2 value=\"0\"]</span></td>\r\n</tr>\r\n<tr style=\"height: 40px;\">\r\n<td style=\"width: 25%; height: 30px; text-align: left; vertical-align: middle;\"><span style=\"color: #ebf8fa; font-family: arial,helvetica,sans-serif; font-size: 10pt;\">Include Breakfast</span></td>\r\n<td style=\"width: 25%; height: 30px; text-align: left; vertical-align: middle;\"><span style=\"color: #ebf8fa; font-family: arial,helvetica,sans-serif; font-size: 10pt;\">[custom id=\"2\"]</span></td>\r\n<td style=\"width: 25%; height: 30px; text-align: left; vertical-align: middle;\"><span style=\"color: #ebf8fa; font-family: arial,helvetica,sans-serif; font-size: 10pt;\">Include Cleaning Services</span></td>\r\n<td style=\"width: 25%; height: 30px; text-align: left; vertical-align: middle;\"><span style=\"color: #ebf8fa; font-family: arial,helvetica,sans-serif; font-size: 10pt;\">[custom id=\"3\"]</span></td>\r\n</tr>\r\n<tr style=\"height: 40px;\">\r\n<td style=\"width: 25%; height: 30px; text-align: left; vertical-align: middle;\" colspan=\"4\"><span style=\"color: #ebf8fa; font-family: arial,helvetica,sans-serif; font-size: 12pt;\"><strong>PERSONAL DETAILS</strong></span></td>\r\n</tr>\r\n<tr style=\"height: 40px;\">\r\n<td style=\"width: 25%; height: 30px; text-align: left; vertical-align: middle;\"><span style=\"color: #ebf8fa; font-family: arial,helvetica,sans-serif; font-size: 10pt;\">First Name</span></td>\r\n<td style=\"width: 25%; height: 30px; text-align: left; vertical-align: middle;\"><span style=\"color: #ebf8fa; font-family: arial,helvetica,sans-serif; font-size: 10pt;\">[thename]</span></td>\r\n<td style=\"width: 25%; height: 30px; text-align: left; vertical-align: middle;\"><span style=\"color: #ebf8fa; font-family: arial,helvetica,sans-serif; font-size: 10pt;\">Email Address</span></td>\r\n<td style=\"width: 25%; height: 30px; text-align: left; vertical-align: middle;\"><span style=\"color: #ebf8fa; font-family: arial,helvetica,sans-serif; font-size: 10pt;\">[email]</span></td>\r\n</tr>\r\n<tr style=\"height: 40px;\">\r\n<td style=\"width: 25%; height: 30px; text-align: left; vertical-align: middle;\"><span style=\"color: #ebf8fa; font-family: arial,helvetica,sans-serif; font-size: 10pt;\">Surname</span></td>\r\n<td style=\"width: 25%; height: 30px; text-align: left; vertical-align: middle;\"><span style=\"color: #ebf8fa; font-family: arial,helvetica,sans-serif; font-size: 10pt;\">[thename]</span></td>\r\n<td style=\"width: 25%; height: 30px; text-align: left; vertical-align: middle;\"><span style=\"color: #ebf8fa; font-family: arial,helvetica,sans-serif; font-size: 10pt;\">Contact Phone</span></td>\r\n<td style=\"width: 25%; height: 30px; text-align: left; vertical-align: middle;\"><span style=\"color: #ebf8fa; font-family: arial,helvetica,sans-serif; font-size: 10pt;\">[custom text Phone *]</span></td>\r\n</tr>\r\n<tr style=\"height: 40px;\">\r\n<td style=\"width: 25%; height: 30px; text-align: left; vertical-align: middle;\"><span style=\"color: #ebf8fa; font-family: arial,helvetica,sans-serif; font-size: 10pt;\">Country</span></td>\r\n<td style=\"width: 25%; height: 30px; text-align: left; vertical-align: middle;\"><span style=\"color: #ebf8fa; font-family: arial,helvetica,sans-serif; font-size: 10pt;\">[country value=\"ZA\"]</span></td>\r\n<td style=\"width: 25%; height: 30px; text-align: left; vertical-align: middle;\"><span style=\"color: #ebf8fa;\"> </span></td>\r\n<td style=\"width: 25%; height: 30px; text-align: left; vertical-align: middle;\"><span style=\"color: #ebf8fa;\"> </span></td>\r\n</tr>\r\n<tr style=\"height: 40px;\">\r\n<td style=\"width: 25%; height: 30px; text-align: left; vertical-align: middle;\" rowspan=\"3\"><span style=\"color: #ebf8fa; font-family: arial,helvetica,sans-serif; font-size: 10pt;\">Comments or Questions!</span></td>\r\n<td style=\"width: 25%; height: 30px; text-align: left; vertical-align: middle;\" rowspan=\"3\"><span style=\"color: #ebf8fa; font-family: arial,helvetica,sans-serif; font-size: 10pt;\">[custom textarea Message]</span></td>\r\n<td style=\"width: 25%; height: 30px; text-align: left; vertical-align: middle;\"><span style=\"color: #ebf8fa; font-family: arial,helvetica,sans-serif; font-size: 10pt;\">I accept <a href=\"http://localhost/assagaylodge/tcs/\" target=\"_blank\">Terms &amp; Conditions</a></span></td>\r\n<td style=\"width: 25%; height: 30px; text-align: left; vertical-align: middle;\"><span style=\"color: #ebf8fa; font-family: arial,helvetica,sans-serif; font-size: 10pt;\">[custom id=\"1\" title=\"Terms &amp; Conditions\"]</span></td>\r\n</tr>\r\n<tr style=\"height: 40px;\">\r\n<td style=\"width: 25%; height: 30px; text-align: left; vertical-align: middle;\"><span style=\"color: #ebf8fa; font-family: arial,helvetica,sans-serif; font-size: 10pt;\">Enter Security Code</span></td>\r\n<td style=\"width: 25%; height: 30px; text-align: left; vertical-align: middle;\"><span style=\"color: #ebf8fa; font-family: arial,helvetica,sans-serif; font-size: 18pt;\">[captcha]</span></td>\r\n</tr>\r\n<tr style=\"height: 40px;\">\r\n<td style=\"width: 240px; text-align: left; vertical-align: middle;\"><span style=\"color: #ebf8fa;\"> </span></td>\r\n<td style=\"width: 240px; text-align: left; vertical-align: middle;\"><span style=\"color: #ebf8fa; font-family: arial,helvetica,sans-serif; font-size: 10pt;\">[submit value=\"Submit\"]</span></td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n</div>', 'Form Templet', '', 'inherit', 'closed', 'closed', '', '1072-revision-v1', '', '', '2015-09-15 23:40:10', '2015-09-15 21:40:10', '', 1072, 'http://localhost/assagaylodge/1072-revision-v1/', 0, 'revision', '', 0);
INSERT INTO `wp_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(1075, 1, '2016-10-18 10:48:27', '2016-10-18 08:48:27', '<div>\n<table class=\" alignleft\" style=\"width: 100%;\" cellspacing=\"0\" cellpadding=\"0\">\n<tbody>\n<tr style=\"height: 25px;\">\n<td style=\"width: 25%; height: 25px; text-align: left; vertical-align: middle;\"><span style=\"color: #99ccff; font-family: arial,helvetica,sans-serif; font-size: 12pt;\"><strong>RESERVATION DETAILS</strong></span></td>\n<td style=\"width: 25%; height: 25px; text-align: left; vertical-align: middle;\"><span style=\"color: #99ccff; font-family: arial,helvetica,sans-serif; font-size: 8pt;\"><span style=\"background-color: #0191c8;\">[error error_title=\"Errors found in the form\" error_message=\"There is a problem.\"]</span></span></td>\n<td style=\"width: 25%; height: 25px; text-align: left; vertical-align: middle;\"><span style=\"color: #99ccff; font-family: arial,helvetica,sans-serif; font-size: 12pt;\"> <strong><span style=\"color: #99ccff; font-family: Arial;\">ESTIMATED PRICE INCL VAT</span></strong></span></td>\n<td style=\"width: 25%; height: 25px; vertical-align: middle;\"><span style=\"color: #99ccff; font-family: arial,helvetica,sans-serif; font-size: 12pt;\"><span style=\"font-family: arial,helvetica,sans-serif;\">[show_price]</span><strong> </strong></span></td>\n</tr>\n<tr style=\"height: 25px;\">\n<td style=\"width: 25%; height: 25px; text-align: left; vertical-align: middle;\"><span style=\"color: #99ccff; font-family: arial,helvetica,sans-serif; font-size: 10pt;\"> </span></td>\n<td style=\"width: 25%; height: 25px; text-align: left; vertical-align: middle;\"><span style=\"color: #99ccff; font-family: arial,helvetica,sans-serif; font-size: 10pt;\"> </span></td>\n<td style=\"width: 25%; height: 25px; text-align: left; vertical-align: middle;\"><span style=\"color: #99ccff; font-family: arial,helvetica,sans-serif; font-size: 10pt;\"> </span></td>\n<td style=\"width: 25%; height: 25px; text-align: left; vertical-align: middle;\"><span style=\"color: #99ccff; font-family: arial,helvetica,sans-serif; font-size: 10pt;\"> <span style=\"color: #99ccff; font-family: arial,helvetica,sans-serif; font-size: 12pt;\"><strong><span style=\"font-family: Arial;\">[hidden resource 854]</span></strong></span></span></td>\n</tr>\n<tr style=\"height: 25px;\">\n<td style=\"width: 25%; height: 25px; text-align: left; vertical-align: middle;\"><span style=\"color: #99ccff; font-family: arial,helvetica,sans-serif; font-size: 10pt;\">Arrival Date</span></td>\n<td style=\"width: 25%; height: 25px; text-align: left; vertical-align: middle;\"><span style=\"color: #99ccff; font-family: arial,helvetica,sans-serif; font-size: 10pt;\">[date-from value=\"+1\"]</span></td>\n<td style=\"width: 25%; height: 25px; text-align: left; vertical-align: middle;\"><span style=\"color: #99ccff; font-family: arial,helvetica,sans-serif; font-size: 10pt;\">Departure Date</span></td>\n<td style=\"width: 20%; height: 25px; text-align: left; vertical-align: middle;\"><span style=\"color: #99ccff; font-family: arial,helvetica,sans-serif; font-size: 10pt;\">[date-to value=\"+2\"]</span></td>\n</tr>\n<tr style=\"height: 25px;\">\n<td style=\"width: 25%; height: 25px; text-align: left; vertical-align: middle;\"><span style=\"color: #99ccff; font-family: arial,helvetica,sans-serif; font-size: 10pt;\">Number Of Guests (excluding children under 2yrs)</span></td>\n<td style=\"width: 25%; height: 25px; text-align: left; vertical-align: middle;\"><span style=\"color: #99ccff; font-family: arial,helvetica,sans-serif; font-size: 10pt;\">[adults 1 10 value=\"1\"]</span></td>\n<td style=\"width: 25%; height: 25px; text-align: left; vertical-align: middle;\"><span style=\"color: #99ccff; font-family: arial,helvetica,sans-serif; font-size: 10pt;\">Children Under 2yrs (Own Bedding)</span></td>\n<td style=\"width: 25%; height: 25px; text-align: left; vertical-align: middle;\"><span style=\"color: #99ccff; font-family: arial,helvetica,sans-serif; font-size: 10pt;\">...Stay Free</span></td>\n</tr>\n<tr style=\"height: 25px;\">\n<td style=\"width: 25%; height: 25px; text-align: left; vertical-align: middle;\"><span style=\"color: #99ccff;\"> </span></td>\n<td style=\"width: 25%; height: 25px; text-align: left; vertical-align: middle;\"><span style=\"color: #99ccff;\"> </span></td>\n<td style=\"width: 25%; height: 25px; text-align: left; vertical-align: middle;\"><span style=\"color: #99ccff;\"> </span></td>\n<td style=\"width: 25%; height: 25px; text-align: left; vertical-align: middle;\"><span style=\"color: #99ccff;\"> </span></td>\n</tr>\n<tr style=\"height: 25px;\">\n<td style=\"width: 25%; height: 25px; text-align: left; vertical-align: middle;\"><span style=\"color: #99ccff; font-family: arial,helvetica,sans-serif; font-size: 10pt;\"><span style=\"font-family: arial,helvetica,sans-serif; font-size: 12pt;\"><strong>MEAL OPTIONS</strong></span></span></td>\n<td style=\"width: 25%; height: 25px; text-align: left; vertical-align: middle;\"><span style=\"color: #99ccff;\"> </span></td>\n<td style=\"width: 25%; height: 25px; text-align: left; vertical-align: middle;\"><span style=\"color: #99ccff; font-family: arial,helvetica,sans-serif; font-size: 10pt;\"><span style=\"font-family: arial,helvetica,sans-serif; font-size: 12pt;\"><strong>CLEANING SERVICE OPTIONS</strong></span></span></td>\n<td style=\"width: 25%; height: 25px; text-align: left; vertical-align: middle;\"><span style=\"color: #99ccff;\"> </span></td>\n</tr>\n<tr style=\"height: 25px;\">\n<td style=\"width: 25%; height: 25px; text-align: left; vertical-align: middle;\"><span style=\"color: #99ccff; font-family: arial,helvetica,sans-serif; font-size: 10pt;\">Include Morning Breakfast</span></td>\n<td style=\"width: 25%; height: 25px; text-align: left; vertical-align: middle;\"><span style=\"color: #99ccff; font-family: arial,helvetica,sans-serif; font-size: 10pt;\">[custom id=\"8\"]</span></td>\n<td style=\"width: 25%; height: 25px; text-align: left; vertical-align: middle;\"><span style=\"color: #99ccff; font-family: arial,helvetica,sans-serif; font-size: 10pt;\">Include Services for Lodge (excluding room/s)</span></td>\n<td style=\"width: 25%; height: 25px; text-align: left; vertical-align: middle;\"><span style=\"color: #99ccff; font-family: arial,helvetica,sans-serif; font-size: 10pt;\">[custom id=\"6\"]</span></td>\n</tr>\n<tr style=\"height: 25px;\">\n<td style=\"width: 25%; height: 25px; text-align: left; vertical-align: middle;\"><span style=\"color: #99ccff; font-family: arial,helvetica,sans-serif; font-size: 12pt;\"><span style=\"font-family: arial,helvetica,sans-serif; font-size: 10pt;\">Include Evening Dinner</span></span></td>\n<td style=\"width: 25%; height: 25px; text-align: left; vertical-align: middle;\"><span style=\"color: #99ccff; font-family: arial,helvetica,sans-serif; font-size: 12pt;\"><span style=\"font-family: arial,helvetica,sans-serif; font-size: 10pt;\">[custom id=\"9\"]</span></span></td>\n<td style=\"width: 25%; height: 25px; text-align: left; vertical-align: middle;\"><span style=\"color: #99ccff;\"><span style=\"color: #99ccff; font-family: arial,helvetica,sans-serif; font-size: 10pt;\">Include Services for Rooms</span></span></td>\n<td style=\"width: 25%; height: 25px; text-align: left; vertical-align: middle;\"><span style=\"color: #99ccff;\"><span style=\"color: #99ccff; font-family: arial,helvetica,sans-serif; font-size: 10pt;\">[custom id=\"7\"]</span></span></td>\n</tr>\n<tr style=\"height: 25px;\">\n<td style=\"width: 25%; height: 25px; text-align: left; vertical-align: middle;\" colspan=\"4\"><span style=\"color: #99ccff;\"> </span></td>\n</tr>\n<tr style=\"height: 25px;\">\n<td style=\"width: 25%; height: 25px; text-align: left; vertical-align: middle;\" colspan=\"4\"><span style=\"color: #99ccff; font-family: arial,helvetica,sans-serif; font-size: 12pt;\"><strong>PERSONAL DETAILS</strong></span></td>\n</tr>\n<tr style=\"height: 25px;\">\n<td style=\"width: 25%; height: 25px; text-align: left; vertical-align: middle;\"><span style=\"color: #99ccff; font-family: arial,helvetica,sans-serif; font-size: 10pt;\">Name &amp; Surname</span></td>\n<td style=\"width: 25%; height: 25px; text-align: left; vertical-align: middle;\"><span style=\"color: #99ccff; font-family: arial,helvetica,sans-serif; font-size: 10pt;\">[thename]</span></td>\n<td style=\"width: 25%; height: 25px; text-align: left; vertical-align: middle;\"><span style=\"color: #99ccff; font-family: arial,helvetica,sans-serif; font-size: 10pt;\">Email Address</span></td>\n<td style=\"width: 25%; height: 25px; text-align: left; vertical-align: middle;\"><span style=\"color: #99ccff; font-family: arial,helvetica,sans-serif; font-size: 10pt;\">[email]</span></td>\n</tr>\n<tr style=\"height: 25px;\">\n<td style=\"width: 25%; height: 25px; text-align: left; vertical-align: middle;\"><span style=\"color: #99ccff; font-family: arial,helvetica,sans-serif; font-size: 10pt;\">Country</span></td>\n<td style=\"width: 25%; height: 25px; text-align: left; vertical-align: middle;\"><span style=\"color: #99ccff; font-family: arial,helvetica,sans-serif; font-size: 10pt;\">[country value=\"ZA\"]</span></td>\n<td style=\"width: 25%; height: 25px; text-align: left; vertical-align: middle;\"><span style=\"color: #99ccff; font-family: arial,helvetica,sans-serif; font-size: 10pt;\">Contact Phone</span></td>\n<td style=\"width: 25%; height: 25px; text-align: left; vertical-align: middle;\"><span style=\"color: #99ccff; font-family: arial,helvetica,sans-serif; font-size: 10pt;\">[custom text Phone *]</span></td>\n</tr>\n<tr style=\"height: 25px;\">\n<td style=\"width: 25%; height: 25px; text-align: left; vertical-align: middle;\"><span style=\"color: #99ccff; font-family: arial,helvetica,sans-serif; font-size: 10pt;\">Country</span></td>\n<td style=\"width: 25%; height: 25px; text-align: left; vertical-align: middle;\"><span style=\"color: #99ccff; font-family: arial,helvetica,sans-serif; font-size: 10pt;\">[country value=\"ZA\"]</span></td>\n<td style=\"width: 25%; height: 25px; text-align: left; vertical-align: middle;\"><span style=\"color: #99ccff;\"> </span></td>\n<td style=\"width: 25%; height: 25px; text-align: left; vertical-align: middle;\"><span style=\"color: #99ccff;\"> </span></td>\n</tr>\n<tr style=\"height: 25px;\">\n<td style=\"width: 25%; height: 25px; text-align: left; vertical-align: top;\" colspan=\"2\" rowspan=\"3\"><span style=\"color: #99ccff; font-family: arial,helvetica,sans-serif; font-size: 10pt;\">custom id=\"10\" title=\"Comments\"]</span><span style=\"color: #99ccff; font-family: arial,helvetica,sans-serif; font-size: 10pt;\"> </span><span style=\"color: #99ccff; font-family: arial,helvetica,sans-serif; font-size: 10pt;\"> </span><span style=\"color: #99ccff;\"> </span><span style=\"color: #99ccff;\"> </span></td>\n<td style=\"width: 25%; height: 25px; text-align: left; vertical-align: middle;\"><span style=\"color: #99ccff; font-family: arial,helvetica,sans-serif; font-size: 10pt;\">I accept <span style=\"text-decoration: underline;\"><strong> <a style=\"color: #99ccff; text-decoration: underline;\" href=\"http://msla.co.za/lodge/tcs/\">Terms &amp; Conditions</a></strong></span></span></td>\n<td style=\"width: 25%; height: 25px; text-align: left; vertical-align: middle;\"><span style=\"color: #99ccff; font-family: arial,helvetica,sans-serif; font-size: 10pt;\">[custom id=\"1\" title=\"Terms &amp; Conditions\"]</span></td>\n</tr>\n<tr style=\"height: 25px;\">\n<td style=\"width: 25%; height: 25px; text-align: left; vertical-align: middle;\"><span style=\"color: #99ccff; font-family: arial,helvetica,sans-serif; font-size: 10pt;\">Enter Security Code</span></td>\n<td style=\"width: 25%; height: 25px; text-align: left; vertical-align: middle;\"><span style=\"color: #99ccff; font-family: arial,helvetica,sans-serif; font-size: 16pt;\">[captcha]</span></td>\n</tr>\n<tr style=\"height: 25px;\">\n<td style=\"width: 25%; height: 25px; text-align: left; vertical-align: middle;\"><span style=\"color: #99ccff;\"> </span></td>\n<td style=\"width: 25%; height: 25px; text-align: left; vertical-align: middle;\"><span style=\"color: #99ccff; font-family: arial,helvetica,sans-serif; font-size: 10pt;\">[submit value=\"Submit\"]</span></td>\n</tr>\n</tbody>\n</table>\n</div>', 'Form Templet', '', 'inherit', 'closed', 'closed', '', '1072-autosave-v1', '', '', '2016-10-18 10:48:27', '2016-10-18 08:48:27', '', 1072, 'http://localhost/assagaylodge/1072-autosave-v1/', 0, 'revision', '', 0),
(1076, 1, '2015-09-15 23:47:44', '2015-09-15 21:47:44', '<div>\r\n<table class=\" alignleft\" style=\"width: 100%;\" cellspacing=\"0\" cellpadding=\"0\">\r\n<tbody>\r\n<tr style=\"height: 40px;\">\r\n<td style=\"width: 25%; height: 30px; text-align: left; vertical-align: middle;\"><span style=\"color: #ebf8fa; font-family: arial,helvetica,sans-serif; font-size: 12pt;\"><strong>RESERVATION DETAILS</strong></span></td>\r\n<td style=\"width: 25%; height: 30px; text-align: left; vertical-align: middle;\"><span style=\"color: #ebf8fa; font-family: arial,helvetica,sans-serif; font-size: 8pt;\"><strong>[error error_title=\"Errors found in the form\" error_message=\"There is a problem with the form</strong></span></td>\r\n<td style=\"width: 25%; height: 30px; text-align: left; vertical-align: middle;\"><span style=\"color: #ebf8fa; font-family: arial,helvetica,sans-serif; font-size: 12pt;\"> <span style=\"font-family: arial,helvetica,sans-serif;\">[<span style=\"color: #ffffff;\">show_price before=\"PRICE: \"]</span></span></span></td>\r\n<td style=\"width: 25%; height: 30px; text-align: right; vertical-align: middle;\"><span style=\"color: #ebf8fa; font-family: arial,helvetica,sans-serif; font-size: 12pt;\"><strong><span style=\"color: #ebf8fa; font-family: Arial;\">[hidden resource 11535]</span> </strong></span></td>\r\n</tr>\r\n<tr style=\"height: 40px;\">\r\n<td style=\"width: 25%; height: 30px; text-align: left; vertical-align: middle;\"><span style=\"color: #ebf8fa; font-family: arial,helvetica,sans-serif; font-size: 10pt;\">Arrival Date</span></td>\r\n<td style=\"width: 25%; height: 30px; text-align: left; vertical-align: middle;\"><span style=\"color: #ebf8fa; font-family: arial,helvetica,sans-serif; font-size: 10pt;\">[date-from value=\"+1\"]</span></td>\r\n<td style=\"width: 25%; height: 30px; text-align: left; vertical-align: middle;\"><span style=\"color: #ebf8fa; font-family: arial,helvetica,sans-serif; font-size: 10pt;\">Departure Date</span></td>\r\n<td style=\"width: 25%; height: 30px; text-align: left; vertical-align: middle;\"><span style=\"color: #ebf8fa; font-family: arial,helvetica,sans-serif; font-size: 10pt;\">[date-to value=\"+2\"]</span></td>\r\n</tr>\r\n<tr style=\"height: 40px;\">\r\n<td style=\"width: 25%; height: 30px; text-align: left; vertical-align: middle;\"><span style=\"color: #ebf8fa; font-family: arial,helvetica,sans-serif; font-size: 10pt;\">Number Of Guests</span></td>\r\n<td style=\"width: 25%; height: 30px; text-align: left; vertical-align: middle;\"><span style=\"color: #ebf8fa; font-family: arial,helvetica,sans-serif; font-size: 10pt;\">[adults 1 10 value=\"2\"]</span></td>\r\n<td style=\"width: 25%; height: 30px; text-align: left; vertical-align: middle;\"><span style=\"color: #ebf8fa; font-family: arial,helvetica,sans-serif; font-size: 10pt;\">Children Under 2yrs</span></td>\r\n<td style=\"width: 25%; height: 30px; text-align: left; vertical-align: middle;\"><span style=\"color: #ebf8fa; font-family: arial,helvetica,sans-serif; font-size: 10pt;\">[childs 0 2 value=\"0\"]</span></td>\r\n</tr>\r\n<tr style=\"height: 40px;\">\r\n<td style=\"width: 25%; height: 30px; text-align: left; vertical-align: middle;\"><span style=\"color: #ebf8fa; font-family: arial,helvetica,sans-serif; font-size: 10pt;\">Include Breakfast</span></td>\r\n<td style=\"width: 25%; height: 30px; text-align: left; vertical-align: middle;\"><span style=\"color: #ebf8fa; font-family: arial,helvetica,sans-serif; font-size: 10pt;\">[custom id=\"2\"]</span></td>\r\n<td style=\"width: 25%; height: 30px; text-align: left; vertical-align: middle;\"><span style=\"color: #ebf8fa; font-family: arial,helvetica,sans-serif; font-size: 10pt;\">Include Cleaning Services</span></td>\r\n<td style=\"width: 25%; height: 30px; text-align: left; vertical-align: middle;\"><span style=\"color: #ebf8fa; font-family: arial,helvetica,sans-serif; font-size: 10pt;\">[custom id=\"3\"]</span></td>\r\n</tr>\r\n<tr style=\"height: 40px;\">\r\n<td style=\"width: 25%; height: 30px; text-align: left; vertical-align: middle;\" colspan=\"4\"><span style=\"color: #ebf8fa; font-family: arial,helvetica,sans-serif; font-size: 12pt;\"><strong>PERSONAL DETAILS</strong></span></td>\r\n</tr>\r\n<tr style=\"height: 40px;\">\r\n<td style=\"width: 25%; height: 30px; text-align: left; vertical-align: middle;\"><span style=\"color: #ebf8fa; font-family: arial,helvetica,sans-serif; font-size: 10pt;\">First Name</span></td>\r\n<td style=\"width: 25%; height: 30px; text-align: left; vertical-align: middle;\"><span style=\"color: #ebf8fa; font-family: arial,helvetica,sans-serif; font-size: 10pt;\">[thename]</span></td>\r\n<td style=\"width: 25%; height: 30px; text-align: left; vertical-align: middle;\"><span style=\"color: #ebf8fa; font-family: arial,helvetica,sans-serif; font-size: 10pt;\">Email Address</span></td>\r\n<td style=\"width: 25%; height: 30px; text-align: left; vertical-align: middle;\"><span style=\"color: #ebf8fa; font-family: arial,helvetica,sans-serif; font-size: 10pt;\">[email]</span></td>\r\n</tr>\r\n<tr style=\"height: 40px;\">\r\n<td style=\"width: 25%; height: 30px; text-align: left; vertical-align: middle;\"><span style=\"color: #ebf8fa; font-family: arial,helvetica,sans-serif; font-size: 10pt;\">Surname</span></td>\r\n<td style=\"width: 25%; height: 30px; text-align: left; vertical-align: middle;\"><span style=\"color: #ebf8fa; font-family: arial,helvetica,sans-serif; font-size: 10pt;\">[thename]</span></td>\r\n<td style=\"width: 25%; height: 30px; text-align: left; vertical-align: middle;\"><span style=\"color: #ebf8fa; font-family: arial,helvetica,sans-serif; font-size: 10pt;\">Contact Phone</span></td>\r\n<td style=\"width: 25%; height: 30px; text-align: left; vertical-align: middle;\"><span style=\"color: #ebf8fa; font-family: arial,helvetica,sans-serif; font-size: 10pt;\">[custom text Phone *]</span></td>\r\n</tr>\r\n<tr style=\"height: 40px;\">\r\n<td style=\"width: 25%; height: 30px; text-align: left; vertical-align: middle;\"><span style=\"color: #ebf8fa; font-family: arial,helvetica,sans-serif; font-size: 10pt;\">Country</span></td>\r\n<td style=\"width: 25%; height: 30px; text-align: left; vertical-align: middle;\"><span style=\"color: #ebf8fa; font-family: arial,helvetica,sans-serif; font-size: 10pt;\">[country value=\"ZA\"]</span></td>\r\n<td style=\"width: 25%; height: 30px; text-align: left; vertical-align: middle;\"><span style=\"color: #ebf8fa;\"> </span></td>\r\n<td style=\"width: 25%; height: 30px; text-align: left; vertical-align: middle;\"><span style=\"color: #ebf8fa;\"> </span></td>\r\n</tr>\r\n<tr style=\"height: 40px;\">\r\n<td style=\"width: 25%; height: 30px; text-align: left; vertical-align: middle;\" rowspan=\"3\"><span style=\"color: #ebf8fa; font-family: arial,helvetica,sans-serif; font-size: 10pt;\">Comments or Questions!</span></td>\r\n<td style=\"width: 25%; height: 30px; text-align: left; vertical-align: middle;\" rowspan=\"3\"><span style=\"color: #ebf8fa; font-family: arial,helvetica,sans-serif; font-size: 10pt;\">[custom textarea Message]</span></td>\r\n<td style=\"width: 25%; height: 30px; text-align: left; vertical-align: middle;\"><span style=\"color: #ebf8fa; font-family: arial,helvetica,sans-serif; font-size: 10pt;\">I accept <a href=\"http://localhost/assagaylodge/tcs/\" target=\"_blank\">Terms &amp; Conditions</a></span></td>\r\n<td style=\"width: 25%; height: 30px; text-align: left; vertical-align: middle;\"><span style=\"color: #ebf8fa; font-family: arial,helvetica,sans-serif; font-size: 10pt;\">[custom id=\"1\" title=\"Terms &amp; Conditions\"]</span></td>\r\n</tr>\r\n<tr style=\"height: 40px;\">\r\n<td style=\"width: 25%; height: 30px; text-align: left; vertical-align: middle;\"><span style=\"color: #ebf8fa; font-family: arial,helvetica,sans-serif; font-size: 10pt;\">Enter Security Code</span></td>\r\n<td style=\"width: 25%; height: 30px; text-align: left; vertical-align: middle;\"><span style=\"color: #ebf8fa; font-family: arial,helvetica,sans-serif; font-size: 16pt;\">[captcha]</span></td>\r\n</tr>\r\n<tr style=\"height: 40px;\">\r\n<td style=\"width: 240px; text-align: left; vertical-align: middle;\"><span style=\"color: #ebf8fa;\"> </span></td>\r\n<td style=\"width: 240px; text-align: left; vertical-align: middle;\"><span style=\"color: #ebf8fa; font-family: arial,helvetica,sans-serif; font-size: 10pt;\">[submit value=\"Submit\"]</span></td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n</div>', 'Form Templet', '', 'inherit', 'closed', 'closed', '', '1072-revision-v1', '', '', '2015-09-15 23:47:44', '2015-09-15 21:47:44', '', 1072, 'http://localhost/assagaylodge/1072-revision-v1/', 0, 'revision', '', 0),
(1077, 1, '2015-09-16 10:05:57', '2015-09-16 08:05:57', '[fullwidth background_color=\"#f0f0ed\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"90px\" padding_bottom=\"0px\" padding_left=\"0px\" padding_right=\"0px\" hundred_percent=\"yes\" equal_height_columns=\"yes\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][one_half last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"http://localhost/assagaylodge/wp-content/uploads/2015/01/DSC01554-e1442325082893.jpg\" background_repeat=\"no-repeat\" background_position=\"center center\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" class=\"\" id=\"\"][/one_half][one_half last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"30px\" margin_top=\"\" margin_bottom=\"0px\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" class=\"special\" id=\"\"][fusion_text]<h1>5 BEDROOM FAMILY LODGE</h1>\r\nA Four Season Lodge, because there’s Always Something to Celebrate…\r\n\r\nWe offer comfort, relaxation and exceptional service right in the heart of 1000 Hills. Sleeps 10 From R450p/p  R2995 complete[/fusion_text][separator style_type=\"single\" top_margin=\"0\" bottom_margin=\"30\" sep_color=\"#000000\" border_size=\"\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"170px\" alignment=\"left\" class=\"separator-left\" id=\"\"][modal name=\"rates\" title=\"2015 Rates\" size=\"large\" background=\"\" border_color=\"\" show_footer=\"yes\" class=\"\" id=\"\"]<p>ALL PRICES INCLUDE VAT</p>\r\n<h3>Full House Self-Catering (Max 10 persons): <strong>R2950</strong> per night (R295 per person)</h3>\r\n<h3>Self-Catering:</h3>\r\n<p><strong>Weekdays (Monday, Tuesday, Wednesday or Thursday):</strong></p>\r\n<p>Single Private Room <strong>R595</strong> per person per night<br />\r\nSharing <strong>R395</strong> per person per night</p>\r\n<p><strong>Weekends (Friday, Saturday, Sunday):</strong></p>\r\n<p>Single Private Room <strong>R645</strong> per person per night<br />\r\nSharing <strong>R445</strong> per person per night</p>\r\n<h3>Breakfast Optional:</h3>\r\n<p>Continental<strong> R55</strong> per person<br />\r\nFull English <strong>R95</strong> per person</p>\r\n<h3>Lodge & Room Servicing Optional: <strong>R195 </strong>per day</h3>\r\n<hr />\r\n<p> </p>\r\n<h3>Specials</h3>\r\n<p>Weekdays: Book any 3 weekdays, Monday, Tuesday, Wednesday or Thursday, and only pay for 2 days.</p>\r\n<p>15% Discount. Arrive Friday Depart Sunday.</p>\r\n[/modal][button link=\"\" color=\"darkgreen\" size=\"\"  type=\"\" shape=\"\" target=\"_self\" title=\"\" gradient_colors=\"|\" gradient_hover_colors=\"|\" accent_color=\"\" accent_hover_color=\"\" bevel_color=\"\" border_width=\"1px\" icon=\"\" icon_position=\"left\" icon_divider=\"no\" modal=\"rates\" animation_type=\"0\" animation_direction=\"left\" animation_speed=\"1\" alignment=\"\" class=\"\" id=\"\"]2015 RATES[/button][/one_half][/fullwidth][menu_anchor name=\"LODGE\"][fullwidth background_color=\"#f0f0ed\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"20\" padding_bottom=\"20\" padding_left=\"0px\" padding_right=\"0px\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][one_half last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][fusion_text]\r\n<h3 style=\"text-align: justify;\">The property boasts over 200 different species of birds and animals. The Lodge is situated on the 1000 Hills tourism route, on the edge of Hillcrest and is a perfect place from which one can launch to any one of the many fantastic destinations and game reserves in KwaZulu Natal, i.e. the Majestic Drakensberg Mountain Range, Shongweni Nature Reserve, Nagle Dam, Durban &amp; Beach Front. We are also the doorstep of one of KZN’s major horse riding venues namely, the Shongweni Horse Riding Club &amp; the Summerveld Horse Riding Academy, makes Assagay Lodge a perfect home away from home for the equestrian lovers. The peace &amp; tranquility will take you far away from the business of city life. Evenings are quiet and peaceful. This is a unique and memorable country experience.</h3>\r\n[/fusion_text][/one_half][one_half last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][fusion_text]\r\n<h3 style=\"text-align: justify;\">We are a homely \'down to earth\' country guest lodge, set on a farm surrounded by acres of beautiful hills, forests, &amp; dams in the Madwala Conservancy of Assagay, where horses still have the right of way on all roads. Our five bedrooms have a rustic charm offering the comforts of modern day life.</h3>\r\n<h3 style=\"text-align: justify;\">Assagay Forest Lodge is owner managed, built in 2005 the lodge provides 5 cozy bedrooms with a large spacious and comfortable homely lounge, which leads onto a large deck area. Set on a 6 acre property in the Assagay Conservancy our lodge is nestled around trees, bushes, and beautiful gardens and a stream, allowing visitors to meander and relax. Guests seeking a quite, relaxing, homely experience will find our lodge the perfect choice away from home. There is a kitchen available should you wish to muster up a snack or quick meal, however breakfast is available on request.</h3>\r\n[/fusion_text][/one_half][/fullwidth][fullwidth background_color=\"#f0f0ed\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"20\" padding_bottom=\"20\" padding_left=\"0px\" padding_right=\"0px\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][fusion_text]\r\n<h1 style=\"text-align: center;\">Gallery</h1>\r\n[/fusion_text][separator style_type=\"single\" top_margin=\"\" bottom_margin=\"40\" sep_color=\"#000000\" border_size=\"\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"170px\" alignment=\"\" class=\"\" id=\"\"][one_sixth last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][/one_sixth][two_third last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][fusion_text]\r\n<h3 style=\"text-align: center;\">The Lodge is open, spacious, comfortable and homely.</h3>\r\n[/fusion_text][/two_third][one_sixth last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][/one_sixth][/fullwidth][fullwidth background_color=\"#f0f0ed\" background_image=\"http://localhost/assagaylodge/wp-content/uploads/2015/01/Wood_Texture.jpg\" background_parallax=\"fixed\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"30\" padding_bottom=\"10\" padding_left=\"0\" padding_right=\"0\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][recent_works layout=\"grid\" picture_size=\"auto\" boxed_text=\"unboxed\" filters=\"no\" columns=\"3\" column_spacing=\"12\" cat_slug=\"the-lodge\" exclude_cats=\"\" number_posts=\"9\" offset=\"\" excerpt_length=\"35\" strip_html=\"yes\" carousel_layout=\"title_on_rollover\" scroll_items=\"\" autoplay=\"no\" show_nav=\"yes\" mouse_scroll=\"no\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" class=\"\" id=\"\"][/recent_works][/fullwidth][fullwidth background_color=\"#f0f0ed\" background_image=\"\" background_parallax=\"fixed\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"20\" padding_bottom=\"20\" padding_left=\"0px\" padding_right=\"0px\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][menu_anchor name=\"BEDROOMS\"][fusion_text]\r\n<h1 style=\"text-align: center;\">BEDROOMS</h1>\r\n[/fusion_text][separator style_type=\"single\" top_margin=\"\" bottom_margin=\"20\" sep_color=\"#000000\" border_size=\"\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"170px\" alignment=\"\" class=\"\" id=\"\"][one_sixth last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][/one_sixth][two_third last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][fusion_text]\r\n<h3 style=\"text-align: justify;\">When it comes to our bedrooms we’re proud to say we’re different. We offer something a little more special.</h3>\r\n<h3 style=\"text-align: justify;\">Our five bedrooms are all en-suite and equipped with either king size or queen size beds. Each room sleeps two guests. The rooms have high ceilings, wall heaters &amp; ceiling fans. Beds all have electric blankets in Winter, 100% cotton percale sheets and thick hyper allergenic microfiber duvets and pillows.</h3>\r\n[/fusion_text][/two_third][one_sixth last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][/one_sixth][/fullwidth][fullwidth background_color=\"\" background_image=\"http://localhost/assagaylodge/wp-content/uploads/2015/01/DSC01516-1148-x-764.jpg\" background_parallax=\"fixed\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"center center\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"20\" padding_bottom=\"20\" padding_left=\"0\" padding_right=\"0\" hundred_percent=\"no\" equal_height_columns=\"yes\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][recent_works layout=\"grid\" picture_size=\"auto\" boxed_text=\"unboxed\" filters=\"no\" columns=\"3\" column_spacing=\"12\" cat_slug=\"bedrooms\" exclude_cats=\"\" number_posts=\"6\" offset=\"\" excerpt_length=\"35\" strip_html=\"yes\" carousel_layout=\"title_on_rollover\" scroll_items=\"\" autoplay=\"no\" show_nav=\"yes\" mouse_scroll=\"no\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" class=\"\" id=\"\"][/recent_works][/fullwidth][fullwidth background_color=\"#f0f0ed\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"20\" padding_bottom=\"20\" padding_left=\"0\" padding_right=\"0\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][menu_anchor name=\"GARDENS\"][fusion_text]\r\n<h1 style=\"text-align: center;\">GARDENS</h1>\r\n[/fusion_text][separator style_type=\"none\" top_margin=\"40\" bottom_margin=\"\" sep_color=\"\" border_size=\"\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"100%\" alignment=\"center\" class=\"\" id=\"\"][one_sixth last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][/one_sixth][two_third last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][fusion_text]\r\n<h3 style=\"text-align: center;\">Walk &amp; relax in our beautiful gardens.</h3>\r\n[/fusion_text][/two_third][one_sixth last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][/one_sixth][recent_works layout=\"grid\" picture_size=\"auto\" boxed_text=\"boxed\" filters=\"no\" columns=\"3\" column_spacing=\"12\" cat_slug=\"gardens\" exclude_cats=\"\" number_posts=\"9\" offset=\"\" excerpt_length=\"35\" strip_html=\"yes\" carousel_layout=\"title_on_rollover\" scroll_items=\"\" autoplay=\"no\" show_nav=\"yes\" mouse_scroll=\"no\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" class=\"\" id=\"\"][/recent_works][/fullwidth][fullwidth background_color=\"#ffffff\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"65px\" padding_bottom=\"65px\" padding_left=\"0px\" padding_right=\"0px\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][button link=\"http://localhost/assagaylodge/book-now/\" color=\"default\" size=\"xlarge\"  type=\"3d\" shape=\"round\" target=\"_self\" title=\"\" gradient_colors=\"#f0f0ed|#f0f0ed\" gradient_hover_colors=\"#6666a4|#6666a4\" accent_color=\"#ffffff\" accent_hover_color=\"#ffffff\" bevel_color=\"\" border_width=\"0px\" icon=\"\" icon_position=\"left\" icon_divider=\"no\" modal=\"\" animation_type=\"0\" animation_direction=\"left\" animation_speed=\"1\" alignment=\"center\" class=\"\" id=\"\"]Make A Reservation Enquiry[/button][/fullwidth][menu_anchor name=\"\"][modal name=\"\" title=\"\" size=\"\" background=\"\" border_color=\"\" show_footer=\"\" class=\"\" id=\"\"][/modal][modal name=\"\" title=\"\" size=\"\" background=\"\" border_color=\"\" show_footer=\"\" class=\"\" id=\"\"][/modal][modal name=\"\" title=\"\" size=\"\" background=\"\" border_color=\"\" show_footer=\"\" class=\"\" id=\"\"][/modal][modal name=\"\" title=\"\" size=\"\" background=\"\" border_color=\"\" show_footer=\"\" class=\"\" id=\"\"][/modal]', 'Home', '', 'inherit', 'closed', 'closed', '', '7-revision-v1', '', '', '2015-09-16 10:05:57', '2015-09-16 08:05:57', '', 7, 'http://localhost/assagaylodge/7-revision-v1/', 0, 'revision', '', 0);
INSERT INTO `wp_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(1078, 1, '2015-09-16 10:16:03', '2015-09-16 08:16:03', '[fullwidth background_color=\"#f0f0ed\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"90px\" padding_bottom=\"0px\" padding_left=\"0px\" padding_right=\"0px\" hundred_percent=\"yes\" equal_height_columns=\"yes\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][one_half last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"http://localhost/assagaylodge/wp-content/uploads/2015/01/DSC01554-e1442325082893.jpg\" background_repeat=\"no-repeat\" background_position=\"center center\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" class=\"\" id=\"\"][/one_half][one_half last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"30px\" margin_top=\"\" margin_bottom=\"0px\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" class=\"special\" id=\"\"][fusion_text]\r\n<h1>5 BEDROOM FAMILY LODGE</h1>\r\n<h3>A Four Season Lodge, because there’s Always Something to Celebrate… We offer comfort, relaxation and exceptional service right in the heart of 1000 Hills. Sleeps 10 From R450p/p  R2995 complete. The Forest , the Gardens , the Atmosphere all speak to  Rest  &amp; Relaxation.</h3>\r\n[/fusion_text][separator style_type=\"single\" top_margin=\"0\" bottom_margin=\"30\" sep_color=\"#000000\" border_size=\"\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"170px\" alignment=\"left\" class=\"separator-left\" id=\"\"][modal name=\"rates\" title=\"2015 Rates\" size=\"large\" background=\"\" border_color=\"\" show_footer=\"yes\" class=\"\" id=\"\"]\r\n\r\nALL PRICES INCLUDE VAT\r\n<h3>Full House Self-Catering (Max 10 persons): <strong>R2950</strong> per night (R295 per person)</h3>\r\n<h3>Self-Catering:</h3>\r\n<strong>Weekdays (Monday, Tuesday, Wednesday or Thursday):</strong>\r\n\r\nSingle Private Room <strong>R595</strong> per person per night\r\nSharing <strong>R395</strong> per person per night\r\n\r\n<strong>Weekends (Friday, Saturday, Sunday):</strong>\r\n\r\nSingle Private Room <strong>R645</strong> per person per night\r\nSharing <strong>R445</strong> per person per night\r\n<h3>Breakfast Optional:</h3>\r\nContinental<strong> R55</strong> per person\r\nFull English <strong>R95</strong> per person\r\n<h3>Lodge &amp; Room Servicing Optional: <strong>R195 </strong>per day</h3>\r\n\r\n<hr />\r\n\r\n<h3>Specials</h3>\r\nWeekdays: Book any 3 weekdays, Monday, Tuesday, Wednesday or Thursday, and only pay for 2 days.\r\n\r\n15% Discount. Arrive Friday Depart Sunday.\r\n\r\n[/modal][button link=\"\" color=\"darkgreen\" size=\"\" type=\"\" shape=\"\" target=\"_self\" title=\"\" gradient_colors=\"|\" gradient_hover_colors=\"|\" accent_color=\"\" accent_hover_color=\"\" bevel_color=\"\" border_width=\"1px\" icon=\"\" icon_position=\"left\" icon_divider=\"no\" modal=\"rates\" animation_type=\"0\" animation_direction=\"left\" animation_speed=\"1\" alignment=\"\" class=\"\" id=\"\"]2015 RATES[/button][/one_half][/fullwidth][menu_anchor name=\"LODGE\"][fullwidth background_color=\"#f0f0ed\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"20\" padding_bottom=\"20\" padding_left=\"0px\" padding_right=\"0px\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][one_half last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][fusion_text]\r\n<h3 style=\"text-align: justify;\">Set in the rolling peaks and valleys of a thousand hills surrounded by a canopy of indigenous trees  , you will find that horses still have right of way , we  certainly offer the best of both worlds , farm and charm coupled with modern amenities that will have you feeling relaxed and rejuvenated.</h3>\r\n<h3 style=\"text-align: justify;\">We know that sometimes you are searching for a romantic getaway or maybe a few days away with old friends. Other times you are searching for a place to host a weekend, family reunion or a business retreat. In addition to nightly room rentals, our lodge is also available for meetings, retreats  and makes the perfect place for a wedding party to stay together and get ready for the big day. Regardless, with our five comfortable and cozy guest bedrooms , multiple garden spaces and hideaways, and a  large private deck  where you can take a nap or read a book we definitely have the room for you!</h3>\r\n[/fusion_text][/one_half][one_half last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][fusion_text]\r\n<h3 style=\"text-align: justify;\">Our lodge has been in our family for years and has recently been beautifully renovated. Five rooms all with en-suite showers , tea/coffee making facilities, MNet and satellite television (DSTV)  open Wi-Fi . Sumptuous meals are served on the bottom deck at the swimming pool. Barbecues, afternoon tea in the garden or picnic baskets  on request all add to the service that awaits you , Our lodge features a  50 foot high Apex ceiling, spacious living, dining and bar area including a fitted kitchenette  all adding to a sense of homey comfort.</h3>\r\n<h3 style=\"text-align: justify;\">Be lulled to sleep by the sound of the waterfall  and tinkling stream just outside your window , waking from a peaceful night\'s sleep in a pillow-top bed dressed in luxurious linens to coddle you in ultimate comfort.</h3>\r\n<h3 style=\"text-align: justify;\">Our property boasts many different species of birds and animals. We have a resident otter, a family of wild bush pigs,  a family of rock rabbits, porcupine, little blue duikers, a variety of different frogs and an abundance of bird life, including the occasional snakes that pass through!</h3>\r\nEvenings are quiet and peaceful taking you far away from the business of city life.\r\n<h3 style=\"text-align: justify;\">This is a unique and memorable country experience. We look forward to having you as a guest!</h3>\r\n[/fusion_text][/one_half][/fullwidth][fullwidth background_color=\"#f0f0ed\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"20\" padding_bottom=\"20\" padding_left=\"0px\" padding_right=\"0px\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][fusion_text]\r\n<h1 style=\"text-align: center;\">Gallery</h1>\r\n[/fusion_text][separator style_type=\"single\" top_margin=\"\" bottom_margin=\"40\" sep_color=\"#000000\" border_size=\"\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"170px\" alignment=\"\" class=\"\" id=\"\"][one_sixth last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][/one_sixth][two_third last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][fusion_text]\r\n<h3 style=\"text-align: justify;\"><span style=\"font-family: Calibri;\"><span style=\"color: #000000;\">The Lodge is open, spacious, comfortable and homely.</span> During hot summer days, sit and bask in the sun on the deck  with one of our  picnic specials. In winter, snuggle up with a good book or challenge one another to a friendly board game in the glassed nook area .</span></h3>\r\n[/fusion_text][/two_third][one_sixth last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][/one_sixth][/fullwidth][fullwidth background_color=\"#f0f0ed\" background_image=\"http://localhost/assagaylodge/wp-content/uploads/2015/01/Wood_Texture.jpg\" background_parallax=\"fixed\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"30\" padding_bottom=\"10\" padding_left=\"0\" padding_right=\"0\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][recent_works layout=\"grid\" picture_size=\"auto\" boxed_text=\"unboxed\" filters=\"no\" columns=\"3\" column_spacing=\"12\" cat_slug=\"the-lodge\" exclude_cats=\"\" number_posts=\"9\" offset=\"\" excerpt_length=\"35\" strip_html=\"yes\" carousel_layout=\"title_on_rollover\" scroll_items=\"\" autoplay=\"no\" show_nav=\"yes\" mouse_scroll=\"no\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" class=\"\" id=\"\"][/recent_works][/fullwidth][fullwidth background_color=\"#f0f0ed\" background_image=\"\" background_parallax=\"fixed\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"20\" padding_bottom=\"20\" padding_left=\"0px\" padding_right=\"0px\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][menu_anchor name=\"BEDROOMS\"][fusion_text]\r\n<h1 style=\"text-align: center;\">BEDROOMS</h1>\r\n[/fusion_text][separator style_type=\"single\" top_margin=\"\" bottom_margin=\"20\" sep_color=\"#000000\" border_size=\"\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"170px\" alignment=\"\" class=\"\" id=\"\"][one_sixth last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][/one_sixth][two_third last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][fusion_text]\r\n<h3 style=\"text-align: justify;\"><span style=\"font-family: Calibri;\"><span style=\"color: #000000;\">When it comes to our bedrooms we’re proud to say we offer something a little more special.</span> One of five  lovingly and tastefully decorated guest rooms. Soft gray decor soothes the senses providing a peaceful, blissfully comfortable rest from your travels and hectic lives.  </span></h3>\r\n<h3 style=\"text-align: justify;\"><span style=\"color: #000000; font-family: Calibri;\"> </span></h3>\r\n<h3 style=\"text-align: justify;\"><span style=\"font-family: Calibri;\"><span style=\"color: #000000;\">Our  bedrooms are </span>spacious, clean, comfortable  <span style=\"color: #000000;\">all en-suite </span>, <span style=\"color: #000000;\">equipped with either king size or queen size beds. Each room sleeps two guests. The rooms have high ceilings, wall heaters &amp; ceiling fans. Beds all have electric blankets in Winter, 100% cotton percale sheets and thick hyper allergenic microfiber duvets and pillows.</span> All guest rooms are cleaned with organic and green products. Amenities include hairdryers in each room. Three rooms feature King-sized beds  of which two can be  split into two single beds. Two  rooms can therefore be changed into a twin room upon request.</span></h3>\r\n<h3 style=\"text-align: justify;\"><span style=\"font-family: Calibri;\">Two rooms  feature a Queen-sized double bed. These beds cannot be split into twin beds.</span></h3>\r\n[/fusion_text][/two_third][one_sixth last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][/one_sixth][/fullwidth][fullwidth background_color=\"\" background_image=\"http://localhost/assagaylodge/wp-content/uploads/2015/01/DSC01516-1148-x-764.jpg\" background_parallax=\"fixed\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"center center\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"20\" padding_bottom=\"20\" padding_left=\"0\" padding_right=\"0\" hundred_percent=\"no\" equal_height_columns=\"yes\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][recent_works layout=\"grid\" picture_size=\"auto\" boxed_text=\"unboxed\" filters=\"no\" columns=\"3\" column_spacing=\"12\" cat_slug=\"bedrooms\" exclude_cats=\"\" number_posts=\"6\" offset=\"\" excerpt_length=\"35\" strip_html=\"yes\" carousel_layout=\"title_on_rollover\" scroll_items=\"\" autoplay=\"no\" show_nav=\"yes\" mouse_scroll=\"no\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" class=\"\" id=\"\"][/recent_works][/fullwidth][fullwidth background_color=\"#f0f0ed\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"20\" padding_bottom=\"20\" padding_left=\"0\" padding_right=\"0\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][menu_anchor name=\"GARDENS\"][fusion_text]\r\n<h1 style=\"text-align: center;\">GARDENS</h1>\r\n[/fusion_text][separator style_type=\"none\" top_margin=\"40\" bottom_margin=\"\" sep_color=\"\" border_size=\"\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"100%\" alignment=\"center\" class=\"\" id=\"\"][one_sixth last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][/one_sixth][two_third last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][fusion_text]\r\n<h3 style=\"text-align: justify;\"><span style=\"font-family: Calibri;\">The garden is large and offers many secluded spots to lose yourself in a book with a glass of wine underneath the shade of a tree, listening to the sounds of the birds and smelling the beautiful flowers.</span></h3>\r\n[/fusion_text][/two_third][one_sixth last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][/one_sixth][recent_works layout=\"grid\" picture_size=\"auto\" boxed_text=\"boxed\" filters=\"no\" columns=\"3\" column_spacing=\"12\" cat_slug=\"gardens\" exclude_cats=\"\" number_posts=\"9\" offset=\"\" excerpt_length=\"35\" strip_html=\"yes\" carousel_layout=\"title_on_rollover\" scroll_items=\"\" autoplay=\"no\" show_nav=\"yes\" mouse_scroll=\"no\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" class=\"\" id=\"\"][/recent_works][/fullwidth][fullwidth background_color=\"#ffffff\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"65px\" padding_bottom=\"65px\" padding_left=\"0px\" padding_right=\"0px\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][button link=\"http://localhost/assagaylodge/book-now/\" color=\"default\" size=\"xlarge\" type=\"3d\" shape=\"round\" target=\"_self\" title=\"\" gradient_colors=\"#f0f0ed|#f0f0ed\" gradient_hover_colors=\"#6666a4|#6666a4\" accent_color=\"#ffffff\" accent_hover_color=\"#ffffff\" bevel_color=\"\" border_width=\"0px\" icon=\"\" icon_position=\"left\" icon_divider=\"no\" modal=\"\" animation_type=\"0\" animation_direction=\"left\" animation_speed=\"1\" alignment=\"center\" class=\"\" id=\"\"]Make A Reservation Enquiry[/button][/fullwidth][menu_anchor name=\"\"][modal name=\"\" title=\"\" size=\"\" background=\"\" border_color=\"\" show_footer=\"\" class=\"\" id=\"\"][/modal][modal name=\"\" title=\"\" size=\"\" background=\"\" border_color=\"\" show_footer=\"\" class=\"\" id=\"\"][/modal][modal name=\"\" title=\"\" size=\"\" background=\"\" border_color=\"\" show_footer=\"\" class=\"\" id=\"\"][/modal][modal name=\"\" title=\"\" size=\"\" background=\"\" border_color=\"\" show_footer=\"\" class=\"\" id=\"\"][/modal]', 'Home', '', 'inherit', 'closed', 'closed', '', '7-revision-v1', '', '', '2015-09-16 10:16:03', '2015-09-16 08:16:03', '', 7, 'http://localhost/assagaylodge/7-revision-v1/', 0, 'revision', '', 0),
(1079, 1, '2015-09-16 10:18:51', '2015-09-16 08:18:51', '[fullwidth background_color=\"#f0f0ed\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"90px\" padding_bottom=\"0px\" padding_left=\"0px\" padding_right=\"0px\" hundred_percent=\"yes\" equal_height_columns=\"yes\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][one_half last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"http://localhost/assagaylodge/wp-content/uploads/2015/01/DSC01554-e1442325082893.jpg\" background_repeat=\"no-repeat\" background_position=\"center center\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" class=\"\" id=\"\"][/one_half][one_half last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"30px\" margin_top=\"\" margin_bottom=\"0px\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" class=\"special\" id=\"\"][fusion_text]\r\n<h1>5 BEDROOM FAMILY LODGE</h1>\r\n<h3>A Four Season Lodge, because there’s Always Something to Celebrate… We offer comfort, relaxation and exceptional service right in the heart of 1000 Hills. Sleeps 10 From R450p/p  R2995 complete. The Forest , the Gardens , the Atmosphere all speak to  Rest  &amp; Relaxation.</h3>\r\n[/fusion_text][separator style_type=\"single\" top_margin=\"0\" bottom_margin=\"30\" sep_color=\"#000000\" border_size=\"\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"170px\" alignment=\"left\" class=\"separator-left\" id=\"\"][modal name=\"rates\" title=\"2015 Rates\" size=\"large\" background=\"\" border_color=\"\" show_footer=\"yes\" class=\"\" id=\"\"]\r\n\r\nALL PRICES INCLUDE VAT\r\n<h3>Full House Self-Catering (Max 10 persons): <strong>R2950</strong> per night (R295 per person)</h3>\r\n<h3>Self-Catering:</h3>\r\n<strong>Weekdays (Monday, Tuesday, Wednesday or Thursday):</strong>\r\n\r\nSingle Private Room <strong>R595</strong> per person per night\r\nSharing <strong>R395</strong> per person per night\r\n\r\n<strong>Weekends (Friday, Saturday, Sunday):</strong>\r\n\r\nSingle Private Room <strong>R645</strong> per person per night\r\nSharing <strong>R445</strong> per person per night\r\n<h3>Breakfast Optional:</h3>\r\nContinental<strong> R55</strong> per person\r\nFull English <strong>R95</strong> per person\r\n<h3>Lodge &amp; Room Servicing Optional: <strong>R195 </strong>per day</h3>\r\n\r\n<hr />\r\n\r\n<h3>Specials</h3>\r\nWeekdays: Book any 3 weekdays, Monday, Tuesday, Wednesday or Thursday, and only pay for 2 days.\r\n\r\n15% Discount. Arrive Friday Depart Sunday.\r\n\r\n[/modal][button link=\"\" color=\"darkgreen\" size=\"\" type=\"\" shape=\"\" target=\"_self\" title=\"\" gradient_colors=\"|\" gradient_hover_colors=\"|\" accent_color=\"\" accent_hover_color=\"\" bevel_color=\"\" border_width=\"1px\" icon=\"\" icon_position=\"left\" icon_divider=\"no\" modal=\"rates\" animation_type=\"0\" animation_direction=\"left\" animation_speed=\"1\" alignment=\"\" class=\"\" id=\"\"]2015 RATES[/button][/one_half][/fullwidth][menu_anchor name=\"LODGE\"][fullwidth background_color=\"#f0f0ed\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"20\" padding_bottom=\"20\" padding_left=\"0px\" padding_right=\"0px\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][one_half last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][fusion_text]\r\n<h3 style=\"text-align: justify;\">Set in the rolling peaks and valleys of a thousand hills surrounded by a canopy of indigenous trees  , you will find that horses still have right of way , we  certainly offer the best of both worlds , farm and charm coupled with modern amenities that will have you feeling relaxed and rejuvenated.</h3>\r\n<h3 style=\"text-align: justify;\">We know that sometimes you are searching for a romantic getaway or maybe a few days away with old friends. Other times you are searching for a place to host a weekend, family reunion or a business retreat. In addition to nightly room rentals, our lodge is also available for meetings, retreats  and makes the perfect place for a wedding party to stay together and get ready for the big day. Regardless, with our five comfortable and cozy guest bedrooms , multiple garden spaces and hideaways, and a  large private deck  where you can take a nap or read a book we definitely have the room for you!</h3>\r\n[/fusion_text][/one_half][one_half last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][fusion_text]\r\n<h3 style=\"text-align: justify;\">Our lodge has been in our family for years and has recently been beautifully renovated. Five rooms all with en-suite showers, tea/coffee making facilities, MNet and satellite television (DSTV)  open Wi-Fi. Sumptuous meals are served on the bottom deck at the swimming pool. Barbecues, afternoon tea in the garden or picnic baskets  on request all add to the service that awaits you, Our lodge features a  50 foot high Apex ceiling, spacious living, dining and bar area including a fitted kitchenette  all adding to a sense of homey comfort.</h3>\r\n<h3 style=\"text-align: justify;\">Be lulled to sleep by the sound of the waterfall  and tinkling stream just outside your window , waking from a peaceful night\'s sleep in a pillow-top bed dressed in luxurious linens to coddle you in ultimate comfort.</h3>\r\n<h3 style=\"text-align: justify;\">Our property boasts many different species of birds and animals. We have a resident otter, a family of wild bush pigs,  a family of rock rabbits, porcupine, little blue duikers, a variety of different frogs and an abundance of bird life, including the occasional snakes that pass through!</h3>\r\n<h3 style=\"text-align: justify;\">Evenings are quiet and peaceful taking you far away from the business of city life. This is a unique and memorable country experience. We look forward to having you as a guest!</h3>\r\n[/fusion_text][/one_half][/fullwidth][fullwidth background_color=\"#f0f0ed\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"20\" padding_bottom=\"20\" padding_left=\"0px\" padding_right=\"0px\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][fusion_text]\r\n<h1 style=\"text-align: center;\">Gallery</h1>\r\n[/fusion_text][separator style_type=\"single\" top_margin=\"\" bottom_margin=\"40\" sep_color=\"#000000\" border_size=\"\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"170px\" alignment=\"\" class=\"\" id=\"\"][one_sixth last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][/one_sixth][two_third last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][fusion_text]\r\n<h3 style=\"text-align: justify;\"><span style=\"font-family: Calibri;\"><span style=\"color: #000000;\">The Lodge is open, spacious, comfortable and homely.</span> During hot summer days, sit and bask in the sun on the deck  with one of our  picnic specials. In winter, snuggle up with a good book or challenge one another to a friendly board game in the glassed nook area .</span></h3>\r\n[/fusion_text][/two_third][one_sixth last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][/one_sixth][/fullwidth][fullwidth background_color=\"#f0f0ed\" background_image=\"http://localhost/assagaylodge/wp-content/uploads/2015/01/Wood_Texture.jpg\" background_parallax=\"fixed\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"30\" padding_bottom=\"10\" padding_left=\"0\" padding_right=\"0\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][recent_works layout=\"grid\" picture_size=\"auto\" boxed_text=\"unboxed\" filters=\"no\" columns=\"3\" column_spacing=\"12\" cat_slug=\"the-lodge\" exclude_cats=\"\" number_posts=\"9\" offset=\"\" excerpt_length=\"35\" strip_html=\"yes\" carousel_layout=\"title_on_rollover\" scroll_items=\"\" autoplay=\"no\" show_nav=\"yes\" mouse_scroll=\"no\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" class=\"\" id=\"\"][/recent_works][/fullwidth][fullwidth background_color=\"#f0f0ed\" background_image=\"\" background_parallax=\"fixed\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"20\" padding_bottom=\"20\" padding_left=\"0px\" padding_right=\"0px\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][menu_anchor name=\"BEDROOMS\"][fusion_text]\r\n<h1 style=\"text-align: center;\">BEDROOMS</h1>\r\n[/fusion_text][separator style_type=\"single\" top_margin=\"\" bottom_margin=\"20\" sep_color=\"#000000\" border_size=\"\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"170px\" alignment=\"\" class=\"\" id=\"\"][one_sixth last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][/one_sixth][two_third last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][fusion_text]\r\n<h3 style=\"text-align: justify;\"><span style=\"font-family: Calibri;\"><span style=\"color: #000000;\">When it comes to our bedrooms we’re proud to say we offer something a little more special.</span> One of five  lovingly and tastefully decorated guest rooms. Soft gray decor soothes the senses providing a peaceful, blissfully comfortable rest from your travels and hectic lives.  </span></h3>\r\n<h3 style=\"text-align: justify;\"><span style=\"color: #000000; font-family: Calibri;\"> </span></h3>\r\n<h3 style=\"text-align: justify;\"><span style=\"font-family: Calibri;\"><span style=\"color: #000000;\">Our  bedrooms are </span>spacious, clean, comfortable  <span style=\"color: #000000;\">all en-suite </span>, <span style=\"color: #000000;\">equipped with either king size or queen size beds. Each room sleeps two guests. The rooms have high ceilings, wall heaters &amp; ceiling fans. Beds all have electric blankets in Winter, 100% cotton percale sheets and thick hyper allergenic microfiber duvets and pillows.</span> All guest rooms are cleaned with organic and green products. Amenities include hairdryers in each room. Three rooms feature King-sized beds  of which two can be  split into two single beds. Two  rooms can therefore be changed into a twin room upon request.</span></h3>\r\n<h3 style=\"text-align: justify;\"><span style=\"font-family: Calibri;\">Two rooms  feature a Queen-sized double bed. These beds cannot be split into twin beds.</span></h3>\r\n[/fusion_text][/two_third][one_sixth last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][/one_sixth][/fullwidth][fullwidth background_color=\"\" background_image=\"http://localhost/assagaylodge/wp-content/uploads/2015/01/DSC01516-1148-x-764.jpg\" background_parallax=\"fixed\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"center center\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"20\" padding_bottom=\"20\" padding_left=\"0\" padding_right=\"0\" hundred_percent=\"no\" equal_height_columns=\"yes\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][recent_works layout=\"grid\" picture_size=\"auto\" boxed_text=\"unboxed\" filters=\"no\" columns=\"3\" column_spacing=\"12\" cat_slug=\"bedrooms\" exclude_cats=\"\" number_posts=\"6\" offset=\"\" excerpt_length=\"35\" strip_html=\"yes\" carousel_layout=\"title_on_rollover\" scroll_items=\"\" autoplay=\"no\" show_nav=\"yes\" mouse_scroll=\"no\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" class=\"\" id=\"\"][/recent_works][/fullwidth][fullwidth background_color=\"#f0f0ed\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"20\" padding_bottom=\"20\" padding_left=\"0\" padding_right=\"0\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][menu_anchor name=\"GARDENS\"][fusion_text]\r\n<h1 style=\"text-align: center;\">GARDENS</h1>\r\n[/fusion_text][separator style_type=\"none\" top_margin=\"40\" bottom_margin=\"\" sep_color=\"\" border_size=\"\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"100%\" alignment=\"center\" class=\"\" id=\"\"][one_sixth last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][/one_sixth][two_third last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][fusion_text]\r\n<h3 style=\"text-align: justify;\"><span style=\"font-family: Calibri;\">The garden is large and offers many secluded spots to lose yourself in a book with a glass of wine underneath the shade of a tree, listening to the sounds of the birds and smelling the beautiful flowers.</span></h3>\r\n[/fusion_text][/two_third][one_sixth last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][/one_sixth][recent_works layout=\"grid\" picture_size=\"auto\" boxed_text=\"boxed\" filters=\"no\" columns=\"3\" column_spacing=\"12\" cat_slug=\"gardens\" exclude_cats=\"\" number_posts=\"9\" offset=\"\" excerpt_length=\"35\" strip_html=\"yes\" carousel_layout=\"title_on_rollover\" scroll_items=\"\" autoplay=\"no\" show_nav=\"yes\" mouse_scroll=\"no\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" class=\"\" id=\"\"][/recent_works][/fullwidth][fullwidth background_color=\"#ffffff\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"65px\" padding_bottom=\"65px\" padding_left=\"0px\" padding_right=\"0px\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][button link=\"http://localhost/assagaylodge/book-now/\" color=\"default\" size=\"xlarge\" type=\"3d\" shape=\"round\" target=\"_self\" title=\"\" gradient_colors=\"#f0f0ed|#f0f0ed\" gradient_hover_colors=\"#6666a4|#6666a4\" accent_color=\"#ffffff\" accent_hover_color=\"#ffffff\" bevel_color=\"\" border_width=\"0px\" icon=\"\" icon_position=\"left\" icon_divider=\"no\" modal=\"\" animation_type=\"0\" animation_direction=\"left\" animation_speed=\"1\" alignment=\"center\" class=\"\" id=\"\"]Make A Reservation Enquiry[/button][/fullwidth][menu_anchor name=\"\"][modal name=\"\" title=\"\" size=\"\" background=\"\" border_color=\"\" show_footer=\"\" class=\"\" id=\"\"][/modal][modal name=\"\" title=\"\" size=\"\" background=\"\" border_color=\"\" show_footer=\"\" class=\"\" id=\"\"][/modal][modal name=\"\" title=\"\" size=\"\" background=\"\" border_color=\"\" show_footer=\"\" class=\"\" id=\"\"][/modal][modal name=\"\" title=\"\" size=\"\" background=\"\" border_color=\"\" show_footer=\"\" class=\"\" id=\"\"][/modal]', 'Home', '', 'inherit', 'closed', 'closed', '', '7-revision-v1', '', '', '2015-09-16 10:18:51', '2015-09-16 08:18:51', '', 7, 'http://localhost/assagaylodge/7-revision-v1/', 0, 'revision', '', 0);
INSERT INTO `wp_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(1080, 1, '2015-09-16 10:24:38', '2015-09-16 08:24:38', '[fullwidth background_color=\"#f0f0ed\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"90px\" padding_bottom=\"0px\" padding_left=\"0px\" padding_right=\"0px\" hundred_percent=\"yes\" equal_height_columns=\"yes\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][one_half last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"http://localhost/assagaylodge/wp-content/uploads/2015/01/DSC01554-e1442325082893.jpg\" background_repeat=\"no-repeat\" background_position=\"center center\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" class=\"\" id=\"\"][/one_half][one_half last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"30px\" margin_top=\"\" margin_bottom=\"0px\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" class=\"special\" id=\"\"][fusion_text]\r\n<h1 style=\"text-align: justify;\">5 BEDROOM FAMILY LODGE</h1>\r\n<h3 style=\"text-align: justify;\">A Four Season Lodge, because there’s Always Something to Celebrate… We offer comfort, relaxation and exceptional service right in the heart of 1000 Hills. Sleeps 10 From R450p/p  R2995 complete. The Forest, the Gardens, the Atmosphere all speak to  Rest  &amp; Relaxation.</h3>\r\n[/fusion_text][separator style_type=\"single\" top_margin=\"0\" bottom_margin=\"30\" sep_color=\"#000000\" border_size=\"\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"170px\" alignment=\"left\" class=\"separator-left\" id=\"\"][modal name=\"rates\" title=\"2015 Rates\" size=\"large\" background=\"\" border_color=\"\" show_footer=\"yes\" class=\"\" id=\"\"]\r\n\r\nALL PRICES INCLUDE VAT\r\n<h3>Full House Self-Catering (Max 10 persons): <strong>R2950</strong> per night (R295 per person)</h3>\r\n<h3>Self-Catering:</h3>\r\n<strong>Weekdays (Monday, Tuesday, Wednesday or Thursday):</strong>\r\n\r\nSingle Private Room <strong>R595</strong> per person per night\r\nSharing <strong>R395</strong> per person per night\r\n\r\n<strong>Weekends (Friday, Saturday, Sunday):</strong>\r\n\r\nSingle Private Room <strong>R645</strong> per person per night\r\nSharing <strong>R445</strong> per person per night\r\n<h3>Breakfast Optional:</h3>\r\nContinental<strong> R55</strong> per person\r\nFull English <strong>R95</strong> per person\r\n<h3>Lodge &amp; Room Servicing Optional: <strong>R195 </strong>per day</h3>\r\n\r\n<hr />\r\n\r\n<h3>Specials</h3>\r\nWeekdays: Book any 3 weekdays, Monday, Tuesday, Wednesday or Thursday, and only pay for 2 days.\r\n\r\n15% Discount. Arrive Friday Depart Sunday.\r\n\r\n[/modal][button link=\"\" color=\"darkgreen\" size=\"\" type=\"\" shape=\"\" target=\"_self\" title=\"\" gradient_colors=\"|\" gradient_hover_colors=\"|\" accent_color=\"\" accent_hover_color=\"\" bevel_color=\"\" border_width=\"1px\" icon=\"\" icon_position=\"left\" icon_divider=\"no\" modal=\"rates\" animation_type=\"0\" animation_direction=\"left\" animation_speed=\"1\" alignment=\"\" class=\"\" id=\"\"]2015 RATES[/button][/one_half][/fullwidth][fullwidth background_color=\"#f0f0ed\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"20\" padding_bottom=\"20\" padding_left=\"0px\" padding_right=\"0px\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][one_half last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][fusion_text]\r\n<h3 style=\"text-align: justify;\">Set in the rolling peaks and valleys of a thousand hills surrounded by a canopy of indigenous trees  , you will find that horses still have right of way , we  certainly offer the best of both worlds , farm and charm coupled with modern amenities that will have you feeling relaxed and rejuvenated.</h3>\r\n<h3 style=\"text-align: justify;\">We know that sometimes you are searching for a romantic getaway or maybe a few days away with old friends. Other times you are searching for a place to host a weekend, family reunion or a business retreat. In addition to nightly room rentals, our lodge is also available for meetings, retreats  and makes the perfect place for a wedding party to stay together and get ready for the big day. Regardless, with our five comfortable and cozy guest bedrooms , multiple garden spaces and hideaways, and a  large private deck  where you can take a nap or read a book we definitely have the room for you!</h3>\r\n[/fusion_text][/one_half][one_half last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][fusion_text]\r\n<h3 style=\"text-align: justify;\">Our lodge has been in our family for years and has recently been beautifully renovated. Five rooms all with en-suite showers, tea/coffee making facilities, MNet and satellite television (DSTV)  open Wi-Fi. Sumptuous meals are served on the bottom deck at the swimming pool. Barbecues, afternoon tea in the garden or picnic baskets  on request all add to the service that awaits you, Our lodge features a  50 foot high Apex ceiling, spacious living, dining and bar area including a fitted kitchenette  all adding to a sense of homey comfort.</h3>\r\n<h3 style=\"text-align: justify;\">Be lulled to sleep by the sound of the waterfall  and tinkling stream just outside your window , waking from a peaceful night\'s sleep in a pillow-top bed dressed in luxurious linens to coddle you in ultimate comfort.</h3>\r\n<h3 style=\"text-align: justify;\">Our property boasts many different species of birds and animals. We have a resident otter, a family of wild bush pigs,  a family of rock rabbits, porcupine, little blue duikers, a variety of different frogs and an abundance of bird life, including the occasional snakes that pass through!</h3>\r\n<h3 style=\"text-align: justify;\">Evenings are quiet and peaceful taking you far away from the business of city life. This is a unique and memorable country experience. We look forward to having you as a guest!</h3>\r\n[/fusion_text][/one_half][/fullwidth][fullwidth background_color=\"#f0f0ed\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"20\" padding_bottom=\"20\" padding_left=\"0px\" padding_right=\"0px\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][fusion_text]\r\n<h1 style=\"text-align: center;\">Gallery</h1>\r\n[/fusion_text][separator style_type=\"single\" top_margin=\"\" bottom_margin=\"40\" sep_color=\"#000000\" border_size=\"\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"170px\" alignment=\"\" class=\"\" id=\"\"][one_sixth last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][/one_sixth][two_third last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][fusion_text]\r\n<h3 style=\"text-align: justify;\"><span style=\"font-family: Calibri;\"><span style=\"color: #000000;\">The Lodge is open, spacious, comfortable and homely.</span> During hot summer days, sit and bask in the sun on the deck  with one of our  picnic specials. In winter, snuggle up with a good book or challenge one another to a friendly board game in the glassed nook area .</span></h3>\r\n[/fusion_text][/two_third][one_sixth last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][/one_sixth][/fullwidth][fullwidth background_color=\"#f0f0ed\" background_image=\"http://localhost/assagaylodge/wp-content/uploads/2015/01/Wood_Texture.jpg\" background_parallax=\"fixed\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"30\" padding_bottom=\"10\" padding_left=\"0\" padding_right=\"0\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][recent_works layout=\"grid\" picture_size=\"auto\" boxed_text=\"unboxed\" filters=\"no\" columns=\"3\" column_spacing=\"12\" cat_slug=\"the-lodge\" exclude_cats=\"\" number_posts=\"9\" offset=\"\" excerpt_length=\"35\" strip_html=\"yes\" carousel_layout=\"title_on_rollover\" scroll_items=\"\" autoplay=\"no\" show_nav=\"yes\" mouse_scroll=\"no\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" class=\"\" id=\"\"][/recent_works][/fullwidth][fullwidth background_color=\"#f0f0ed\" background_image=\"http://localhost/assagaylodge/wp-content/uploads/2015/01/Wood_Texture.jpg\" background_parallax=\"fixed\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"30\" padding_bottom=\"10\" padding_left=\"0\" padding_right=\"0\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][recent_works layout=\"grid\" picture_size=\"auto\" boxed_text=\"unboxed\" filters=\"no\" columns=\"3\" column_spacing=\"12\" cat_slug=\"the-lodge\" exclude_cats=\"\" number_posts=\"9\" offset=\"\" excerpt_length=\"35\" strip_html=\"yes\" carousel_layout=\"title_on_rollover\" scroll_items=\"\" autoplay=\"no\" show_nav=\"yes\" mouse_scroll=\"no\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" class=\"\" id=\"\"][/recent_works][/fullwidth][fullwidth background_color=\"#f0f0ed\" background_image=\"\" background_parallax=\"fixed\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"20\" padding_bottom=\"20\" padding_left=\"0px\" padding_right=\"0px\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][fusion_text]\r\n<h1 style=\"text-align: center;\">BEDROOMS</h1>\r\n[/fusion_text][separator style_type=\"single\" top_margin=\"\" bottom_margin=\"20\" sep_color=\"#000000\" border_size=\"\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"170px\" alignment=\"\" class=\"\" id=\"\"][one_sixth last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][/one_sixth][two_third last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][fusion_text]\r\n<h3 style=\"text-align: justify;\"><span style=\"font-family: Calibri;\"><span style=\"color: #000000;\">When it comes to our bedrooms we’re proud to say we offer something a little more special.</span> One of five  lovingly and tastefully decorated guest rooms. Soft gray decor soothes the senses providing a peaceful, blissfully comfortable rest from your travels and hectic lives.  </span><span style=\"color: #000000; font-family: Calibri;\"> </span></h3>\r\n<h3 style=\"text-align: justify;\"><span style=\"font-family: Calibri;\"><span style=\"color: #000000;\">Our  bedrooms are </span>spacious, clean, comfortable <span style=\"color: #000000;\">all en-suite</span>, <span style=\"color: #000000;\">equipped with either king size or queen size beds. Each room sleeps two guests. The rooms have high ceilings, wall heaters &amp; ceiling fans. Beds all have electric blankets in Winter, 100% cotton percale sheets and thick hyper allergenic microfiber duvets and pillows.</span> All guest rooms are cleaned with organic and green products. Amenities include hairdryers in each room. Three rooms feature King-sized beds  of which two can be  split into two single beds. Two  rooms can therefore be changed into a twin room upon request. </span><span style=\"font-family: Calibri;\">Two rooms feature a Queen-sized double bed. These beds cannot be split into twin beds.</span></h3>\r\n[/fusion_text][/two_third][one_sixth last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][/one_sixth][/fullwidth][fullwidth background_color=\"\" background_image=\"http://localhost/assagaylodge/wp-content/uploads/2015/01/DSC01516-1148-x-764.jpg\" background_parallax=\"fixed\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"center center\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"20\" padding_bottom=\"20\" padding_left=\"0\" padding_right=\"0\" hundred_percent=\"no\" equal_height_columns=\"yes\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][recent_works layout=\"grid\" picture_size=\"auto\" boxed_text=\"unboxed\" filters=\"no\" columns=\"3\" column_spacing=\"12\" cat_slug=\"bedrooms\" exclude_cats=\"\" number_posts=\"6\" offset=\"\" excerpt_length=\"35\" strip_html=\"yes\" carousel_layout=\"title_on_rollover\" scroll_items=\"\" autoplay=\"no\" show_nav=\"yes\" mouse_scroll=\"no\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" class=\"\" id=\"\"][/recent_works][/fullwidth][fullwidth background_color=\"#f0f0ed\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"20\" padding_bottom=\"20\" padding_left=\"0\" padding_right=\"0\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][fusion_text]\r\n<h1 style=\"text-align: center;\">GARDENS</h1>\r\n[/fusion_text][separator style_type=\"single\" top_margin=\"\" bottom_margin=\"20\" sep_color=\"#000000\" border_size=\"\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"170px\" alignment=\"\" class=\"\" id=\"\"][one_sixth last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][/one_sixth][two_third last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][fusion_text]\r\n<h3 style=\"text-align: justify;\"><span style=\"font-family: Calibri;\">The garden is large and offers many secluded spots to lose yourself in a book with a glass of wine underneath the shade of a tree, listening to the sounds of the birds and smelling the beautiful flowers.</span></h3>\r\n[/fusion_text][/two_third][one_sixth last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][/one_sixth][recent_works layout=\"grid\" picture_size=\"auto\" boxed_text=\"boxed\" filters=\"no\" columns=\"3\" column_spacing=\"12\" cat_slug=\"gardens\" exclude_cats=\"\" number_posts=\"9\" offset=\"\" excerpt_length=\"35\" strip_html=\"yes\" carousel_layout=\"title_on_rollover\" scroll_items=\"\" autoplay=\"no\" show_nav=\"yes\" mouse_scroll=\"no\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" class=\"\" id=\"\"][/recent_works][/fullwidth][fullwidth background_color=\"#ffffff\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"65px\" padding_bottom=\"65px\" padding_left=\"0px\" padding_right=\"0px\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][button link=\"http://localhost/assagaylodge/book-now/\" color=\"default\" size=\"xlarge\" type=\"3d\" shape=\"round\" target=\"_self\" title=\"\" gradient_colors=\"#f0f0ed|#f0f0ed\" gradient_hover_colors=\"#6666a4|#6666a4\" accent_color=\"#ffffff\" accent_hover_color=\"#ffffff\" bevel_color=\"\" border_width=\"0px\" icon=\"\" icon_position=\"left\" icon_divider=\"no\" modal=\"\" animation_type=\"0\" animation_direction=\"left\" animation_speed=\"1\" alignment=\"center\" class=\"\" id=\"\"]Make A Reservation Enquiry[/button][/fullwidth][menu_anchor name=\"\"][modal name=\"\" title=\"\" size=\"\" background=\"\" border_color=\"\" show_footer=\"\" class=\"\" id=\"\"][/modal][modal name=\"\" title=\"\" size=\"\" background=\"\" border_color=\"\" show_footer=\"\" class=\"\" id=\"\"][/modal][modal name=\"\" title=\"\" size=\"\" background=\"\" border_color=\"\" show_footer=\"\" class=\"\" id=\"\"][/modal][modal name=\"\" title=\"\" size=\"\" background=\"\" border_color=\"\" show_footer=\"\" class=\"\" id=\"\"][/modal]', 'Home', '', 'inherit', 'closed', 'closed', '', '7-revision-v1', '', '', '2015-09-16 10:24:38', '2015-09-16 08:24:38', '', 7, 'http://localhost/assagaylodge/7-revision-v1/', 0, 'revision', '', 0),
(1081, 1, '2015-09-16 10:30:18', '2015-09-16 08:30:18', '[fullwidth background_color=\"#f0f0ed\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"110px\" padding_bottom=\"25px\" padding_left=\"0px\" padding_right=\"0px\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][recent_works layout=\"grid\" picture_size=\"auto\" boxed_text=\"boxed\" filters=\"yes\" columns=\"3\" column_spacing=\"12\" cat_slug=\"adventure,beaches,gateways,spa,wedding\" exclude_cats=\"\" number_posts=\"9\" offset=\"\" excerpt_length=\"35\" strip_html=\"yes\" carousel_layout=\"title_on_rollover\" scroll_items=\"\" autoplay=\"no\" show_nav=\"yes\" mouse_scroll=\"no\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" class=\"\" id=\"\"][/recent_works][/fullwidth][fullwidth background_color=\"#6666a4\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"80px\" padding_bottom=\"80px\" padding_left=\"0px\" padding_right=\"0px\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][counters_box columns=\"4\" color=\"#ffffff\" title_size=\"54\" icon_size=\"\" icon_top=\"\" body_color=\"#ffffff\" body_size=\"18\" border_color=\"#6666a4\" class=\"\" id=\"\"][counter_box value=\"97134\" delimiter=\",\" unit=\"\" unit_pos=\"suffix\" icon=\"\" direction=\"up\"]Happy Holiday Makers[/counter_box][counter_box value=\"192\" delimiter=\"\" unit=\"\" unit_pos=\"suffix\" icon=\"\" direction=\"up\"]Countries to Visit[/counter_box][counter_box value=\"24902\" delimiter=\",\" unit=\"\" unit_pos=\"suffix\" icon=\"\" direction=\"up\"]Miles of Earth to Explore[/counter_box][counter_box value=\"8710\" delimiter=\",\" unit=\"\" unit_pos=\"suffix\" icon=\"\" direction=\"up\"]Beaches to Discover[/counter_box][/counters_box][/fullwidth][fullwidth background_color=\"#6666a4\" background_image=\"http://theme-fusion.com/avada_demos_xml/travel/wp-content/uploads/2015/01/destination-parallax21.jpg\" background_parallax=\"fixed\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"center center\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"220px\" padding_bottom=\"220px\" padding_left=\"0px\" padding_right=\"0px\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][fusion_text]\r\n<h1 style=\"text-align: center;\"><span style=\"color: #ccffcc; font-family: Calibri;\">NEARBY ATTRACTIONS</span></h1>\r\n[/fusion_text][fusion_text]\r\n<h3 style=\"text-align: justify;\">We are situated on the 1000 Hills tourism route, on the edge of Hillcrest -a perfect place to adventure out  to any one of the many fantastic destinations and game reserves in KwaZulu Natal, i.e. the Majestic Drakensberg Mountain Range, Shongweni Nature Reserve, Nagle Dam, Durban &amp; Beach Front.</h3>\r\n<h3 style=\"text-align: justify;\">We are also the doorstep of one of KZN’s major horse riding venues namely, the Shongweni Horse Riding Club &amp; the Summerveld Horse Riding Academy, making Assagay Forest Lodge a perfect home away from home for the equestrian lovers.</h3>\r\n<h3 style=\"text-align: justify;\">Hiking , fishing and boating all add to the excitement found in this attractive area. Situated on the “Friendly N3″ running from Johannesburg  to Durban , Assagay Forest Lodge  is the ideal stop over, linking up with both the Wild Coast/transkei  route via Margate and the Dolphin Coast linking up with Mozambique and Swaziland\r\nSurrounding areas have attractions ranging from the sun kissed Durban beaches to trout-filled streams in the Drakensberg , caves adorned with ancient rock art and canoeing on the Dusi River.</h3>\r\n<h3 style=\"text-align: justify;\">Activities in the Area:\r\nPrivate nature reserves\r\n4×4 off-road adventures\r\nFossil sites\r\nFishing / canoeing on the Dusi River\r\nHistoric Museums\r\nAnglo Boer War Sites and Monuments\r\nHiking and horse trails in nearby mountain ranges\r\nBirdwatching\r\nRock art</h3>\r\n[/fusion_text][one_third last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"0\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"no-margin\" id=\"\"][separator style_type=\"none\" top_margin=\"\" bottom_margin=\"\" sep_color=\"\" border_size=\"\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"\" alignment=\"\" class=\"\" id=\"\"][/one_third][one_third last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"0\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][button link=\"/avada_demos/travel/make-a-reservation/\" color=\"default\" size=\"\" type=\"\" shape=\"\" target=\"_self\" title=\"\" gradient_colors=\"|\" gradient_hover_colors=\"|\" accent_color=\"\" accent_hover_color=\"\" bevel_color=\"\" border_width=\"0px\" icon=\"\" icon_position=\"left\" icon_divider=\"no\" modal=\"\" animation_type=\"0\" animation_direction=\"left\" animation_speed=\"1\" alignment=\"center\" class=\"\" id=\"\"]MAKE A RESERVATION[/button][/one_third][one_third last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"0\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][separator style_type=\"none\" top_margin=\"\" bottom_margin=\"\" sep_color=\"\" border_size=\"\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"\" alignment=\"\" class=\"\" id=\"\"][/one_third][/fullwidth][fullwidth background_color=\"\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"0px\" padding_bottom=\"-30px\" padding_left=\"0px\" padding_right=\"0px\" hundred_percent=\"yes\" equal_height_columns=\"yes\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][one_third last=\"no\" spacing=\"no\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"#6666a4\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"10%\" margin_top=\"\" margin_bottom=\"0px\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" class=\"\" id=\"\"][content_boxes layout=\"icon-with-title\" title_size=\"\" icon_circle=\"\" icon_size=\"\" icon_align=\"left\" columns=\"1\" margin_top=\"\" margin_bottom=\"0px\" class=\"\" id=\"\"][content_box title=\"Call Us\" icon=\"fa-phone\" backgroundcolor=\"\" iconcolor=\"#ffffff\" circlecolor=\"#6666a4\" circlebordercolor=\"#6666a4\" iconflip=\"\" iconrotate=\"\" iconspin=\"no\" image=\"\" image_width=\"35\" image_height=\"35\" link=\"\" linktext=\"\" linktarget=\"_self\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\"] <span style=\"color: #ffffff;\">Please call one of our specialist or pop into one of our travel shops and meet with an advisor in person. Alternatively, email us any questions and we will reply as quickly as possible. We look forward to being a small part of your next big adventure.</span>[/content_box][/content_boxes][/one_third][one_third last=\"no\" spacing=\"no\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"#7272b2\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"10%\" margin_top=\"\" margin_bottom=\"0px\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" class=\"\" id=\"\"][content_boxes layout=\"icon-with-title\" title_size=\"\" icon_circle=\"\" icon_size=\"\" icon_align=\"left\" columns=\"1\" margin_top=\"\" margin_bottom=\"0px\" class=\"\" id=\"\"][content_box title=\"Meet Us\" icon=\"fa-comments\" backgroundcolor=\"\" iconcolor=\"#ffffff\" circlecolor=\"#7272b2\" circlebordercolor=\"#7272b2\" iconflip=\"\" iconrotate=\"\" iconspin=\"no\" image=\"\" image_width=\"35\" image_height=\"35\" link=\"\" linktext=\"\" linktarget=\"_self\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\"] <span style=\"color: #ffffff;\">Please call one of our specialist or pop into one of our travel shops and meet with an advisor in person. Alternatively, email us any questions and we will reply as quickly as possible. We look forward to being a small part of your next big adventure.</span>[/content_box][/content_boxes][/one_third][one_third last=\"yes\" spacing=\"no\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"#6666a4\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"10%\" margin_top=\"\" margin_bottom=\"0px\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" class=\"\" id=\"\"][content_boxes layout=\"icon-with-title\" title_size=\"\" icon_circle=\"\" icon_size=\"\" icon_align=\"left\" columns=\"1\" margin_top=\"\" margin_bottom=\"0px\" class=\"\" id=\"\"][content_box title=\"Ask Us\" icon=\"fa-phone\" backgroundcolor=\"\" iconcolor=\"#ffffff\" circlecolor=\"#6666a4\" circlebordercolor=\"#6666a4\" iconflip=\"\" iconrotate=\"\" iconspin=\"no\" image=\"\" image_width=\"35\" image_height=\"35\" link=\"\" linktext=\"\" linktarget=\"_self\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\"] <span style=\"color: #ffffff;\">Please call one of our specialist or pop into one of our travel shops and meet with an advisor in person. Alternatively, email us any questions and we will reply as quickly as possible. We look forward to being a small part of your next big adventure.</span>[/content_box][/content_boxes][/one_third][/fullwidth]', 'Our Destinations', '', 'inherit', 'closed', 'closed', '', '13-revision-v1', '', '', '2015-09-16 10:30:18', '2015-09-16 08:30:18', '', 13, 'http://localhost/assagaylodge/13-revision-v1/', 0, 'revision', '', 0);
INSERT INTO `wp_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(1082, 1, '2015-09-16 10:34:37', '2015-09-16 08:34:37', '[fullwidth background_color=\"#f0f0ed\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"90px\" padding_bottom=\"0px\" padding_left=\"0px\" padding_right=\"0px\" hundred_percent=\"yes\" equal_height_columns=\"yes\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][one_half last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"http://localhost/assagaylodge/wp-content/uploads/2015/01/DSC01554-e1442325082893.jpg\" background_repeat=\"no-repeat\" background_position=\"center center\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" class=\"\" id=\"\"][/one_half][one_half last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"30px\" margin_top=\"\" margin_bottom=\"0px\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" class=\"special\" id=\"\"][fusion_text]\r\n<h1 style=\"text-align: justify;\">5 BEDROOM FAMILY LODGE</h1>\r\n<h3 style=\"text-align: justify;\">A Four Season Lodge, because there’s Always Something to Celebrate… We offer comfort, relaxation and exceptional service right in the heart of 1000 Hills. Sleeps 10 From R450p/p  R2995 complete. The Forest, the Gardens, the Atmosphere all speak to  Rest  &amp; Relaxation.</h3>\r\n[/fusion_text][separator style_type=\"single\" top_margin=\"0\" bottom_margin=\"30\" sep_color=\"#000000\" border_size=\"\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"170px\" alignment=\"left\" class=\"separator-left\" id=\"\"][modal name=\"rates\" title=\"2015 Rates\" size=\"large\" background=\"\" border_color=\"\" show_footer=\"yes\" class=\"\" id=\"\"]\r\n\r\nALL PRICES INCLUDE VAT\r\n<h3>Full House Self-Catering (Max 10 persons): <strong>R2950</strong> per night (R295 per person)</h3>\r\n<h3>Self-Catering:</h3>\r\n<strong>Weekdays (Monday, Tuesday, Wednesday or Thursday):</strong>\r\n\r\nSingle Private Room <strong>R595</strong> per person per night\r\nSharing <strong>R395</strong> per person per night\r\n\r\n<strong>Weekends (Friday, Saturday, Sunday):</strong>\r\n\r\nSingle Private Room <strong>R645</strong> per person per night\r\nSharing <strong>R445</strong> per person per night\r\n<h3>Breakfast Optional:</h3>\r\nContinental<strong> R55</strong> per person\r\nFull English <strong>R95</strong> per person\r\n<h3>Lodge &amp; Room Servicing Optional: <strong>R195 </strong>per day</h3>\r\n\r\n<hr />\r\n\r\n<h3>Specials</h3>\r\nWeekdays: Book any 3 weekdays, Monday, Tuesday, Wednesday or Thursday, and only pay for 2 days.\r\n\r\n15% Discount. Arrive Friday Depart Sunday.\r\n\r\n[/modal][button link=\"\" color=\"darkgreen\" size=\"\" type=\"\" shape=\"\" target=\"_self\" title=\"\" gradient_colors=\"|\" gradient_hover_colors=\"|\" accent_color=\"\" accent_hover_color=\"\" bevel_color=\"\" border_width=\"1px\" icon=\"\" icon_position=\"left\" icon_divider=\"no\" modal=\"rates\" animation_type=\"0\" animation_direction=\"left\" animation_speed=\"1\" alignment=\"\" class=\"\" id=\"\"]2015 RATES[/button][/one_half][/fullwidth][fullwidth background_color=\"#f0f0ed\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"20\" padding_bottom=\"20\" padding_left=\"0px\" padding_right=\"0px\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][one_half last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][fusion_text]\r\n<h3 style=\"text-align: justify;\">Set in the rolling peaks and valleys of a thousand hills surrounded by a canopy of indigenous trees  , you will find that horses still have right of way , we  certainly offer the best of both worlds , farm and charm coupled with modern amenities that will have you feeling relaxed and rejuvenated.</h3>\r\n<h3 style=\"text-align: justify;\">We know that sometimes you are searching for a romantic getaway or maybe a few days away with old friends. Other times you are searching for a place to host a weekend, family reunion or a business retreat. In addition to nightly room rentals, our lodge is also available for meetings, retreats  and makes the perfect place for a wedding party to stay together and get ready for the big day. Regardless, with our five comfortable and cozy guest bedrooms , multiple garden spaces and hideaways, and a  large private deck  where you can take a nap or read a book we definitely have the room for you!</h3>\r\n[/fusion_text][/one_half][one_half last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][fusion_text]\r\n<h3 style=\"text-align: justify;\">Our lodge has been in our family for years and has recently been beautifully renovated. Five rooms all with en-suite showers, tea/coffee making facilities, MNet and satellite television (DSTV)  open Wi-Fi. Sumptuous meals are served on the bottom deck at the swimming pool. Barbecues, afternoon tea in the garden or picnic baskets  on request all add to the service that awaits you, Our lodge features a  50 foot high Apex ceiling, spacious living, dining and bar area including a fitted kitchenette  all adding to a sense of homey comfort.</h3>\r\n<h3 style=\"text-align: justify;\">Be lulled to sleep by the sound of the waterfall  and tinkling stream just outside your window , waking from a peaceful night\'s sleep in a pillow-top bed dressed in luxurious linens to coddle you in ultimate comfort.</h3>\r\n<h3 style=\"text-align: justify;\">Our property boasts many different species of birds and animals. We have a resident otter, a family of wild bush pigs,  a family of rock rabbits, porcupine, little blue duikers, a variety of different frogs and an abundance of bird life, including the occasional snakes that pass through!</h3>\r\n<h3 style=\"text-align: justify;\">Evenings are quiet and peaceful taking you far away from the business of city life. This is a unique and memorable country experience. We look forward to having you as a guest!</h3>\r\n[/fusion_text][/one_half][/fullwidth][fullwidth background_color=\"#f0f0ed\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"20\" padding_bottom=\"20\" padding_left=\"0px\" padding_right=\"0px\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][fusion_text]\r\n<h1 style=\"text-align: center;\">Gallery</h1>\r\n[/fusion_text][separator style_type=\"single\" top_margin=\"\" bottom_margin=\"40\" sep_color=\"#000000\" border_size=\"\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"170px\" alignment=\"\" class=\"\" id=\"\"][one_sixth last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][/one_sixth][two_third last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][fusion_text]\r\n<h3 style=\"text-align: justify;\">The Lodge is open, spacious, comfortable and homely. During hot summer days, sit and bask in the sun on the deck  with one of our  picnic specials. In winter, snuggle up with a good book or challenge one another to a friendly board game in the glassed nook area .</h3>\r\n[/fusion_text][/two_third][one_sixth last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][/one_sixth][/fullwidth][fullwidth background_color=\"#f0f0ed\" background_image=\"http://localhost/assagaylodge/wp-content/uploads/2015/01/Wood_Texture.jpg\" background_parallax=\"fixed\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"30\" padding_bottom=\"10\" padding_left=\"0\" padding_right=\"0\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][recent_works layout=\"grid\" picture_size=\"auto\" boxed_text=\"unboxed\" filters=\"no\" columns=\"3\" column_spacing=\"12\" cat_slug=\"the-lodge\" exclude_cats=\"\" number_posts=\"9\" offset=\"\" excerpt_length=\"35\" strip_html=\"yes\" carousel_layout=\"title_on_rollover\" scroll_items=\"\" autoplay=\"no\" show_nav=\"yes\" mouse_scroll=\"no\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" class=\"\" id=\"\"][/recent_works][/fullwidth][fullwidth background_color=\"#f0f0ed\" background_image=\"\" background_parallax=\"fixed\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"20\" padding_bottom=\"20\" padding_left=\"0px\" padding_right=\"0px\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][fusion_text]\r\n<h1 style=\"text-align: center;\">BEDROOMS</h1>\r\n[/fusion_text][separator style_type=\"single\" top_margin=\"\" bottom_margin=\"20\" sep_color=\"#000000\" border_size=\"\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"170px\" alignment=\"\" class=\"\" id=\"\"][one_sixth last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][/one_sixth][two_third last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][fusion_text]\r\n<h3 style=\"text-align: justify;\">When it comes to our bedrooms we’re proud to say we offer something a little more special. One of five  lovingly and tastefully decorated guest rooms. Soft gray decor soothes the senses providing a peaceful, blissfully comfortable rest from your travels and hectic lives.</h3>\r\n<h3 style=\"text-align: justify;\">Our  bedrooms are spacious, clean, comfortable all en-suite, equipped with either king size or queen size beds. Each room sleeps two guests. The rooms have high ceilings, wall heaters &amp; ceiling fans. Beds all have electric blankets in Winter, 100% cotton percale sheets and thick hyper allergenic microfiber duvets and pillows. All guest rooms are cleaned with organic and green products. Amenities include hairdryers in each room. Three rooms feature King-sized beds  of which two can be  split into two single beds. Two  rooms can therefore be changed into a twin room upon request. Two rooms feature a Queen-sized double bed. These beds cannot be split into twin beds.</h3>\r\n[/fusion_text][/two_third][one_sixth last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][/one_sixth][/fullwidth][fullwidth background_color=\"\" background_image=\"http://localhost/assagaylodge/wp-content/uploads/2015/01/DSC01516-1148-x-764.jpg\" background_parallax=\"fixed\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"center center\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"20\" padding_bottom=\"20\" padding_left=\"0\" padding_right=\"0\" hundred_percent=\"no\" equal_height_columns=\"yes\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][recent_works layout=\"grid\" picture_size=\"auto\" boxed_text=\"unboxed\" filters=\"no\" columns=\"3\" column_spacing=\"12\" cat_slug=\"bedrooms\" exclude_cats=\"\" number_posts=\"6\" offset=\"\" excerpt_length=\"35\" strip_html=\"yes\" carousel_layout=\"title_on_rollover\" scroll_items=\"\" autoplay=\"no\" show_nav=\"yes\" mouse_scroll=\"no\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" class=\"\" id=\"\"][/recent_works][/fullwidth][fullwidth background_color=\"#f0f0ed\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"20\" padding_bottom=\"20\" padding_left=\"0\" padding_right=\"0\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][fusion_text]\r\n<h1 style=\"text-align: center;\">GARDENS</h1>\r\n[/fusion_text][separator style_type=\"single\" top_margin=\"\" bottom_margin=\"20\" sep_color=\"#000000\" border_size=\"\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"170px\" alignment=\"\" class=\"\" id=\"\"][one_sixth last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][/one_sixth][two_third last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][fusion_text]\r\n<h3 style=\"text-align: justify;\">The garden is large and offers many secluded spots to lose yourself in a book with a glass of wine underneath the shade of a tree, listening to the sounds of the birds and smelling the beautiful flowers.</h3>\r\n[/fusion_text][/two_third][one_sixth last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][/one_sixth][recent_works layout=\"grid\" picture_size=\"auto\" boxed_text=\"boxed\" filters=\"no\" columns=\"3\" column_spacing=\"12\" cat_slug=\"gardens\" exclude_cats=\"\" number_posts=\"9\" offset=\"\" excerpt_length=\"35\" strip_html=\"yes\" carousel_layout=\"title_on_rollover\" scroll_items=\"\" autoplay=\"no\" show_nav=\"yes\" mouse_scroll=\"no\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" class=\"\" id=\"\"][/recent_works][/fullwidth][fullwidth background_color=\"#ffffff\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"65px\" padding_bottom=\"65px\" padding_left=\"0px\" padding_right=\"0px\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][button link=\"http://localhost/assagaylodge/book-now/\" color=\"default\" size=\"xlarge\" type=\"3d\" shape=\"round\" target=\"_self\" title=\"\" gradient_colors=\"#f0f0ed|#f0f0ed\" gradient_hover_colors=\"#6666a4|#6666a4\" accent_color=\"#ffffff\" accent_hover_color=\"#ffffff\" bevel_color=\"\" border_width=\"0px\" icon=\"\" icon_position=\"left\" icon_divider=\"no\" modal=\"\" animation_type=\"0\" animation_direction=\"left\" animation_speed=\"1\" alignment=\"center\" class=\"\" id=\"\"]Make A Reservation Enquiry[/button][/fullwidth]', 'Home', '', 'inherit', 'closed', 'closed', '', '7-revision-v1', '', '', '2015-09-16 10:34:37', '2015-09-16 08:34:37', '', 7, 'http://localhost/assagaylodge/7-revision-v1/', 0, 'revision', '', 0),
(1083, 1, '2015-09-16 11:18:33', '2015-09-16 09:18:33', '[fullwidth background_color=\"#6666a4\" background_image=\"http://theme-fusion.com/avada_demos_xml/travel/wp-content/uploads/2015/01/destination-parallax21.jpg\" background_parallax=\"fixed\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"center center\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"220px\" padding_bottom=\"220px\" padding_left=\"0px\" padding_right=\"0px\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][fusion_text]\r\n<h1 style=\"text-align: center;\"><span style=\"color: #ccffcc; font-family: Calibri;\">NEARBY ATTRACTIONS</span></h1>\r\n[/fusion_text][fusion_text]\r\n<h3 style=\"text-align: justify;\"><span style=\"color: #ccffcc;\">We are situated on the 1000 Hills tourism route, on the edge of Hillcrest -a perfect place to adventure out  to any one of the many fantastic destinations and game reserves in KwaZulu Natal, i.e. the Majestic Drakensberg Mountain Range, Shongweni Nature Reserve, Nagle Dam, Durban &amp; Beach Front.</span></h3>\r\n<h3 style=\"text-align: justify;\"><span style=\"color: #ccffcc;\">We are also the doorstep of one of KZN’s major horse riding venues namely, the Shongweni Horse Riding Club &amp; the Summerveld Horse Riding Academy, making Assagay Forest Lodge a perfect home away from home for the equestrian lovers.</span></h3>\r\n<h3 style=\"text-align: justify;\"><span style=\"color: #ccffcc;\">Hiking , fishing and boating all add to the excitement found in this attractive area. Situated on the “Friendly N3″ running from Johannesburg  to Durban , Assagay Forest Lodge  is the ideal stop over, linking up with both the Wild Coast/transkei  route via Margate and the Dolphin Coast linking up with Mozambique and Swaziland</span>\r\n<span style=\"color: #ccffcc;\"> Surrounding areas have attractions ranging from the sun kissed Durban beaches to trout-filled streams in the Drakensberg , caves adorned with ancient rock art and canoeing on the Dusi River.</span></h3>\r\n<h3 style=\"text-align: justify;\"><span style=\"color: #ccffcc;\">Activities in the Area:</span>\r\n<span style=\"color: #ccffcc;\"> Private nature reserves</span>\r\n<span style=\"color: #ccffcc;\"> 4×4 off-road adventures</span>\r\n<span style=\"color: #ccffcc;\"> Fossil sites</span>\r\n<span style=\"color: #ccffcc;\"> Fishing / canoeing on the Dusi River</span>\r\n<span style=\"color: #ccffcc;\"> Historic Museums</span>\r\n<span style=\"color: #ccffcc;\"> Anglo Boer War Sites and Monuments</span>\r\n<span style=\"color: #ccffcc;\"> Hiking and horse trails in nearby mountain ranges</span>\r\n<span style=\"color: #ccffcc;\"> Birdwatching</span>\r\n<span style=\"color: #ccffcc;\"> Rock art</span></h3>\r\n[/fusion_text][one_third last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"0\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"no-margin\" id=\"\"][separator style_type=\"none\" top_margin=\"\" bottom_margin=\"\" sep_color=\"\" border_size=\"\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"\" alignment=\"\" class=\"\" id=\"\"][/one_third][one_third last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"0\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][button link=\"/avada_demos/travel/make-a-reservation/\" color=\"default\" size=\"\" type=\"\" shape=\"\" target=\"_self\" title=\"\" gradient_colors=\"|\" gradient_hover_colors=\"|\" accent_color=\"\" accent_hover_color=\"\" bevel_color=\"\" border_width=\"0px\" icon=\"\" icon_position=\"left\" icon_divider=\"no\" modal=\"\" animation_type=\"0\" animation_direction=\"left\" animation_speed=\"1\" alignment=\"center\" class=\"\" id=\"\"]MAKE A RESERVATION[/button][/one_third][one_third last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"0\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][separator style_type=\"none\" top_margin=\"\" bottom_margin=\"\" sep_color=\"\" border_size=\"\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"\" alignment=\"\" class=\"\" id=\"\"][/one_third][/fullwidth][fullwidth background_color=\"\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"0px\" padding_bottom=\"-30px\" padding_left=\"0px\" padding_right=\"0px\" hundred_percent=\"yes\" equal_height_columns=\"yes\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][one_third last=\"no\" spacing=\"no\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"#6666a4\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"10%\" margin_top=\"\" margin_bottom=\"0px\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" class=\"\" id=\"\"][content_boxes layout=\"icon-with-title\" title_size=\"\" icon_circle=\"\" icon_size=\"\" icon_align=\"left\" columns=\"1\" margin_top=\"\" margin_bottom=\"0px\" class=\"\" id=\"\"][content_box title=\"Call Us\" icon=\"fa-phone\" backgroundcolor=\"\" iconcolor=\"#ffffff\" circlecolor=\"#6666a4\" circlebordercolor=\"#6666a4\" iconflip=\"\" iconrotate=\"\" iconspin=\"no\" image=\"\" image_width=\"35\" image_height=\"35\" link=\"\" linktext=\"\" linktarget=\"_self\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\"] <span style=\"color: #ffffff;\">Please call one of our specialist or pop into one of our travel shops and meet with an advisor in person. Alternatively, email us any questions and we will reply as quickly as possible. We look forward to being a small part of your next big adventure.</span>[/content_box][/content_boxes][/one_third][one_third last=\"no\" spacing=\"no\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"#7272b2\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"10%\" margin_top=\"\" margin_bottom=\"0px\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" class=\"\" id=\"\"][content_boxes layout=\"icon-with-title\" title_size=\"\" icon_circle=\"\" icon_size=\"\" icon_align=\"left\" columns=\"1\" margin_top=\"\" margin_bottom=\"0px\" class=\"\" id=\"\"][content_box title=\"Meet Us\" icon=\"fa-comments\" backgroundcolor=\"\" iconcolor=\"#ffffff\" circlecolor=\"#7272b2\" circlebordercolor=\"#7272b2\" iconflip=\"\" iconrotate=\"\" iconspin=\"no\" image=\"\" image_width=\"35\" image_height=\"35\" link=\"\" linktext=\"\" linktarget=\"_self\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\"] <span style=\"color: #ffffff;\">Please call one of our specialist or pop into one of our travel shops and meet with an advisor in person. Alternatively, email us any questions and we will reply as quickly as possible. We look forward to being a small part of your next big adventure.</span>[/content_box][/content_boxes][/one_third][one_third last=\"yes\" spacing=\"no\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"#6666a4\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"10%\" margin_top=\"\" margin_bottom=\"0px\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" class=\"\" id=\"\"][content_boxes layout=\"icon-with-title\" title_size=\"\" icon_circle=\"\" icon_size=\"\" icon_align=\"left\" columns=\"1\" margin_top=\"\" margin_bottom=\"0px\" class=\"\" id=\"\"][content_box title=\"Ask Us\" icon=\"fa-phone\" backgroundcolor=\"\" iconcolor=\"#ffffff\" circlecolor=\"#6666a4\" circlebordercolor=\"#6666a4\" iconflip=\"\" iconrotate=\"\" iconspin=\"no\" image=\"\" image_width=\"35\" image_height=\"35\" link=\"\" linktext=\"\" linktarget=\"_self\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\"] <span style=\"color: #ffffff;\">Please call one of our specialist or pop into one of our travel shops and meet with an advisor in person. Alternatively, email us any questions and we will reply as quickly as possible. We look forward to being a small part of your next big adventure.</span>[/content_box][/content_boxes][/one_third][/fullwidth]', 'Our Destinations', '', 'inherit', 'closed', 'closed', '', '13-revision-v1', '', '', '2015-09-16 11:18:33', '2015-09-16 09:18:33', '', 13, 'http://localhost/assagaylodge/13-revision-v1/', 0, 'revision', '', 0),
(1084, 1, '2015-09-18 09:17:53', '2015-09-18 07:17:53', '[fullwidth background_color=\"\" background_image=\"http://localhost/assagaylodge/wp-content/uploads/2015/01/about-parallax11.jpg\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"center center\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"20\" padding_bottom=\"20\" padding_left=\"0\" padding_right=\"0\" hundred_percent=\"yes\" equal_height_columns=\"yes\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][one_sixth last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][modal name=\"rates\" title=\"2015 Rates\" size=\"large\" background=\"\" border_color=\"\" show_footer=\"yes\" class=\"\" id=\"\"]\r\n\r\nALL PRICES INCLUDE VAT\r\n<h3>Full House Self-Catering (Max 10 persons): <strong>R2950</strong> per night (R295 per person)</h3>\r\n<h3>Self-Catering:</h3>\r\n<strong>Weekdays (Monday, Tuesday, Wednesday or Thursday):</strong>\r\n\r\nSingle Private Room <strong>R595</strong> per person per night\r\nSharing <strong>R395</strong> per person per night\r\n\r\n<strong>Weekends (Friday, Saturday, Sunday):</strong>\r\n\r\nSingle Private Room <strong>R645</strong> per person per night\r\nSharing <strong>R445</strong> per person per night\r\n<h3>Breakfast Optional:</h3>\r\nContinental<strong> R55</strong> per person\r\nFull English <strong>R95</strong> per person\r\n<h3>Lodge &amp; Room Servicing Optional: <strong>R195 </strong>per day</h3>\r\n\r\n<hr />\r\n\r\n<h3>Specials</h3>\r\nWeekdays: Book any 3 weekdays, Monday, Tuesday, Wednesday or Thursday, and only pay for 2 days.\r\n\r\n15% Discount. Arrive Friday Depart Sunday.\r\n\r\n[/modal][button link=\"\" color=\"green\" size=\"medium\" type=\"\" shape=\"\" target=\"_self\" title=\"\" gradient_colors=\"|\" gradient_hover_colors=\"|\" accent_color=\"\" accent_hover_color=\"\" bevel_color=\"\" border_width=\"1px\" icon=\"\" icon_position=\"left\" icon_divider=\"no\" modal=\"rates\" animation_type=\"0\" animation_direction=\"left\" animation_speed=\"1\" alignment=\"center\" class=\"\" id=\"\"]2015 Rates[/button][/one_sixth][two_third last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][fusion_text][easy_form booknow style=\"none\" submit=\"Reservation successfully sent\" subsubmit=\"Please continue.\" credit=\"Reservation complete\" subcredit=\"You\'ll receive an email with the reservations details\" resourcename=\"Room\" price=\"1\" pers=\"1\" resource=\"854\"][/fusion_text][/two_third][one_sixth last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][/one_sixth][/fullwidth][fullwidth background_color=\"\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding_top=\"20\" padding_bottom=\"20\" padding_left=\"0\" padding_right=\"0\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][recent_works layout=\"carousel\" picture_size=\"fixed\" boxed_text=\"unboxed\" filters=\"yes\" columns=\"3\" column_spacing=\"12\" cat_slug=\"\" exclude_cats=\"\" number_posts=\"8\" offset=\"\" excerpt_length=\"35\" strip_html=\"yes\" carousel_layout=\"title_on_rollover\" scroll_items=\"\" autoplay=\"no\" show_nav=\"yes\" mouse_scroll=\"no\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][/recent_works][/fullwidth]', 'Book Now', '', 'inherit', 'closed', 'closed', '', '855-revision-v1', '', '', '2015-09-18 09:17:53', '2015-09-18 07:17:53', '', 855, 'http://localhost/assagaylodge/855-revision-v1/', 0, 'revision', '', 0),
(1085, 1, '2015-09-18 09:20:39', '2015-09-18 07:20:39', '[fullwidth background_color=\"\" background_image=\"http://localhost/assagaylodge/wp-content/uploads/2015/01/about-parallax11.jpg\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"center center\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"20\" padding_bottom=\"20\" padding_left=\"0\" padding_right=\"0\" hundred_percent=\"yes\" equal_height_columns=\"yes\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][one_sixth last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][modal name=\"rates\" title=\"2015 Rates\" size=\"large\" background=\"\" border_color=\"\" show_footer=\"yes\" class=\"\" id=\"\"]\r\n\r\nALL PRICES INCLUDE VAT\r\n<h3>Full House Self-Catering (Max 10 persons): <strong>R2950</strong> per night (R295 per person)</h3>\r\n<h3>Self-Catering:</h3>\r\n<strong>Weekdays (Monday, Tuesday, Wednesday or Thursday):</strong>\r\n\r\nSingle Private Room <strong>R595</strong> per person per night\r\nSharing <strong>R395</strong> per person per night\r\n\r\n<strong>Weekends (Friday, Saturday, Sunday):</strong>\r\n\r\nSingle Private Room <strong>R645</strong> per person per night\r\nSharing <strong>R445</strong> per person per night\r\n<h3>Breakfast Optional:</h3>\r\nContinental<strong> R55</strong> per person\r\nFull English <strong>R95</strong> per person\r\n<h3>Lodge &amp; Room Servicing Optional: <strong>R195 </strong>per day</h3>\r\n\r\n<hr />\r\n\r\n<h3>Specials</h3>\r\nWeekdays: Book any 3 weekdays, Monday, Tuesday, Wednesday or Thursday, and only pay for 2 days.\r\n\r\n15% Discount. Arrive Friday Depart Sunday.\r\n\r\n[/modal][button link=\"\" color=\"green\" size=\"medium\" type=\"\" shape=\"\" target=\"_self\" title=\"\" gradient_colors=\"|\" gradient_hover_colors=\"|\" accent_color=\"\" accent_hover_color=\"\" bevel_color=\"\" border_width=\"1px\" icon=\"\" icon_position=\"left\" icon_divider=\"no\" modal=\"rates\" animation_type=\"0\" animation_direction=\"left\" animation_speed=\"1\" alignment=\"center\" class=\"\" id=\"\"]2015 Rates[/button][/one_sixth][two_third last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][fusion_text][easy_form booknow style=\"none\" submit=\"Reservation successfully sent\" subsubmit=\"Please continue.\" credit=\"Reservation complete\" subcredit=\"You\'ll receive an email with the reservations details\" resourcename=\"Room\" price=\"1\" pers=\"1\" resource=\"854\"][/fusion_text][/two_third][one_sixth last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][/one_sixth][/fullwidth][fullwidth background_color=\"\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding_top=\"20\" padding_bottom=\"20\" padding_left=\"0\" padding_right=\"0\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][recent_works layout=\"grid\" picture_size=\"fixed\" boxed_text=\"unboxed\" filters=\"yes\" columns=\"4\" column_spacing=\"12\" cat_slug=\"\" exclude_cats=\"\" number_posts=\"8\" offset=\"\" excerpt_length=\"35\" strip_html=\"yes\" carousel_layout=\"title_on_rollover\" scroll_items=\"\" autoplay=\"no\" show_nav=\"yes\" mouse_scroll=\"no\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" class=\"\" id=\"\"][/recent_works][/fullwidth]', 'Book Now', '', 'inherit', 'closed', 'closed', '', '855-revision-v1', '', '', '2015-09-18 09:20:39', '2015-09-18 07:20:39', '', 855, 'http://localhost/assagaylodge/855-revision-v1/', 0, 'revision', '', 0),
(1087, 1, '2015-09-22 13:41:55', '2015-09-22 11:41:55', '', 'zulu', '', 'inherit', 'open', 'closed', '', 'zulu', '', '', '2015-09-22 13:41:55', '2015-09-22 11:41:55', '', 13, 'http://localhost/assagaylodge/wp-content/uploads/2015/01/zulu.jpg', 0, 'attachment', 'image/jpeg', 0);
INSERT INTO `wp_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(1088, 1, '2015-09-22 13:42:34', '2015-09-22 11:42:34', '[fullwidth background_color=\"#6666a4\" background_image=\"http://theme-fusion.com/avada_demos_xml/travel/wp-content/uploads/2015/01/destination-parallax21.jpg\" background_parallax=\"fixed\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"center center\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"220px\" padding_bottom=\"220px\" padding_left=\"0px\" padding_right=\"0px\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][fusion_text]\r\n<h1 style=\"text-align: center;\"><span style=\"color: #ccffcc; font-family: Calibri;\">NEARBY ATTRACTIONS</span></h1>\r\n[/fusion_text][fusion_text]\r\n<h3 style=\"text-align: justify;\"><span style=\"color: #ccffcc;\">We are situated on the 1000 Hills tourism route, on the edge of Hillcrest -a perfect place to adventure out  to any one of the many fantastic destinations and game reserves in KwaZulu Natal, i.e. the Majestic Drakensberg Mountain Range, Shongweni Nature Reserve, Nagle Dam, Durban &amp; Beach Front.</span></h3>\r\n<h3 style=\"text-align: justify;\"><span style=\"color: #ccffcc;\">We are also the doorstep of one of KZN’s major horse riding venues namely, the Shongweni Horse Riding Club &amp; the Summerveld Horse Riding Academy, making Assagay Forest Lodge a perfect home away from home for the equestrian lovers.</span></h3>\r\n<h3 style=\"text-align: justify;\"><span style=\"color: #ccffcc;\">Hiking , fishing and boating all add to the excitement found in this attractive area. Situated on the “Friendly N3″ running from Johannesburg  to Durban , Assagay Forest Lodge  is the ideal stop over, linking up with both the Wild Coast/transkei  route via Margate and the Dolphin Coast linking up with Mozambique and Swaziland</span>\r\n<span style=\"color: #ccffcc;\"> Surrounding areas have attractions ranging from the sun kissed Durban beaches to trout-filled streams in the Drakensberg , caves adorned with ancient rock art and canoeing on the Dusi River.</span></h3>\r\n<h3 style=\"text-align: justify;\"><span style=\"color: #ccffcc;\">Activities in the Area:</span>\r\n<span style=\"color: #ccffcc;\"> Private nature reserves</span>\r\n<span style=\"color: #ccffcc;\"> 4×4 off-road adventures</span>\r\n<span style=\"color: #ccffcc;\"> Fossil sites</span>\r\n<span style=\"color: #ccffcc;\"> Fishing / canoeing on the Dusi River</span>\r\n<span style=\"color: #ccffcc;\"> Historic Museums</span>\r\n<span style=\"color: #ccffcc;\"> Anglo Boer War Sites and Monuments</span>\r\n<span style=\"color: #ccffcc;\"> Hiking and horse trails in nearby mountain ranges</span>\r\n<span style=\"color: #ccffcc;\"> Birdwatching</span>\r\n<span style=\"color: #ccffcc;\"> Rock art</span></h3>\r\n[/fusion_text][one_third last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"0\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"no-margin\" id=\"\"][separator style_type=\"none\" top_margin=\"\" bottom_margin=\"\" sep_color=\"\" border_size=\"\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"\" alignment=\"\" class=\"\" id=\"\"][/one_third][one_third last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"0\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][button link=\"/avada_demos/travel/make-a-reservation/\" color=\"default\" size=\"\" type=\"\" shape=\"\" target=\"_self\" title=\"\" gradient_colors=\"|\" gradient_hover_colors=\"|\" accent_color=\"\" accent_hover_color=\"\" bevel_color=\"\" border_width=\"0px\" icon=\"\" icon_position=\"left\" icon_divider=\"no\" modal=\"\" animation_type=\"0\" animation_direction=\"left\" animation_speed=\"1\" alignment=\"center\" class=\"\" id=\"\"]MAKE A RESERVATION[/button][/one_third][one_third last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"0\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][separator style_type=\"none\" top_margin=\"\" bottom_margin=\"\" sep_color=\"\" border_size=\"\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"\" alignment=\"\" class=\"\" id=\"\"][/one_third][/fullwidth][fullwidth background_color=\"\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"0px\" padding_bottom=\"-30px\" padding_left=\"0px\" padding_right=\"0px\" hundred_percent=\"yes\" equal_height_columns=\"yes\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][one_third last=\"no\" spacing=\"no\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"#6666a4\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"10%\" margin_top=\"\" margin_bottom=\"0px\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" class=\"\" id=\"\"][imageframe lightbox=\"no\" lightbox_image=\"http://localhost/assagaylodge/wp-content/uploads/2015/01/zulu.jpg\" style_type=\"none\" bordercolor=\"\" bordersize=\"0px\" borderradius=\"0\" stylecolor=\"\" align=\"none\" link=\"\" linktarget=\"_self\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" hide_on_mobile=\"no\" class=\"\" id=\"\"] <img alt=\"\" />[/imageframe][content_boxes layout=\"icon-with-title\" title_size=\"\" icon_circle=\"\" icon_size=\"\" icon_align=\"left\" columns=\"1\" margin_top=\"\" margin_bottom=\"0px\" class=\"\" id=\"\"][content_box title=\"Call Us\" icon=\"fa-phone\" backgroundcolor=\"\" iconcolor=\"#ffffff\" circlecolor=\"#6666a4\" circlebordercolor=\"#6666a4\" iconflip=\"\" iconrotate=\"\" iconspin=\"no\" image=\"\" image_width=\"35\" image_height=\"35\" link=\"\" linktext=\"\" linktarget=\"_self\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\"] <span style=\"color: #ffffff;\">Please call one of our specialist or pop into one of our travel shops and meet with an advisor in person. Alternatively, email us any questions and we will reply as quickly as possible. We look forward to being a small part of your next big adventure.</span>[/content_box][/content_boxes][/one_third][one_third last=\"no\" spacing=\"no\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"#7272b2\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"10%\" margin_top=\"\" margin_bottom=\"0px\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" class=\"\" id=\"\"][content_boxes layout=\"icon-with-title\" title_size=\"\" icon_circle=\"\" icon_size=\"\" icon_align=\"left\" columns=\"1\" margin_top=\"\" margin_bottom=\"0px\" class=\"\" id=\"\"][content_box title=\"Meet Us\" icon=\"fa-comments\" backgroundcolor=\"\" iconcolor=\"#ffffff\" circlecolor=\"#7272b2\" circlebordercolor=\"#7272b2\" iconflip=\"\" iconrotate=\"\" iconspin=\"no\" image=\"\" image_width=\"35\" image_height=\"35\" link=\"\" linktext=\"\" linktarget=\"_self\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\"] <span style=\"color: #ffffff;\">Please call one of our specialist or pop into one of our travel shops and meet with an advisor in person. Alternatively, email us any questions and we will reply as quickly as possible. We look forward to being a small part of your next big adventure.</span>[/content_box][/content_boxes][/one_third][one_third last=\"yes\" spacing=\"no\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"#6666a4\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"10%\" margin_top=\"\" margin_bottom=\"0px\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" class=\"\" id=\"\"][content_boxes layout=\"icon-with-title\" title_size=\"\" icon_circle=\"\" icon_size=\"\" icon_align=\"left\" columns=\"1\" margin_top=\"\" margin_bottom=\"0px\" class=\"\" id=\"\"][content_box title=\"Ask Us\" icon=\"fa-phone\" backgroundcolor=\"\" iconcolor=\"#ffffff\" circlecolor=\"#6666a4\" circlebordercolor=\"#6666a4\" iconflip=\"\" iconrotate=\"\" iconspin=\"no\" image=\"\" image_width=\"35\" image_height=\"35\" link=\"\" linktext=\"\" linktarget=\"_self\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\"] <span style=\"color: #ffffff;\">Please call one of our specialist or pop into one of our travel shops and meet with an advisor in person. Alternatively, email us any questions and we will reply as quickly as possible. We look forward to being a small part of your next big adventure.</span>[/content_box][/content_boxes][/one_third][/fullwidth]', 'Our Destinations', '', 'inherit', 'closed', 'closed', '', '13-revision-v1', '', '', '2015-09-22 13:42:34', '2015-09-22 11:42:34', '', 13, 'http://localhost/assagaylodge/13-revision-v1/', 0, 'revision', '', 0),
(1089, 1, '2015-09-22 13:44:29', '2015-09-22 11:44:29', '[fullwidth background_color=\"#6666a4\" background_image=\"http://theme-fusion.com/avada_demos_xml/travel/wp-content/uploads/2015/01/destination-parallax21.jpg\" background_parallax=\"fixed\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"center center\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"220px\" padding_bottom=\"220px\" padding_left=\"0px\" padding_right=\"0px\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][fusion_text]\r\n<h1 style=\"text-align: center;\"><span style=\"color: #ccffcc; font-family: Calibri;\">NEARBY ATTRACTIONS</span></h1>\r\n[/fusion_text][fusion_text]\r\n<h3 style=\"text-align: justify;\"><span style=\"color: #ccffcc;\">We are situated on the 1000 Hills tourism route, on the edge of Hillcrest -a perfect place to adventure out  to any one of the many fantastic destinations and game reserves in KwaZulu Natal, i.e. the Majestic Drakensberg Mountain Range, Shongweni Nature Reserve, Nagle Dam, Durban &amp; Beach Front.</span></h3>\r\n<h3 style=\"text-align: justify;\"><span style=\"color: #ccffcc;\">We are also the doorstep of one of KZN’s major horse riding venues namely, the Shongweni Horse Riding Club &amp; the Summerveld Horse Riding Academy, making Assagay Forest Lodge a perfect home away from home for the equestrian lovers.</span></h3>\r\n<h3 style=\"text-align: justify;\"><span style=\"color: #ccffcc;\">Hiking , fishing and boating all add to the excitement found in this attractive area. Situated on the “Friendly N3″ running from Johannesburg  to Durban , Assagay Forest Lodge  is the ideal stop over, linking up with both the Wild Coast/transkei  route via Margate and the Dolphin Coast linking up with Mozambique and Swaziland</span>\r\n<span style=\"color: #ccffcc;\"> Surrounding areas have attractions ranging from the sun kissed Durban beaches to trout-filled streams in the Drakensberg , caves adorned with ancient rock art and canoeing on the Dusi River.</span></h3>\r\n<h3 style=\"text-align: justify;\"><span style=\"color: #ccffcc;\">Activities in the Area:</span>\r\n<span style=\"color: #ccffcc;\"> Private nature reserves</span>\r\n<span style=\"color: #ccffcc;\"> 4×4 off-road adventures</span>\r\n<span style=\"color: #ccffcc;\"> Fossil sites</span>\r\n<span style=\"color: #ccffcc;\"> Fishing / canoeing on the Dusi River</span>\r\n<span style=\"color: #ccffcc;\"> Historic Museums</span>\r\n<span style=\"color: #ccffcc;\"> Anglo Boer War Sites and Monuments</span>\r\n<span style=\"color: #ccffcc;\"> Hiking and horse trails in nearby mountain ranges</span>\r\n<span style=\"color: #ccffcc;\"> Birdwatching</span>\r\n<span style=\"color: #ccffcc;\"> Rock art</span></h3>\r\n[/fusion_text][one_third last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"0\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"no-margin\" id=\"\"][separator style_type=\"none\" top_margin=\"\" bottom_margin=\"\" sep_color=\"\" border_size=\"\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"\" alignment=\"\" class=\"\" id=\"\"][/one_third][one_third last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"0\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][button link=\"/avada_demos/travel/make-a-reservation/\" color=\"default\" size=\"\" type=\"\" shape=\"\" target=\"_self\" title=\"\" gradient_colors=\"|\" gradient_hover_colors=\"|\" accent_color=\"\" accent_hover_color=\"\" bevel_color=\"\" border_width=\"0px\" icon=\"\" icon_position=\"left\" icon_divider=\"no\" modal=\"\" animation_type=\"0\" animation_direction=\"left\" animation_speed=\"1\" alignment=\"center\" class=\"\" id=\"\"]MAKE A RESERVATION[/button][/one_third][one_third last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"0\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][separator style_type=\"none\" top_margin=\"\" bottom_margin=\"\" sep_color=\"\" border_size=\"\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"\" alignment=\"\" class=\"\" id=\"\"][/one_third][/fullwidth][fullwidth background_color=\"\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"0px\" padding_bottom=\"-30px\" padding_left=\"0px\" padding_right=\"0px\" hundred_percent=\"yes\" equal_height_columns=\"yes\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][one_third last=\"no\" spacing=\"no\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"#6666a4\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"10%\" margin_top=\"\" margin_bottom=\"0px\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" class=\"\" id=\"\"][imageframe lightbox=\"no\" lightbox_image=\"http://localhost/assagaylodge/wp-content/uploads/2015/01/zulu.jpg\" style_type=\"none\" bordercolor=\"\" bordersize=\"0px\" borderradius=\"0\" stylecolor=\"\" align=\"none\" link=\"\" linktarget=\"_self\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" hide_on_mobile=\"no\" class=\"\" id=\"\"] <img src=\"http://localhost/assagaylodge/wp-content/uploads/2015/01/zulu.jpg\" alt=\"\" />[/imageframe][content_boxes layout=\"icon-with-title\" title_size=\"\" icon_circle=\"\" icon_size=\"\" icon_align=\"left\" columns=\"1\" margin_top=\"\" margin_bottom=\"0px\" class=\"\" id=\"\"][content_box title=\"Call Us\" icon=\"fa-phone\" backgroundcolor=\"\" iconcolor=\"#ffffff\" circlecolor=\"#6666a4\" circlebordercolor=\"#6666a4\" iconflip=\"\" iconrotate=\"\" iconspin=\"no\" image=\"\" image_width=\"35\" image_height=\"35\" link=\"\" linktext=\"\" linktarget=\"_self\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\"] <span style=\"color: #ffffff;\">Please call one of our specialist or pop into one of our travel shops and meet with an advisor in person. Alternatively, email us any questions and we will reply as quickly as possible. We look forward to being a small part of your next big adventure.</span>[/content_box][/content_boxes][/one_third][one_third last=\"no\" spacing=\"no\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"#7272b2\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"10%\" margin_top=\"\" margin_bottom=\"0px\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" class=\"\" id=\"\"][content_boxes layout=\"icon-with-title\" title_size=\"\" icon_circle=\"\" icon_size=\"\" icon_align=\"left\" columns=\"1\" margin_top=\"\" margin_bottom=\"0px\" class=\"\" id=\"\"][content_box title=\"Meet Us\" icon=\"fa-comments\" backgroundcolor=\"\" iconcolor=\"#ffffff\" circlecolor=\"#7272b2\" circlebordercolor=\"#7272b2\" iconflip=\"\" iconrotate=\"\" iconspin=\"no\" image=\"\" image_width=\"35\" image_height=\"35\" link=\"\" linktext=\"\" linktarget=\"_self\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\"] <span style=\"color: #ffffff;\">Please call one of our specialist or pop into one of our travel shops and meet with an advisor in person. Alternatively, email us any questions and we will reply as quickly as possible. We look forward to being a small part of your next big adventure.</span>[/content_box][/content_boxes][/one_third][one_third last=\"yes\" spacing=\"no\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"#6666a4\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"10%\" margin_top=\"\" margin_bottom=\"0px\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" class=\"\" id=\"\"][content_boxes layout=\"icon-with-title\" title_size=\"\" icon_circle=\"\" icon_size=\"\" icon_align=\"left\" columns=\"1\" margin_top=\"\" margin_bottom=\"0px\" class=\"\" id=\"\"][content_box title=\"Ask Us\" icon=\"fa-phone\" backgroundcolor=\"\" iconcolor=\"#ffffff\" circlecolor=\"#6666a4\" circlebordercolor=\"#6666a4\" iconflip=\"\" iconrotate=\"\" iconspin=\"no\" image=\"\" image_width=\"35\" image_height=\"35\" link=\"\" linktext=\"\" linktarget=\"_self\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\"] <span style=\"color: #ffffff;\">Please call one of our specialist or pop into one of our travel shops and meet with an advisor in person. Alternatively, email us any questions and we will reply as quickly as possible. We look forward to being a small part of your next big adventure.</span>[/content_box][/content_boxes][/one_third][/fullwidth]', 'Our Destinations', '', 'inherit', 'closed', 'closed', '', '13-revision-v1', '', '', '2015-09-22 13:44:29', '2015-09-22 11:44:29', '', 13, 'http://localhost/assagaylodge/13-revision-v1/', 0, 'revision', '', 0),
(1090, 1, '2015-09-22 13:46:56', '2015-09-22 11:46:56', '', 'Shongweni 1', '', 'inherit', 'open', 'closed', '', 'shongweni-1', '', '', '2015-09-22 13:46:56', '2015-09-22 11:46:56', '', 13, 'http://localhost/assagaylodge/wp-content/uploads/2015/01/Shongweni-1.jpg', 0, 'attachment', 'image/jpeg', 0),
(1091, 1, '2015-09-22 13:47:52', '2015-09-22 11:47:52', '', 'steam train', '', 'inherit', 'open', 'closed', '', 'steam-train', '', '', '2015-09-22 13:47:52', '2015-09-22 11:47:52', '', 13, 'http://localhost/assagaylodge/wp-content/uploads/2015/01/steam-train.png', 0, 'attachment', 'image/png', 0),
(1092, 1, '2015-09-22 13:50:42', '2015-09-22 11:50:42', '[fullwidth background_color=\"#6666a4\" background_image=\"http://theme-fusion.com/avada_demos_xml/travel/wp-content/uploads/2015/01/destination-parallax21.jpg\" background_parallax=\"fixed\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"center center\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"220px\" padding_bottom=\"220px\" padding_left=\"0px\" padding_right=\"0px\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][fusion_text]\r\n<h1 style=\"text-align: center;\"><span style=\"color: #ccffcc; font-family: Calibri;\">NEARBY ATTRACTIONS</span></h1>\r\n[/fusion_text][fusion_text]\r\n<h3 style=\"text-align: justify;\"><span style=\"color: #ccffcc;\">We are situated on the 1000 Hills tourism route, on the edge of Hillcrest -a perfect place to adventure out  to any one of the many fantastic destinations and game reserves in KwaZulu Natal, i.e. the Majestic Drakensberg Mountain Range, Shongweni Nature Reserve, Nagle Dam, Durban &amp; Beach Front.</span></h3>\r\n<h3 style=\"text-align: justify;\"><span style=\"color: #ccffcc;\">We are also the doorstep of one of KZN’s major horse riding venues namely, the Shongweni Horse Riding Club &amp; the Summerveld Horse Riding Academy, making Assagay Forest Lodge a perfect home away from home for the equestrian lovers.</span></h3>\r\n<h3 style=\"text-align: justify;\"><span style=\"color: #ccffcc;\">Hiking , fishing and boating all add to the excitement found in this attractive area. Situated on the “Friendly N3″ running from Johannesburg  to Durban , Assagay Forest Lodge  is the ideal stop over, linking up with both the Wild Coast/transkei  route via Margate and the Dolphin Coast linking up with Mozambique and Swaziland</span>\r\n<span style=\"color: #ccffcc;\"> Surrounding areas have attractions ranging from the sun kissed Durban beaches to trout-filled streams in the Drakensberg , caves adorned with ancient rock art and canoeing on the Dusi River.</span></h3>\r\n<h3 style=\"text-align: justify;\"><span style=\"color: #ccffcc;\">Activities in the Area:</span>\r\n<span style=\"color: #ccffcc;\"> Private nature reserves</span>\r\n<span style=\"color: #ccffcc;\"> 4×4 off-road adventures</span>\r\n<span style=\"color: #ccffcc;\"> Fossil sites</span>\r\n<span style=\"color: #ccffcc;\"> Fishing / canoeing on the Dusi River</span>\r\n<span style=\"color: #ccffcc;\"> Historic Museums</span>\r\n<span style=\"color: #ccffcc;\"> Anglo Boer War Sites and Monuments</span>\r\n<span style=\"color: #ccffcc;\"> Hiking and horse trails in nearby mountain ranges</span>\r\n<span style=\"color: #ccffcc;\"> Birdwatching</span>\r\n<span style=\"color: #ccffcc;\"> Rock art</span></h3>\r\n[/fusion_text][one_third last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"0\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"no-margin\" id=\"\"][separator style_type=\"none\" top_margin=\"\" bottom_margin=\"\" sep_color=\"\" border_size=\"\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"\" alignment=\"\" class=\"\" id=\"\"][/one_third][one_third last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"0\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][button link=\"/avada_demos/travel/make-a-reservation/\" color=\"default\" size=\"\" type=\"\" shape=\"\" target=\"_self\" title=\"\" gradient_colors=\"|\" gradient_hover_colors=\"|\" accent_color=\"\" accent_hover_color=\"\" bevel_color=\"\" border_width=\"0px\" icon=\"\" icon_position=\"left\" icon_divider=\"no\" modal=\"\" animation_type=\"0\" animation_direction=\"left\" animation_speed=\"1\" alignment=\"center\" class=\"\" id=\"\"]MAKE A RESERVATION[/button][/one_third][one_third last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"0\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][separator style_type=\"none\" top_margin=\"\" bottom_margin=\"\" sep_color=\"\" border_size=\"\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"\" alignment=\"\" class=\"\" id=\"\"][/one_third][/fullwidth][fullwidth background_color=\"\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"0px\" padding_bottom=\"-30px\" padding_left=\"0px\" padding_right=\"0px\" hundred_percent=\"yes\" equal_height_columns=\"yes\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][one_third last=\"no\" spacing=\"no\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"#6666a4\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"10%\" margin_top=\"\" margin_bottom=\"0px\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" class=\"\" id=\"\"][imageframe lightbox=\"no\" lightbox_image=\"http://localhost/assagaylodge/wp-content/uploads/2015/01/zulu.jpg\" style_type=\"none\" bordercolor=\"\" bordersize=\"0px\" borderradius=\"0\" stylecolor=\"\" align=\"none\" link=\"\" linktarget=\"_self\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" hide_on_mobile=\"no\" class=\"\" id=\"\"] <img src=\"http://localhost/assagaylodge/wp-content/uploads/2015/01/zulu.jpg\" alt=\"\" />[/imageframe][content_boxes layout=\"icon-with-title\" title_size=\"\" icon_circle=\"\" icon_size=\"\" icon_align=\"left\" columns=\"1\" margin_top=\"\" margin_bottom=\"0px\" class=\"\" id=\"\"][content_box title=\"Phezulu African Dancing\" icon=\"fa-phone\" backgroundcolor=\"\" iconcolor=\"#ffffff\" circlecolor=\"#6666a4\" circlebordercolor=\"#6666a4\" iconflip=\"\" iconrotate=\"\" iconspin=\"no\" image=\"\" image_width=\"35\" image_height=\"35\" link=\"\" linktext=\"\" linktarget=\"_self\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\"] <span style=\"color: #ffffff;\">Please call one of our specialist or pop into one of our travel shops and meet with an advisor in person. Alternatively, email us any questions and we will reply as quickly as possible. We look forward to being a small part of your next big adventure.</span>[/content_box][/content_boxes][/one_third][one_third last=\"no\" spacing=\"no\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"#7272b2\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"10%\" margin_top=\"\" margin_bottom=\"0px\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" class=\"\" id=\"\"][imageframe lightbox=\"no\" lightbox_image=\"http://localhost/assagaylodge/wp-content/uploads/2015/01/Shongweni-1.jpg\" style_type=\"none\" bordercolor=\"\" bordersize=\"0px\" borderradius=\"0\" stylecolor=\"\" align=\"none\" link=\"\" linktarget=\"_self\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" hide_on_mobile=\"no\" class=\"\" id=\"\"] <img src=\"http://localhost/assagaylodge/wp-content/uploads/2015/01/Shongweni-1.jpg\" alt=\"\" />[/imageframe][content_boxes layout=\"icon-with-title\" title_size=\"\" icon_circle=\"\" icon_size=\"\" icon_align=\"left\" columns=\"1\" margin_top=\"\" margin_bottom=\"0px\" class=\"\" id=\"\"][content_box title=\"Shongweni Equestrian Centre\" icon=\"fa-comments\" backgroundcolor=\"\" iconcolor=\"#ffffff\" circlecolor=\"#7272b2\" circlebordercolor=\"#7272b2\" iconflip=\"\" iconrotate=\"\" iconspin=\"no\" image=\"\" image_width=\"35\" image_height=\"35\" link=\"\" linktext=\"\" linktarget=\"_self\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\"] <span style=\"color: #ffffff;\">Please call one of our specialist or pop into one of our travel shops and meet with an advisor in person. Alternatively, email us any questions and we will reply as quickly as possible. We look forward to being a small part of your next big adventure.</span>[/content_box][/content_boxes][/one_third][one_third last=\"yes\" spacing=\"no\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"#6666a4\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"10%\" margin_top=\"\" margin_bottom=\"0px\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" class=\"\" id=\"\"][imageframe lightbox=\"no\" lightbox_image=\"http://localhost/assagaylodge/wp-content/uploads/2015/01/steam-train.png\" style_type=\"none\" bordercolor=\"\" bordersize=\"0px\" borderradius=\"0\" stylecolor=\"\" align=\"none\" link=\"\" linktarget=\"_self\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" hide_on_mobile=\"no\" class=\"\" id=\"\"] <img src=\"http://localhost/assagaylodge/wp-content/uploads/2015/01/steam-train.png\" alt=\"\" />[/imageframe][content_boxes layout=\"icon-with-title\" title_size=\"\" icon_circle=\"\" icon_size=\"\" icon_align=\"left\" columns=\"1\" margin_top=\"\" margin_bottom=\"0px\" class=\"\" id=\"\"][content_box title=\"Train Adventures\" icon=\"fa-phone\" backgroundcolor=\"\" iconcolor=\"#ffffff\" circlecolor=\"#6666a4\" circlebordercolor=\"#6666a4\" iconflip=\"\" iconrotate=\"\" iconspin=\"no\" image=\"\" image_width=\"35\" image_height=\"35\" link=\"\" linktext=\"\" linktarget=\"_self\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\"] <span style=\"color: #ffffff;\">Please call one of our specialist or pop into one of our travel shops and meet with an advisor in person. Alternatively, email us any questions and we will reply as quickly as possible. We look forward to being a small part of your next big adventure.</span>[/content_box][/content_boxes][/one_third][/fullwidth]', 'Our Destinations', '', 'inherit', 'closed', 'closed', '', '13-revision-v1', '', '', '2015-09-22 13:50:42', '2015-09-22 11:50:42', '', 13, 'http://localhost/assagaylodge/13-revision-v1/', 0, 'revision', '', 0),
(1093, 1, '2015-09-22 16:44:31', '2015-09-22 14:44:31', '', 'meander-gallery', '', 'inherit', 'open', 'closed', '', 'meander-gallery', '', '', '2015-09-22 16:44:31', '2015-09-22 14:44:31', '', 13, 'http://localhost/assagaylodge/wp-content/uploads/2015/01/meander-gallery.jpg', 0, 'attachment', 'image/jpeg', 0),
(1094, 1, '2015-09-22 16:45:30', '2015-09-22 14:45:30', '', 'Durban', '', 'inherit', 'open', 'closed', '', 'durban', '', '', '2015-09-22 16:45:30', '2015-09-22 14:45:30', '', 13, 'http://localhost/assagaylodge/wp-content/uploads/2015/01/Durban.jpg', 0, 'attachment', 'image/jpeg', 0),
(1095, 1, '2015-09-22 16:46:22', '2015-09-22 14:46:22', '', 'Mountains', '', 'inherit', 'open', 'closed', '', 'mountains', '', '', '2015-09-22 16:46:22', '2015-09-22 14:46:22', '', 13, 'http://localhost/assagaylodge/wp-content/uploads/2015/01/Mountains.jpg', 0, 'attachment', 'image/jpeg', 0),
(1096, 1, '2015-09-22 16:48:05', '2015-09-22 14:48:05', '', 'Karkloof Canopy', '', 'inherit', 'open', 'closed', '', 'karkloof-canopy', '', '', '2015-09-22 16:48:05', '2015-09-22 14:48:05', '', 13, 'http://localhost/assagaylodge/wp-content/uploads/2015/01/Karkloof-Canopy.jpg', 0, 'attachment', 'image/jpeg', 0),
(1097, 1, '2015-09-22 16:49:06', '2015-09-22 14:49:06', '', 'Tala-Phezulu', '', 'inherit', 'open', 'closed', '', 'tala-phezulu', '', '', '2015-09-22 16:49:06', '2015-09-22 14:49:06', '', 13, 'http://localhost/assagaylodge/wp-content/uploads/2015/01/Tala-Phezulu.jpg', 0, 'attachment', 'image/jpeg', 0),
(1098, 1, '2015-09-22 16:50:08', '2015-09-22 14:50:08', '', 'Shongweni Dam', '', 'inherit', 'open', 'closed', '', 'shongweni-dam', '', '', '2015-09-22 16:50:08', '2015-09-22 14:50:08', '', 13, 'http://localhost/assagaylodge/wp-content/uploads/2015/01/Shongweni-Dam.jpg', 0, 'attachment', 'image/jpeg', 0);
INSERT INTO `wp_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(1099, 1, '2015-09-22 16:51:50', '2015-09-22 14:51:50', '[fullwidth background_color=\"#6666a4\" background_image=\"http://theme-fusion.com/avada_demos_xml/travel/wp-content/uploads/2015/01/destination-parallax21.jpg\" background_parallax=\"fixed\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"center center\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"220px\" padding_bottom=\"220px\" padding_left=\"0px\" padding_right=\"0px\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][fusion_text]\r\n<h1 style=\"text-align: center;\"><span style=\"color: #ccffcc; font-family: Calibri;\">NEARBY ATTRACTIONS</span></h1>\r\n[/fusion_text][fusion_text]\r\n<h3 style=\"text-align: justify;\"><span style=\"color: #ccffcc;\">We are situated on the 1000 Hills tourism route, on the edge of Hillcrest -a perfect place to adventure out  to any one of the many fantastic destinations and game reserves in KwaZulu Natal, i.e. the Majestic Drakensberg Mountain Range, Shongweni Nature Reserve, Nagle Dam, Durban &amp; Beach Front.</span></h3>\r\n<h3 style=\"text-align: justify;\"><span style=\"color: #ccffcc;\">We are also the doorstep of one of KZN’s major horse riding venues namely, the Shongweni Horse Riding Club &amp; the Summerveld Horse Riding Academy, making Assagay Forest Lodge a perfect home away from home for the equestrian lovers.</span></h3>\r\n<h3 style=\"text-align: justify;\"><span style=\"color: #ccffcc;\">Hiking , fishing and boating all add to the excitement found in this attractive area. Situated on the “Friendly N3″ running from Johannesburg  to Durban , Assagay Forest Lodge  is the ideal stop over, linking up with both the Wild Coast/transkei  route via Margate and the Dolphin Coast linking up with Mozambique and Swaziland</span>\r\n<span style=\"color: #ccffcc;\"> Surrounding areas have attractions ranging from the sun kissed Durban beaches to trout-filled streams in the Drakensberg , caves adorned with ancient rock art and canoeing on the Dusi River.</span></h3>\r\n<h3 style=\"text-align: justify;\"><span style=\"color: #ccffcc;\">Activities in the Area:</span>\r\n<span style=\"color: #ccffcc;\"> Private nature reserves</span>\r\n<span style=\"color: #ccffcc;\"> 4×4 off-road adventures</span>\r\n<span style=\"color: #ccffcc;\"> Fossil sites</span>\r\n<span style=\"color: #ccffcc;\"> Fishing / canoeing on the Dusi River</span>\r\n<span style=\"color: #ccffcc;\"> Historic Museums</span>\r\n<span style=\"color: #ccffcc;\"> Anglo Boer War Sites and Monuments</span>\r\n<span style=\"color: #ccffcc;\"> Hiking and horse trails in nearby mountain ranges</span>\r\n<span style=\"color: #ccffcc;\"> Birdwatching</span>\r\n<span style=\"color: #ccffcc;\"> Rock art</span></h3>\r\n[/fusion_text][one_third last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"0\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"no-margin\" id=\"\"][separator style_type=\"none\" top_margin=\"\" bottom_margin=\"\" sep_color=\"\" border_size=\"\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"\" alignment=\"\" class=\"\" id=\"\"][/one_third][one_third last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"0\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][button link=\"/avada_demos/travel/make-a-reservation/\" color=\"default\" size=\"\"  type=\"\" shape=\"\" target=\"_self\" title=\"\" gradient_colors=\"|\" gradient_hover_colors=\"|\" accent_color=\"\" accent_hover_color=\"\" bevel_color=\"\" border_width=\"0px\" icon=\"\" icon_position=\"left\" icon_divider=\"no\" modal=\"\" animation_type=\"0\" animation_direction=\"left\" animation_speed=\"1\" alignment=\"center\" class=\"\" id=\"\"]MAKE A RESERVATION[/button][/one_third][one_third last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"0\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][separator style_type=\"none\" top_margin=\"\" bottom_margin=\"\" sep_color=\"\" border_size=\"\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"\" alignment=\"\" class=\"\" id=\"\"][/one_third][/fullwidth][fullwidth background_color=\"\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"0px\" padding_bottom=\"-30px\" padding_left=\"0px\" padding_right=\"0px\" hundred_percent=\"yes\" equal_height_columns=\"yes\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][one_third last=\"no\" spacing=\"no\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"#6666a4\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"10%\" margin_top=\"\" margin_bottom=\"0px\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" class=\"\" id=\"\"][imageframe lightbox=\"no\" lightbox_image=\"http://localhost/assagaylodge/wp-content/uploads/2015/01/zulu.jpg\" style_type=\"none\" bordercolor=\"\" bordersize=\"0px\" borderradius=\"0\" stylecolor=\"\" align=\"none\" link=\"\" linktarget=\"_self\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" hide_on_mobile=\"no\" class=\"\" id=\"\"] <img alt=\"\" src=\"http://localhost/assagaylodge/wp-content/uploads/2015/01/zulu.jpg\" />[/imageframe][content_boxes layout=\"icon-with-title\" title_size=\"\" icon_circle=\"\" icon_size=\"\" icon_align=\"left\" columns=\"1\" margin_top=\"\" margin_bottom=\"0px\" class=\"\" id=\"\"][content_box title=\"Phezulu African Dancing\" icon=\"fa-phone\" backgroundcolor=\"\" iconcolor=\"#ffffff\" circlecolor=\"#6666a4\" circlebordercolor=\"#6666a4\" iconflip=\"\" iconrotate=\"\" iconspin=\"no\" image=\"\" image_width=\"35\" image_height=\"35\" link=\"\" linktext=\"\" linktarget=\"_self\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\"]  <span style=\"color: #ffffff;\">Please call one of our specialist or pop into one of our travel shops and meet with an advisor in person. Alternatively, email us any questions and we will reply as quickly as possible. We look forward to being a small part of your next big adventure.</span>[/content_box][/content_boxes][/one_third][one_third last=\"no\" spacing=\"no\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"#7272b2\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"10%\" margin_top=\"\" margin_bottom=\"0px\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" class=\"\" id=\"\"][imageframe lightbox=\"no\" lightbox_image=\"http://localhost/assagaylodge/wp-content/uploads/2015/01/Shongweni-1.jpg\" style_type=\"none\" bordercolor=\"\" bordersize=\"0px\" borderradius=\"0\" stylecolor=\"\" align=\"none\" link=\"\" linktarget=\"_self\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" hide_on_mobile=\"no\" class=\"\" id=\"\"] <img alt=\"\" src=\"http://localhost/assagaylodge/wp-content/uploads/2015/01/Shongweni-1.jpg\" />[/imageframe][content_boxes layout=\"icon-with-title\" title_size=\"\" icon_circle=\"\" icon_size=\"\" icon_align=\"left\" columns=\"1\" margin_top=\"\" margin_bottom=\"0px\" class=\"\" id=\"\"][content_box title=\"Shongweni Equestrian Centre\" icon=\"fa-comments\" backgroundcolor=\"\" iconcolor=\"#ffffff\" circlecolor=\"#7272b2\" circlebordercolor=\"#7272b2\" iconflip=\"\" iconrotate=\"\" iconspin=\"no\" image=\"\" image_width=\"35\" image_height=\"35\" link=\"\" linktext=\"\" linktarget=\"_self\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\"]  <span style=\"color: #ffffff;\">Please call one of our specialist or pop into one of our travel shops and meet with an advisor in person. Alternatively, email us any questions and we will reply as quickly as possible. We look forward to being a small part of your next big adventure.</span>[/content_box][/content_boxes][/one_third][one_third last=\"yes\" spacing=\"no\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"#6666a4\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"10%\" margin_top=\"\" margin_bottom=\"0px\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" class=\"\" id=\"\"][imageframe lightbox=\"no\" lightbox_image=\"http://localhost/assagaylodge/wp-content/uploads/2015/01/steam-train.png\" style_type=\"none\" bordercolor=\"\" bordersize=\"0px\" borderradius=\"0\" stylecolor=\"\" align=\"none\" link=\"\" linktarget=\"_self\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" hide_on_mobile=\"no\" class=\"\" id=\"\"] <img alt=\"\" src=\"http://localhost/assagaylodge/wp-content/uploads/2015/01/steam-train.png\" />[/imageframe][content_boxes layout=\"icon-with-title\" title_size=\"\" icon_circle=\"\" icon_size=\"\" icon_align=\"left\" columns=\"1\" margin_top=\"\" margin_bottom=\"0px\" class=\"\" id=\"\"][content_box title=\"Train Adventures\" icon=\"fa-phone\" backgroundcolor=\"\" iconcolor=\"#ffffff\" circlecolor=\"#6666a4\" circlebordercolor=\"#6666a4\" iconflip=\"\" iconrotate=\"\" iconspin=\"no\" image=\"\" image_width=\"35\" image_height=\"35\" link=\"\" linktext=\"\" linktarget=\"_self\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\"]  <span style=\"color: #ffffff;\">Please call one of our specialist or pop into one of our travel shops and meet with an advisor in person. Alternatively, email us any questions and we will reply as quickly as possible. We look forward to being a small part of your next big adventure.</span>[/content_box][/content_boxes][/one_third][one_third last=\"no\" spacing=\"no\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"#6666a4\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"10%\" margin_top=\"\" margin_bottom=\"0px\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" class=\"\" id=\"\"][imageframe lightbox=\"no\" lightbox_image=\"http://localhost/assagaylodge/wp-content/uploads/2015/01/Karkloof-Canopy.jpg\" style_type=\"none\" bordercolor=\"\" bordersize=\"0px\" borderradius=\"0\" stylecolor=\"\" align=\"none\" link=\"\" linktarget=\"_self\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" hide_on_mobile=\"no\" class=\"\" id=\"\"] <img alt=\"\" src=\"http://localhost/assagaylodge/wp-content/uploads/2015/01/Karkloof-Canopy.jpg\" />[/imageframe][content_boxes layout=\"icon-with-title\" title_size=\"\" icon_circle=\"\" icon_size=\"\" icon_align=\"left\" columns=\"1\" margin_top=\"\" margin_bottom=\"0px\" class=\"\" id=\"\"][content_box title=\"Train Adventures\" icon=\"fa-phone\" backgroundcolor=\"\" iconcolor=\"#ffffff\" circlecolor=\"#6666a4\" circlebordercolor=\"#6666a4\" iconflip=\"\" iconrotate=\"\" iconspin=\"no\" image=\"\" image_width=\"35\" image_height=\"35\" link=\"\" linktext=\"\" linktarget=\"_self\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\"]  <span style=\"color: #ffffff;\">Please call one of our specialist or pop into one of our travel shops and meet with an advisor in person. Alternatively, email us any questions and we will reply as quickly as possible. We look forward to being a small part of your next big adventure.</span>[/content_box][/content_boxes][/one_third][one_third last=\"no\" spacing=\"no\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"#6666a4\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"10%\" margin_top=\"\" margin_bottom=\"0px\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" class=\"\" id=\"\"][imageframe lightbox=\"no\" lightbox_image=\"http://localhost/assagaylodge/wp-content/uploads/2015/01/Tala-Phezulu.jpg\" style_type=\"none\" bordercolor=\"\" bordersize=\"0px\" borderradius=\"0\" stylecolor=\"\" align=\"none\" link=\"\" linktarget=\"_self\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" hide_on_mobile=\"no\" class=\"\" id=\"\"] <img alt=\"\" src=\"http://localhost/assagaylodge/wp-content/uploads/2015/01/Tala-Phezulu.jpg\" />[/imageframe][content_boxes layout=\"icon-with-title\" title_size=\"\" icon_circle=\"\" icon_size=\"\" icon_align=\"left\" columns=\"1\" margin_top=\"\" margin_bottom=\"0px\" class=\"\" id=\"\"][content_box title=\"Train Adventures\" icon=\"fa-phone\" backgroundcolor=\"\" iconcolor=\"#ffffff\" circlecolor=\"#6666a4\" circlebordercolor=\"#6666a4\" iconflip=\"\" iconrotate=\"\" iconspin=\"no\" image=\"\" image_width=\"35\" image_height=\"35\" link=\"\" linktext=\"\" linktarget=\"_self\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\"]  <span style=\"color: #ffffff;\">Please call one of our specialist or pop into one of our travel shops and meet with an advisor in person. Alternatively, email us any questions and we will reply as quickly as possible. We look forward to being a small part of your next big adventure.</span>[/content_box][/content_boxes][/one_third][one_third last=\"yes\" spacing=\"no\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"#6666a4\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"10%\" margin_top=\"\" margin_bottom=\"0px\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" class=\"\" id=\"\"][imageframe lightbox=\"no\" lightbox_image=\"http://localhost/assagaylodge/wp-content/uploads/2015/01/Shongweni-Dam.jpg\" style_type=\"none\" bordercolor=\"\" bordersize=\"0px\" borderradius=\"0\" stylecolor=\"\" align=\"none\" link=\"\" linktarget=\"_self\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" hide_on_mobile=\"no\" class=\"\" id=\"\"] <img alt=\"\" src=\"http://localhost/assagaylodge/wp-content/uploads/2015/01/Shongweni-Dam.jpg\" />[/imageframe][content_boxes layout=\"icon-with-title\" title_size=\"\" icon_circle=\"\" icon_size=\"\" icon_align=\"left\" columns=\"1\" margin_top=\"\" margin_bottom=\"0px\" class=\"\" id=\"\"][content_box title=\"Train Adventures\" icon=\"fa-phone\" backgroundcolor=\"\" iconcolor=\"#ffffff\" circlecolor=\"#6666a4\" circlebordercolor=\"#6666a4\" iconflip=\"\" iconrotate=\"\" iconspin=\"no\" image=\"\" image_width=\"35\" image_height=\"35\" link=\"\" linktext=\"\" linktarget=\"_self\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\"]  <span style=\"color: #ffffff;\">Please call one of our specialist or pop into one of our travel shops and meet with an advisor in person. Alternatively, email us any questions and we will reply as quickly as possible. We look forward to being a small part of your next big adventure.</span>[/content_box][/content_boxes][/one_third][one_third last=\"no\" spacing=\"no\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"#6666a4\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"10%\" margin_top=\"\" margin_bottom=\"0px\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" class=\"\" id=\"\"][imageframe lightbox=\"no\" lightbox_image=\"http://localhost/assagaylodge/wp-content/uploads/2015/01/meander-gallery.jpg\" style_type=\"none\" bordercolor=\"\" bordersize=\"0px\" borderradius=\"0\" stylecolor=\"\" align=\"none\" link=\"\" linktarget=\"_self\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" hide_on_mobile=\"no\" class=\"\" id=\"\"] <img alt=\"\" src=\"http://localhost/assagaylodge/wp-content/uploads/2015/01/meander-gallery.jpg\" />[/imageframe][content_boxes layout=\"icon-with-title\" title_size=\"\" icon_circle=\"\" icon_size=\"\" icon_align=\"left\" columns=\"1\" margin_top=\"\" margin_bottom=\"0px\" class=\"\" id=\"\"][content_box title=\"Train Adventures\" icon=\"fa-phone\" backgroundcolor=\"\" iconcolor=\"#ffffff\" circlecolor=\"#6666a4\" circlebordercolor=\"#6666a4\" iconflip=\"\" iconrotate=\"\" iconspin=\"no\" image=\"\" image_width=\"35\" image_height=\"35\" link=\"\" linktext=\"\" linktarget=\"_self\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\"]  <span style=\"color: #ffffff;\">Please call one of our specialist or pop into one of our travel shops and meet with an advisor in person. Alternatively, email us any questions and we will reply as quickly as possible. We look forward to being a small part of your next big adventure.</span>[/content_box][/content_boxes][/one_third][one_third last=\"no\" spacing=\"no\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"#7272b2\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"10%\" margin_top=\"\" margin_bottom=\"0px\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" class=\"\" id=\"\"][imageframe lightbox=\"no\" lightbox_image=\"http://localhost/assagaylodge/wp-content/uploads/2015/01/Durban.jpg\" style_type=\"none\" bordercolor=\"\" bordersize=\"0px\" borderradius=\"0\" stylecolor=\"\" align=\"none\" link=\"\" linktarget=\"_self\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" hide_on_mobile=\"no\" class=\"\" id=\"\"] <img alt=\"\" src=\"http://localhost/assagaylodge/wp-content/uploads/2015/01/Durban.jpg\" />[/imageframe][content_boxes layout=\"icon-with-title\" title_size=\"\" icon_circle=\"\" icon_size=\"\" icon_align=\"left\" columns=\"1\" margin_top=\"\" margin_bottom=\"0px\" class=\"\" id=\"\"][content_box title=\"Shongweni Equestrian Centre\" icon=\"fa-comments\" backgroundcolor=\"\" iconcolor=\"#ffffff\" circlecolor=\"#7272b2\" circlebordercolor=\"#7272b2\" iconflip=\"\" iconrotate=\"\" iconspin=\"no\" image=\"\" image_width=\"35\" image_height=\"35\" link=\"\" linktext=\"\" linktarget=\"_self\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\"]  <span style=\"color: #ffffff;\">Please call one of our specialist or pop into one of our travel shops and meet with an advisor in person. Alternatively, email us any questions and we will reply as quickly as possible. We look forward to being a small part of your next big adventure.</span>[/content_box][/content_boxes][/one_third][one_third last=\"yes\" spacing=\"no\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"#6666a4\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"10%\" margin_top=\"\" margin_bottom=\"0px\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" class=\"\" id=\"\"][imageframe lightbox=\"no\" lightbox_image=\"http://localhost/assagaylodge/wp-content/uploads/2015/01/Mountains.jpg\" style_type=\"none\" bordercolor=\"\" bordersize=\"0px\" borderradius=\"0\" stylecolor=\"\" align=\"none\" link=\"\" linktarget=\"_self\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" hide_on_mobile=\"no\" class=\"\" id=\"\"] <img alt=\"\" src=\"http://localhost/assagaylodge/wp-content/uploads/2015/01/Mountains.jpg\" />[/imageframe][content_boxes layout=\"icon-with-title\" title_size=\"\" icon_circle=\"\" icon_size=\"\" icon_align=\"left\" columns=\"1\" margin_top=\"\" margin_bottom=\"0px\" class=\"\" id=\"\"][content_box title=\"Phezulu African Dancing\" icon=\"fa-phone\" backgroundcolor=\"\" iconcolor=\"#ffffff\" circlecolor=\"#6666a4\" circlebordercolor=\"#6666a4\" iconflip=\"\" iconrotate=\"\" iconspin=\"no\" image=\"\" image_width=\"35\" image_height=\"35\" link=\"\" linktext=\"\" linktarget=\"_self\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\"]  <span style=\"color: #ffffff;\">Please call one of our specialist or pop into one of our travel shops and meet with an advisor in person. Alternatively, email us any questions and we will reply as quickly as possible. We look forward to being a small part of your next big adventure.</span>[/content_box][/content_boxes][/one_third][/fullwidth][fullwidth background_color=\"\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"0px\" padding_bottom=\"-30px\" padding_left=\"0px\" padding_right=\"0px\" hundred_percent=\"yes\" equal_height_columns=\"yes\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][/fullwidth]', 'Our Destinations', '', 'inherit', 'closed', 'closed', '', '13-revision-v1', '', '', '2015-09-22 16:51:50', '2015-09-22 14:51:50', '', 13, 'http://localhost/assagaylodge/13-revision-v1/', 0, 'revision', '', 0),
(1100, 1, '2015-09-22 16:56:21', '2015-09-22 14:56:21', '', 'camelot', '', 'inherit', 'open', 'closed', '', 'camelot', '', '', '2015-09-22 16:56:21', '2015-09-22 14:56:21', '', 13, 'http://localhost/assagaylodge/wp-content/uploads/2015/01/camelot.jpg', 0, 'attachment', 'image/jpeg', 0),
(1101, 1, '2015-09-22 16:57:31', '2015-09-22 14:57:31', '', 'shongweni dressarge', '', 'inherit', 'open', 'closed', '', 'shongweni-dressarge', '', '', '2015-09-22 16:57:31', '2015-09-22 14:57:31', '', 13, 'http://localhost/assagaylodge/wp-content/uploads/2015/01/shongweni-dressarge.jpg', 0, 'attachment', 'image/jpeg', 0),
(1102, 1, '2015-09-22 16:58:25', '2015-09-22 14:58:25', '', 'Golf', '', 'inherit', 'open', 'closed', '', 'golf', '', '', '2015-09-22 16:58:25', '2015-09-22 14:58:25', '', 13, 'http://localhost/assagaylodge/wp-content/uploads/2015/01/Golf.jpg', 0, 'attachment', 'image/jpeg', 0);
INSERT INTO `wp_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(1103, 1, '2015-09-22 17:04:02', '2015-09-22 15:04:02', '[fullwidth background_color=\"#6666a4\" background_image=\"http://theme-fusion.com/avada_demos_xml/travel/wp-content/uploads/2015/01/destination-parallax21.jpg\" background_parallax=\"fixed\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"center center\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"220px\" padding_bottom=\"220px\" padding_left=\"0px\" padding_right=\"0px\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][fusion_text]\r\n<h1 style=\"text-align: center;\"><span style=\"color: #ccffcc; font-family: Calibri;\">NEARBY ATTRACTIONS</span></h1>\r\n[/fusion_text][fusion_text]\r\n<h3 style=\"text-align: justify;\"><span style=\"color: #ccffcc;\">We are situated on the 1000 Hills tourism route, on the edge of Hillcrest -a perfect place to adventure out  to any one of the many fantastic destinations and game reserves in KwaZulu Natal, i.e. the Majestic Drakensberg Mountain Range, Shongweni Nature Reserve, Nagle Dam, Durban &amp; Beach Front.</span></h3>\r\n<h3 style=\"text-align: justify;\"><span style=\"color: #ccffcc;\">We are also the doorstep of one of KZN’s major horse riding venues namely, the Shongweni Horse Riding Club &amp; the Summerveld Horse Riding Academy, making Assagay Forest Lodge a perfect home away from home for the equestrian lovers.</span></h3>\r\n<h3 style=\"text-align: justify;\"><span style=\"color: #ccffcc;\">Hiking , fishing and boating all add to the excitement found in this attractive area. Situated on the “Friendly N3″ running from Johannesburg  to Durban , Assagay Forest Lodge  is the ideal stop over, linking up with both the Wild Coast/transkei  route via Margate and the Dolphin Coast linking up with Mozambique and Swaziland</span>\r\n<span style=\"color: #ccffcc;\"> Surrounding areas have attractions ranging from the sun kissed Durban beaches to trout-filled streams in the Drakensberg , caves adorned with ancient rock art and canoeing on the Dusi River.</span></h3>\r\n<h3 style=\"text-align: justify;\"><span style=\"color: #ccffcc;\">Activities in the Area:</span>\r\n<span style=\"color: #ccffcc;\"> Private nature reserves</span>\r\n<span style=\"color: #ccffcc;\"> 4×4 off-road adventures</span>\r\n<span style=\"color: #ccffcc;\"> Fossil sites</span>\r\n<span style=\"color: #ccffcc;\"> Fishing / canoeing on the Dusi River</span>\r\n<span style=\"color: #ccffcc;\"> Historic Museums</span>\r\n<span style=\"color: #ccffcc;\"> Anglo Boer War Sites and Monuments</span>\r\n<span style=\"color: #ccffcc;\"> Hiking and horse trails in nearby mountain ranges</span>\r\n<span style=\"color: #ccffcc;\"> Birdwatching</span>\r\n<span style=\"color: #ccffcc;\"> Rock art</span></h3>\r\n[/fusion_text][one_third last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"0\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"no-margin\" id=\"\"][separator style_type=\"none\" top_margin=\"\" bottom_margin=\"\" sep_color=\"\" border_size=\"\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"\" alignment=\"\" class=\"\" id=\"\"][/one_third][one_third last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"0\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][button link=\"/avada_demos/travel/make-a-reservation/\" color=\"default\" size=\"\"  type=\"\" shape=\"\" target=\"_self\" title=\"\" gradient_colors=\"|\" gradient_hover_colors=\"|\" accent_color=\"\" accent_hover_color=\"\" bevel_color=\"\" border_width=\"0px\" icon=\"\" icon_position=\"left\" icon_divider=\"no\" modal=\"\" animation_type=\"0\" animation_direction=\"left\" animation_speed=\"1\" alignment=\"center\" class=\"\" id=\"\"]MAKE A RESERVATION[/button][/one_third][one_third last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"0\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][separator style_type=\"none\" top_margin=\"\" bottom_margin=\"\" sep_color=\"\" border_size=\"\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"\" alignment=\"\" class=\"\" id=\"\"][/one_third][/fullwidth][fullwidth background_color=\"\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"0px\" padding_bottom=\"-30px\" padding_left=\"0px\" padding_right=\"0px\" hundred_percent=\"yes\" equal_height_columns=\"yes\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][one_third last=\"no\" spacing=\"no\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"#6666a4\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"10%\" margin_top=\"\" margin_bottom=\"0px\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" class=\"\" id=\"\"][imageframe lightbox=\"no\" lightbox_image=\"http://localhost/assagaylodge/wp-content/uploads/2015/01/zulu.jpg\" style_type=\"none\" bordercolor=\"\" bordersize=\"0px\" borderradius=\"0\" stylecolor=\"\" align=\"none\" link=\"\" linktarget=\"_self\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" hide_on_mobile=\"no\" class=\"\" id=\"\"] <img alt=\"\" src=\"http://localhost/assagaylodge/wp-content/uploads/2015/01/zulu.jpg\" />[/imageframe][content_boxes layout=\"icon-with-title\" title_size=\"\" icon_circle=\"\" icon_size=\"\" icon_align=\"left\" columns=\"1\" margin_top=\"\" margin_bottom=\"0px\" class=\"\" id=\"\"][content_box title=\"Phezulu African Dancing\" icon=\"fa-phone\" backgroundcolor=\"\" iconcolor=\"#ffffff\" circlecolor=\"#6666a4\" circlebordercolor=\"#6666a4\" iconflip=\"\" iconrotate=\"\" iconspin=\"no\" image=\"\" image_width=\"35\" image_height=\"35\" link=\"\" linktext=\"\" linktarget=\"_self\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\"]   <span style=\"color: #ffffff;\">Please call one of our specialist or pop into one of our travel shops and meet with an advisor in person. Alternatively, email us any questions and we will reply as quickly as possible. We look forward to being a small part of your next big adventure.</span>[/content_box][/content_boxes][/one_third][one_third last=\"no\" spacing=\"no\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"#7272b2\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"10%\" margin_top=\"\" margin_bottom=\"0px\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" class=\"\" id=\"\"][imageframe lightbox=\"no\" lightbox_image=\"http://localhost/assagaylodge/wp-content/uploads/2015/01/Shongweni-1.jpg\" style_type=\"none\" bordercolor=\"\" bordersize=\"0px\" borderradius=\"0\" stylecolor=\"\" align=\"none\" link=\"\" linktarget=\"_self\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" hide_on_mobile=\"no\" class=\"\" id=\"\"] <img alt=\"\" src=\"http://localhost/assagaylodge/wp-content/uploads/2015/01/Shongweni-1.jpg\" />[/imageframe][content_boxes layout=\"icon-with-title\" title_size=\"\" icon_circle=\"\" icon_size=\"\" icon_align=\"left\" columns=\"1\" margin_top=\"\" margin_bottom=\"0px\" class=\"\" id=\"\"][content_box title=\"Shongweni Equestrian Centre\" icon=\"fa-comments\" backgroundcolor=\"\" iconcolor=\"#ffffff\" circlecolor=\"#7272b2\" circlebordercolor=\"#7272b2\" iconflip=\"\" iconrotate=\"\" iconspin=\"no\" image=\"\" image_width=\"35\" image_height=\"35\" link=\"\" linktext=\"\" linktarget=\"_self\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\"]   <span style=\"color: #ffffff;\">Please call one of our specialist or pop into one of our travel shops and meet with an advisor in person. Alternatively, email us any questions and we will reply as quickly as possible. We look forward to being a small part of your next big adventure.</span>[/content_box][/content_boxes][/one_third][one_third last=\"yes\" spacing=\"no\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"#6666a4\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"10%\" margin_top=\"\" margin_bottom=\"0px\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" class=\"\" id=\"\"][imageframe lightbox=\"no\" lightbox_image=\"http://localhost/assagaylodge/wp-content/uploads/2015/01/steam-train.png\" style_type=\"none\" bordercolor=\"\" bordersize=\"0px\" borderradius=\"0\" stylecolor=\"\" align=\"none\" link=\"\" linktarget=\"_self\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" hide_on_mobile=\"no\" class=\"\" id=\"\"] <img alt=\"\" src=\"http://localhost/assagaylodge/wp-content/uploads/2015/01/steam-train.png\" />[/imageframe][content_boxes layout=\"icon-with-title\" title_size=\"\" icon_circle=\"\" icon_size=\"\" icon_align=\"left\" columns=\"1\" margin_top=\"\" margin_bottom=\"0px\" class=\"\" id=\"\"][content_box title=\"Train Adventures\" icon=\"fa-phone\" backgroundcolor=\"\" iconcolor=\"#ffffff\" circlecolor=\"#6666a4\" circlebordercolor=\"#6666a4\" iconflip=\"\" iconrotate=\"\" iconspin=\"no\" image=\"\" image_width=\"35\" image_height=\"35\" link=\"\" linktext=\"\" linktarget=\"_self\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\"]   <span style=\"color: #ffffff;\">Please call one of our specialist or pop into one of our travel shops and meet with an advisor in person. Alternatively, email us any questions and we will reply as quickly as possible. We look forward to being a small part of your next big adventure.</span>[/content_box][/content_boxes][/one_third][one_third last=\"no\" spacing=\"no\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"#6666a4\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"10%\" margin_top=\"\" margin_bottom=\"0px\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" class=\"\" id=\"\"][imageframe lightbox=\"no\" lightbox_image=\"http://localhost/assagaylodge/wp-content/uploads/2015/01/Karkloof-Canopy.jpg\" style_type=\"none\" bordercolor=\"\" bordersize=\"0px\" borderradius=\"0\" stylecolor=\"\" align=\"none\" link=\"\" linktarget=\"_self\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" hide_on_mobile=\"no\" class=\"\" id=\"\"] <img alt=\"\" src=\"http://localhost/assagaylodge/wp-content/uploads/2015/01/Karkloof-Canopy.jpg\" />[/imageframe][content_boxes layout=\"icon-with-title\" title_size=\"\" icon_circle=\"\" icon_size=\"\" icon_align=\"left\" columns=\"1\" margin_top=\"\" margin_bottom=\"0px\" class=\"\" id=\"\"][content_box title=\"Karkloof Canopy Tours\" icon=\"fa-phone\" backgroundcolor=\"\" iconcolor=\"#ffffff\" circlecolor=\"#6666a4\" circlebordercolor=\"#6666a4\" iconflip=\"\" iconrotate=\"\" iconspin=\"no\" image=\"\" image_width=\"35\" image_height=\"35\" link=\"\" linktext=\"\" linktarget=\"_self\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\"]   <span style=\"color: #ffffff;\">Please call one of our specialist or pop into one of our travel shops and meet with an advisor in person. Alternatively, email us any questions and we will reply as quickly as possible. We look forward to being a small part of your next big adventure.</span>[/content_box][/content_boxes][/one_third][one_third last=\"no\" spacing=\"no\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"#6666a4\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"10%\" margin_top=\"\" margin_bottom=\"0px\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" class=\"\" id=\"\"][imageframe lightbox=\"no\" lightbox_image=\"http://localhost/assagaylodge/wp-content/uploads/2015/01/Tala-Phezulu.jpg\" style_type=\"none\" bordercolor=\"\" bordersize=\"0px\" borderradius=\"0\" stylecolor=\"\" align=\"none\" link=\"\" linktarget=\"_self\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" hide_on_mobile=\"no\" class=\"\" id=\"\"] <img alt=\"\" src=\"http://localhost/assagaylodge/wp-content/uploads/2015/01/Tala-Phezulu.jpg\" />[/imageframe][content_boxes layout=\"icon-with-title\" title_size=\"\" icon_circle=\"\" icon_size=\"\" icon_align=\"left\" columns=\"1\" margin_top=\"\" margin_bottom=\"0px\" class=\"\" id=\"\"][content_box title=\"Train Adventures\" icon=\"fa-phone\" backgroundcolor=\"\" iconcolor=\"#ffffff\" circlecolor=\"#6666a4\" circlebordercolor=\"#6666a4\" iconflip=\"\" iconrotate=\"\" iconspin=\"no\" image=\"\" image_width=\"35\" image_height=\"35\" link=\"\" linktext=\"\" linktarget=\"_self\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\"]   <span style=\"color: #ffffff;\">Please call one of our specialist or pop into one of our travel shops and meet with an advisor in person. Alternatively, email us any questions and we will reply as quickly as possible. We look forward to being a small part of your next big adventure.</span>[/content_box][/content_boxes][/one_third][one_third last=\"yes\" spacing=\"no\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"#6666a4\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"10%\" margin_top=\"\" margin_bottom=\"0px\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" class=\"\" id=\"\"][imageframe lightbox=\"no\" lightbox_image=\"http://localhost/assagaylodge/wp-content/uploads/2015/01/Shongweni-Dam.jpg\" style_type=\"none\" bordercolor=\"\" bordersize=\"0px\" borderradius=\"0\" stylecolor=\"\" align=\"none\" link=\"\" linktarget=\"_self\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" hide_on_mobile=\"no\" class=\"\" id=\"\"] <img alt=\"\" src=\"http://localhost/assagaylodge/wp-content/uploads/2015/01/Shongweni-Dam.jpg\" />[/imageframe][content_boxes layout=\"icon-with-title\" title_size=\"\" icon_circle=\"\" icon_size=\"\" icon_align=\"left\" columns=\"1\" margin_top=\"\" margin_bottom=\"0px\" class=\"\" id=\"\"][content_box title=\"Shongeweni Dam\" icon=\"fa-phone\" backgroundcolor=\"\" iconcolor=\"#ffffff\" circlecolor=\"#6666a4\" circlebordercolor=\"#6666a4\" iconflip=\"\" iconrotate=\"\" iconspin=\"no\" image=\"\" image_width=\"35\" image_height=\"35\" link=\"\" linktext=\"\" linktarget=\"_self\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\"]   <span style=\"color: #ffffff;\">Please call one of our specialist or pop into one of our travel shops and meet with an advisor in person. Alternatively, email us any questions and we will reply as quickly as possible. We look forward to being a small part of your next big adventure.</span>[/content_box][/content_boxes][/one_third][one_third last=\"no\" spacing=\"no\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"#6666a4\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"10%\" margin_top=\"\" margin_bottom=\"0px\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" class=\"\" id=\"\"][imageframe lightbox=\"no\" lightbox_image=\"http://localhost/assagaylodge/wp-content/uploads/2015/01/Golf.jpg\" style_type=\"none\" bordercolor=\"\" bordersize=\"0px\" borderradius=\"0\" stylecolor=\"\" align=\"none\" link=\"\" linktarget=\"_self\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" hide_on_mobile=\"no\" class=\"\" id=\"\"] <img alt=\"\" src=\"http://localhost/assagaylodge/wp-content/uploads/2015/01/Golf.jpg\" />[/imageframe][content_boxes layout=\"icon-with-title\" title_size=\"\" icon_circle=\"\" icon_size=\"\" icon_align=\"left\" columns=\"1\" margin_top=\"\" margin_bottom=\"0px\" class=\"\" id=\"\"][content_box title=\"Golf Courses - Camelot / Kloof / Selborne\" icon=\"fa-phone\" backgroundcolor=\"\" iconcolor=\"#ffffff\" circlecolor=\"#6666a4\" circlebordercolor=\"#6666a4\" iconflip=\"\" iconrotate=\"\" iconspin=\"no\" image=\"\" image_width=\"35\" image_height=\"35\" link=\"\" linktext=\"\" linktarget=\"_self\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\"]   <span style=\"color: #ffffff;\">Please call one of our specialist or pop into one of our travel shops and meet with an advisor in person. Alternatively, email us any questions and we will reply as quickly as possible. We look forward to being a small part of your next big adventure.</span>[/content_box][/content_boxes][/one_third][one_third last=\"no\" spacing=\"no\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"#6666a4\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"10%\" margin_top=\"\" margin_bottom=\"0px\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" class=\"\" id=\"\"][imageframe lightbox=\"no\" lightbox_image=\"http://localhost/assagaylodge/wp-content/uploads/2015/01/shongweni-dressarge.jpg\" style_type=\"none\" bordercolor=\"\" bordersize=\"0px\" borderradius=\"0\" stylecolor=\"\" align=\"none\" link=\"\" linktarget=\"_self\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" hide_on_mobile=\"no\" class=\"\" id=\"\"] <img alt=\"\" src=\"http://localhost/assagaylodge/wp-content/uploads/2015/01/shongweni-dressarge.jpg\" />[/imageframe][content_boxes layout=\"icon-with-title\" title_size=\"\" icon_circle=\"\" icon_size=\"\" icon_align=\"left\" columns=\"1\" margin_top=\"\" margin_bottom=\"0px\" class=\"\" id=\"\"][content_box title=\"Shongweni Equestrian Centre\" icon=\"fa-phone\" backgroundcolor=\"\" iconcolor=\"#ffffff\" circlecolor=\"#6666a4\" circlebordercolor=\"#6666a4\" iconflip=\"\" iconrotate=\"\" iconspin=\"no\" image=\"\" image_width=\"35\" image_height=\"35\" link=\"\" linktext=\"\" linktarget=\"_self\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\"]   <span style=\"color: #ffffff;\">Please call one of our specialist or pop into one of our travel shops and meet with an advisor in person. Alternatively, email us any questions and we will reply as quickly as possible. We look forward to being a small part of your next big adventure.</span>[/content_box][/content_boxes][/one_third][one_third last=\"yes\" spacing=\"no\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"#6666a4\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"10%\" margin_top=\"\" margin_bottom=\"0px\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" class=\"\" id=\"\"][content_boxes layout=\"icon-with-title\" title_size=\"\" icon_circle=\"\" icon_size=\"\" icon_align=\"left\" columns=\"1\" margin_top=\"\" margin_bottom=\"0px\" class=\"\" id=\"\"][content_box title=\"Camelot Medieval Functions\" icon=\"fa-phone\" backgroundcolor=\"\" iconcolor=\"#ffffff\" circlecolor=\"#6666a4\" circlebordercolor=\"#6666a4\" iconflip=\"\" iconrotate=\"\" iconspin=\"no\" image=\"\" image_width=\"35\" image_height=\"35\" link=\"\" linktext=\"\" linktarget=\"_self\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\"]   <span style=\"color: #ffffff;\">Please call one of our specialist or pop into one of our travel shops and meet with an advisor in person. Alternatively, email us any questions and we will reply as quickly as possible. We look forward to being a small part of your next big adventure.</span>[/content_box][/content_boxes][imageframe lightbox=\"no\" lightbox_image=\"http://localhost/assagaylodge/wp-content/uploads/2015/01/camelot.jpg\" style_type=\"none\" bordercolor=\"\" bordersize=\"0px\" borderradius=\"0\" stylecolor=\"\" align=\"none\" link=\"\" linktarget=\"_self\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" hide_on_mobile=\"no\" class=\"\" id=\"\"] <img alt=\"\" src=\"http://localhost/assagaylodge/wp-content/uploads/2015/01/camelot.jpg\" />[/imageframe][/one_third][one_third last=\"no\" spacing=\"no\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"#6666a4\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"10%\" margin_top=\"\" margin_bottom=\"0px\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" class=\"\" id=\"\"][content_boxes layout=\"icon-with-title\" title_size=\"\" icon_circle=\"\" icon_size=\"\" icon_align=\"left\" columns=\"1\" margin_top=\"\" margin_bottom=\"0px\" class=\"\" id=\"\"][content_box title=\"Midlands Meander\" icon=\"fa-phone\" backgroundcolor=\"\" iconcolor=\"#ffffff\" circlecolor=\"#6666a4\" circlebordercolor=\"#6666a4\" iconflip=\"\" iconrotate=\"\" iconspin=\"no\" image=\"\" image_width=\"35\" image_height=\"35\" link=\"\" linktext=\"\" linktarget=\"_self\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\"]   <span style=\"color: #ffffff;\">Please call one of our specialist or pop into one of our travel shops and meet with an advisor in person. Alternatively, email us any questions and we will reply as quickly as possible. We look forward to being a small part of your next big adventure.</span>[/content_box][/content_boxes][imageframe lightbox=\"no\" lightbox_image=\"http://localhost/assagaylodge/wp-content/uploads/2015/01/meander-gallery.jpg\" style_type=\"none\" bordercolor=\"\" bordersize=\"0px\" borderradius=\"0\" stylecolor=\"\" align=\"none\" link=\"\" linktarget=\"_self\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" hide_on_mobile=\"no\" class=\"\" id=\"\"] <img alt=\"\" src=\"http://localhost/assagaylodge/wp-content/uploads/2015/01/meander-gallery.jpg\" />[/imageframe][/one_third][one_third last=\"no\" spacing=\"no\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"#7272b2\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"10%\" margin_top=\"\" margin_bottom=\"0px\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" class=\"\" id=\"\"][imageframe lightbox=\"no\" lightbox_image=\"http://localhost/assagaylodge/wp-content/uploads/2015/01/Durban.jpg\" style_type=\"none\" bordercolor=\"\" bordersize=\"0px\" borderradius=\"0\" stylecolor=\"\" align=\"none\" link=\"\" linktarget=\"_self\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" hide_on_mobile=\"no\" class=\"\" id=\"\"] <img alt=\"\" src=\"http://localhost/assagaylodge/wp-content/uploads/2015/01/Durban.jpg\" />[/imageframe][content_boxes layout=\"icon-with-title\" title_size=\"\" icon_circle=\"\" icon_size=\"\" icon_align=\"left\" columns=\"1\" margin_top=\"\" margin_bottom=\"0px\" class=\"\" id=\"\"][content_box title=\"Durban & The Dolphin Coast\" icon=\"fa-comments\" backgroundcolor=\"\" iconcolor=\"#ffffff\" circlecolor=\"#7272b2\" circlebordercolor=\"#7272b2\" iconflip=\"\" iconrotate=\"\" iconspin=\"no\" image=\"\" image_width=\"35\" image_height=\"35\" link=\"\" linktext=\"\" linktarget=\"_self\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\"]   <span style=\"color: #ffffff;\">Please call one of our specialist or pop into one of our travel shops and meet with an advisor in person. Alternatively, email us any questions and we will reply as quickly as possible. We look forward to being a small part of your next big adventure.</span>[/content_box][/content_boxes][/one_third][one_third last=\"yes\" spacing=\"no\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"#6666a4\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"10%\" margin_top=\"\" margin_bottom=\"0px\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" class=\"\" id=\"\"][imageframe lightbox=\"no\" lightbox_image=\"http://localhost/assagaylodge/wp-content/uploads/2015/01/Mountains.jpg\" style_type=\"none\" bordercolor=\"\" bordersize=\"0px\" borderradius=\"0\" stylecolor=\"\" align=\"none\" link=\"\" linktarget=\"_self\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" hide_on_mobile=\"no\" class=\"\" id=\"\"] <img alt=\"\" src=\"http://localhost/assagaylodge/wp-content/uploads/2015/01/Mountains.jpg\" />[/imageframe][content_boxes layout=\"icon-with-title\" title_size=\"\" icon_circle=\"\" icon_size=\"\" icon_align=\"left\" columns=\"1\" margin_top=\"\" margin_bottom=\"0px\" class=\"\" id=\"\"][content_box title=\"The Drakensberg\" icon=\"fa-phone\" backgroundcolor=\"\" iconcolor=\"#ffffff\" circlecolor=\"#6666a4\" circlebordercolor=\"#6666a4\" iconflip=\"\" iconrotate=\"\" iconspin=\"no\" image=\"\" image_width=\"35\" image_height=\"35\" link=\"\" linktext=\"\" linktarget=\"_self\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\"]   <span style=\"color: #ffffff;\">Please call one of our specialist or pop into one of our travel shops and meet with an advisor in person. Alternatively, email us any questions and we will reply as quickly as possible. We look forward to being a small part of your next big adventure.</span>[/content_box][/content_boxes][/one_third][/fullwidth]', 'Our Destinations', '', 'inherit', 'closed', 'closed', '', '13-revision-v1', '', '', '2015-09-22 17:04:02', '2015-09-22 15:04:02', '', 13, 'http://localhost/assagaylodge/13-revision-v1/', 0, 'revision', '', 0);
INSERT INTO `wp_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(1104, 1, '2015-09-22 17:07:07', '2015-09-22 15:07:07', '[fullwidth background_color=\"#6666a4\" background_image=\"http://theme-fusion.com/avada_demos_xml/travel/wp-content/uploads/2015/01/destination-parallax21.jpg\" background_parallax=\"fixed\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"center center\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"220px\" padding_bottom=\"220px\" padding_left=\"0px\" padding_right=\"0px\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][fusion_text]\r\n<h1 style=\"text-align: center;\"><span style=\"color: #ccffcc; font-family: Calibri;\">NEARBY ATTRACTIONS</span></h1>\r\n[/fusion_text][fusion_text]\r\n<h3 style=\"text-align: justify;\"><span style=\"color: #ccffcc;\">We are situated on the 1000 Hills tourism route, on the edge of Hillcrest -a perfect place to adventure out  to any one of the many fantastic destinations and game reserves in KwaZulu Natal, i.e. the Majestic Drakensberg Mountain Range, Shongweni Nature Reserve, Nagle Dam, Durban &amp; Beach Front.</span></h3>\r\n<h3 style=\"text-align: justify;\"><span style=\"color: #ccffcc;\">We are also the doorstep of one of KZN’s major horse riding venues namely, the Shongweni Horse Riding Club &amp; the Summerveld Horse Riding Academy, making Assagay Forest Lodge a perfect home away from home for the equestrian lovers.</span></h3>\r\n<h3 style=\"text-align: justify;\"><span style=\"color: #ccffcc;\">Hiking , fishing and boating all add to the excitement found in this attractive area. Situated on the “Friendly N3″ running from Johannesburg  to Durban , Assagay Forest Lodge  is the ideal stop over, linking up with both the Wild Coast/transkei  route via Margate and the Dolphin Coast linking up with Mozambique and Swaziland</span>\r\n<span style=\"color: #ccffcc;\"> Surrounding areas have attractions ranging from the sun kissed Durban beaches to trout-filled streams in the Drakensberg , caves adorned with ancient rock art and canoeing on the Dusi River.</span></h3>\r\n<h3 style=\"text-align: justify;\"><span style=\"color: #ccffcc;\">Activities in the Area:</span>\r\n<span style=\"color: #ccffcc;\"> Private nature reserves</span>\r\n<span style=\"color: #ccffcc;\"> 4×4 off-road adventures</span>\r\n<span style=\"color: #ccffcc;\"> Fossil sites</span>\r\n<span style=\"color: #ccffcc;\"> Fishing / canoeing on the Dusi River</span>\r\n<span style=\"color: #ccffcc;\"> Historic Museums</span>\r\n<span style=\"color: #ccffcc;\"> Anglo Boer War Sites and Monuments</span>\r\n<span style=\"color: #ccffcc;\"> Hiking and horse trails in nearby mountain ranges</span>\r\n<span style=\"color: #ccffcc;\"> Birdwatching</span>\r\n<span style=\"color: #ccffcc;\"> Rock art</span></h3>\r\n[/fusion_text][one_third last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"0\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"no-margin\" id=\"\"][separator style_type=\"none\" top_margin=\"\" bottom_margin=\"\" sep_color=\"\" border_size=\"\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"\" alignment=\"\" class=\"\" id=\"\"][/one_third][one_third last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"0\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][button link=\"/avada_demos/travel/make-a-reservation/\" color=\"default\" size=\"\"  type=\"\" shape=\"\" target=\"_self\" title=\"\" gradient_colors=\"|\" gradient_hover_colors=\"|\" accent_color=\"\" accent_hover_color=\"\" bevel_color=\"\" border_width=\"0px\" icon=\"\" icon_position=\"left\" icon_divider=\"no\" modal=\"\" animation_type=\"0\" animation_direction=\"left\" animation_speed=\"1\" alignment=\"center\" class=\"\" id=\"\"]MAKE A RESERVATION[/button][/one_third][one_third last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"0\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][separator style_type=\"none\" top_margin=\"\" bottom_margin=\"\" sep_color=\"\" border_size=\"\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"\" alignment=\"\" class=\"\" id=\"\"][/one_third][/fullwidth][fullwidth background_color=\"\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"0px\" padding_bottom=\"-30px\" padding_left=\"0px\" padding_right=\"0px\" hundred_percent=\"yes\" equal_height_columns=\"yes\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][one_third last=\"no\" spacing=\"no\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"#6666a4\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"10%\" margin_top=\"\" margin_bottom=\"0px\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" class=\"\" id=\"\"][imageframe lightbox=\"no\" lightbox_image=\"http://localhost/assagaylodge/wp-content/uploads/2015/01/zulu.jpg\" style_type=\"none\" bordercolor=\"\" bordersize=\"0px\" borderradius=\"0\" stylecolor=\"\" align=\"none\" link=\"\" linktarget=\"_self\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" hide_on_mobile=\"no\" class=\"\" id=\"\"] <img alt=\"\" src=\"http://localhost/assagaylodge/wp-content/uploads/2015/01/zulu.jpg\" />[/imageframe][content_boxes layout=\"icon-with-title\" title_size=\"\" icon_circle=\"\" icon_size=\"\" icon_align=\"left\" columns=\"1\" margin_top=\"\" margin_bottom=\"0px\" class=\"\" id=\"\"][content_box title=\"Phezulu African Dancing\" icon=\"fa-phone\" backgroundcolor=\"\" iconcolor=\"#ffffff\" circlecolor=\"#6666a4\" circlebordercolor=\"#6666a4\" iconflip=\"\" iconrotate=\"\" iconspin=\"no\" image=\"\" image_width=\"35\" image_height=\"35\" link=\"\" linktext=\"\" linktarget=\"_self\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\"]    <span style=\"color: #ffffff;\">Please call one of our specialist or pop into one of our travel shops and meet with an advisor in person. Alternatively, email us any questions and we will reply as quickly as possible. We look forward to being a small part of your next big adventure.</span>[/content_box][/content_boxes][/one_third][one_third last=\"no\" spacing=\"no\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"#7272b2\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"10%\" margin_top=\"\" margin_bottom=\"0px\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" class=\"\" id=\"\"][imageframe lightbox=\"no\" lightbox_image=\"http://localhost/assagaylodge/wp-content/uploads/2015/01/Shongweni-1.jpg\" style_type=\"none\" bordercolor=\"\" bordersize=\"0px\" borderradius=\"0\" stylecolor=\"\" align=\"none\" link=\"\" linktarget=\"_self\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" hide_on_mobile=\"no\" class=\"\" id=\"\"] <img alt=\"\" src=\"http://localhost/assagaylodge/wp-content/uploads/2015/01/Shongweni-1.jpg\" />[/imageframe][content_boxes layout=\"icon-with-title\" title_size=\"\" icon_circle=\"\" icon_size=\"\" icon_align=\"left\" columns=\"1\" margin_top=\"\" margin_bottom=\"0px\" class=\"\" id=\"\"][content_box title=\"Shongweni Equestrian Centre\" icon=\"fa-comments\" backgroundcolor=\"\" iconcolor=\"#ffffff\" circlecolor=\"#7272b2\" circlebordercolor=\"#7272b2\" iconflip=\"\" iconrotate=\"\" iconspin=\"no\" image=\"\" image_width=\"35\" image_height=\"35\" link=\"\" linktext=\"\" linktarget=\"_self\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\"]    <span style=\"color: #ffffff;\">Please call one of our specialist or pop into one of our travel shops and meet with an advisor in person. Alternatively, email us any questions and we will reply as quickly as possible. We look forward to being a small part of your next big adventure.</span>[/content_box][/content_boxes][/one_third][one_third last=\"yes\" spacing=\"no\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"#6666a4\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"10%\" margin_top=\"\" margin_bottom=\"0px\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" class=\"\" id=\"\"][imageframe lightbox=\"no\" lightbox_image=\"http://localhost/assagaylodge/wp-content/uploads/2015/01/steam-train.png\" style_type=\"none\" bordercolor=\"\" bordersize=\"0px\" borderradius=\"0\" stylecolor=\"\" align=\"none\" link=\"\" linktarget=\"_self\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" hide_on_mobile=\"no\" class=\"\" id=\"\"] <img alt=\"\" src=\"http://localhost/assagaylodge/wp-content/uploads/2015/01/steam-train.png\" />[/imageframe][content_boxes layout=\"icon-with-title\" title_size=\"\" icon_circle=\"\" icon_size=\"\" icon_align=\"left\" columns=\"1\" margin_top=\"\" margin_bottom=\"0px\" class=\"\" id=\"\"][content_box title=\"Train Adventures\" icon=\"fa-phone\" backgroundcolor=\"\" iconcolor=\"#ffffff\" circlecolor=\"#6666a4\" circlebordercolor=\"#6666a4\" iconflip=\"\" iconrotate=\"\" iconspin=\"no\" image=\"\" image_width=\"35\" image_height=\"35\" link=\"\" linktext=\"\" linktarget=\"_self\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\"]    <span style=\"color: #ffffff;\">Please call one of our specialist or pop into one of our travel shops and meet with an advisor in person. Alternatively, email us any questions and we will reply as quickly as possible. We look forward to being a small part of your next big adventure.</span>[/content_box][/content_boxes][/one_third][one_third last=\"no\" spacing=\"no\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"#6666a4\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"10%\" margin_top=\"\" margin_bottom=\"0px\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" class=\"\" id=\"\"][imageframe lightbox=\"no\" lightbox_image=\"http://localhost/assagaylodge/wp-content/uploads/2015/01/Karkloof-Canopy.jpg\" style_type=\"none\" bordercolor=\"\" bordersize=\"0px\" borderradius=\"0\" stylecolor=\"\" align=\"none\" link=\"\" linktarget=\"_self\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" hide_on_mobile=\"no\" class=\"\" id=\"\"] <img alt=\"\" src=\"http://localhost/assagaylodge/wp-content/uploads/2015/01/Karkloof-Canopy.jpg\" />[/imageframe][content_boxes layout=\"icon-with-title\" title_size=\"\" icon_circle=\"\" icon_size=\"\" icon_align=\"left\" columns=\"1\" margin_top=\"\" margin_bottom=\"0px\" class=\"\" id=\"\"][content_box title=\"Karkloof Canopy Tours\" icon=\"fa-phone\" backgroundcolor=\"\" iconcolor=\"#ffffff\" circlecolor=\"#6666a4\" circlebordercolor=\"#6666a4\" iconflip=\"\" iconrotate=\"\" iconspin=\"no\" image=\"\" image_width=\"35\" image_height=\"35\" link=\"\" linktext=\"\" linktarget=\"_self\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\"]    <span style=\"color: #ffffff;\">Please call one of our specialist or pop into one of our travel shops and meet with an advisor in person. Alternatively, email us any questions and we will reply as quickly as possible. We look forward to being a small part of your next big adventure.</span>[/content_box][/content_boxes][/one_third][one_third last=\"no\" spacing=\"no\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"#6666a4\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"10%\" margin_top=\"\" margin_bottom=\"0px\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" class=\"\" id=\"\"][imageframe lightbox=\"no\" lightbox_image=\"http://localhost/assagaylodge/wp-content/uploads/2015/01/Tala-Phezulu.jpg\" style_type=\"none\" bordercolor=\"\" bordersize=\"0px\" borderradius=\"0\" stylecolor=\"\" align=\"none\" link=\"\" linktarget=\"_self\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" hide_on_mobile=\"no\" class=\"\" id=\"\"] <img alt=\"\" src=\"http://localhost/assagaylodge/wp-content/uploads/2015/01/Tala-Phezulu.jpg\" />[/imageframe][content_boxes layout=\"icon-with-title\" title_size=\"\" icon_circle=\"\" icon_size=\"\" icon_align=\"left\" columns=\"1\" margin_top=\"\" margin_bottom=\"0px\" class=\"\" id=\"\"][content_box title=\"Train Adventures\" icon=\"fa-phone\" backgroundcolor=\"\" iconcolor=\"#ffffff\" circlecolor=\"#6666a4\" circlebordercolor=\"#6666a4\" iconflip=\"\" iconrotate=\"\" iconspin=\"no\" image=\"\" image_width=\"35\" image_height=\"35\" link=\"\" linktext=\"\" linktarget=\"_self\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\"]    <span style=\"color: #ffffff;\">Please call one of our specialist or pop into one of our travel shops and meet with an advisor in person. Alternatively, email us any questions and we will reply as quickly as possible. We look forward to being a small part of your next big adventure.</span>[/content_box][/content_boxes][/one_third][one_third last=\"yes\" spacing=\"no\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"#6666a4\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"10%\" margin_top=\"\" margin_bottom=\"0px\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" class=\"\" id=\"\"][imageframe lightbox=\"no\" lightbox_image=\"http://localhost/assagaylodge/wp-content/uploads/2015/01/Shongweni-Dam.jpg\" style_type=\"none\" bordercolor=\"\" bordersize=\"0px\" borderradius=\"0\" stylecolor=\"\" align=\"none\" link=\"\" linktarget=\"_self\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" hide_on_mobile=\"no\" class=\"\" id=\"\"] <img alt=\"\" src=\"http://localhost/assagaylodge/wp-content/uploads/2015/01/Shongweni-Dam.jpg\" />[/imageframe][content_boxes layout=\"icon-with-title\" title_size=\"\" icon_circle=\"\" icon_size=\"\" icon_align=\"left\" columns=\"1\" margin_top=\"\" margin_bottom=\"0px\" class=\"\" id=\"\"][content_box title=\"Shongeweni Dam\" icon=\"fa-phone\" backgroundcolor=\"\" iconcolor=\"#ffffff\" circlecolor=\"#6666a4\" circlebordercolor=\"#6666a4\" iconflip=\"\" iconrotate=\"\" iconspin=\"no\" image=\"\" image_width=\"35\" image_height=\"35\" link=\"\" linktext=\"\" linktarget=\"_self\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\"]    <span style=\"color: #ffffff;\">Please call one of our specialist or pop into one of our travel shops and meet with an advisor in person. Alternatively, email us any questions and we will reply as quickly as possible. We look forward to being a small part of your next big adventure.</span>[/content_box][/content_boxes][/one_third][one_third last=\"no\" spacing=\"no\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"#6666a4\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"10%\" margin_top=\"\" margin_bottom=\"0px\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" class=\"\" id=\"\"][imageframe lightbox=\"no\" lightbox_image=\"http://localhost/assagaylodge/wp-content/uploads/2015/01/Golf.jpg\" style_type=\"none\" bordercolor=\"\" bordersize=\"0px\" borderradius=\"0\" stylecolor=\"\" align=\"none\" link=\"\" linktarget=\"_self\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" hide_on_mobile=\"no\" class=\"\" id=\"\"] <img alt=\"\" src=\"http://localhost/assagaylodge/wp-content/uploads/2015/01/Golf.jpg\" />[/imageframe][content_boxes layout=\"icon-with-title\" title_size=\"\" icon_circle=\"\" icon_size=\"\" icon_align=\"left\" columns=\"1\" margin_top=\"\" margin_bottom=\"0px\" class=\"\" id=\"\"][content_box title=\"Golf Courses - Camelot / Kloof / Selborne\" icon=\"fa-phone\" backgroundcolor=\"\" iconcolor=\"#ffffff\" circlecolor=\"#6666a4\" circlebordercolor=\"#6666a4\" iconflip=\"\" iconrotate=\"\" iconspin=\"no\" image=\"\" image_width=\"35\" image_height=\"35\" link=\"\" linktext=\"\" linktarget=\"_self\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\"]    <span style=\"color: #ffffff;\">Please call one of our specialist or pop into one of our travel shops and meet with an advisor in person. Alternatively, email us any questions and we will reply as quickly as possible. We look forward to being a small part of your next big adventure.</span>[/content_box][/content_boxes][/one_third][one_third last=\"no\" spacing=\"no\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"#6666a4\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"10%\" margin_top=\"\" margin_bottom=\"0px\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" class=\"\" id=\"\"][imageframe lightbox=\"no\" lightbox_image=\"http://localhost/assagaylodge/wp-content/uploads/2015/01/shongweni-dressarge.jpg\" style_type=\"none\" bordercolor=\"\" bordersize=\"0px\" borderradius=\"0\" stylecolor=\"\" align=\"none\" link=\"\" linktarget=\"_self\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" hide_on_mobile=\"no\" class=\"\" id=\"\"] <img alt=\"\" src=\"http://localhost/assagaylodge/wp-content/uploads/2015/01/shongweni-dressarge.jpg\" />[/imageframe][content_boxes layout=\"icon-with-title\" title_size=\"\" icon_circle=\"\" icon_size=\"\" icon_align=\"left\" columns=\"1\" margin_top=\"\" margin_bottom=\"0px\" class=\"\" id=\"\"][content_box title=\"Shongweni Equestrian Centre\" icon=\"fa-phone\" backgroundcolor=\"\" iconcolor=\"#ffffff\" circlecolor=\"#6666a4\" circlebordercolor=\"#6666a4\" iconflip=\"\" iconrotate=\"\" iconspin=\"no\" image=\"\" image_width=\"35\" image_height=\"35\" link=\"\" linktext=\"\" linktarget=\"_self\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\"]    <span style=\"color: #ffffff;\">Please call one of our specialist or pop into one of our travel shops and meet with an advisor in person. Alternatively, email us any questions and we will reply as quickly as possible. We look forward to being a small part of your next big adventure.</span>[/content_box][/content_boxes][/one_third][one_third last=\"yes\" spacing=\"no\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"#6666a4\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"10%\" margin_top=\"\" margin_bottom=\"0px\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" class=\"\" id=\"\"][imageframe lightbox=\"no\" lightbox_image=\"http://localhost/assagaylodge/wp-content/uploads/2015/01/camelot.jpg\" style_type=\"none\" bordercolor=\"\" bordersize=\"0px\" borderradius=\"0\" stylecolor=\"\" align=\"none\" link=\"\" linktarget=\"_self\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" hide_on_mobile=\"no\" class=\"\" id=\"\"] <img alt=\"\" src=\"http://localhost/assagaylodge/wp-content/uploads/2015/01/camelot.jpg\" />[/imageframe][content_boxes layout=\"icon-with-title\" title_size=\"\" icon_circle=\"\" icon_size=\"\" icon_align=\"left\" columns=\"1\" margin_top=\"\" margin_bottom=\"0px\" class=\"\" id=\"\"][content_box title=\"Camelot Medieval Functions\" icon=\"fa-phone\" backgroundcolor=\"\" iconcolor=\"#ffffff\" circlecolor=\"#6666a4\" circlebordercolor=\"#6666a4\" iconflip=\"\" iconrotate=\"\" iconspin=\"no\" image=\"\" image_width=\"35\" image_height=\"35\" link=\"\" linktext=\"\" linktarget=\"_self\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\"]    <span style=\"color: #ffffff;\">Please call one of our specialist or pop into one of our travel shops and meet with an advisor in person. Alternatively, email us any questions and we will reply as quickly as possible. We look forward to being a small part of your next big adventure.</span>[/content_box][/content_boxes][/one_third][one_third last=\"no\" spacing=\"no\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"#6666a4\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"10%\" margin_top=\"\" margin_bottom=\"0px\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" class=\"\" id=\"\"][imageframe lightbox=\"no\" lightbox_image=\"http://localhost/assagaylodge/wp-content/uploads/2015/01/meander-gallery.jpg\" style_type=\"none\" bordercolor=\"\" bordersize=\"0px\" borderradius=\"0\" stylecolor=\"\" align=\"none\" link=\"\" linktarget=\"_self\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" hide_on_mobile=\"no\" class=\"\" id=\"\"] <img alt=\"\" src=\"http://localhost/assagaylodge/wp-content/uploads/2015/01/meander-gallery.jpg\" />[/imageframe][content_boxes layout=\"icon-with-title\" title_size=\"\" icon_circle=\"\" icon_size=\"\" icon_align=\"left\" columns=\"1\" margin_top=\"\" margin_bottom=\"0px\" class=\"\" id=\"\"][content_box title=\"Midlands Meander\" icon=\"fa-phone\" backgroundcolor=\"\" iconcolor=\"#ffffff\" circlecolor=\"#6666a4\" circlebordercolor=\"#6666a4\" iconflip=\"\" iconrotate=\"\" iconspin=\"no\" image=\"\" image_width=\"35\" image_height=\"35\" link=\"\" linktext=\"\" linktarget=\"_self\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\"]    <span style=\"color: #ffffff;\">Please call one of our specialist or pop into one of our travel shops and meet with an advisor in person. Alternatively, email us any questions and we will reply as quickly as possible. We look forward to being a small part of your next big adventure.</span>[/content_box][/content_boxes][/one_third][one_third last=\"no\" spacing=\"no\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"#7272b2\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"10%\" margin_top=\"\" margin_bottom=\"0px\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" class=\"\" id=\"\"][imageframe lightbox=\"no\" lightbox_image=\"http://localhost/assagaylodge/wp-content/uploads/2015/01/Durban.jpg\" style_type=\"none\" bordercolor=\"\" bordersize=\"0px\" borderradius=\"0\" stylecolor=\"\" align=\"none\" link=\"\" linktarget=\"_self\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" hide_on_mobile=\"no\" class=\"\" id=\"\"] <img alt=\"\" src=\"http://localhost/assagaylodge/wp-content/uploads/2015/01/Durban.jpg\" />[/imageframe][content_boxes layout=\"icon-with-title\" title_size=\"\" icon_circle=\"\" icon_size=\"\" icon_align=\"left\" columns=\"1\" margin_top=\"\" margin_bottom=\"0px\" class=\"\" id=\"\"][content_box title=\"Durban & The Dolphin Coast\" icon=\"fa-comments\" backgroundcolor=\"\" iconcolor=\"#ffffff\" circlecolor=\"#7272b2\" circlebordercolor=\"#7272b2\" iconflip=\"\" iconrotate=\"\" iconspin=\"no\" image=\"\" image_width=\"35\" image_height=\"35\" link=\"\" linktext=\"\" linktarget=\"_self\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\"]    <span style=\"color: #ffffff;\">Please call one of our specialist or pop into one of our travel shops and meet with an advisor in person. Alternatively, email us any questions and we will reply as quickly as possible. We look forward to being a small part of your next big adventure.</span>[/content_box][/content_boxes][/one_third][one_third last=\"yes\" spacing=\"no\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"#6666a4\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"10%\" margin_top=\"\" margin_bottom=\"0px\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" class=\"\" id=\"\"][imageframe lightbox=\"no\" lightbox_image=\"http://localhost/assagaylodge/wp-content/uploads/2015/01/Mountains.jpg\" style_type=\"none\" bordercolor=\"\" bordersize=\"0px\" borderradius=\"0\" stylecolor=\"\" align=\"none\" link=\"\" linktarget=\"_self\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" hide_on_mobile=\"no\" class=\"\" id=\"\"] <img alt=\"\" src=\"http://localhost/assagaylodge/wp-content/uploads/2015/01/Mountains.jpg\" />[/imageframe][content_boxes layout=\"icon-with-title\" title_size=\"\" icon_circle=\"\" icon_size=\"\" icon_align=\"left\" columns=\"1\" margin_top=\"\" margin_bottom=\"0px\" class=\"\" id=\"\"][content_box title=\"The Drakensberg\" icon=\"fa-phone\" backgroundcolor=\"\" iconcolor=\"#ffffff\" circlecolor=\"#6666a4\" circlebordercolor=\"#6666a4\" iconflip=\"\" iconrotate=\"\" iconspin=\"no\" image=\"\" image_width=\"35\" image_height=\"35\" link=\"\" linktext=\"\" linktarget=\"_self\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\"]    <span style=\"color: #ffffff;\">Please call one of our specialist or pop into one of our travel shops and meet with an advisor in person. Alternatively, email us any questions and we will reply as quickly as possible. We look forward to being a small part of your next big adventure.</span>[/content_box][/content_boxes][/one_third][/fullwidth]', 'Our Destinations', '', 'inherit', 'closed', 'closed', '', '13-revision-v1', '', '', '2015-09-22 17:07:07', '2015-09-22 15:07:07', '', 13, 'http://localhost/assagaylodge/13-revision-v1/', 0, 'revision', '', 0),
(1105, 1, '2015-09-22 17:12:24', '2015-09-22 15:12:24', '', 'Tala', '', 'inherit', 'open', 'closed', '', 'tala', '', '', '2015-09-22 17:12:24', '2015-09-22 15:12:24', '', 13, 'http://localhost/assagaylodge/wp-content/uploads/2015/01/Tala.jpg', 0, 'attachment', 'image/jpeg', 0);
INSERT INTO `wp_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(1106, 1, '2015-09-22 17:13:04', '2015-09-22 15:13:04', '[fullwidth background_color=\"#6666a4\" background_image=\"http://theme-fusion.com/avada_demos_xml/travel/wp-content/uploads/2015/01/destination-parallax21.jpg\" background_parallax=\"fixed\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"center center\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"220px\" padding_bottom=\"220px\" padding_left=\"0px\" padding_right=\"0px\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][fusion_text]\r\n<h1 style=\"text-align: center;\"><span style=\"color: #ccffcc; font-family: Calibri;\">NEARBY ATTRACTIONS</span></h1>\r\n[/fusion_text][fusion_text]\r\n<h3 style=\"text-align: justify;\"><span style=\"color: #ccffcc;\">We are situated on the 1000 Hills tourism route, on the edge of Hillcrest -a perfect place to adventure out  to any one of the many fantastic destinations and game reserves in KwaZulu Natal, i.e. the Majestic Drakensberg Mountain Range, Shongweni Nature Reserve, Nagle Dam, Durban &amp; Beach Front.</span></h3>\r\n<h3 style=\"text-align: justify;\"><span style=\"color: #ccffcc;\">We are also the doorstep of one of KZN’s major horse riding venues namely, the Shongweni Horse Riding Club &amp; the Summerveld Horse Riding Academy, making Assagay Forest Lodge a perfect home away from home for the equestrian lovers.</span></h3>\r\n<h3 style=\"text-align: justify;\"><span style=\"color: #ccffcc;\">Hiking , fishing and boating all add to the excitement found in this attractive area. Situated on the “Friendly N3″ running from Johannesburg  to Durban , Assagay Forest Lodge  is the ideal stop over, linking up with both the Wild Coast/transkei  route via Margate and the Dolphin Coast linking up with Mozambique and Swaziland</span>\r\n<span style=\"color: #ccffcc;\"> Surrounding areas have attractions ranging from the sun kissed Durban beaches to trout-filled streams in the Drakensberg , caves adorned with ancient rock art and canoeing on the Dusi River.</span></h3>\r\n<h3 style=\"text-align: justify;\"><span style=\"color: #ccffcc;\">Activities in the Area:</span>\r\n<span style=\"color: #ccffcc;\"> Private nature reserves</span>\r\n<span style=\"color: #ccffcc;\"> 4×4 off-road adventures</span>\r\n<span style=\"color: #ccffcc;\"> Fossil sites</span>\r\n<span style=\"color: #ccffcc;\"> Fishing / canoeing on the Dusi River</span>\r\n<span style=\"color: #ccffcc;\"> Historic Museums</span>\r\n<span style=\"color: #ccffcc;\"> Anglo Boer War Sites and Monuments</span>\r\n<span style=\"color: #ccffcc;\"> Hiking and horse trails in nearby mountain ranges</span>\r\n<span style=\"color: #ccffcc;\"> Birdwatching</span>\r\n<span style=\"color: #ccffcc;\"> Rock art</span></h3>\r\n[/fusion_text][one_third last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"0\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"no-margin\" id=\"\"][separator style_type=\"none\" top_margin=\"\" bottom_margin=\"\" sep_color=\"\" border_size=\"\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"\" alignment=\"\" class=\"\" id=\"\"][/one_third][one_third last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"0\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][button link=\"/avada_demos/travel/make-a-reservation/\" color=\"default\" size=\"\"  type=\"\" shape=\"\" target=\"_self\" title=\"\" gradient_colors=\"|\" gradient_hover_colors=\"|\" accent_color=\"\" accent_hover_color=\"\" bevel_color=\"\" border_width=\"0px\" icon=\"\" icon_position=\"left\" icon_divider=\"no\" modal=\"\" animation_type=\"0\" animation_direction=\"left\" animation_speed=\"1\" alignment=\"center\" class=\"\" id=\"\"]MAKE A RESERVATION[/button][/one_third][one_third last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"0\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][separator style_type=\"none\" top_margin=\"\" bottom_margin=\"\" sep_color=\"\" border_size=\"\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"\" alignment=\"\" class=\"\" id=\"\"][/one_third][/fullwidth][fullwidth background_color=\"\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"0px\" padding_bottom=\"-30px\" padding_left=\"0px\" padding_right=\"0px\" hundred_percent=\"yes\" equal_height_columns=\"yes\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][one_third last=\"no\" spacing=\"no\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"#6666a4\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"10%\" margin_top=\"\" margin_bottom=\"0px\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" class=\"\" id=\"\"][imageframe lightbox=\"no\" lightbox_image=\"http://localhost/assagaylodge/wp-content/uploads/2015/01/zulu.jpg\" style_type=\"none\" bordercolor=\"\" bordersize=\"0px\" borderradius=\"0\" stylecolor=\"\" align=\"none\" link=\"\" linktarget=\"_self\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" hide_on_mobile=\"no\" class=\"\" id=\"\"] <img alt=\"\" src=\"http://localhost/assagaylodge/wp-content/uploads/2015/01/zulu.jpg\" />[/imageframe][content_boxes layout=\"icon-with-title\" title_size=\"\" icon_circle=\"\" icon_size=\"\" icon_align=\"left\" columns=\"1\" margin_top=\"\" margin_bottom=\"0px\" class=\"\" id=\"\"][content_box title=\"Phezulu African Dancing\" icon=\"fa-phone\" backgroundcolor=\"\" iconcolor=\"#ffffff\" circlecolor=\"#6666a4\" circlebordercolor=\"#6666a4\" iconflip=\"\" iconrotate=\"\" iconspin=\"no\" image=\"\" image_width=\"35\" image_height=\"35\" link=\"\" linktext=\"\" linktarget=\"_self\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\"]      <span style=\"color: #ffffff;\">Please call one of our specialist or pop into one of our travel shops and meet with an advisor in person. Alternatively, email us any questions and we will reply as quickly as possible. We look forward to being a small part of your next big adventure.</span>[/content_box][/content_boxes][/one_third][one_third last=\"no\" spacing=\"no\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"#7272b2\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"10%\" margin_top=\"\" margin_bottom=\"0px\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" class=\"\" id=\"\"][imageframe lightbox=\"no\" lightbox_image=\"http://localhost/assagaylodge/wp-content/uploads/2015/01/Shongweni-1.jpg\" style_type=\"none\" bordercolor=\"\" bordersize=\"0px\" borderradius=\"0\" stylecolor=\"\" align=\"none\" link=\"\" linktarget=\"_self\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" hide_on_mobile=\"no\" class=\"\" id=\"\"] <img alt=\"\" src=\"http://localhost/assagaylodge/wp-content/uploads/2015/01/Shongweni-1.jpg\" />[/imageframe][content_boxes layout=\"icon-with-title\" title_size=\"\" icon_circle=\"\" icon_size=\"\" icon_align=\"left\" columns=\"1\" margin_top=\"\" margin_bottom=\"0px\" class=\"\" id=\"\"][content_box title=\"Shongweni Equestrian Centre\" icon=\"fa-comments\" backgroundcolor=\"\" iconcolor=\"#ffffff\" circlecolor=\"#7272b2\" circlebordercolor=\"#7272b2\" iconflip=\"\" iconrotate=\"\" iconspin=\"no\" image=\"\" image_width=\"35\" image_height=\"35\" link=\"\" linktext=\"\" linktarget=\"_self\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\"]      <span style=\"color: #ffffff;\">Please call one of our specialist or pop into one of our travel shops and meet with an advisor in person. Alternatively, email us any questions and we will reply as quickly as possible. We look forward to being a small part of your next big adventure.</span>[/content_box][/content_boxes][/one_third][one_third last=\"yes\" spacing=\"no\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"#6666a4\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"10%\" margin_top=\"\" margin_bottom=\"0px\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" class=\"\" id=\"\"][imageframe lightbox=\"no\" lightbox_image=\"http://localhost/assagaylodge/wp-content/uploads/2015/01/steam-train.png\" style_type=\"none\" bordercolor=\"\" bordersize=\"0px\" borderradius=\"0\" stylecolor=\"\" align=\"none\" link=\"\" linktarget=\"_self\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" hide_on_mobile=\"no\" class=\"\" id=\"\"] <img alt=\"\" src=\"http://localhost/assagaylodge/wp-content/uploads/2015/01/steam-train.png\" />[/imageframe][content_boxes layout=\"icon-with-title\" title_size=\"\" icon_circle=\"\" icon_size=\"\" icon_align=\"left\" columns=\"1\" margin_top=\"\" margin_bottom=\"0px\" class=\"\" id=\"\"][content_box title=\"Train Adventures\" icon=\"fa-phone\" backgroundcolor=\"\" iconcolor=\"#ffffff\" circlecolor=\"#6666a4\" circlebordercolor=\"#6666a4\" iconflip=\"\" iconrotate=\"\" iconspin=\"no\" image=\"\" image_width=\"35\" image_height=\"35\" link=\"\" linktext=\"\" linktarget=\"_self\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\"]      <span style=\"color: #ffffff;\">Please call one of our specialist or pop into one of our travel shops and meet with an advisor in person. Alternatively, email us any questions and we will reply as quickly as possible. We look forward to being a small part of your next big adventure.</span>[/content_box][/content_boxes][/one_third][one_third last=\"no\" spacing=\"no\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"#6666a4\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"10%\" margin_top=\"\" margin_bottom=\"0px\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" class=\"\" id=\"\"][imageframe lightbox=\"no\" lightbox_image=\"http://localhost/assagaylodge/wp-content/uploads/2015/01/Karkloof-Canopy.jpg\" style_type=\"none\" bordercolor=\"\" bordersize=\"0px\" borderradius=\"0\" stylecolor=\"\" align=\"none\" link=\"\" linktarget=\"_self\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" hide_on_mobile=\"no\" class=\"\" id=\"\"] <img alt=\"\" src=\"http://localhost/assagaylodge/wp-content/uploads/2015/01/Karkloof-Canopy.jpg\" />[/imageframe][content_boxes layout=\"icon-with-title\" title_size=\"\" icon_circle=\"\" icon_size=\"\" icon_align=\"left\" columns=\"1\" margin_top=\"\" margin_bottom=\"0px\" class=\"\" id=\"\"][content_box title=\"Karkloof Canopy Tours\" icon=\"fa-phone\" backgroundcolor=\"\" iconcolor=\"#ffffff\" circlecolor=\"#6666a4\" circlebordercolor=\"#6666a4\" iconflip=\"\" iconrotate=\"\" iconspin=\"no\" image=\"\" image_width=\"35\" image_height=\"35\" link=\"\" linktext=\"\" linktarget=\"_self\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\"]      <span style=\"color: #ffffff;\">Please call one of our specialist or pop into one of our travel shops and meet with an advisor in person. Alternatively, email us any questions and we will reply as quickly as possible. We look forward to being a small part of your next big adventure.</span>[/content_box][/content_boxes][/one_third][one_third last=\"no\" spacing=\"no\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"#6666a4\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"10%\" margin_top=\"\" margin_bottom=\"0px\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" class=\"\" id=\"\"][imageframe lightbox=\"no\" lightbox_image=\"http://localhost/assagaylodge/wp-content/uploads/2015/01/Tala.jpg\" style_type=\"none\" bordercolor=\"\" bordersize=\"0px\" borderradius=\"0\" stylecolor=\"\" align=\"none\" link=\"\" linktarget=\"_self\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" hide_on_mobile=\"no\" class=\"\" id=\"\"] <img alt=\"\" src=\"http://localhost/assagaylodge/wp-content/uploads/2015/01/Tala.jpg\" />[/imageframe][content_boxes layout=\"icon-with-title\" title_size=\"\" icon_circle=\"\" icon_size=\"\" icon_align=\"left\" columns=\"1\" margin_top=\"\" margin_bottom=\"0px\" class=\"\" id=\"\"][content_box title=\"Tala Game Reserve\" icon=\"fa-phone\" backgroundcolor=\"\" iconcolor=\"#ffffff\" circlecolor=\"#6666a4\" circlebordercolor=\"#6666a4\" iconflip=\"\" iconrotate=\"\" iconspin=\"no\" image=\"\" image_width=\"35\" image_height=\"35\" link=\"\" linktext=\"\" linktarget=\"_self\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\"]      <span style=\"color: #ffffff;\">Please call one of our specialist or pop into one of our travel shops and meet with an advisor in person. Alternatively, email us any questions and we will reply as quickly as possible. We look forward to being a small part of your next big adventure.</span>[/content_box][/content_boxes][/one_third][one_third last=\"yes\" spacing=\"no\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"#6666a4\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"10%\" margin_top=\"\" margin_bottom=\"0px\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" class=\"\" id=\"\"][imageframe lightbox=\"no\" lightbox_image=\"http://localhost/assagaylodge/wp-content/uploads/2015/01/Shongweni-Dam.jpg\" style_type=\"none\" bordercolor=\"\" bordersize=\"0px\" borderradius=\"0\" stylecolor=\"\" align=\"none\" link=\"\" linktarget=\"_self\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" hide_on_mobile=\"no\" class=\"\" id=\"\"] <img alt=\"\" src=\"http://localhost/assagaylodge/wp-content/uploads/2015/01/Shongweni-Dam.jpg\" />[/imageframe][content_boxes layout=\"icon-with-title\" title_size=\"\" icon_circle=\"\" icon_size=\"\" icon_align=\"left\" columns=\"1\" margin_top=\"\" margin_bottom=\"0px\" class=\"\" id=\"\"][content_box title=\"Shongeweni Dam\" icon=\"fa-phone\" backgroundcolor=\"\" iconcolor=\"#ffffff\" circlecolor=\"#6666a4\" circlebordercolor=\"#6666a4\" iconflip=\"\" iconrotate=\"\" iconspin=\"no\" image=\"\" image_width=\"35\" image_height=\"35\" link=\"\" linktext=\"\" linktarget=\"_self\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\"]      <span style=\"color: #ffffff;\">Please call one of our specialist or pop into one of our travel shops and meet with an advisor in person. Alternatively, email us any questions and we will reply as quickly as possible. We look forward to being a small part of your next big adventure.</span>[/content_box][/content_boxes][/one_third][one_third last=\"no\" spacing=\"no\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"#6666a4\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"10%\" margin_top=\"\" margin_bottom=\"0px\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" class=\"\" id=\"\"][imageframe lightbox=\"no\" lightbox_image=\"http://localhost/assagaylodge/wp-content/uploads/2015/01/Golf.jpg\" style_type=\"none\" bordercolor=\"\" bordersize=\"0px\" borderradius=\"0\" stylecolor=\"\" align=\"none\" link=\"\" linktarget=\"_self\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" hide_on_mobile=\"no\" class=\"\" id=\"\"] <img alt=\"\" src=\"http://localhost/assagaylodge/wp-content/uploads/2015/01/Golf.jpg\" />[/imageframe][content_boxes layout=\"icon-with-title\" title_size=\"\" icon_circle=\"\" icon_size=\"\" icon_align=\"left\" columns=\"1\" margin_top=\"\" margin_bottom=\"0px\" class=\"\" id=\"\"][content_box title=\"Golf Courses - Camelot / Kloof / Selborne\" icon=\"fa-phone\" backgroundcolor=\"\" iconcolor=\"#ffffff\" circlecolor=\"#6666a4\" circlebordercolor=\"#6666a4\" iconflip=\"\" iconrotate=\"\" iconspin=\"no\" image=\"\" image_width=\"35\" image_height=\"35\" link=\"\" linktext=\"\" linktarget=\"_self\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\"]      <span style=\"color: #ffffff;\">Please call one of our specialist or pop into one of our travel shops and meet with an advisor in person. Alternatively, email us any questions and we will reply as quickly as possible. We look forward to being a small part of your next big adventure.</span>[/content_box][/content_boxes][/one_third][one_third last=\"no\" spacing=\"no\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"#6666a4\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"10%\" margin_top=\"\" margin_bottom=\"0px\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" class=\"\" id=\"\"][imageframe lightbox=\"no\" lightbox_image=\"http://localhost/assagaylodge/wp-content/uploads/2015/01/shongweni-dressarge.jpg\" style_type=\"none\" bordercolor=\"\" bordersize=\"0px\" borderradius=\"0\" stylecolor=\"\" align=\"none\" link=\"\" linktarget=\"_self\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" hide_on_mobile=\"no\" class=\"\" id=\"\"] <img alt=\"\" src=\"http://localhost/assagaylodge/wp-content/uploads/2015/01/shongweni-dressarge.jpg\" />[/imageframe][content_boxes layout=\"icon-with-title\" title_size=\"\" icon_circle=\"\" icon_size=\"\" icon_align=\"left\" columns=\"1\" margin_top=\"\" margin_bottom=\"0px\" class=\"\" id=\"\"][content_box title=\"Shongweni Equestrian Centre\" icon=\"fa-phone\" backgroundcolor=\"\" iconcolor=\"#ffffff\" circlecolor=\"#6666a4\" circlebordercolor=\"#6666a4\" iconflip=\"\" iconrotate=\"\" iconspin=\"no\" image=\"\" image_width=\"35\" image_height=\"35\" link=\"\" linktext=\"\" linktarget=\"_self\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\"]      <span style=\"color: #ffffff;\">Please call one of our specialist or pop into one of our travel shops and meet with an advisor in person. Alternatively, email us any questions and we will reply as quickly as possible. We look forward to being a small part of your next big adventure.</span>[/content_box][/content_boxes][/one_third][one_third last=\"yes\" spacing=\"no\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"#6666a4\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"10%\" margin_top=\"\" margin_bottom=\"0px\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" class=\"\" id=\"\"][imageframe lightbox=\"no\" lightbox_image=\"http://localhost/assagaylodge/wp-content/uploads/2015/01/camelot.jpg\" style_type=\"none\" bordercolor=\"\" bordersize=\"0px\" borderradius=\"0\" stylecolor=\"\" align=\"none\" link=\"\" linktarget=\"_self\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" hide_on_mobile=\"no\" class=\"\" id=\"\"] <img alt=\"\" src=\"http://localhost/assagaylodge/wp-content/uploads/2015/01/camelot.jpg\" />[/imageframe][content_boxes layout=\"icon-with-title\" title_size=\"\" icon_circle=\"\" icon_size=\"\" icon_align=\"left\" columns=\"1\" margin_top=\"\" margin_bottom=\"0px\" class=\"\" id=\"\"][content_box title=\"Camelot Medieval Functions\" icon=\"fa-phone\" backgroundcolor=\"\" iconcolor=\"#ffffff\" circlecolor=\"#6666a4\" circlebordercolor=\"#6666a4\" iconflip=\"\" iconrotate=\"\" iconspin=\"no\" image=\"\" image_width=\"35\" image_height=\"35\" link=\"\" linktext=\"\" linktarget=\"_self\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\"]      <span style=\"color: #ffffff;\">Please call one of our specialist or pop into one of our travel shops and meet with an advisor in person. Alternatively, email us any questions and we will reply as quickly as possible. We look forward to being a small part of your next big adventure.</span>[/content_box][/content_boxes][/one_third][one_third last=\"no\" spacing=\"no\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"#6666a4\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"10%\" margin_top=\"\" margin_bottom=\"0px\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" class=\"\" id=\"\"][imageframe lightbox=\"no\" lightbox_image=\"http://localhost/assagaylodge/wp-content/uploads/2015/01/meander-gallery.jpg\" style_type=\"none\" bordercolor=\"\" bordersize=\"0px\" borderradius=\"0\" stylecolor=\"\" align=\"none\" link=\"\" linktarget=\"_self\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" hide_on_mobile=\"no\" class=\"\" id=\"\"] <img alt=\"\" src=\"http://localhost/assagaylodge/wp-content/uploads/2015/01/meander-gallery.jpg\" />[/imageframe][content_boxes layout=\"icon-with-title\" title_size=\"\" icon_circle=\"\" icon_size=\"\" icon_align=\"left\" columns=\"1\" margin_top=\"\" margin_bottom=\"0px\" class=\"\" id=\"\"][content_box title=\"Midlands Meander\" icon=\"fa-phone\" backgroundcolor=\"\" iconcolor=\"#ffffff\" circlecolor=\"#6666a4\" circlebordercolor=\"#6666a4\" iconflip=\"\" iconrotate=\"\" iconspin=\"no\" image=\"\" image_width=\"35\" image_height=\"35\" link=\"\" linktext=\"\" linktarget=\"_self\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\"]      <span style=\"color: #ffffff;\">Please call one of our specialist or pop into one of our travel shops and meet with an advisor in person. Alternatively, email us any questions and we will reply as quickly as possible. We look forward to being a small part of your next big adventure.</span>[/content_box][/content_boxes][/one_third][one_third last=\"no\" spacing=\"no\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"#7272b2\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"10%\" margin_top=\"\" margin_bottom=\"0px\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" class=\"\" id=\"\"][imageframe lightbox=\"no\" lightbox_image=\"http://localhost/assagaylodge/wp-content/uploads/2015/01/Durban.jpg\" style_type=\"none\" bordercolor=\"\" bordersize=\"0px\" borderradius=\"0\" stylecolor=\"\" align=\"none\" link=\"\" linktarget=\"_self\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" hide_on_mobile=\"no\" class=\"\" id=\"\"] <img alt=\"\" src=\"http://localhost/assagaylodge/wp-content/uploads/2015/01/Durban.jpg\" />[/imageframe][content_boxes layout=\"icon-with-title\" title_size=\"\" icon_circle=\"\" icon_size=\"\" icon_align=\"left\" columns=\"1\" margin_top=\"\" margin_bottom=\"0px\" class=\"\" id=\"\"][content_box title=\"Durban & The Dolphin Coast\" icon=\"fa-comments\" backgroundcolor=\"\" iconcolor=\"#ffffff\" circlecolor=\"#7272b2\" circlebordercolor=\"#7272b2\" iconflip=\"\" iconrotate=\"\" iconspin=\"no\" image=\"\" image_width=\"35\" image_height=\"35\" link=\"\" linktext=\"\" linktarget=\"_self\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\"]      <span style=\"color: #ffffff;\">Please call one of our specialist or pop into one of our travel shops and meet with an advisor in person. Alternatively, email us any questions and we will reply as quickly as possible. We look forward to being a small part of your next big adventure.</span>[/content_box][/content_boxes][/one_third][one_third last=\"yes\" spacing=\"no\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"#6666a4\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"10%\" margin_top=\"\" margin_bottom=\"0px\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" class=\"\" id=\"\"][imageframe lightbox=\"no\" lightbox_image=\"http://localhost/assagaylodge/wp-content/uploads/2015/01/Mountains.jpg\" style_type=\"none\" bordercolor=\"\" bordersize=\"0px\" borderradius=\"0\" stylecolor=\"\" align=\"none\" link=\"\" linktarget=\"_self\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" hide_on_mobile=\"no\" class=\"\" id=\"\"] <img alt=\"\" src=\"http://localhost/assagaylodge/wp-content/uploads/2015/01/Mountains.jpg\" />[/imageframe][content_boxes layout=\"icon-with-title\" title_size=\"\" icon_circle=\"\" icon_size=\"\" icon_align=\"left\" columns=\"1\" margin_top=\"\" margin_bottom=\"0px\" class=\"\" id=\"\"][content_box title=\"The Drakensberg\" icon=\"fa-phone\" backgroundcolor=\"\" iconcolor=\"#ffffff\" circlecolor=\"#6666a4\" circlebordercolor=\"#6666a4\" iconflip=\"\" iconrotate=\"\" iconspin=\"no\" image=\"\" image_width=\"35\" image_height=\"35\" link=\"\" linktext=\"\" linktarget=\"_self\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\"]      <span style=\"color: #ffffff;\">Please call one of our specialist or pop into one of our travel shops and meet with an advisor in person. Alternatively, email us any questions and we will reply as quickly as possible. We look forward to being a small part of your next big adventure.</span>[/content_box][/content_boxes][/one_third][/fullwidth]', 'Our Destinations', '', 'inherit', 'closed', 'closed', '', '13-revision-v1', '', '', '2015-09-22 17:13:04', '2015-09-22 15:13:04', '', 13, 'http://localhost/assagaylodge/13-revision-v1/', 0, 'revision', '', 0);
INSERT INTO `wp_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(1107, 1, '2015-09-22 23:39:13', '2015-09-22 21:39:13', '[fullwidth background_color=\"#6666a4\" background_image=\"http://theme-fusion.com/avada_demos_xml/travel/wp-content/uploads/2015/01/destination-parallax21.jpg\" background_parallax=\"fixed\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"center center\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"220px\" padding_bottom=\"220px\" padding_left=\"0px\" padding_right=\"0px\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][fusion_text]\r\n<h1 style=\"text-align: center;\"><span style=\"color: #ccffcc; font-family: Calibri;\">NEARBY ATTRACTIONS</span></h1>\r\n[/fusion_text][fusion_text]\r\n<h3 style=\"text-align: justify;\"><span style=\"color: #ccffcc;\">We are situated on the 1000 Hills tourism route, on the edge of Hillcrest -a perfect place to adventure out  to any one of the many fantastic destinations and game reserves in KwaZulu Natal, i.e. the Majestic Drakensberg Mountain Range, Shongweni Nature Reserve, Nagle Dam, Durban &amp; Beach Front.</span></h3>\r\n<h3 style=\"text-align: justify;\"><span style=\"color: #ccffcc;\">We are also the doorstep of one of KZN’s major horse riding venues namely, the Shongweni Horse Riding Club &amp; the Summerveld Horse Riding Academy, making Assagay Forest Lodge a perfect home away from home for the equestrian lovers.</span></h3>\r\n<h3 style=\"text-align: justify;\"><span style=\"color: #ccffcc;\">Hiking , fishing and boating all add to the excitement found in this attractive area. Situated on the “Friendly N3″ running from Johannesburg  to Durban , Assagay Forest Lodge  is the ideal stop over, linking up with both the Wild Coast/transkei  route via Margate and the Dolphin Coast linking up with Mozambique and Swaziland</span>\r\n<span style=\"color: #ccffcc;\"> Surrounding areas have attractions ranging from the sun kissed Durban beaches to trout-filled streams in the Drakensberg , caves adorned with ancient rock art and canoeing on the Dusi River.</span></h3>\r\n<h3 style=\"text-align: justify;\"><span style=\"color: #ccffcc;\">Activities in the Area:</span>\r\n<span style=\"color: #ccffcc;\"> Private nature reserves</span>\r\n<span style=\"color: #ccffcc;\"> 4×4 off-road adventures</span>\r\n<span style=\"color: #ccffcc;\"> Fossil sites</span>\r\n<span style=\"color: #ccffcc;\"> Fishing / canoeing on the Dusi River</span>\r\n<span style=\"color: #ccffcc;\"> Historic Museums</span>\r\n<span style=\"color: #ccffcc;\"> Anglo Boer War Sites and Monuments</span>\r\n<span style=\"color: #ccffcc;\"> Hiking and horse trails in nearby mountain ranges</span>\r\n<span style=\"color: #ccffcc;\"> Birdwatching</span>\r\n<span style=\"color: #ccffcc;\"> Rock art</span></h3>\r\n[/fusion_text][one_third last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"0\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"no-margin\" id=\"\"][separator style_type=\"none\" top_margin=\"\" bottom_margin=\"\" sep_color=\"\" border_size=\"\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"\" alignment=\"\" class=\"\" id=\"\"][/one_third][one_third last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"0\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][button link=\"/avada_demos/travel/make-a-reservation/\" color=\"default\" size=\"\"  type=\"\" shape=\"\" target=\"_self\" title=\"\" gradient_colors=\"|\" gradient_hover_colors=\"|\" accent_color=\"\" accent_hover_color=\"\" bevel_color=\"\" border_width=\"0px\" icon=\"\" icon_position=\"left\" icon_divider=\"no\" modal=\"\" animation_type=\"0\" animation_direction=\"left\" animation_speed=\"1\" alignment=\"center\" class=\"\" id=\"\"]MAKE A RESERVATION[/button][/one_third][one_third last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"0\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][separator style_type=\"none\" top_margin=\"\" bottom_margin=\"\" sep_color=\"\" border_size=\"\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"\" alignment=\"\" class=\"\" id=\"\"][/one_third][/fullwidth][fullwidth background_color=\"\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"0px\" padding_bottom=\"-30px\" padding_left=\"0px\" padding_right=\"0px\" hundred_percent=\"yes\" equal_height_columns=\"yes\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][one_third last=\"no\" spacing=\"no\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"#6666a4\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"10%\" margin_top=\"\" margin_bottom=\"0px\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" class=\"\" id=\"\"][imageframe lightbox=\"no\" lightbox_image=\"http://localhost/assagaylodge/wp-content/uploads/2015/01/zulu.jpg\" style_type=\"none\" bordercolor=\"\" bordersize=\"0px\" borderradius=\"0\" stylecolor=\"\" align=\"none\" link=\"\" linktarget=\"_self\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" hide_on_mobile=\"no\" class=\"\" id=\"\"] <img alt=\"\" src=\"http://localhost/assagaylodge/wp-content/uploads/2015/01/zulu.jpg\" />[/imageframe][content_boxes layout=\"icon-with-title\" title_size=\"\" icon_circle=\"\" icon_size=\"\" icon_align=\"left\" columns=\"1\" margin_top=\"\" margin_bottom=\"0px\" class=\"\" id=\"\"][content_box title=\"Phezulu African Dancing\" icon=\"fa-phone\" backgroundcolor=\"\" iconcolor=\"#ffffff\" circlecolor=\"#6666a4\" circlebordercolor=\"#6666a4\" iconflip=\"\" iconrotate=\"\" iconspin=\"no\" image=\"\" image_width=\"35\" image_height=\"35\" link=\"\" linktext=\"\" linktarget=\"_self\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\"]        <span style=\"color: #ffffff;\">Please call one of our specialist or pop into one of our travel shops and meet with an advisor in person. Alternatively, email us any questions and we will reply as quickly as possible. We look forward to being a small part of your next big adventure.</span>[/content_box][/content_boxes][/one_third][one_third last=\"no\" spacing=\"no\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"#7272b2\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"10%\" margin_top=\"\" margin_bottom=\"0px\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" class=\"\" id=\"\"][imageframe lightbox=\"no\" lightbox_image=\"http://localhost/assagaylodge/wp-content/uploads/2015/01/Shongweni-1.jpg\" style_type=\"none\" bordercolor=\"\" bordersize=\"0px\" borderradius=\"0\" stylecolor=\"\" align=\"none\" link=\"\" linktarget=\"_self\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" hide_on_mobile=\"no\" class=\"\" id=\"\"] <img alt=\"\" src=\"http://localhost/assagaylodge/wp-content/uploads/2015/01/Shongweni-1.jpg\" />[/imageframe][content_boxes layout=\"icon-with-title\" title_size=\"\" icon_circle=\"\" icon_size=\"\" icon_align=\"left\" columns=\"1\" margin_top=\"\" margin_bottom=\"0px\" class=\"\" id=\"\"][content_box title=\"Shongweni Equestrian Centre\" icon=\"fa-comments\" backgroundcolor=\"\" iconcolor=\"#ffffff\" circlecolor=\"#7272b2\" circlebordercolor=\"#7272b2\" iconflip=\"\" iconrotate=\"\" iconspin=\"no\" image=\"\" image_width=\"35\" image_height=\"35\" link=\"\" linktext=\"\" linktarget=\"_self\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\"]        <span style=\"color: #ffffff;\">Please call one of our specialist or pop into one of our travel shops and meet with an advisor in person. Alternatively, email us any questions and we will reply as quickly as possible. We look forward to being a small part of your next big adventure.</span>[/content_box][/content_boxes][/one_third][one_third last=\"yes\" spacing=\"no\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"#6666a4\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"10%\" margin_top=\"\" margin_bottom=\"0px\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" class=\"\" id=\"\"][imageframe lightbox=\"no\" lightbox_image=\"http://localhost/assagaylodge/wp-content/uploads/2015/01/steam-train.png\" style_type=\"none\" bordercolor=\"\" bordersize=\"0px\" borderradius=\"0\" stylecolor=\"\" align=\"none\" link=\"\" linktarget=\"_self\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" hide_on_mobile=\"no\" class=\"\" id=\"\"] <img alt=\"\" src=\"http://localhost/assagaylodge/wp-content/uploads/2015/01/steam-train.png\" />[/imageframe][content_boxes layout=\"icon-with-title\" title_size=\"\" icon_circle=\"\" icon_size=\"\" icon_align=\"left\" columns=\"1\" margin_top=\"\" margin_bottom=\"0px\" class=\"\" id=\"\"][content_box title=\"Train Adventures\" icon=\"fa-phone\" backgroundcolor=\"\" iconcolor=\"#ffffff\" circlecolor=\"#6666a4\" circlebordercolor=\"#6666a4\" iconflip=\"\" iconrotate=\"\" iconspin=\"no\" image=\"\" image_width=\"35\" image_height=\"35\" link=\"\" linktext=\"\" linktarget=\"_self\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\"]        <span style=\"color: #ffffff;\">Please call one of our specialist or pop into one of our travel shops and meet with an advisor in person. Alternatively, email us any questions and we will reply as quickly as possible. We look forward to being a small part of your next big adventure.</span>[/content_box][/content_boxes][/one_third][one_third last=\"no\" spacing=\"no\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"#6666a4\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"10%\" margin_top=\"\" margin_bottom=\"0px\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" class=\"\" id=\"\"][imageframe lightbox=\"no\" lightbox_image=\"http://localhost/assagaylodge/wp-content/uploads/2015/01/Karkloof-Canopy.jpg\" style_type=\"none\" bordercolor=\"\" bordersize=\"0px\" borderradius=\"0\" stylecolor=\"\" align=\"none\" link=\"\" linktarget=\"_self\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" hide_on_mobile=\"no\" class=\"\" id=\"\"] <img alt=\"\" src=\"http://localhost/assagaylodge/wp-content/uploads/2015/01/Karkloof-Canopy.jpg\" />[/imageframe][content_boxes layout=\"icon-with-title\" title_size=\"\" icon_circle=\"\" icon_size=\"\" icon_align=\"left\" columns=\"1\" margin_top=\"\" margin_bottom=\"0px\" class=\"\" id=\"\"][content_box title=\"Karkloof Canopy Tours\" icon=\"fa-phone\" backgroundcolor=\"\" iconcolor=\"#ffffff\" circlecolor=\"#6666a4\" circlebordercolor=\"#6666a4\" iconflip=\"\" iconrotate=\"\" iconspin=\"no\" image=\"\" image_width=\"35\" image_height=\"35\" link=\"\" linktext=\"\" linktarget=\"_self\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\"]        <span style=\"color: #ffffff;\">Please call one of our specialist or pop into one of our travel shops and meet with an advisor in person. Alternatively, email us any questions and we will reply as quickly as possible. We look forward to being a small part of your next big adventure.</span>[/content_box][/content_boxes][/one_third][one_third last=\"no\" spacing=\"no\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"#6666a4\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"10%\" margin_top=\"\" margin_bottom=\"0px\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" class=\"\" id=\"\"][imageframe lightbox=\"no\" lightbox_image=\"http://localhost/assagaylodge/wp-content/uploads/2015/01/Tala.jpg\" style_type=\"none\" bordercolor=\"\" bordersize=\"0px\" borderradius=\"0\" stylecolor=\"\" align=\"none\" link=\"\" linktarget=\"_self\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" hide_on_mobile=\"no\" class=\"\" id=\"\"] <img alt=\"\" src=\"http://localhost/assagaylodge/wp-content/uploads/2015/01/Tala.jpg\" />[/imageframe][content_boxes layout=\"icon-with-title\" title_size=\"\" icon_circle=\"\" icon_size=\"\" icon_align=\"left\" columns=\"1\" margin_top=\"\" margin_bottom=\"0px\" class=\"\" id=\"\"][content_box title=\"Tala Game Reserve\" icon=\"fa-phone\" backgroundcolor=\"\" iconcolor=\"#ffffff\" circlecolor=\"#6666a4\" circlebordercolor=\"#6666a4\" iconflip=\"\" iconrotate=\"\" iconspin=\"no\" image=\"\" image_width=\"35\" image_height=\"35\" link=\"\" linktext=\"\" linktarget=\"_self\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\"]        <span style=\"color: #ffffff;\">Please call one of our specialist or pop into one of our travel shops and meet with an advisor in person. Alternatively, email us any questions and we will reply as quickly as possible. We look forward to being a small part of your next big adventure.</span>[/content_box][/content_boxes][/one_third][one_third last=\"yes\" spacing=\"no\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"#6666a4\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"10%\" margin_top=\"\" margin_bottom=\"0px\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" class=\"\" id=\"\"][imageframe lightbox=\"no\" lightbox_image=\"http://localhost/assagaylodge/wp-content/uploads/2015/01/Shongweni-Dam.jpg\" style_type=\"none\" bordercolor=\"\" bordersize=\"0px\" borderradius=\"0\" stylecolor=\"\" align=\"none\" link=\"\" linktarget=\"_self\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" hide_on_mobile=\"no\" class=\"\" id=\"\"] <img alt=\"\" src=\"http://localhost/assagaylodge/wp-content/uploads/2015/01/Shongweni-Dam.jpg\" />[/imageframe][content_boxes layout=\"icon-with-title\" title_size=\"\" icon_circle=\"\" icon_size=\"\" icon_align=\"left\" columns=\"1\" margin_top=\"\" margin_bottom=\"0px\" class=\"\" id=\"\"][content_box title=\"Shongeweni Dam\" icon=\"fa-phone\" backgroundcolor=\"\" iconcolor=\"#ffffff\" circlecolor=\"#6666a4\" circlebordercolor=\"#6666a4\" iconflip=\"\" iconrotate=\"\" iconspin=\"no\" image=\"\" image_width=\"35\" image_height=\"35\" link=\"\" linktext=\"\" linktarget=\"_self\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\"]        <span style=\"color: #ffffff;\">Please call one of our specialist or pop into one of our travel shops and meet with an advisor in person. Alternatively, email us any questions and we will reply as quickly as possible. We look forward to being a small part of your next big adventure.</span>[/content_box][/content_boxes][/one_third][one_third last=\"no\" spacing=\"no\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"#6666a4\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"10%\" margin_top=\"\" margin_bottom=\"0px\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" class=\"\" id=\"\"][imageframe lightbox=\"no\" lightbox_image=\"http://localhost/assagaylodge/wp-content/uploads/2015/01/Golf.jpg\" style_type=\"none\" bordercolor=\"\" bordersize=\"0px\" borderradius=\"0\" stylecolor=\"\" align=\"none\" link=\"\" linktarget=\"_self\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" hide_on_mobile=\"no\" class=\"\" id=\"\"] <img alt=\"\" src=\"http://localhost/assagaylodge/wp-content/uploads/2015/01/Golf.jpg\" />[/imageframe][content_boxes layout=\"icon-with-title\" title_size=\"\" icon_circle=\"\" icon_size=\"\" icon_align=\"left\" columns=\"1\" margin_top=\"\" margin_bottom=\"0px\" class=\"\" id=\"\"][content_box title=\"Golf Courses - Camelot / Kloof / Selborne\" icon=\"fa-phone\" backgroundcolor=\"\" iconcolor=\"#ffffff\" circlecolor=\"#6666a4\" circlebordercolor=\"#6666a4\" iconflip=\"\" iconrotate=\"\" iconspin=\"no\" image=\"\" image_width=\"35\" image_height=\"35\" link=\"\" linktext=\"\" linktarget=\"_self\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\"]        <span style=\"color: #ffffff;\">Please call one of our specialist or pop into one of our travel shops and meet with an advisor in person. Alternatively, email us any questions and we will reply as quickly as possible. We look forward to being a small part of your next big adventure.</span>[/content_box][/content_boxes][/one_third][one_third last=\"no\" spacing=\"no\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"#6666a4\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"10%\" margin_top=\"\" margin_bottom=\"0px\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" class=\"\" id=\"\"][imageframe lightbox=\"no\" lightbox_image=\"http://localhost/assagaylodge/wp-content/uploads/2015/01/shongweni-dressarge.jpg\" style_type=\"none\" bordercolor=\"\" bordersize=\"0px\" borderradius=\"0\" stylecolor=\"\" align=\"none\" link=\"\" linktarget=\"_self\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" hide_on_mobile=\"no\" class=\"\" id=\"\"] <img alt=\"\" src=\"http://localhost/assagaylodge/wp-content/uploads/2015/01/shongweni-dressarge.jpg\" />[/imageframe][content_boxes layout=\"icon-with-title\" title_size=\"\" icon_circle=\"\" icon_size=\"\" icon_align=\"left\" columns=\"1\" margin_top=\"\" margin_bottom=\"0px\" class=\"\" id=\"\"][content_box title=\"Shongweni Equestrian Centre\" icon=\"fa-phone\" backgroundcolor=\"\" iconcolor=\"#ffffff\" circlecolor=\"#6666a4\" circlebordercolor=\"#6666a4\" iconflip=\"\" iconrotate=\"\" iconspin=\"no\" image=\"\" image_width=\"35\" image_height=\"35\" link=\"\" linktext=\"\" linktarget=\"_self\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\"]        <span style=\"color: #ffffff;\">Please call one of our specialist or pop into one of our travel shops and meet with an advisor in person. Alternatively, email us any questions and we will reply as quickly as possible. We look forward to being a small part of your next big adventure.</span>[/content_box][/content_boxes][/one_third][one_third last=\"yes\" spacing=\"no\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"#6666a4\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"10%\" margin_top=\"\" margin_bottom=\"0px\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" class=\"\" id=\"\"][imageframe lightbox=\"no\" lightbox_image=\"http://localhost/assagaylodge/wp-content/uploads/2015/01/camelot.jpg\" style_type=\"none\" bordercolor=\"\" bordersize=\"0px\" borderradius=\"0\" stylecolor=\"\" align=\"none\" link=\"\" linktarget=\"_self\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" hide_on_mobile=\"no\" class=\"\" id=\"\"] <img alt=\"\" src=\"http://localhost/assagaylodge/wp-content/uploads/2015/01/camelot.jpg\" />[/imageframe][content_boxes layout=\"icon-with-title\" title_size=\"\" icon_circle=\"\" icon_size=\"\" icon_align=\"left\" columns=\"1\" margin_top=\"\" margin_bottom=\"0px\" class=\"\" id=\"\"][content_box title=\"Camelot Medieval Functions\" icon=\"fa-phone\" backgroundcolor=\"\" iconcolor=\"#ffffff\" circlecolor=\"#6666a4\" circlebordercolor=\"#6666a4\" iconflip=\"\" iconrotate=\"\" iconspin=\"no\" image=\"\" image_width=\"35\" image_height=\"35\" link=\"\" linktext=\"\" linktarget=\"_self\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\"]        <span style=\"color: #ffffff;\">Please call one of our specialist or pop into one of our travel shops and meet with an advisor in person. Alternatively, email us any questions and we will reply as quickly as possible. We look forward to being a small part of your next big adventure.</span>[/content_box][/content_boxes][/one_third][one_third last=\"no\" spacing=\"no\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"#6666a4\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"10%\" margin_top=\"\" margin_bottom=\"0px\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" class=\"\" id=\"\"][imageframe lightbox=\"no\" lightbox_image=\"http://localhost/assagaylodge/wp-content/uploads/2015/01/meander-gallery.jpg\" style_type=\"none\" bordercolor=\"\" bordersize=\"0px\" borderradius=\"0\" stylecolor=\"\" align=\"none\" link=\"\" linktarget=\"_self\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" hide_on_mobile=\"no\" class=\"\" id=\"\"] <img alt=\"\" src=\"http://localhost/assagaylodge/wp-content/uploads/2015/01/meander-gallery.jpg\" />[/imageframe][content_boxes layout=\"icon-with-title\" title_size=\"\" icon_circle=\"\" icon_size=\"\" icon_align=\"left\" columns=\"1\" margin_top=\"\" margin_bottom=\"0px\" class=\"\" id=\"\"][content_box title=\"Midlands Meander\" icon=\"fa-phone\" backgroundcolor=\"\" iconcolor=\"#ffffff\" circlecolor=\"#6666a4\" circlebordercolor=\"#6666a4\" iconflip=\"\" iconrotate=\"\" iconspin=\"no\" image=\"\" image_width=\"35\" image_height=\"35\" link=\"\" linktext=\"\" linktarget=\"_self\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\"]        <span style=\"color: #ffffff;\">Please call one of our specialist or pop into one of our travel shops and meet with an advisor in person. Alternatively, email us any questions and we will reply as quickly as possible. We look forward to being a small part of your next big adventure.</span>[/content_box][/content_boxes][/one_third][one_third last=\"no\" spacing=\"no\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"#7272b2\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"10%\" margin_top=\"\" margin_bottom=\"0px\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" class=\"\" id=\"\"][imageframe lightbox=\"yes\" lightbox_image=\"http://localhost/assagaylodge/wp-content/uploads/2015/01/Durban.jpg\" style_type=\"none\" bordercolor=\"\" bordersize=\"0px\" borderradius=\"0\" stylecolor=\"\" align=\"none\" link=\"\" linktarget=\"_self\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" hide_on_mobile=\"no\" class=\"\" id=\"\"] <img alt=\"\" src=\"http://localhost/assagaylodge/wp-content/uploads/2015/01/Durban.jpg\" />[/imageframe][content_boxes layout=\"icon-with-title\" title_size=\"\" icon_circle=\"\" icon_size=\"\" icon_align=\"left\" columns=\"1\" margin_top=\"\" margin_bottom=\"0px\" class=\"\" id=\"\"][content_box title=\"Durban & The Dolphin Coast\" icon=\"fa-comments\" backgroundcolor=\"\" iconcolor=\"#ffffff\" circlecolor=\"#7272b2\" circlebordercolor=\"#7272b2\" iconflip=\"\" iconrotate=\"\" iconspin=\"no\" image=\"\" image_width=\"35\" image_height=\"35\" link=\"\" linktext=\"\" linktarget=\"_self\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\"]        <span style=\"color: #ffffff;\">Please call one of our specialist or pop into one of our travel shops and meet with an advisor in person. Alternatively, email us any questions and we will reply as quickly as possible. We look forward to being a small part of your next big adventure.</span>[/content_box][/content_boxes][/one_third][one_third last=\"yes\" spacing=\"no\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"#6666a4\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"10%\" margin_top=\"\" margin_bottom=\"0px\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" class=\"\" id=\"\"][imageframe lightbox=\"no\" lightbox_image=\"http://localhost/assagaylodge/wp-content/uploads/2015/01/Mountains.jpg\" style_type=\"none\" bordercolor=\"\" bordersize=\"0px\" borderradius=\"0\" stylecolor=\"\" align=\"none\" link=\"\" linktarget=\"_self\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" hide_on_mobile=\"no\" class=\"\" id=\"\"] <img alt=\"\" src=\"http://localhost/assagaylodge/wp-content/uploads/2015/01/Mountains.jpg\" />[/imageframe][content_boxes layout=\"icon-with-title\" title_size=\"\" icon_circle=\"\" icon_size=\"\" icon_align=\"left\" columns=\"1\" margin_top=\"\" margin_bottom=\"0px\" class=\"\" id=\"\"][content_box title=\"The Drakensberg\" icon=\"fa-phone\" backgroundcolor=\"\" iconcolor=\"#ffffff\" circlecolor=\"#6666a4\" circlebordercolor=\"#6666a4\" iconflip=\"\" iconrotate=\"\" iconspin=\"no\" image=\"\" image_width=\"35\" image_height=\"35\" link=\"\" linktext=\"\" linktarget=\"_self\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\"]        <span style=\"color: #ffffff;\">Please call one of our specialist or pop into one of our travel shops and meet with an advisor in person. Alternatively, email us any questions and we will reply as quickly as possible. We look forward to being a small part of your next big adventure.</span>[/content_box][/content_boxes][/one_third][/fullwidth]', 'Our Destinations', '', 'inherit', 'closed', 'closed', '', '13-revision-v1', '', '', '2015-09-22 23:39:13', '2015-09-22 21:39:13', '', 13, 'http://localhost/assagaylodge/13-revision-v1/', 0, 'revision', '', 0),
(1108, 1, '2015-09-28 13:45:05', '2015-09-28 11:45:05', '[modal name=\"Book Now\" title=\"Book Now\" size=\"large\" background=\"\" border_color=\"\" show_footer=\"yes\" class=\"\" id=\"\"][easy_form standard style=\"none\" submit=\"Reservation successfully sent\" subsubmit=\"Please continue by paying through PayPal or enter your credit card details.\" credit=\"Reservation complete\" subcredit=\"You\'ll receive an email with the reservations details\" resourcename=\"Room\" price=\"1\" pers=\"1\" resource=\"854\"][/modal]\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n[easy_form booknow style=\"none\" submit=\"Reservation successfully sent\" subsubmit=\"Please continue by paying through PayPal or enter your credit card details.\" credit=\"Reservation complete\" subcredit=\"You\'ll receive an email with the reservations details\" resourcename=\"Room\" price=\"1\" pers=\"1\" resource=\"854\"]', 'Booking Form', '', 'inherit', 'closed', 'closed', '', '851-revision-v1', '', '', '2015-09-28 13:45:05', '2015-09-28 11:45:05', '', 851, 'http://localhost/assagaylodge/851-revision-v1/', 0, 'revision', '', 0),
(1109, 1, '2016-10-17 11:16:03', '2016-10-17 09:16:03', '&nbsp;\n\n&nbsp;', 'Booking Form', '', 'inherit', 'closed', 'closed', '', '851-autosave-v1', '', '', '2016-10-17 11:16:03', '2016-10-17 09:16:03', '', 851, 'http://localhost/assagaylodge/851-autosave-v1/', 0, 'revision', '', 0),
(1110, 1, '2015-09-28 13:46:58', '2015-09-28 11:46:58', '[modal name=\"Book Now\" title=\"Book Now\" size=\"large\" background=\"\" border_color=\"\" show_footer=\"yes\" class=\"\" id=\"\"][easy_form Standard style=\"none\" submit=\"Reservation successfully sent\" subsubmit=\"Please continue by paying through PayPal or enter your credit card details.\" credit=\"Reservation complete\" subcredit=\"You\'ll receive an email with the reservations details\" resourcename=\"Room\" price=\"1\" pers=\"1\" resource=\"854\"][/modal]\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n[easy_form booknow style=\"none\" submit=\"Reservation successfully sent\" subsubmit=\"Please continue by paying through PayPal or enter your credit card details.\" credit=\"Reservation complete\" subcredit=\"You\'ll receive an email with the reservations details\" resourcename=\"Room\" price=\"1\" pers=\"1\" resource=\"854\"]', 'Booking Form', '', 'inherit', 'closed', 'closed', '', '851-revision-v1', '', '', '2015-09-28 13:46:58', '2015-09-28 11:46:58', '', 851, 'http://localhost/assagaylodge/851-revision-v1/', 0, 'revision', '', 0),
(1111, 1, '2015-09-28 13:48:11', '2015-09-28 11:48:11', '[easy_form Standard style=\"none\" submit=\"Reservation successfully sent\" subsubmit=\"Please continue by paying through PayPal or enter your credit card details.\" credit=\"Reservation complete\" subcredit=\"You\'ll receive an email with the reservations details\" resourcename=\"Room\" price=\"1\" pers=\"1\" resource=\"854\"]', 'Booking Form', '', 'inherit', 'closed', 'closed', '', '851-revision-v1', '', '', '2015-09-28 13:48:11', '2015-09-28 11:48:11', '', 851, 'http://localhost/assagaylodge/851-revision-v1/', 0, 'revision', '', 0),
(1112, 1, '2015-09-28 13:57:53', '2015-09-28 11:57:53', '[easy_form style=\"Standard\" submit=\"Reservation successfully sent\" subsubmit=\"Please continue by paying through PayPal or enter your credit card details.\" credit=\"Reservation complete\" subcredit=\"You\'ll receive an email with the reservations details\" resourcename=\"Room\" price=\"1\" pers=\"1\" resource=\"854\"]\r\n\r\n&nbsp;', 'Booking Form', '', 'inherit', 'closed', 'closed', '', '851-revision-v1', '', '', '2015-09-28 13:57:53', '2015-09-28 11:57:53', '', 851, 'http://localhost/assagaylodge/851-revision-v1/', 0, 'revision', '', 0),
(1113, 1, '2015-09-28 14:00:31', '2015-09-28 12:00:31', '[fullwidth background_color=\"\" background_image=\"http://localhost/assagaylodge/wp-content/uploads/2015/01/about-parallax11.jpg\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"center center\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"20\" padding_bottom=\"20\" padding_left=\"0\" padding_right=\"0\" hundred_percent=\"yes\" equal_height_columns=\"yes\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][one_sixth last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][modal name=\"rates\" title=\"2015 Rates\" size=\"large\" background=\"\" border_color=\"\" show_footer=\"yes\" class=\"\" id=\"\"]\r\n\r\nALL PRICES INCLUDE VAT\r\n<h3>Full House Self-Catering (Max 10 persons): <strong>R2950</strong> per night (R295 per person)</h3>\r\n<h3>Self-Catering:</h3>\r\n<strong>Weekdays (Monday, Tuesday, Wednesday or Thursday):</strong>\r\n\r\nSingle Private Room <strong>R595</strong> per person per night\r\nSharing <strong>R395</strong> per person per night\r\n\r\n<strong>Weekends (Friday, Saturday, Sunday):</strong>\r\n\r\nSingle Private Room <strong>R645</strong> per person per night\r\nSharing <strong>R445</strong> per person per night\r\n<h3>Breakfast Optional:</h3>\r\nContinental<strong> R55</strong> per person\r\nFull English <strong>R95</strong> per person\r\n<h3>Lodge &amp; Room Servicing Optional: <strong>R195 </strong>per day</h3>\r\n\r\n<hr />\r\n\r\n<h3>Specials</h3>\r\nWeekdays: Book any 3 weekdays, Monday, Tuesday, Wednesday or Thursday, and only pay for 2 days.\r\n\r\n15% Discount. Arrive Friday Depart Sunday.\r\n\r\n[/modal][button link=\"\" color=\"green\" size=\"medium\" type=\"\" shape=\"\" target=\"_self\" title=\"\" gradient_colors=\"|\" gradient_hover_colors=\"|\" accent_color=\"\" accent_hover_color=\"\" bevel_color=\"\" border_width=\"1px\" icon=\"\" icon_position=\"left\" icon_divider=\"no\" modal=\"rates\" animation_type=\"0\" animation_direction=\"left\" animation_speed=\"1\" alignment=\"center\" class=\"\" id=\"\"]2015 Rates[/button][/one_sixth][two_third last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][fusion_text][easy_form Standard style=\"none\" submit=\"Reservation successfully sent\" subsubmit=\"Please continue.\" credit=\"Reservation complete\" subcredit=\"You\'ll receive an email with the reservations details\" resourcename=\"Room\" price=\"1\" pers=\"1\" resource=\"854\"][/fusion_text][/two_third][one_sixth last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][/one_sixth][/fullwidth][fullwidth background_color=\"\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding_top=\"20\" padding_bottom=\"20\" padding_left=\"0\" padding_right=\"0\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][recent_works layout=\"grid\" picture_size=\"fixed\" boxed_text=\"unboxed\" filters=\"yes\" columns=\"4\" column_spacing=\"12\" cat_slug=\"\" exclude_cats=\"\" number_posts=\"8\" offset=\"\" excerpt_length=\"35\" strip_html=\"yes\" carousel_layout=\"title_on_rollover\" scroll_items=\"\" autoplay=\"no\" show_nav=\"yes\" mouse_scroll=\"no\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" class=\"\" id=\"\"][/recent_works][/fullwidth]', 'Book Now', '', 'inherit', 'closed', 'closed', '', '855-revision-v1', '', '', '2015-09-28 14:00:31', '2015-09-28 12:00:31', '', 855, 'http://localhost/assagaylodge/855-revision-v1/', 0, 'revision', '', 0),
(1114, 1, '2015-09-28 14:09:48', '2015-09-28 12:09:48', '[fullwidth background_color=\"\" background_image=\"http://localhost/assagaylodge/wp-content/uploads/2015/01/about-parallax11.jpg\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"center center\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"20\" padding_bottom=\"20\" padding_left=\"0\" padding_right=\"0\" hundred_percent=\"yes\" equal_height_columns=\"yes\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][one_sixth last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][modal name=\"rates\" title=\"2015 Rates\" size=\"large\" background=\"\" border_color=\"\" show_footer=\"yes\" class=\"\" id=\"\"]\r\n\r\nALL PRICES INCLUDE VAT\r\n<h3>Full House Self-Catering (Max 10 persons): <strong>R2950</strong> per night (R295 per person)</h3>\r\n<h3>Self-Catering:</h3>\r\n<strong>Weekdays (Monday, Tuesday, Wednesday or Thursday):</strong>\r\n\r\nSingle Private Room <strong>R595</strong> per person per night\r\nSharing <strong>R395</strong> per person per night\r\n\r\n<strong>Weekends (Friday, Saturday, Sunday):</strong>\r\n\r\nSingle Private Room <strong>R645</strong> per person per night\r\nSharing <strong>R445</strong> per person per night\r\n<h3>Breakfast Optional:</h3>\r\nContinental<strong> R55</strong> per person\r\nFull English <strong>R95</strong> per person\r\n<h3>Lodge &amp; Room Servicing Optional: <strong>R195 </strong>per day</h3>\r\n\r\n<hr />\r\n\r\n<h3>Specials</h3>\r\nWeekdays: Book any 3 weekdays, Monday, Tuesday, Wednesday or Thursday, and only pay for 2 days.\r\n\r\n15% Discount. Arrive Friday Depart Sunday.\r\n\r\n[/modal][button link=\"\" color=\"green\" size=\"medium\" type=\"\" shape=\"\" target=\"_self\" title=\"\" gradient_colors=\"|\" gradient_hover_colors=\"|\" accent_color=\"\" accent_hover_color=\"\" bevel_color=\"\" border_width=\"1px\" icon=\"\" icon_position=\"left\" icon_divider=\"no\" modal=\"rates\" animation_type=\"0\" animation_direction=\"left\" animation_speed=\"1\" alignment=\"center\" class=\"\" id=\"\"]2015 Rates[/button][/one_sixth][two_third last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][fusion_text][easy_form booknow style=\"none\" submit=\"Reservation successfully sent\" subsubmit=\"Please continue.\" credit=\"Reservation complete\" subcredit=\"You\'ll receive an email with the reservations details\" resourcename=\"Room\" price=\"1\" pers=\"1\" resource=\"854\"][/fusion_text][/two_third][one_sixth last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][/one_sixth][/fullwidth][fullwidth background_color=\"\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding_top=\"20\" padding_bottom=\"20\" padding_left=\"0\" padding_right=\"0\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][recent_works layout=\"grid\" picture_size=\"fixed\" boxed_text=\"unboxed\" filters=\"yes\" columns=\"4\" column_spacing=\"12\" cat_slug=\"\" exclude_cats=\"\" number_posts=\"8\" offset=\"\" excerpt_length=\"35\" strip_html=\"yes\" carousel_layout=\"title_on_rollover\" scroll_items=\"\" autoplay=\"no\" show_nav=\"yes\" mouse_scroll=\"no\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" class=\"\" id=\"\"][/recent_works][/fullwidth]', 'Book Now', '', 'inherit', 'closed', 'closed', '', '855-revision-v1', '', '', '2015-09-28 14:09:48', '2015-09-28 12:09:48', '', 855, 'http://localhost/assagaylodge/855-revision-v1/', 0, 'revision', '', 0),
(1115, 1, '2015-09-28 14:12:15', '2015-09-28 12:12:15', '[fullwidth background_color=\"\" background_image=\"http://localhost/assagaylodge/wp-content/uploads/2015/01/about-parallax11.jpg\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"center center\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"20\" padding_bottom=\"20\" padding_left=\"0\" padding_right=\"0\" hundred_percent=\"yes\" equal_height_columns=\"yes\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][one_sixth last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][modal name=\"rates\" title=\"2015 Rates\" size=\"large\" background=\"\" border_color=\"\" show_footer=\"yes\" class=\"\" id=\"\"]\r\n\r\nALL PRICES INCLUDE VAT\r\n<h3>Full House Self-Catering (Max 10 persons): <strong>R2950</strong> per night (R295 per person)</h3>\r\n<h3>Self-Catering:</h3>\r\n<strong>Weekdays (Monday, Tuesday, Wednesday or Thursday):</strong>\r\n\r\nSingle Private Room <strong>R595</strong> per person per night\r\nSharing <strong>R395</strong> per person per night\r\n\r\n<strong>Weekends (Friday, Saturday, Sunday):</strong>\r\n\r\nSingle Private Room <strong>R645</strong> per person per night\r\nSharing <strong>R445</strong> per person per night\r\n<h3>Breakfast Optional:</h3>\r\nContinental<strong> R55</strong> per person\r\nFull English <strong>R95</strong> per person\r\n<h3>Lodge &amp; Room Servicing Optional: <strong>R195 </strong>per day</h3>\r\n\r\n<hr />\r\n\r\n<h3>Specials</h3>\r\nWeekdays: Book any 3 weekdays, Monday, Tuesday, Wednesday or Thursday, and only pay for 2 days.\r\n\r\n15% Discount. Arrive Friday Depart Sunday.\r\n\r\n[/modal][button link=\"\" color=\"green\" size=\"medium\" type=\"\" shape=\"\" target=\"_self\" title=\"\" gradient_colors=\"|\" gradient_hover_colors=\"|\" accent_color=\"\" accent_hover_color=\"\" bevel_color=\"\" border_width=\"1px\" icon=\"\" icon_position=\"left\" icon_divider=\"no\" modal=\"rates\" animation_type=\"0\" animation_direction=\"left\" animation_speed=\"1\" alignment=\"center\" class=\"\" id=\"\"]2015 Rates[/button][/one_sixth][two_third last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][fusion_text][easy_form booknow style=\"none\" submit=\"Reservation successfully sent\" subsubmit=\"Please continue.\" credit=\"Reservation complete\" subcredit=\"You\'ll receive an email with the reservations details\" resourcename=\"Room\" price=\"0\" pers=\"1\" resource=\"854\"][/fusion_text][/two_third][one_sixth last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][/one_sixth][/fullwidth][fullwidth background_color=\"\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding_top=\"20\" padding_bottom=\"20\" padding_left=\"0\" padding_right=\"0\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][recent_works layout=\"grid\" picture_size=\"fixed\" boxed_text=\"unboxed\" filters=\"yes\" columns=\"4\" column_spacing=\"12\" cat_slug=\"\" exclude_cats=\"\" number_posts=\"8\" offset=\"\" excerpt_length=\"35\" strip_html=\"yes\" carousel_layout=\"title_on_rollover\" scroll_items=\"\" autoplay=\"no\" show_nav=\"yes\" mouse_scroll=\"no\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" class=\"\" id=\"\"][/recent_works][/fullwidth]', 'Book Now', '', 'inherit', 'closed', 'closed', '', '855-revision-v1', '', '', '2015-09-28 14:12:15', '2015-09-28 12:12:15', '', 855, 'http://localhost/assagaylodge/855-revision-v1/', 0, 'revision', '', 0);
INSERT INTO `wp_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(1116, 1, '2015-09-28 14:23:19', '2015-09-28 12:23:19', '[fullwidth background_color=\"\" background_image=\"http://localhost/assagaylodge/wp-content/uploads/2015/01/about-parallax11.jpg\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"center center\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"20\" padding_bottom=\"20\" padding_left=\"0\" padding_right=\"0\" hundred_percent=\"yes\" equal_height_columns=\"yes\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][one_sixth last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][modal name=\"rates\" title=\"2015 Rates\" size=\"large\" background=\"\" border_color=\"\" show_footer=\"yes\" class=\"\" id=\"\"]\r\n\r\nALL PRICES INCLUDE VAT\r\n<h3>Full House Self-Catering (Max 10 persons): <strong>R2950</strong> per night (R295 per person)</h3>\r\n<h3>Self-Catering:</h3>\r\n<strong>Weekdays (Monday, Tuesday, Wednesday or Thursday):</strong>\r\n\r\nSingle Private Room <strong>R595</strong> per person per night\r\nSharing <strong>R395</strong> per person per night\r\n\r\n<strong>Weekends (Friday, Saturday, Sunday):</strong>\r\n\r\nSingle Private Room <strong>R645</strong> per person per night\r\nSharing <strong>R445</strong> per person per night\r\n<h3>Breakfast Optional:</h3>\r\nContinental<strong> R55</strong> per person\r\nFull English <strong>R95</strong> per person\r\n<h3>Lodge &amp; Room Servicing Optional: <strong>R195 </strong>per day</h3>\r\n\r\n<hr />\r\n\r\n<h3>Specials</h3>\r\nWeekdays: Book any 3 weekdays, Monday, Tuesday, Wednesday or Thursday, and only pay for 2 days.\r\n\r\n15% Discount. Arrive Friday Depart Sunday.\r\n\r\n[/modal][button link=\"\" color=\"green\" size=\"medium\" type=\"\" shape=\"\" target=\"_self\" title=\"\" gradient_colors=\"|\" gradient_hover_colors=\"|\" accent_color=\"\" accent_hover_color=\"\" bevel_color=\"\" border_width=\"1px\" icon=\"\" icon_position=\"left\" icon_divider=\"no\" modal=\"rates\" animation_type=\"0\" animation_direction=\"left\" animation_speed=\"1\" alignment=\"center\" class=\"\" id=\"\"]2015 Rates[/button][/one_sixth][two_third last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][fusion_text][easy_form booknow style=\"none\" submit=\"Reservation successfully sent\" subsubmit=\"Please continue.\" credit=\"Reservation complete\" subcredit=\"You\'ll receive an email with the reservations details\" resourcename=\"Accommodation\" price=\"0\" pers=\"1\" resource=\"854\"][/fusion_text][/two_third][one_sixth last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][/one_sixth][/fullwidth][fullwidth background_color=\"\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding_top=\"20\" padding_bottom=\"20\" padding_left=\"0\" padding_right=\"0\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][recent_works layout=\"grid\" picture_size=\"fixed\" boxed_text=\"unboxed\" filters=\"yes\" columns=\"4\" column_spacing=\"12\" cat_slug=\"\" exclude_cats=\"\" number_posts=\"8\" offset=\"\" excerpt_length=\"35\" strip_html=\"yes\" carousel_layout=\"title_on_rollover\" scroll_items=\"\" autoplay=\"no\" show_nav=\"yes\" mouse_scroll=\"no\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" class=\"\" id=\"\"][/recent_works][/fullwidth]', 'Book Now', '', 'inherit', 'closed', 'closed', '', '855-revision-v1', '', '', '2015-09-28 14:23:19', '2015-09-28 12:23:19', '', 855, 'http://localhost/assagaylodge/855-revision-v1/', 0, 'revision', '', 0),
(1117, 1, '2015-09-28 14:26:26', '2015-09-28 12:26:26', '[fullwidth background_color=\"\" background_image=\"http://localhost/assagaylodge/wp-content/uploads/2015/01/about-parallax11.jpg\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"center center\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"20\" padding_bottom=\"20\" padding_left=\"0\" padding_right=\"0\" hundred_percent=\"yes\" equal_height_columns=\"yes\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][one_sixth last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][modal name=\"rates\" title=\"2015 Rates\" size=\"large\" background=\"\" border_color=\"\" show_footer=\"yes\" class=\"\" id=\"\"]\r\n\r\nALL PRICES INCLUDE VAT\r\n<h3>Full House Self-Catering (Max 10 persons): <strong>R2950</strong> per night (R295 per person)</h3>\r\n<h3>Self-Catering:</h3>\r\n<strong>Weekdays (Monday, Tuesday, Wednesday or Thursday):</strong>\r\n\r\nSingle Private Room <strong>R595</strong> per person per night\r\nSharing <strong>R395</strong> per person per night\r\n\r\n<strong>Weekends (Friday, Saturday, Sunday):</strong>\r\n\r\nSingle Private Room <strong>R645</strong> per person per night\r\nSharing <strong>R445</strong> per person per night\r\n<h3>Breakfast Optional:</h3>\r\nContinental<strong> R55</strong> per person\r\nFull English <strong>R95</strong> per person\r\n<h3>Lodge &amp; Room Servicing Optional: <strong>R195 </strong>per day</h3>\r\n\r\n<hr />\r\n\r\n<h3>Specials</h3>\r\nWeekdays: Book any 3 weekdays, Monday, Tuesday, Wednesday or Thursday, and only pay for 2 days.\r\n\r\n15% Discount. Arrive Friday Depart Sunday.\r\n\r\n[/modal][button link=\"\" color=\"green\" size=\"medium\" type=\"\" shape=\"\" target=\"_self\" title=\"\" gradient_colors=\"|\" gradient_hover_colors=\"|\" accent_color=\"\" accent_hover_color=\"\" bevel_color=\"\" border_width=\"1px\" icon=\"\" icon_position=\"left\" icon_divider=\"no\" modal=\"rates\" animation_type=\"0\" animation_direction=\"left\" animation_speed=\"1\" alignment=\"center\" class=\"\" id=\"\"]2015 Rates[/button][/one_sixth][two_third last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][fusion_text][easy_form booknow style=\"none\" submit=\"Reservation successfully sent\" subsubmit=\"Please continue.\" credit=\"Reservation complete\" subcredit=\"You\'ll receive an email with the reservations details\" resourcename=\"Accommodation\" price=\"0\" pers=\"1\" resource=\"854\"][/fusion_text][/two_third][one_sixth last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][modal name=\"specials\" title=\"Current Specials\" size=\"large\" background=\"\" border_color=\"\" show_footer=\"yes\" class=\"\" id=\"\"]\r\n\r\nALL PRICES INCLUDE VAT\r\n<h3>Full House Self-Catering (Max 10 persons): <strong>R2950</strong> per night (R295 per person)</h3>\r\n<h3>Self-Catering:</h3>\r\n<strong>Weekdays (Monday, Tuesday, Wednesday or Thursday):</strong>\r\n\r\nSingle Private Room <strong>R595</strong> per person per night\r\nSharing <strong>R395</strong> per person per night\r\n\r\n<strong>Weekends (Friday, Saturday, Sunday):</strong>\r\n\r\nSingle Private Room <strong>R645</strong> per person per night\r\nSharing <strong>R445</strong> per person per night\r\n<h3>Breakfast Optional:</h3>\r\nContinental<strong> R55</strong> per person\r\nFull English <strong>R95</strong> per person\r\n<h3>Lodge &amp; Room Servicing Optional: <strong>R195 </strong>per day</h3>\r\n\r\n<hr />\r\n\r\n<h3>Specials</h3>\r\nWeekdays: Book any 3 weekdays, Monday, Tuesday, Wednesday or Thursday, and only pay for 2 days.\r\n\r\n15% Discount. Arrive Friday Depart Sunday.\r\n\r\n[/modal][button link=\"\" color=\"green\" size=\"medium\" type=\"\" shape=\"\" target=\"_self\" title=\"\" gradient_colors=\"|\" gradient_hover_colors=\"|\" accent_color=\"\" accent_hover_color=\"\" bevel_color=\"\" border_width=\"1px\" icon=\"\" icon_position=\"left\" icon_divider=\"no\" modal=\"specials\" animation_type=\"0\" animation_direction=\"left\" animation_speed=\"1\" alignment=\"center\" class=\"\" id=\"\"]Current Specials[/button][/one_sixth][/fullwidth][fullwidth background_color=\"\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding_top=\"20\" padding_bottom=\"20\" padding_left=\"0\" padding_right=\"0\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][recent_works layout=\"grid\" picture_size=\"fixed\" boxed_text=\"unboxed\" filters=\"yes\" columns=\"4\" column_spacing=\"12\" cat_slug=\"\" exclude_cats=\"\" number_posts=\"8\" offset=\"\" excerpt_length=\"35\" strip_html=\"yes\" carousel_layout=\"title_on_rollover\" scroll_items=\"\" autoplay=\"no\" show_nav=\"yes\" mouse_scroll=\"no\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" class=\"\" id=\"\"][/recent_works][/fullwidth]', 'Book Now', '', 'inherit', 'closed', 'closed', '', '855-revision-v1', '', '', '2015-09-28 14:26:26', '2015-09-28 12:26:26', '', 855, 'http://localhost/assagaylodge/855-revision-v1/', 0, 'revision', '', 0),
(1118, 1, '2015-09-28 14:30:06', '2015-09-28 12:30:06', '[fullwidth background_color=\"\" background_image=\"http://localhost/assagaylodge/wp-content/uploads/2015/01/about-parallax11.jpg\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"center center\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"20\" padding_bottom=\"20\" padding_left=\"0\" padding_right=\"0\" hundred_percent=\"yes\" equal_height_columns=\"yes\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][one_sixth last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][modal name=\"rates\" title=\"2015 Rates\" size=\"large\" background=\"\" border_color=\"\" show_footer=\"yes\" class=\"\" id=\"\"]\r\n\r\nALL PRICES INCLUDE VAT\r\n<h3>Full House Self-Catering (Max 10 persons): <strong>R2950</strong> per night (R295 per person)</h3>\r\n<h3>Self-Catering:</h3>\r\n<strong>Weekdays (Monday, Tuesday, Wednesday or Thursday):</strong>\r\n\r\nSingle Private Room <strong>R595</strong> per person per night\r\nSharing <strong>R395</strong> per person per night\r\n\r\n<strong>Weekends (Friday, Saturday, Sunday):</strong>\r\n\r\nSingle Private Room <strong>R645</strong> per person per night\r\nSharing <strong>R445</strong> per person per night\r\n<h3>Breakfast Optional:</h3>\r\nContinental<strong> R55</strong> per person\r\nFull English <strong>R95</strong> per person\r\n<h3>Lodge &amp; Room Servicing Optional: <strong>R195 </strong>per day</h3>\r\n\r\n<hr />\r\n\r\n<h3>Specials</h3>\r\nWeekdays: Book any 3 weekdays, Monday, Tuesday, Wednesday or Thursday, and only pay for 2 days.\r\n\r\n15% Discount. Arrive Friday Depart Sunday.\r\n\r\n[/modal][button link=\"\" color=\"green\" size=\"medium\"  type=\"\" shape=\"\" target=\"_self\" title=\"\" gradient_colors=\"|\" gradient_hover_colors=\"|\" accent_color=\"\" accent_hover_color=\"\" bevel_color=\"\" border_width=\"1px\" icon=\"\" icon_position=\"left\" icon_divider=\"no\" modal=\"rates\" animation_type=\"0\" animation_direction=\"left\" animation_speed=\"1\" alignment=\"center\" class=\"\" id=\"\"]2015 Rates[/button][/one_sixth][two_third last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][fusion_text][easy_form booknow style=\"none\" submit=\"Reservation successfully sent\" subsubmit=\"Please continue.\" credit=\"Reservation complete\" subcredit=\"You\'ll receive an email with the reservations details\" resourcename=\"Room\" price=\"1\" pers=\"1\" resource=\"854\"][/fusion_text][/two_third][one_sixth last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][modal name=\"specials\" title=\"Current Specials\" size=\"large\" background=\"\" border_color=\"\" show_footer=\"yes\" class=\"\" id=\"\"]\r\n\r\nALL PRICES INCLUDE VAT\r\n<h3>Full House Self-Catering (Max 10 persons): <strong>R2950</strong> per night (R295 per person)</h3>\r\n<h3>Self-Catering:</h3>\r\n<strong>Weekdays (Monday, Tuesday, Wednesday or Thursday):</strong>\r\n\r\nSingle Private Room <strong>R595</strong> per person per night\r\nSharing <strong>R395</strong> per person per night\r\n\r\n<strong>Weekends (Friday, Saturday, Sunday):</strong>\r\n\r\nSingle Private Room <strong>R645</strong> per person per night\r\nSharing <strong>R445</strong> per person per night\r\n<h3>Breakfast Optional:</h3>\r\nContinental<strong> R55</strong> per person\r\nFull English <strong>R95</strong> per person\r\n<h3>Lodge &amp; Room Servicing Optional: <strong>R195 </strong>per day</h3>\r\n\r\n<hr />\r\n\r\n<h3>Specials</h3>\r\nWeekdays: Book any 3 weekdays, Monday, Tuesday, Wednesday or Thursday, and only pay for 2 days.\r\n\r\n15% Discount. Arrive Friday Depart Sunday.\r\n\r\n[/modal][button link=\"\" color=\"green\" size=\"medium\"  type=\"\" shape=\"\" target=\"_self\" title=\"\" gradient_colors=\"|\" gradient_hover_colors=\"|\" accent_color=\"\" accent_hover_color=\"\" bevel_color=\"\" border_width=\"1px\" icon=\"\" icon_position=\"left\" icon_divider=\"no\" modal=\"specials\" animation_type=\"0\" animation_direction=\"left\" animation_speed=\"1\" alignment=\"center\" class=\"\" id=\"\"]Current Specials[/button][/one_sixth][/fullwidth][fullwidth background_color=\"\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding_top=\"20\" padding_bottom=\"20\" padding_left=\"0\" padding_right=\"0\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][recent_works layout=\"grid\" picture_size=\"fixed\" boxed_text=\"unboxed\" filters=\"yes\" columns=\"4\" column_spacing=\"12\" cat_slug=\"\" exclude_cats=\"\" number_posts=\"8\" offset=\"\" excerpt_length=\"35\" strip_html=\"yes\" carousel_layout=\"title_on_rollover\" scroll_items=\"\" autoplay=\"no\" show_nav=\"yes\" mouse_scroll=\"no\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" class=\"\" id=\"\"][/recent_works][/fullwidth]', 'Book Now', '', 'inherit', 'closed', 'closed', '', '855-revision-v1', '', '', '2015-09-28 14:30:06', '2015-09-28 12:30:06', '', 855, 'http://localhost/assagaylodge/855-revision-v1/', 0, 'revision', '', 0),
(1119, 1, '2015-09-28 14:34:47', '2015-09-28 12:34:47', '[fullwidth background_color=\"\" background_image=\"http://localhost/assagaylodge/wp-content/uploads/2015/01/about-parallax11.jpg\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"center center\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"20\" padding_bottom=\"20\" padding_left=\"0\" padding_right=\"0\" hundred_percent=\"yes\" equal_height_columns=\"yes\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][one_sixth last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][modal name=\"rates\" title=\"2015 Rates\" size=\"large\" background=\"\" border_color=\"\" show_footer=\"yes\" class=\"\" id=\"\"]\r\n\r\nALL PRICES INCLUDE VAT\r\n<h3>Full House Self-Catering (Max 10 persons): <strong>R2950</strong> per night (R295 per person)</h3>\r\n<h3>Self-Catering:</h3>\r\n<strong>Weekdays (Monday, Tuesday, Wednesday or Thursday):</strong>\r\n\r\nSingle Private Room <strong>R595</strong> per person per night\r\nSharing <strong>R395</strong> per person per night\r\n\r\n<strong>Weekends (Friday, Saturday, Sunday):</strong>\r\n\r\nSingle Private Room <strong>R645</strong> per person per night\r\nSharing <strong>R445</strong> per person per night\r\n<h3>Breakfast Optional:</h3>\r\nContinental<strong> R55</strong> per person\r\nFull English <strong>R95</strong> per person\r\n<h3>Lodge &amp; Room Servicing Optional: <strong>R195 </strong>per day</h3>\r\n\r\n<hr />\r\n\r\n<h3>Specials</h3>\r\nWeekdays: Book any 3 weekdays, Monday, Tuesday, Wednesday or Thursday, and only pay for 2 days.\r\n\r\n15% Discount. Arrive Friday Depart Sunday.\r\n\r\n[/modal][button link=\"\" color=\"green\" size=\"medium\" type=\"\" shape=\"\" target=\"_self\" title=\"\" gradient_colors=\"|\" gradient_hover_colors=\"|\" accent_color=\"\" accent_hover_color=\"\" bevel_color=\"\" border_width=\"1px\" icon=\"\" icon_position=\"left\" icon_divider=\"no\" modal=\"rates\" animation_type=\"0\" animation_direction=\"left\" animation_speed=\"1\" alignment=\"center\" class=\"\" id=\"\"]2015 Rates[/button][/one_sixth][two_third last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][fusion_text][easy_form booknow style=\"none\" submit=\"Reservation successfully sent\" subsubmit=\"Please continue.\" credit=\"Reservation complete\" subcredit=\"You\'ll receive an email with the reservations details\" resourcename=\"Room\" price=\"0\" pers=\"1\" resource=\"854\"][/fusion_text][/two_third][one_sixth last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][modal name=\"specials\" title=\"Current Specials\" size=\"large\" background=\"\" border_color=\"\" show_footer=\"yes\" class=\"\" id=\"\"]\r\n\r\nALL PRICES INCLUDE VAT\r\n<h3>Full House Self-Catering (Max 10 persons): <strong>R2950</strong> per night (R295 per person)</h3>\r\n<h3>Self-Catering:</h3>\r\n<strong>Weekdays (Monday, Tuesday, Wednesday or Thursday):</strong>\r\n\r\nSingle Private Room <strong>R595</strong> per person per night\r\nSharing <strong>R395</strong> per person per night\r\n\r\n<strong>Weekends (Friday, Saturday, Sunday):</strong>\r\n\r\nSingle Private Room <strong>R645</strong> per person per night\r\nSharing <strong>R445</strong> per person per night\r\n<h3>Breakfast Optional:</h3>\r\nContinental<strong> R55</strong> per person\r\nFull English <strong>R95</strong> per person\r\n<h3>Lodge &amp; Room Servicing Optional: <strong>R195 </strong>per day</h3>\r\n\r\n<hr />\r\n\r\n<h3>Specials</h3>\r\nWeekdays: Book any 3 weekdays, Monday, Tuesday, Wednesday or Thursday, and only pay for 2 days.\r\n\r\n15% Discount. Arrive Friday Depart Sunday.\r\n\r\n[/modal][button link=\"\" color=\"green\" size=\"medium\" type=\"\" shape=\"\" target=\"_self\" title=\"\" gradient_colors=\"|\" gradient_hover_colors=\"|\" accent_color=\"\" accent_hover_color=\"\" bevel_color=\"\" border_width=\"1px\" icon=\"\" icon_position=\"left\" icon_divider=\"no\" modal=\"specials\" animation_type=\"0\" animation_direction=\"left\" animation_speed=\"1\" alignment=\"center\" class=\"\" id=\"\"]Current Specials[/button][/one_sixth][/fullwidth][fullwidth background_color=\"\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding_top=\"20\" padding_bottom=\"20\" padding_left=\"0\" padding_right=\"0\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][recent_works layout=\"grid\" picture_size=\"fixed\" boxed_text=\"unboxed\" filters=\"yes\" columns=\"4\" column_spacing=\"12\" cat_slug=\"\" exclude_cats=\"\" number_posts=\"8\" offset=\"\" excerpt_length=\"35\" strip_html=\"yes\" carousel_layout=\"title_on_rollover\" scroll_items=\"\" autoplay=\"no\" show_nav=\"yes\" mouse_scroll=\"no\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" class=\"\" id=\"\"][/recent_works][/fullwidth]', 'Book Now', '', 'inherit', 'closed', 'closed', '', '855-revision-v1', '', '', '2015-09-28 14:34:47', '2015-09-28 12:34:47', '', 855, 'http://localhost/assagaylodge/855-revision-v1/', 0, 'revision', '', 0),
(1121, 1, '2015-10-05 15:11:32', '2015-10-05 13:11:32', '[fusion_builder_container background_color=\"\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding_top=\"20\" padding_bottom=\"20\" padding_left=\"0\" padding_right=\"0\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][fusion_builder_row][fusion_builder_column type=\"1_1\" layout=\"1_1\" background_position=\"left top\" background_color=\"\" border_size=\"\" border_color=\"\" border_style=\"solid\" spacing=\"yes\" background_image=\"\" background_repeat=\"no-repeat\" padding_top=\"\" padding_right=\"\" padding_bottom=\"\" padding_left=\"\" margin_top=\"0px\" margin_bottom=\"0px\" class=\"\" id=\"\" animation_type=\"\" animation_speed=\"0.3\" animation_direction=\"left\" hide_on_mobile=\"no\" center_content=\"no\" min_height=\"none\" last=\"no\" hover_type=\"none\" link=\"\" border_position=\"all\"][fusion_title size=\"1\" content_align=\"right\" style_type=\"default\" sep_color=\"\" margin_top=\"\" margin_bottom=\"\" class=\"\" id=\"\"]Rates &amp; Tariffs[/fusion_title][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container hundred_percent=\"yes\" overflow=\"visible\"][fusion_builder_row][fusion_builder_column type=\"1_1\" layout=\"1_1\" background_position=\"left top\" background_color=\"\" border_size=\"\" border_color=\"\" border_style=\"solid\" spacing=\"yes\" background_image=\"\" background_repeat=\"no-repeat\" padding_top=\"\" padding_right=\"\" padding_bottom=\"\" padding_left=\"\" margin_top=\"0px\" margin_bottom=\"0px\" class=\"\" id=\"\" animation_type=\"\" animation_speed=\"0.3\" animation_direction=\"left\" hide_on_mobile=\"no\" center_content=\"no\" min_height=\"none\" last=\"no\" hover_type=\"none\" link=\"\" border_position=\"all\"][fusion_text columns=\"\" column_min_width=\"\" column_spacing=\"\" rule_style=\"default\" rule_size=\"\" rule_color=\"\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" class=\"\" id=\"\"]\r\n<table style=\"width: 100%;\" cellspacing=\"10\" cellpadding=\"5\">\r\n<tbody>\r\n<tr>\r\n<td style=\"text-align: right;\" colspan=\"2\"><span style=\"font-size: 10pt;\">ALL PRICES INCLUDE VAT<strong> </strong></span></td>\r\n</tr>\r\n<tr>\r\n<td colspan=\"2\"><span style=\"font-size: 10pt;\"> </span></td>\r\n</tr>\r\n<tr>\r\n<td colspan=\"2\"><span style=\"font-size: 12pt;\"><strong>Self-Catering / Self-Servicing Accommodation</strong></span></td>\r\n</tr>\r\n<tr>\r\n<td colspan=\"2\"><span style=\"font-size: 12pt;\"><strong> </strong></span></td>\r\n</tr>\r\n<tr>\r\n<td><span style=\"font-size: 12pt;\"><strong>Accommodation</strong> </span></td>\r\n<td><span style=\"font-size: 12pt;\"><strong>*R 705</strong> per person per night</span></td>\r\n</tr>\r\n<tr>\r\n<td></td>\r\n<td><span style=\"font-size: 12pt;\"><strong> </strong></span></td>\r\n</tr>\r\n<tr>\r\n<td><span style=\"font-size: 12pt;\">* <strong>Specials</strong></span></td>\r\n<td></td>\r\n</tr>\r\n<tr>\r\n<td><span style=\"font-size: 12pt;\"> </span></td>\r\n<td></td>\r\n</tr>\r\n<tr>\r\n<td><strong><span style=\"font-size: 12pt;\"> </span></strong></td>\r\n<td><span style=\"font-size: 12pt;\"><strong> </strong></span></td>\r\n</tr>\r\n<tr>\r\n<td><strong><span style=\"font-size: 12pt;\">Servicing Options</span></strong></td>\r\n<td><span style=\"font-size: 12pt;\"><strong> </strong></span></td>\r\n</tr>\r\n<tr>\r\n<td><strong><span style=\"font-size: 12pt;\"> </span></strong></td>\r\n<td><span style=\"font-size: 12pt;\"><strong> </strong></span></td>\r\n</tr>\r\n<tr>\r\n<td><span style=\"font-size: 12pt;\">Lodge Only Servicing (Optional) </span></td>\r\n<td><span style=\"font-size: 12pt;\"><strong>R  25</strong> per person per day</span></td>\r\n</tr>\r\n<tr>\r\n<td><span style=\"font-size: 12pt;\">Room Only Servicing (Optional) </span></td>\r\n<td><span style=\"font-size: 12pt;\"><strong>R  25</strong> per person per day</span></td>\r\n</tr>\r\n<tr>\r\n<td><span style=\"font-size: 12pt;\"> </span></td>\r\n<td><span style=\"font-size: 12pt;\"><strong> </strong></span></td>\r\n</tr>\r\n<tr>\r\n<td colspan=\"2\"><span style=\"font-size: 12pt;\"><span style=\"font-size: 12pt;\"><strong>Catering Options</strong></span> </span><span style=\"font-size: 12pt;\"><strong> </strong></span></td>\r\n</tr>\r\n<tr>\r\n<td colspan=\"2\"><span style=\"font-size: 12pt;\"><span style=\"font-size: 12pt;\"><strong> </strong></span></span></td>\r\n</tr>\r\n<tr>\r\n<td><span style=\"font-size: 12pt;\"> <span style=\"font-size: 12pt;\">Breakfast </span></span></td>\r\n<td><span style=\"font-size: 12pt;\"><strong> </strong><span style=\"font-size: 12pt;\"><strong>R 95</strong> per person</span></span></td>\r\n</tr>\r\n<tr>\r\n<td><span style=\"font-size: 12pt;\"> <span style=\"font-size: 12pt;\">Dinners</span></span></td>\r\n<td><span style=\"font-size: 12pt;\"><span style=\"font-size: 12pt;\"><strong>R 180 </strong>per person</span></span></td>\r\n</tr>\r\n<tr>\r\n<td><span style=\"font-size: 12pt;\"> </span></td>\r\n<td><span style=\"font-size: 12pt;\"><strong> </strong></span></td>\r\n</tr>\r\n<tr>\r\n<td><strong><span style=\"font-size: 12pt;\">Others</span></strong></td>\r\n<td><span style=\"font-size: 12pt;\"><strong> </strong></span></td>\r\n</tr>\r\n<tr>\r\n<td><strong><span style=\"font-size: 12pt;\"> </span></strong></td>\r\n<td><span style=\"font-size: 12pt;\"><strong> </strong></span></td>\r\n</tr>\r\n<tr>\r\n<td><span style=\"font-size: 12pt;\">Gate Remote</span></td>\r\n<td><span style=\"font-size: 12pt;\"><strong>R 200 </strong>deposit (may be requested)</span></td>\r\n</tr>\r\n<tr>\r\n<td><span style=\"font-size: 12pt;\">Gas Braai</span></td>\r\n<td><span style=\"font-size: 12pt;\"><strong>R  25</strong> per person per day</span></td>\r\n</tr>\r\n<tr>\r\n<td><span style=\"font-size: 12pt;\">Day Visitors / Guests</span></td>\r\n<td><span style=\"font-size: 12pt;\"><strong>R  50 </strong>per person per day</span></td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n[/fusion_text][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container]', 'Rates', '', 'publish', 'closed', 'closed', '', 'rates', '', '', '2022-08-04 12:01:04', '2022-08-04 10:01:04', '', 0, 'http://localhost/assagaylodge/?page_id=1121', 0, 'page', '', 0);
INSERT INTO `wp_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(1122, 1, '2015-10-05 11:05:25', '2015-10-05 09:05:25', '[fullwidth background_color=\"#f0f0ed\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"90px\" padding_bottom=\"0px\" padding_left=\"0px\" padding_right=\"0px\" hundred_percent=\"yes\" equal_height_columns=\"yes\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][one_half last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"http://localhost/assagaylodge/wp-content/uploads/2015/01/DSC01554-e1442325082893.jpg\" background_repeat=\"no-repeat\" background_position=\"center center\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" class=\"\" id=\"\"][/one_half][one_half last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"30px\" margin_top=\"\" margin_bottom=\"0px\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" class=\"special\" id=\"\"][fusion_text]\r\n<h1 style=\"text-align: justify;\">5 BEDROOM FAMILY LODGE</h1>\r\n<h3 style=\"text-align: justify;\">A Four Season Lodge, because there’s Always Something to Celebrate… We offer comfort, relaxation and exceptional service right in the heart of 1000 Hills. Sleeps 10 From R450p/p  R2995 complete. The Forest, the Gardens, the Atmosphere all speak to  Rest  &amp; Relaxation.</h3>\r\n[/fusion_text][separator style_type=\"single\" top_margin=\"0\" bottom_margin=\"30\" sep_color=\"#000000\" border_size=\"\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"170px\" alignment=\"left\" class=\"separator-left\" id=\"\"][modal name=\"rates\" title=\"2015 Rates\" size=\"large\" background=\"\" border_color=\"\" show_footer=\"yes\" class=\"\" id=\"\"]ALL PRICES INCLUDE VAT\r\n<h3>Full House Self-Catering (Max 10 persons): <strong>R2950</strong> per night (R295 per person)</h3>\r\n<h3></h3>\r\n<table>\r\n<tbody>\r\n<tr>\r\n<td>Self-Catering:</td>\r\n<td></td>\r\n</tr>\r\n<tr>\r\n<td><strong>Weekdays (Monday, Tuesday, Wednesday or Thursday):</strong></td>\r\n<td><strong>Weekends (Friday, Saturday, Sunday):</strong></td>\r\n</tr>\r\n<tr>\r\n<td>Single Private Room <strong>R595</strong> per person per night\r\nSharing <strong>R395</strong> per person per night</td>\r\n<td>Single Private Room <strong>R645</strong> per person per night\r\nSharing <strong>R445</strong> per person per night</td>\r\n</tr>\r\n<tr>\r\n<td>Breakfast (Optional):</td>\r\n<td>Light Lunch (Optional): <strong>R95 </strong>per person</td>\r\n</tr>\r\n<tr>\r\n<td>Continental<strong> R55</strong> per person\r\nFull English <strong>R95</strong> per person</td>\r\n<td>Dinners (Optional): <strong>R150 </strong>per person</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n&nbsp;\r\n<h3>Lodge &amp; Room Servicing Optional: <strong>R195 </strong>per day</h3>\r\n\r\n<hr />\r\n\r\n<h3>Specials</h3>\r\nWeekdays: Book any 3 weekdays, Monday, Tuesday, Wednesday or Thursday, and only pay for 2 days.\r\n\r\n15% Discount. Arrive Friday Depart Sunday.\r\n\r\n&gt;\r\nALL PRICES INCLUDE VAT\r\n<h3>Full House Self-Catering (Max 10 persons): <strong>R2950</strong> per night (R295 per person)</h3>\r\n<h3>Self-Catering:</h3>\r\n<strong>Weekdays (Monday, Tuesday, Wednesday or Thursday):</strong>\r\n\r\nSingle Private Room <strong>R595</strong> per person per night\r\nSharing <strong>R395</strong> per person per night\r\n\r\n<strong>Weekends (Friday, Saturday, Sunday):</strong>\r\n\r\nSingle Private Room <strong>R645</strong> per person per night\r\nSharing <strong>R445</strong> per person per night\r\n<h3>Breakfast Optional:</h3>\r\nContinental<strong> R55</strong> per person\r\nFull English <strong>R95</strong> per person\r\n<h3>Lodge &amp; Room Servicing Optional: <strong>R195 </strong>per day</h3>\r\n\r\n<hr />\r\n\r\n<h3>Specials</h3>\r\nWeekdays: Book any 3 weekdays, Monday, Tuesday, Wednesday or Thursday, and only pay for 2 days.\r\n\r\n15% Discount. Arrive Friday Depart Sunday.\r\n\r\n[/modal][button link=\"\" color=\"darkgreen\" size=\"\" type=\"\" shape=\"\" target=\"_self\" title=\"\" gradient_colors=\"|\" gradient_hover_colors=\"|\" accent_color=\"\" accent_hover_color=\"\" bevel_color=\"\" border_width=\"1px\" icon=\"\" icon_position=\"left\" icon_divider=\"no\" modal=\"rates\" animation_type=\"0\" animation_direction=\"left\" animation_speed=\"1\" alignment=\"\" class=\"\" id=\"\"]2015 RATES[/button][/one_half][/fullwidth][fullwidth background_color=\"#f0f0ed\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"20\" padding_bottom=\"20\" padding_left=\"0px\" padding_right=\"0px\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][one_half last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][fusion_text]\r\n<h3 style=\"text-align: justify;\">Set in the rolling peaks and valleys of a thousand hills surrounded by a canopy of indigenous trees  , you will find that horses still have right of way , we  certainly offer the best of both worlds , farm and charm coupled with modern amenities that will have you feeling relaxed and rejuvenated.</h3>\r\n<h3 style=\"text-align: justify;\">We know that sometimes you are searching for a romantic getaway or maybe a few days away with old friends. Other times you are searching for a place to host a weekend, family reunion or a business retreat. In addition to nightly room rentals, our lodge is also available for meetings, retreats  and makes the perfect place for a wedding party to stay together and get ready for the big day. Regardless, with our five comfortable and cozy guest bedrooms , multiple garden spaces and hideaways, and a  large private deck  where you can take a nap or read a book we definitely have the room for you!</h3>\r\n[/fusion_text][/one_half][one_half last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][fusion_text]\r\n<h3 style=\"text-align: justify;\">Our lodge has been in our family for years and has recently been beautifully renovated. Five rooms all with en-suite showers, tea/coffee making facilities, MNet and satellite television (DSTV)  open Wi-Fi. Sumptuous meals are served on the bottom deck at the swimming pool. Barbecues, afternoon tea in the garden or picnic baskets  on request all add to the service that awaits you, Our lodge features a  50 foot high Apex ceiling, spacious living, dining and bar area including a fitted kitchenette  all adding to a sense of homey comfort.</h3>\r\n<h3 style=\"text-align: justify;\">Be lulled to sleep by the sound of the waterfall  and tinkling stream just outside your window , waking from a peaceful night\'s sleep in a pillow-top bed dressed in luxurious linens to coddle you in ultimate comfort.</h3>\r\n<h3 style=\"text-align: justify;\">Our property boasts many different species of birds and animals. We have a resident otter, a family of wild bush pigs,  a family of rock rabbits, porcupine, little blue duikers, a variety of different frogs and an abundance of bird life, including the occasional snakes that pass through!</h3>\r\n<h3 style=\"text-align: justify;\">Evenings are quiet and peaceful taking you far away from the business of city life. This is a unique and memorable country experience. We look forward to having you as a guest!</h3>\r\n[/fusion_text][/one_half][/fullwidth][fullwidth background_color=\"#f0f0ed\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"20\" padding_bottom=\"20\" padding_left=\"0px\" padding_right=\"0px\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][fusion_text]\r\n<h1 style=\"text-align: center;\">Gallery</h1>\r\n[/fusion_text][separator style_type=\"single\" top_margin=\"\" bottom_margin=\"40\" sep_color=\"#000000\" border_size=\"\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"170px\" alignment=\"\" class=\"\" id=\"\"][one_sixth last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][/one_sixth][two_third last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][fusion_text]\r\n<h3 style=\"text-align: justify;\">The Lodge is open, spacious, comfortable and homely. During hot summer days, sit and bask in the sun on the deck  with one of our  picnic specials. In winter, snuggle up with a good book or challenge one another to a friendly board game in the glassed nook area .</h3>\r\n[/fusion_text][/two_third][one_sixth last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][/one_sixth][/fullwidth][fullwidth background_color=\"#f0f0ed\" background_image=\"http://localhost/assagaylodge/wp-content/uploads/2015/01/Wood_Texture.jpg\" background_parallax=\"fixed\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"30\" padding_bottom=\"10\" padding_left=\"0\" padding_right=\"0\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][recent_works layout=\"grid\" picture_size=\"auto\" boxed_text=\"unboxed\" filters=\"no\" columns=\"3\" column_spacing=\"12\" cat_slug=\"the-lodge\" exclude_cats=\"\" number_posts=\"9\" offset=\"\" excerpt_length=\"35\" strip_html=\"yes\" carousel_layout=\"title_on_rollover\" scroll_items=\"\" autoplay=\"no\" show_nav=\"yes\" mouse_scroll=\"no\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" class=\"\" id=\"\"][/recent_works][/fullwidth][fullwidth background_color=\"#f0f0ed\" background_image=\"\" background_parallax=\"fixed\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"20\" padding_bottom=\"20\" padding_left=\"0px\" padding_right=\"0px\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][fusion_text]\r\n<h1 style=\"text-align: center;\">BEDROOMS</h1>\r\n[/fusion_text][separator style_type=\"single\" top_margin=\"\" bottom_margin=\"20\" sep_color=\"#000000\" border_size=\"\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"170px\" alignment=\"\" class=\"\" id=\"\"][one_sixth last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][/one_sixth][two_third last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][fusion_text]\r\n<h3 style=\"text-align: justify;\">When it comes to our bedrooms we’re proud to say we offer something a little more special. One of five  lovingly and tastefully decorated guest rooms. Soft gray decor soothes the senses providing a peaceful, blissfully comfortable rest from your travels and hectic lives.</h3>\r\n<h3 style=\"text-align: justify;\">Our  bedrooms are spacious, clean, comfortable all en-suite, equipped with either king size or queen size beds. Each room sleeps two guests. The rooms have high ceilings, wall heaters &amp; ceiling fans. Beds all have electric blankets in Winter, 100% cotton percale sheets and thick hyper allergenic microfiber duvets and pillows. All guest rooms are cleaned with organic and green products. Amenities include hairdryers in each room. Three rooms feature King-sized beds  of which two can be  split into two single beds. Two  rooms can therefore be changed into a twin room upon request. Two rooms feature a Queen-sized double bed. These beds cannot be split into twin beds.</h3>\r\n[/fusion_text][/two_third][one_sixth last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][/one_sixth][/fullwidth][fullwidth background_color=\"\" background_image=\"http://localhost/assagaylodge/wp-content/uploads/2015/01/DSC01516-1148-x-764.jpg\" background_parallax=\"fixed\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"center center\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"20\" padding_bottom=\"20\" padding_left=\"0\" padding_right=\"0\" hundred_percent=\"no\" equal_height_columns=\"yes\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][recent_works layout=\"grid\" picture_size=\"auto\" boxed_text=\"unboxed\" filters=\"no\" columns=\"3\" column_spacing=\"12\" cat_slug=\"bedrooms\" exclude_cats=\"\" number_posts=\"6\" offset=\"\" excerpt_length=\"35\" strip_html=\"yes\" carousel_layout=\"title_on_rollover\" scroll_items=\"\" autoplay=\"no\" show_nav=\"yes\" mouse_scroll=\"no\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" class=\"\" id=\"\"][/recent_works][/fullwidth][fullwidth background_color=\"#f0f0ed\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"20\" padding_bottom=\"20\" padding_left=\"0\" padding_right=\"0\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][fusion_text]\r\n<h1 style=\"text-align: center;\">GARDENS</h1>\r\n[/fusion_text][separator style_type=\"single\" top_margin=\"\" bottom_margin=\"20\" sep_color=\"#000000\" border_size=\"\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"170px\" alignment=\"\" class=\"\" id=\"\"][one_sixth last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][/one_sixth][two_third last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][fusion_text]\r\n<h3 style=\"text-align: justify;\">The garden is large and offers many secluded spots to lose yourself in a book with a glass of wine underneath the shade of a tree, listening to the sounds of the birds and smelling the beautiful flowers.</h3>\r\n[/fusion_text][/two_third][one_sixth last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][/one_sixth][recent_works layout=\"grid\" picture_size=\"auto\" boxed_text=\"boxed\" filters=\"no\" columns=\"3\" column_spacing=\"12\" cat_slug=\"gardens\" exclude_cats=\"\" number_posts=\"9\" offset=\"\" excerpt_length=\"35\" strip_html=\"yes\" carousel_layout=\"title_on_rollover\" scroll_items=\"\" autoplay=\"no\" show_nav=\"yes\" mouse_scroll=\"no\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" class=\"\" id=\"\"][/recent_works][/fullwidth][fullwidth background_color=\"#ffffff\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"65px\" padding_bottom=\"65px\" padding_left=\"0px\" padding_right=\"0px\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][button link=\"http://localhost/assagaylodge/book-now/\" color=\"default\" size=\"xlarge\" type=\"3d\" shape=\"round\" target=\"_self\" title=\"\" gradient_colors=\"#f0f0ed|#f0f0ed\" gradient_hover_colors=\"#6666a4|#6666a4\" accent_color=\"#ffffff\" accent_hover_color=\"#ffffff\" bevel_color=\"\" border_width=\"0px\" icon=\"\" icon_position=\"left\" icon_divider=\"no\" modal=\"\" animation_type=\"0\" animation_direction=\"left\" animation_speed=\"1\" alignment=\"center\" class=\"\" id=\"\"]Make A Reservation Enquiry[/button][/fullwidth]', 'Home', '', 'inherit', 'closed', 'closed', '', '7-revision-v1', '', '', '2015-10-05 11:05:25', '2015-10-05 09:05:25', '', 7, 'http://localhost/assagaylodge/7-revision-v1/', 0, 'revision', '', 0),
(1123, 1, '2015-10-05 11:10:25', '2015-10-05 09:10:25', '[fullwidth background_color=\"#f0f0ed\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"90px\" padding_bottom=\"0px\" padding_left=\"0px\" padding_right=\"0px\" hundred_percent=\"yes\" equal_height_columns=\"yes\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][one_half last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"http://localhost/assagaylodge/wp-content/uploads/2015/01/DSC01554-e1442325082893.jpg\" background_repeat=\"no-repeat\" background_position=\"center center\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" class=\"\" id=\"\"][/one_half][one_half last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"30px\" margin_top=\"\" margin_bottom=\"0px\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" class=\"special\" id=\"\"][fusion_text]\r\n<h1 style=\"text-align: justify;\">5 BEDROOM FAMILY LODGE</h1>\r\n<h3 style=\"text-align: justify;\">A Four Season Lodge, because there’s Always Something to Celebrate… We offer comfort, relaxation and exceptional service right in the heart of 1000 Hills. Sleeps 10 From R450p/p  R2995 complete. The Forest, the Gardens, the Atmosphere all speak to  Rest  &amp; Relaxation.</h3>\r\n[/fusion_text][separator style_type=\"single\" top_margin=\"0\" bottom_margin=\"30\" sep_color=\"#000000\" border_size=\"\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"170px\" alignment=\"left\" class=\"separator-left\" id=\"\"][modal name=\"rates\" title=\"2015 Rates\" size=\"large\" background=\"\" border_color=\"\" show_footer=\"yes\" class=\"\" id=\"\"]ALL PRICES INCLUDE VAT\r\n<h3>Full House Self-Catering (Max 10 persons): <strong>R2950</strong> per night (R295 per person)</h3>\r\n&nbsp;\r\n<table style=\"width: 100%;\">\r\n<tbody>\r\n<tr>\r\n<td>Self-Catering:</td>\r\n<td></td>\r\n</tr>\r\n<tr>\r\n<td><strong>Weekdays (Monday, Tuesday, Wednesday or Thursday):</strong></td>\r\n<td><strong>Weekends (Friday, Saturday, Sunday):</strong></td>\r\n</tr>\r\n<tr>\r\n<td>Single Private Room <strong>R595</strong> per person per night\r\nSharing <strong>R395</strong> per person per night</td>\r\n<td>Single Private Room <strong>R645</strong> per person per night\r\nSharing <strong>R445</strong> per person per night</td>\r\n</tr>\r\n<tr>\r\n<td>Breakfast (Optional):</td>\r\n<td>Continental<strong> R55</strong> per person\r\nFull English <strong>R95</strong> per person</td>\r\n</tr>\r\n<tr>\r\n<td>Light Lunch (Optional): <strong>R95 </strong>per person</td>\r\n<td></td>\r\n</tr>\r\n<tr>\r\n<td>Dinners (Optional): <strong>R150 </strong>per person</td>\r\n<td></td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n&nbsp;\r\n<h3>Lodge &amp; Room Servicing Optional: <strong>R195 </strong>per day</h3>\r\n\r\n<hr />\r\n\r\n<h3>Specials</h3>\r\nWeekdays: Book any 3 weekdays, Monday, Tuesday, Wednesday or Thursday, and only pay for 2 days.\r\n\r\n15% Discount. Arrive Friday Depart Sunday.\r\n\r\n<p>ALL PRICES INCLUDE VAT</p>\r\n<h3>Full House Self-Catering (Max 10 persons): <strong>R2950</strong> per night (R295 per person)</h3>\r\n<h3>Self-Catering:</h3>\r\n<p><strong>Weekdays (Monday, Tuesday, Wednesday or Thursday):</strong></p>\r\n<p>Single Private Room <strong>R595</strong> per person per night<br />\r\nSharing <strong>R395</strong> per person per night</p>\r\n<p><strong>Weekends (Friday, Saturday, Sunday):</strong></p>\r\n<p>Single Private Room <strong>R645</strong> per person per night<br />\r\nSharing <strong>R445</strong> per person per night</p>\r\n<h3>Breakfast Optional:</h3>\r\n<p>Continental<strong> R55</strong> per person<br />\r\nFull English <strong>R95</strong> per person</p>\r\n<h3>Lodge & Room Servicing Optional: <strong>R195 </strong>per day</h3>\r\n<hr />\r\n<h3>Specials</h3>\r\n<p>Weekdays: Book any 3 weekdays, Monday, Tuesday, Wednesday or Thursday, and only pay for 2 days.</p>\r\n<p>15% Discount. Arrive Friday Depart Sunday.</p>\r\n[/modal][button link=\"\" color=\"darkgreen\" size=\"\"  type=\"\" shape=\"\" target=\"_self\" title=\"\" gradient_colors=\"|\" gradient_hover_colors=\"|\" accent_color=\"\" accent_hover_color=\"\" bevel_color=\"\" border_width=\"1px\" icon=\"\" icon_position=\"left\" icon_divider=\"no\" modal=\"rates\" animation_type=\"0\" animation_direction=\"left\" animation_speed=\"1\" alignment=\"\" class=\"\" id=\"\"]2015 RATES[/button][/one_half][/fullwidth][fullwidth background_color=\"#f0f0ed\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"20\" padding_bottom=\"20\" padding_left=\"0px\" padding_right=\"0px\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][one_half last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][fusion_text]\r\n<h3 style=\"text-align: justify;\">Set in the rolling peaks and valleys of a thousand hills surrounded by a canopy of indigenous trees  , you will find that horses still have right of way , we  certainly offer the best of both worlds , farm and charm coupled with modern amenities that will have you feeling relaxed and rejuvenated.</h3>\r\n<h3 style=\"text-align: justify;\">We know that sometimes you are searching for a romantic getaway or maybe a few days away with old friends. Other times you are searching for a place to host a weekend, family reunion or a business retreat. In addition to nightly room rentals, our lodge is also available for meetings, retreats  and makes the perfect place for a wedding party to stay together and get ready for the big day. Regardless, with our five comfortable and cozy guest bedrooms , multiple garden spaces and hideaways, and a  large private deck  where you can take a nap or read a book we definitely have the room for you!</h3>\r\n[/fusion_text][/one_half][one_half last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][fusion_text]\r\n<h3 style=\"text-align: justify;\">Our lodge has been in our family for years and has recently been beautifully renovated. Five rooms all with en-suite showers, tea/coffee making facilities, MNet and satellite television (DSTV)  open Wi-Fi. Sumptuous meals are served on the bottom deck at the swimming pool. Barbecues, afternoon tea in the garden or picnic baskets  on request all add to the service that awaits you, Our lodge features a  50 foot high Apex ceiling, spacious living, dining and bar area including a fitted kitchenette  all adding to a sense of homey comfort.</h3>\r\n<h3 style=\"text-align: justify;\">Be lulled to sleep by the sound of the waterfall  and tinkling stream just outside your window , waking from a peaceful night\'s sleep in a pillow-top bed dressed in luxurious linens to coddle you in ultimate comfort.</h3>\r\n<h3 style=\"text-align: justify;\">Our property boasts many different species of birds and animals. We have a resident otter, a family of wild bush pigs,  a family of rock rabbits, porcupine, little blue duikers, a variety of different frogs and an abundance of bird life, including the occasional snakes that pass through!</h3>\r\n<h3 style=\"text-align: justify;\">Evenings are quiet and peaceful taking you far away from the business of city life. This is a unique and memorable country experience. We look forward to having you as a guest!</h3>\r\n[/fusion_text][/one_half][/fullwidth][fullwidth background_color=\"#f0f0ed\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"20\" padding_bottom=\"20\" padding_left=\"0px\" padding_right=\"0px\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][fusion_text]\r\n<h1 style=\"text-align: center;\">Gallery</h1>\r\n[/fusion_text][separator style_type=\"single\" top_margin=\"\" bottom_margin=\"40\" sep_color=\"#000000\" border_size=\"\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"170px\" alignment=\"\" class=\"\" id=\"\"][one_sixth last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][/one_sixth][two_third last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][fusion_text]\r\n<h3 style=\"text-align: justify;\">The Lodge is open, spacious, comfortable and homely. During hot summer days, sit and bask in the sun on the deck  with one of our  picnic specials. In winter, snuggle up with a good book or challenge one another to a friendly board game in the glassed nook area .</h3>\r\n[/fusion_text][/two_third][one_sixth last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][/one_sixth][/fullwidth][fullwidth background_color=\"#f0f0ed\" background_image=\"http://localhost/assagaylodge/wp-content/uploads/2015/01/Wood_Texture.jpg\" background_parallax=\"fixed\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"30\" padding_bottom=\"10\" padding_left=\"0\" padding_right=\"0\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][recent_works layout=\"grid\" picture_size=\"auto\" boxed_text=\"unboxed\" filters=\"no\" columns=\"3\" column_spacing=\"12\" cat_slug=\"the-lodge\" exclude_cats=\"\" number_posts=\"9\" offset=\"\" excerpt_length=\"35\" strip_html=\"yes\" carousel_layout=\"title_on_rollover\" scroll_items=\"\" autoplay=\"no\" show_nav=\"yes\" mouse_scroll=\"no\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" class=\"\" id=\"\"][/recent_works][/fullwidth][fullwidth background_color=\"#f0f0ed\" background_image=\"\" background_parallax=\"fixed\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"20\" padding_bottom=\"20\" padding_left=\"0px\" padding_right=\"0px\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][fusion_text]\r\n<h1 style=\"text-align: center;\">BEDROOMS</h1>\r\n[/fusion_text][separator style_type=\"single\" top_margin=\"\" bottom_margin=\"20\" sep_color=\"#000000\" border_size=\"\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"170px\" alignment=\"\" class=\"\" id=\"\"][one_sixth last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][/one_sixth][two_third last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][fusion_text]\r\n<h3 style=\"text-align: justify;\">When it comes to our bedrooms we’re proud to say we offer something a little more special. One of five  lovingly and tastefully decorated guest rooms. Soft gray decor soothes the senses providing a peaceful, blissfully comfortable rest from your travels and hectic lives.</h3>\r\n<h3 style=\"text-align: justify;\">Our  bedrooms are spacious, clean, comfortable all en-suite, equipped with either king size or queen size beds. Each room sleeps two guests. The rooms have high ceilings, wall heaters &amp; ceiling fans. Beds all have electric blankets in Winter, 100% cotton percale sheets and thick hyper allergenic microfiber duvets and pillows. All guest rooms are cleaned with organic and green products. Amenities include hairdryers in each room. Three rooms feature King-sized beds  of which two can be  split into two single beds. Two  rooms can therefore be changed into a twin room upon request. Two rooms feature a Queen-sized double bed. These beds cannot be split into twin beds.</h3>\r\n[/fusion_text][/two_third][one_sixth last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][/one_sixth][/fullwidth][fullwidth background_color=\"\" background_image=\"http://localhost/assagaylodge/wp-content/uploads/2015/01/DSC01516-1148-x-764.jpg\" background_parallax=\"fixed\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"center center\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"20\" padding_bottom=\"20\" padding_left=\"0\" padding_right=\"0\" hundred_percent=\"no\" equal_height_columns=\"yes\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][recent_works layout=\"grid\" picture_size=\"auto\" boxed_text=\"unboxed\" filters=\"no\" columns=\"3\" column_spacing=\"12\" cat_slug=\"bedrooms\" exclude_cats=\"\" number_posts=\"6\" offset=\"\" excerpt_length=\"35\" strip_html=\"yes\" carousel_layout=\"title_on_rollover\" scroll_items=\"\" autoplay=\"no\" show_nav=\"yes\" mouse_scroll=\"no\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" class=\"\" id=\"\"][/recent_works][/fullwidth][fullwidth background_color=\"#f0f0ed\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"20\" padding_bottom=\"20\" padding_left=\"0\" padding_right=\"0\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][fusion_text]\r\n<h1 style=\"text-align: center;\">GARDENS</h1>\r\n[/fusion_text][separator style_type=\"single\" top_margin=\"\" bottom_margin=\"20\" sep_color=\"#000000\" border_size=\"\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"170px\" alignment=\"\" class=\"\" id=\"\"][one_sixth last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][/one_sixth][two_third last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][fusion_text]\r\n<h3 style=\"text-align: justify;\">The garden is large and offers many secluded spots to lose yourself in a book with a glass of wine underneath the shade of a tree, listening to the sounds of the birds and smelling the beautiful flowers.</h3>\r\n[/fusion_text][/two_third][one_sixth last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][/one_sixth][recent_works layout=\"grid\" picture_size=\"auto\" boxed_text=\"boxed\" filters=\"no\" columns=\"3\" column_spacing=\"12\" cat_slug=\"gardens\" exclude_cats=\"\" number_posts=\"9\" offset=\"\" excerpt_length=\"35\" strip_html=\"yes\" carousel_layout=\"title_on_rollover\" scroll_items=\"\" autoplay=\"no\" show_nav=\"yes\" mouse_scroll=\"no\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" class=\"\" id=\"\"][/recent_works][/fullwidth][fullwidth background_color=\"#ffffff\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"65px\" padding_bottom=\"65px\" padding_left=\"0px\" padding_right=\"0px\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][button link=\"http://localhost/assagaylodge/book-now/\" color=\"default\" size=\"xlarge\"  type=\"3d\" shape=\"round\" target=\"_self\" title=\"\" gradient_colors=\"#f0f0ed|#f0f0ed\" gradient_hover_colors=\"#6666a4|#6666a4\" accent_color=\"#ffffff\" accent_hover_color=\"#ffffff\" bevel_color=\"\" border_width=\"0px\" icon=\"\" icon_position=\"left\" icon_divider=\"no\" modal=\"\" animation_type=\"0\" animation_direction=\"left\" animation_speed=\"1\" alignment=\"center\" class=\"\" id=\"\"]Make A Reservation Enquiry[/button][/fullwidth]', 'Home', '', 'inherit', 'closed', 'closed', '', '7-revision-v1', '', '', '2015-10-05 11:10:25', '2015-10-05 09:10:25', '', 7, 'http://localhost/assagaylodge/7-revision-v1/', 0, 'revision', '', 0);
INSERT INTO `wp_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(1124, 1, '2015-10-05 11:25:47', '2015-10-05 09:25:47', '[fullwidth background_color=\"#f0f0ed\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"90px\" padding_bottom=\"0px\" padding_left=\"0px\" padding_right=\"0px\" hundred_percent=\"yes\" equal_height_columns=\"yes\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][one_half last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"http://localhost/assagaylodge/wp-content/uploads/2015/01/DSC01554-e1442325082893.jpg\" background_repeat=\"no-repeat\" background_position=\"center center\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" class=\"\" id=\"\"][/one_half][one_half last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"30px\" margin_top=\"\" margin_bottom=\"0px\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" class=\"special\" id=\"\"][fusion_text]\r\n<h1 style=\"text-align: justify;\">5 BEDROOM FAMILY LODGE</h1>\r\n<h3 style=\"text-align: justify;\">A Four Season Lodge, because there’s Always Something to Celebrate… We offer comfort, relaxation and exceptional service right in the heart of 1000 Hills. Sleeps 10 From R450p/p  R2995 complete. The Forest, the Gardens, the Atmosphere all speak to  Rest  &amp; Relaxation.</h3>\r\n[/fusion_text][separator style_type=\"single\" top_margin=\"0\" bottom_margin=\"30\" sep_color=\"#000000\" border_size=\"\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"170px\" alignment=\"left\" class=\"separator-left\" id=\"\"][modal name=\"rates\" title=\"2015 Rates\" size=\"large\" background=\"\" border_color=\"\" show_footer=\"yes\" class=\"\" id=\"\"]ALL PRICES INCLUDE VAT\r\n<table style=\"width: 100%;\">\r\n<tbody>\r\n<tr>\r\n<td><strong>Self-Catering:</strong></td>\r\n<td></td>\r\n</tr>\r\n<tr>\r\n<td>Full House Self-Catering (Max 10 persons)</td>\r\n<td><strong>R3000</strong> per night (R300 per person)</td>\r\n</tr>\r\n<tr>\r\n<td>Lodge &amp; Room Servicing Optional</td>\r\n<td><strong>R200</strong> per day</td>\r\n</tr>\r\n<tr>\r\n<td>Single Private Room</td>\r\n<td><strong>R650</strong> per person per night</td>\r\n</tr>\r\n<tr>\r\n<td>Room Sharing</td>\r\n<td><strong>R500</strong> per person per night</td>\r\n</tr>\r\n<tr>\r\n<td><strong>Meals (Optional)</strong></td>\r\n<td></td>\r\n</tr>\r\n<tr>\r\n<td>Breakfast (Continental)</td>\r\n<td><strong>R55</strong> per person</td>\r\n</tr>\r\n<tr>\r\n<td>Breakfast (Full English)</td>\r\n<td><strong>R95</strong> per person</td>\r\n</tr>\r\n<tr>\r\n<td>Light Lunch (Optional)</td>\r\n<td><strong>R95 </strong>per person</td>\r\n</tr>\r\n<tr>\r\n<td>Dinners (Optional)</td>\r\n<td><strong>R150 </strong>per person</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n&nbsp;\r\n\r\n<hr />\r\n\r\n<p>ALL PRICES INCLUDE VAT</p>\r\n<h3>Full House Self-Catering (Max 10 persons): <strong>R2950</strong> per night (R295 per person)</h3>\r\n<h3>Self-Catering:</h3>\r\n<p><strong>Weekdays (Monday, Tuesday, Wednesday or Thursday):</strong></p>\r\n<p>Single Private Room <strong>R595</strong> per person per night<br />Sharing <strong>R395</strong> per person per night</p>\r\n<p><strong>Weekends (Friday, Saturday, Sunday):</strong></p>\r\n<p>Single Private Room <strong>R645</strong> per person per night<br />Sharing <strong>R445</strong> per person per night</p>\r\n<h3>Breakfast Optional:</h3>\r\n<p>Continental<strong> R55</strong> per person<br />Full English <strong>R95</strong> per person</p>\r\n<h3>Lodge & Room Servicing Optional: <strong>R195 </strong>per day</h3>\r\n<hr />\r\n<h3>Specials</h3>\r\n<p>Weekdays: Book any 3 weekdays, Monday, Tuesday, Wednesday or Thursday, and only pay for 2 days.</p>\r\n<p>15% Discount. Arrive Friday Depart Sunday.</p>\r\n[/modal][button link=\"\" color=\"darkgreen\" size=\"\"  type=\"\" shape=\"\" target=\"_self\" title=\"\" gradient_colors=\"|\" gradient_hover_colors=\"|\" accent_color=\"\" accent_hover_color=\"\" bevel_color=\"\" border_width=\"1px\" icon=\"\" icon_position=\"left\" icon_divider=\"no\" modal=\"rates\" animation_type=\"0\" animation_direction=\"left\" animation_speed=\"1\" alignment=\"\" class=\"\" id=\"\"]2015 RATES[/button][/one_half][/fullwidth][fullwidth background_color=\"#f0f0ed\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"20\" padding_bottom=\"20\" padding_left=\"0px\" padding_right=\"0px\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][one_half last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][fusion_text]\r\n<h3 style=\"text-align: justify;\">Set in the rolling peaks and valleys of a thousand hills surrounded by a canopy of indigenous trees  , you will find that horses still have right of way , we  certainly offer the best of both worlds , farm and charm coupled with modern amenities that will have you feeling relaxed and rejuvenated.</h3>\r\n<h3 style=\"text-align: justify;\">We know that sometimes you are searching for a romantic getaway or maybe a few days away with old friends. Other times you are searching for a place to host a weekend, family reunion or a business retreat. In addition to nightly room rentals, our lodge is also available for meetings, retreats  and makes the perfect place for a wedding party to stay together and get ready for the big day. Regardless, with our five comfortable and cozy guest bedrooms , multiple garden spaces and hideaways, and a  large private deck  where you can take a nap or read a book we definitely have the room for you!</h3>\r\n[/fusion_text][/one_half][one_half last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][fusion_text]\r\n<h3 style=\"text-align: justify;\">Our lodge has been in our family for years and has recently been beautifully renovated. Five rooms all with en-suite showers, tea/coffee making facilities, MNet and satellite television (DSTV)  open Wi-Fi. Sumptuous meals are served on the bottom deck at the swimming pool. Barbecues, afternoon tea in the garden or picnic baskets  on request all add to the service that awaits you, Our lodge features a  50 foot high Apex ceiling, spacious living, dining and bar area including a fitted kitchenette  all adding to a sense of homey comfort.</h3>\r\n<h3 style=\"text-align: justify;\">Be lulled to sleep by the sound of the waterfall  and tinkling stream just outside your window , waking from a peaceful night\'s sleep in a pillow-top bed dressed in luxurious linens to coddle you in ultimate comfort.</h3>\r\n<h3 style=\"text-align: justify;\">Our property boasts many different species of birds and animals. We have a resident otter, a family of wild bush pigs,  a family of rock rabbits, porcupine, little blue duikers, a variety of different frogs and an abundance of bird life, including the occasional snakes that pass through!</h3>\r\n<h3 style=\"text-align: justify;\">Evenings are quiet and peaceful taking you far away from the business of city life. This is a unique and memorable country experience. We look forward to having you as a guest!</h3>\r\n[/fusion_text][/one_half][/fullwidth][fullwidth background_color=\"#f0f0ed\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"20\" padding_bottom=\"20\" padding_left=\"0px\" padding_right=\"0px\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][fusion_text]\r\n<h1 style=\"text-align: center;\">Gallery</h1>\r\n[/fusion_text][separator style_type=\"single\" top_margin=\"\" bottom_margin=\"40\" sep_color=\"#000000\" border_size=\"\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"170px\" alignment=\"\" class=\"\" id=\"\"][one_sixth last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][/one_sixth][two_third last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][fusion_text]\r\n<h3 style=\"text-align: justify;\">The Lodge is open, spacious, comfortable and homely. During hot summer days, sit and bask in the sun on the deck  with one of our  picnic specials. In winter, snuggle up with a good book or challenge one another to a friendly board game in the glassed nook area .</h3>\r\n[/fusion_text][/two_third][one_sixth last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][/one_sixth][/fullwidth][fullwidth background_color=\"#f0f0ed\" background_image=\"http://localhost/assagaylodge/wp-content/uploads/2015/01/Wood_Texture.jpg\" background_parallax=\"fixed\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"30\" padding_bottom=\"10\" padding_left=\"0\" padding_right=\"0\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][recent_works layout=\"grid\" picture_size=\"auto\" boxed_text=\"unboxed\" filters=\"no\" columns=\"3\" column_spacing=\"12\" cat_slug=\"the-lodge\" exclude_cats=\"\" number_posts=\"9\" offset=\"\" excerpt_length=\"35\" strip_html=\"yes\" carousel_layout=\"title_on_rollover\" scroll_items=\"\" autoplay=\"no\" show_nav=\"yes\" mouse_scroll=\"no\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" class=\"\" id=\"\"][/recent_works][/fullwidth][fullwidth background_color=\"#f0f0ed\" background_image=\"\" background_parallax=\"fixed\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"20\" padding_bottom=\"20\" padding_left=\"0px\" padding_right=\"0px\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][fusion_text]\r\n<h1 style=\"text-align: center;\">BEDROOMS</h1>\r\n[/fusion_text][separator style_type=\"single\" top_margin=\"\" bottom_margin=\"20\" sep_color=\"#000000\" border_size=\"\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"170px\" alignment=\"\" class=\"\" id=\"\"][one_sixth last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][/one_sixth][two_third last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][fusion_text]\r\n<h3 style=\"text-align: justify;\">When it comes to our bedrooms we’re proud to say we offer something a little more special. One of five  lovingly and tastefully decorated guest rooms. Soft gray decor soothes the senses providing a peaceful, blissfully comfortable rest from your travels and hectic lives.</h3>\r\n<h3 style=\"text-align: justify;\">Our  bedrooms are spacious, clean, comfortable all en-suite, equipped with either king size or queen size beds. Each room sleeps two guests. The rooms have high ceilings, wall heaters &amp; ceiling fans. Beds all have electric blankets in Winter, 100% cotton percale sheets and thick hyper allergenic microfiber duvets and pillows. All guest rooms are cleaned with organic and green products. Amenities include hairdryers in each room. Three rooms feature King-sized beds  of which two can be  split into two single beds. Two  rooms can therefore be changed into a twin room upon request. Two rooms feature a Queen-sized double bed. These beds cannot be split into twin beds.</h3>\r\n[/fusion_text][/two_third][one_sixth last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][/one_sixth][/fullwidth][fullwidth background_color=\"\" background_image=\"http://localhost/assagaylodge/wp-content/uploads/2015/01/DSC01516-1148-x-764.jpg\" background_parallax=\"fixed\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"center center\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"20\" padding_bottom=\"20\" padding_left=\"0\" padding_right=\"0\" hundred_percent=\"no\" equal_height_columns=\"yes\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][recent_works layout=\"grid\" picture_size=\"auto\" boxed_text=\"unboxed\" filters=\"no\" columns=\"3\" column_spacing=\"12\" cat_slug=\"bedrooms\" exclude_cats=\"\" number_posts=\"6\" offset=\"\" excerpt_length=\"35\" strip_html=\"yes\" carousel_layout=\"title_on_rollover\" scroll_items=\"\" autoplay=\"no\" show_nav=\"yes\" mouse_scroll=\"no\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" class=\"\" id=\"\"][/recent_works][/fullwidth][fullwidth background_color=\"#f0f0ed\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"20\" padding_bottom=\"20\" padding_left=\"0\" padding_right=\"0\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][fusion_text]\r\n<h1 style=\"text-align: center;\">GARDENS</h1>\r\n[/fusion_text][separator style_type=\"single\" top_margin=\"\" bottom_margin=\"20\" sep_color=\"#000000\" border_size=\"\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"170px\" alignment=\"\" class=\"\" id=\"\"][one_sixth last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][/one_sixth][two_third last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][fusion_text]\r\n<h3 style=\"text-align: justify;\">The garden is large and offers many secluded spots to lose yourself in a book with a glass of wine underneath the shade of a tree, listening to the sounds of the birds and smelling the beautiful flowers.</h3>\r\n[/fusion_text][/two_third][one_sixth last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][/one_sixth][recent_works layout=\"grid\" picture_size=\"auto\" boxed_text=\"boxed\" filters=\"no\" columns=\"3\" column_spacing=\"12\" cat_slug=\"gardens\" exclude_cats=\"\" number_posts=\"9\" offset=\"\" excerpt_length=\"35\" strip_html=\"yes\" carousel_layout=\"title_on_rollover\" scroll_items=\"\" autoplay=\"no\" show_nav=\"yes\" mouse_scroll=\"no\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" class=\"\" id=\"\"][/recent_works][/fullwidth][fullwidth background_color=\"#ffffff\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"65px\" padding_bottom=\"65px\" padding_left=\"0px\" padding_right=\"0px\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][button link=\"http://localhost/assagaylodge/book-now/\" color=\"default\" size=\"xlarge\"  type=\"3d\" shape=\"round\" target=\"_self\" title=\"\" gradient_colors=\"#f0f0ed|#f0f0ed\" gradient_hover_colors=\"#6666a4|#6666a4\" accent_color=\"#ffffff\" accent_hover_color=\"#ffffff\" bevel_color=\"\" border_width=\"0px\" icon=\"\" icon_position=\"left\" icon_divider=\"no\" modal=\"\" animation_type=\"0\" animation_direction=\"left\" animation_speed=\"1\" alignment=\"center\" class=\"\" id=\"\"]Make A Reservation Enquiry[/button][/fullwidth]', 'Home', '', 'inherit', 'closed', 'closed', '', '7-revision-v1', '', '', '2015-10-05 11:25:47', '2015-10-05 09:25:47', '', 7, 'http://localhost/assagaylodge/7-revision-v1/', 0, 'revision', '', 0),
(1125, 1, '2015-10-05 11:27:36', '2015-10-05 09:27:36', '[fullwidth background_color=\"#f0f0ed\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"90px\" padding_bottom=\"0px\" padding_left=\"0px\" padding_right=\"0px\" hundred_percent=\"yes\" equal_height_columns=\"yes\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][one_half last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"http://localhost/assagaylodge/wp-content/uploads/2015/01/DSC01554-e1442325082893.jpg\" background_repeat=\"no-repeat\" background_position=\"center center\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" class=\"\" id=\"\"][/one_half][one_half last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"30px\" margin_top=\"\" margin_bottom=\"0px\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" class=\"special\" id=\"\"][fusion_text]\r\n<h1 style=\"text-align: justify;\">5 BEDROOM FAMILY LODGE</h1>\r\n<h3 style=\"text-align: justify;\">A Four Season Lodge, because there’s Always Something to Celebrate… We offer comfort, relaxation and exceptional service right in the heart of 1000 Hills. Sleeps 10 From R450p/p  R2995 complete. The Forest, the Gardens, the Atmosphere all speak to  Rest  &amp; Relaxation.</h3>\r\n[/fusion_text][separator style_type=\"single\" top_margin=\"0\" bottom_margin=\"30\" sep_color=\"#000000\" border_size=\"\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"170px\" alignment=\"left\" class=\"separator-left\" id=\"\"][modal name=\"rates\" title=\"2015 Rates\" size=\"large\" background=\"\" border_color=\"\" show_footer=\"yes\" class=\"\" id=\"\"]<p>ALL PRICES INCLUDE VAT</p>\r\n<table style=\"width: 100%;\" cellspacing=\"10\">\r\n<tbody>\r\n<tr>\r\n<td><strong>Self-Catering:</strong></td>\r\n<td></td>\r\n</tr>\r\n<tr>\r\n<td>Full House Self-Catering (Max 10 persons)</td>\r\n<td><strong>R3000</strong> per night (R300 per person)</td>\r\n</tr>\r\n<tr>\r\n<td>Lodge & Room Servicing Optional</td>\r\n<td><strong>R200</strong> per day</td>\r\n</tr>\r\n<tr>\r\n<td>Single Private Room</td>\r\n<td><strong>R650</strong> per person per night</td>\r\n</tr>\r\n<tr>\r\n<td>Room Sharing</td>\r\n<td><strong>R500</strong> per person per night</td>\r\n</tr>\r\n<tr>\r\n<td><strong>Meals (Optional)</strong></td>\r\n<td></td>\r\n</tr>\r\n<tr>\r\n<td>Breakfast (Continental)</td>\r\n<td><strong>R55</strong> per person</td>\r\n</tr>\r\n<tr>\r\n<td>Breakfast (Full English)</td>\r\n<td><strong>R95</strong> per person</td>\r\n</tr>\r\n<tr>\r\n<td>Light Lunch (Optional)</td>\r\n<td><strong>R95 </strong>per person</td>\r\n</tr>\r\n<tr>\r\n<td>Dinners (Optional)</td>\r\n<td><strong>R150 </strong>per person</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n<p> </p>\r\n<hr />\r\n<p>ALL PRICES INCLUDE VAT</p>\r\n<h3>Full House Self-Catering (Max 10 persons): <strong>R2950</strong> per night (R295 per person)</h3>\r\n<h3>Self-Catering:</h3>\r\n<p><strong>Weekdays (Monday, Tuesday, Wednesday or Thursday):</strong></p>\r\n<p>Single Private Room <strong>R595</strong> per person per night<br />Sharing <strong>R395</strong> per person per night</p>\r\n<p><strong>Weekends (Friday, Saturday, Sunday):</strong></p>\r\n<p>Single Private Room <strong>R645</strong> per person per night<br />Sharing <strong>R445</strong> per person per night</p>\r\n<h3>Breakfast Optional:</h3>\r\n<p>Continental<strong> R55</strong> per person<br />Full English <strong>R95</strong> per person</p>\r\n<h3>Lodge & Room Servicing Optional: <strong>R195 </strong>per day</h3>\r\n<hr />\r\n<h3>Specials</h3>\r\n<p>Weekdays: Book any 3 weekdays, Monday, Tuesday, Wednesday or Thursday, and only pay for 2 days.</p>\r\n<p>15% Discount. Arrive Friday Depart Sunday.</p>\r\n[/modal][button link=\"\" color=\"darkgreen\" size=\"\"  type=\"\" shape=\"\" target=\"_self\" title=\"\" gradient_colors=\"|\" gradient_hover_colors=\"|\" accent_color=\"\" accent_hover_color=\"\" bevel_color=\"\" border_width=\"1px\" icon=\"\" icon_position=\"left\" icon_divider=\"no\" modal=\"rates\" animation_type=\"0\" animation_direction=\"left\" animation_speed=\"1\" alignment=\"\" class=\"\" id=\"\"]2015 RATES[/button][/one_half][/fullwidth][fullwidth background_color=\"#f0f0ed\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"20\" padding_bottom=\"20\" padding_left=\"0px\" padding_right=\"0px\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][one_half last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][fusion_text]\r\n<h3 style=\"text-align: justify;\">Set in the rolling peaks and valleys of a thousand hills surrounded by a canopy of indigenous trees  , you will find that horses still have right of way , we  certainly offer the best of both worlds , farm and charm coupled with modern amenities that will have you feeling relaxed and rejuvenated.</h3>\r\n<h3 style=\"text-align: justify;\">We know that sometimes you are searching for a romantic getaway or maybe a few days away with old friends. Other times you are searching for a place to host a weekend, family reunion or a business retreat. In addition to nightly room rentals, our lodge is also available for meetings, retreats  and makes the perfect place for a wedding party to stay together and get ready for the big day. Regardless, with our five comfortable and cozy guest bedrooms , multiple garden spaces and hideaways, and a  large private deck  where you can take a nap or read a book we definitely have the room for you!</h3>\r\n[/fusion_text][/one_half][one_half last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][fusion_text]\r\n<h3 style=\"text-align: justify;\">Our lodge has been in our family for years and has recently been beautifully renovated. Five rooms all with en-suite showers, tea/coffee making facilities, MNet and satellite television (DSTV)  open Wi-Fi. Sumptuous meals are served on the bottom deck at the swimming pool. Barbecues, afternoon tea in the garden or picnic baskets  on request all add to the service that awaits you, Our lodge features a  50 foot high Apex ceiling, spacious living, dining and bar area including a fitted kitchenette  all adding to a sense of homey comfort.</h3>\r\n<h3 style=\"text-align: justify;\">Be lulled to sleep by the sound of the waterfall  and tinkling stream just outside your window , waking from a peaceful night\'s sleep in a pillow-top bed dressed in luxurious linens to coddle you in ultimate comfort.</h3>\r\n<h3 style=\"text-align: justify;\">Our property boasts many different species of birds and animals. We have a resident otter, a family of wild bush pigs,  a family of rock rabbits, porcupine, little blue duikers, a variety of different frogs and an abundance of bird life, including the occasional snakes that pass through!</h3>\r\n<h3 style=\"text-align: justify;\">Evenings are quiet and peaceful taking you far away from the business of city life. This is a unique and memorable country experience. We look forward to having you as a guest!</h3>\r\n[/fusion_text][/one_half][/fullwidth][fullwidth background_color=\"#f0f0ed\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"20\" padding_bottom=\"20\" padding_left=\"0px\" padding_right=\"0px\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][fusion_text]\r\n<h1 style=\"text-align: center;\">Gallery</h1>\r\n[/fusion_text][separator style_type=\"single\" top_margin=\"\" bottom_margin=\"40\" sep_color=\"#000000\" border_size=\"\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"170px\" alignment=\"\" class=\"\" id=\"\"][one_sixth last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][/one_sixth][two_third last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][fusion_text]\r\n<h3 style=\"text-align: justify;\">The Lodge is open, spacious, comfortable and homely. During hot summer days, sit and bask in the sun on the deck  with one of our  picnic specials. In winter, snuggle up with a good book or challenge one another to a friendly board game in the glassed nook area .</h3>\r\n[/fusion_text][/two_third][one_sixth last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][/one_sixth][/fullwidth][fullwidth background_color=\"#f0f0ed\" background_image=\"http://localhost/assagaylodge/wp-content/uploads/2015/01/Wood_Texture.jpg\" background_parallax=\"fixed\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"30\" padding_bottom=\"10\" padding_left=\"0\" padding_right=\"0\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][recent_works layout=\"grid\" picture_size=\"auto\" boxed_text=\"unboxed\" filters=\"no\" columns=\"3\" column_spacing=\"12\" cat_slug=\"the-lodge\" exclude_cats=\"\" number_posts=\"9\" offset=\"\" excerpt_length=\"35\" strip_html=\"yes\" carousel_layout=\"title_on_rollover\" scroll_items=\"\" autoplay=\"no\" show_nav=\"yes\" mouse_scroll=\"no\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" class=\"\" id=\"\"][/recent_works][/fullwidth][fullwidth background_color=\"#f0f0ed\" background_image=\"\" background_parallax=\"fixed\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"20\" padding_bottom=\"20\" padding_left=\"0px\" padding_right=\"0px\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][fusion_text]\r\n<h1 style=\"text-align: center;\">BEDROOMS</h1>\r\n[/fusion_text][separator style_type=\"single\" top_margin=\"\" bottom_margin=\"20\" sep_color=\"#000000\" border_size=\"\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"170px\" alignment=\"\" class=\"\" id=\"\"][one_sixth last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][/one_sixth][two_third last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][fusion_text]\r\n<h3 style=\"text-align: justify;\">When it comes to our bedrooms we’re proud to say we offer something a little more special. One of five  lovingly and tastefully decorated guest rooms. Soft gray decor soothes the senses providing a peaceful, blissfully comfortable rest from your travels and hectic lives.</h3>\r\n<h3 style=\"text-align: justify;\">Our  bedrooms are spacious, clean, comfortable all en-suite, equipped with either king size or queen size beds. Each room sleeps two guests. The rooms have high ceilings, wall heaters &amp; ceiling fans. Beds all have electric blankets in Winter, 100% cotton percale sheets and thick hyper allergenic microfiber duvets and pillows. All guest rooms are cleaned with organic and green products. Amenities include hairdryers in each room. Three rooms feature King-sized beds  of which two can be  split into two single beds. Two  rooms can therefore be changed into a twin room upon request. Two rooms feature a Queen-sized double bed. These beds cannot be split into twin beds.</h3>\r\n[/fusion_text][/two_third][one_sixth last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][/one_sixth][/fullwidth][fullwidth background_color=\"\" background_image=\"http://localhost/assagaylodge/wp-content/uploads/2015/01/DSC01516-1148-x-764.jpg\" background_parallax=\"fixed\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"center center\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"20\" padding_bottom=\"20\" padding_left=\"0\" padding_right=\"0\" hundred_percent=\"no\" equal_height_columns=\"yes\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][recent_works layout=\"grid\" picture_size=\"auto\" boxed_text=\"unboxed\" filters=\"no\" columns=\"3\" column_spacing=\"12\" cat_slug=\"bedrooms\" exclude_cats=\"\" number_posts=\"6\" offset=\"\" excerpt_length=\"35\" strip_html=\"yes\" carousel_layout=\"title_on_rollover\" scroll_items=\"\" autoplay=\"no\" show_nav=\"yes\" mouse_scroll=\"no\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" class=\"\" id=\"\"][/recent_works][/fullwidth][fullwidth background_color=\"#f0f0ed\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"20\" padding_bottom=\"20\" padding_left=\"0\" padding_right=\"0\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][fusion_text]\r\n<h1 style=\"text-align: center;\">GARDENS</h1>\r\n[/fusion_text][separator style_type=\"single\" top_margin=\"\" bottom_margin=\"20\" sep_color=\"#000000\" border_size=\"\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"170px\" alignment=\"\" class=\"\" id=\"\"][one_sixth last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][/one_sixth][two_third last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][fusion_text]\r\n<h3 style=\"text-align: justify;\">The garden is large and offers many secluded spots to lose yourself in a book with a glass of wine underneath the shade of a tree, listening to the sounds of the birds and smelling the beautiful flowers.</h3>\r\n[/fusion_text][/two_third][one_sixth last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][/one_sixth][recent_works layout=\"grid\" picture_size=\"auto\" boxed_text=\"boxed\" filters=\"no\" columns=\"3\" column_spacing=\"12\" cat_slug=\"gardens\" exclude_cats=\"\" number_posts=\"9\" offset=\"\" excerpt_length=\"35\" strip_html=\"yes\" carousel_layout=\"title_on_rollover\" scroll_items=\"\" autoplay=\"no\" show_nav=\"yes\" mouse_scroll=\"no\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" class=\"\" id=\"\"][/recent_works][/fullwidth][fullwidth background_color=\"#ffffff\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"65px\" padding_bottom=\"65px\" padding_left=\"0px\" padding_right=\"0px\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][button link=\"http://localhost/assagaylodge/book-now/\" color=\"default\" size=\"xlarge\"  type=\"3d\" shape=\"round\" target=\"_self\" title=\"\" gradient_colors=\"#f0f0ed|#f0f0ed\" gradient_hover_colors=\"#6666a4|#6666a4\" accent_color=\"#ffffff\" accent_hover_color=\"#ffffff\" bevel_color=\"\" border_width=\"0px\" icon=\"\" icon_position=\"left\" icon_divider=\"no\" modal=\"\" animation_type=\"0\" animation_direction=\"left\" animation_speed=\"1\" alignment=\"center\" class=\"\" id=\"\"]Make A Reservation Enquiry[/button][/fullwidth]', 'Home', '', 'inherit', 'closed', 'closed', '', '7-revision-v1', '', '', '2015-10-05 11:27:36', '2015-10-05 09:27:36', '', 7, 'http://localhost/assagaylodge/7-revision-v1/', 0, 'revision', '', 0);
INSERT INTO `wp_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(1126, 1, '2015-10-05 11:28:49', '2015-10-05 09:28:49', '[fullwidth background_color=\"#f0f0ed\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"90px\" padding_bottom=\"0px\" padding_left=\"0px\" padding_right=\"0px\" hundred_percent=\"yes\" equal_height_columns=\"yes\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][one_half last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"http://localhost/assagaylodge/wp-content/uploads/2015/01/DSC01554-e1442325082893.jpg\" background_repeat=\"no-repeat\" background_position=\"center center\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" class=\"\" id=\"\"][/one_half][one_half last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"30px\" margin_top=\"\" margin_bottom=\"0px\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" class=\"special\" id=\"\"][fusion_text]\r\n<h1 style=\"text-align: justify;\">5 BEDROOM FAMILY LODGE</h1>\r\n<h3 style=\"text-align: justify;\">A Four Season Lodge, because there’s Always Something to Celebrate… We offer comfort, relaxation and exceptional service right in the heart of 1000 Hills. Sleeps 10 From R450p/p  R2995 complete. The Forest, the Gardens, the Atmosphere all speak to  Rest  &amp; Relaxation.</h3>\r\n[/fusion_text][separator style_type=\"single\" top_margin=\"0\" bottom_margin=\"30\" sep_color=\"#000000\" border_size=\"\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"170px\" alignment=\"left\" class=\"separator-left\" id=\"\"][modal name=\"rates\" title=\"2015 Rates\" size=\"large\" background=\"\" border_color=\"\" show_footer=\"yes\" class=\"\" id=\"\"]\r\n\r\nALL PRICES INCLUDE VAT\r\n<table style=\"width: 100%;\" cellspacing=\"10\">\r\n<tbody>\r\n<tr>\r\n<td><strong>Self-Catering:</strong></td>\r\n<td></td>\r\n</tr>\r\n<tr>\r\n<td>Full House Self-Catering (Max 10 persons)</td>\r\n<td><strong>R3000</strong> per night (R300 per person)</td>\r\n</tr>\r\n<tr>\r\n<td>Lodge &amp; Room Servicing Optional</td>\r\n<td><strong>R200</strong> per day</td>\r\n</tr>\r\n<tr>\r\n<td>Single Private Room</td>\r\n<td><strong>R650</strong> per person per night</td>\r\n</tr>\r\n<tr>\r\n<td>Room Sharing</td>\r\n<td><strong>R500</strong> per person per night</td>\r\n</tr>\r\n<tr>\r\n<td><strong>Meals (Optional)</strong></td>\r\n<td></td>\r\n</tr>\r\n<tr>\r\n<td>Breakfast (Continental)</td>\r\n<td><strong>R55</strong> per person</td>\r\n</tr>\r\n<tr>\r\n<td>Breakfast (Full English)</td>\r\n<td><strong>R95</strong> per person</td>\r\n</tr>\r\n<tr>\r\n<td>Light Lunch (Optional)</td>\r\n<td><strong>R95 </strong>per person</td>\r\n</tr>\r\n<tr>\r\n<td>Dinners (Optional)</td>\r\n<td><strong>R150 </strong>per person</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n\r\n<hr />\r\n\r\nALL PRICES INCLUDE VAT\r\n<h3>Full House Self-Catering (Max 10 persons): <strong>R2950</strong> per night (R295 per person)</h3>\r\n<h3>Self-Catering:</h3>\r\n<strong>Weekdays (Monday, Tuesday, Wednesday or Thursday):</strong>\r\n\r\nSingle Private Room <strong>R595</strong> per person per night\r\nSharing <strong>R395</strong> per person per night\r\n\r\n<strong>Weekends (Friday, Saturday, Sunday):</strong>\r\n\r\nSingle Private Room <strong>R645</strong> per person per night\r\nSharing <strong>R445</strong> per person per night\r\n<h3>Breakfast Optional:</h3>\r\nContinental<strong> R55</strong> per person\r\nFull English <strong>R95</strong> per person\r\n<h3>Lodge &amp; Room Servicing Optional: <strong>R195 </strong>per day</h3>\r\n\r\n<hr />\r\n\r\n<h3>Specials</h3>\r\nWeekdays: Book any 3 weekdays, Monday, Tuesday, Wednesday or Thursday, and only pay for 2 days.\r\n\r\n15% Discount. Arrive Friday Depart Sunday.\r\n\r\n[/modal][button link=\"\" color=\"darkgreen\" size=\"\" type=\"\" shape=\"\" target=\"_self\" title=\"\" gradient_colors=\"|\" gradient_hover_colors=\"|\" accent_color=\"\" accent_hover_color=\"\" bevel_color=\"\" border_width=\"1px\" icon=\"\" icon_position=\"left\" icon_divider=\"no\" modal=\"rates\" animation_type=\"0\" animation_direction=\"left\" animation_speed=\"1\" alignment=\"\" class=\"\" id=\"\"]2015 RATES[/button][/one_half][/fullwidth][fullwidth background_color=\"#f0f0ed\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"20\" padding_bottom=\"20\" padding_left=\"0px\" padding_right=\"0px\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][one_half last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][fusion_text]\r\n<h3 style=\"text-align: justify;\">Set in the rolling peaks and valleys of a thousand hills surrounded by a canopy of indigenous trees  , you will find that horses still have right of way , we  certainly offer the best of both worlds , farm and charm coupled with modern amenities that will have you feeling relaxed and rejuvenated.</h3>\r\n<h3 style=\"text-align: justify;\">We know that sometimes you are searching for a romantic getaway or maybe a few days away with old friends. Other times you are searching for a place to host a weekend, family reunion or a business retreat. In addition to nightly room rentals, our lodge is also available for meetings, retreats  and makes the perfect place for a wedding party to stay together and get ready for the big day. Regardless, with our five comfortable and cozy guest bedrooms , multiple garden spaces and hideaways, and a  large private deck  where you can take a nap or read a book we definitely have the room for you!</h3>\r\n[/fusion_text][/one_half][one_half last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][fusion_text]\r\n<h3 style=\"text-align: justify;\">Our lodge has been in our family for years and has recently been beautifully renovated. Five rooms all with en-suite showers, tea/coffee making facilities, MNet and satellite television (DSTV)  open Wi-Fi. Sumptuous meals are served on the bottom deck at the swimming pool. Barbecues, afternoon tea in the garden or picnic baskets  on request all add to the service that awaits you, Our lodge features a  50 foot high Apex ceiling, spacious living, dining and bar area including a fitted kitchenette  all adding to a sense of homey comfort.</h3>\r\n<h3 style=\"text-align: justify;\">Be lulled to sleep by the sound of the waterfall  and tinkling stream just outside your window , waking from a peaceful night\'s sleep in a pillow-top bed dressed in luxurious linens to coddle you in ultimate comfort.</h3>\r\n<h3 style=\"text-align: justify;\">Our property boasts many different species of birds and animals. We have a resident otter, a family of wild bush pigs,  a family of rock rabbits, porcupine, little blue duikers, a variety of different frogs and an abundance of bird life, including the occasional snakes that pass through!</h3>\r\n<h3 style=\"text-align: justify;\">Evenings are quiet and peaceful taking you far away from the business of city life. This is a unique and memorable country experience. We look forward to having you as a guest!</h3>\r\n[/fusion_text][/one_half][/fullwidth][fullwidth background_color=\"#f0f0ed\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"20\" padding_bottom=\"20\" padding_left=\"0px\" padding_right=\"0px\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][fusion_text]\r\n<h1 style=\"text-align: center;\">Gallery</h1>\r\n[/fusion_text][separator style_type=\"single\" top_margin=\"\" bottom_margin=\"40\" sep_color=\"#000000\" border_size=\"\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"170px\" alignment=\"\" class=\"\" id=\"\"][one_sixth last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][/one_sixth][two_third last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][fusion_text]\r\n<h3 style=\"text-align: justify;\">The Lodge is open, spacious, comfortable and homely. During hot summer days, sit and bask in the sun on the deck  with one of our  picnic specials. In winter, snuggle up with a good book or challenge one another to a friendly board game in the glassed nook area .</h3>\r\n[/fusion_text][/two_third][one_sixth last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][/one_sixth][/fullwidth][fullwidth background_color=\"#f0f0ed\" background_image=\"http://localhost/assagaylodge/wp-content/uploads/2015/01/Wood_Texture.jpg\" background_parallax=\"fixed\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"30\" padding_bottom=\"10\" padding_left=\"0\" padding_right=\"0\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][recent_works layout=\"grid\" picture_size=\"auto\" boxed_text=\"unboxed\" filters=\"no\" columns=\"3\" column_spacing=\"12\" cat_slug=\"the-lodge\" exclude_cats=\"\" number_posts=\"9\" offset=\"\" excerpt_length=\"35\" strip_html=\"yes\" carousel_layout=\"title_on_rollover\" scroll_items=\"\" autoplay=\"no\" show_nav=\"yes\" mouse_scroll=\"no\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" class=\"\" id=\"\"][/recent_works][/fullwidth][fullwidth background_color=\"#f0f0ed\" background_image=\"\" background_parallax=\"fixed\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"20\" padding_bottom=\"20\" padding_left=\"0px\" padding_right=\"0px\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][fusion_text]\r\n<h1 style=\"text-align: center;\">BEDROOMS</h1>\r\n[/fusion_text][separator style_type=\"single\" top_margin=\"\" bottom_margin=\"20\" sep_color=\"#000000\" border_size=\"\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"170px\" alignment=\"\" class=\"\" id=\"\"][one_sixth last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][/one_sixth][two_third last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][fusion_text]\r\n<h3 style=\"text-align: justify;\">When it comes to our bedrooms we’re proud to say we offer something a little more special. One of five  lovingly and tastefully decorated guest rooms. Soft gray decor soothes the senses providing a peaceful, blissfully comfortable rest from your travels and hectic lives.</h3>\r\n<h3 style=\"text-align: justify;\">Our  bedrooms are spacious, clean, comfortable all en-suite, equipped with either king size or queen size beds. Each room sleeps two guests. The rooms have high ceilings, wall heaters &amp; ceiling fans. Beds all have electric blankets in Winter, 100% cotton percale sheets and thick hyper allergenic microfiber duvets and pillows. All guest rooms are cleaned with organic and green products. Amenities include hairdryers in each room. Three rooms feature King-sized beds  of which two can be  split into two single beds. Two  rooms can therefore be changed into a twin room upon request. Two rooms feature a Queen-sized double bed. These beds cannot be split into twin beds.</h3>\r\n[/fusion_text][/two_third][one_sixth last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][/one_sixth][/fullwidth][fullwidth background_color=\"\" background_image=\"http://localhost/assagaylodge/wp-content/uploads/2015/01/DSC01516-1148-x-764.jpg\" background_parallax=\"fixed\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"center center\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"20\" padding_bottom=\"20\" padding_left=\"0\" padding_right=\"0\" hundred_percent=\"no\" equal_height_columns=\"yes\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][recent_works layout=\"grid\" picture_size=\"auto\" boxed_text=\"unboxed\" filters=\"no\" columns=\"3\" column_spacing=\"12\" cat_slug=\"bedrooms\" exclude_cats=\"\" number_posts=\"6\" offset=\"\" excerpt_length=\"35\" strip_html=\"yes\" carousel_layout=\"title_on_rollover\" scroll_items=\"\" autoplay=\"no\" show_nav=\"yes\" mouse_scroll=\"no\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" class=\"\" id=\"\"][/recent_works][/fullwidth][fullwidth background_color=\"#f0f0ed\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"20\" padding_bottom=\"20\" padding_left=\"0\" padding_right=\"0\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][fusion_text]\r\n<h1 style=\"text-align: center;\">GARDENS</h1>\r\n[/fusion_text][separator style_type=\"single\" top_margin=\"\" bottom_margin=\"20\" sep_color=\"#000000\" border_size=\"\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"170px\" alignment=\"\" class=\"\" id=\"\"][one_sixth last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][/one_sixth][two_third last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][fusion_text]\r\n<h3 style=\"text-align: justify;\">The garden is large and offers many secluded spots to lose yourself in a book with a glass of wine underneath the shade of a tree, listening to the sounds of the birds and smelling the beautiful flowers.</h3>\r\n[/fusion_text][/two_third][one_sixth last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][/one_sixth][recent_works layout=\"grid\" picture_size=\"auto\" boxed_text=\"boxed\" filters=\"no\" columns=\"3\" column_spacing=\"12\" cat_slug=\"gardens\" exclude_cats=\"\" number_posts=\"9\" offset=\"\" excerpt_length=\"35\" strip_html=\"yes\" carousel_layout=\"title_on_rollover\" scroll_items=\"\" autoplay=\"no\" show_nav=\"yes\" mouse_scroll=\"no\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" class=\"\" id=\"\"][/recent_works][/fullwidth][fullwidth background_color=\"#ffffff\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"65px\" padding_bottom=\"65px\" padding_left=\"0px\" padding_right=\"0px\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][button link=\"http://localhost/assagaylodge/book-now/\" color=\"default\" size=\"xlarge\" type=\"3d\" shape=\"round\" target=\"_self\" title=\"\" gradient_colors=\"#f0f0ed|#f0f0ed\" gradient_hover_colors=\"#6666a4|#6666a4\" accent_color=\"#ffffff\" accent_hover_color=\"#ffffff\" bevel_color=\"\" border_width=\"0px\" icon=\"\" icon_position=\"left\" icon_divider=\"no\" modal=\"\" animation_type=\"0\" animation_direction=\"left\" animation_speed=\"1\" alignment=\"center\" class=\"\" id=\"\"]Make A Reservation Enquiry[/button][/fullwidth]', 'Home', '', 'inherit', 'closed', 'closed', '', '7-revision-v1', '', '', '2015-10-05 11:28:49', '2015-10-05 09:28:49', '', 7, 'http://localhost/assagaylodge/7-revision-v1/', 0, 'revision', '', 0),
(1127, 1, '2015-10-05 11:31:22', '2015-10-05 09:31:22', '[fullwidth background_color=\"#f0f0ed\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"90px\" padding_bottom=\"0px\" padding_left=\"0px\" padding_right=\"0px\" hundred_percent=\"yes\" equal_height_columns=\"yes\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][one_half last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"http://localhost/assagaylodge/wp-content/uploads/2015/01/DSC01554-e1442325082893.jpg\" background_repeat=\"no-repeat\" background_position=\"center center\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" class=\"\" id=\"\"][/one_half][one_half last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"30px\" margin_top=\"\" margin_bottom=\"0px\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" class=\"special\" id=\"\"][fusion_text]<h1 style=\"text-align: justify;\">5 BEDROOM FAMILY LODGE</h1>\r\n<h3 style=\"text-align: justify;\">A Four Season Lodge, because there’s Always Something to Celebrate… We offer comfort, relaxation and exceptional service right in the heart of 1000 Hills. The Forest, the Gardens, the Atmosphere all speak to  Rest  &amp; Relaxation.</h3>[/fusion_text][separator style_type=\"single\" top_margin=\"0\" bottom_margin=\"30\" sep_color=\"#000000\" border_size=\"\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"170px\" alignment=\"left\" class=\"separator-left\" id=\"\"][modal name=\"rates\" title=\"2015 Rates\" size=\"large\" background=\"\" border_color=\"\" show_footer=\"yes\" class=\"\" id=\"\"]ALL PRICES INCLUDE VAT\r\n<table style=\"width: 100%;\" cellspacing=\"10\">\r\n<tbody>\r\n<tr>\r\n<td><strong>Self-Catering:</strong></td>\r\n<td></td>\r\n</tr>\r\n<tr>\r\n<td>Full House Self-Catering (Max 10 persons)</td>\r\n<td><strong>R3000</strong> per night (R300 per person)</td>\r\n</tr>\r\n<tr>\r\n<td>Lodge &amp; Room Servicing Optional</td>\r\n<td><strong>R200</strong> per day</td>\r\n</tr>\r\n<tr>\r\n<td>Single Private Room</td>\r\n<td><strong>R650</strong> per person per night</td>\r\n</tr>\r\n<tr>\r\n<td>Room Sharing</td>\r\n<td><strong>R500</strong> per person per night</td>\r\n</tr>\r\n<tr>\r\n<td><strong>Meals (Optional)</strong></td>\r\n<td></td>\r\n</tr>\r\n<tr>\r\n<td>Breakfast (Continental)</td>\r\n<td><strong>R55</strong> per person</td>\r\n</tr>\r\n<tr>\r\n<td>Breakfast (Full English)</td>\r\n<td><strong>R95</strong> per person</td>\r\n</tr>\r\n<tr>\r\n<td>Light Lunch (Optional)</td>\r\n<td><strong>R95 </strong>per person</td>\r\n</tr>\r\n<tr>\r\n<td>Dinners (Optional)</td>\r\n<td><strong>R150 </strong>per person</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n&nbsp;\r\n\r\n<hr />[/modal][button link=\"\" color=\"darkgreen\" size=\"\"  type=\"\" shape=\"\" target=\"_self\" title=\"\" gradient_colors=\"|\" gradient_hover_colors=\"|\" accent_color=\"\" accent_hover_color=\"\" bevel_color=\"\" border_width=\"1px\" icon=\"\" icon_position=\"left\" icon_divider=\"no\" modal=\"rates\" animation_type=\"0\" animation_direction=\"left\" animation_speed=\"1\" alignment=\"\" class=\"\" id=\"\"]2015 RATES[/button][/one_half][/fullwidth][fullwidth background_color=\"#f0f0ed\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"20\" padding_bottom=\"20\" padding_left=\"0px\" padding_right=\"0px\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][one_half last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][fusion_text]\r\n<h3 style=\"text-align: justify;\">Set in the rolling peaks and valleys of a thousand hills surrounded by a canopy of indigenous trees  , you will find that horses still have right of way , we  certainly offer the best of both worlds , farm and charm coupled with modern amenities that will have you feeling relaxed and rejuvenated.</h3>\r\n<h3 style=\"text-align: justify;\">We know that sometimes you are searching for a romantic getaway or maybe a few days away with old friends. Other times you are searching for a place to host a weekend, family reunion or a business retreat. In addition to nightly room rentals, our lodge is also available for meetings, retreats  and makes the perfect place for a wedding party to stay together and get ready for the big day. Regardless, with our five comfortable and cozy guest bedrooms , multiple garden spaces and hideaways, and a  large private deck  where you can take a nap or read a book we definitely have the room for you!</h3>\r\n[/fusion_text][/one_half][one_half last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][fusion_text]\r\n<h3 style=\"text-align: justify;\">Our lodge has been in our family for years and has recently been beautifully renovated. Five rooms all with en-suite showers, tea/coffee making facilities, MNet and satellite television (DSTV)  open Wi-Fi. Sumptuous meals are served on the bottom deck at the swimming pool. Barbecues, afternoon tea in the garden or picnic baskets  on request all add to the service that awaits you, Our lodge features a  50 foot high Apex ceiling, spacious living, dining and bar area including a fitted kitchenette  all adding to a sense of homey comfort.</h3>\r\n<h3 style=\"text-align: justify;\">Be lulled to sleep by the sound of the waterfall  and tinkling stream just outside your window , waking from a peaceful night\'s sleep in a pillow-top bed dressed in luxurious linens to coddle you in ultimate comfort.</h3>\r\n<h3 style=\"text-align: justify;\">Our property boasts many different species of birds and animals. We have a resident otter, a family of wild bush pigs,  a family of rock rabbits, porcupine, little blue duikers, a variety of different frogs and an abundance of bird life, including the occasional snakes that pass through!</h3>\r\n<h3 style=\"text-align: justify;\">Evenings are quiet and peaceful taking you far away from the business of city life. This is a unique and memorable country experience. We look forward to having you as a guest!</h3>\r\n[/fusion_text][/one_half][/fullwidth][fullwidth background_color=\"#f0f0ed\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"20\" padding_bottom=\"20\" padding_left=\"0px\" padding_right=\"0px\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][fusion_text]\r\n<h1 style=\"text-align: center;\">Gallery</h1>\r\n[/fusion_text][separator style_type=\"single\" top_margin=\"\" bottom_margin=\"40\" sep_color=\"#000000\" border_size=\"\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"170px\" alignment=\"\" class=\"\" id=\"\"][one_sixth last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][/one_sixth][two_third last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][fusion_text]\r\n<h3 style=\"text-align: justify;\">The Lodge is open, spacious, comfortable and homely. During hot summer days, sit and bask in the sun on the deck  with one of our  picnic specials. In winter, snuggle up with a good book or challenge one another to a friendly board game in the glassed nook area .</h3>\r\n[/fusion_text][/two_third][one_sixth last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][/one_sixth][/fullwidth][fullwidth background_color=\"#f0f0ed\" background_image=\"http://localhost/assagaylodge/wp-content/uploads/2015/01/Wood_Texture.jpg\" background_parallax=\"fixed\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"30\" padding_bottom=\"10\" padding_left=\"0\" padding_right=\"0\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][recent_works layout=\"grid\" picture_size=\"auto\" boxed_text=\"unboxed\" filters=\"no\" columns=\"3\" column_spacing=\"12\" cat_slug=\"the-lodge\" exclude_cats=\"\" number_posts=\"9\" offset=\"\" excerpt_length=\"35\" strip_html=\"yes\" carousel_layout=\"title_on_rollover\" scroll_items=\"\" autoplay=\"no\" show_nav=\"yes\" mouse_scroll=\"no\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" class=\"\" id=\"\"][/recent_works][/fullwidth][fullwidth background_color=\"#f0f0ed\" background_image=\"\" background_parallax=\"fixed\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"20\" padding_bottom=\"20\" padding_left=\"0px\" padding_right=\"0px\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][fusion_text]\r\n<h1 style=\"text-align: center;\">BEDROOMS</h1>\r\n[/fusion_text][separator style_type=\"single\" top_margin=\"\" bottom_margin=\"20\" sep_color=\"#000000\" border_size=\"\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"170px\" alignment=\"\" class=\"\" id=\"\"][one_sixth last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][/one_sixth][two_third last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][fusion_text]\r\n<h3 style=\"text-align: justify;\">When it comes to our bedrooms we’re proud to say we offer something a little more special. One of five  lovingly and tastefully decorated guest rooms. Soft gray decor soothes the senses providing a peaceful, blissfully comfortable rest from your travels and hectic lives.</h3>\r\n<h3 style=\"text-align: justify;\">Our  bedrooms are spacious, clean, comfortable all en-suite, equipped with either king size or queen size beds. Each room sleeps two guests. The rooms have high ceilings, wall heaters &amp; ceiling fans. Beds all have electric blankets in Winter, 100% cotton percale sheets and thick hyper allergenic microfiber duvets and pillows. All guest rooms are cleaned with organic and green products. Amenities include hairdryers in each room. Three rooms feature King-sized beds  of which two can be  split into two single beds. Two  rooms can therefore be changed into a twin room upon request. Two rooms feature a Queen-sized double bed. These beds cannot be split into twin beds.</h3>\r\n[/fusion_text][/two_third][one_sixth last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][/one_sixth][/fullwidth][fullwidth background_color=\"\" background_image=\"http://localhost/assagaylodge/wp-content/uploads/2015/01/DSC01516-1148-x-764.jpg\" background_parallax=\"fixed\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"center center\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"20\" padding_bottom=\"20\" padding_left=\"0\" padding_right=\"0\" hundred_percent=\"no\" equal_height_columns=\"yes\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][recent_works layout=\"grid\" picture_size=\"auto\" boxed_text=\"unboxed\" filters=\"no\" columns=\"3\" column_spacing=\"12\" cat_slug=\"bedrooms\" exclude_cats=\"\" number_posts=\"6\" offset=\"\" excerpt_length=\"35\" strip_html=\"yes\" carousel_layout=\"title_on_rollover\" scroll_items=\"\" autoplay=\"no\" show_nav=\"yes\" mouse_scroll=\"no\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" class=\"\" id=\"\"][/recent_works][/fullwidth][fullwidth background_color=\"#f0f0ed\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"20\" padding_bottom=\"20\" padding_left=\"0\" padding_right=\"0\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][fusion_text]\r\n<h1 style=\"text-align: center;\">GARDENS</h1>\r\n[/fusion_text][separator style_type=\"single\" top_margin=\"\" bottom_margin=\"20\" sep_color=\"#000000\" border_size=\"\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"170px\" alignment=\"\" class=\"\" id=\"\"][one_sixth last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][/one_sixth][two_third last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][fusion_text]\r\n<h3 style=\"text-align: justify;\">The garden is large and offers many secluded spots to lose yourself in a book with a glass of wine underneath the shade of a tree, listening to the sounds of the birds and smelling the beautiful flowers.</h3>\r\n[/fusion_text][/two_third][one_sixth last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][/one_sixth][recent_works layout=\"grid\" picture_size=\"auto\" boxed_text=\"boxed\" filters=\"no\" columns=\"3\" column_spacing=\"12\" cat_slug=\"gardens\" exclude_cats=\"\" number_posts=\"9\" offset=\"\" excerpt_length=\"35\" strip_html=\"yes\" carousel_layout=\"title_on_rollover\" scroll_items=\"\" autoplay=\"no\" show_nav=\"yes\" mouse_scroll=\"no\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" class=\"\" id=\"\"][/recent_works][/fullwidth][fullwidth background_color=\"#ffffff\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"65px\" padding_bottom=\"65px\" padding_left=\"0px\" padding_right=\"0px\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][button link=\"http://localhost/assagaylodge/book-now/\" color=\"default\" size=\"xlarge\"  type=\"3d\" shape=\"round\" target=\"_self\" title=\"\" gradient_colors=\"#f0f0ed|#f0f0ed\" gradient_hover_colors=\"#6666a4|#6666a4\" accent_color=\"#ffffff\" accent_hover_color=\"#ffffff\" bevel_color=\"\" border_width=\"0px\" icon=\"\" icon_position=\"left\" icon_divider=\"no\" modal=\"\" animation_type=\"0\" animation_direction=\"left\" animation_speed=\"1\" alignment=\"center\" class=\"\" id=\"\"]Make A Reservation Enquiry[/button][/fullwidth]', 'Home', '', 'inherit', 'closed', 'closed', '', '7-revision-v1', '', '', '2015-10-05 11:31:22', '2015-10-05 09:31:22', '', 7, 'http://localhost/assagaylodge/7-revision-v1/', 0, 'revision', '', 0);
INSERT INTO `wp_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(1128, 1, '2015-10-05 11:33:17', '2015-10-05 09:33:17', '[fullwidth background_color=\"#f0f0ed\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"90px\" padding_bottom=\"0px\" padding_left=\"0px\" padding_right=\"0px\" hundred_percent=\"yes\" equal_height_columns=\"yes\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][one_half last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"http://localhost/assagaylodge/wp-content/uploads/2015/01/DSC01554-e1442325082893.jpg\" background_repeat=\"no-repeat\" background_position=\"center center\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" class=\"\" id=\"\"][/one_half][one_half last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"30px\" margin_top=\"\" margin_bottom=\"0px\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" class=\"special\" id=\"\"][fusion_text]<h1 style=\"text-align: justify;\">5 BEDROOM FAMILY LODGE</h1>\r\n<h3 style=\"text-align: justify;\">A Four Season Lodge, because there’s Always Something to Celebrate… We offer comfort, relaxation and exceptional service right in the heart of 1000 Hills. The Forest, the Gardens, the Atmosphere all speak to  Rest  &amp; Relaxation.</h3>[/fusion_text][separator style_type=\"single\" top_margin=\"0\" bottom_margin=\"30\" sep_color=\"#000000\" border_size=\"\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"170px\" alignment=\"left\" class=\"separator-left\" id=\"\"][modal name=\"rates\" title=\"2015 Rates\" size=\"large\" background=\"\" border_color=\"\" show_footer=\"yes\" class=\"\" id=\"\"]ALL PRICES INCLUDE VAT\r\n<table style=\"width: 100%;\" cellspacing=\"10\">\r\n<tbody>\r\n<tr>\r\n<td><span style=\"font-size: 14pt;\"><strong>Self-Catering:</strong></span></td>\r\n<td><span style=\"font-size: 14pt;\"> </span></td>\r\n</tr>\r\n<tr>\r\n<td><span style=\"font-size: 14pt;\">Full House Self-Catering (Max 10 persons)</span></td>\r\n<td><span style=\"font-size: 14pt;\"><strong>R3000</strong> per night (R300 per person)</span></td>\r\n</tr>\r\n<tr>\r\n<td><span style=\"font-size: 14pt;\">Lodge &amp; Room Servicing Optional</span></td>\r\n<td><span style=\"font-size: 14pt;\"><strong>R200</strong> per day</span></td>\r\n</tr>\r\n<tr>\r\n<td><span style=\"font-size: 14pt;\">Single Private Room</span></td>\r\n<td><span style=\"font-size: 14pt;\"><strong>R650</strong> per person per night</span></td>\r\n</tr>\r\n<tr>\r\n<td><span style=\"font-size: 14pt;\">Room Sharing</span></td>\r\n<td><span style=\"font-size: 14pt;\"><strong>R500</strong> per person per night</span></td>\r\n</tr>\r\n<tr>\r\n<td><span style=\"font-size: 14pt;\"><strong>Meals (Optional)</strong></span></td>\r\n<td><span style=\"font-size: 14pt;\"> </span></td>\r\n</tr>\r\n<tr>\r\n<td><span style=\"font-size: 14pt;\">Breakfast (Continental)</span></td>\r\n<td><span style=\"font-size: 14pt;\"><strong>R55</strong> per person</span></td>\r\n</tr>\r\n<tr>\r\n<td><span style=\"font-size: 14pt;\">Breakfast (Full English)</span></td>\r\n<td><span style=\"font-size: 14pt;\"><strong>R95</strong> per person</span></td>\r\n</tr>\r\n<tr>\r\n<td><span style=\"font-size: 14pt;\">Light Lunch</span></td>\r\n<td><span style=\"font-size: 14pt;\"><strong>R95 </strong>per person</span></td>\r\n</tr>\r\n<tr>\r\n<td><span style=\"font-size: 14pt;\">Dinners</span></td>\r\n<td><span style=\"font-size: 14pt;\"><strong>R150 </strong>per person</span></td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n&nbsp;\r\n\r\n<hr />[/modal][button link=\"\" color=\"darkgreen\" size=\"\"  type=\"\" shape=\"\" target=\"_self\" title=\"\" gradient_colors=\"|\" gradient_hover_colors=\"|\" accent_color=\"\" accent_hover_color=\"\" bevel_color=\"\" border_width=\"1px\" icon=\"\" icon_position=\"left\" icon_divider=\"no\" modal=\"rates\" animation_type=\"0\" animation_direction=\"left\" animation_speed=\"1\" alignment=\"\" class=\"\" id=\"\"]2015 RATES[/button][/one_half][/fullwidth][fullwidth background_color=\"#f0f0ed\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"20\" padding_bottom=\"20\" padding_left=\"0px\" padding_right=\"0px\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][one_half last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][fusion_text]\r\n<h3 style=\"text-align: justify;\">Set in the rolling peaks and valleys of a thousand hills surrounded by a canopy of indigenous trees  , you will find that horses still have right of way , we  certainly offer the best of both worlds , farm and charm coupled with modern amenities that will have you feeling relaxed and rejuvenated.</h3>\r\n<h3 style=\"text-align: justify;\">We know that sometimes you are searching for a romantic getaway or maybe a few days away with old friends. Other times you are searching for a place to host a weekend, family reunion or a business retreat. In addition to nightly room rentals, our lodge is also available for meetings, retreats  and makes the perfect place for a wedding party to stay together and get ready for the big day. Regardless, with our five comfortable and cozy guest bedrooms , multiple garden spaces and hideaways, and a  large private deck  where you can take a nap or read a book we definitely have the room for you!</h3>\r\n[/fusion_text][/one_half][one_half last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][fusion_text]\r\n<h3 style=\"text-align: justify;\">Our lodge has been in our family for years and has recently been beautifully renovated. Five rooms all with en-suite showers, tea/coffee making facilities, MNet and satellite television (DSTV)  open Wi-Fi. Sumptuous meals are served on the bottom deck at the swimming pool. Barbecues, afternoon tea in the garden or picnic baskets  on request all add to the service that awaits you, Our lodge features a  50 foot high Apex ceiling, spacious living, dining and bar area including a fitted kitchenette  all adding to a sense of homey comfort.</h3>\r\n<h3 style=\"text-align: justify;\">Be lulled to sleep by the sound of the waterfall  and tinkling stream just outside your window , waking from a peaceful night\'s sleep in a pillow-top bed dressed in luxurious linens to coddle you in ultimate comfort.</h3>\r\n<h3 style=\"text-align: justify;\">Our property boasts many different species of birds and animals. We have a resident otter, a family of wild bush pigs,  a family of rock rabbits, porcupine, little blue duikers, a variety of different frogs and an abundance of bird life, including the occasional snakes that pass through!</h3>\r\n<h3 style=\"text-align: justify;\">Evenings are quiet and peaceful taking you far away from the business of city life. This is a unique and memorable country experience. We look forward to having you as a guest!</h3>\r\n[/fusion_text][/one_half][/fullwidth][fullwidth background_color=\"#f0f0ed\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"20\" padding_bottom=\"20\" padding_left=\"0px\" padding_right=\"0px\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][fusion_text]\r\n<h1 style=\"text-align: center;\">Gallery</h1>\r\n[/fusion_text][separator style_type=\"single\" top_margin=\"\" bottom_margin=\"40\" sep_color=\"#000000\" border_size=\"\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"170px\" alignment=\"\" class=\"\" id=\"\"][one_sixth last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][/one_sixth][two_third last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][fusion_text]\r\n<h3 style=\"text-align: justify;\">The Lodge is open, spacious, comfortable and homely. During hot summer days, sit and bask in the sun on the deck  with one of our  picnic specials. In winter, snuggle up with a good book or challenge one another to a friendly board game in the glassed nook area .</h3>\r\n[/fusion_text][/two_third][one_sixth last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][/one_sixth][/fullwidth][fullwidth background_color=\"#f0f0ed\" background_image=\"http://localhost/assagaylodge/wp-content/uploads/2015/01/Wood_Texture.jpg\" background_parallax=\"fixed\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"30\" padding_bottom=\"10\" padding_left=\"0\" padding_right=\"0\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][recent_works layout=\"grid\" picture_size=\"auto\" boxed_text=\"unboxed\" filters=\"no\" columns=\"3\" column_spacing=\"12\" cat_slug=\"the-lodge\" exclude_cats=\"\" number_posts=\"9\" offset=\"\" excerpt_length=\"35\" strip_html=\"yes\" carousel_layout=\"title_on_rollover\" scroll_items=\"\" autoplay=\"no\" show_nav=\"yes\" mouse_scroll=\"no\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" class=\"\" id=\"\"][/recent_works][/fullwidth][fullwidth background_color=\"#f0f0ed\" background_image=\"\" background_parallax=\"fixed\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"20\" padding_bottom=\"20\" padding_left=\"0px\" padding_right=\"0px\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][fusion_text]\r\n<h1 style=\"text-align: center;\">BEDROOMS</h1>\r\n[/fusion_text][separator style_type=\"single\" top_margin=\"\" bottom_margin=\"20\" sep_color=\"#000000\" border_size=\"\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"170px\" alignment=\"\" class=\"\" id=\"\"][one_sixth last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][/one_sixth][two_third last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][fusion_text]\r\n<h3 style=\"text-align: justify;\">When it comes to our bedrooms we’re proud to say we offer something a little more special. One of five  lovingly and tastefully decorated guest rooms. Soft gray decor soothes the senses providing a peaceful, blissfully comfortable rest from your travels and hectic lives.</h3>\r\n<h3 style=\"text-align: justify;\">Our  bedrooms are spacious, clean, comfortable all en-suite, equipped with either king size or queen size beds. Each room sleeps two guests. The rooms have high ceilings, wall heaters &amp; ceiling fans. Beds all have electric blankets in Winter, 100% cotton percale sheets and thick hyper allergenic microfiber duvets and pillows. All guest rooms are cleaned with organic and green products. Amenities include hairdryers in each room. Three rooms feature King-sized beds  of which two can be  split into two single beds. Two  rooms can therefore be changed into a twin room upon request. Two rooms feature a Queen-sized double bed. These beds cannot be split into twin beds.</h3>\r\n[/fusion_text][/two_third][one_sixth last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][/one_sixth][/fullwidth][fullwidth background_color=\"\" background_image=\"http://localhost/assagaylodge/wp-content/uploads/2015/01/DSC01516-1148-x-764.jpg\" background_parallax=\"fixed\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"center center\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"20\" padding_bottom=\"20\" padding_left=\"0\" padding_right=\"0\" hundred_percent=\"no\" equal_height_columns=\"yes\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][recent_works layout=\"grid\" picture_size=\"auto\" boxed_text=\"unboxed\" filters=\"no\" columns=\"3\" column_spacing=\"12\" cat_slug=\"bedrooms\" exclude_cats=\"\" number_posts=\"6\" offset=\"\" excerpt_length=\"35\" strip_html=\"yes\" carousel_layout=\"title_on_rollover\" scroll_items=\"\" autoplay=\"no\" show_nav=\"yes\" mouse_scroll=\"no\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" class=\"\" id=\"\"][/recent_works][/fullwidth][fullwidth background_color=\"#f0f0ed\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"20\" padding_bottom=\"20\" padding_left=\"0\" padding_right=\"0\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][fusion_text]\r\n<h1 style=\"text-align: center;\">GARDENS</h1>\r\n[/fusion_text][separator style_type=\"single\" top_margin=\"\" bottom_margin=\"20\" sep_color=\"#000000\" border_size=\"\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"170px\" alignment=\"\" class=\"\" id=\"\"][one_sixth last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][/one_sixth][two_third last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][fusion_text]\r\n<h3 style=\"text-align: justify;\">The garden is large and offers many secluded spots to lose yourself in a book with a glass of wine underneath the shade of a tree, listening to the sounds of the birds and smelling the beautiful flowers.</h3>\r\n[/fusion_text][/two_third][one_sixth last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][/one_sixth][recent_works layout=\"grid\" picture_size=\"auto\" boxed_text=\"boxed\" filters=\"no\" columns=\"3\" column_spacing=\"12\" cat_slug=\"gardens\" exclude_cats=\"\" number_posts=\"9\" offset=\"\" excerpt_length=\"35\" strip_html=\"yes\" carousel_layout=\"title_on_rollover\" scroll_items=\"\" autoplay=\"no\" show_nav=\"yes\" mouse_scroll=\"no\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" class=\"\" id=\"\"][/recent_works][/fullwidth][fullwidth background_color=\"#ffffff\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"65px\" padding_bottom=\"65px\" padding_left=\"0px\" padding_right=\"0px\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][button link=\"http://localhost/assagaylodge/book-now/\" color=\"default\" size=\"xlarge\"  type=\"3d\" shape=\"round\" target=\"_self\" title=\"\" gradient_colors=\"#f0f0ed|#f0f0ed\" gradient_hover_colors=\"#6666a4|#6666a4\" accent_color=\"#ffffff\" accent_hover_color=\"#ffffff\" bevel_color=\"\" border_width=\"0px\" icon=\"\" icon_position=\"left\" icon_divider=\"no\" modal=\"\" animation_type=\"0\" animation_direction=\"left\" animation_speed=\"1\" alignment=\"center\" class=\"\" id=\"\"]Make A Reservation Enquiry[/button][/fullwidth]', 'Home', '', 'inherit', 'closed', 'closed', '', '7-revision-v1', '', '', '2015-10-05 11:33:17', '2015-10-05 09:33:17', '', 7, 'http://localhost/assagaylodge/7-revision-v1/', 0, 'revision', '', 0),
(1129, 1, '2015-10-05 11:44:00', '2015-10-05 09:44:00', '[fullwidth background_color=\"#f0f0ed\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"90px\" padding_bottom=\"0px\" padding_left=\"0px\" padding_right=\"0px\" hundred_percent=\"yes\" equal_height_columns=\"yes\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][one_half last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"http://localhost/assagaylodge/wp-content/uploads/2015/01/DSC01554-e1442325082893.jpg\" background_repeat=\"no-repeat\" background_position=\"center center\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" class=\"\" id=\"\"][/one_half][one_half last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"30px\" margin_top=\"\" margin_bottom=\"0px\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" class=\"special\" id=\"\"][fusion_text]<h1 style=\"text-align: justify;\">5 BEDROOM FAMILY LODGE</h1>\r\n<h3 style=\"text-align: justify;\">A Four Season Lodge, because there’s Always Something to Celebrate… We offer comfort, relaxation and exceptional service right in the heart of 1000 Hills. The Forest, the Gardens, the Atmosphere all speak to  Rest  &amp; Relaxation.</h3>[/fusion_text][separator style_type=\"single\" top_margin=\"0\" bottom_margin=\"30\" sep_color=\"#000000\" border_size=\"\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"170px\" alignment=\"left\" class=\"separator-left\" id=\"\"][modal name=\"rates\" title=\"2015 Rates\" size=\"large\" background=\"\" border_color=\"\" show_footer=\"yes\" class=\"\" id=\"\"]ALL PRICES INCLUDE VAT\r\n<table style=\"width: 100%;\" cellspacing=\"10\">\r\n<tbody>\r\n<tr>\r\n<td colspan=\"2\"><span style=\"font-size: 12pt;\"><strong>Self-Catering Accommodation:</strong></span><span style=\"font-size: 12pt;\"> </span></td>\r\n</tr>\r\n<tr>\r\n<td><span style=\"font-size: 12pt;\">Full House Self-Catering (Max 10 persons)</span></td>\r\n<td><span style=\"font-size: 12pt;\"><strong>R3000</strong> per night (R300 per person)</span></td>\r\n</tr>\r\n<tr>\r\n<td><span style=\"font-size: 12pt;\">Lodge &amp; Room Servicing (Optional)</span></td>\r\n<td><span style=\"font-size: 12pt;\"><strong>R  200</strong> per day</span></td>\r\n</tr>\r\n<tr>\r\n<td><span style=\"font-size: 12pt;\">Single Private Room</span></td>\r\n<td><span style=\"font-size: 12pt;\"><strong>R  650</strong> per person per night</span></td>\r\n</tr>\r\n<tr>\r\n<td><span style=\"font-size: 12pt;\">Room Sharing</span></td>\r\n<td><span style=\"font-size: 12pt;\"><strong>R  500</strong> per person per night</span></td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n&nbsp;\r\n<table style=\"width: 100%;\" cellspacing=\"10\">\r\n<tbody>\r\n<tr>\r\n<td colspan=\"2\"><span style=\"font-size: 12pt;\"><strong>Meals (Optional)</strong></span></td>\r\n</tr>\r\n<tr>\r\n<td><span style=\"font-size: 12pt;\">Breakfast (Continental)</span></td>\r\n<td><span style=\"font-size: 12pt;\"><strong>R   55</strong> per person</span></td>\r\n</tr>\r\n<tr>\r\n<td><span style=\"font-size: 12pt;\">Breakfast (Full English)</span></td>\r\n<td><span style=\"font-size: 12pt;\"><strong>R   95</strong> per person</span></td>\r\n</tr>\r\n<tr>\r\n<td><span style=\"font-size: 12pt;\">Light Lunch</span></td>\r\n<td><span style=\"font-size: 12pt;\"><strong>R   95 </strong>per person</span></td>\r\n</tr>\r\n<tr>\r\n<td><span style=\"font-size: 12pt;\">Dinners</span></td>\r\n<td><span style=\"font-size: 12pt;\"><strong>R 150 </strong>per person</span></td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n\r\n<hr />[/modal][button link=\"\" color=\"darkgreen\" size=\"\"  type=\"\" shape=\"\" target=\"_self\" title=\"\" gradient_colors=\"|\" gradient_hover_colors=\"|\" accent_color=\"\" accent_hover_color=\"\" bevel_color=\"\" border_width=\"1px\" icon=\"\" icon_position=\"left\" icon_divider=\"no\" modal=\"rates\" animation_type=\"0\" animation_direction=\"left\" animation_speed=\"1\" alignment=\"\" class=\"\" id=\"\"]2015 RATES[/button][/one_half][/fullwidth][fullwidth background_color=\"#f0f0ed\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"20\" padding_bottom=\"20\" padding_left=\"0px\" padding_right=\"0px\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][one_half last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][fusion_text]\r\n<h3 style=\"text-align: justify;\">Set in the rolling peaks and valleys of a thousand hills surrounded by a canopy of indigenous trees  , you will find that horses still have right of way , we  certainly offer the best of both worlds , farm and charm coupled with modern amenities that will have you feeling relaxed and rejuvenated.</h3>\r\n<h3 style=\"text-align: justify;\">We know that sometimes you are searching for a romantic getaway or maybe a few days away with old friends. Other times you are searching for a place to host a weekend, family reunion or a business retreat. In addition to nightly room rentals, our lodge is also available for meetings, retreats  and makes the perfect place for a wedding party to stay together and get ready for the big day. Regardless, with our five comfortable and cozy guest bedrooms , multiple garden spaces and hideaways, and a  large private deck  where you can take a nap or read a book we definitely have the room for you!</h3>\r\n[/fusion_text][/one_half][one_half last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][fusion_text]\r\n<h3 style=\"text-align: justify;\">Our lodge has been in our family for years and has recently been beautifully renovated. Five rooms all with en-suite showers, tea/coffee making facilities, MNet and satellite television (DSTV)  open Wi-Fi. Sumptuous meals are served on the bottom deck at the swimming pool. Barbecues, afternoon tea in the garden or picnic baskets  on request all add to the service that awaits you, Our lodge features a  50 foot high Apex ceiling, spacious living, dining and bar area including a fitted kitchenette  all adding to a sense of homey comfort.</h3>\r\n<h3 style=\"text-align: justify;\">Be lulled to sleep by the sound of the waterfall  and tinkling stream just outside your window , waking from a peaceful night\'s sleep in a pillow-top bed dressed in luxurious linens to coddle you in ultimate comfort.</h3>\r\n<h3 style=\"text-align: justify;\">Our property boasts many different species of birds and animals. We have a resident otter, a family of wild bush pigs,  a family of rock rabbits, porcupine, little blue duikers, a variety of different frogs and an abundance of bird life, including the occasional snakes that pass through!</h3>\r\n<h3 style=\"text-align: justify;\">Evenings are quiet and peaceful taking you far away from the business of city life. This is a unique and memorable country experience. We look forward to having you as a guest!</h3>\r\n[/fusion_text][/one_half][/fullwidth][fullwidth background_color=\"#f0f0ed\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"20\" padding_bottom=\"20\" padding_left=\"0px\" padding_right=\"0px\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][fusion_text]\r\n<h1 style=\"text-align: center;\">Gallery</h1>\r\n[/fusion_text][separator style_type=\"single\" top_margin=\"\" bottom_margin=\"40\" sep_color=\"#000000\" border_size=\"\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"170px\" alignment=\"\" class=\"\" id=\"\"][one_sixth last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][/one_sixth][two_third last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][fusion_text]\r\n<h3 style=\"text-align: justify;\">The Lodge is open, spacious, comfortable and homely. During hot summer days, sit and bask in the sun on the deck  with one of our  picnic specials. In winter, snuggle up with a good book or challenge one another to a friendly board game in the glassed nook area .</h3>\r\n[/fusion_text][/two_third][one_sixth last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][/one_sixth][/fullwidth][fullwidth background_color=\"#f0f0ed\" background_image=\"http://localhost/assagaylodge/wp-content/uploads/2015/01/Wood_Texture.jpg\" background_parallax=\"fixed\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"30\" padding_bottom=\"10\" padding_left=\"0\" padding_right=\"0\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][recent_works layout=\"grid\" picture_size=\"auto\" boxed_text=\"unboxed\" filters=\"no\" columns=\"3\" column_spacing=\"12\" cat_slug=\"the-lodge\" exclude_cats=\"\" number_posts=\"9\" offset=\"\" excerpt_length=\"35\" strip_html=\"yes\" carousel_layout=\"title_on_rollover\" scroll_items=\"\" autoplay=\"no\" show_nav=\"yes\" mouse_scroll=\"no\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" class=\"\" id=\"\"][/recent_works][/fullwidth][fullwidth background_color=\"#f0f0ed\" background_image=\"\" background_parallax=\"fixed\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"20\" padding_bottom=\"20\" padding_left=\"0px\" padding_right=\"0px\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][fusion_text]\r\n<h1 style=\"text-align: center;\">BEDROOMS</h1>\r\n[/fusion_text][separator style_type=\"single\" top_margin=\"\" bottom_margin=\"20\" sep_color=\"#000000\" border_size=\"\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"170px\" alignment=\"\" class=\"\" id=\"\"][one_sixth last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][/one_sixth][two_third last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][fusion_text]\r\n<h3 style=\"text-align: justify;\">When it comes to our bedrooms we’re proud to say we offer something a little more special. One of five  lovingly and tastefully decorated guest rooms. Soft gray decor soothes the senses providing a peaceful, blissfully comfortable rest from your travels and hectic lives.</h3>\r\n<h3 style=\"text-align: justify;\">Our  bedrooms are spacious, clean, comfortable all en-suite, equipped with either king size or queen size beds. Each room sleeps two guests. The rooms have high ceilings, wall heaters &amp; ceiling fans. Beds all have electric blankets in Winter, 100% cotton percale sheets and thick hyper allergenic microfiber duvets and pillows. All guest rooms are cleaned with organic and green products. Amenities include hairdryers in each room. Three rooms feature King-sized beds  of which two can be  split into two single beds. Two  rooms can therefore be changed into a twin room upon request. Two rooms feature a Queen-sized double bed. These beds cannot be split into twin beds.</h3>\r\n[/fusion_text][/two_third][one_sixth last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][/one_sixth][/fullwidth][fullwidth background_color=\"\" background_image=\"http://localhost/assagaylodge/wp-content/uploads/2015/01/DSC01516-1148-x-764.jpg\" background_parallax=\"fixed\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"center center\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"20\" padding_bottom=\"20\" padding_left=\"0\" padding_right=\"0\" hundred_percent=\"no\" equal_height_columns=\"yes\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][recent_works layout=\"grid\" picture_size=\"auto\" boxed_text=\"unboxed\" filters=\"no\" columns=\"3\" column_spacing=\"12\" cat_slug=\"bedrooms\" exclude_cats=\"\" number_posts=\"6\" offset=\"\" excerpt_length=\"35\" strip_html=\"yes\" carousel_layout=\"title_on_rollover\" scroll_items=\"\" autoplay=\"no\" show_nav=\"yes\" mouse_scroll=\"no\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" class=\"\" id=\"\"][/recent_works][/fullwidth][fullwidth background_color=\"#f0f0ed\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"20\" padding_bottom=\"20\" padding_left=\"0\" padding_right=\"0\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][fusion_text]\r\n<h1 style=\"text-align: center;\">GARDENS</h1>\r\n[/fusion_text][separator style_type=\"single\" top_margin=\"\" bottom_margin=\"20\" sep_color=\"#000000\" border_size=\"\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"170px\" alignment=\"\" class=\"\" id=\"\"][one_sixth last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][/one_sixth][two_third last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][fusion_text]\r\n<h3 style=\"text-align: justify;\">The garden is large and offers many secluded spots to lose yourself in a book with a glass of wine underneath the shade of a tree, listening to the sounds of the birds and smelling the beautiful flowers.</h3>\r\n[/fusion_text][/two_third][one_sixth last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][/one_sixth][recent_works layout=\"grid\" picture_size=\"auto\" boxed_text=\"boxed\" filters=\"no\" columns=\"3\" column_spacing=\"12\" cat_slug=\"gardens\" exclude_cats=\"\" number_posts=\"9\" offset=\"\" excerpt_length=\"35\" strip_html=\"yes\" carousel_layout=\"title_on_rollover\" scroll_items=\"\" autoplay=\"no\" show_nav=\"yes\" mouse_scroll=\"no\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" class=\"\" id=\"\"][/recent_works][/fullwidth][fullwidth background_color=\"#ffffff\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"65px\" padding_bottom=\"65px\" padding_left=\"0px\" padding_right=\"0px\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][button link=\"http://localhost/assagaylodge/book-now/\" color=\"default\" size=\"xlarge\"  type=\"3d\" shape=\"round\" target=\"_self\" title=\"\" gradient_colors=\"#f0f0ed|#f0f0ed\" gradient_hover_colors=\"#6666a4|#6666a4\" accent_color=\"#ffffff\" accent_hover_color=\"#ffffff\" bevel_color=\"\" border_width=\"0px\" icon=\"\" icon_position=\"left\" icon_divider=\"no\" modal=\"\" animation_type=\"0\" animation_direction=\"left\" animation_speed=\"1\" alignment=\"center\" class=\"\" id=\"\"]Make A Reservation Enquiry[/button][/fullwidth]', 'Home', '', 'inherit', 'closed', 'closed', '', '7-revision-v1', '', '', '2015-10-05 11:44:00', '2015-10-05 09:44:00', '', 7, 'http://localhost/assagaylodge/7-revision-v1/', 0, 'revision', '', 0);
INSERT INTO `wp_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(1130, 1, '2015-10-05 11:53:19', '2015-10-05 09:53:19', '[fullwidth background_color=\"#f0f0ed\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"90px\" padding_bottom=\"0px\" padding_left=\"0px\" padding_right=\"0px\" hundred_percent=\"yes\" equal_height_columns=\"yes\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][one_half last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"http://localhost/assagaylodge/wp-content/uploads/2015/01/DSC01554-e1442325082893.jpg\" background_repeat=\"no-repeat\" background_position=\"center center\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" class=\"\" id=\"\"][/one_half][one_half last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"30px\" margin_top=\"\" margin_bottom=\"0px\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" class=\"special\" id=\"\"][fusion_text]<h1 style=\"text-align: justify;\">5 BEDROOM FAMILY LODGE</h1>\r\n<h3 style=\"text-align: justify;\">A Four Season Lodge, because there’s Always Something to Celebrate… We offer comfort, relaxation and exceptional service right in the heart of 1000 Hills. The Forest, the Gardens, the Atmosphere all speak to  Rest  &amp; Relaxation.</h3>[/fusion_text][separator style_type=\"single\" top_margin=\"0\" bottom_margin=\"30\" sep_color=\"#000000\" border_size=\"\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"170px\" alignment=\"left\" class=\"separator-left\" id=\"\"][modal name=\"rates\" title=\"2015 Rates\" size=\"large\" background=\"\" border_color=\"\" show_footer=\"yes\" class=\"\" id=\"\"]ALL PRICES INCLUDE VAT\r\n<table style=\"width: 100%;\" cellspacing=\"10\">\r\n<tbody>\r\n<tr>\r\n<td colspan=\"2\"><span style=\"font-size: 12pt;\"><strong>Self-Catering Accommodation:</strong></span><span style=\"font-size: 12pt;\"> </span></td>\r\n</tr>\r\n<tr>\r\n<td><span style=\"font-size: 12pt;\">Full House Self-Catering (Max 10 persons)</span></td>\r\n<td><span style=\"font-size: 12pt;\"><strong>R3000</strong> per night (R300 per person)</span></td>\r\n</tr>\r\n<tr>\r\n<td><span style=\"font-size: 12pt;\">Lodge &amp; Room Servicing (Optional)</span></td>\r\n<td><span style=\"font-size: 12pt;\"><strong>R  200</strong> per day</span></td>\r\n</tr>\r\n<tr>\r\n<td><span style=\"font-size: 12pt;\">Single Private Room</span></td>\r\n<td><span style=\"font-size: 12pt;\"><strong>R  650</strong> per person per night</span></td>\r\n</tr>\r\n<tr>\r\n<td><span style=\"font-size: 12pt;\">Room Sharing</span></td>\r\n<td><span style=\"font-size: 12pt;\"><strong>R  500</strong> per person per night</span></td>\r\n</tr>\r\n<tr>\r\n<td><span style=\"font-size: 12pt;\"> </span></td>\r\n<td><span style=\"font-size: 12pt;\"><strong> </strong></span></td>\r\n</tr>\r\n<tr>\r\n<td colspan=\"2\"><span style=\"font-size: 12pt;\"><span style=\"font-size: 12pt;\"><strong>Meals (Optional)</strong></span> </span><span style=\"font-size: 12pt;\"><strong> </strong></span></td>\r\n</tr>\r\n<tr>\r\n<td><span style=\"font-size: 12pt;\"> <span style=\"font-size: 12pt;\">Breakfast (Continental)</span></span></td>\r\n<td><span style=\"font-size: 12pt;\"><strong> </strong><span style=\"font-size: 12pt;\"><strong>R   55</strong> per person</span></span></td>\r\n</tr>\r\n<tr>\r\n<td><span style=\"font-size: 12pt;\"> <span style=\"font-size: 12pt;\">Breakfast (Full English)</span></span></td>\r\n<td><span style=\"font-size: 12pt;\"><strong> </strong><span style=\"font-size: 12pt;\"><strong>R   95</strong> per person</span></span></td>\r\n</tr>\r\n<tr>\r\n<td><span style=\"font-size: 12pt;\"> <span style=\"font-size: 12pt;\">Light Lunch</span></span></td>\r\n<td><span style=\"font-size: 12pt;\"><strong> </strong><span style=\"font-size: 12pt;\"><strong>R   95 </strong>per person</span></span></td>\r\n</tr>\r\n<tr>\r\n<td><span style=\"font-size: 12pt;\"> <span style=\"font-size: 12pt;\">Dinners</span></span></td>\r\n<td><span style=\"font-size: 12pt;\"><strong> </strong><span style=\"font-size: 12pt;\"><strong>R 150 </strong>per person</span></span></td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n&nbsp;\r\n\r\n<hr />[/modal][button link=\"\" color=\"darkgreen\" size=\"\"  type=\"\" shape=\"\" target=\"_self\" title=\"\" gradient_colors=\"|\" gradient_hover_colors=\"|\" accent_color=\"\" accent_hover_color=\"\" bevel_color=\"\" border_width=\"1px\" icon=\"\" icon_position=\"left\" icon_divider=\"no\" modal=\"rates\" animation_type=\"0\" animation_direction=\"left\" animation_speed=\"1\" alignment=\"\" class=\"\" id=\"\"]2015 RATES[/button][/one_half][/fullwidth][fullwidth background_color=\"#f0f0ed\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"20\" padding_bottom=\"20\" padding_left=\"0px\" padding_right=\"0px\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][one_half last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][fusion_text]\r\n<h3 style=\"text-align: justify;\">Set in the rolling peaks and valleys of a thousand hills surrounded by a canopy of indigenous trees  , you will find that horses still have right of way , we  certainly offer the best of both worlds , farm and charm coupled with modern amenities that will have you feeling relaxed and rejuvenated.</h3>\r\n<h3 style=\"text-align: justify;\">We know that sometimes you are searching for a romantic getaway or maybe a few days away with old friends. Other times you are searching for a place to host a weekend, family reunion or a business retreat. In addition to nightly room rentals, our lodge is also available for meetings, retreats  and makes the perfect place for a wedding party to stay together and get ready for the big day. Regardless, with our five comfortable and cozy guest bedrooms , multiple garden spaces and hideaways, and a  large private deck  where you can take a nap or read a book we definitely have the room for you!</h3>\r\n[/fusion_text][/one_half][one_half last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][fusion_text]\r\n<h3 style=\"text-align: justify;\">Our lodge has been in our family for years and has recently been beautifully renovated. Five rooms all with en-suite showers, tea/coffee making facilities, MNet and satellite television (DSTV)  open Wi-Fi. Sumptuous meals are served on the bottom deck at the swimming pool. Barbecues, afternoon tea in the garden or picnic baskets  on request all add to the service that awaits you, Our lodge features a  50 foot high Apex ceiling, spacious living, dining and bar area including a fitted kitchenette  all adding to a sense of homey comfort.</h3>\r\n<h3 style=\"text-align: justify;\">Be lulled to sleep by the sound of the waterfall  and tinkling stream just outside your window , waking from a peaceful night\'s sleep in a pillow-top bed dressed in luxurious linens to coddle you in ultimate comfort.</h3>\r\n<h3 style=\"text-align: justify;\">Our property boasts many different species of birds and animals. We have a resident otter, a family of wild bush pigs,  a family of rock rabbits, porcupine, little blue duikers, a variety of different frogs and an abundance of bird life, including the occasional snakes that pass through!</h3>\r\n<h3 style=\"text-align: justify;\">Evenings are quiet and peaceful taking you far away from the business of city life. This is a unique and memorable country experience. We look forward to having you as a guest!</h3>\r\n[/fusion_text][/one_half][/fullwidth][fullwidth background_color=\"#f0f0ed\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"20\" padding_bottom=\"20\" padding_left=\"0px\" padding_right=\"0px\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][fusion_text]\r\n<h1 style=\"text-align: center;\">Gallery</h1>\r\n[/fusion_text][separator style_type=\"single\" top_margin=\"\" bottom_margin=\"40\" sep_color=\"#000000\" border_size=\"\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"170px\" alignment=\"\" class=\"\" id=\"\"][one_sixth last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][/one_sixth][two_third last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][fusion_text]\r\n<h3 style=\"text-align: justify;\">The Lodge is open, spacious, comfortable and homely. During hot summer days, sit and bask in the sun on the deck  with one of our  picnic specials. In winter, snuggle up with a good book or challenge one another to a friendly board game in the glassed nook area .</h3>\r\n[/fusion_text][/two_third][one_sixth last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][/one_sixth][/fullwidth][fullwidth background_color=\"#f0f0ed\" background_image=\"http://localhost/assagaylodge/wp-content/uploads/2015/01/Wood_Texture.jpg\" background_parallax=\"fixed\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"30\" padding_bottom=\"10\" padding_left=\"0\" padding_right=\"0\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][recent_works layout=\"grid\" picture_size=\"auto\" boxed_text=\"unboxed\" filters=\"no\" columns=\"3\" column_spacing=\"12\" cat_slug=\"the-lodge\" exclude_cats=\"\" number_posts=\"9\" offset=\"\" excerpt_length=\"35\" strip_html=\"yes\" carousel_layout=\"title_on_rollover\" scroll_items=\"\" autoplay=\"no\" show_nav=\"yes\" mouse_scroll=\"no\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" class=\"\" id=\"\"][/recent_works][/fullwidth][fullwidth background_color=\"#f0f0ed\" background_image=\"\" background_parallax=\"fixed\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"20\" padding_bottom=\"20\" padding_left=\"0px\" padding_right=\"0px\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][fusion_text]\r\n<h1 style=\"text-align: center;\">BEDROOMS</h1>\r\n[/fusion_text][separator style_type=\"single\" top_margin=\"\" bottom_margin=\"20\" sep_color=\"#000000\" border_size=\"\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"170px\" alignment=\"\" class=\"\" id=\"\"][one_sixth last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][/one_sixth][two_third last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][fusion_text]\r\n<h3 style=\"text-align: justify;\">When it comes to our bedrooms we’re proud to say we offer something a little more special. One of five  lovingly and tastefully decorated guest rooms. Soft gray decor soothes the senses providing a peaceful, blissfully comfortable rest from your travels and hectic lives.</h3>\r\n<h3 style=\"text-align: justify;\">Our  bedrooms are spacious, clean, comfortable all en-suite, equipped with either king size or queen size beds. Each room sleeps two guests. The rooms have high ceilings, wall heaters &amp; ceiling fans. Beds all have electric blankets in Winter, 100% cotton percale sheets and thick hyper allergenic microfiber duvets and pillows. All guest rooms are cleaned with organic and green products. Amenities include hairdryers in each room. Three rooms feature King-sized beds  of which two can be  split into two single beds. Two  rooms can therefore be changed into a twin room upon request. Two rooms feature a Queen-sized double bed. These beds cannot be split into twin beds.</h3>\r\n[/fusion_text][/two_third][one_sixth last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][/one_sixth][/fullwidth][fullwidth background_color=\"\" background_image=\"http://localhost/assagaylodge/wp-content/uploads/2015/01/DSC01516-1148-x-764.jpg\" background_parallax=\"fixed\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"center center\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"20\" padding_bottom=\"20\" padding_left=\"0\" padding_right=\"0\" hundred_percent=\"no\" equal_height_columns=\"yes\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][recent_works layout=\"grid\" picture_size=\"auto\" boxed_text=\"unboxed\" filters=\"no\" columns=\"3\" column_spacing=\"12\" cat_slug=\"bedrooms\" exclude_cats=\"\" number_posts=\"6\" offset=\"\" excerpt_length=\"35\" strip_html=\"yes\" carousel_layout=\"title_on_rollover\" scroll_items=\"\" autoplay=\"no\" show_nav=\"yes\" mouse_scroll=\"no\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" class=\"\" id=\"\"][/recent_works][/fullwidth][fullwidth background_color=\"#f0f0ed\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"20\" padding_bottom=\"20\" padding_left=\"0\" padding_right=\"0\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][fusion_text]\r\n<h1 style=\"text-align: center;\">GARDENS</h1>\r\n[/fusion_text][separator style_type=\"single\" top_margin=\"\" bottom_margin=\"20\" sep_color=\"#000000\" border_size=\"\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"170px\" alignment=\"\" class=\"\" id=\"\"][one_sixth last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][/one_sixth][two_third last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][fusion_text]\r\n<h3 style=\"text-align: justify;\">The garden is large and offers many secluded spots to lose yourself in a book with a glass of wine underneath the shade of a tree, listening to the sounds of the birds and smelling the beautiful flowers.</h3>\r\n[/fusion_text][/two_third][one_sixth last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][/one_sixth][recent_works layout=\"grid\" picture_size=\"auto\" boxed_text=\"boxed\" filters=\"no\" columns=\"3\" column_spacing=\"12\" cat_slug=\"gardens\" exclude_cats=\"\" number_posts=\"9\" offset=\"\" excerpt_length=\"35\" strip_html=\"yes\" carousel_layout=\"title_on_rollover\" scroll_items=\"\" autoplay=\"no\" show_nav=\"yes\" mouse_scroll=\"no\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" class=\"\" id=\"\"][/recent_works][/fullwidth][fullwidth background_color=\"#ffffff\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"65px\" padding_bottom=\"65px\" padding_left=\"0px\" padding_right=\"0px\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][button link=\"http://localhost/assagaylodge/book-now/\" color=\"default\" size=\"xlarge\"  type=\"3d\" shape=\"round\" target=\"_self\" title=\"\" gradient_colors=\"#f0f0ed|#f0f0ed\" gradient_hover_colors=\"#6666a4|#6666a4\" accent_color=\"#ffffff\" accent_hover_color=\"#ffffff\" bevel_color=\"\" border_width=\"0px\" icon=\"\" icon_position=\"left\" icon_divider=\"no\" modal=\"\" animation_type=\"0\" animation_direction=\"left\" animation_speed=\"1\" alignment=\"center\" class=\"\" id=\"\"]Make A Reservation Enquiry[/button][/fullwidth]', 'Home', '', 'inherit', 'closed', 'closed', '', '7-revision-v1', '', '', '2015-10-05 11:53:19', '2015-10-05 09:53:19', '', 7, 'http://localhost/assagaylodge/7-revision-v1/', 0, 'revision', '', 0),
(1131, 1, '2015-10-05 11:54:17', '2015-10-05 09:54:17', '[fullwidth background_color=\"#f0f0ed\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"90px\" padding_bottom=\"0px\" padding_left=\"0px\" padding_right=\"0px\" hundred_percent=\"yes\" equal_height_columns=\"yes\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][one_half last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"http://localhost/assagaylodge/wp-content/uploads/2015/01/DSC01554-e1442325082893.jpg\" background_repeat=\"no-repeat\" background_position=\"center center\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" class=\"\" id=\"\"][/one_half][two_fifth last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"30px\" margin_top=\"\" margin_bottom=\"0px\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" class=\"special\" id=\"\"][fusion_text]<h1 style=\"text-align: justify;\">5 BEDROOM FAMILY LODGE</h1>\r\n<h3 style=\"text-align: justify;\">A Four Season Lodge, because there’s Always Something to Celebrate… We offer comfort, relaxation and exceptional service right in the heart of 1000 Hills. The Forest, the Gardens, the Atmosphere all speak to  Rest  &amp; Relaxation.</h3>[/fusion_text][separator style_type=\"single\" top_margin=\"0\" bottom_margin=\"30\" sep_color=\"#000000\" border_size=\"\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"170px\" alignment=\"left\" class=\"separator-left\" id=\"\"][modal name=\"rates\" title=\"2015 Rates\" size=\"large\" background=\"\" border_color=\"\" show_footer=\"yes\" class=\"\" id=\"\"]ALL PRICES INCLUDE VAT\r\n<table style=\"width: 100%;\" cellspacing=\"10\">\r\n<tbody>\r\n<tr>\r\n<td colspan=\"2\"><span style=\"font-size: 12pt;\"><strong>Self-Catering Accommodation:</strong></span><span style=\"font-size: 12pt;\"> </span></td>\r\n</tr>\r\n<tr>\r\n<td><span style=\"font-size: 12pt;\">Full House Self-Catering (Max 10 persons)</span></td>\r\n<td><span style=\"font-size: 12pt;\"><strong>R3000</strong> per night (R300 per person)</span></td>\r\n</tr>\r\n<tr>\r\n<td><span style=\"font-size: 12pt;\">Lodge &amp; Room Servicing (Optional)</span></td>\r\n<td><span style=\"font-size: 12pt;\"><strong>R  200</strong> per day</span></td>\r\n</tr>\r\n<tr>\r\n<td><span style=\"font-size: 12pt;\">Single Private Room</span></td>\r\n<td><span style=\"font-size: 12pt;\"><strong>R  650</strong> per person per night</span></td>\r\n</tr>\r\n<tr>\r\n<td><span style=\"font-size: 12pt;\">Room Sharing</span></td>\r\n<td><span style=\"font-size: 12pt;\"><strong>R  500</strong> per person per night</span></td>\r\n</tr>\r\n<tr>\r\n<td><span style=\"font-size: 12pt;\"> </span></td>\r\n<td><span style=\"font-size: 12pt;\"><strong> </strong></span></td>\r\n</tr>\r\n<tr>\r\n<td colspan=\"2\"><span style=\"font-size: 12pt;\"><span style=\"font-size: 12pt;\"><strong>Meals (Optional)</strong></span> </span><span style=\"font-size: 12pt;\"><strong> </strong></span></td>\r\n</tr>\r\n<tr>\r\n<td><span style=\"font-size: 12pt;\"> <span style=\"font-size: 12pt;\">Breakfast (Continental)</span></span></td>\r\n<td><span style=\"font-size: 12pt;\"><strong> </strong><span style=\"font-size: 12pt;\"><strong>R   55</strong> per person</span></span></td>\r\n</tr>\r\n<tr>\r\n<td><span style=\"font-size: 12pt;\"> <span style=\"font-size: 12pt;\">Breakfast (Full English)</span></span></td>\r\n<td><span style=\"font-size: 12pt;\"><strong> </strong><span style=\"font-size: 12pt;\"><strong>R   95</strong> per person</span></span></td>\r\n</tr>\r\n<tr>\r\n<td><span style=\"font-size: 12pt;\"> <span style=\"font-size: 12pt;\">Light Lunch</span></span></td>\r\n<td><span style=\"font-size: 12pt;\"><strong> </strong><span style=\"font-size: 12pt;\"><strong>R   95 </strong>per person</span></span></td>\r\n</tr>\r\n<tr>\r\n<td><span style=\"font-size: 12pt;\"> <span style=\"font-size: 12pt;\">Dinners</span></span></td>\r\n<td><span style=\"font-size: 12pt;\"><strong> </strong><span style=\"font-size: 12pt;\"><strong>R 150 </strong>per person</span></span></td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n&nbsp;\r\n\r\n<hr />[/modal][button link=\"\" color=\"darkgreen\" size=\"\"  type=\"\" shape=\"\" target=\"_self\" title=\"\" gradient_colors=\"|\" gradient_hover_colors=\"|\" accent_color=\"\" accent_hover_color=\"\" bevel_color=\"\" border_width=\"1px\" icon=\"\" icon_position=\"left\" icon_divider=\"no\" modal=\"rates\" animation_type=\"0\" animation_direction=\"left\" animation_speed=\"1\" alignment=\"\" class=\"\" id=\"\"]2015 RATES[/button][/two_fifth][/fullwidth][fullwidth background_color=\"#f0f0ed\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"20\" padding_bottom=\"20\" padding_left=\"0px\" padding_right=\"0px\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][one_half last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][fusion_text]\r\n<h3 style=\"text-align: justify;\">Set in the rolling peaks and valleys of a thousand hills surrounded by a canopy of indigenous trees  , you will find that horses still have right of way , we  certainly offer the best of both worlds , farm and charm coupled with modern amenities that will have you feeling relaxed and rejuvenated.</h3>\r\n<h3 style=\"text-align: justify;\">We know that sometimes you are searching for a romantic getaway or maybe a few days away with old friends. Other times you are searching for a place to host a weekend, family reunion or a business retreat. In addition to nightly room rentals, our lodge is also available for meetings, retreats  and makes the perfect place for a wedding party to stay together and get ready for the big day. Regardless, with our five comfortable and cozy guest bedrooms , multiple garden spaces and hideaways, and a  large private deck  where you can take a nap or read a book we definitely have the room for you!</h3>\r\n[/fusion_text][/one_half][one_half last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][fusion_text]\r\n<h3 style=\"text-align: justify;\">Our lodge has been in our family for years and has recently been beautifully renovated. Five rooms all with en-suite showers, tea/coffee making facilities, MNet and satellite television (DSTV)  open Wi-Fi. Sumptuous meals are served on the bottom deck at the swimming pool. Barbecues, afternoon tea in the garden or picnic baskets  on request all add to the service that awaits you, Our lodge features a  50 foot high Apex ceiling, spacious living, dining and bar area including a fitted kitchenette  all adding to a sense of homey comfort.</h3>\r\n<h3 style=\"text-align: justify;\">Be lulled to sleep by the sound of the waterfall  and tinkling stream just outside your window , waking from a peaceful night\'s sleep in a pillow-top bed dressed in luxurious linens to coddle you in ultimate comfort.</h3>\r\n<h3 style=\"text-align: justify;\">Our property boasts many different species of birds and animals. We have a resident otter, a family of wild bush pigs,  a family of rock rabbits, porcupine, little blue duikers, a variety of different frogs and an abundance of bird life, including the occasional snakes that pass through!</h3>\r\n<h3 style=\"text-align: justify;\">Evenings are quiet and peaceful taking you far away from the business of city life. This is a unique and memorable country experience. We look forward to having you as a guest!</h3>\r\n[/fusion_text][/one_half][/fullwidth][fullwidth background_color=\"#f0f0ed\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"20\" padding_bottom=\"20\" padding_left=\"0px\" padding_right=\"0px\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][fusion_text]\r\n<h1 style=\"text-align: center;\">Gallery</h1>\r\n[/fusion_text][separator style_type=\"single\" top_margin=\"\" bottom_margin=\"40\" sep_color=\"#000000\" border_size=\"\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"170px\" alignment=\"\" class=\"\" id=\"\"][one_sixth last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][/one_sixth][two_third last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][fusion_text]\r\n<h3 style=\"text-align: justify;\">The Lodge is open, spacious, comfortable and homely. During hot summer days, sit and bask in the sun on the deck  with one of our  picnic specials. In winter, snuggle up with a good book or challenge one another to a friendly board game in the glassed nook area .</h3>\r\n[/fusion_text][/two_third][one_sixth last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][/one_sixth][/fullwidth][fullwidth background_color=\"#f0f0ed\" background_image=\"http://localhost/assagaylodge/wp-content/uploads/2015/01/Wood_Texture.jpg\" background_parallax=\"fixed\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"30\" padding_bottom=\"10\" padding_left=\"0\" padding_right=\"0\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][recent_works layout=\"grid\" picture_size=\"auto\" boxed_text=\"unboxed\" filters=\"no\" columns=\"3\" column_spacing=\"12\" cat_slug=\"the-lodge\" exclude_cats=\"\" number_posts=\"9\" offset=\"\" excerpt_length=\"35\" strip_html=\"yes\" carousel_layout=\"title_on_rollover\" scroll_items=\"\" autoplay=\"no\" show_nav=\"yes\" mouse_scroll=\"no\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" class=\"\" id=\"\"][/recent_works][/fullwidth][fullwidth background_color=\"#f0f0ed\" background_image=\"\" background_parallax=\"fixed\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"20\" padding_bottom=\"20\" padding_left=\"0px\" padding_right=\"0px\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][fusion_text]\r\n<h1 style=\"text-align: center;\">BEDROOMS</h1>\r\n[/fusion_text][separator style_type=\"single\" top_margin=\"\" bottom_margin=\"20\" sep_color=\"#000000\" border_size=\"\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"170px\" alignment=\"\" class=\"\" id=\"\"][one_sixth last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][/one_sixth][two_third last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][fusion_text]\r\n<h3 style=\"text-align: justify;\">When it comes to our bedrooms we’re proud to say we offer something a little more special. One of five  lovingly and tastefully decorated guest rooms. Soft gray decor soothes the senses providing a peaceful, blissfully comfortable rest from your travels and hectic lives.</h3>\r\n<h3 style=\"text-align: justify;\">Our  bedrooms are spacious, clean, comfortable all en-suite, equipped with either king size or queen size beds. Each room sleeps two guests. The rooms have high ceilings, wall heaters &amp; ceiling fans. Beds all have electric blankets in Winter, 100% cotton percale sheets and thick hyper allergenic microfiber duvets and pillows. All guest rooms are cleaned with organic and green products. Amenities include hairdryers in each room. Three rooms feature King-sized beds  of which two can be  split into two single beds. Two  rooms can therefore be changed into a twin room upon request. Two rooms feature a Queen-sized double bed. These beds cannot be split into twin beds.</h3>\r\n[/fusion_text][/two_third][one_sixth last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][/one_sixth][/fullwidth][fullwidth background_color=\"\" background_image=\"http://localhost/assagaylodge/wp-content/uploads/2015/01/DSC01516-1148-x-764.jpg\" background_parallax=\"fixed\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"center center\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"20\" padding_bottom=\"20\" padding_left=\"0\" padding_right=\"0\" hundred_percent=\"no\" equal_height_columns=\"yes\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][recent_works layout=\"grid\" picture_size=\"auto\" boxed_text=\"unboxed\" filters=\"no\" columns=\"3\" column_spacing=\"12\" cat_slug=\"bedrooms\" exclude_cats=\"\" number_posts=\"6\" offset=\"\" excerpt_length=\"35\" strip_html=\"yes\" carousel_layout=\"title_on_rollover\" scroll_items=\"\" autoplay=\"no\" show_nav=\"yes\" mouse_scroll=\"no\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" class=\"\" id=\"\"][/recent_works][/fullwidth][fullwidth background_color=\"#f0f0ed\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"20\" padding_bottom=\"20\" padding_left=\"0\" padding_right=\"0\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][fusion_text]\r\n<h1 style=\"text-align: center;\">GARDENS</h1>\r\n[/fusion_text][separator style_type=\"single\" top_margin=\"\" bottom_margin=\"20\" sep_color=\"#000000\" border_size=\"\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"170px\" alignment=\"\" class=\"\" id=\"\"][one_sixth last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][/one_sixth][two_third last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][fusion_text]\r\n<h3 style=\"text-align: justify;\">The garden is large and offers many secluded spots to lose yourself in a book with a glass of wine underneath the shade of a tree, listening to the sounds of the birds and smelling the beautiful flowers.</h3>\r\n[/fusion_text][/two_third][one_sixth last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][/one_sixth][recent_works layout=\"grid\" picture_size=\"auto\" boxed_text=\"boxed\" filters=\"no\" columns=\"3\" column_spacing=\"12\" cat_slug=\"gardens\" exclude_cats=\"\" number_posts=\"9\" offset=\"\" excerpt_length=\"35\" strip_html=\"yes\" carousel_layout=\"title_on_rollover\" scroll_items=\"\" autoplay=\"no\" show_nav=\"yes\" mouse_scroll=\"no\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" class=\"\" id=\"\"][/recent_works][/fullwidth][fullwidth background_color=\"#ffffff\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"65px\" padding_bottom=\"65px\" padding_left=\"0px\" padding_right=\"0px\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][button link=\"http://localhost/assagaylodge/book-now/\" color=\"default\" size=\"xlarge\"  type=\"3d\" shape=\"round\" target=\"_self\" title=\"\" gradient_colors=\"#f0f0ed|#f0f0ed\" gradient_hover_colors=\"#6666a4|#6666a4\" accent_color=\"#ffffff\" accent_hover_color=\"#ffffff\" bevel_color=\"\" border_width=\"0px\" icon=\"\" icon_position=\"left\" icon_divider=\"no\" modal=\"\" animation_type=\"0\" animation_direction=\"left\" animation_speed=\"1\" alignment=\"center\" class=\"\" id=\"\"]Make A Reservation Enquiry[/button][/fullwidth]', 'Home', '', 'inherit', 'closed', 'closed', '', '7-revision-v1', '', '', '2015-10-05 11:54:17', '2015-10-05 09:54:17', '', 7, 'http://localhost/assagaylodge/7-revision-v1/', 0, 'revision', '', 0);
INSERT INTO `wp_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(1132, 1, '2015-10-05 12:01:15', '2015-10-05 10:01:15', '[fullwidth background_color=\"#f0f0ed\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"90px\" padding_bottom=\"0px\" padding_left=\"0px\" padding_right=\"0px\" hundred_percent=\"yes\" equal_height_columns=\"yes\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][one_half last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"http://localhost/assagaylodge/wp-content/uploads/2015/01/DSC01554-e1442325082893.jpg\" background_repeat=\"no-repeat\" background_position=\"center center\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" class=\"\" id=\"\"][/one_half][one_fourth last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"30px\" margin_top=\"\" margin_bottom=\"0px\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" class=\"special\" id=\"\"][fusion_text]<h1 style=\"text-align: justify;\">5 BEDROOM FAMILY LODGE</h1>\r\n<h3 style=\"text-align: justify;\">A Four Season Lodge, because there’s Always Something to Celebrate… We offer comfort, relaxation and exceptional service right in the heart of 1000 Hills. The Forest, the Gardens, the Atmosphere all speak to  Rest  &amp; Relaxation.</h3>[/fusion_text][separator style_type=\"single\" top_margin=\"0\" bottom_margin=\"30\" sep_color=\"#000000\" border_size=\"\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"170px\" alignment=\"left\" class=\"separator-left\" id=\"\"][modal name=\"rates\" title=\"2015 Rates\" size=\"large\" background=\"\" border_color=\"\" show_footer=\"yes\" class=\"\" id=\"\"]ALL PRICES INCLUDE VAT\r\n<table style=\"width: 100%;\" cellspacing=\"10\">\r\n<tbody>\r\n<tr>\r\n<td colspan=\"2\"><span style=\"font-size: 12pt;\"><strong>Self-Catering Accommodation:</strong></span><span style=\"font-size: 12pt;\"> </span></td>\r\n</tr>\r\n<tr>\r\n<td><span style=\"font-size: 12pt;\">Full House Self-Catering (Max 10 persons)</span></td>\r\n<td><span style=\"font-size: 12pt;\"><strong>R3000</strong> per night (R300 per person)</span></td>\r\n</tr>\r\n<tr>\r\n<td><span style=\"font-size: 12pt;\">Lodge &amp; Room Servicing (Optional)</span></td>\r\n<td><span style=\"font-size: 12pt;\"><strong>R  200</strong> per day</span></td>\r\n</tr>\r\n<tr>\r\n<td><span style=\"font-size: 12pt;\">Single Private Room</span></td>\r\n<td><span style=\"font-size: 12pt;\"><strong>R  650</strong> per person per night</span></td>\r\n</tr>\r\n<tr>\r\n<td><span style=\"font-size: 12pt;\">Room Sharing</span></td>\r\n<td><span style=\"font-size: 12pt;\"><strong>R  500</strong> per person per night</span></td>\r\n</tr>\r\n<tr>\r\n<td><span style=\"font-size: 12pt;\"> </span></td>\r\n<td><span style=\"font-size: 12pt;\"><strong> </strong></span></td>\r\n</tr>\r\n<tr>\r\n<td colspan=\"2\"><span style=\"font-size: 12pt;\"><span style=\"font-size: 12pt;\"><strong>Meals (Optional)</strong></span> </span><span style=\"font-size: 12pt;\"><strong> </strong></span></td>\r\n</tr>\r\n<tr>\r\n<td><span style=\"font-size: 12pt;\"> <span style=\"font-size: 12pt;\">Breakfast (Continental)</span></span></td>\r\n<td><span style=\"font-size: 12pt;\"><strong> </strong><span style=\"font-size: 12pt;\"><strong>R    55</strong> per person</span></span></td>\r\n</tr>\r\n<tr>\r\n<td><span style=\"font-size: 12pt;\"> <span style=\"font-size: 12pt;\">Breakfast (Full English)</span></span></td>\r\n<td><span style=\"font-size: 12pt;\"><strong> </strong><span style=\"font-size: 12pt;\"><strong>R    95</strong> per person</span></span></td>\r\n</tr>\r\n<tr>\r\n<td><span style=\"font-size: 12pt;\"> <span style=\"font-size: 12pt;\">Light Lunch</span></span></td>\r\n<td><span style=\"font-size: 12pt;\"><strong> </strong><span style=\"font-size: 12pt;\"><strong>R    95 </strong>per person</span></span></td>\r\n</tr>\r\n<tr>\r\n<td><span style=\"font-size: 12pt;\"> <span style=\"font-size: 12pt;\">Dinners</span></span></td>\r\n<td><span style=\"font-size: 12pt;\"><strong> </strong><span style=\"font-size: 12pt;\"><strong>R  150 </strong>per person</span></span></td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n&nbsp;\r\n\r\n<hr />[/modal][button link=\"\" color=\"darkgreen\" size=\"\"  type=\"\" shape=\"\" target=\"_self\" title=\"\" gradient_colors=\"|\" gradient_hover_colors=\"|\" accent_color=\"\" accent_hover_color=\"\" bevel_color=\"\" border_width=\"1px\" icon=\"\" icon_position=\"left\" icon_divider=\"no\" modal=\"rates\" animation_type=\"0\" animation_direction=\"left\" animation_speed=\"1\" alignment=\"\" class=\"\" id=\"\"]2015 RATES[/button][/one_fourth][/fullwidth][fullwidth background_color=\"#f0f0ed\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"20\" padding_bottom=\"20\" padding_left=\"0px\" padding_right=\"0px\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][one_half last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][fusion_text]\r\n<h3 style=\"text-align: justify;\">Set in the rolling peaks and valleys of a thousand hills surrounded by a canopy of indigenous trees  , you will find that horses still have right of way , we  certainly offer the best of both worlds , farm and charm coupled with modern amenities that will have you feeling relaxed and rejuvenated.</h3>\r\n<h3 style=\"text-align: justify;\">We know that sometimes you are searching for a romantic getaway or maybe a few days away with old friends. Other times you are searching for a place to host a weekend, family reunion or a business retreat. In addition to nightly room rentals, our lodge is also available for meetings, retreats  and makes the perfect place for a wedding party to stay together and get ready for the big day. Regardless, with our five comfortable and cozy guest bedrooms , multiple garden spaces and hideaways, and a  large private deck  where you can take a nap or read a book we definitely have the room for you!</h3>\r\n[/fusion_text][/one_half][one_half last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][fusion_text]\r\n<h3 style=\"text-align: justify;\">Our lodge has been in our family for years and has recently been beautifully renovated. Five rooms all with en-suite showers, tea/coffee making facilities, MNet and satellite television (DSTV)  open Wi-Fi. Sumptuous meals are served on the bottom deck at the swimming pool. Barbecues, afternoon tea in the garden or picnic baskets  on request all add to the service that awaits you, Our lodge features a  50 foot high Apex ceiling, spacious living, dining and bar area including a fitted kitchenette  all adding to a sense of homey comfort.</h3>\r\n<h3 style=\"text-align: justify;\">Be lulled to sleep by the sound of the waterfall  and tinkling stream just outside your window , waking from a peaceful night\'s sleep in a pillow-top bed dressed in luxurious linens to coddle you in ultimate comfort.</h3>\r\n<h3 style=\"text-align: justify;\">Our property boasts many different species of birds and animals. We have a resident otter, a family of wild bush pigs,  a family of rock rabbits, porcupine, little blue duikers, a variety of different frogs and an abundance of bird life, including the occasional snakes that pass through!</h3>\r\n<h3 style=\"text-align: justify;\">Evenings are quiet and peaceful taking you far away from the business of city life. This is a unique and memorable country experience. We look forward to having you as a guest!</h3>\r\n[/fusion_text][/one_half][/fullwidth][fullwidth background_color=\"#f0f0ed\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"20\" padding_bottom=\"20\" padding_left=\"0px\" padding_right=\"0px\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][fusion_text]\r\n<h1 style=\"text-align: center;\">Gallery</h1>\r\n[/fusion_text][separator style_type=\"single\" top_margin=\"\" bottom_margin=\"40\" sep_color=\"#000000\" border_size=\"\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"170px\" alignment=\"\" class=\"\" id=\"\"][one_sixth last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][/one_sixth][two_third last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][fusion_text]\r\n<h3 style=\"text-align: justify;\">The Lodge is open, spacious, comfortable and homely. During hot summer days, sit and bask in the sun on the deck  with one of our  picnic specials. In winter, snuggle up with a good book or challenge one another to a friendly board game in the glassed nook area .</h3>\r\n[/fusion_text][/two_third][one_sixth last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][/one_sixth][/fullwidth][fullwidth background_color=\"#f0f0ed\" background_image=\"http://localhost/assagaylodge/wp-content/uploads/2015/01/Wood_Texture.jpg\" background_parallax=\"fixed\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"30\" padding_bottom=\"10\" padding_left=\"0\" padding_right=\"0\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][recent_works layout=\"grid\" picture_size=\"auto\" boxed_text=\"unboxed\" filters=\"no\" columns=\"3\" column_spacing=\"12\" cat_slug=\"the-lodge\" exclude_cats=\"\" number_posts=\"9\" offset=\"\" excerpt_length=\"35\" strip_html=\"yes\" carousel_layout=\"title_on_rollover\" scroll_items=\"\" autoplay=\"no\" show_nav=\"yes\" mouse_scroll=\"no\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" class=\"\" id=\"\"][/recent_works][/fullwidth][fullwidth background_color=\"#f0f0ed\" background_image=\"\" background_parallax=\"fixed\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"20\" padding_bottom=\"20\" padding_left=\"0px\" padding_right=\"0px\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][fusion_text]\r\n<h1 style=\"text-align: center;\">BEDROOMS</h1>\r\n[/fusion_text][separator style_type=\"single\" top_margin=\"\" bottom_margin=\"20\" sep_color=\"#000000\" border_size=\"\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"170px\" alignment=\"\" class=\"\" id=\"\"][one_sixth last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][/one_sixth][two_third last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][fusion_text]\r\n<h3 style=\"text-align: justify;\">When it comes to our bedrooms we’re proud to say we offer something a little more special. One of five  lovingly and tastefully decorated guest rooms. Soft gray decor soothes the senses providing a peaceful, blissfully comfortable rest from your travels and hectic lives.</h3>\r\n<h3 style=\"text-align: justify;\">Our  bedrooms are spacious, clean, comfortable all en-suite, equipped with either king size or queen size beds. Each room sleeps two guests. The rooms have high ceilings, wall heaters &amp; ceiling fans. Beds all have electric blankets in Winter, 100% cotton percale sheets and thick hyper allergenic microfiber duvets and pillows. All guest rooms are cleaned with organic and green products. Amenities include hairdryers in each room. Three rooms feature King-sized beds  of which two can be  split into two single beds. Two  rooms can therefore be changed into a twin room upon request. Two rooms feature a Queen-sized double bed. These beds cannot be split into twin beds.</h3>\r\n[/fusion_text][/two_third][one_sixth last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][/one_sixth][/fullwidth][fullwidth background_color=\"\" background_image=\"http://localhost/assagaylodge/wp-content/uploads/2015/01/DSC01516-1148-x-764.jpg\" background_parallax=\"fixed\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"center center\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"20\" padding_bottom=\"20\" padding_left=\"0\" padding_right=\"0\" hundred_percent=\"no\" equal_height_columns=\"yes\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][recent_works layout=\"grid\" picture_size=\"auto\" boxed_text=\"unboxed\" filters=\"no\" columns=\"3\" column_spacing=\"12\" cat_slug=\"bedrooms\" exclude_cats=\"\" number_posts=\"6\" offset=\"\" excerpt_length=\"35\" strip_html=\"yes\" carousel_layout=\"title_on_rollover\" scroll_items=\"\" autoplay=\"no\" show_nav=\"yes\" mouse_scroll=\"no\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" class=\"\" id=\"\"][/recent_works][/fullwidth][fullwidth background_color=\"#f0f0ed\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"20\" padding_bottom=\"20\" padding_left=\"0\" padding_right=\"0\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][fusion_text]\r\n<h1 style=\"text-align: center;\">GARDENS</h1>\r\n[/fusion_text][separator style_type=\"single\" top_margin=\"\" bottom_margin=\"20\" sep_color=\"#000000\" border_size=\"\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"170px\" alignment=\"\" class=\"\" id=\"\"][one_sixth last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][/one_sixth][two_third last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][fusion_text]\r\n<h3 style=\"text-align: justify;\">The garden is large and offers many secluded spots to lose yourself in a book with a glass of wine underneath the shade of a tree, listening to the sounds of the birds and smelling the beautiful flowers.</h3>\r\n[/fusion_text][/two_third][one_sixth last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][/one_sixth][recent_works layout=\"grid\" picture_size=\"auto\" boxed_text=\"boxed\" filters=\"no\" columns=\"3\" column_spacing=\"12\" cat_slug=\"gardens\" exclude_cats=\"\" number_posts=\"9\" offset=\"\" excerpt_length=\"35\" strip_html=\"yes\" carousel_layout=\"title_on_rollover\" scroll_items=\"\" autoplay=\"no\" show_nav=\"yes\" mouse_scroll=\"no\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" class=\"\" id=\"\"][/recent_works][/fullwidth][fullwidth background_color=\"#ffffff\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"65px\" padding_bottom=\"65px\" padding_left=\"0px\" padding_right=\"0px\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][button link=\"http://localhost/assagaylodge/book-now/\" color=\"default\" size=\"xlarge\"  type=\"3d\" shape=\"round\" target=\"_self\" title=\"\" gradient_colors=\"#f0f0ed|#f0f0ed\" gradient_hover_colors=\"#6666a4|#6666a4\" accent_color=\"#ffffff\" accent_hover_color=\"#ffffff\" bevel_color=\"\" border_width=\"0px\" icon=\"\" icon_position=\"left\" icon_divider=\"no\" modal=\"\" animation_type=\"0\" animation_direction=\"left\" animation_speed=\"1\" alignment=\"center\" class=\"\" id=\"\"]Make A Reservation Enquiry[/button][/fullwidth]', 'Home', '', 'inherit', 'closed', 'closed', '', '7-revision-v1', '', '', '2015-10-05 12:01:15', '2015-10-05 10:01:15', '', 7, 'http://localhost/assagaylodge/7-revision-v1/', 0, 'revision', '', 0),
(1133, 1, '2015-10-05 12:03:06', '2015-10-05 10:03:06', '[fullwidth background_color=\"#f0f0ed\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"90px\" padding_bottom=\"0px\" padding_left=\"0px\" padding_right=\"0px\" hundred_percent=\"yes\" equal_height_columns=\"yes\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][one_half last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"http://localhost/assagaylodge/wp-content/uploads/2015/01/DSC01554-e1442325082893.jpg\" background_repeat=\"no-repeat\" background_position=\"center center\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" class=\"\" id=\"\"][/one_half][one_third last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"30px\" margin_top=\"\" margin_bottom=\"0px\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" class=\"special\" id=\"\"][fusion_text]<h1 style=\"text-align: justify;\">5 BEDROOM FAMILY LODGE</h1>\r\n<h3 style=\"text-align: justify;\">A Four Season Lodge, because there’s Always Something to Celebrate… We offer comfort, relaxation and exceptional service right in the heart of 1000 Hills. The Forest, the Gardens, the Atmosphere all speak to  Rest  &amp; Relaxation.</h3>[/fusion_text][separator style_type=\"single\" top_margin=\"0\" bottom_margin=\"30\" sep_color=\"#000000\" border_size=\"\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"170px\" alignment=\"left\" class=\"separator-left\" id=\"\"][modal name=\"rates\" title=\"2015 Rates\" size=\"large\" background=\"\" border_color=\"\" show_footer=\"yes\" class=\"\" id=\"\"]ALL PRICES INCLUDE VAT\r\n<table style=\"width: 100%;\" cellspacing=\"10\">\r\n<tbody>\r\n<tr>\r\n<td colspan=\"2\"><span style=\"font-size: 12pt;\"><strong>Self-Catering Accommodation:</strong></span><span style=\"font-size: 12pt;\"> </span></td>\r\n</tr>\r\n<tr>\r\n<td><span style=\"font-size: 12pt;\">Full House Self-Catering (Max 10 persons)</span></td>\r\n<td><span style=\"font-size: 12pt;\"><strong>R3000</strong> per night (R300 per person)</span></td>\r\n</tr>\r\n<tr>\r\n<td><span style=\"font-size: 12pt;\">Lodge &amp; Room Servicing (Optional)</span></td>\r\n<td><span style=\"font-size: 12pt;\"><strong>R  200</strong> per day</span></td>\r\n</tr>\r\n<tr>\r\n<td><span style=\"font-size: 12pt;\">Single Private Room</span></td>\r\n<td><span style=\"font-size: 12pt;\"><strong>R  650</strong> per person per night</span></td>\r\n</tr>\r\n<tr>\r\n<td><span style=\"font-size: 12pt;\">Room Sharing</span></td>\r\n<td><span style=\"font-size: 12pt;\"><strong>R  500</strong> per person per night</span></td>\r\n</tr>\r\n<tr>\r\n<td><span style=\"font-size: 12pt;\"> </span></td>\r\n<td><span style=\"font-size: 12pt;\"><strong> </strong></span></td>\r\n</tr>\r\n<tr>\r\n<td colspan=\"2\"><span style=\"font-size: 12pt;\"><span style=\"font-size: 12pt;\"><strong>Meals (Optional)</strong></span> </span><span style=\"font-size: 12pt;\"><strong> </strong></span></td>\r\n</tr>\r\n<tr>\r\n<td><span style=\"font-size: 12pt;\"> <span style=\"font-size: 12pt;\">Breakfast (Continental)</span></span></td>\r\n<td><span style=\"font-size: 12pt;\"><strong> </strong><span style=\"font-size: 12pt;\"><strong>R    55</strong> per person</span></span></td>\r\n</tr>\r\n<tr>\r\n<td><span style=\"font-size: 12pt;\"> <span style=\"font-size: 12pt;\">Breakfast (Full English)</span></span></td>\r\n<td><span style=\"font-size: 12pt;\"><strong> </strong><span style=\"font-size: 12pt;\"><strong>R    95</strong> per person</span></span></td>\r\n</tr>\r\n<tr>\r\n<td><span style=\"font-size: 12pt;\"> <span style=\"font-size: 12pt;\">Light Lunch</span></span></td>\r\n<td><span style=\"font-size: 12pt;\"><strong> </strong><span style=\"font-size: 12pt;\"><strong>R    95 </strong>per person</span></span></td>\r\n</tr>\r\n<tr>\r\n<td><span style=\"font-size: 12pt;\"> <span style=\"font-size: 12pt;\">Dinners</span></span></td>\r\n<td><span style=\"font-size: 12pt;\"><strong> </strong><span style=\"font-size: 12pt;\"><strong>R  150 </strong>per person</span></span></td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n&nbsp;\r\n\r\n<hr />[/modal][button link=\"\" color=\"darkgreen\" size=\"\"  type=\"\" shape=\"\" target=\"_self\" title=\"\" gradient_colors=\"|\" gradient_hover_colors=\"|\" accent_color=\"\" accent_hover_color=\"\" bevel_color=\"\" border_width=\"1px\" icon=\"\" icon_position=\"left\" icon_divider=\"no\" modal=\"rates\" animation_type=\"0\" animation_direction=\"left\" animation_speed=\"1\" alignment=\"\" class=\"\" id=\"\"]2015 RATES[/button][/one_third][/fullwidth][fullwidth background_color=\"#f0f0ed\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"20\" padding_bottom=\"20\" padding_left=\"0px\" padding_right=\"0px\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][one_half last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][fusion_text]\r\n<h3 style=\"text-align: justify;\">Set in the rolling peaks and valleys of a thousand hills surrounded by a canopy of indigenous trees  , you will find that horses still have right of way , we  certainly offer the best of both worlds , farm and charm coupled with modern amenities that will have you feeling relaxed and rejuvenated.</h3>\r\n<h3 style=\"text-align: justify;\">We know that sometimes you are searching for a romantic getaway or maybe a few days away with old friends. Other times you are searching for a place to host a weekend, family reunion or a business retreat. In addition to nightly room rentals, our lodge is also available for meetings, retreats  and makes the perfect place for a wedding party to stay together and get ready for the big day. Regardless, with our five comfortable and cozy guest bedrooms , multiple garden spaces and hideaways, and a  large private deck  where you can take a nap or read a book we definitely have the room for you!</h3>\r\n[/fusion_text][/one_half][one_half last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][fusion_text]\r\n<h3 style=\"text-align: justify;\">Our lodge has been in our family for years and has recently been beautifully renovated. Five rooms all with en-suite showers, tea/coffee making facilities, MNet and satellite television (DSTV)  open Wi-Fi. Sumptuous meals are served on the bottom deck at the swimming pool. Barbecues, afternoon tea in the garden or picnic baskets  on request all add to the service that awaits you, Our lodge features a  50 foot high Apex ceiling, spacious living, dining and bar area including a fitted kitchenette  all adding to a sense of homey comfort.</h3>\r\n<h3 style=\"text-align: justify;\">Be lulled to sleep by the sound of the waterfall  and tinkling stream just outside your window , waking from a peaceful night\'s sleep in a pillow-top bed dressed in luxurious linens to coddle you in ultimate comfort.</h3>\r\n<h3 style=\"text-align: justify;\">Our property boasts many different species of birds and animals. We have a resident otter, a family of wild bush pigs,  a family of rock rabbits, porcupine, little blue duikers, a variety of different frogs and an abundance of bird life, including the occasional snakes that pass through!</h3>\r\n<h3 style=\"text-align: justify;\">Evenings are quiet and peaceful taking you far away from the business of city life. This is a unique and memorable country experience. We look forward to having you as a guest!</h3>\r\n[/fusion_text][/one_half][/fullwidth][fullwidth background_color=\"#f0f0ed\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"20\" padding_bottom=\"20\" padding_left=\"0px\" padding_right=\"0px\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][fusion_text]\r\n<h1 style=\"text-align: center;\">Gallery</h1>\r\n[/fusion_text][separator style_type=\"single\" top_margin=\"\" bottom_margin=\"40\" sep_color=\"#000000\" border_size=\"\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"170px\" alignment=\"\" class=\"\" id=\"\"][one_sixth last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][/one_sixth][two_third last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][fusion_text]\r\n<h3 style=\"text-align: justify;\">The Lodge is open, spacious, comfortable and homely. During hot summer days, sit and bask in the sun on the deck  with one of our  picnic specials. In winter, snuggle up with a good book or challenge one another to a friendly board game in the glassed nook area .</h3>\r\n[/fusion_text][/two_third][one_sixth last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][/one_sixth][/fullwidth][fullwidth background_color=\"#f0f0ed\" background_image=\"http://localhost/assagaylodge/wp-content/uploads/2015/01/Wood_Texture.jpg\" background_parallax=\"fixed\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"30\" padding_bottom=\"10\" padding_left=\"0\" padding_right=\"0\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][recent_works layout=\"grid\" picture_size=\"auto\" boxed_text=\"unboxed\" filters=\"no\" columns=\"3\" column_spacing=\"12\" cat_slug=\"the-lodge\" exclude_cats=\"\" number_posts=\"9\" offset=\"\" excerpt_length=\"35\" strip_html=\"yes\" carousel_layout=\"title_on_rollover\" scroll_items=\"\" autoplay=\"no\" show_nav=\"yes\" mouse_scroll=\"no\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" class=\"\" id=\"\"][/recent_works][/fullwidth][fullwidth background_color=\"#f0f0ed\" background_image=\"\" background_parallax=\"fixed\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"20\" padding_bottom=\"20\" padding_left=\"0px\" padding_right=\"0px\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][fusion_text]\r\n<h1 style=\"text-align: center;\">BEDROOMS</h1>\r\n[/fusion_text][separator style_type=\"single\" top_margin=\"\" bottom_margin=\"20\" sep_color=\"#000000\" border_size=\"\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"170px\" alignment=\"\" class=\"\" id=\"\"][one_sixth last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][/one_sixth][two_third last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][fusion_text]\r\n<h3 style=\"text-align: justify;\">When it comes to our bedrooms we’re proud to say we offer something a little more special. One of five  lovingly and tastefully decorated guest rooms. Soft gray decor soothes the senses providing a peaceful, blissfully comfortable rest from your travels and hectic lives.</h3>\r\n<h3 style=\"text-align: justify;\">Our  bedrooms are spacious, clean, comfortable all en-suite, equipped with either king size or queen size beds. Each room sleeps two guests. The rooms have high ceilings, wall heaters &amp; ceiling fans. Beds all have electric blankets in Winter, 100% cotton percale sheets and thick hyper allergenic microfiber duvets and pillows. All guest rooms are cleaned with organic and green products. Amenities include hairdryers in each room. Three rooms feature King-sized beds  of which two can be  split into two single beds. Two  rooms can therefore be changed into a twin room upon request. Two rooms feature a Queen-sized double bed. These beds cannot be split into twin beds.</h3>\r\n[/fusion_text][/two_third][one_sixth last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][/one_sixth][/fullwidth][fullwidth background_color=\"\" background_image=\"http://localhost/assagaylodge/wp-content/uploads/2015/01/DSC01516-1148-x-764.jpg\" background_parallax=\"fixed\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"center center\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"20\" padding_bottom=\"20\" padding_left=\"0\" padding_right=\"0\" hundred_percent=\"no\" equal_height_columns=\"yes\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][recent_works layout=\"grid\" picture_size=\"auto\" boxed_text=\"unboxed\" filters=\"no\" columns=\"3\" column_spacing=\"12\" cat_slug=\"bedrooms\" exclude_cats=\"\" number_posts=\"6\" offset=\"\" excerpt_length=\"35\" strip_html=\"yes\" carousel_layout=\"title_on_rollover\" scroll_items=\"\" autoplay=\"no\" show_nav=\"yes\" mouse_scroll=\"no\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" class=\"\" id=\"\"][/recent_works][/fullwidth][fullwidth background_color=\"#f0f0ed\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"20\" padding_bottom=\"20\" padding_left=\"0\" padding_right=\"0\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][fusion_text]\r\n<h1 style=\"text-align: center;\">GARDENS</h1>\r\n[/fusion_text][separator style_type=\"single\" top_margin=\"\" bottom_margin=\"20\" sep_color=\"#000000\" border_size=\"\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"170px\" alignment=\"\" class=\"\" id=\"\"][one_sixth last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][/one_sixth][two_third last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][fusion_text]\r\n<h3 style=\"text-align: justify;\">The garden is large and offers many secluded spots to lose yourself in a book with a glass of wine underneath the shade of a tree, listening to the sounds of the birds and smelling the beautiful flowers.</h3>\r\n[/fusion_text][/two_third][one_sixth last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][/one_sixth][recent_works layout=\"grid\" picture_size=\"auto\" boxed_text=\"boxed\" filters=\"no\" columns=\"3\" column_spacing=\"12\" cat_slug=\"gardens\" exclude_cats=\"\" number_posts=\"9\" offset=\"\" excerpt_length=\"35\" strip_html=\"yes\" carousel_layout=\"title_on_rollover\" scroll_items=\"\" autoplay=\"no\" show_nav=\"yes\" mouse_scroll=\"no\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" class=\"\" id=\"\"][/recent_works][/fullwidth][fullwidth background_color=\"#ffffff\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"65px\" padding_bottom=\"65px\" padding_left=\"0px\" padding_right=\"0px\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][button link=\"http://localhost/assagaylodge/book-now/\" color=\"default\" size=\"xlarge\"  type=\"3d\" shape=\"round\" target=\"_self\" title=\"\" gradient_colors=\"#f0f0ed|#f0f0ed\" gradient_hover_colors=\"#6666a4|#6666a4\" accent_color=\"#ffffff\" accent_hover_color=\"#ffffff\" bevel_color=\"\" border_width=\"0px\" icon=\"\" icon_position=\"left\" icon_divider=\"no\" modal=\"\" animation_type=\"0\" animation_direction=\"left\" animation_speed=\"1\" alignment=\"center\" class=\"\" id=\"\"]Make A Reservation Enquiry[/button][/fullwidth]', 'Home', '', 'inherit', 'closed', 'closed', '', '7-revision-v1', '', '', '2015-10-05 12:03:06', '2015-10-05 10:03:06', '', 7, 'http://localhost/assagaylodge/7-revision-v1/', 0, 'revision', '', 0);
INSERT INTO `wp_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(1134, 1, '2015-10-05 12:08:05', '2015-10-05 10:08:05', '[fullwidth background_color=\"#f0f0ed\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"90px\" padding_bottom=\"0px\" padding_left=\"0px\" padding_right=\"0px\" hundred_percent=\"yes\" equal_height_columns=\"yes\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][one_half last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"http://localhost/assagaylodge/wp-content/uploads/2015/01/DSC01554-e1442325082893.jpg\" background_repeat=\"no-repeat\" background_position=\"center center\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" class=\"\" id=\"\"][/one_half][one_third last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"30px\" margin_top=\"\" margin_bottom=\"0px\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" class=\"special\" id=\"\"][fusion_text]<h1 style=\"text-align: justify;\">5 BEDROOM FAMILY LODGE</h1>\r\n<h3 style=\"text-align: justify;\">A Four Season Lodge, because there’s Always Something to Celebrate… We offer comfort, relaxation and exceptional service right in the heart of 1000 Hills. The Forest, the Gardens, the Atmosphere all speak to  Rest  &amp; Relaxation.</h3>[/fusion_text][separator style_type=\"single\" top_margin=\"0\" bottom_margin=\"30\" sep_color=\"#000000\" border_size=\"\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"170px\" alignment=\"left\" class=\"separator-left\" id=\"\"][modal name=\"rates\" title=\"2015 Rates\" size=\"large\" background=\"\" border_color=\"\" show_footer=\"yes\" class=\"\" id=\"\"]<p>ALL PRICES INCLUDE VAT</p>\r\n<table style=\"width: 100%;\" cellspacing=\"15\">\r\n<tbody>\r\n<tr>\r\n<td colspan=\"2\"><span style=\"font-size: 12pt;\"><strong>Self-Catering Accommodation:</strong></span><span style=\"font-size: 12pt;\"> </span></td>\r\n</tr>\r\n<tr>\r\n<td><span style=\"font-size: 12pt;\">Full House Self-Catering (Max 10 persons)</span></td>\r\n<td><span style=\"font-size: 12pt;\"><strong>R3000</strong> per night (R300 per person)</span></td>\r\n</tr>\r\n<tr>\r\n<td><span style=\"font-size: 12pt;\">Lodge & Room Servicing (Optional)</span></td>\r\n<td><span style=\"font-size: 12pt;\"><strong>R  200</strong> per day</span></td>\r\n</tr>\r\n<tr>\r\n<td><span style=\"font-size: 12pt;\">Single Private Room</span></td>\r\n<td><span style=\"font-size: 12pt;\"><strong>R  650</strong> per person per night</span></td>\r\n</tr>\r\n<tr>\r\n<td><span style=\"font-size: 12pt;\">Room Sharing</span></td>\r\n<td><span style=\"font-size: 12pt;\"><strong>R  500</strong> per person per night</span></td>\r\n</tr>\r\n<tr>\r\n<td><span style=\"font-size: 12pt;\"> </span></td>\r\n<td><span style=\"font-size: 12pt;\"><strong> </strong></span></td>\r\n</tr>\r\n<tr>\r\n<td colspan=\"2\"><span style=\"font-size: 12pt;\"><span style=\"font-size: 12pt;\"><strong>Meals (Optional)</strong></span> </span><span style=\"font-size: 12pt;\"><strong> </strong></span></td>\r\n</tr>\r\n<tr>\r\n<td><span style=\"font-size: 12pt;\"> <span style=\"font-size: 12pt;\">Breakfast (Continental)</span></span></td>\r\n<td><span style=\"font-size: 12pt;\"><strong> </strong><span style=\"font-size: 12pt;\"><strong>R    55</strong> per person</span></span></td>\r\n</tr>\r\n<tr>\r\n<td><span style=\"font-size: 12pt;\"> <span style=\"font-size: 12pt;\">Breakfast (Full English)</span></span></td>\r\n<td><span style=\"font-size: 12pt;\"><strong> </strong><span style=\"font-size: 12pt;\"><strong>R    95</strong> per person</span></span></td>\r\n</tr>\r\n<tr>\r\n<td><span style=\"font-size: 12pt;\"> <span style=\"font-size: 12pt;\">Light Lunch</span></span></td>\r\n<td><span style=\"font-size: 12pt;\"><strong> </strong><span style=\"font-size: 12pt;\"><strong>R    95 </strong>per person</span></span></td>\r\n</tr>\r\n<tr>\r\n<td><span style=\"font-size: 12pt;\"> <span style=\"font-size: 12pt;\">Dinners</span></span></td>\r\n<td><span style=\"font-size: 12pt;\"><strong> </strong><span style=\"font-size: 12pt;\"><strong>R  150 </strong>per person</span></span></td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n<p> </p>\r\n<hr />\r\n[/modal][button link=\"\" color=\"darkgreen\" size=\"\"  type=\"\" shape=\"\" target=\"_self\" title=\"\" gradient_colors=\"|\" gradient_hover_colors=\"|\" accent_color=\"\" accent_hover_color=\"\" bevel_color=\"\" border_width=\"1px\" icon=\"\" icon_position=\"left\" icon_divider=\"no\" modal=\"rates\" animation_type=\"0\" animation_direction=\"left\" animation_speed=\"1\" alignment=\"\" class=\"\" id=\"\"]2015 RATES[/button][/one_third][/fullwidth][fullwidth background_color=\"#f0f0ed\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"20\" padding_bottom=\"20\" padding_left=\"0px\" padding_right=\"0px\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][one_half last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][fusion_text]\r\n<h3 style=\"text-align: justify;\">Set in the rolling peaks and valleys of a thousand hills surrounded by a canopy of indigenous trees  , you will find that horses still have right of way , we  certainly offer the best of both worlds , farm and charm coupled with modern amenities that will have you feeling relaxed and rejuvenated.</h3>\r\n<h3 style=\"text-align: justify;\">We know that sometimes you are searching for a romantic getaway or maybe a few days away with old friends. Other times you are searching for a place to host a weekend, family reunion or a business retreat. In addition to nightly room rentals, our lodge is also available for meetings, retreats  and makes the perfect place for a wedding party to stay together and get ready for the big day. Regardless, with our five comfortable and cozy guest bedrooms , multiple garden spaces and hideaways, and a  large private deck  where you can take a nap or read a book we definitely have the room for you!</h3>\r\n[/fusion_text][/one_half][one_half last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][fusion_text]\r\n<h3 style=\"text-align: justify;\">Our lodge has been in our family for years and has recently been beautifully renovated. Five rooms all with en-suite showers, tea/coffee making facilities, MNet and satellite television (DSTV)  open Wi-Fi. Sumptuous meals are served on the bottom deck at the swimming pool. Barbecues, afternoon tea in the garden or picnic baskets  on request all add to the service that awaits you, Our lodge features a  50 foot high Apex ceiling, spacious living, dining and bar area including a fitted kitchenette  all adding to a sense of homey comfort.</h3>\r\n<h3 style=\"text-align: justify;\">Be lulled to sleep by the sound of the waterfall  and tinkling stream just outside your window , waking from a peaceful night\'s sleep in a pillow-top bed dressed in luxurious linens to coddle you in ultimate comfort.</h3>\r\n<h3 style=\"text-align: justify;\">Our property boasts many different species of birds and animals. We have a resident otter, a family of wild bush pigs,  a family of rock rabbits, porcupine, little blue duikers, a variety of different frogs and an abundance of bird life, including the occasional snakes that pass through!</h3>\r\n<h3 style=\"text-align: justify;\">Evenings are quiet and peaceful taking you far away from the business of city life. This is a unique and memorable country experience. We look forward to having you as a guest!</h3>\r\n[/fusion_text][/one_half][/fullwidth][fullwidth background_color=\"#f0f0ed\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"20\" padding_bottom=\"20\" padding_left=\"0px\" padding_right=\"0px\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][fusion_text]\r\n<h1 style=\"text-align: center;\">Gallery</h1>\r\n[/fusion_text][separator style_type=\"single\" top_margin=\"\" bottom_margin=\"40\" sep_color=\"#000000\" border_size=\"\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"170px\" alignment=\"\" class=\"\" id=\"\"][one_sixth last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][/one_sixth][two_third last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][fusion_text]\r\n<h3 style=\"text-align: justify;\">The Lodge is open, spacious, comfortable and homely. During hot summer days, sit and bask in the sun on the deck  with one of our  picnic specials. In winter, snuggle up with a good book or challenge one another to a friendly board game in the glassed nook area .</h3>\r\n[/fusion_text][/two_third][one_sixth last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][/one_sixth][/fullwidth][fullwidth background_color=\"#f0f0ed\" background_image=\"http://localhost/assagaylodge/wp-content/uploads/2015/01/Wood_Texture.jpg\" background_parallax=\"fixed\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"30\" padding_bottom=\"10\" padding_left=\"0\" padding_right=\"0\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][recent_works layout=\"grid\" picture_size=\"auto\" boxed_text=\"unboxed\" filters=\"no\" columns=\"3\" column_spacing=\"12\" cat_slug=\"the-lodge\" exclude_cats=\"\" number_posts=\"9\" offset=\"\" excerpt_length=\"35\" strip_html=\"yes\" carousel_layout=\"title_on_rollover\" scroll_items=\"\" autoplay=\"no\" show_nav=\"yes\" mouse_scroll=\"no\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" class=\"\" id=\"\"][/recent_works][/fullwidth][fullwidth background_color=\"#f0f0ed\" background_image=\"\" background_parallax=\"fixed\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"20\" padding_bottom=\"20\" padding_left=\"0px\" padding_right=\"0px\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][fusion_text]\r\n<h1 style=\"text-align: center;\">BEDROOMS</h1>\r\n[/fusion_text][separator style_type=\"single\" top_margin=\"\" bottom_margin=\"20\" sep_color=\"#000000\" border_size=\"\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"170px\" alignment=\"\" class=\"\" id=\"\"][one_sixth last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][/one_sixth][two_third last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][fusion_text]\r\n<h3 style=\"text-align: justify;\">When it comes to our bedrooms we’re proud to say we offer something a little more special. One of five  lovingly and tastefully decorated guest rooms. Soft gray decor soothes the senses providing a peaceful, blissfully comfortable rest from your travels and hectic lives.</h3>\r\n<h3 style=\"text-align: justify;\">Our  bedrooms are spacious, clean, comfortable all en-suite, equipped with either king size or queen size beds. Each room sleeps two guests. The rooms have high ceilings, wall heaters &amp; ceiling fans. Beds all have electric blankets in Winter, 100% cotton percale sheets and thick hyper allergenic microfiber duvets and pillows. All guest rooms are cleaned with organic and green products. Amenities include hairdryers in each room. Three rooms feature King-sized beds  of which two can be  split into two single beds. Two  rooms can therefore be changed into a twin room upon request. Two rooms feature a Queen-sized double bed. These beds cannot be split into twin beds.</h3>\r\n[/fusion_text][/two_third][one_sixth last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][/one_sixth][/fullwidth][fullwidth background_color=\"\" background_image=\"http://localhost/assagaylodge/wp-content/uploads/2015/01/DSC01516-1148-x-764.jpg\" background_parallax=\"fixed\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"center center\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"20\" padding_bottom=\"20\" padding_left=\"0\" padding_right=\"0\" hundred_percent=\"no\" equal_height_columns=\"yes\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][recent_works layout=\"grid\" picture_size=\"auto\" boxed_text=\"unboxed\" filters=\"no\" columns=\"3\" column_spacing=\"12\" cat_slug=\"bedrooms\" exclude_cats=\"\" number_posts=\"6\" offset=\"\" excerpt_length=\"35\" strip_html=\"yes\" carousel_layout=\"title_on_rollover\" scroll_items=\"\" autoplay=\"no\" show_nav=\"yes\" mouse_scroll=\"no\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" class=\"\" id=\"\"][/recent_works][/fullwidth][fullwidth background_color=\"#f0f0ed\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"20\" padding_bottom=\"20\" padding_left=\"0\" padding_right=\"0\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][fusion_text]\r\n<h1 style=\"text-align: center;\">GARDENS</h1>\r\n[/fusion_text][separator style_type=\"single\" top_margin=\"\" bottom_margin=\"20\" sep_color=\"#000000\" border_size=\"\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"170px\" alignment=\"\" class=\"\" id=\"\"][one_sixth last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][/one_sixth][two_third last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][fusion_text]\r\n<h3 style=\"text-align: justify;\">The garden is large and offers many secluded spots to lose yourself in a book with a glass of wine underneath the shade of a tree, listening to the sounds of the birds and smelling the beautiful flowers.</h3>\r\n[/fusion_text][/two_third][one_sixth last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][/one_sixth][recent_works layout=\"grid\" picture_size=\"auto\" boxed_text=\"boxed\" filters=\"no\" columns=\"3\" column_spacing=\"12\" cat_slug=\"gardens\" exclude_cats=\"\" number_posts=\"9\" offset=\"\" excerpt_length=\"35\" strip_html=\"yes\" carousel_layout=\"title_on_rollover\" scroll_items=\"\" autoplay=\"no\" show_nav=\"yes\" mouse_scroll=\"no\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" class=\"\" id=\"\"][/recent_works][/fullwidth][fullwidth background_color=\"#ffffff\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"65px\" padding_bottom=\"65px\" padding_left=\"0px\" padding_right=\"0px\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][button link=\"http://localhost/assagaylodge/book-now/\" color=\"default\" size=\"xlarge\"  type=\"3d\" shape=\"round\" target=\"_self\" title=\"\" gradient_colors=\"#f0f0ed|#f0f0ed\" gradient_hover_colors=\"#6666a4|#6666a4\" accent_color=\"#ffffff\" accent_hover_color=\"#ffffff\" bevel_color=\"\" border_width=\"0px\" icon=\"\" icon_position=\"left\" icon_divider=\"no\" modal=\"\" animation_type=\"0\" animation_direction=\"left\" animation_speed=\"1\" alignment=\"center\" class=\"\" id=\"\"]Make A Reservation Enquiry[/button][/fullwidth]', 'Home', '', 'inherit', 'closed', 'closed', '', '7-revision-v1', '', '', '2015-10-05 12:08:05', '2015-10-05 10:08:05', '', 7, 'http://localhost/assagaylodge/7-revision-v1/', 0, 'revision', '', 0),
(1135, 1, '2015-10-05 12:09:13', '2015-10-05 10:09:13', '[fullwidth background_color=\"#f0f0ed\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"90px\" padding_bottom=\"0px\" padding_left=\"0px\" padding_right=\"0px\" hundred_percent=\"yes\" equal_height_columns=\"yes\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][one_half last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"http://localhost/assagaylodge/wp-content/uploads/2015/01/DSC01554-e1442325082893.jpg\" background_repeat=\"no-repeat\" background_position=\"center center\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" class=\"\" id=\"\"][/one_half][one_half last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"30px\" margin_top=\"\" margin_bottom=\"0px\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" class=\"special\" id=\"\"][fusion_text]<h1 style=\"text-align: justify;\">5 BEDROOM FAMILY LODGE</h1>\r\n<h3 style=\"text-align: justify;\">A Four Season Lodge, because there’s Always Something to Celebrate… We offer comfort, relaxation and exceptional service right in the heart of 1000 Hills. The Forest, the Gardens, the Atmosphere all speak to  Rest  &amp; Relaxation.</h3>[/fusion_text][separator style_type=\"single\" top_margin=\"0\" bottom_margin=\"30\" sep_color=\"#000000\" border_size=\"\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"170px\" alignment=\"left\" class=\"separator-left\" id=\"\"][modal name=\"rates\" title=\"2015 Rates\" size=\"large\" background=\"\" border_color=\"\" show_footer=\"yes\" class=\"\" id=\"\"]<p>ALL PRICES INCLUDE VAT</p>\r\n<table style=\"width: 100%;\" cellspacing=\"15\">\r\n<tbody>\r\n<tr>\r\n<td colspan=\"2\"><span style=\"font-size: 12pt;\"><strong>Self-Catering Accommodation:</strong></span><span style=\"font-size: 12pt;\"> </span></td>\r\n</tr>\r\n<tr>\r\n<td><span style=\"font-size: 12pt;\">Full House Self-Catering (Max 10 persons)</span></td>\r\n<td><span style=\"font-size: 12pt;\"><strong>R3000</strong> per night (R300 per person)</span></td>\r\n</tr>\r\n<tr>\r\n<td><span style=\"font-size: 12pt;\">Lodge & Room Servicing (Optional)</span></td>\r\n<td><span style=\"font-size: 12pt;\"><strong>R  200</strong> per day</span></td>\r\n</tr>\r\n<tr>\r\n<td><span style=\"font-size: 12pt;\">Single Private Room</span></td>\r\n<td><span style=\"font-size: 12pt;\"><strong>R  650</strong> per person per night</span></td>\r\n</tr>\r\n<tr>\r\n<td><span style=\"font-size: 12pt;\">Room Sharing</span></td>\r\n<td><span style=\"font-size: 12pt;\"><strong>R  500</strong> per person per night</span></td>\r\n</tr>\r\n<tr>\r\n<td><span style=\"font-size: 12pt;\"> </span></td>\r\n<td><span style=\"font-size: 12pt;\"><strong> </strong></span></td>\r\n</tr>\r\n<tr>\r\n<td colspan=\"2\"><span style=\"font-size: 12pt;\"><span style=\"font-size: 12pt;\"><strong>Meals (Optional)</strong></span> </span><span style=\"font-size: 12pt;\"><strong> </strong></span></td>\r\n</tr>\r\n<tr>\r\n<td><span style=\"font-size: 12pt;\"> <span style=\"font-size: 12pt;\">Breakfast (Continental)</span></span></td>\r\n<td><span style=\"font-size: 12pt;\"><strong> </strong><span style=\"font-size: 12pt;\"><strong>R    55</strong> per person</span></span></td>\r\n</tr>\r\n<tr>\r\n<td><span style=\"font-size: 12pt;\"> <span style=\"font-size: 12pt;\">Breakfast (Full English)</span></span></td>\r\n<td><span style=\"font-size: 12pt;\"><strong> </strong><span style=\"font-size: 12pt;\"><strong>R    95</strong> per person</span></span></td>\r\n</tr>\r\n<tr>\r\n<td><span style=\"font-size: 12pt;\"> <span style=\"font-size: 12pt;\">Light Lunch</span></span></td>\r\n<td><span style=\"font-size: 12pt;\"><strong> </strong><span style=\"font-size: 12pt;\"><strong>R    95 </strong>per person</span></span></td>\r\n</tr>\r\n<tr>\r\n<td><span style=\"font-size: 12pt;\"> <span style=\"font-size: 12pt;\">Dinners</span></span></td>\r\n<td><span style=\"font-size: 12pt;\"><strong> </strong><span style=\"font-size: 12pt;\"><strong>R  150 </strong>per person</span></span></td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n<p> </p>\r\n<hr />\r\n[/modal][button link=\"\" color=\"darkgreen\" size=\"\"  type=\"\" shape=\"\" target=\"_self\" title=\"\" gradient_colors=\"|\" gradient_hover_colors=\"|\" accent_color=\"\" accent_hover_color=\"\" bevel_color=\"\" border_width=\"1px\" icon=\"\" icon_position=\"left\" icon_divider=\"no\" modal=\"rates\" animation_type=\"0\" animation_direction=\"left\" animation_speed=\"1\" alignment=\"\" class=\"\" id=\"\"]2015 RATES[/button][/one_half][/fullwidth][fullwidth background_color=\"#f0f0ed\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"20\" padding_bottom=\"20\" padding_left=\"0px\" padding_right=\"0px\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][one_half last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][fusion_text]\r\n<h3 style=\"text-align: justify;\">Set in the rolling peaks and valleys of a thousand hills surrounded by a canopy of indigenous trees  , you will find that horses still have right of way , we  certainly offer the best of both worlds , farm and charm coupled with modern amenities that will have you feeling relaxed and rejuvenated.</h3>\r\n<h3 style=\"text-align: justify;\">We know that sometimes you are searching for a romantic getaway or maybe a few days away with old friends. Other times you are searching for a place to host a weekend, family reunion or a business retreat. In addition to nightly room rentals, our lodge is also available for meetings, retreats  and makes the perfect place for a wedding party to stay together and get ready for the big day. Regardless, with our five comfortable and cozy guest bedrooms , multiple garden spaces and hideaways, and a  large private deck  where you can take a nap or read a book we definitely have the room for you!</h3>\r\n[/fusion_text][/one_half][one_half last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][fusion_text]\r\n<h3 style=\"text-align: justify;\">Our lodge has been in our family for years and has recently been beautifully renovated. Five rooms all with en-suite showers, tea/coffee making facilities, MNet and satellite television (DSTV)  open Wi-Fi. Sumptuous meals are served on the bottom deck at the swimming pool. Barbecues, afternoon tea in the garden or picnic baskets  on request all add to the service that awaits you, Our lodge features a  50 foot high Apex ceiling, spacious living, dining and bar area including a fitted kitchenette  all adding to a sense of homey comfort.</h3>\r\n<h3 style=\"text-align: justify;\">Be lulled to sleep by the sound of the waterfall  and tinkling stream just outside your window , waking from a peaceful night\'s sleep in a pillow-top bed dressed in luxurious linens to coddle you in ultimate comfort.</h3>\r\n<h3 style=\"text-align: justify;\">Our property boasts many different species of birds and animals. We have a resident otter, a family of wild bush pigs,  a family of rock rabbits, porcupine, little blue duikers, a variety of different frogs and an abundance of bird life, including the occasional snakes that pass through!</h3>\r\n<h3 style=\"text-align: justify;\">Evenings are quiet and peaceful taking you far away from the business of city life. This is a unique and memorable country experience. We look forward to having you as a guest!</h3>\r\n[/fusion_text][/one_half][/fullwidth][fullwidth background_color=\"#f0f0ed\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"20\" padding_bottom=\"20\" padding_left=\"0px\" padding_right=\"0px\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][fusion_text]\r\n<h1 style=\"text-align: center;\">Gallery</h1>\r\n[/fusion_text][separator style_type=\"single\" top_margin=\"\" bottom_margin=\"40\" sep_color=\"#000000\" border_size=\"\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"170px\" alignment=\"\" class=\"\" id=\"\"][one_sixth last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][/one_sixth][two_third last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][fusion_text]\r\n<h3 style=\"text-align: justify;\">The Lodge is open, spacious, comfortable and homely. During hot summer days, sit and bask in the sun on the deck  with one of our  picnic specials. In winter, snuggle up with a good book or challenge one another to a friendly board game in the glassed nook area .</h3>\r\n[/fusion_text][/two_third][one_sixth last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][/one_sixth][/fullwidth][fullwidth background_color=\"#f0f0ed\" background_image=\"http://localhost/assagaylodge/wp-content/uploads/2015/01/Wood_Texture.jpg\" background_parallax=\"fixed\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"30\" padding_bottom=\"10\" padding_left=\"0\" padding_right=\"0\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][recent_works layout=\"grid\" picture_size=\"auto\" boxed_text=\"unboxed\" filters=\"no\" columns=\"3\" column_spacing=\"12\" cat_slug=\"the-lodge\" exclude_cats=\"\" number_posts=\"9\" offset=\"\" excerpt_length=\"35\" strip_html=\"yes\" carousel_layout=\"title_on_rollover\" scroll_items=\"\" autoplay=\"no\" show_nav=\"yes\" mouse_scroll=\"no\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" class=\"\" id=\"\"][/recent_works][/fullwidth][fullwidth background_color=\"#f0f0ed\" background_image=\"\" background_parallax=\"fixed\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"20\" padding_bottom=\"20\" padding_left=\"0px\" padding_right=\"0px\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][fusion_text]\r\n<h1 style=\"text-align: center;\">BEDROOMS</h1>\r\n[/fusion_text][separator style_type=\"single\" top_margin=\"\" bottom_margin=\"20\" sep_color=\"#000000\" border_size=\"\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"170px\" alignment=\"\" class=\"\" id=\"\"][one_sixth last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][/one_sixth][two_third last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][fusion_text]\r\n<h3 style=\"text-align: justify;\">When it comes to our bedrooms we’re proud to say we offer something a little more special. One of five  lovingly and tastefully decorated guest rooms. Soft gray decor soothes the senses providing a peaceful, blissfully comfortable rest from your travels and hectic lives.</h3>\r\n<h3 style=\"text-align: justify;\">Our  bedrooms are spacious, clean, comfortable all en-suite, equipped with either king size or queen size beds. Each room sleeps two guests. The rooms have high ceilings, wall heaters &amp; ceiling fans. Beds all have electric blankets in Winter, 100% cotton percale sheets and thick hyper allergenic microfiber duvets and pillows. All guest rooms are cleaned with organic and green products. Amenities include hairdryers in each room. Three rooms feature King-sized beds  of which two can be  split into two single beds. Two  rooms can therefore be changed into a twin room upon request. Two rooms feature a Queen-sized double bed. These beds cannot be split into twin beds.</h3>\r\n[/fusion_text][/two_third][one_sixth last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][/one_sixth][/fullwidth][fullwidth background_color=\"\" background_image=\"http://localhost/assagaylodge/wp-content/uploads/2015/01/DSC01516-1148-x-764.jpg\" background_parallax=\"fixed\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"center center\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"20\" padding_bottom=\"20\" padding_left=\"0\" padding_right=\"0\" hundred_percent=\"no\" equal_height_columns=\"yes\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][recent_works layout=\"grid\" picture_size=\"auto\" boxed_text=\"unboxed\" filters=\"no\" columns=\"3\" column_spacing=\"12\" cat_slug=\"bedrooms\" exclude_cats=\"\" number_posts=\"6\" offset=\"\" excerpt_length=\"35\" strip_html=\"yes\" carousel_layout=\"title_on_rollover\" scroll_items=\"\" autoplay=\"no\" show_nav=\"yes\" mouse_scroll=\"no\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" class=\"\" id=\"\"][/recent_works][/fullwidth][fullwidth background_color=\"#f0f0ed\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"20\" padding_bottom=\"20\" padding_left=\"0\" padding_right=\"0\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][fusion_text]\r\n<h1 style=\"text-align: center;\">GARDENS</h1>\r\n[/fusion_text][separator style_type=\"single\" top_margin=\"\" bottom_margin=\"20\" sep_color=\"#000000\" border_size=\"\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"170px\" alignment=\"\" class=\"\" id=\"\"][one_sixth last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][/one_sixth][two_third last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][fusion_text]\r\n<h3 style=\"text-align: justify;\">The garden is large and offers many secluded spots to lose yourself in a book with a glass of wine underneath the shade of a tree, listening to the sounds of the birds and smelling the beautiful flowers.</h3>\r\n[/fusion_text][/two_third][one_sixth last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][/one_sixth][recent_works layout=\"grid\" picture_size=\"auto\" boxed_text=\"boxed\" filters=\"no\" columns=\"3\" column_spacing=\"12\" cat_slug=\"gardens\" exclude_cats=\"\" number_posts=\"9\" offset=\"\" excerpt_length=\"35\" strip_html=\"yes\" carousel_layout=\"title_on_rollover\" scroll_items=\"\" autoplay=\"no\" show_nav=\"yes\" mouse_scroll=\"no\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" class=\"\" id=\"\"][/recent_works][/fullwidth][fullwidth background_color=\"#ffffff\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"65px\" padding_bottom=\"65px\" padding_left=\"0px\" padding_right=\"0px\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][button link=\"http://localhost/assagaylodge/book-now/\" color=\"default\" size=\"xlarge\"  type=\"3d\" shape=\"round\" target=\"_self\" title=\"\" gradient_colors=\"#f0f0ed|#f0f0ed\" gradient_hover_colors=\"#6666a4|#6666a4\" accent_color=\"#ffffff\" accent_hover_color=\"#ffffff\" bevel_color=\"\" border_width=\"0px\" icon=\"\" icon_position=\"left\" icon_divider=\"no\" modal=\"\" animation_type=\"0\" animation_direction=\"left\" animation_speed=\"1\" alignment=\"center\" class=\"\" id=\"\"]Make A Reservation Enquiry[/button][/fullwidth]', 'Home', '', 'inherit', 'closed', 'closed', '', '7-revision-v1', '', '', '2015-10-05 12:09:13', '2015-10-05 10:09:13', '', 7, 'http://localhost/assagaylodge/7-revision-v1/', 0, 'revision', '', 0);
INSERT INTO `wp_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(1136, 1, '2015-10-05 12:11:09', '2015-10-05 10:11:09', '[fullwidth background_color=\"#f0f0ed\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"90px\" padding_bottom=\"0px\" padding_left=\"0px\" padding_right=\"0px\" hundred_percent=\"yes\" equal_height_columns=\"yes\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][one_half last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"http://localhost/assagaylodge/wp-content/uploads/2015/01/DSC01554-e1442325082893.jpg\" background_repeat=\"no-repeat\" background_position=\"center center\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" class=\"\" id=\"\"][/one_half][two_fifth last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"30px\" margin_top=\"\" margin_bottom=\"0px\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" class=\"special\" id=\"\"][fusion_text]<h1 style=\"text-align: justify;\">5 BEDROOM FAMILY LODGE</h1>\r\n<h3 style=\"text-align: justify;\">A Four Season Lodge, because there’s Always Something to Celebrate… We offer comfort, relaxation and exceptional service right in the heart of 1000 Hills. The Forest, the Gardens, the Atmosphere all speak to  Rest  &amp; Relaxation.</h3>[/fusion_text][separator style_type=\"single\" top_margin=\"0\" bottom_margin=\"30\" sep_color=\"#000000\" border_size=\"\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"170px\" alignment=\"left\" class=\"separator-left\" id=\"\"][modal name=\"rates\" title=\"2015 Rates\" size=\"large\" background=\"\" border_color=\"\" show_footer=\"yes\" class=\"\" id=\"\"]<p>ALL PRICES INCLUDE VAT</p>\r\n<table style=\"width: 100%;\" cellspacing=\"20\">\r\n<tbody>\r\n<tr>\r\n<td colspan=\"2\"><span style=\"font-size: 12pt;\"><strong>Self-Catering Accommodation:</strong></span><span style=\"font-size: 12pt;\"> </span></td>\r\n</tr>\r\n<tr>\r\n<td><span style=\"font-size: 12pt;\">Full House Self-Catering (Max 10 persons)</span></td>\r\n<td><span style=\"font-size: 12pt;\"><strong>R3000</strong> per night (R300 per person)</span></td>\r\n</tr>\r\n<tr>\r\n<td><span style=\"font-size: 12pt;\">Lodge & Room Servicing (Optional)</span></td>\r\n<td><span style=\"font-size: 12pt;\"><strong>R  200</strong> per day</span></td>\r\n</tr>\r\n<tr>\r\n<td><span style=\"font-size: 12pt;\">Single Private Room</span></td>\r\n<td><span style=\"font-size: 12pt;\"><strong>R  650</strong> per person per night</span></td>\r\n</tr>\r\n<tr>\r\n<td><span style=\"font-size: 12pt;\">Room Sharing</span></td>\r\n<td><span style=\"font-size: 12pt;\"><strong>R  500</strong> per person per night</span></td>\r\n</tr>\r\n<tr>\r\n<td><span style=\"font-size: 12pt;\"> </span></td>\r\n<td><span style=\"font-size: 12pt;\"><strong> </strong></span></td>\r\n</tr>\r\n<tr>\r\n<td colspan=\"2\"><span style=\"font-size: 12pt;\"><span style=\"font-size: 12pt;\"><strong>Meals (Optional)</strong></span> </span><span style=\"font-size: 12pt;\"><strong> </strong></span></td>\r\n</tr>\r\n<tr>\r\n<td><span style=\"font-size: 12pt;\"> <span style=\"font-size: 12pt;\">Breakfast (Continental)</span></span></td>\r\n<td><span style=\"font-size: 12pt;\"><strong> </strong><span style=\"font-size: 12pt;\"><strong>R    55</strong> per person</span></span></td>\r\n</tr>\r\n<tr>\r\n<td><span style=\"font-size: 12pt;\"> <span style=\"font-size: 12pt;\">Breakfast (Full English)</span></span></td>\r\n<td><span style=\"font-size: 12pt;\"><strong> </strong><span style=\"font-size: 12pt;\"><strong>R    95</strong> per person</span></span></td>\r\n</tr>\r\n<tr>\r\n<td><span style=\"font-size: 12pt;\"> <span style=\"font-size: 12pt;\">Light Lunch</span></span></td>\r\n<td><span style=\"font-size: 12pt;\"><strong> </strong><span style=\"font-size: 12pt;\"><strong>R    95 </strong>per person</span></span></td>\r\n</tr>\r\n<tr>\r\n<td><span style=\"font-size: 12pt;\"> <span style=\"font-size: 12pt;\">Dinners</span></span></td>\r\n<td><span style=\"font-size: 12pt;\"><strong> </strong><span style=\"font-size: 12pt;\"><strong>R  150 </strong>per person</span></span></td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n<hr />\r\n[/modal][button link=\"\" color=\"darkgreen\" size=\"\"  type=\"\" shape=\"\" target=\"_self\" title=\"\" gradient_colors=\"|\" gradient_hover_colors=\"|\" accent_color=\"\" accent_hover_color=\"\" bevel_color=\"\" border_width=\"1px\" icon=\"\" icon_position=\"left\" icon_divider=\"no\" modal=\"rates\" animation_type=\"0\" animation_direction=\"left\" animation_speed=\"1\" alignment=\"\" class=\"\" id=\"\"]2015 RATES[/button][/two_fifth][/fullwidth][fullwidth background_color=\"#f0f0ed\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"20\" padding_bottom=\"20\" padding_left=\"0px\" padding_right=\"0px\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][one_half last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][fusion_text]\r\n<h3 style=\"text-align: justify;\">Set in the rolling peaks and valleys of a thousand hills surrounded by a canopy of indigenous trees  , you will find that horses still have right of way , we  certainly offer the best of both worlds , farm and charm coupled with modern amenities that will have you feeling relaxed and rejuvenated.</h3>\r\n<h3 style=\"text-align: justify;\">We know that sometimes you are searching for a romantic getaway or maybe a few days away with old friends. Other times you are searching for a place to host a weekend, family reunion or a business retreat. In addition to nightly room rentals, our lodge is also available for meetings, retreats  and makes the perfect place for a wedding party to stay together and get ready for the big day. Regardless, with our five comfortable and cozy guest bedrooms , multiple garden spaces and hideaways, and a  large private deck  where you can take a nap or read a book we definitely have the room for you!</h3>\r\n[/fusion_text][/one_half][one_half last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][fusion_text]\r\n<h3 style=\"text-align: justify;\">Our lodge has been in our family for years and has recently been beautifully renovated. Five rooms all with en-suite showers, tea/coffee making facilities, MNet and satellite television (DSTV)  open Wi-Fi. Sumptuous meals are served on the bottom deck at the swimming pool. Barbecues, afternoon tea in the garden or picnic baskets  on request all add to the service that awaits you, Our lodge features a  50 foot high Apex ceiling, spacious living, dining and bar area including a fitted kitchenette  all adding to a sense of homey comfort.</h3>\r\n<h3 style=\"text-align: justify;\">Be lulled to sleep by the sound of the waterfall  and tinkling stream just outside your window , waking from a peaceful night\'s sleep in a pillow-top bed dressed in luxurious linens to coddle you in ultimate comfort.</h3>\r\n<h3 style=\"text-align: justify;\">Our property boasts many different species of birds and animals. We have a resident otter, a family of wild bush pigs,  a family of rock rabbits, porcupine, little blue duikers, a variety of different frogs and an abundance of bird life, including the occasional snakes that pass through!</h3>\r\n<h3 style=\"text-align: justify;\">Evenings are quiet and peaceful taking you far away from the business of city life. This is a unique and memorable country experience. We look forward to having you as a guest!</h3>\r\n[/fusion_text][/one_half][/fullwidth][fullwidth background_color=\"#f0f0ed\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"20\" padding_bottom=\"20\" padding_left=\"0px\" padding_right=\"0px\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][fusion_text]\r\n<h1 style=\"text-align: center;\">Gallery</h1>\r\n[/fusion_text][separator style_type=\"single\" top_margin=\"\" bottom_margin=\"40\" sep_color=\"#000000\" border_size=\"\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"170px\" alignment=\"\" class=\"\" id=\"\"][one_sixth last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][/one_sixth][two_third last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][fusion_text]\r\n<h3 style=\"text-align: justify;\">The Lodge is open, spacious, comfortable and homely. During hot summer days, sit and bask in the sun on the deck  with one of our  picnic specials. In winter, snuggle up with a good book or challenge one another to a friendly board game in the glassed nook area .</h3>\r\n[/fusion_text][/two_third][one_sixth last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][/one_sixth][/fullwidth][fullwidth background_color=\"#f0f0ed\" background_image=\"http://localhost/assagaylodge/wp-content/uploads/2015/01/Wood_Texture.jpg\" background_parallax=\"fixed\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"30\" padding_bottom=\"10\" padding_left=\"0\" padding_right=\"0\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][recent_works layout=\"grid\" picture_size=\"auto\" boxed_text=\"unboxed\" filters=\"no\" columns=\"3\" column_spacing=\"12\" cat_slug=\"the-lodge\" exclude_cats=\"\" number_posts=\"9\" offset=\"\" excerpt_length=\"35\" strip_html=\"yes\" carousel_layout=\"title_on_rollover\" scroll_items=\"\" autoplay=\"no\" show_nav=\"yes\" mouse_scroll=\"no\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" class=\"\" id=\"\"][/recent_works][/fullwidth][fullwidth background_color=\"#f0f0ed\" background_image=\"\" background_parallax=\"fixed\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"20\" padding_bottom=\"20\" padding_left=\"0px\" padding_right=\"0px\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][fusion_text]\r\n<h1 style=\"text-align: center;\">BEDROOMS</h1>\r\n[/fusion_text][separator style_type=\"single\" top_margin=\"\" bottom_margin=\"20\" sep_color=\"#000000\" border_size=\"\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"170px\" alignment=\"\" class=\"\" id=\"\"][one_sixth last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][/one_sixth][two_third last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][fusion_text]\r\n<h3 style=\"text-align: justify;\">When it comes to our bedrooms we’re proud to say we offer something a little more special. One of five  lovingly and tastefully decorated guest rooms. Soft gray decor soothes the senses providing a peaceful, blissfully comfortable rest from your travels and hectic lives.</h3>\r\n<h3 style=\"text-align: justify;\">Our  bedrooms are spacious, clean, comfortable all en-suite, equipped with either king size or queen size beds. Each room sleeps two guests. The rooms have high ceilings, wall heaters &amp; ceiling fans. Beds all have electric blankets in Winter, 100% cotton percale sheets and thick hyper allergenic microfiber duvets and pillows. All guest rooms are cleaned with organic and green products. Amenities include hairdryers in each room. Three rooms feature King-sized beds  of which two can be  split into two single beds. Two  rooms can therefore be changed into a twin room upon request. Two rooms feature a Queen-sized double bed. These beds cannot be split into twin beds.</h3>\r\n[/fusion_text][/two_third][one_sixth last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][/one_sixth][/fullwidth][fullwidth background_color=\"\" background_image=\"http://localhost/assagaylodge/wp-content/uploads/2015/01/DSC01516-1148-x-764.jpg\" background_parallax=\"fixed\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"center center\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"20\" padding_bottom=\"20\" padding_left=\"0\" padding_right=\"0\" hundred_percent=\"no\" equal_height_columns=\"yes\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][recent_works layout=\"grid\" picture_size=\"auto\" boxed_text=\"unboxed\" filters=\"no\" columns=\"3\" column_spacing=\"12\" cat_slug=\"bedrooms\" exclude_cats=\"\" number_posts=\"6\" offset=\"\" excerpt_length=\"35\" strip_html=\"yes\" carousel_layout=\"title_on_rollover\" scroll_items=\"\" autoplay=\"no\" show_nav=\"yes\" mouse_scroll=\"no\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" class=\"\" id=\"\"][/recent_works][/fullwidth][fullwidth background_color=\"#f0f0ed\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"20\" padding_bottom=\"20\" padding_left=\"0\" padding_right=\"0\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][fusion_text]\r\n<h1 style=\"text-align: center;\">GARDENS</h1>\r\n[/fusion_text][separator style_type=\"single\" top_margin=\"\" bottom_margin=\"20\" sep_color=\"#000000\" border_size=\"\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"170px\" alignment=\"\" class=\"\" id=\"\"][one_sixth last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][/one_sixth][two_third last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][fusion_text]\r\n<h3 style=\"text-align: justify;\">The garden is large and offers many secluded spots to lose yourself in a book with a glass of wine underneath the shade of a tree, listening to the sounds of the birds and smelling the beautiful flowers.</h3>\r\n[/fusion_text][/two_third][one_sixth last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][/one_sixth][recent_works layout=\"grid\" picture_size=\"auto\" boxed_text=\"boxed\" filters=\"no\" columns=\"3\" column_spacing=\"12\" cat_slug=\"gardens\" exclude_cats=\"\" number_posts=\"9\" offset=\"\" excerpt_length=\"35\" strip_html=\"yes\" carousel_layout=\"title_on_rollover\" scroll_items=\"\" autoplay=\"no\" show_nav=\"yes\" mouse_scroll=\"no\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" class=\"\" id=\"\"][/recent_works][/fullwidth][fullwidth background_color=\"#ffffff\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"65px\" padding_bottom=\"65px\" padding_left=\"0px\" padding_right=\"0px\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][button link=\"http://localhost/assagaylodge/book-now/\" color=\"default\" size=\"xlarge\"  type=\"3d\" shape=\"round\" target=\"_self\" title=\"\" gradient_colors=\"#f0f0ed|#f0f0ed\" gradient_hover_colors=\"#6666a4|#6666a4\" accent_color=\"#ffffff\" accent_hover_color=\"#ffffff\" bevel_color=\"\" border_width=\"0px\" icon=\"\" icon_position=\"left\" icon_divider=\"no\" modal=\"\" animation_type=\"0\" animation_direction=\"left\" animation_speed=\"1\" alignment=\"center\" class=\"\" id=\"\"]Make A Reservation Enquiry[/button][/fullwidth]', 'Home', '', 'inherit', 'closed', 'closed', '', '7-revision-v1', '', '', '2015-10-05 12:11:09', '2015-10-05 10:11:09', '', 7, 'http://localhost/assagaylodge/7-revision-v1/', 0, 'revision', '', 0),
(1137, 1, '2015-10-05 12:15:59', '2015-10-05 10:15:59', '[fullwidth background_color=\"#f0f0ed\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"90px\" padding_bottom=\"0px\" padding_left=\"0px\" padding_right=\"0px\" hundred_percent=\"yes\" equal_height_columns=\"yes\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][one_half last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"http://localhost/assagaylodge/wp-content/uploads/2015/01/DSC01554-e1442325082893.jpg\" background_repeat=\"no-repeat\" background_position=\"center center\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" class=\"\" id=\"\"][/one_half][two_fifth last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"30px\" margin_top=\"\" margin_bottom=\"0px\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" class=\"special\" id=\"\"][fusion_text]<h1 style=\"text-align: justify;\">5 BEDROOM FAMILY LODGE</h1>\r\n<h3 style=\"text-align: justify;\">A Four Season Lodge, because there’s Always Something to Celebrate… We offer comfort, relaxation and exceptional service right in the heart of 1000 Hills. The Forest, the Gardens, the Atmosphere all speak to  Rest  &amp; Relaxation.</h3>[/fusion_text][separator style_type=\"single\" top_margin=\"0\" bottom_margin=\"30\" sep_color=\"#000000\" border_size=\"\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"170px\" alignment=\"left\" class=\"separator-left\" id=\"\"][modal name=\"rates\" title=\"2015 Rates\" size=\"large\" background=\"\" border_color=\"\" show_footer=\"yes\" class=\"\" id=\"\"]ALL PRICES INCLUDE VAT\r\n<table style=\"width: 100%;\" cellspacing=\"10\" cellpadding=\"10\">\r\n<tbody>\r\n<tr>\r\n<td colspan=\"2\"><span style=\"font-size: 12pt;\"><strong>Self-Catering Accommodation:</strong></span><span style=\"font-size: 12pt;\"> </span></td>\r\n</tr>\r\n<tr>\r\n<td><span style=\"font-size: 12pt;\">Full House Self-Catering (Max 10 persons)</span></td>\r\n<td><span style=\"font-size: 12pt;\"><strong>R2950</strong> per night (R295 per person)</span></td>\r\n</tr>\r\n<tr>\r\n<td><span style=\"font-size: 12pt;\">Lodge &amp; Room Servicing (Optional)</span></td>\r\n<td><span style=\"font-size: 12pt;\"><strong>R 195</strong> per day</span></td>\r\n</tr>\r\n<tr>\r\n<td><span style=\"font-size: 12pt;\">Single Private Room</span></td>\r\n<td><span style=\"font-size: 12pt;\"><strong>R 650</strong> per person per night</span></td>\r\n</tr>\r\n<tr>\r\n<td><span style=\"font-size: 12pt;\">Room Sharing</span></td>\r\n<td><span style=\"font-size: 12pt;\"><strong>R 495</strong> per person per night</span></td>\r\n</tr>\r\n<tr>\r\n<td><span style=\"font-size: 12pt;\"> </span></td>\r\n<td><span style=\"font-size: 12pt;\"><strong> </strong></span></td>\r\n</tr>\r\n<tr>\r\n<td colspan=\"2\"><span style=\"font-size: 12pt;\"><span style=\"font-size: 12pt;\"><strong>Meals (Optional)</strong></span> </span><span style=\"font-size: 12pt;\"><strong> </strong></span></td>\r\n</tr>\r\n<tr>\r\n<td><span style=\"font-size: 12pt;\"> <span style=\"font-size: 12pt;\">Breakfast (Continental)</span></span></td>\r\n<td><span style=\"font-size: 12pt;\"><strong> </strong><span style=\"font-size: 12pt;\"><strong>R  55</strong> per person</span></span></td>\r\n</tr>\r\n<tr>\r\n<td><span style=\"font-size: 12pt;\"> <span style=\"font-size: 12pt;\">Breakfast (Full English)</span></span></td>\r\n<td><span style=\"font-size: 12pt;\"><strong> </strong><span style=\"font-size: 12pt;\"><strong>R  95</strong> per person</span></span></td>\r\n</tr>\r\n<tr>\r\n<td><span style=\"font-size: 12pt;\"> <span style=\"font-size: 12pt;\">Light Lunch</span></span></td>\r\n<td><span style=\"font-size: 12pt;\"><strong> </strong><span style=\"font-size: 12pt;\"><strong>R  95 </strong>per person</span></span></td>\r\n</tr>\r\n<tr>\r\n<td><span style=\"font-size: 12pt;\"> <span style=\"font-size: 12pt;\">Dinners</span></span></td>\r\n<td><span style=\"font-size: 12pt;\"><strong> </strong><span style=\"font-size: 12pt;\"><strong>R 150 </strong>per person</span></span></td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n&nbsp;\r\n\r\n<hr />[/modal][button link=\"\" color=\"darkgreen\" size=\"\"  type=\"\" shape=\"\" target=\"_self\" title=\"\" gradient_colors=\"|\" gradient_hover_colors=\"|\" accent_color=\"\" accent_hover_color=\"\" bevel_color=\"\" border_width=\"1px\" icon=\"\" icon_position=\"left\" icon_divider=\"no\" modal=\"rates\" animation_type=\"0\" animation_direction=\"left\" animation_speed=\"1\" alignment=\"\" class=\"\" id=\"\"]2015 RATES[/button][/two_fifth][/fullwidth][fullwidth background_color=\"#f0f0ed\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"20\" padding_bottom=\"20\" padding_left=\"0px\" padding_right=\"0px\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][one_half last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][fusion_text]\r\n<h3 style=\"text-align: justify;\">Set in the rolling peaks and valleys of a thousand hills surrounded by a canopy of indigenous trees  , you will find that horses still have right of way , we  certainly offer the best of both worlds , farm and charm coupled with modern amenities that will have you feeling relaxed and rejuvenated.</h3>\r\n<h3 style=\"text-align: justify;\">We know that sometimes you are searching for a romantic getaway or maybe a few days away with old friends. Other times you are searching for a place to host a weekend, family reunion or a business retreat. In addition to nightly room rentals, our lodge is also available for meetings, retreats  and makes the perfect place for a wedding party to stay together and get ready for the big day. Regardless, with our five comfortable and cozy guest bedrooms , multiple garden spaces and hideaways, and a  large private deck  where you can take a nap or read a book we definitely have the room for you!</h3>\r\n[/fusion_text][/one_half][one_half last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][fusion_text]\r\n<h3 style=\"text-align: justify;\">Our lodge has been in our family for years and has recently been beautifully renovated. Five rooms all with en-suite showers, tea/coffee making facilities, MNet and satellite television (DSTV)  open Wi-Fi. Sumptuous meals are served on the bottom deck at the swimming pool. Barbecues, afternoon tea in the garden or picnic baskets  on request all add to the service that awaits you, Our lodge features a  50 foot high Apex ceiling, spacious living, dining and bar area including a fitted kitchenette  all adding to a sense of homey comfort.</h3>\r\n<h3 style=\"text-align: justify;\">Be lulled to sleep by the sound of the waterfall  and tinkling stream just outside your window , waking from a peaceful night\'s sleep in a pillow-top bed dressed in luxurious linens to coddle you in ultimate comfort.</h3>\r\n<h3 style=\"text-align: justify;\">Our property boasts many different species of birds and animals. We have a resident otter, a family of wild bush pigs,  a family of rock rabbits, porcupine, little blue duikers, a variety of different frogs and an abundance of bird life, including the occasional snakes that pass through!</h3>\r\n<h3 style=\"text-align: justify;\">Evenings are quiet and peaceful taking you far away from the business of city life. This is a unique and memorable country experience. We look forward to having you as a guest!</h3>\r\n[/fusion_text][/one_half][/fullwidth][fullwidth background_color=\"#f0f0ed\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"20\" padding_bottom=\"20\" padding_left=\"0px\" padding_right=\"0px\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][fusion_text]\r\n<h1 style=\"text-align: center;\">Gallery</h1>\r\n[/fusion_text][separator style_type=\"single\" top_margin=\"\" bottom_margin=\"40\" sep_color=\"#000000\" border_size=\"\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"170px\" alignment=\"\" class=\"\" id=\"\"][one_sixth last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][/one_sixth][two_third last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][fusion_text]\r\n<h3 style=\"text-align: justify;\">The Lodge is open, spacious, comfortable and homely. During hot summer days, sit and bask in the sun on the deck  with one of our  picnic specials. In winter, snuggle up with a good book or challenge one another to a friendly board game in the glassed nook area .</h3>\r\n[/fusion_text][/two_third][one_sixth last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][/one_sixth][/fullwidth][fullwidth background_color=\"#f0f0ed\" background_image=\"http://localhost/assagaylodge/wp-content/uploads/2015/01/Wood_Texture.jpg\" background_parallax=\"fixed\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"30\" padding_bottom=\"10\" padding_left=\"0\" padding_right=\"0\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][recent_works layout=\"grid\" picture_size=\"auto\" boxed_text=\"unboxed\" filters=\"no\" columns=\"3\" column_spacing=\"12\" cat_slug=\"the-lodge\" exclude_cats=\"\" number_posts=\"9\" offset=\"\" excerpt_length=\"35\" strip_html=\"yes\" carousel_layout=\"title_on_rollover\" scroll_items=\"\" autoplay=\"no\" show_nav=\"yes\" mouse_scroll=\"no\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" class=\"\" id=\"\"][/recent_works][/fullwidth][fullwidth background_color=\"#f0f0ed\" background_image=\"\" background_parallax=\"fixed\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"20\" padding_bottom=\"20\" padding_left=\"0px\" padding_right=\"0px\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][fusion_text]\r\n<h1 style=\"text-align: center;\">BEDROOMS</h1>\r\n[/fusion_text][separator style_type=\"single\" top_margin=\"\" bottom_margin=\"20\" sep_color=\"#000000\" border_size=\"\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"170px\" alignment=\"\" class=\"\" id=\"\"][one_sixth last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][/one_sixth][two_third last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][fusion_text]\r\n<h3 style=\"text-align: justify;\">When it comes to our bedrooms we’re proud to say we offer something a little more special. One of five  lovingly and tastefully decorated guest rooms. Soft gray decor soothes the senses providing a peaceful, blissfully comfortable rest from your travels and hectic lives.</h3>\r\n<h3 style=\"text-align: justify;\">Our  bedrooms are spacious, clean, comfortable all en-suite, equipped with either king size or queen size beds. Each room sleeps two guests. The rooms have high ceilings, wall heaters &amp; ceiling fans. Beds all have electric blankets in Winter, 100% cotton percale sheets and thick hyper allergenic microfiber duvets and pillows. All guest rooms are cleaned with organic and green products. Amenities include hairdryers in each room. Three rooms feature King-sized beds  of which two can be  split into two single beds. Two  rooms can therefore be changed into a twin room upon request. Two rooms feature a Queen-sized double bed. These beds cannot be split into twin beds.</h3>\r\n[/fusion_text][/two_third][one_sixth last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][/one_sixth][/fullwidth][fullwidth background_color=\"\" background_image=\"http://localhost/assagaylodge/wp-content/uploads/2015/01/DSC01516-1148-x-764.jpg\" background_parallax=\"fixed\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"center center\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"20\" padding_bottom=\"20\" padding_left=\"0\" padding_right=\"0\" hundred_percent=\"no\" equal_height_columns=\"yes\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][recent_works layout=\"grid\" picture_size=\"auto\" boxed_text=\"unboxed\" filters=\"no\" columns=\"3\" column_spacing=\"12\" cat_slug=\"bedrooms\" exclude_cats=\"\" number_posts=\"6\" offset=\"\" excerpt_length=\"35\" strip_html=\"yes\" carousel_layout=\"title_on_rollover\" scroll_items=\"\" autoplay=\"no\" show_nav=\"yes\" mouse_scroll=\"no\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" class=\"\" id=\"\"][/recent_works][/fullwidth][fullwidth background_color=\"#f0f0ed\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"20\" padding_bottom=\"20\" padding_left=\"0\" padding_right=\"0\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][fusion_text]\r\n<h1 style=\"text-align: center;\">GARDENS</h1>\r\n[/fusion_text][separator style_type=\"single\" top_margin=\"\" bottom_margin=\"20\" sep_color=\"#000000\" border_size=\"\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"170px\" alignment=\"\" class=\"\" id=\"\"][one_sixth last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][/one_sixth][two_third last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][fusion_text]\r\n<h3 style=\"text-align: justify;\">The garden is large and offers many secluded spots to lose yourself in a book with a glass of wine underneath the shade of a tree, listening to the sounds of the birds and smelling the beautiful flowers.</h3>\r\n[/fusion_text][/two_third][one_sixth last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][/one_sixth][recent_works layout=\"grid\" picture_size=\"auto\" boxed_text=\"boxed\" filters=\"no\" columns=\"3\" column_spacing=\"12\" cat_slug=\"gardens\" exclude_cats=\"\" number_posts=\"9\" offset=\"\" excerpt_length=\"35\" strip_html=\"yes\" carousel_layout=\"title_on_rollover\" scroll_items=\"\" autoplay=\"no\" show_nav=\"yes\" mouse_scroll=\"no\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" class=\"\" id=\"\"][/recent_works][/fullwidth][fullwidth background_color=\"#ffffff\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"65px\" padding_bottom=\"65px\" padding_left=\"0px\" padding_right=\"0px\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][button link=\"http://localhost/assagaylodge/book-now/\" color=\"default\" size=\"xlarge\"  type=\"3d\" shape=\"round\" target=\"_self\" title=\"\" gradient_colors=\"#f0f0ed|#f0f0ed\" gradient_hover_colors=\"#6666a4|#6666a4\" accent_color=\"#ffffff\" accent_hover_color=\"#ffffff\" bevel_color=\"\" border_width=\"0px\" icon=\"\" icon_position=\"left\" icon_divider=\"no\" modal=\"\" animation_type=\"0\" animation_direction=\"left\" animation_speed=\"1\" alignment=\"center\" class=\"\" id=\"\"]Make A Reservation Enquiry[/button][/fullwidth]', 'Home', '', 'inherit', 'closed', 'closed', '', '7-revision-v1', '', '', '2015-10-05 12:15:59', '2015-10-05 10:15:59', '', 7, 'http://localhost/assagaylodge/7-revision-v1/', 0, 'revision', '', 0);
INSERT INTO `wp_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(1138, 1, '2015-10-05 15:09:32', '2015-10-05 13:09:32', '[fullwidth background_color=\"#f0f0ed\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"90px\" padding_bottom=\"0px\" padding_left=\"0px\" padding_right=\"0px\" hundred_percent=\"yes\" equal_height_columns=\"yes\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][one_half last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"http://localhost/assagaylodge/wp-content/uploads/2015/01/DSC01554-e1442325082893.jpg\" background_repeat=\"no-repeat\" background_position=\"center center\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" class=\"\" id=\"\"][/one_half][two_fifth last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"30px\" margin_top=\"\" margin_bottom=\"0px\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" class=\"special\" id=\"\"][fusion_text]<h1 style=\"text-align: justify;\">5 BEDROOM FAMILY LODGE</h1>\r\n<h3 style=\"text-align: justify;\">A Four Season Lodge, because there’s Always Something to Celebrate… We offer comfort, relaxation and exceptional service right in the heart of 1000 Hills. The Forest, the Gardens, the Atmosphere all speak to  Rest  &amp; Relaxation.</h3>[/fusion_text][separator style_type=\"single\" top_margin=\"0\" bottom_margin=\"30\" sep_color=\"#000000\" border_size=\"\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"170px\" alignment=\"left\" class=\"separator-left\" id=\"\"][modal name=\"rates\" title=\"2015 Rates\" size=\"large\" background=\"\" border_color=\"\" show_footer=\"yes\" class=\"\" id=\"\"]<a href=\"http://localhost/assagaylodge/rates/\"></a>\r\n\r\nALL PRICES INCLUDE VAT\r\n<table style=\"width: 100%;\" cellspacing=\"10\" cellpadding=\"10\">\r\n<tbody>\r\n<tr>\r\n<td colspan=\"2\"><span style=\"font-size: 12pt;\"><strong>Self-Catering / Self-Servicing Accommodation</strong></span></td>\r\n</tr>\r\n<tr>\r\n<td><span style=\"font-size: 12pt;\">Full House Self-Catering (Max 10 persons)</span></td>\r\n<td><span style=\"font-size: 12pt;\"><strong>R2950</strong> per night (R295 per person)</span></td>\r\n</tr>\r\n<tr>\r\n<td><span style=\"font-size: 12pt;\">Single Private Room</span></td>\r\n<td><span style=\"font-size: 12pt;\"><strong>R 650</strong> per person per night</span></td>\r\n</tr>\r\n<tr>\r\n<td><span style=\"font-size: 12pt;\">Room Sharing</span></td>\r\n<td><span style=\"font-size: 12pt;\"><strong>R 495</strong> per person per night</span></td>\r\n</tr>\r\n<tr>\r\n<td><span style=\"font-size: 12pt;\"> </span></td>\r\n<td><span style=\"font-size: 12pt;\"><strong> </strong></span></td>\r\n</tr>\r\n<tr>\r\n<td><strong><span style=\"font-size: 12pt;\">Servicing Options</span></strong></td>\r\n<td><span style=\"font-size: 12pt;\"><strong> </strong></span></td>\r\n</tr>\r\n<tr>\r\n<td><span style=\"font-size: 12pt;\">Lodge Only Servicing (Optional) </span></td>\r\n<td><span style=\"font-size: 12pt;\"><strong>R 150 </strong>per day<strong> </strong>or <strong>R30</strong> per person</span></td>\r\n</tr>\r\n<tr>\r\n<td><span style=\"font-size: 12pt;\">Lodge &amp; Room Servicing (Optional) </span></td>\r\n<td><span style=\"font-size: 12pt;\"><strong>R 250 </strong>per day<strong> </strong>or <strong>R50</strong> per person</span></td>\r\n</tr>\r\n<tr>\r\n<td><span style=\"font-size: 12pt;\"> </span></td>\r\n<td><span style=\"font-size: 12pt;\"><strong> </strong></span></td>\r\n</tr>\r\n<tr>\r\n<td colspan=\"2\"><span style=\"font-size: 12pt;\"><span style=\"font-size: 12pt;\"><strong>Catering Options</strong></span> </span><span style=\"font-size: 12pt;\"><strong> </strong></span></td>\r\n</tr>\r\n<tr>\r\n<td><span style=\"font-size: 12pt;\"> <span style=\"font-size: 12pt;\">Breakfast (Continental)</span></span></td>\r\n<td><span style=\"font-size: 12pt;\"><strong> </strong><span style=\"font-size: 12pt;\"><strong>R  55</strong> per person</span></span></td>\r\n</tr>\r\n<tr>\r\n<td><span style=\"font-size: 12pt;\"> <span style=\"font-size: 12pt;\">Breakfast (Full English)</span></span></td>\r\n<td><span style=\"font-size: 12pt;\"><strong> </strong><span style=\"font-size: 12pt;\"><strong>R  95</strong> per person</span></span></td>\r\n</tr>\r\n<tr>\r\n<td><span style=\"font-size: 12pt;\"> <span style=\"font-size: 12pt;\">Light Lunch</span></span></td>\r\n<td><span style=\"font-size: 12pt;\"><strong> </strong><span style=\"font-size: 12pt;\"><strong>R  95 </strong>per person</span></span></td>\r\n</tr>\r\n<tr>\r\n<td><span style=\"font-size: 12pt;\"> <span style=\"font-size: 12pt;\">Dinners</span></span></td>\r\n<td><span style=\"font-size: 12pt;\"><strong> </strong><span style=\"font-size: 12pt;\"><strong>R 150 </strong>per person</span></span></td>\r\n</tr>\r\n<tr>\r\n<td><span style=\"font-size: 12pt;\"> </span></td>\r\n<td><span style=\"font-size: 12pt;\"><strong> </strong></span></td>\r\n</tr>\r\n<tr>\r\n<td><strong><span style=\"font-size: 12pt;\">Others</span></strong></td>\r\n<td><span style=\"font-size: 12pt;\"><strong> </strong></span></td>\r\n</tr>\r\n<tr>\r\n<td><span style=\"font-size: 12pt;\">Gate Remote</span></td>\r\n<td><span style=\"font-size: 12pt;\"><strong>R 200 </strong>deposit</span></td>\r\n</tr>\r\n<tr>\r\n<td><span style=\"font-size: 12pt;\">Gas Braai </span></td>\r\n<td><span style=\"font-size: 12pt;\"><strong>R 120 </strong>per day </span></td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n&nbsp;\r\n\r\n<hr />[/modal][button link=\"\" color=\"darkgreen\" size=\"\"  type=\"\" shape=\"\" target=\"_self\" title=\"\" gradient_colors=\"|\" gradient_hover_colors=\"|\" accent_color=\"\" accent_hover_color=\"\" bevel_color=\"\" border_width=\"1px\" icon=\"\" icon_position=\"left\" icon_divider=\"no\" modal=\"rates\" animation_type=\"0\" animation_direction=\"left\" animation_speed=\"1\" alignment=\"\" class=\"\" id=\"\"]2015 RATES[/button][/two_fifth][/fullwidth][fullwidth background_color=\"#f0f0ed\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"20\" padding_bottom=\"20\" padding_left=\"0px\" padding_right=\"0px\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][one_half last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][fusion_text]\r\n<h3 style=\"text-align: justify;\">Set in the rolling peaks and valleys of a thousand hills surrounded by a canopy of indigenous trees  , you will find that horses still have right of way , we  certainly offer the best of both worlds , farm and charm coupled with modern amenities that will have you feeling relaxed and rejuvenated.</h3>\r\n<h3 style=\"text-align: justify;\">We know that sometimes you are searching for a romantic getaway or maybe a few days away with old friends. Other times you are searching for a place to host a weekend, family reunion or a business retreat. In addition to nightly room rentals, our lodge is also available for meetings, retreats  and makes the perfect place for a wedding party to stay together and get ready for the big day. Regardless, with our five comfortable and cozy guest bedrooms , multiple garden spaces and hideaways, and a  large private deck  where you can take a nap or read a book we definitely have the room for you!</h3>\r\n[/fusion_text][/one_half][one_half last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][fusion_text]\r\n<h3 style=\"text-align: justify;\">Our lodge has been in our family for years and has recently been beautifully renovated. Five rooms all with en-suite showers, tea/coffee making facilities, MNet and satellite television (DSTV)  open Wi-Fi. Sumptuous meals are served on the bottom deck at the swimming pool. Barbecues, afternoon tea in the garden or picnic baskets  on request all add to the service that awaits you, Our lodge features a  50 foot high Apex ceiling, spacious living, dining and bar area including a fitted kitchenette  all adding to a sense of homey comfort.</h3>\r\n<h3 style=\"text-align: justify;\">Be lulled to sleep by the sound of the waterfall  and tinkling stream just outside your window , waking from a peaceful night\'s sleep in a pillow-top bed dressed in luxurious linens to coddle you in ultimate comfort.</h3>\r\n<h3 style=\"text-align: justify;\">Our property boasts many different species of birds and animals. We have a resident otter, a family of wild bush pigs,  a family of rock rabbits, porcupine, little blue duikers, a variety of different frogs and an abundance of bird life, including the occasional snakes that pass through!</h3>\r\n<h3 style=\"text-align: justify;\">Evenings are quiet and peaceful taking you far away from the business of city life. This is a unique and memorable country experience. We look forward to having you as a guest!</h3>\r\n[/fusion_text][/one_half][/fullwidth][fullwidth background_color=\"#f0f0ed\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"20\" padding_bottom=\"20\" padding_left=\"0px\" padding_right=\"0px\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][fusion_text]\r\n<h1 style=\"text-align: center;\">Gallery</h1>\r\n[/fusion_text][separator style_type=\"single\" top_margin=\"\" bottom_margin=\"40\" sep_color=\"#000000\" border_size=\"\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"170px\" alignment=\"\" class=\"\" id=\"\"][one_sixth last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][/one_sixth][two_third last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][fusion_text]\r\n<h3 style=\"text-align: justify;\">The Lodge is open, spacious, comfortable and homely. During hot summer days, sit and bask in the sun on the deck  with one of our  picnic specials. In winter, snuggle up with a good book or challenge one another to a friendly board game in the glassed nook area .</h3>\r\n[/fusion_text][/two_third][one_sixth last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][/one_sixth][/fullwidth][fullwidth background_color=\"#f0f0ed\" background_image=\"http://localhost/assagaylodge/wp-content/uploads/2015/01/Wood_Texture.jpg\" background_parallax=\"fixed\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"30\" padding_bottom=\"10\" padding_left=\"0\" padding_right=\"0\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][recent_works layout=\"grid\" picture_size=\"auto\" boxed_text=\"unboxed\" filters=\"no\" columns=\"3\" column_spacing=\"12\" cat_slug=\"the-lodge\" exclude_cats=\"\" number_posts=\"9\" offset=\"\" excerpt_length=\"35\" strip_html=\"yes\" carousel_layout=\"title_on_rollover\" scroll_items=\"\" autoplay=\"no\" show_nav=\"yes\" mouse_scroll=\"no\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" class=\"\" id=\"\"][/recent_works][/fullwidth][fullwidth background_color=\"#f0f0ed\" background_image=\"\" background_parallax=\"fixed\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"20\" padding_bottom=\"20\" padding_left=\"0px\" padding_right=\"0px\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][fusion_text]\r\n<h1 style=\"text-align: center;\">BEDROOMS</h1>\r\n[/fusion_text][separator style_type=\"single\" top_margin=\"\" bottom_margin=\"20\" sep_color=\"#000000\" border_size=\"\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"170px\" alignment=\"\" class=\"\" id=\"\"][one_sixth last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][/one_sixth][two_third last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][fusion_text]\r\n<h3 style=\"text-align: justify;\">When it comes to our bedrooms we’re proud to say we offer something a little more special. One of five  lovingly and tastefully decorated guest rooms. Soft gray decor soothes the senses providing a peaceful, blissfully comfortable rest from your travels and hectic lives.</h3>\r\n<h3 style=\"text-align: justify;\">Our  bedrooms are spacious, clean, comfortable all en-suite, equipped with either king size or queen size beds. Each room sleeps two guests. The rooms have high ceilings, wall heaters &amp; ceiling fans. Beds all have electric blankets in Winter, 100% cotton percale sheets and thick hyper allergenic microfiber duvets and pillows. All guest rooms are cleaned with organic and green products. Amenities include hairdryers in each room. Three rooms feature King-sized beds  of which two can be  split into two single beds. Two  rooms can therefore be changed into a twin room upon request. Two rooms feature a Queen-sized double bed. These beds cannot be split into twin beds.</h3>\r\n[/fusion_text][/two_third][one_sixth last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][/one_sixth][/fullwidth][fullwidth background_color=\"\" background_image=\"http://localhost/assagaylodge/wp-content/uploads/2015/01/DSC01516-1148-x-764.jpg\" background_parallax=\"fixed\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"center center\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"20\" padding_bottom=\"20\" padding_left=\"0\" padding_right=\"0\" hundred_percent=\"no\" equal_height_columns=\"yes\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][recent_works layout=\"grid\" picture_size=\"auto\" boxed_text=\"unboxed\" filters=\"no\" columns=\"3\" column_spacing=\"12\" cat_slug=\"bedrooms\" exclude_cats=\"\" number_posts=\"6\" offset=\"\" excerpt_length=\"35\" strip_html=\"yes\" carousel_layout=\"title_on_rollover\" scroll_items=\"\" autoplay=\"no\" show_nav=\"yes\" mouse_scroll=\"no\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" class=\"\" id=\"\"][/recent_works][/fullwidth][fullwidth background_color=\"#f0f0ed\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"20\" padding_bottom=\"20\" padding_left=\"0\" padding_right=\"0\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][fusion_text]\r\n<h1 style=\"text-align: center;\">GARDENS</h1>\r\n[/fusion_text][separator style_type=\"single\" top_margin=\"\" bottom_margin=\"20\" sep_color=\"#000000\" border_size=\"\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"170px\" alignment=\"\" class=\"\" id=\"\"][one_sixth last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][/one_sixth][two_third last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][fusion_text]\r\n<h3 style=\"text-align: justify;\">The garden is large and offers many secluded spots to lose yourself in a book with a glass of wine underneath the shade of a tree, listening to the sounds of the birds and smelling the beautiful flowers.</h3>\r\n[/fusion_text][/two_third][one_sixth last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][/one_sixth][recent_works layout=\"grid\" picture_size=\"auto\" boxed_text=\"boxed\" filters=\"no\" columns=\"3\" column_spacing=\"12\" cat_slug=\"gardens\" exclude_cats=\"\" number_posts=\"9\" offset=\"\" excerpt_length=\"35\" strip_html=\"yes\" carousel_layout=\"title_on_rollover\" scroll_items=\"\" autoplay=\"no\" show_nav=\"yes\" mouse_scroll=\"no\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" class=\"\" id=\"\"][/recent_works][/fullwidth][fullwidth background_color=\"#ffffff\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"65px\" padding_bottom=\"65px\" padding_left=\"0px\" padding_right=\"0px\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][button link=\"http://localhost/assagaylodge/book-now/\" color=\"default\" size=\"xlarge\"  type=\"3d\" shape=\"round\" target=\"_self\" title=\"\" gradient_colors=\"#f0f0ed|#f0f0ed\" gradient_hover_colors=\"#6666a4|#6666a4\" accent_color=\"#ffffff\" accent_hover_color=\"#ffffff\" bevel_color=\"\" border_width=\"0px\" icon=\"\" icon_position=\"left\" icon_divider=\"no\" modal=\"\" animation_type=\"0\" animation_direction=\"left\" animation_speed=\"1\" alignment=\"center\" class=\"\" id=\"\"]Make A Reservation Enquiry[/button][/fullwidth]', 'Home', '', 'inherit', 'closed', 'closed', '', '7-revision-v1', '', '', '2015-10-05 15:09:32', '2015-10-05 13:09:32', '', 7, 'http://localhost/assagaylodge/7-revision-v1/', 0, 'revision', '', 0),
(1139, 1, '2015-10-05 15:11:22', '2015-10-05 13:11:22', '[fullwidth background_color=\"#f0f0ed\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"90px\" padding_bottom=\"0px\" padding_left=\"0px\" padding_right=\"0px\" hundred_percent=\"yes\" equal_height_columns=\"yes\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][one_half last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"http://localhost/assagaylodge/wp-content/uploads/2015/01/DSC01554-e1442325082893.jpg\" background_repeat=\"no-repeat\" background_position=\"center center\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" class=\"\" id=\"\"][/one_half][two_fifth last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"30px\" margin_top=\"\" margin_bottom=\"0px\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" class=\"special\" id=\"\"][fusion_text]<h1 style=\"text-align: justify;\">5 BEDROOM FAMILY LODGE</h1>\r\n<h3 style=\"text-align: justify;\">A Four Season Lodge, because there’s Always Something to Celebrate… We offer comfort, relaxation and exceptional service right in the heart of 1000 Hills. The Forest, the Gardens, the Atmosphere all speak to  Rest  &amp; Relaxation.</h3>[/fusion_text][separator style_type=\"single\" top_margin=\"0\" bottom_margin=\"30\" sep_color=\"#000000\" border_size=\"\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"170px\" alignment=\"left\" class=\"separator-left\" id=\"\"][modal name=\"rates\" title=\"2015 Rates\" size=\"large\" background=\"\" border_color=\"\" show_footer=\"yes\" class=\"\" id=\"\"]<p>ALL PRICES INCLUDE VAT</p>\r\n<table style=\"width: 100%;\" cellspacing=\"10\" cellpadding=\"5\">\r\n<tbody>\r\n<tr>\r\n<td colspan=\"2\"><span style=\"font-size: 12pt;\"><strong>Self-Catering / Self-Servicing Accommodation</strong></span></td>\r\n</tr>\r\n<tr>\r\n<td><span style=\"font-size: 12pt;\">Full House Self-Catering (Max 10 persons)</span></td>\r\n<td><span style=\"font-size: 12pt;\"><strong>R2950</strong> per night (R295 per person)</span></td>\r\n</tr>\r\n<tr>\r\n<td><span style=\"font-size: 12pt;\">Single Private Room</span></td>\r\n<td><span style=\"font-size: 12pt;\"><strong>R 650</strong> per person per night</span></td>\r\n</tr>\r\n<tr>\r\n<td><span style=\"font-size: 12pt;\">Room Sharing</span></td>\r\n<td><span style=\"font-size: 12pt;\"><strong>R 495</strong> per person per night</span></td>\r\n</tr>\r\n<tr>\r\n<td><span style=\"font-size: 12pt;\"> </span></td>\r\n<td><span style=\"font-size: 12pt;\"><strong> </strong></span></td>\r\n</tr>\r\n<tr>\r\n<td><strong><span style=\"font-size: 12pt;\">Servicing Options</span></strong></td>\r\n<td><span style=\"font-size: 12pt;\"><strong> </strong></span></td>\r\n</tr>\r\n<tr>\r\n<td><span style=\"font-size: 12pt;\">Lodge Only Servicing (Optional) </span></td>\r\n<td><span style=\"font-size: 12pt;\"><strong>R 150 </strong>per day<strong> </strong>or <strong>R30</strong> per person</span></td>\r\n</tr>\r\n<tr>\r\n<td><span style=\"font-size: 12pt;\">Lodge & Room Servicing (Optional) </span></td>\r\n<td><span style=\"font-size: 12pt;\"><strong>R 250 </strong>per day<strong> </strong>or <strong>R50</strong> per person</span></td>\r\n</tr>\r\n<tr>\r\n<td><span style=\"font-size: 12pt;\"> </span></td>\r\n<td><span style=\"font-size: 12pt;\"><strong> </strong></span></td>\r\n</tr>\r\n<tr>\r\n<td colspan=\"2\"><span style=\"font-size: 12pt;\"><span style=\"font-size: 12pt;\"><strong>Catering Options</strong></span> </span><span style=\"font-size: 12pt;\"><strong> </strong></span></td>\r\n</tr>\r\n<tr>\r\n<td><span style=\"font-size: 12pt;\"> <span style=\"font-size: 12pt;\">Breakfast (Continental)</span></span></td>\r\n<td><span style=\"font-size: 12pt;\"><strong> </strong><span style=\"font-size: 12pt;\"><strong>R  55</strong> per person</span></span></td>\r\n</tr>\r\n<tr>\r\n<td><span style=\"font-size: 12pt;\"> <span style=\"font-size: 12pt;\">Breakfast (Full English)</span></span></td>\r\n<td><span style=\"font-size: 12pt;\"><strong> </strong><span style=\"font-size: 12pt;\"><strong>R  95</strong> per person</span></span></td>\r\n</tr>\r\n<tr>\r\n<td><span style=\"font-size: 12pt;\"> <span style=\"font-size: 12pt;\">Light Lunch</span></span></td>\r\n<td><span style=\"font-size: 12pt;\"><strong> </strong><span style=\"font-size: 12pt;\"><strong>R  95 </strong>per person</span></span></td>\r\n</tr>\r\n<tr>\r\n<td><span style=\"font-size: 12pt;\"> <span style=\"font-size: 12pt;\">Dinners</span></span></td>\r\n<td><span style=\"font-size: 12pt;\"><strong> </strong><span style=\"font-size: 12pt;\"><strong>R 150 </strong>per person</span></span></td>\r\n</tr>\r\n<tr>\r\n<td><span style=\"font-size: 12pt;\"> </span></td>\r\n<td><span style=\"font-size: 12pt;\"><strong> </strong></span></td>\r\n</tr>\r\n<tr>\r\n<td><strong><span style=\"font-size: 12pt;\">Others</span></strong></td>\r\n<td><span style=\"font-size: 12pt;\"><strong> </strong></span></td>\r\n</tr>\r\n<tr>\r\n<td><span style=\"font-size: 12pt;\">Gate Remote</span></td>\r\n<td><span style=\"font-size: 12pt;\"><strong>R 200 </strong>deposit</span></td>\r\n</tr>\r\n<tr>\r\n<td><span style=\"font-size: 12pt;\">Gas Braai </span></td>\r\n<td><span style=\"font-size: 12pt;\"><strong>R 120 </strong>per day </span></td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n<p> </p>\r\n<hr />\r\n[/modal][button link=\"\" color=\"darkgreen\" size=\"\"  type=\"\" shape=\"\" target=\"_self\" title=\"\" gradient_colors=\"|\" gradient_hover_colors=\"|\" accent_color=\"\" accent_hover_color=\"\" bevel_color=\"\" border_width=\"1px\" icon=\"\" icon_position=\"left\" icon_divider=\"no\" modal=\"rates\" animation_type=\"0\" animation_direction=\"left\" animation_speed=\"1\" alignment=\"\" class=\"\" id=\"\"]2015 RATES[/button][/two_fifth][/fullwidth][fullwidth background_color=\"#f0f0ed\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"20\" padding_bottom=\"20\" padding_left=\"0px\" padding_right=\"0px\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][one_half last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][fusion_text]\r\n<h3 style=\"text-align: justify;\">Set in the rolling peaks and valleys of a thousand hills surrounded by a canopy of indigenous trees  , you will find that horses still have right of way , we  certainly offer the best of both worlds , farm and charm coupled with modern amenities that will have you feeling relaxed and rejuvenated.</h3>\r\n<h3 style=\"text-align: justify;\">We know that sometimes you are searching for a romantic getaway or maybe a few days away with old friends. Other times you are searching for a place to host a weekend, family reunion or a business retreat. In addition to nightly room rentals, our lodge is also available for meetings, retreats  and makes the perfect place for a wedding party to stay together and get ready for the big day. Regardless, with our five comfortable and cozy guest bedrooms , multiple garden spaces and hideaways, and a  large private deck  where you can take a nap or read a book we definitely have the room for you!</h3>\r\n[/fusion_text][/one_half][one_half last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][fusion_text]\r\n<h3 style=\"text-align: justify;\">Our lodge has been in our family for years and has recently been beautifully renovated. Five rooms all with en-suite showers, tea/coffee making facilities, MNet and satellite television (DSTV)  open Wi-Fi. Sumptuous meals are served on the bottom deck at the swimming pool. Barbecues, afternoon tea in the garden or picnic baskets  on request all add to the service that awaits you, Our lodge features a  50 foot high Apex ceiling, spacious living, dining and bar area including a fitted kitchenette  all adding to a sense of homey comfort.</h3>\r\n<h3 style=\"text-align: justify;\">Be lulled to sleep by the sound of the waterfall  and tinkling stream just outside your window , waking from a peaceful night\'s sleep in a pillow-top bed dressed in luxurious linens to coddle you in ultimate comfort.</h3>\r\n<h3 style=\"text-align: justify;\">Our property boasts many different species of birds and animals. We have a resident otter, a family of wild bush pigs,  a family of rock rabbits, porcupine, little blue duikers, a variety of different frogs and an abundance of bird life, including the occasional snakes that pass through!</h3>\r\n<h3 style=\"text-align: justify;\">Evenings are quiet and peaceful taking you far away from the business of city life. This is a unique and memorable country experience. We look forward to having you as a guest!</h3>\r\n[/fusion_text][/one_half][/fullwidth][fullwidth background_color=\"#f0f0ed\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"20\" padding_bottom=\"20\" padding_left=\"0px\" padding_right=\"0px\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][fusion_text]\r\n<h1 style=\"text-align: center;\">Gallery</h1>\r\n[/fusion_text][separator style_type=\"single\" top_margin=\"\" bottom_margin=\"40\" sep_color=\"#000000\" border_size=\"\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"170px\" alignment=\"\" class=\"\" id=\"\"][one_sixth last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][/one_sixth][two_third last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][fusion_text]\r\n<h3 style=\"text-align: justify;\">The Lodge is open, spacious, comfortable and homely. During hot summer days, sit and bask in the sun on the deck  with one of our  picnic specials. In winter, snuggle up with a good book or challenge one another to a friendly board game in the glassed nook area .</h3>\r\n[/fusion_text][/two_third][one_sixth last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][/one_sixth][/fullwidth][fullwidth background_color=\"#f0f0ed\" background_image=\"http://localhost/assagaylodge/wp-content/uploads/2015/01/Wood_Texture.jpg\" background_parallax=\"fixed\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"30\" padding_bottom=\"10\" padding_left=\"0\" padding_right=\"0\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][recent_works layout=\"grid\" picture_size=\"auto\" boxed_text=\"unboxed\" filters=\"no\" columns=\"3\" column_spacing=\"12\" cat_slug=\"the-lodge\" exclude_cats=\"\" number_posts=\"9\" offset=\"\" excerpt_length=\"35\" strip_html=\"yes\" carousel_layout=\"title_on_rollover\" scroll_items=\"\" autoplay=\"no\" show_nav=\"yes\" mouse_scroll=\"no\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" class=\"\" id=\"\"][/recent_works][/fullwidth][fullwidth background_color=\"#f0f0ed\" background_image=\"\" background_parallax=\"fixed\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"20\" padding_bottom=\"20\" padding_left=\"0px\" padding_right=\"0px\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][fusion_text]\r\n<h1 style=\"text-align: center;\">BEDROOMS</h1>\r\n[/fusion_text][separator style_type=\"single\" top_margin=\"\" bottom_margin=\"20\" sep_color=\"#000000\" border_size=\"\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"170px\" alignment=\"\" class=\"\" id=\"\"][one_sixth last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][/one_sixth][two_third last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][fusion_text]\r\n<h3 style=\"text-align: justify;\">When it comes to our bedrooms we’re proud to say we offer something a little more special. One of five  lovingly and tastefully decorated guest rooms. Soft gray decor soothes the senses providing a peaceful, blissfully comfortable rest from your travels and hectic lives.</h3>\r\n<h3 style=\"text-align: justify;\">Our  bedrooms are spacious, clean, comfortable all en-suite, equipped with either king size or queen size beds. Each room sleeps two guests. The rooms have high ceilings, wall heaters &amp; ceiling fans. Beds all have electric blankets in Winter, 100% cotton percale sheets and thick hyper allergenic microfiber duvets and pillows. All guest rooms are cleaned with organic and green products. Amenities include hairdryers in each room. Three rooms feature King-sized beds  of which two can be  split into two single beds. Two  rooms can therefore be changed into a twin room upon request. Two rooms feature a Queen-sized double bed. These beds cannot be split into twin beds.</h3>\r\n[/fusion_text][/two_third][one_sixth last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][/one_sixth][/fullwidth][fullwidth background_color=\"\" background_image=\"http://localhost/assagaylodge/wp-content/uploads/2015/01/DSC01516-1148-x-764.jpg\" background_parallax=\"fixed\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"center center\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"20\" padding_bottom=\"20\" padding_left=\"0\" padding_right=\"0\" hundred_percent=\"no\" equal_height_columns=\"yes\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][recent_works layout=\"grid\" picture_size=\"auto\" boxed_text=\"unboxed\" filters=\"no\" columns=\"3\" column_spacing=\"12\" cat_slug=\"bedrooms\" exclude_cats=\"\" number_posts=\"6\" offset=\"\" excerpt_length=\"35\" strip_html=\"yes\" carousel_layout=\"title_on_rollover\" scroll_items=\"\" autoplay=\"no\" show_nav=\"yes\" mouse_scroll=\"no\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" class=\"\" id=\"\"][/recent_works][/fullwidth][fullwidth background_color=\"#f0f0ed\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"20\" padding_bottom=\"20\" padding_left=\"0\" padding_right=\"0\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][fusion_text]\r\n<h1 style=\"text-align: center;\">GARDENS</h1>\r\n[/fusion_text][separator style_type=\"single\" top_margin=\"\" bottom_margin=\"20\" sep_color=\"#000000\" border_size=\"\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"170px\" alignment=\"\" class=\"\" id=\"\"][one_sixth last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][/one_sixth][two_third last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][fusion_text]\r\n<h3 style=\"text-align: justify;\">The garden is large and offers many secluded spots to lose yourself in a book with a glass of wine underneath the shade of a tree, listening to the sounds of the birds and smelling the beautiful flowers.</h3>\r\n[/fusion_text][/two_third][one_sixth last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][/one_sixth][recent_works layout=\"grid\" picture_size=\"auto\" boxed_text=\"boxed\" filters=\"no\" columns=\"3\" column_spacing=\"12\" cat_slug=\"gardens\" exclude_cats=\"\" number_posts=\"9\" offset=\"\" excerpt_length=\"35\" strip_html=\"yes\" carousel_layout=\"title_on_rollover\" scroll_items=\"\" autoplay=\"no\" show_nav=\"yes\" mouse_scroll=\"no\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" class=\"\" id=\"\"][/recent_works][/fullwidth][fullwidth background_color=\"#ffffff\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"65px\" padding_bottom=\"65px\" padding_left=\"0px\" padding_right=\"0px\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][button link=\"http://localhost/assagaylodge/book-now/\" color=\"default\" size=\"xlarge\"  type=\"3d\" shape=\"round\" target=\"_self\" title=\"\" gradient_colors=\"#f0f0ed|#f0f0ed\" gradient_hover_colors=\"#6666a4|#6666a4\" accent_color=\"#ffffff\" accent_hover_color=\"#ffffff\" bevel_color=\"\" border_width=\"0px\" icon=\"\" icon_position=\"left\" icon_divider=\"no\" modal=\"\" animation_type=\"0\" animation_direction=\"left\" animation_speed=\"1\" alignment=\"center\" class=\"\" id=\"\"]Make A Reservation Enquiry[/button][/fullwidth]', 'Home', '', 'inherit', 'closed', 'closed', '', '7-revision-v1', '', '', '2015-10-05 15:11:22', '2015-10-05 13:11:22', '', 7, 'http://localhost/assagaylodge/7-revision-v1/', 0, 'revision', '', 0);
INSERT INTO `wp_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(1140, 1, '2015-10-05 15:11:32', '2015-10-05 13:11:32', 'ALL PRICES INCLUDE VAT\r\n<table style=\"width: 100%;\" cellspacing=\"10\" cellpadding=\"5\">\r\n<tbody>\r\n<tr>\r\n<td colspan=\"2\"><span style=\"font-size: 12pt;\"><strong>Self-Catering / Self-Servicing Accommodation</strong></span></td>\r\n</tr>\r\n<tr>\r\n<td><span style=\"font-size: 12pt;\">Full House Self-Catering (Max 10 persons)</span></td>\r\n<td><span style=\"font-size: 12pt;\"><strong>R2950</strong> per night (R295 per person)</span></td>\r\n</tr>\r\n<tr>\r\n<td><span style=\"font-size: 12pt;\">Single Private Room</span></td>\r\n<td><span style=\"font-size: 12pt;\"><strong>R 650</strong> per person per night</span></td>\r\n</tr>\r\n<tr>\r\n<td><span style=\"font-size: 12pt;\">Room Sharing</span></td>\r\n<td><span style=\"font-size: 12pt;\"><strong>R 495</strong> per person per night</span></td>\r\n</tr>\r\n<tr>\r\n<td><span style=\"font-size: 12pt;\"> </span></td>\r\n<td><span style=\"font-size: 12pt;\"><strong> </strong></span></td>\r\n</tr>\r\n<tr>\r\n<td><strong><span style=\"font-size: 12pt;\">Servicing Options</span></strong></td>\r\n<td><span style=\"font-size: 12pt;\"><strong> </strong></span></td>\r\n</tr>\r\n<tr>\r\n<td><span style=\"font-size: 12pt;\">Lodge Only Servicing (Optional) </span></td>\r\n<td><span style=\"font-size: 12pt;\"><strong>R 150 </strong>per day<strong> </strong>or <strong>R30</strong> per person</span></td>\r\n</tr>\r\n<tr>\r\n<td><span style=\"font-size: 12pt;\">Lodge &amp; Room Servicing (Optional) </span></td>\r\n<td><span style=\"font-size: 12pt;\"><strong>R 250 </strong>per day<strong> </strong>or <strong>R50</strong> per person</span></td>\r\n</tr>\r\n<tr>\r\n<td><span style=\"font-size: 12pt;\"> </span></td>\r\n<td><span style=\"font-size: 12pt;\"><strong> </strong></span></td>\r\n</tr>\r\n<tr>\r\n<td colspan=\"2\"><span style=\"font-size: 12pt;\"><span style=\"font-size: 12pt;\"><strong>Catering Options</strong></span> </span><span style=\"font-size: 12pt;\"><strong> </strong></span></td>\r\n</tr>\r\n<tr>\r\n<td><span style=\"font-size: 12pt;\"> <span style=\"font-size: 12pt;\">Breakfast (Continental)</span></span></td>\r\n<td><span style=\"font-size: 12pt;\"><strong> </strong><span style=\"font-size: 12pt;\"><strong>R  55</strong> per person</span></span></td>\r\n</tr>\r\n<tr>\r\n<td><span style=\"font-size: 12pt;\"> <span style=\"font-size: 12pt;\">Breakfast (Full English)</span></span></td>\r\n<td><span style=\"font-size: 12pt;\"><strong> </strong><span style=\"font-size: 12pt;\"><strong>R  95</strong> per person</span></span></td>\r\n</tr>\r\n<tr>\r\n<td><span style=\"font-size: 12pt;\"> <span style=\"font-size: 12pt;\">Light Lunch</span></span></td>\r\n<td><span style=\"font-size: 12pt;\"><strong> </strong><span style=\"font-size: 12pt;\"><strong>R  95 </strong>per person</span></span></td>\r\n</tr>\r\n<tr>\r\n<td><span style=\"font-size: 12pt;\"> <span style=\"font-size: 12pt;\">Dinners</span></span></td>\r\n<td><span style=\"font-size: 12pt;\"><strong> </strong><span style=\"font-size: 12pt;\"><strong>R 150 </strong>per person</span></span></td>\r\n</tr>\r\n<tr>\r\n<td><span style=\"font-size: 12pt;\"> </span></td>\r\n<td><span style=\"font-size: 12pt;\"><strong> </strong></span></td>\r\n</tr>\r\n<tr>\r\n<td><strong><span style=\"font-size: 12pt;\">Others</span></strong></td>\r\n<td><span style=\"font-size: 12pt;\"><strong> </strong></span></td>\r\n</tr>\r\n<tr>\r\n<td><span style=\"font-size: 12pt;\">Gate Remote</span></td>\r\n<td><span style=\"font-size: 12pt;\"><strong>R 200 </strong>deposit</span></td>\r\n</tr>\r\n<tr>\r\n<td><span style=\"font-size: 12pt;\">Gas Braai </span></td>\r\n<td><span style=\"font-size: 12pt;\"><strong>R 120 </strong>per day </span></td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n&nbsp;\r\n\r\n<hr />', 'Rates', '', 'inherit', 'closed', 'closed', '', '1121-revision-v1', '', '', '2015-10-05 15:11:32', '2015-10-05 13:11:32', '', 1121, 'http://localhost/assagaylodge/1121-revision-v1/', 0, 'revision', '', 0),
(1141, 1, '2015-10-05 15:13:57', '2015-10-05 13:13:57', 'ALL PRICES INCLUDE VAT\r\n<table style=\"width: 100%;\" cellspacing=\"10\" cellpadding=\"5\">\r\n<tbody>\r\n<tr>\r\n<td colspan=\"2\"><span style=\"font-size: 12pt;\"><strong>Self-Catering / Self-Servicing Accommodation</strong></span></td>\r\n</tr>\r\n<tr>\r\n<td><span style=\"font-size: 12pt;\">Full House Self-Catering (Max 10 persons)</span></td>\r\n<td><span style=\"font-size: 12pt;\"><strong>R2950</strong> per night (R295 per person)</span></td>\r\n</tr>\r\n<tr>\r\n<td><span style=\"font-size: 12pt;\">Single Private Room</span></td>\r\n<td><span style=\"font-size: 12pt;\"><strong>R 650</strong> per person per night</span></td>\r\n</tr>\r\n<tr>\r\n<td><span style=\"font-size: 12pt;\">Room Sharing</span></td>\r\n<td><span style=\"font-size: 12pt;\"><strong>R 495</strong> per person per night</span></td>\r\n</tr>\r\n<tr>\r\n<td><span style=\"font-size: 12pt;\"> </span></td>\r\n<td><span style=\"font-size: 12pt;\"><strong> </strong></span></td>\r\n</tr>\r\n<tr>\r\n<td><strong><span style=\"font-size: 12pt;\">Servicing Options</span></strong></td>\r\n<td><span style=\"font-size: 12pt;\"><strong> </strong></span></td>\r\n</tr>\r\n<tr>\r\n<td><span style=\"font-size: 12pt;\">Lodge Only Servicing (Optional) </span></td>\r\n<td><span style=\"font-size: 12pt;\"><strong>R30</strong> per person per day - Max <span style=\"font-size: 12pt;\"><strong>R 150 </strong>per day</span></span></td>\r\n</tr>\r\n<tr>\r\n<td><span style=\"font-size: 12pt;\">Lodge &amp; Room Servicing (Optional) </span></td>\r\n<td><span style=\"font-size: 12pt;\"><strong>R50</strong> per person per day - Max <span style=\"font-size: 12pt;\"><strong>R 250 </strong>per day</span></span></td>\r\n</tr>\r\n<tr>\r\n<td><span style=\"font-size: 12pt;\"> </span></td>\r\n<td><span style=\"font-size: 12pt;\"><strong> </strong></span></td>\r\n</tr>\r\n<tr>\r\n<td colspan=\"2\"><span style=\"font-size: 12pt;\"><span style=\"font-size: 12pt;\"><strong>Catering Options</strong></span> </span><span style=\"font-size: 12pt;\"><strong> </strong></span></td>\r\n</tr>\r\n<tr>\r\n<td><span style=\"font-size: 12pt;\"> <span style=\"font-size: 12pt;\">Breakfast (Continental)</span></span></td>\r\n<td><span style=\"font-size: 12pt;\"><strong> </strong><span style=\"font-size: 12pt;\"><strong>R  55</strong> per person</span></span></td>\r\n</tr>\r\n<tr>\r\n<td><span style=\"font-size: 12pt;\"> <span style=\"font-size: 12pt;\">Breakfast (Full English)</span></span></td>\r\n<td><span style=\"font-size: 12pt;\"><strong> </strong><span style=\"font-size: 12pt;\"><strong>R  95</strong> per person</span></span></td>\r\n</tr>\r\n<tr>\r\n<td><span style=\"font-size: 12pt;\"> <span style=\"font-size: 12pt;\">Light Lunch</span></span></td>\r\n<td><span style=\"font-size: 12pt;\"><strong> </strong><span style=\"font-size: 12pt;\"><strong>R  95 </strong>per person</span></span></td>\r\n</tr>\r\n<tr>\r\n<td><span style=\"font-size: 12pt;\"> <span style=\"font-size: 12pt;\">Dinners</span></span></td>\r\n<td><span style=\"font-size: 12pt;\"><strong> </strong><span style=\"font-size: 12pt;\"><strong>R 150 </strong>per person</span></span></td>\r\n</tr>\r\n<tr>\r\n<td><span style=\"font-size: 12pt;\"> </span></td>\r\n<td><span style=\"font-size: 12pt;\"><strong> </strong></span></td>\r\n</tr>\r\n<tr>\r\n<td><strong><span style=\"font-size: 12pt;\">Others</span></strong></td>\r\n<td><span style=\"font-size: 12pt;\"><strong> </strong></span></td>\r\n</tr>\r\n<tr>\r\n<td><span style=\"font-size: 12pt;\">Gate Remote</span></td>\r\n<td><span style=\"font-size: 12pt;\"><strong>R 200 </strong>deposit</span></td>\r\n</tr>\r\n<tr>\r\n<td><span style=\"font-size: 12pt;\">Gas Braai </span></td>\r\n<td><span style=\"font-size: 12pt;\"><strong>R 120 </strong>per day </span></td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n&nbsp;\r\n\r\n<hr />', 'Rates', '', 'inherit', 'closed', 'closed', '', '1121-revision-v1', '', '', '2015-10-05 15:13:57', '2015-10-05 13:13:57', '', 1121, 'http://localhost/assagaylodge/1121-revision-v1/', 0, 'revision', '', 0),
(1142, 1, '2016-04-19 11:38:29', '2016-04-19 09:38:29', '[fusion_text]\n<table style=\"width: 100%;\" cellspacing=\"10\" cellpadding=\"5\">\n<tbody>\n<tr>\n<td colspan=\"2\"><span style=\"font-size: 10pt;\">ALL PRICES INCLUDE VAT<strong> </strong></span></td>\n</tr>\n<tr>\n<td colspan=\"2\"><span style=\"font-size: 12pt;\"><strong>Self-Catering / Self-Servicing Accommodation</strong></span></td>\n</tr>\n<tr>\n<td><span style=\"font-size: 12pt;\">Full House - Max 10 persons per lodge</span></td>\n<td><span style=\"font-size: 12pt;\"><strong>R3250</strong> per night (R325 per person)</span></td>\n</tr>\n<tr>\n<td><span style=\"font-size: 12pt;\">Single - Max 1 person per room</span></td>\n<td><span style=\"font-size: 12pt;\"><strong>R 650</strong> per person per night</span></td>\n</tr>\n<tr>\n<td><span style=\"font-size: 12pt;\">Sharing - Max 2 persons per room</span></td>\n<td><span style=\"font-size: 12pt;\"><strong>R 495</strong> per person per night</span></td>\n</tr>\n<tr>\n<td><span style=\"font-size: 12pt;\"> </span></td>\n<td><span style=\"font-size: 12pt;\"><strong> </strong></span></td>\n</tr>\n<tr>\n<td><strong><span style=\"font-size: 12pt;\">Servicing Options</span></strong></td>\n<td><span style=\"font-size: 12pt;\"><strong> </strong></span></td>\n</tr>\n<tr>\n<td><span style=\"font-size: 12pt;\">Lodge Only Servicing (Optional) </span></td>\n<td><span style=\"font-size: 12pt;\"><strong>R30</strong> per person per day - Max <span style=\"font-size: 12pt;\"><strong>R 150 </strong>per day</span></span></td>\n</tr>\n<tr>\n<td><span style=\"font-size: 12pt;\">Lodge &amp; Room Servicing (Optional) </span></td>\n<td><span style=\"font-size: 12pt;\"><strong>R50</strong> per person per day - Max <span style=\"font-size: 12pt;\"><strong>R 250 </strong>per day</span></span></td>\n</tr>\n<tr>\n<td><span style=\"font-size: 12pt;\"> </span></td>\n<td><span style=\"font-size: 12pt;\"><strong> </strong></span></td>\n</tr>\n<tr>\n<td colspan=\"2\"><span style=\"font-size: 12pt;\"><span style=\"font-size: 12pt;\"><strong>Catering Options</strong></span> </span><span style=\"font-size: 12pt;\"><strong> </strong></span></td>\n</tr>\n<tr>\n<td><span style=\"font-size: 12pt;\"> <span style=\"font-size: 12pt;\">Breakfast (Continental)</span></span></td>\n<td><span style=\"font-size: 12pt;\"><strong> </strong><span style=\"font-size: 12pt;\"><strong>R  55</strong> per person</span></span></td>\n</tr>\n<tr>\n<td><span style=\"font-size: 12pt;\"> <span style=\"font-size: 12pt;\">Breakfast (Full English)</span></span></td>\n<td><span style=\"font-size: 12pt;\"><strong> </strong><span style=\"font-size: 12pt;\"><strong>R  75</strong> per person</span></span></td>\n</tr>\n<tr>\n<td><span style=\"font-size: 12pt;\"> <span style=\"font-size: 12pt;\">Light Lunch</span></span></td>\n<td><span style=\"font-size: 12pt;\">From <span style=\"font-size: 12pt;\"><strong>R  95 </strong>per person</span></span></td>\n</tr>\n<tr>\n<td><span style=\"font-size: 12pt;\"> <span style=\"font-size: 12pt;\">Dinners</span></span></td>\n<td><span style=\"font-size: 12pt;\">From <span style=\"font-size: 12pt;\"><strong>R 150 </strong>per person</span></span></td>\n</tr>\n<tr>\n<td><span style=\"font-size: 12pt;\"> </span></td>\n<td><span style=\"font-size: 12pt;\"><strong> </strong></span></td>\n</tr>\n<tr>\n<td><strong><span style=\"font-size: 12pt;\">Others</span></strong></td>\n<td><span style=\"font-size: 12pt;\"><strong> </strong></span></td>\n</tr>\n<tr>\n<td><span style=\"font-size: 12pt;\">Gate Remote</span></td>\n<td><span style=\"font-size: 12pt;\"><strong>R 200 </strong>deposit</span></td>\n</tr>\n<tr>\n<td><span style=\"font-size: 12pt;\">Gas Braai</span></td>\n<td><span style=\"font-size: 12pt;\"><strong>R 120 </strong>per day</span></td>\n</tr>\n<tr>\n<td><span style=\"font-size: 12pt;\">Day Visitors / Guests</span></td>\n<td><span style=\"font-size: 12pt;\"><strong>R 50 </strong>per person per day</span></td>\n</tr>\n</tbody>\n</table>\n\n<hr />\n\n[/fusion_text]', 'Rates', '', 'inherit', 'closed', 'closed', '', '1121-autosave-v1', '', '', '2016-04-19 11:38:29', '2016-04-19 09:38:29', '', 1121, 'http://localhost/assagaylodge/1121-autosave-v1/', 0, 'revision', '', 0),
(1143, 1, '2015-10-05 15:16:14', '2015-10-05 13:16:14', '[fullwidth background_color=\"#f0f0ed\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"90px\" padding_bottom=\"0px\" padding_left=\"0px\" padding_right=\"0px\" hundred_percent=\"yes\" equal_height_columns=\"yes\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][one_half last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"http://localhost/assagaylodge/wp-content/uploads/2015/01/DSC01554-e1442325082893.jpg\" background_repeat=\"no-repeat\" background_position=\"center center\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" class=\"\" id=\"\"][/one_half][two_fifth last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"30px\" margin_top=\"\" margin_bottom=\"0px\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" class=\"special\" id=\"\"][fusion_text]<h1 style=\"text-align: justify;\">5 BEDROOM FAMILY LODGE</h1>\r\n<h3 style=\"text-align: justify;\">A Four Season Lodge, because there’s Always Something to Celebrate… We offer comfort, relaxation and exceptional service right in the heart of 1000 Hills. The Forest, the Gardens, the Atmosphere all speak to  Rest  &amp; Relaxation.</h3>[/fusion_text][separator style_type=\"single\" top_margin=\"0\" bottom_margin=\"30\" sep_color=\"#000000\" border_size=\"\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"170px\" alignment=\"left\" class=\"separator-left\" id=\"\"][modal name=\"rates\" title=\"2015 Rates\" size=\"large\" background=\"\" border_color=\"\" show_footer=\"yes\" class=\"\" id=\"\"]<table style=\"width: 100%;\" cellspacing=\"10\" cellpadding=\"5\">\r\n<tbody>\r\n<tr>\r\n<td colspan=\"2\"><span style=\"font-size: 10pt;\">ALL PRICES INCLUDE VAT<strong> </strong></span></td>\r\n</tr>\r\n<tr>\r\n<td colspan=\"2\"><span style=\"font-size: 12pt;\"><strong>Self-Catering / Self-Servicing Accommodation</strong></span></td>\r\n</tr>\r\n<tr>\r\n<td><span style=\"font-size: 12pt;\">Full House Self-Catering (Max 10 persons)</span></td>\r\n<td><span style=\"font-size: 12pt;\"><strong>R2950</strong> per night (R295 per person)</span></td>\r\n</tr>\r\n<tr>\r\n<td><span style=\"font-size: 12pt;\">Single Private Room</span></td>\r\n<td><span style=\"font-size: 12pt;\"><strong>R 650</strong> per person per night</span></td>\r\n</tr>\r\n<tr>\r\n<td><span style=\"font-size: 12pt;\">Room Sharing</span></td>\r\n<td><span style=\"font-size: 12pt;\"><strong>R 495</strong> per person per night</span></td>\r\n</tr>\r\n<tr>\r\n<td><span style=\"font-size: 12pt;\"> </span></td>\r\n<td><span style=\"font-size: 12pt;\"><strong> </strong></span></td>\r\n</tr>\r\n<tr>\r\n<td><strong><span style=\"font-size: 12pt;\">Servicing Options</span></strong></td>\r\n<td><span style=\"font-size: 12pt;\"><strong> </strong></span></td>\r\n</tr>\r\n<tr>\r\n<td><span style=\"font-size: 12pt;\">Lodge Only Servicing (Optional) </span></td>\r\n<td><span style=\"font-size: 12pt;\"><strong>R30</strong> per person per day - Max <span style=\"font-size: 12pt;\"><strong>R 150 </strong>per day</span></span></td>\r\n</tr>\r\n<tr>\r\n<td><span style=\"font-size: 12pt;\">Lodge &amp; Room Servicing (Optional) </span></td>\r\n<td><span style=\"font-size: 12pt;\"><strong>R50</strong> per person per day - Max <span style=\"font-size: 12pt;\"><strong>R 250 </strong>per day</span></span></td>\r\n</tr>\r\n<tr>\r\n<td><span style=\"font-size: 12pt;\"> </span></td>\r\n<td><span style=\"font-size: 12pt;\"><strong> </strong></span></td>\r\n</tr>\r\n<tr>\r\n<td colspan=\"2\"><span style=\"font-size: 12pt;\"><span style=\"font-size: 12pt;\"><strong>Catering Options</strong></span> </span><span style=\"font-size: 12pt;\"><strong> </strong></span></td>\r\n</tr>\r\n<tr>\r\n<td><span style=\"font-size: 12pt;\"> <span style=\"font-size: 12pt;\">Breakfast (Continental)</span></span></td>\r\n<td><span style=\"font-size: 12pt;\"><strong> </strong><span style=\"font-size: 12pt;\"><strong>R  55</strong> per person</span></span></td>\r\n</tr>\r\n<tr>\r\n<td><span style=\"font-size: 12pt;\"> <span style=\"font-size: 12pt;\">Breakfast (Full English)</span></span></td>\r\n<td><span style=\"font-size: 12pt;\"><strong> </strong><span style=\"font-size: 12pt;\"><strong>R  95</strong> per person</span></span></td>\r\n</tr>\r\n<tr>\r\n<td><span style=\"font-size: 12pt;\"> <span style=\"font-size: 12pt;\">Light Lunch</span></span></td>\r\n<td><span style=\"font-size: 12pt;\"><strong> </strong><span style=\"font-size: 12pt;\"><strong>R  95 </strong>per person</span></span></td>\r\n</tr>\r\n<tr>\r\n<td><span style=\"font-size: 12pt;\"> <span style=\"font-size: 12pt;\">Dinners</span></span></td>\r\n<td><span style=\"font-size: 12pt;\"><strong> </strong><span style=\"font-size: 12pt;\"><strong>R 150 </strong>per person</span></span></td>\r\n</tr>\r\n<tr>\r\n<td><span style=\"font-size: 12pt;\"> </span></td>\r\n<td><span style=\"font-size: 12pt;\"><strong> </strong></span></td>\r\n</tr>\r\n<tr>\r\n<td><strong><span style=\"font-size: 12pt;\">Others</span></strong></td>\r\n<td><span style=\"font-size: 12pt;\"><strong> </strong></span></td>\r\n</tr>\r\n<tr>\r\n<td><span style=\"font-size: 12pt;\">Gate Remote</span></td>\r\n<td><span style=\"font-size: 12pt;\"><strong>R 200 </strong>deposit</span></td>\r\n</tr>\r\n<tr>\r\n<td><span style=\"font-size: 12pt;\">Gas Braai </span></td>\r\n<td><span style=\"font-size: 12pt;\"><strong>R 120 </strong>per day </span></td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n&nbsp;\r\n\r\n<hr />[/modal][button link=\"\" color=\"darkgreen\" size=\"\"  type=\"\" shape=\"\" target=\"_self\" title=\"\" gradient_colors=\"|\" gradient_hover_colors=\"|\" accent_color=\"\" accent_hover_color=\"\" bevel_color=\"\" border_width=\"1px\" icon=\"\" icon_position=\"left\" icon_divider=\"no\" modal=\"rates\" animation_type=\"0\" animation_direction=\"left\" animation_speed=\"1\" alignment=\"\" class=\"\" id=\"\"]2015 RATES[/button][/two_fifth][/fullwidth][fullwidth background_color=\"#f0f0ed\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"20\" padding_bottom=\"20\" padding_left=\"0px\" padding_right=\"0px\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][one_half last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][fusion_text]\r\n<h3 style=\"text-align: justify;\">Set in the rolling peaks and valleys of a thousand hills surrounded by a canopy of indigenous trees  , you will find that horses still have right of way , we  certainly offer the best of both worlds , farm and charm coupled with modern amenities that will have you feeling relaxed and rejuvenated.</h3>\r\n<h3 style=\"text-align: justify;\">We know that sometimes you are searching for a romantic getaway or maybe a few days away with old friends. Other times you are searching for a place to host a weekend, family reunion or a business retreat. In addition to nightly room rentals, our lodge is also available for meetings, retreats  and makes the perfect place for a wedding party to stay together and get ready for the big day. Regardless, with our five comfortable and cozy guest bedrooms , multiple garden spaces and hideaways, and a  large private deck  where you can take a nap or read a book we definitely have the room for you!</h3>\r\n[/fusion_text][/one_half][one_half last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][fusion_text]\r\n<h3 style=\"text-align: justify;\">Our lodge has been in our family for years and has recently been beautifully renovated. Five rooms all with en-suite showers, tea/coffee making facilities, MNet and satellite television (DSTV)  open Wi-Fi. Sumptuous meals are served on the bottom deck at the swimming pool. Barbecues, afternoon tea in the garden or picnic baskets  on request all add to the service that awaits you, Our lodge features a  50 foot high Apex ceiling, spacious living, dining and bar area including a fitted kitchenette  all adding to a sense of homey comfort.</h3>\r\n<h3 style=\"text-align: justify;\">Be lulled to sleep by the sound of the waterfall  and tinkling stream just outside your window , waking from a peaceful night\'s sleep in a pillow-top bed dressed in luxurious linens to coddle you in ultimate comfort.</h3>\r\n<h3 style=\"text-align: justify;\">Our property boasts many different species of birds and animals. We have a resident otter, a family of wild bush pigs,  a family of rock rabbits, porcupine, little blue duikers, a variety of different frogs and an abundance of bird life, including the occasional snakes that pass through!</h3>\r\n<h3 style=\"text-align: justify;\">Evenings are quiet and peaceful taking you far away from the business of city life. This is a unique and memorable country experience. We look forward to having you as a guest!</h3>\r\n[/fusion_text][/one_half][/fullwidth][fullwidth background_color=\"#f0f0ed\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"20\" padding_bottom=\"20\" padding_left=\"0px\" padding_right=\"0px\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][fusion_text]\r\n<h1 style=\"text-align: center;\">Gallery</h1>\r\n[/fusion_text][separator style_type=\"single\" top_margin=\"\" bottom_margin=\"40\" sep_color=\"#000000\" border_size=\"\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"170px\" alignment=\"\" class=\"\" id=\"\"][one_sixth last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][/one_sixth][two_third last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][fusion_text]\r\n<h3 style=\"text-align: justify;\">The Lodge is open, spacious, comfortable and homely. During hot summer days, sit and bask in the sun on the deck  with one of our  picnic specials. In winter, snuggle up with a good book or challenge one another to a friendly board game in the glassed nook area .</h3>\r\n[/fusion_text][/two_third][one_sixth last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][/one_sixth][/fullwidth][fullwidth background_color=\"#f0f0ed\" background_image=\"http://localhost/assagaylodge/wp-content/uploads/2015/01/Wood_Texture.jpg\" background_parallax=\"fixed\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"30\" padding_bottom=\"10\" padding_left=\"0\" padding_right=\"0\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][recent_works layout=\"grid\" picture_size=\"auto\" boxed_text=\"unboxed\" filters=\"no\" columns=\"3\" column_spacing=\"12\" cat_slug=\"the-lodge\" exclude_cats=\"\" number_posts=\"9\" offset=\"\" excerpt_length=\"35\" strip_html=\"yes\" carousel_layout=\"title_on_rollover\" scroll_items=\"\" autoplay=\"no\" show_nav=\"yes\" mouse_scroll=\"no\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" class=\"\" id=\"\"][/recent_works][/fullwidth][fullwidth background_color=\"#f0f0ed\" background_image=\"\" background_parallax=\"fixed\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"20\" padding_bottom=\"20\" padding_left=\"0px\" padding_right=\"0px\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][fusion_text]\r\n<h1 style=\"text-align: center;\">BEDROOMS</h1>\r\n[/fusion_text][separator style_type=\"single\" top_margin=\"\" bottom_margin=\"20\" sep_color=\"#000000\" border_size=\"\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"170px\" alignment=\"\" class=\"\" id=\"\"][one_sixth last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][/one_sixth][two_third last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][fusion_text]\r\n<h3 style=\"text-align: justify;\">When it comes to our bedrooms we’re proud to say we offer something a little more special. One of five  lovingly and tastefully decorated guest rooms. Soft gray decor soothes the senses providing a peaceful, blissfully comfortable rest from your travels and hectic lives.</h3>\r\n<h3 style=\"text-align: justify;\">Our  bedrooms are spacious, clean, comfortable all en-suite, equipped with either king size or queen size beds. Each room sleeps two guests. The rooms have high ceilings, wall heaters &amp; ceiling fans. Beds all have electric blankets in Winter, 100% cotton percale sheets and thick hyper allergenic microfiber duvets and pillows. All guest rooms are cleaned with organic and green products. Amenities include hairdryers in each room. Three rooms feature King-sized beds  of which two can be  split into two single beds. Two  rooms can therefore be changed into a twin room upon request. Two rooms feature a Queen-sized double bed. These beds cannot be split into twin beds.</h3>\r\n[/fusion_text][/two_third][one_sixth last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][/one_sixth][/fullwidth][fullwidth background_color=\"\" background_image=\"http://localhost/assagaylodge/wp-content/uploads/2015/01/DSC01516-1148-x-764.jpg\" background_parallax=\"fixed\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"center center\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"20\" padding_bottom=\"20\" padding_left=\"0\" padding_right=\"0\" hundred_percent=\"no\" equal_height_columns=\"yes\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][recent_works layout=\"grid\" picture_size=\"auto\" boxed_text=\"unboxed\" filters=\"no\" columns=\"3\" column_spacing=\"12\" cat_slug=\"bedrooms\" exclude_cats=\"\" number_posts=\"6\" offset=\"\" excerpt_length=\"35\" strip_html=\"yes\" carousel_layout=\"title_on_rollover\" scroll_items=\"\" autoplay=\"no\" show_nav=\"yes\" mouse_scroll=\"no\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" class=\"\" id=\"\"][/recent_works][/fullwidth][fullwidth background_color=\"#f0f0ed\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"20\" padding_bottom=\"20\" padding_left=\"0\" padding_right=\"0\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][fusion_text]\r\n<h1 style=\"text-align: center;\">GARDENS</h1>\r\n[/fusion_text][separator style_type=\"single\" top_margin=\"\" bottom_margin=\"20\" sep_color=\"#000000\" border_size=\"\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"170px\" alignment=\"\" class=\"\" id=\"\"][one_sixth last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][/one_sixth][two_third last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][fusion_text]\r\n<h3 style=\"text-align: justify;\">The garden is large and offers many secluded spots to lose yourself in a book with a glass of wine underneath the shade of a tree, listening to the sounds of the birds and smelling the beautiful flowers.</h3>\r\n[/fusion_text][/two_third][one_sixth last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][/one_sixth][recent_works layout=\"grid\" picture_size=\"auto\" boxed_text=\"boxed\" filters=\"no\" columns=\"3\" column_spacing=\"12\" cat_slug=\"gardens\" exclude_cats=\"\" number_posts=\"9\" offset=\"\" excerpt_length=\"35\" strip_html=\"yes\" carousel_layout=\"title_on_rollover\" scroll_items=\"\" autoplay=\"no\" show_nav=\"yes\" mouse_scroll=\"no\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" class=\"\" id=\"\"][/recent_works][/fullwidth][fullwidth background_color=\"#ffffff\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"65px\" padding_bottom=\"65px\" padding_left=\"0px\" padding_right=\"0px\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][button link=\"http://localhost/assagaylodge/book-now/\" color=\"default\" size=\"xlarge\"  type=\"3d\" shape=\"round\" target=\"_self\" title=\"\" gradient_colors=\"#f0f0ed|#f0f0ed\" gradient_hover_colors=\"#6666a4|#6666a4\" accent_color=\"#ffffff\" accent_hover_color=\"#ffffff\" bevel_color=\"\" border_width=\"0px\" icon=\"\" icon_position=\"left\" icon_divider=\"no\" modal=\"\" animation_type=\"0\" animation_direction=\"left\" animation_speed=\"1\" alignment=\"center\" class=\"\" id=\"\"]Make A Reservation Enquiry[/button][/fullwidth]', 'Home', '', 'inherit', 'closed', 'closed', '', '7-revision-v1', '', '', '2015-10-05 15:16:14', '2015-10-05 13:16:14', '', 7, 'http://localhost/assagaylodge/7-revision-v1/', 0, 'revision', '', 0),
(1144, 1, '2015-10-05 15:19:58', '2015-10-05 13:19:58', '<table style=\"width: 100%;\" cellspacing=\"10\" cellpadding=\"5\">\r\n<tbody>\r\n<tr>\r\n<td colspan=\"2\"><span style=\"font-size: 10pt;\">ALL PRICES INCLUDE VAT<strong> </strong></span></td>\r\n</tr>\r\n<tr>\r\n<td colspan=\"2\"><span style=\"font-size: 12pt;\"><strong>Self-Catering / Self-Servicing Accommodation</strong></span></td>\r\n</tr>\r\n<tr>\r\n<td><span style=\"font-size: 12pt;\">Full House - Max 10 persons per lodge</span></td>\r\n<td><span style=\"font-size: 12pt;\"><strong>R2950</strong> per night (R295 per person)</span></td>\r\n</tr>\r\n<tr>\r\n<td><span style=\"font-size: 12pt;\">Single - Max 1 person per room</span></td>\r\n<td><span style=\"font-size: 12pt;\"><strong>R 650</strong> per person per night</span></td>\r\n</tr>\r\n<tr>\r\n<td><span style=\"font-size: 12pt;\">Sharing - Max 2 persons per room</span></td>\r\n<td><span style=\"font-size: 12pt;\"><strong>R 495</strong> per person per night</span></td>\r\n</tr>\r\n<tr>\r\n<td><span style=\"font-size: 12pt;\"> </span></td>\r\n<td><span style=\"font-size: 12pt;\"><strong> </strong></span></td>\r\n</tr>\r\n<tr>\r\n<td><strong><span style=\"font-size: 12pt;\">Servicing Options</span></strong></td>\r\n<td><span style=\"font-size: 12pt;\"><strong> </strong></span></td>\r\n</tr>\r\n<tr>\r\n<td><span style=\"font-size: 12pt;\">Lodge Only Servicing (Optional) </span></td>\r\n<td><span style=\"font-size: 12pt;\"><strong>R30</strong> per person per day - Max <span style=\"font-size: 12pt;\"><strong>R 150 </strong>per day</span></span></td>\r\n</tr>\r\n<tr>\r\n<td><span style=\"font-size: 12pt;\">Lodge &amp; Room Servicing (Optional) </span></td>\r\n<td><span style=\"font-size: 12pt;\"><strong>R50</strong> per person per day - Max <span style=\"font-size: 12pt;\"><strong>R 250 </strong>per day</span></span></td>\r\n</tr>\r\n<tr>\r\n<td><span style=\"font-size: 12pt;\"> </span></td>\r\n<td><span style=\"font-size: 12pt;\"><strong> </strong></span></td>\r\n</tr>\r\n<tr>\r\n<td colspan=\"2\"><span style=\"font-size: 12pt;\"><span style=\"font-size: 12pt;\"><strong>Catering Options</strong></span> </span><span style=\"font-size: 12pt;\"><strong> </strong></span></td>\r\n</tr>\r\n<tr>\r\n<td><span style=\"font-size: 12pt;\"> <span style=\"font-size: 12pt;\">Breakfast (Continental)</span></span></td>\r\n<td><span style=\"font-size: 12pt;\"><strong> </strong><span style=\"font-size: 12pt;\"><strong>R  55</strong> per person</span></span></td>\r\n</tr>\r\n<tr>\r\n<td><span style=\"font-size: 12pt;\"> <span style=\"font-size: 12pt;\">Breakfast (Full English)</span></span></td>\r\n<td><span style=\"font-size: 12pt;\"><strong> </strong><span style=\"font-size: 12pt;\"><strong>R  95</strong> per person</span></span></td>\r\n</tr>\r\n<tr>\r\n<td><span style=\"font-size: 12pt;\"> <span style=\"font-size: 12pt;\">Light Lunch</span></span></td>\r\n<td><span style=\"font-size: 12pt;\"><strong> </strong><span style=\"font-size: 12pt;\"><strong>R  95 </strong>per person</span></span></td>\r\n</tr>\r\n<tr>\r\n<td><span style=\"font-size: 12pt;\"> <span style=\"font-size: 12pt;\">Dinners</span></span></td>\r\n<td><span style=\"font-size: 12pt;\"><strong> </strong><span style=\"font-size: 12pt;\"><strong>R 150 </strong>per person</span></span></td>\r\n</tr>\r\n<tr>\r\n<td><span style=\"font-size: 12pt;\"> </span></td>\r\n<td><span style=\"font-size: 12pt;\"><strong> </strong></span></td>\r\n</tr>\r\n<tr>\r\n<td><strong><span style=\"font-size: 12pt;\">Others</span></strong></td>\r\n<td><span style=\"font-size: 12pt;\"><strong> </strong></span></td>\r\n</tr>\r\n<tr>\r\n<td><span style=\"font-size: 12pt;\">Gate Remote</span></td>\r\n<td><span style=\"font-size: 12pt;\"><strong>R 200 </strong>deposit</span></td>\r\n</tr>\r\n<tr>\r\n<td><span style=\"font-size: 12pt;\">Gas Braai </span></td>\r\n<td><span style=\"font-size: 12pt;\"><strong>R 120 </strong>per day </span></td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n&nbsp;\r\n\r\n<hr />', 'Rates', '', 'inherit', 'closed', 'closed', '', '1121-revision-v1', '', '', '2015-10-05 15:19:58', '2015-10-05 13:19:58', '', 1121, 'http://localhost/assagaylodge/1121-revision-v1/', 0, 'revision', '', 0);
INSERT INTO `wp_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(1145, 1, '2015-10-05 15:20:20', '2015-10-05 13:20:20', '[fullwidth background_color=\"#f0f0ed\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"90px\" padding_bottom=\"0px\" padding_left=\"0px\" padding_right=\"0px\" hundred_percent=\"yes\" equal_height_columns=\"yes\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][one_half last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"http://localhost/assagaylodge/wp-content/uploads/2015/01/DSC01554-e1442325082893.jpg\" background_repeat=\"no-repeat\" background_position=\"center center\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" class=\"\" id=\"\"][/one_half][two_fifth last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"30px\" margin_top=\"\" margin_bottom=\"0px\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" class=\"special\" id=\"\"][fusion_text]<h1 style=\"text-align: justify;\">5 BEDROOM FAMILY LODGE</h1>\r\n<h3 style=\"text-align: justify;\">A Four Season Lodge, because there’s Always Something to Celebrate… We offer comfort, relaxation and exceptional service right in the heart of 1000 Hills. The Forest, the Gardens, the Atmosphere all speak to  Rest  &amp; Relaxation.</h3>[/fusion_text][separator style_type=\"single\" top_margin=\"0\" bottom_margin=\"30\" sep_color=\"#000000\" border_size=\"\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"170px\" alignment=\"left\" class=\"separator-left\" id=\"\"][modal name=\"rates\" title=\"2015 Rates\" size=\"large\" background=\"\" border_color=\"\" show_footer=\"yes\" class=\"\" id=\"\"]<table style=\"width: 100%;\" cellspacing=\"10\" cellpadding=\"5\">\r\n<tbody>\r\n<tr>\r\n<td colspan=\"2\"><span style=\"font-size: 10pt;\">ALL PRICES INCLUDE VAT<strong> </strong></span></td>\r\n</tr>\r\n<tr>\r\n<td colspan=\"2\"><span style=\"font-size: 12pt;\"><strong>Self-Catering / Self-Servicing Accommodation</strong></span></td>\r\n</tr>\r\n<tr>\r\n<td><span style=\"font-size: 12pt;\">Full House - Max 10 persons per lodge</span></td>\r\n<td><span style=\"font-size: 12pt;\"><strong>R2950</strong> per night (R295 per person)</span></td>\r\n</tr>\r\n<tr>\r\n<td><span style=\"font-size: 12pt;\">Single - Max 1 person per room</span></td>\r\n<td><span style=\"font-size: 12pt;\"><strong>R 650</strong> per person per night</span></td>\r\n</tr>\r\n<tr>\r\n<td><span style=\"font-size: 12pt;\">Sharing - Max 2 persons per room</span></td>\r\n<td><span style=\"font-size: 12pt;\"><strong>R 495</strong> per person per night</span></td>\r\n</tr>\r\n<tr>\r\n<td><span style=\"font-size: 12pt;\"> </span></td>\r\n<td><span style=\"font-size: 12pt;\"><strong> </strong></span></td>\r\n</tr>\r\n<tr>\r\n<td><strong><span style=\"font-size: 12pt;\">Servicing Options</span></strong></td>\r\n<td><span style=\"font-size: 12pt;\"><strong> </strong></span></td>\r\n</tr>\r\n<tr>\r\n<td><span style=\"font-size: 12pt;\">Lodge Only Servicing (Optional) </span></td>\r\n<td><span style=\"font-size: 12pt;\"><strong>R30</strong> per person per day - Max <span style=\"font-size: 12pt;\"><strong>R 150 </strong>per day</span></span></td>\r\n</tr>\r\n<tr>\r\n<td><span style=\"font-size: 12pt;\">Lodge &amp; Room Servicing (Optional) </span></td>\r\n<td><span style=\"font-size: 12pt;\"><strong>R50</strong> per person per day - Max <span style=\"font-size: 12pt;\"><strong>R 250 </strong>per day</span></span></td>\r\n</tr>\r\n<tr>\r\n<td><span style=\"font-size: 12pt;\"> </span></td>\r\n<td><span style=\"font-size: 12pt;\"><strong> </strong></span></td>\r\n</tr>\r\n<tr>\r\n<td colspan=\"2\"><span style=\"font-size: 12pt;\"><span style=\"font-size: 12pt;\"><strong>Catering Options</strong></span> </span><span style=\"font-size: 12pt;\"><strong> </strong></span></td>\r\n</tr>\r\n<tr>\r\n<td><span style=\"font-size: 12pt;\"> <span style=\"font-size: 12pt;\">Breakfast (Continental)</span></span></td>\r\n<td><span style=\"font-size: 12pt;\"><strong> </strong><span style=\"font-size: 12pt;\"><strong>R  55</strong> per person</span></span></td>\r\n</tr>\r\n<tr>\r\n<td><span style=\"font-size: 12pt;\"> <span style=\"font-size: 12pt;\">Breakfast (Full English)</span></span></td>\r\n<td><span style=\"font-size: 12pt;\"><strong> </strong><span style=\"font-size: 12pt;\"><strong>R  95</strong> per person</span></span></td>\r\n</tr>\r\n<tr>\r\n<td><span style=\"font-size: 12pt;\"> <span style=\"font-size: 12pt;\">Light Lunch</span></span></td>\r\n<td><span style=\"font-size: 12pt;\"><strong> </strong><span style=\"font-size: 12pt;\"><strong>R  95 </strong>per person</span></span></td>\r\n</tr>\r\n<tr>\r\n<td><span style=\"font-size: 12pt;\"> <span style=\"font-size: 12pt;\">Dinners</span></span></td>\r\n<td><span style=\"font-size: 12pt;\"><strong> </strong><span style=\"font-size: 12pt;\"><strong>R 150 </strong>per person</span></span></td>\r\n</tr>\r\n<tr>\r\n<td><span style=\"font-size: 12pt;\"> </span></td>\r\n<td><span style=\"font-size: 12pt;\"><strong> </strong></span></td>\r\n</tr>\r\n<tr>\r\n<td><strong><span style=\"font-size: 12pt;\">Others</span></strong></td>\r\n<td><span style=\"font-size: 12pt;\"><strong> </strong></span></td>\r\n</tr>\r\n<tr>\r\n<td><span style=\"font-size: 12pt;\">Gate Remote</span></td>\r\n<td><span style=\"font-size: 12pt;\"><strong>R 200 </strong>deposit</span></td>\r\n</tr>\r\n<tr>\r\n<td><span style=\"font-size: 12pt;\">Gas Braai </span></td>\r\n<td><span style=\"font-size: 12pt;\"><strong>R 120 </strong>per day </span></td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n&nbsp;\r\n\r\n<hr />[/modal][button link=\"\" color=\"darkgreen\" size=\"\"  type=\"\" shape=\"\" target=\"_self\" title=\"\" gradient_colors=\"|\" gradient_hover_colors=\"|\" accent_color=\"\" accent_hover_color=\"\" bevel_color=\"\" border_width=\"1px\" icon=\"\" icon_position=\"left\" icon_divider=\"no\" modal=\"rates\" animation_type=\"0\" animation_direction=\"left\" animation_speed=\"1\" alignment=\"\" class=\"\" id=\"\"]2015 RATES[/button][/two_fifth][/fullwidth][fullwidth background_color=\"#f0f0ed\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"20\" padding_bottom=\"20\" padding_left=\"0px\" padding_right=\"0px\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][one_half last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][fusion_text]\r\n<h3 style=\"text-align: justify;\">Set in the rolling peaks and valleys of a thousand hills surrounded by a canopy of indigenous trees  , you will find that horses still have right of way , we  certainly offer the best of both worlds , farm and charm coupled with modern amenities that will have you feeling relaxed and rejuvenated.</h3>\r\n<h3 style=\"text-align: justify;\">We know that sometimes you are searching for a romantic getaway or maybe a few days away with old friends. Other times you are searching for a place to host a weekend, family reunion or a business retreat. In addition to nightly room rentals, our lodge is also available for meetings, retreats  and makes the perfect place for a wedding party to stay together and get ready for the big day. Regardless, with our five comfortable and cozy guest bedrooms , multiple garden spaces and hideaways, and a  large private deck  where you can take a nap or read a book we definitely have the room for you!</h3>\r\n[/fusion_text][/one_half][one_half last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][fusion_text]\r\n<h3 style=\"text-align: justify;\">Our lodge has been in our family for years and has recently been beautifully renovated. Five rooms all with en-suite showers, tea/coffee making facilities, MNet and satellite television (DSTV)  open Wi-Fi. Sumptuous meals are served on the bottom deck at the swimming pool. Barbecues, afternoon tea in the garden or picnic baskets  on request all add to the service that awaits you, Our lodge features a  50 foot high Apex ceiling, spacious living, dining and bar area including a fitted kitchenette  all adding to a sense of homey comfort.</h3>\r\n<h3 style=\"text-align: justify;\">Be lulled to sleep by the sound of the waterfall  and tinkling stream just outside your window , waking from a peaceful night\'s sleep in a pillow-top bed dressed in luxurious linens to coddle you in ultimate comfort.</h3>\r\n<h3 style=\"text-align: justify;\">Our property boasts many different species of birds and animals. We have a resident otter, a family of wild bush pigs,  a family of rock rabbits, porcupine, little blue duikers, a variety of different frogs and an abundance of bird life, including the occasional snakes that pass through!</h3>\r\n<h3 style=\"text-align: justify;\">Evenings are quiet and peaceful taking you far away from the business of city life. This is a unique and memorable country experience. We look forward to having you as a guest!</h3>\r\n[/fusion_text][/one_half][/fullwidth][fullwidth background_color=\"#f0f0ed\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"20\" padding_bottom=\"20\" padding_left=\"0px\" padding_right=\"0px\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][fusion_text]\r\n<h1 style=\"text-align: center;\">Gallery</h1>\r\n[/fusion_text][separator style_type=\"single\" top_margin=\"\" bottom_margin=\"40\" sep_color=\"#000000\" border_size=\"\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"170px\" alignment=\"\" class=\"\" id=\"\"][one_sixth last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][/one_sixth][two_third last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][fusion_text]\r\n<h3 style=\"text-align: justify;\">The Lodge is open, spacious, comfortable and homely. During hot summer days, sit and bask in the sun on the deck  with one of our  picnic specials. In winter, snuggle up with a good book or challenge one another to a friendly board game in the glassed nook area .</h3>\r\n[/fusion_text][/two_third][one_sixth last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][/one_sixth][/fullwidth][fullwidth background_color=\"#f0f0ed\" background_image=\"http://localhost/assagaylodge/wp-content/uploads/2015/01/Wood_Texture.jpg\" background_parallax=\"fixed\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"30\" padding_bottom=\"10\" padding_left=\"0\" padding_right=\"0\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][recent_works layout=\"grid\" picture_size=\"auto\" boxed_text=\"unboxed\" filters=\"no\" columns=\"3\" column_spacing=\"12\" cat_slug=\"the-lodge\" exclude_cats=\"\" number_posts=\"9\" offset=\"\" excerpt_length=\"35\" strip_html=\"yes\" carousel_layout=\"title_on_rollover\" scroll_items=\"\" autoplay=\"no\" show_nav=\"yes\" mouse_scroll=\"no\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" class=\"\" id=\"\"][/recent_works][/fullwidth][fullwidth background_color=\"#f0f0ed\" background_image=\"\" background_parallax=\"fixed\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"20\" padding_bottom=\"20\" padding_left=\"0px\" padding_right=\"0px\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][fusion_text]\r\n<h1 style=\"text-align: center;\">BEDROOMS</h1>\r\n[/fusion_text][separator style_type=\"single\" top_margin=\"\" bottom_margin=\"20\" sep_color=\"#000000\" border_size=\"\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"170px\" alignment=\"\" class=\"\" id=\"\"][one_sixth last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][/one_sixth][two_third last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][fusion_text]\r\n<h3 style=\"text-align: justify;\">When it comes to our bedrooms we’re proud to say we offer something a little more special. One of five  lovingly and tastefully decorated guest rooms. Soft gray decor soothes the senses providing a peaceful, blissfully comfortable rest from your travels and hectic lives.</h3>\r\n<h3 style=\"text-align: justify;\">Our  bedrooms are spacious, clean, comfortable all en-suite, equipped with either king size or queen size beds. Each room sleeps two guests. The rooms have high ceilings, wall heaters &amp; ceiling fans. Beds all have electric blankets in Winter, 100% cotton percale sheets and thick hyper allergenic microfiber duvets and pillows. All guest rooms are cleaned with organic and green products. Amenities include hairdryers in each room. Three rooms feature King-sized beds  of which two can be  split into two single beds. Two  rooms can therefore be changed into a twin room upon request. Two rooms feature a Queen-sized double bed. These beds cannot be split into twin beds.</h3>\r\n[/fusion_text][/two_third][one_sixth last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][/one_sixth][/fullwidth][fullwidth background_color=\"\" background_image=\"http://localhost/assagaylodge/wp-content/uploads/2015/01/DSC01516-1148-x-764.jpg\" background_parallax=\"fixed\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"center center\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"20\" padding_bottom=\"20\" padding_left=\"0\" padding_right=\"0\" hundred_percent=\"no\" equal_height_columns=\"yes\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][recent_works layout=\"grid\" picture_size=\"auto\" boxed_text=\"unboxed\" filters=\"no\" columns=\"3\" column_spacing=\"12\" cat_slug=\"bedrooms\" exclude_cats=\"\" number_posts=\"6\" offset=\"\" excerpt_length=\"35\" strip_html=\"yes\" carousel_layout=\"title_on_rollover\" scroll_items=\"\" autoplay=\"no\" show_nav=\"yes\" mouse_scroll=\"no\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" class=\"\" id=\"\"][/recent_works][/fullwidth][fullwidth background_color=\"#f0f0ed\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"20\" padding_bottom=\"20\" padding_left=\"0\" padding_right=\"0\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][fusion_text]\r\n<h1 style=\"text-align: center;\">GARDENS</h1>\r\n[/fusion_text][separator style_type=\"single\" top_margin=\"\" bottom_margin=\"20\" sep_color=\"#000000\" border_size=\"\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"170px\" alignment=\"\" class=\"\" id=\"\"][one_sixth last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][/one_sixth][two_third last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][fusion_text]\r\n<h3 style=\"text-align: justify;\">The garden is large and offers many secluded spots to lose yourself in a book with a glass of wine underneath the shade of a tree, listening to the sounds of the birds and smelling the beautiful flowers.</h3>\r\n[/fusion_text][/two_third][one_sixth last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][/one_sixth][recent_works layout=\"grid\" picture_size=\"auto\" boxed_text=\"boxed\" filters=\"no\" columns=\"3\" column_spacing=\"12\" cat_slug=\"gardens\" exclude_cats=\"\" number_posts=\"9\" offset=\"\" excerpt_length=\"35\" strip_html=\"yes\" carousel_layout=\"title_on_rollover\" scroll_items=\"\" autoplay=\"no\" show_nav=\"yes\" mouse_scroll=\"no\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" class=\"\" id=\"\"][/recent_works][/fullwidth][fullwidth background_color=\"#ffffff\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"65px\" padding_bottom=\"65px\" padding_left=\"0px\" padding_right=\"0px\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][button link=\"http://localhost/assagaylodge/book-now/\" color=\"default\" size=\"xlarge\"  type=\"3d\" shape=\"round\" target=\"_self\" title=\"\" gradient_colors=\"#f0f0ed|#f0f0ed\" gradient_hover_colors=\"#6666a4|#6666a4\" accent_color=\"#ffffff\" accent_hover_color=\"#ffffff\" bevel_color=\"\" border_width=\"0px\" icon=\"\" icon_position=\"left\" icon_divider=\"no\" modal=\"\" animation_type=\"0\" animation_direction=\"left\" animation_speed=\"1\" alignment=\"center\" class=\"\" id=\"\"]Make A Reservation Enquiry[/button][/fullwidth]', 'Home', '', 'inherit', 'closed', 'closed', '', '7-revision-v1', '', '', '2015-10-05 15:20:20', '2015-10-05 13:20:20', '', 7, 'http://localhost/assagaylodge/7-revision-v1/', 0, 'revision', '', 0),
(1146, 1, '2015-10-05 16:11:16', '2015-10-05 14:11:16', '[fullwidth background_color=\"#f0f0ed\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"90px\" padding_bottom=\"0px\" padding_left=\"0px\" padding_right=\"0px\" hundred_percent=\"yes\" equal_height_columns=\"yes\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][one_half last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"http://localhost/assagaylodge/wp-content/uploads/2015/01/DSC01554-e1442325082893.jpg\" background_repeat=\"no-repeat\" background_position=\"center center\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" class=\"\" id=\"\"][/one_half][two_fifth last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"30px\" margin_top=\"\" margin_bottom=\"0px\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" class=\"special\" id=\"\"][fusion_text]\r\n<h1 style=\"text-align: justify;\">5 BEDROOM FAMILY LODGE</h1>\r\n<h3 style=\"text-align: justify;\">A Four Season Lodge, because there’s Always Something to Celebrate… We offer comfort, relaxation and exceptional service right in the heart of 1000 Hills. The Forest, the Gardens, the Atmosphere all speak to  Rest  &amp; Relaxation.</h3>\r\n[/fusion_text][separator style_type=\"single\" top_margin=\"0\" bottom_margin=\"30\" sep_color=\"#000000\" border_size=\"\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"170px\" alignment=\"left\" class=\"separator-left\" id=\"\"][modal name=\"rates\" title=\"2015 Rates\" size=\"large\" background=\"\" border_color=\"\" show_footer=\"yes\" class=\"\" id=\"\"]\r\n<table style=\"width: 100%;\" cellspacing=\"10\" cellpadding=\"5\">\r\n<tbody>\r\n<tr>\r\n<td colspan=\"2\"><span style=\"font-size: 10pt;\">ALL PRICES INCLUDE VAT </span></td>\r\n</tr>\r\n<tr>\r\n<td colspan=\"2\"><span style=\"font-size: 12pt;\"><strong>Self-Catering / Self-Servicing Accommodation</strong></span></td>\r\n</tr>\r\n<tr>\r\n<td><span style=\"font-size: 12pt;\">Full House - Max 10 persons per lodge</span></td>\r\n<td><span style=\"font-size: 12pt;\"><strong>R3250</strong> per night (R325 per person)</span></td>\r\n</tr>\r\n<tr>\r\n<td><span style=\"font-size: 12pt;\">Single - Max 1 person per room</span></td>\r\n<td><span style=\"font-size: 12pt;\"><strong>R 650</strong> per person per night</span></td>\r\n</tr>\r\n<tr>\r\n<td><span style=\"font-size: 12pt;\">Sharing - Max 2 persons per room</span></td>\r\n<td><span style=\"font-size: 12pt;\"><strong>R 495</strong> per person per night</span></td>\r\n</tr>\r\n<tr>\r\n<td></td>\r\n<td></td>\r\n</tr>\r\n<tr>\r\n<td><strong><span style=\"font-size: 12pt;\">Servicing Options</span></strong></td>\r\n<td></td>\r\n</tr>\r\n<tr>\r\n<td><span style=\"font-size: 12pt;\">Lodge Only Servicing (Optional) </span></td>\r\n<td><span style=\"font-size: 12pt;\"><strong>R30</strong> per person per day - Max <span style=\"font-size: 12pt;\"><strong>R 150 </strong>per day</span></span></td>\r\n</tr>\r\n<tr>\r\n<td><span style=\"font-size: 12pt;\">Lodge &amp; Room Servicing (Optional) </span></td>\r\n<td><span style=\"font-size: 12pt;\"><strong>R50</strong> per person per day - Max <span style=\"font-size: 12pt;\"><strong>R 250 </strong>per day</span></span></td>\r\n</tr>\r\n<tr>\r\n<td></td>\r\n<td></td>\r\n</tr>\r\n<tr>\r\n<td colspan=\"2\"><span style=\"font-size: 12pt;\"><span style=\"font-size: 12pt;\"><strong>Catering Options</strong></span> </span></td>\r\n</tr>\r\n<tr>\r\n<td><span style=\"font-size: 12pt;\"> <span style=\"font-size: 12pt;\">Breakfast (Continental)</span></span></td>\r\n<td><span style=\"font-size: 12pt;\"> <span style=\"font-size: 12pt;\"><strong>R 55</strong> per person</span></span></td>\r\n</tr>\r\n<tr>\r\n<td><span style=\"font-size: 12pt;\"> <span style=\"font-size: 12pt;\">Breakfast (Full English)</span></span></td>\r\n<td><span style=\"font-size: 12pt;\"> <span style=\"font-size: 12pt;\"><strong>R 95</strong> per person</span></span></td>\r\n</tr>\r\n<tr>\r\n<td><span style=\"font-size: 12pt;\"> <span style=\"font-size: 12pt;\">Light Lunch</span></span></td>\r\n<td><span style=\"font-size: 12pt;\">From <span style=\"font-size: 12pt;\"><strong>R 95 </strong>per person</span></span></td>\r\n</tr>\r\n<tr>\r\n<td><span style=\"font-size: 12pt;\"> <span style=\"font-size: 12pt;\">Dinners</span></span></td>\r\n<td><span style=\"font-size: 12pt;\">From <span style=\"font-size: 12pt;\"><strong>R 150 </strong>per person</span></span></td>\r\n</tr>\r\n<tr>\r\n<td></td>\r\n<td></td>\r\n</tr>\r\n<tr>\r\n<td><strong><span style=\"font-size: 12pt;\">Others</span></strong></td>\r\n<td></td>\r\n</tr>\r\n<tr>\r\n<td><span style=\"font-size: 12pt;\">Gate Remote</span></td>\r\n<td><span style=\"font-size: 12pt;\"><strong>R 200 </strong>deposit</span></td>\r\n</tr>\r\n<tr>\r\n<td><span style=\"font-size: 12pt;\">Gas Braai</span></td>\r\n<td><span style=\"font-size: 12pt;\"><strong>R 120 </strong>per day</span></td>\r\n</tr>\r\n<tr>\r\n<td><span style=\"font-size: 12pt;\">Day Visitors / Guests</span></td>\r\n<td><span style=\"font-size: 12pt;\"><strong>R 35 </strong>per person per day</span></td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n&nbsp;\r\n\r\n<hr />\r\n\r\n[/modal][button link=\"\" color=\"darkgreen\" size=\"\" type=\"\" shape=\"\" target=\"_self\" title=\"\" gradient_colors=\"|\" gradient_hover_colors=\"|\" accent_color=\"\" accent_hover_color=\"\" bevel_color=\"\" border_width=\"1px\" icon=\"\" icon_position=\"left\" icon_divider=\"no\" modal=\"rates\" animation_type=\"0\" animation_direction=\"left\" animation_speed=\"1\" alignment=\"\" class=\"\" id=\"\"]2015 RATES[/button][/two_fifth][/fullwidth][fullwidth background_color=\"#f0f0ed\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"20\" padding_bottom=\"20\" padding_left=\"0px\" padding_right=\"0px\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][one_half last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][fusion_text]\r\n<h3 style=\"text-align: justify;\">Set in the rolling peaks and valleys of a thousand hills surrounded by a canopy of indigenous trees  , you will find that horses still have right of way , we  certainly offer the best of both worlds , farm and charm coupled with modern amenities that will have you feeling relaxed and rejuvenated.</h3>\r\n<h3 style=\"text-align: justify;\">We know that sometimes you are searching for a romantic getaway or maybe a few days away with old friends. Other times you are searching for a place to host a weekend, family reunion or a business retreat. In addition to nightly room rentals, our lodge is also available for meetings, retreats  and makes the perfect place for a wedding party to stay together and get ready for the big day. Regardless, with our five comfortable and cozy guest bedrooms , multiple garden spaces and hideaways, and a  large private deck  where you can take a nap or read a book we definitely have the room for you!</h3>\r\n[/fusion_text][/one_half][one_half last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][fusion_text]\r\n<h3 style=\"text-align: justify;\">Our lodge has been in our family for years and has recently been beautifully renovated. Five rooms all with en-suite showers, tea/coffee making facilities, MNet and satellite television (DSTV)  open Wi-Fi. Sumptuous meals are served on the bottom deck at the swimming pool. Barbecues, afternoon tea in the garden or picnic baskets  on request all add to the service that awaits you, Our lodge features a  50 foot high Apex ceiling, spacious living, dining and bar area including a fitted kitchenette  all adding to a sense of homey comfort.</h3>\r\n<h3 style=\"text-align: justify;\">Be lulled to sleep by the sound of the waterfall  and tinkling stream just outside your window , waking from a peaceful night\'s sleep in a pillow-top bed dressed in luxurious linens to coddle you in ultimate comfort.</h3>\r\n<h3 style=\"text-align: justify;\">Our property boasts many different species of birds and animals. We have a resident otter, a family of wild bush pigs,  a family of rock rabbits, porcupine, little blue duikers, a variety of different frogs and an abundance of bird life, including the occasional snakes that pass through!</h3>\r\n<h3 style=\"text-align: justify;\">Evenings are quiet and peaceful taking you far away from the business of city life. This is a unique and memorable country experience. We look forward to having you as a guest!</h3>\r\n[/fusion_text][/one_half][/fullwidth][fullwidth background_color=\"#f0f0ed\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"20\" padding_bottom=\"20\" padding_left=\"0px\" padding_right=\"0px\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][fusion_text]\r\n<h1 style=\"text-align: center;\">Gallery</h1>\r\n[/fusion_text][separator style_type=\"single\" top_margin=\"\" bottom_margin=\"40\" sep_color=\"#000000\" border_size=\"\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"170px\" alignment=\"\" class=\"\" id=\"\"][one_sixth last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][/one_sixth][two_third last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][fusion_text]\r\n<h3 style=\"text-align: justify;\">The Lodge is open, spacious, comfortable and homely. During hot summer days, sit and bask in the sun on the deck  with one of our  picnic specials. In winter, snuggle up with a good book or challenge one another to a friendly board game in the glassed nook area .</h3>\r\n[/fusion_text][/two_third][one_sixth last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][/one_sixth][/fullwidth][fullwidth background_color=\"#f0f0ed\" background_image=\"http://localhost/assagaylodge/wp-content/uploads/2015/01/Wood_Texture.jpg\" background_parallax=\"fixed\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"30\" padding_bottom=\"10\" padding_left=\"0\" padding_right=\"0\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][recent_works layout=\"grid\" picture_size=\"auto\" boxed_text=\"unboxed\" filters=\"no\" columns=\"3\" column_spacing=\"12\" cat_slug=\"the-lodge\" exclude_cats=\"\" number_posts=\"9\" offset=\"\" excerpt_length=\"35\" strip_html=\"yes\" carousel_layout=\"title_on_rollover\" scroll_items=\"\" autoplay=\"no\" show_nav=\"yes\" mouse_scroll=\"no\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" class=\"\" id=\"\"][/recent_works][/fullwidth][fullwidth background_color=\"#f0f0ed\" background_image=\"\" background_parallax=\"fixed\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"20\" padding_bottom=\"20\" padding_left=\"0px\" padding_right=\"0px\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][fusion_text]\r\n<h1 style=\"text-align: center;\">BEDROOMS</h1>\r\n[/fusion_text][separator style_type=\"single\" top_margin=\"\" bottom_margin=\"20\" sep_color=\"#000000\" border_size=\"\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"170px\" alignment=\"\" class=\"\" id=\"\"][one_sixth last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][/one_sixth][two_third last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][fusion_text]\r\n<h3 style=\"text-align: justify;\">When it comes to our bedrooms we’re proud to say we offer something a little more special. One of five  lovingly and tastefully decorated guest rooms. Soft gray decor soothes the senses providing a peaceful, blissfully comfortable rest from your travels and hectic lives.</h3>\r\n<h3 style=\"text-align: justify;\">Our  bedrooms are spacious, clean, comfortable all en-suite, equipped with either king size or queen size beds. Each room sleeps two guests. The rooms have high ceilings, wall heaters &amp; ceiling fans. Beds all have electric blankets in Winter, 100% cotton percale sheets and thick hyper allergenic microfiber duvets and pillows. All guest rooms are cleaned with organic and green products. Amenities include hairdryers in each room. Three rooms feature King-sized beds  of which two can be  split into two single beds. Two  rooms can therefore be changed into a twin room upon request. Two rooms feature a Queen-sized double bed. These beds cannot be split into twin beds.</h3>\r\n[/fusion_text][/two_third][one_sixth last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][/one_sixth][/fullwidth][fullwidth background_color=\"\" background_image=\"http://localhost/assagaylodge/wp-content/uploads/2015/01/DSC01516-1148-x-764.jpg\" background_parallax=\"fixed\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"center center\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"20\" padding_bottom=\"20\" padding_left=\"0\" padding_right=\"0\" hundred_percent=\"no\" equal_height_columns=\"yes\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][recent_works layout=\"grid\" picture_size=\"auto\" boxed_text=\"unboxed\" filters=\"no\" columns=\"3\" column_spacing=\"12\" cat_slug=\"bedrooms\" exclude_cats=\"\" number_posts=\"6\" offset=\"\" excerpt_length=\"35\" strip_html=\"yes\" carousel_layout=\"title_on_rollover\" scroll_items=\"\" autoplay=\"no\" show_nav=\"yes\" mouse_scroll=\"no\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" class=\"\" id=\"\"][/recent_works][/fullwidth][fullwidth background_color=\"#f0f0ed\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"20\" padding_bottom=\"20\" padding_left=\"0\" padding_right=\"0\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][fusion_text]\r\n<h1 style=\"text-align: center;\">GARDENS</h1>\r\n[/fusion_text][separator style_type=\"single\" top_margin=\"\" bottom_margin=\"20\" sep_color=\"#000000\" border_size=\"\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"170px\" alignment=\"\" class=\"\" id=\"\"][one_sixth last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][/one_sixth][two_third last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][fusion_text]\r\n<h3 style=\"text-align: justify;\">The garden is large and offers many secluded spots to lose yourself in a book with a glass of wine underneath the shade of a tree, listening to the sounds of the birds and smelling the beautiful flowers.</h3>\r\n[/fusion_text][/two_third][one_sixth last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][/one_sixth][recent_works layout=\"grid\" picture_size=\"auto\" boxed_text=\"boxed\" filters=\"no\" columns=\"3\" column_spacing=\"12\" cat_slug=\"gardens\" exclude_cats=\"\" number_posts=\"9\" offset=\"\" excerpt_length=\"35\" strip_html=\"yes\" carousel_layout=\"title_on_rollover\" scroll_items=\"\" autoplay=\"no\" show_nav=\"yes\" mouse_scroll=\"no\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" class=\"\" id=\"\"][/recent_works][/fullwidth][fullwidth background_color=\"#ffffff\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"65px\" padding_bottom=\"65px\" padding_left=\"0px\" padding_right=\"0px\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][button link=\"http://localhost/assagaylodge/book-now/\" color=\"default\" size=\"xlarge\" type=\"3d\" shape=\"round\" target=\"_self\" title=\"\" gradient_colors=\"#f0f0ed|#f0f0ed\" gradient_hover_colors=\"#6666a4|#6666a4\" accent_color=\"#ffffff\" accent_hover_color=\"#ffffff\" bevel_color=\"\" border_width=\"0px\" icon=\"\" icon_position=\"left\" icon_divider=\"no\" modal=\"\" animation_type=\"0\" animation_direction=\"left\" animation_speed=\"1\" alignment=\"center\" class=\"\" id=\"\"]Make A Reservation Enquiry[/button][/fullwidth]', 'Home', '', 'inherit', 'closed', 'closed', '', '7-revision-v1', '', '', '2015-10-05 16:11:16', '2015-10-05 14:11:16', '', 7, 'http://localhost/assagaylodge/7-revision-v1/', 0, 'revision', '', 0);
INSERT INTO `wp_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(1147, 1, '2015-10-05 16:15:06', '2015-10-05 14:15:06', '[fullwidth background_color=\"#f0f0ed\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"90px\" padding_bottom=\"0px\" padding_left=\"0px\" padding_right=\"0px\" hundred_percent=\"yes\" equal_height_columns=\"yes\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][one_half last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"http://localhost/assagaylodge/wp-content/uploads/2015/01/DSC01554-e1442325082893.jpg\" background_repeat=\"no-repeat\" background_position=\"center center\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" class=\"\" id=\"\"][/one_half][two_fifth last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"30px\" margin_top=\"\" margin_bottom=\"0px\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" class=\"special\" id=\"\"][fusion_text]\r\n<h1 style=\"text-align: justify;\">5 BEDROOM FAMILY LODGE</h1>\r\n<h3 style=\"text-align: justify;\">A Four Season Lodge, because there’s Always Something to Celebrate… We offer comfort, relaxation and exceptional service right in the heart of 1000 Hills. The Forest, the Gardens, the Atmosphere all speak to  Rest  &amp; Relaxation.</h3>\r\n[/fusion_text][separator style_type=\"single\" top_margin=\"0\" bottom_margin=\"30\" sep_color=\"#000000\" border_size=\"\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"170px\" alignment=\"left\" class=\"separator-left\" id=\"\"][modal name=\"rates\" title=\"2015 Rates\" size=\"large\" background=\"\" border_color=\"\" show_footer=\"yes\" class=\"\" id=\"\"]\r\n<table style=\"width: 100%;\" cellspacing=\"10\" cellpadding=\"5\">\r\n<tbody>\r\n<tr>\r\n<td colspan=\"2\"><span style=\"font-size: 10pt;\">ALL PRICES INCLUDE VAT </span></td>\r\n</tr>\r\n<tr>\r\n<td colspan=\"2\"><span style=\"font-size: 12pt;\"><strong>Self-Catering / Self-Servicing Accommodation</strong></span></td>\r\n</tr>\r\n<tr>\r\n<td><span style=\"font-size: 12pt;\">Full House - Max 10 persons per lodge</span></td>\r\n<td><span style=\"font-size: 12pt;\"><strong>R3250</strong> per night (R325 per person)</span></td>\r\n</tr>\r\n<tr>\r\n<td><span style=\"font-size: 12pt;\">Single - Max 1 person per room</span></td>\r\n<td><span style=\"font-size: 12pt;\"><strong>R 650</strong> per person per night</span></td>\r\n</tr>\r\n<tr>\r\n<td><span style=\"font-size: 12pt;\">Sharing - Max 2 persons per room</span></td>\r\n<td><span style=\"font-size: 12pt;\"><strong>R 495</strong> per person per night</span></td>\r\n</tr>\r\n<tr>\r\n<td></td>\r\n<td></td>\r\n</tr>\r\n<tr>\r\n<td><strong><span style=\"font-size: 12pt;\">Servicing Options</span></strong></td>\r\n<td></td>\r\n</tr>\r\n<tr>\r\n<td><span style=\"font-size: 12pt;\">Lodge Only Servicing (Optional) </span></td>\r\n<td><span style=\"font-size: 12pt;\"><strong>R30</strong> per person per day - Max <span style=\"font-size: 12pt;\"><strong>R 150 </strong>per day</span></span></td>\r\n</tr>\r\n<tr>\r\n<td><span style=\"font-size: 12pt;\">Lodge &amp; Room Servicing (Optional) </span></td>\r\n<td><span style=\"font-size: 12pt;\"><strong>R50</strong> per person per day - Max <span style=\"font-size: 12pt;\"><strong>R 250 </strong>per day</span></span></td>\r\n</tr>\r\n<tr>\r\n<td></td>\r\n<td></td>\r\n</tr>\r\n<tr>\r\n<td colspan=\"2\"><span style=\"font-size: 12pt;\"><span style=\"font-size: 12pt;\"><strong>Catering Options</strong></span> </span></td>\r\n</tr>\r\n<tr>\r\n<td><span style=\"font-size: 12pt;\"> <span style=\"font-size: 12pt;\">Breakfast (Continental)</span></span></td>\r\n<td><span style=\"font-size: 12pt;\"> <span style=\"font-size: 12pt;\"><strong>R 55</strong> per person</span></span></td>\r\n</tr>\r\n<tr>\r\n<td><span style=\"font-size: 12pt;\"> <span style=\"font-size: 12pt;\">Breakfast (Full English)</span></span></td>\r\n<td><span style=\"font-size: 12pt;\"> <span style=\"font-size: 12pt;\"><strong>R 95</strong> per person</span></span></td>\r\n</tr>\r\n<tr>\r\n<td><span style=\"font-size: 12pt;\"> <span style=\"font-size: 12pt;\">Light Lunch</span></span></td>\r\n<td><span style=\"font-size: 12pt;\">From <span style=\"font-size: 12pt;\"><strong>R 95 </strong>per person</span></span></td>\r\n</tr>\r\n<tr>\r\n<td><span style=\"font-size: 12pt;\"> <span style=\"font-size: 12pt;\">Dinners</span></span></td>\r\n<td><span style=\"font-size: 12pt;\">From <span style=\"font-size: 12pt;\"><strong>R 150 </strong>per person</span></span></td>\r\n</tr>\r\n<tr>\r\n<td></td>\r\n<td></td>\r\n</tr>\r\n<tr>\r\n<td><strong><span style=\"font-size: 12pt;\">Others</span></strong></td>\r\n<td></td>\r\n</tr>\r\n<tr>\r\n<td><span style=\"font-size: 12pt;\">Gate Remote</span></td>\r\n<td><span style=\"font-size: 12pt;\"><strong>R 200 </strong>deposit</span></td>\r\n</tr>\r\n<tr>\r\n<td><span style=\"font-size: 12pt;\">Gas Braai</span></td>\r\n<td><span style=\"font-size: 12pt;\"><strong>R 120 </strong>per day</span></td>\r\n</tr>\r\n<tr>\r\n<td><span style=\"font-size: 12pt;\">Day Visitors / Guests</span></td>\r\n<td><span style=\"font-size: 12pt;\"><strong>R 35 </strong>per person per day</span></td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n&nbsp;\r\n\r\n<hr />\r\n\r\n[/modal][button link=\"\" color=\"darkgreen\" size=\"\" type=\"\" shape=\"\" target=\"_self\" title=\"\" gradient_colors=\"|\" gradient_hover_colors=\"|\" accent_color=\"\" accent_hover_color=\"\" bevel_color=\"\" border_width=\"1px\" icon=\"\" icon_position=\"left\" icon_divider=\"no\" modal=\"rates\" animation_type=\"0\" animation_direction=\"left\" animation_speed=\"1\" alignment=\"\" class=\"\" id=\"\"]2015 RATES[/button][/two_fifth][/fullwidth][fullwidth background_color=\"#f0f0ed\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"20\" padding_bottom=\"20\" padding_left=\"0px\" padding_right=\"0px\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][one_half last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][fusion_text]\r\n<h3 style=\"text-align: justify;\">Set in the rolling peaks and valleys of a thousand hills surrounded by a canopy of indigenous trees  , you will find that horses still have right of way , we  certainly offer the best of both worlds , farm and charm coupled with modern amenities that will have you feeling relaxed and rejuvenated.</h3>\r\n<h3 style=\"text-align: justify;\">We know that sometimes you are searching for a romantic getaway or maybe a few days away with old friends. Other times you are searching for a place to host a weekend, family reunion or a business retreat. In addition to nightly room rentals, our lodge is also available for meetings, retreats  and makes the perfect place for a wedding party to stay together and get ready for the big day. Regardless, with our five comfortable and cozy guest bedrooms , multiple garden spaces and hideaways, and a  large private deck  where you can take a nap or read a book we definitely have the room for you!</h3>\r\n[/fusion_text][/one_half][one_half last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][fusion_text]\r\n<h3 style=\"text-align: justify;\">Our lodge has been in our family for years and has recently been beautifully renovated. Five rooms all with en-suite showers, tea/coffee making facilities, MNet and satellite television (DSTV)  open Wi-Fi. Sumptuous meals are served on the bottom deck at the swimming pool. Barbecues, afternoon tea in the garden or picnic baskets  on request all add to the service that awaits you, Our lodge features a  50 foot high Apex ceiling, spacious living, dining and bar area including a fitted kitchenette  all adding to a sense of homey comfort.</h3>\r\n<h3 style=\"text-align: justify;\">Be lulled to sleep by the sound of the waterfall  and tinkling stream just outside your window , waking from a peaceful night\'s sleep in a pillow-top bed dressed in luxurious linens to coddle you in ultimate comfort.</h3>\r\n<h3 style=\"text-align: justify;\">Our property boasts many different species of birds and animals. We have a resident otter, a family of wild bush pigs,  a family of rock rabbits, porcupine, little blue duikers, a variety of different frogs and an abundance of bird life, including the occasional snakes that pass through!</h3>\r\n<h3 style=\"text-align: justify;\">Evenings are quiet and peaceful taking you far away from the business of city life. This is a unique and memorable country experience. We look forward to having you as a guest!</h3>\r\n[/fusion_text][/one_half][/fullwidth][fullwidth background_color=\"#f0f0ed\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"20\" padding_bottom=\"20\" padding_left=\"0px\" padding_right=\"0px\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][fusion_text]\r\n<h1 style=\"text-align: center;\">Gallery</h1>\r\n[/fusion_text][separator style_type=\"single\" top_margin=\"\" bottom_margin=\"40\" sep_color=\"#000000\" border_size=\"\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"170px\" alignment=\"\" class=\"\" id=\"\"][one_fifth last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][/one_fifth][three_fifth last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][fusion_text]\r\n<h3 style=\"text-align: justify;\">The Lodge is open, spacious, comfortable and homely. During hot summer days, sit and bask in the sun on the deck  with one of our  picnic specials. In winter, snuggle up with a good book or challenge one another to a friendly board game in the glassed nook area .</h3>\r\n[/fusion_text][/three_fifth][one_fifth last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][/one_fifth][/fullwidth][fullwidth background_color=\"#f0f0ed\" background_image=\"http://localhost/assagaylodge/wp-content/uploads/2015/01/Wood_Texture.jpg\" background_parallax=\"fixed\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"30\" padding_bottom=\"10\" padding_left=\"0\" padding_right=\"0\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][recent_works layout=\"grid\" picture_size=\"auto\" boxed_text=\"unboxed\" filters=\"no\" columns=\"3\" column_spacing=\"12\" cat_slug=\"the-lodge\" exclude_cats=\"\" number_posts=\"9\" offset=\"\" excerpt_length=\"35\" strip_html=\"yes\" carousel_layout=\"title_on_rollover\" scroll_items=\"\" autoplay=\"no\" show_nav=\"yes\" mouse_scroll=\"no\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" class=\"\" id=\"\"][/recent_works][/fullwidth][fullwidth background_color=\"#f0f0ed\" background_image=\"\" background_parallax=\"fixed\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"20\" padding_bottom=\"20\" padding_left=\"0px\" padding_right=\"0px\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][fusion_text]\r\n<h1 style=\"text-align: center;\">BEDROOMS</h1>\r\n[/fusion_text][separator style_type=\"single\" top_margin=\"\" bottom_margin=\"20\" sep_color=\"#000000\" border_size=\"\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"170px\" alignment=\"\" class=\"\" id=\"\"][one_sixth last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][/one_sixth][two_third last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][fusion_text]\r\n<h3 style=\"text-align: justify;\">When it comes to our bedrooms we’re proud to say we offer something a little more special. One of five  lovingly and tastefully decorated guest rooms. Soft gray decor soothes the senses providing a peaceful, blissfully comfortable rest from your travels and hectic lives.</h3>\r\n<h3 style=\"text-align: justify;\">Our  bedrooms are spacious, clean, comfortable all en-suite, equipped with either king size or queen size beds. Each room sleeps two guests. The rooms have high ceilings, wall heaters &amp; ceiling fans. Beds all have electric blankets in Winter, 100% cotton percale sheets and thick hyper allergenic microfiber duvets and pillows. All guest rooms are cleaned with organic and green products. Amenities include hairdryers in each room. Three rooms feature King-sized beds  of which two can be  split into two single beds. Two  rooms can therefore be changed into a twin room upon request. Two rooms feature a Queen-sized double bed. These beds cannot be split into twin beds.</h3>\r\n[/fusion_text][/two_third][one_sixth last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][/one_sixth][/fullwidth][fullwidth background_color=\"\" background_image=\"http://localhost/assagaylodge/wp-content/uploads/2015/01/DSC01516-1148-x-764.jpg\" background_parallax=\"fixed\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"center center\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"20\" padding_bottom=\"20\" padding_left=\"0\" padding_right=\"0\" hundred_percent=\"no\" equal_height_columns=\"yes\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][recent_works layout=\"grid\" picture_size=\"auto\" boxed_text=\"unboxed\" filters=\"no\" columns=\"3\" column_spacing=\"12\" cat_slug=\"bedrooms\" exclude_cats=\"\" number_posts=\"6\" offset=\"\" excerpt_length=\"35\" strip_html=\"yes\" carousel_layout=\"title_on_rollover\" scroll_items=\"\" autoplay=\"no\" show_nav=\"yes\" mouse_scroll=\"no\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" class=\"\" id=\"\"][/recent_works][/fullwidth][fullwidth background_color=\"#f0f0ed\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"20\" padding_bottom=\"20\" padding_left=\"0\" padding_right=\"0\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][fusion_text]\r\n<h1 style=\"text-align: center;\">GARDENS</h1>\r\n[/fusion_text][separator style_type=\"single\" top_margin=\"\" bottom_margin=\"20\" sep_color=\"#000000\" border_size=\"\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"170px\" alignment=\"\" class=\"\" id=\"\"][one_sixth last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][/one_sixth][two_third last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][fusion_text]\r\n<h3 style=\"text-align: justify;\">The garden is large and offers many secluded spots to lose yourself in a book with a glass of wine underneath the shade of a tree, listening to the sounds of the birds and smelling the beautiful flowers.</h3>\r\n[/fusion_text][/two_third][one_sixth last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][/one_sixth][recent_works layout=\"grid\" picture_size=\"auto\" boxed_text=\"boxed\" filters=\"no\" columns=\"3\" column_spacing=\"12\" cat_slug=\"gardens\" exclude_cats=\"\" number_posts=\"9\" offset=\"\" excerpt_length=\"35\" strip_html=\"yes\" carousel_layout=\"title_on_rollover\" scroll_items=\"\" autoplay=\"no\" show_nav=\"yes\" mouse_scroll=\"no\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" class=\"\" id=\"\"][/recent_works][/fullwidth][fullwidth background_color=\"#ffffff\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"65px\" padding_bottom=\"65px\" padding_left=\"0px\" padding_right=\"0px\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][button link=\"http://localhost/assagaylodge/book-now/\" color=\"default\" size=\"xlarge\" type=\"3d\" shape=\"round\" target=\"_self\" title=\"\" gradient_colors=\"#f0f0ed|#f0f0ed\" gradient_hover_colors=\"#6666a4|#6666a4\" accent_color=\"#ffffff\" accent_hover_color=\"#ffffff\" bevel_color=\"\" border_width=\"0px\" icon=\"\" icon_position=\"left\" icon_divider=\"no\" modal=\"\" animation_type=\"0\" animation_direction=\"left\" animation_speed=\"1\" alignment=\"center\" class=\"\" id=\"\"]Make A Reservation Enquiry[/button][/fullwidth]', 'Home', '', 'inherit', 'closed', 'closed', '', '7-revision-v1', '', '', '2015-10-05 16:15:06', '2015-10-05 14:15:06', '', 7, 'http://localhost/assagaylodge/7-revision-v1/', 0, 'revision', '', 0),
(1148, 1, '2015-10-05 16:18:20', '2015-10-05 14:18:20', '[fullwidth background_color=\"#f0f0ed\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"90px\" padding_bottom=\"0px\" padding_left=\"0px\" padding_right=\"0px\" hundred_percent=\"yes\" equal_height_columns=\"yes\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][one_half last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"http://localhost/assagaylodge/wp-content/uploads/2015/01/DSC01554-e1442325082893.jpg\" background_repeat=\"no-repeat\" background_position=\"center center\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" class=\"\" id=\"\"][/one_half][two_fifth last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"30px\" margin_top=\"\" margin_bottom=\"0px\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" class=\"special\" id=\"\"][fusion_text]\r\n<h1 style=\"text-align: justify;\">5 BEDROOM FAMILY LODGE</h1>\r\n<h3 style=\"text-align: justify;\">A Four Season Lodge, because there’s Always Something to Celebrate… We offer comfort, relaxation and exceptional service right in the heart of 1000 Hills. The Forest, the Gardens, the Atmosphere all speak to  Rest  &amp; Relaxation.</h3>\r\n[/fusion_text][separator style_type=\"single\" top_margin=\"0\" bottom_margin=\"30\" sep_color=\"#000000\" border_size=\"\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"170px\" alignment=\"left\" class=\"separator-left\" id=\"\"][modal name=\"rates\" title=\"2015 Rates\" size=\"large\" background=\"\" border_color=\"\" show_footer=\"yes\" class=\"\" id=\"\"]\r\n<table style=\"width: 100%;\" cellspacing=\"10\" cellpadding=\"5\">\r\n<tbody>\r\n<tr>\r\n<td colspan=\"2\"><span style=\"font-size: 10pt;\">ALL PRICES INCLUDE VAT </span></td>\r\n</tr>\r\n<tr>\r\n<td colspan=\"2\"><span style=\"font-size: 12pt;\"><strong>Self-Catering / Self-Servicing Accommodation</strong></span></td>\r\n</tr>\r\n<tr>\r\n<td><span style=\"font-size: 12pt;\">Full House - Max 10 persons per lodge</span></td>\r\n<td><span style=\"font-size: 12pt;\"><strong>R3250</strong> per night (R325 per person)</span></td>\r\n</tr>\r\n<tr>\r\n<td><span style=\"font-size: 12pt;\">Single - Max 1 person per room</span></td>\r\n<td><span style=\"font-size: 12pt;\"><strong>R 650</strong> per person per night</span></td>\r\n</tr>\r\n<tr>\r\n<td><span style=\"font-size: 12pt;\">Sharing - Max 2 persons per room</span></td>\r\n<td><span style=\"font-size: 12pt;\"><strong>R 495</strong> per person per night</span></td>\r\n</tr>\r\n<tr>\r\n<td></td>\r\n<td></td>\r\n</tr>\r\n<tr>\r\n<td><strong><span style=\"font-size: 12pt;\">Servicing Options</span></strong></td>\r\n<td></td>\r\n</tr>\r\n<tr>\r\n<td><span style=\"font-size: 12pt;\">Lodge Only Servicing (Optional) </span></td>\r\n<td><span style=\"font-size: 12pt;\"><strong>R30</strong> per person per day - Max <span style=\"font-size: 12pt;\"><strong>R 150 </strong>per day</span></span></td>\r\n</tr>\r\n<tr>\r\n<td><span style=\"font-size: 12pt;\">Lodge &amp; Room Servicing (Optional) </span></td>\r\n<td><span style=\"font-size: 12pt;\"><strong>R50</strong> per person per day - Max <span style=\"font-size: 12pt;\"><strong>R 250 </strong>per day</span></span></td>\r\n</tr>\r\n<tr>\r\n<td></td>\r\n<td></td>\r\n</tr>\r\n<tr>\r\n<td colspan=\"2\"><span style=\"font-size: 12pt;\"><span style=\"font-size: 12pt;\"><strong>Catering Options</strong></span> </span></td>\r\n</tr>\r\n<tr>\r\n<td><span style=\"font-size: 12pt;\"> <span style=\"font-size: 12pt;\">Breakfast (Continental)</span></span></td>\r\n<td><span style=\"font-size: 12pt;\"> <span style=\"font-size: 12pt;\"><strong>R 55</strong> per person</span></span></td>\r\n</tr>\r\n<tr>\r\n<td><span style=\"font-size: 12pt;\"> <span style=\"font-size: 12pt;\">Breakfast (Full English)</span></span></td>\r\n<td><span style=\"font-size: 12pt;\"> <span style=\"font-size: 12pt;\"><strong>R 95</strong> per person</span></span></td>\r\n</tr>\r\n<tr>\r\n<td><span style=\"font-size: 12pt;\"> <span style=\"font-size: 12pt;\">Light Lunch</span></span></td>\r\n<td><span style=\"font-size: 12pt;\">From <span style=\"font-size: 12pt;\"><strong>R 95 </strong>per person</span></span></td>\r\n</tr>\r\n<tr>\r\n<td><span style=\"font-size: 12pt;\"> <span style=\"font-size: 12pt;\">Dinners</span></span></td>\r\n<td><span style=\"font-size: 12pt;\">From <span style=\"font-size: 12pt;\"><strong>R 150 </strong>per person</span></span></td>\r\n</tr>\r\n<tr>\r\n<td></td>\r\n<td></td>\r\n</tr>\r\n<tr>\r\n<td><strong><span style=\"font-size: 12pt;\">Others</span></strong></td>\r\n<td></td>\r\n</tr>\r\n<tr>\r\n<td><span style=\"font-size: 12pt;\">Gate Remote</span></td>\r\n<td><span style=\"font-size: 12pt;\"><strong>R 200 </strong>deposit</span></td>\r\n</tr>\r\n<tr>\r\n<td><span style=\"font-size: 12pt;\">Gas Braai</span></td>\r\n<td><span style=\"font-size: 12pt;\"><strong>R 120 </strong>per day</span></td>\r\n</tr>\r\n<tr>\r\n<td><span style=\"font-size: 12pt;\">Day Visitors / Guests</span></td>\r\n<td><span style=\"font-size: 12pt;\"><strong>R 35 </strong>per person per day</span></td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n&nbsp;\r\n\r\n<hr />\r\n\r\n[/modal][button link=\"\" color=\"darkgreen\" size=\"\" type=\"\" shape=\"\" target=\"_self\" title=\"\" gradient_colors=\"|\" gradient_hover_colors=\"|\" accent_color=\"\" accent_hover_color=\"\" bevel_color=\"\" border_width=\"1px\" icon=\"\" icon_position=\"left\" icon_divider=\"no\" modal=\"rates\" animation_type=\"0\" animation_direction=\"left\" animation_speed=\"1\" alignment=\"\" class=\"\" id=\"\"]2015 RATES[/button][/two_fifth][/fullwidth][fullwidth background_color=\"#f0f0ed\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"20\" padding_bottom=\"20\" padding_left=\"0px\" padding_right=\"0px\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][one_half last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][fusion_text]\r\n<h3 style=\"text-align: justify;\">Set in the rolling peaks and valleys of a thousand hills surrounded by a canopy of indigenous trees, you will find that horses still have right of way, we certainly offer the best of both worlds, farm and charm coupled with modern amenities that will have you feeling relaxed and rejuvenated.</h3>\r\n<h3 style=\"text-align: justify;\">We know that sometimes you are searching for a romantic getaway or maybe a few days away with old friends. Other times you are searching for a place to host a weekend, family reunion or a business retreat. In addition to nightly room rentals, our lodge is also available for meetings, retreats  and makes the perfect place for a wedding party to stay together and get ready for the big day. Regardless, with our five comfortable and cozy guest bedrooms , multiple garden spaces and hideaways, and a  large private deck  where you can take a nap or read a book we definitely have the room for you!</h3>\r\n[/fusion_text][/one_half][one_half last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][fusion_text]\r\n<h3 style=\"text-align: justify;\">Our lodge has been in our family for years and has recently been beautifully renovated. Five rooms all with en-suite showers, tea/coffee making facilities, MNet and satellite television (DSTV) open Wi-Fi. Sumptuous meals are served on the bottom deck at the swimming pool. Barbecues, afternoon tea in the garden or picnic baskets  on request all add to the service that awaits you, Our lodge features a 50 foot high Apex ceiling, spacious living, dining and bar area including a fitted kitchenette all adding to a sense of homey comfort.</h3>\r\n<h3 style=\"text-align: justify;\">Be lulled to sleep by the sound of the waterfall  and tinkling stream just outside your window, waking from a peaceful night\'s sleep in a pillow-top bed dressed in luxurious linens to coddle you in ultimate comfort.</h3>\r\n<h3 style=\"text-align: justify;\">Our property boasts many different species of birds and animals. We have a resident otter, a family of wild bush pigs,  a family of rock rabbits, porcupine, little blue duikers, a variety of different frogs and an abundance of bird life, including the occasional snakes that pass through!</h3>\r\n<h3 style=\"text-align: justify;\">Evenings are quiet and peaceful taking you far away from the business of city life. This is a unique and memorable country experience. We look forward to having you as a guest!</h3>\r\n[/fusion_text][/one_half][/fullwidth][fullwidth background_color=\"#f0f0ed\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"20\" padding_bottom=\"20\" padding_left=\"0px\" padding_right=\"0px\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][fusion_text]\r\n<h1 style=\"text-align: center;\">Gallery</h1>\r\n[/fusion_text][separator style_type=\"single\" top_margin=\"\" bottom_margin=\"40\" sep_color=\"#000000\" border_size=\"\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"170px\" alignment=\"\" class=\"\" id=\"\"][one_sixth last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][/one_sixth][two_third last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][fusion_text]\r\n<h3 style=\"text-align: justify;\">The Lodge is open, spacious, comfortable and homely. During hot summer days, sit and bask in the sun on the deck  with one of our  picnic specials. In winter, snuggle up with a good book or challenge one another to a friendly board game in the glassed nook area .</h3>\r\n[/fusion_text][/two_third][one_sixth last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][/one_sixth][/fullwidth][fullwidth background_color=\"#f0f0ed\" background_image=\"http://localhost/assagaylodge/wp-content/uploads/2015/01/Wood_Texture.jpg\" background_parallax=\"fixed\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"30\" padding_bottom=\"10\" padding_left=\"0\" padding_right=\"0\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][recent_works layout=\"grid\" picture_size=\"auto\" boxed_text=\"unboxed\" filters=\"no\" columns=\"3\" column_spacing=\"12\" cat_slug=\"the-lodge\" exclude_cats=\"\" number_posts=\"9\" offset=\"\" excerpt_length=\"35\" strip_html=\"yes\" carousel_layout=\"title_on_rollover\" scroll_items=\"\" autoplay=\"no\" show_nav=\"yes\" mouse_scroll=\"no\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" class=\"\" id=\"\"][/recent_works][/fullwidth][fullwidth background_color=\"#f0f0ed\" background_image=\"\" background_parallax=\"fixed\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"20\" padding_bottom=\"20\" padding_left=\"0px\" padding_right=\"0px\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][fusion_text]\r\n<h1 style=\"text-align: center;\">BEDROOMS</h1>\r\n[/fusion_text][separator style_type=\"single\" top_margin=\"\" bottom_margin=\"20\" sep_color=\"#000000\" border_size=\"\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"170px\" alignment=\"\" class=\"\" id=\"\"][one_sixth last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][/one_sixth][two_third last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][fusion_text]\r\n<h3 style=\"text-align: justify;\">When it comes to our bedrooms we’re proud to say we offer something a little more special. One of five  lovingly and tastefully decorated guest rooms. Soft gray decor soothes the senses providing a peaceful, blissfully comfortable rest from your travels and hectic lives.</h3>\r\n<h3 style=\"text-align: justify;\">Our  bedrooms are spacious, clean, comfortable all en-suite, equipped with either king size or queen size beds. Each room sleeps two guests. The rooms have high ceilings, wall heaters &amp; ceiling fans. Beds all have electric blankets in Winter, 100% cotton percale sheets and thick hyper allergenic microfiber duvets and pillows. All guest rooms are cleaned with organic and green products. Amenities include hairdryers in each room. Three rooms feature King-sized beds  of which two can be  split into two single beds. Two  rooms can therefore be changed into a twin room upon request. Two rooms feature a Queen-sized double bed. These beds cannot be split into twin beds.</h3>\r\n[/fusion_text][/two_third][one_sixth last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][/one_sixth][/fullwidth][fullwidth background_color=\"\" background_image=\"http://localhost/assagaylodge/wp-content/uploads/2015/01/DSC01516-1148-x-764.jpg\" background_parallax=\"fixed\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"center center\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"20\" padding_bottom=\"20\" padding_left=\"0\" padding_right=\"0\" hundred_percent=\"no\" equal_height_columns=\"yes\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][recent_works layout=\"grid\" picture_size=\"auto\" boxed_text=\"unboxed\" filters=\"no\" columns=\"3\" column_spacing=\"12\" cat_slug=\"bedrooms\" exclude_cats=\"\" number_posts=\"6\" offset=\"\" excerpt_length=\"35\" strip_html=\"yes\" carousel_layout=\"title_on_rollover\" scroll_items=\"\" autoplay=\"no\" show_nav=\"yes\" mouse_scroll=\"no\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" class=\"\" id=\"\"][/recent_works][/fullwidth][fullwidth background_color=\"#f0f0ed\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"20\" padding_bottom=\"20\" padding_left=\"0\" padding_right=\"0\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][fusion_text]\r\n<h1 style=\"text-align: center;\">GARDENS</h1>\r\n[/fusion_text][separator style_type=\"single\" top_margin=\"\" bottom_margin=\"20\" sep_color=\"#000000\" border_size=\"\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"170px\" alignment=\"\" class=\"\" id=\"\"][one_sixth last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][/one_sixth][two_third last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][fusion_text]\r\n<h3 style=\"text-align: justify;\">The garden is large and offers many secluded spots to lose yourself in a book with a glass of wine underneath the shade of a tree, listening to the sounds of the birds and smelling the beautiful flowers.</h3>\r\n[/fusion_text][/two_third][one_sixth last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][/one_sixth][recent_works layout=\"grid\" picture_size=\"auto\" boxed_text=\"boxed\" filters=\"no\" columns=\"3\" column_spacing=\"12\" cat_slug=\"gardens\" exclude_cats=\"\" number_posts=\"9\" offset=\"\" excerpt_length=\"35\" strip_html=\"yes\" carousel_layout=\"title_on_rollover\" scroll_items=\"\" autoplay=\"no\" show_nav=\"yes\" mouse_scroll=\"no\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" class=\"\" id=\"\"][/recent_works][/fullwidth][fullwidth background_color=\"#ffffff\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"65px\" padding_bottom=\"65px\" padding_left=\"0px\" padding_right=\"0px\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][button link=\"http://localhost/assagaylodge/book-now/\" color=\"default\" size=\"xlarge\" type=\"3d\" shape=\"round\" target=\"_self\" title=\"\" gradient_colors=\"#f0f0ed|#f0f0ed\" gradient_hover_colors=\"#6666a4|#6666a4\" accent_color=\"#ffffff\" accent_hover_color=\"#ffffff\" bevel_color=\"\" border_width=\"0px\" icon=\"\" icon_position=\"left\" icon_divider=\"no\" modal=\"\" animation_type=\"0\" animation_direction=\"left\" animation_speed=\"1\" alignment=\"center\" class=\"\" id=\"\"]Make A Reservation Enquiry[/button][/fullwidth]', 'Home', '', 'inherit', 'closed', 'closed', '', '7-revision-v1', '', '', '2015-10-05 16:18:20', '2015-10-05 14:18:20', '', 7, 'http://localhost/assagaylodge/7-revision-v1/', 0, 'revision', '', 0),
(1149, 1, '2015-10-05 16:33:22', '2015-10-05 14:33:22', '', 'Rates & Tariffs', '', 'publish', 'closed', 'closed', '', '2015-rates', '', '', '2016-04-19 11:33:14', '2016-04-19 09:33:14', '', 0, 'http://localhost/assagaylodge/?p=1149', 1, 'nav_menu_item', '', 0);
INSERT INTO `wp_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(1151, 1, '2015-10-05 16:50:47', '2015-10-05 14:50:47', '[fusion_text]<table style=\"width: 100%;\" cellspacing=\"10\" cellpadding=\"5\">\r\n<tbody>\r\n<tr>\r\n<td colspan=\"2\"><span style=\"font-size: 10pt;\">ALL PRICES INCLUDE VAT<strong> </strong></span></td>\r\n</tr>\r\n<tr>\r\n<td colspan=\"2\"><span style=\"font-size: 12pt;\"><strong>Self-Catering / Self-Servicing Accommodation</strong></span></td>\r\n</tr>\r\n<tr>\r\n<td><span style=\"font-size: 12pt;\">Full House - Max 10 persons per lodge</span></td>\r\n<td><span style=\"font-size: 12pt;\"><strong>R3250</strong> per night (R325 per person)</span></td>\r\n</tr>\r\n<tr>\r\n<td><span style=\"font-size: 12pt;\">Single - Max 1 person per room</span></td>\r\n<td><span style=\"font-size: 12pt;\"><strong>R 650</strong> per person per night</span></td>\r\n</tr>\r\n<tr>\r\n<td><span style=\"font-size: 12pt;\">Sharing - Max 2 persons per room</span></td>\r\n<td><span style=\"font-size: 12pt;\"><strong>R 495</strong> per person per night</span></td>\r\n</tr>\r\n<tr>\r\n<td><span style=\"font-size: 12pt;\"> </span></td>\r\n<td><span style=\"font-size: 12pt;\"><strong> </strong></span></td>\r\n</tr>\r\n<tr>\r\n<td><strong><span style=\"font-size: 12pt;\">Servicing Options</span></strong></td>\r\n<td><span style=\"font-size: 12pt;\"><strong> </strong></span></td>\r\n</tr>\r\n<tr>\r\n<td><span style=\"font-size: 12pt;\">Lodge Only Servicing (Optional) </span></td>\r\n<td><span style=\"font-size: 12pt;\"><strong>R30</strong> per person per day - Max <span style=\"font-size: 12pt;\"><strong>R 150 </strong>per day</span></span></td>\r\n</tr>\r\n<tr>\r\n<td><span style=\"font-size: 12pt;\">Lodge &amp; Room Servicing (Optional) </span></td>\r\n<td><span style=\"font-size: 12pt;\"><strong>R50</strong> per person per day - Max <span style=\"font-size: 12pt;\"><strong>R 250 </strong>per day</span></span></td>\r\n</tr>\r\n<tr>\r\n<td><span style=\"font-size: 12pt;\"> </span></td>\r\n<td><span style=\"font-size: 12pt;\"><strong> </strong></span></td>\r\n</tr>\r\n<tr>\r\n<td colspan=\"2\"><span style=\"font-size: 12pt;\"><span style=\"font-size: 12pt;\"><strong>Catering Options</strong></span> </span><span style=\"font-size: 12pt;\"><strong> </strong></span></td>\r\n</tr>\r\n<tr>\r\n<td><span style=\"font-size: 12pt;\"> <span style=\"font-size: 12pt;\">Breakfast (Continental)</span></span></td>\r\n<td><span style=\"font-size: 12pt;\"><strong> </strong><span style=\"font-size: 12pt;\"><strong>R  55</strong> per person</span></span></td>\r\n</tr>\r\n<tr>\r\n<td><span style=\"font-size: 12pt;\"> <span style=\"font-size: 12pt;\">Breakfast (Full English)</span></span></td>\r\n<td><span style=\"font-size: 12pt;\"><strong> </strong><span style=\"font-size: 12pt;\"><strong>R  95</strong> per person</span></span></td>\r\n</tr>\r\n<tr>\r\n<td><span style=\"font-size: 12pt;\"> <span style=\"font-size: 12pt;\">Light Lunch</span></span></td>\r\n<td><span style=\"font-size: 12pt;\">From <span style=\"font-size: 12pt;\"><strong>R  95 </strong>per person</span></span></td>\r\n</tr>\r\n<tr>\r\n<td><span style=\"font-size: 12pt;\"> <span style=\"font-size: 12pt;\">Dinners</span></span></td>\r\n<td><span style=\"font-size: 12pt;\">From <span style=\"font-size: 12pt;\"><strong>R 150 </strong>per person</span></span></td>\r\n</tr>\r\n<tr>\r\n<td><span style=\"font-size: 12pt;\"> </span></td>\r\n<td><span style=\"font-size: 12pt;\"><strong> </strong></span></td>\r\n</tr>\r\n<tr>\r\n<td><strong><span style=\"font-size: 12pt;\">Others</span></strong></td>\r\n<td><span style=\"font-size: 12pt;\"><strong> </strong></span></td>\r\n</tr>\r\n<tr>\r\n<td><span style=\"font-size: 12pt;\">Gate Remote</span></td>\r\n<td><span style=\"font-size: 12pt;\"><strong>R 200 </strong>deposit</span></td>\r\n</tr>\r\n<tr>\r\n<td><span style=\"font-size: 12pt;\">Gas Braai</span></td>\r\n<td><span style=\"font-size: 12pt;\"><strong>R 120 </strong>per day</span></td>\r\n</tr>\r\n<tr>\r\n<td><span style=\"font-size: 12pt;\">Day Visitors / Guests</span></td>\r\n<td><span style=\"font-size: 12pt;\"><strong>R 35 </strong>per person per day</span></td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n&nbsp;\r\n\r\n<hr />[/fusion_text][modal name=\"rates\" title=\"2015 Rates\" size=\"large\" background=\"\" border_color=\"\" show_footer=\"yes\" class=\"\" id=\"\"]<table style=\"width: 100%;\" cellspacing=\"10\" cellpadding=\"5\">\r\n<tbody>\r\n<tr>\r\n<td colspan=\"2\"><span style=\"font-size: 10pt;\">ALL PRICES INCLUDE VAT </span></td>\r\n</tr>\r\n<tr>\r\n<td colspan=\"2\"><span style=\"font-size: 12pt;\"><strong>Self-Catering / Self-Servicing Accommodation</strong></span></td>\r\n</tr>\r\n<tr>\r\n<td><span style=\"font-size: 12pt;\">Full House - Max 10 persons per lodge</span></td>\r\n<td><span style=\"font-size: 12pt;\"><strong>R3250</strong> per night (R325 per person)</span></td>\r\n</tr>\r\n<tr>\r\n<td><span style=\"font-size: 12pt;\">Single - Max 1 person per room</span></td>\r\n<td><span style=\"font-size: 12pt;\"><strong>R 650</strong> per person per night</span></td>\r\n</tr>\r\n<tr>\r\n<td><span style=\"font-size: 12pt;\">Sharing - Max 2 persons per room</span></td>\r\n<td><span style=\"font-size: 12pt;\"><strong>R 495</strong> per person per night</span></td>\r\n</tr>\r\n<tr>\r\n<td></td>\r\n<td></td>\r\n</tr>\r\n<tr>\r\n<td><strong><span style=\"font-size: 12pt;\">Servicing Options</span></strong></td>\r\n<td></td>\r\n</tr>\r\n<tr>\r\n<td><span style=\"font-size: 12pt;\">Lodge Only Servicing (Optional) </span></td>\r\n<td><span style=\"font-size: 12pt;\"><strong>R30</strong> per person per day - Max <span style=\"font-size: 12pt;\"><strong>R 150 </strong>per day</span></span></td>\r\n</tr>\r\n<tr>\r\n<td><span style=\"font-size: 12pt;\">Lodge & Room Servicing (Optional) </span></td>\r\n<td><span style=\"font-size: 12pt;\"><strong>R50</strong> per person per day - Max <span style=\"font-size: 12pt;\"><strong>R 250 </strong>per day</span></span></td>\r\n</tr>\r\n<tr>\r\n<td></td>\r\n<td></td>\r\n</tr>\r\n<tr>\r\n<td colspan=\"2\"><span style=\"font-size: 12pt;\"><span style=\"font-size: 12pt;\"><strong>Catering Options</strong></span> </span></td>\r\n</tr>\r\n<tr>\r\n<td><span style=\"font-size: 12pt;\"> <span style=\"font-size: 12pt;\">Breakfast (Continental)</span></span></td>\r\n<td><span style=\"font-size: 12pt;\"> <span style=\"font-size: 12pt;\"><strong>R 55</strong> per person</span></span></td>\r\n</tr>\r\n<tr>\r\n<td><span style=\"font-size: 12pt;\"> <span style=\"font-size: 12pt;\">Breakfast (Full English)</span></span></td>\r\n<td><span style=\"font-size: 12pt;\"> <span style=\"font-size: 12pt;\"><strong>R 95</strong> per person</span></span></td>\r\n</tr>\r\n<tr>\r\n<td><span style=\"font-size: 12pt;\"> <span style=\"font-size: 12pt;\">Light Lunch</span></span></td>\r\n<td><span style=\"font-size: 12pt;\">From <span style=\"font-size: 12pt;\"><strong>R 95 </strong>per person</span></span></td>\r\n</tr>\r\n<tr>\r\n<td><span style=\"font-size: 12pt;\"> <span style=\"font-size: 12pt;\">Dinners</span></span></td>\r\n<td><span style=\"font-size: 12pt;\">From <span style=\"font-size: 12pt;\"><strong>R 150 </strong>per person</span></span></td>\r\n</tr>\r\n<tr>\r\n<td></td>\r\n<td></td>\r\n</tr>\r\n<tr>\r\n<td><strong><span style=\"font-size: 12pt;\">Others</span></strong></td>\r\n<td></td>\r\n</tr>\r\n<tr>\r\n<td><span style=\"font-size: 12pt;\">Gate Remote</span></td>\r\n<td><span style=\"font-size: 12pt;\"><strong>R 200 </strong>deposit</span></td>\r\n</tr>\r\n<tr>\r\n<td><span style=\"font-size: 12pt;\">Gas Braai</span></td>\r\n<td><span style=\"font-size: 12pt;\"><strong>R 120 </strong>per day</span></td>\r\n</tr>\r\n<tr>\r\n<td><span style=\"font-size: 12pt;\">Day Visitors / Guests</span></td>\r\n<td><span style=\"font-size: 12pt;\"><strong>R 35 </strong>per person per day</span></td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n<hr />\r\n[/modal]', 'Rates', '', 'inherit', 'closed', 'closed', '', '1121-revision-v1', '', '', '2015-10-05 16:50:47', '2015-10-05 14:50:47', '', 1121, 'http://localhost/assagaylodge/1121-revision-v1/', 0, 'revision', '', 0),
(1152, 1, '2015-10-05 17:03:01', '2015-10-05 15:03:01', '[fusion_text]\r\n<table style=\"width: 100%;\" cellspacing=\"10\" cellpadding=\"5\">\r\n<tbody>\r\n<tr>\r\n<td colspan=\"2\"><span style=\"font-size: 10pt;\">ALL PRICES INCLUDE VAT<strong> </strong></span></td>\r\n</tr>\r\n<tr>\r\n<td colspan=\"2\"><span style=\"font-size: 12pt;\"><strong>Self-Catering / Self-Servicing Accommodation</strong></span></td>\r\n</tr>\r\n<tr>\r\n<td><span style=\"font-size: 12pt;\">Full House - Max 10 persons per lodge</span></td>\r\n<td><span style=\"font-size: 12pt;\"><strong>R3250</strong> per night (R325 per person)</span></td>\r\n</tr>\r\n<tr>\r\n<td><span style=\"font-size: 12pt;\">Single - Max 1 person per room</span></td>\r\n<td><span style=\"font-size: 12pt;\"><strong>R 650</strong> per person per night</span></td>\r\n</tr>\r\n<tr>\r\n<td><span style=\"font-size: 12pt;\">Sharing - Max 2 persons per room</span></td>\r\n<td><span style=\"font-size: 12pt;\"><strong>R 495</strong> per person per night</span></td>\r\n</tr>\r\n<tr>\r\n<td><span style=\"font-size: 12pt;\"> </span></td>\r\n<td><span style=\"font-size: 12pt;\"><strong> </strong></span></td>\r\n</tr>\r\n<tr>\r\n<td><strong><span style=\"font-size: 12pt;\">Servicing Options</span></strong></td>\r\n<td><span style=\"font-size: 12pt;\"><strong> </strong></span></td>\r\n</tr>\r\n<tr>\r\n<td><span style=\"font-size: 12pt;\">Lodge Only Servicing (Optional) </span></td>\r\n<td><span style=\"font-size: 12pt;\"><strong>R30</strong> per person per day - Max <span style=\"font-size: 12pt;\"><strong>R 150 </strong>per day</span></span></td>\r\n</tr>\r\n<tr>\r\n<td><span style=\"font-size: 12pt;\">Lodge &amp; Room Servicing (Optional) </span></td>\r\n<td><span style=\"font-size: 12pt;\"><strong>R50</strong> per person per day - Max <span style=\"font-size: 12pt;\"><strong>R 250 </strong>per day</span></span></td>\r\n</tr>\r\n<tr>\r\n<td><span style=\"font-size: 12pt;\"> </span></td>\r\n<td><span style=\"font-size: 12pt;\"><strong> </strong></span></td>\r\n</tr>\r\n<tr>\r\n<td colspan=\"2\"><span style=\"font-size: 12pt;\"><span style=\"font-size: 12pt;\"><strong>Catering Options</strong></span> </span><span style=\"font-size: 12pt;\"><strong> </strong></span></td>\r\n</tr>\r\n<tr>\r\n<td><span style=\"font-size: 12pt;\"> <span style=\"font-size: 12pt;\">Breakfast (Continental)</span></span></td>\r\n<td><span style=\"font-size: 12pt;\"><strong> </strong><span style=\"font-size: 12pt;\"><strong>R  55</strong> per person</span></span></td>\r\n</tr>\r\n<tr>\r\n<td><span style=\"font-size: 12pt;\"> <span style=\"font-size: 12pt;\">Breakfast (Full English)</span></span></td>\r\n<td><span style=\"font-size: 12pt;\"><strong> </strong><span style=\"font-size: 12pt;\"><strong>R  95</strong> per person</span></span></td>\r\n</tr>\r\n<tr>\r\n<td><span style=\"font-size: 12pt;\"> <span style=\"font-size: 12pt;\">Light Lunch</span></span></td>\r\n<td><span style=\"font-size: 12pt;\">From <span style=\"font-size: 12pt;\"><strong>R  95 </strong>per person</span></span></td>\r\n</tr>\r\n<tr>\r\n<td><span style=\"font-size: 12pt;\"> <span style=\"font-size: 12pt;\">Dinners</span></span></td>\r\n<td><span style=\"font-size: 12pt;\">From <span style=\"font-size: 12pt;\"><strong>R 150 </strong>per person</span></span></td>\r\n</tr>\r\n<tr>\r\n<td><span style=\"font-size: 12pt;\"> </span></td>\r\n<td><span style=\"font-size: 12pt;\"><strong> </strong></span></td>\r\n</tr>\r\n<tr>\r\n<td><strong><span style=\"font-size: 12pt;\">Others</span></strong></td>\r\n<td><span style=\"font-size: 12pt;\"><strong> </strong></span></td>\r\n</tr>\r\n<tr>\r\n<td><span style=\"font-size: 12pt;\">Gate Remote</span></td>\r\n<td><span style=\"font-size: 12pt;\"><strong>R 200 </strong>deposit</span></td>\r\n</tr>\r\n<tr>\r\n<td><span style=\"font-size: 12pt;\">Gas Braai</span></td>\r\n<td><span style=\"font-size: 12pt;\"><strong>R 120 </strong>per day</span></td>\r\n</tr>\r\n<tr>\r\n<td><span style=\"font-size: 12pt;\">Day Visitors / Guests</span></td>\r\n<td><span style=\"font-size: 12pt;\"><strong>R 35 </strong>per person per day</span></td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n&nbsp;\r\n\r\n<hr />\r\n\r\n[/fusion_text][modal name=\"rates\" title=\"2015 Rates\" size=\"large\" background=\"\" border_color=\"\" show_footer=\"yes\" class=\"\" id=\"\"]\r\n<table style=\"width: 100%;\" cellspacing=\"10\" cellpadding=\"5\">\r\n<tbody>\r\n<tr>\r\n<td colspan=\"2\"><span style=\"font-size: 10pt;\">ALL PRICES INCLUDE VAT </span></td>\r\n</tr>\r\n<tr>\r\n<td colspan=\"2\"><span style=\"font-size: 12pt;\"><strong>Self-Catering / Self-Servicing Accommodation</strong></span></td>\r\n</tr>\r\n<tr>\r\n<td><span style=\"font-size: 12pt;\">Full House - Max 10 persons per lodge</span></td>\r\n<td><span style=\"font-size: 12pt;\"><strong>R3250</strong> per night (R325 per person)</span></td>\r\n</tr>\r\n<tr>\r\n<td><span style=\"font-size: 12pt;\">Single - Max 1 person per room</span></td>\r\n<td><span style=\"font-size: 12pt;\"><strong>R 650</strong> per person per night</span></td>\r\n</tr>\r\n<tr>\r\n<td><span style=\"font-size: 12pt;\">Sharing - Max 2 persons per room</span></td>\r\n<td><span style=\"font-size: 12pt;\"><strong>R 495</strong> per person per night</span></td>\r\n</tr>\r\n<tr>\r\n<td></td>\r\n<td></td>\r\n</tr>\r\n<tr>\r\n<td><strong><span style=\"font-size: 12pt;\">Servicing Options</span></strong></td>\r\n<td></td>\r\n</tr>\r\n<tr>\r\n<td><span style=\"font-size: 12pt;\">Lodge Only Servicing (Optional) </span></td>\r\n<td><span style=\"font-size: 12pt;\"><strong>R30</strong> per person per day - Max <span style=\"font-size: 12pt;\"><strong>R 150 </strong>per day</span></span></td>\r\n</tr>\r\n<tr>\r\n<td><span style=\"font-size: 12pt;\">Lodge &amp; Room Servicing (Optional) </span></td>\r\n<td><span style=\"font-size: 12pt;\"><strong>R50</strong> per person per day - Max <span style=\"font-size: 12pt;\"><strong>R 250 </strong>per day</span></span></td>\r\n</tr>\r\n<tr>\r\n<td></td>\r\n<td></td>\r\n</tr>\r\n<tr>\r\n<td colspan=\"2\"><span style=\"font-size: 12pt;\"><span style=\"font-size: 12pt;\"><strong>Catering Options</strong></span> </span></td>\r\n</tr>\r\n<tr>\r\n<td><span style=\"font-size: 12pt;\"> <span style=\"font-size: 12pt;\">Breakfast (Continental)</span></span></td>\r\n<td><span style=\"font-size: 12pt;\"> <span style=\"font-size: 12pt;\"><strong>R 55</strong> per person</span></span></td>\r\n</tr>\r\n<tr>\r\n<td><span style=\"font-size: 12pt;\"> <span style=\"font-size: 12pt;\">Breakfast (Full English)</span></span></td>\r\n<td><span style=\"font-size: 12pt;\"> <span style=\"font-size: 12pt;\"><strong>R 95</strong> per person</span></span></td>\r\n</tr>\r\n<tr>\r\n<td><span style=\"font-size: 12pt;\"> <span style=\"font-size: 12pt;\">Light Lunch</span></span></td>\r\n<td><span style=\"font-size: 12pt;\">From <span style=\"font-size: 12pt;\"><strong>R 95 </strong>per person</span></span></td>\r\n</tr>\r\n<tr>\r\n<td><span style=\"font-size: 12pt;\"> <span style=\"font-size: 12pt;\">Dinners</span></span></td>\r\n<td><span style=\"font-size: 12pt;\">From <span style=\"font-size: 12pt;\"><strong>R 150 </strong>per person</span></span></td>\r\n</tr>\r\n<tr>\r\n<td></td>\r\n<td></td>\r\n</tr>\r\n<tr>\r\n<td><strong><span style=\"font-size: 12pt;\">Others</span></strong></td>\r\n<td></td>\r\n</tr>\r\n<tr>\r\n<td><span style=\"font-size: 12pt;\">Gate Remote</span></td>\r\n<td><span style=\"font-size: 12pt;\"><strong>R 200 </strong>deposit</span></td>\r\n</tr>\r\n<tr>\r\n<td><span style=\"font-size: 12pt;\">Gas Braai</span></td>\r\n<td><span style=\"font-size: 12pt;\"><strong>R 120 </strong>per day</span></td>\r\n</tr>\r\n<tr>\r\n<td><span style=\"font-size: 12pt;\">Day Visitors / Guests</span></td>\r\n<td><span style=\"font-size: 12pt;\"><strong>R 35 </strong>per person per day</span></td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n\r\n<hr />\r\n\r\n[/modal]', 'Rates', '', 'inherit', 'closed', 'closed', '', '1121-revision-v1', '', '', '2015-10-05 17:03:01', '2015-10-05 15:03:01', '', 1121, 'http://localhost/assagaylodge/1121-revision-v1/', 0, 'revision', '', 0),
(1153, 1, '2015-10-05 17:06:09', '2015-10-05 15:06:09', '[fusion_text]\r\n<table style=\"width: 100%;\" cellspacing=\"10\" cellpadding=\"5\">\r\n<tbody>\r\n<tr>\r\n<td colspan=\"2\"><span style=\"font-size: 10pt;\">ALL PRICES INCLUDE VAT<strong> </strong></span></td>\r\n</tr>\r\n<tr>\r\n<td colspan=\"2\"><span style=\"font-size: 12pt;\"><strong>Self-Catering / Self-Servicing Accommodation</strong></span></td>\r\n</tr>\r\n<tr>\r\n<td><span style=\"font-size: 12pt;\">Full House - Max 10 persons per lodge</span></td>\r\n<td><span style=\"font-size: 12pt;\"><strong>R3250</strong> per night (R325 per person)</span></td>\r\n</tr>\r\n<tr>\r\n<td><span style=\"font-size: 12pt;\">Single - Max 1 person per room</span></td>\r\n<td><span style=\"font-size: 12pt;\"><strong>R 650</strong> per person per night</span></td>\r\n</tr>\r\n<tr>\r\n<td><span style=\"font-size: 12pt;\">Sharing - Max 2 persons per room</span></td>\r\n<td><span style=\"font-size: 12pt;\"><strong>R 495</strong> per person per night</span></td>\r\n</tr>\r\n<tr>\r\n<td><span style=\"font-size: 12pt;\"> </span></td>\r\n<td><span style=\"font-size: 12pt;\"><strong> </strong></span></td>\r\n</tr>\r\n<tr>\r\n<td><strong><span style=\"font-size: 12pt;\">Servicing Options</span></strong></td>\r\n<td><span style=\"font-size: 12pt;\"><strong> </strong></span></td>\r\n</tr>\r\n<tr>\r\n<td><span style=\"font-size: 12pt;\">Lodge Only Servicing (Optional) </span></td>\r\n<td><span style=\"font-size: 12pt;\"><strong>R30</strong> per person per day - Max <span style=\"font-size: 12pt;\"><strong>R 150 </strong>per day</span></span></td>\r\n</tr>\r\n<tr>\r\n<td><span style=\"font-size: 12pt;\">Lodge &amp; Room Servicing (Optional) </span></td>\r\n<td><span style=\"font-size: 12pt;\"><strong>R50</strong> per person per day - Max <span style=\"font-size: 12pt;\"><strong>R 250 </strong>per day</span></span></td>\r\n</tr>\r\n<tr>\r\n<td><span style=\"font-size: 12pt;\"> </span></td>\r\n<td><span style=\"font-size: 12pt;\"><strong> </strong></span></td>\r\n</tr>\r\n<tr>\r\n<td colspan=\"2\"><span style=\"font-size: 12pt;\"><span style=\"font-size: 12pt;\"><strong>Catering Options</strong></span> </span><span style=\"font-size: 12pt;\"><strong> </strong></span></td>\r\n</tr>\r\n<tr>\r\n<td><span style=\"font-size: 12pt;\"> <span style=\"font-size: 12pt;\">Breakfast (Continental)</span></span></td>\r\n<td><span style=\"font-size: 12pt;\"><strong> </strong><span style=\"font-size: 12pt;\"><strong>R  55</strong> per person</span></span></td>\r\n</tr>\r\n<tr>\r\n<td><span style=\"font-size: 12pt;\"> <span style=\"font-size: 12pt;\">Breakfast (Full English)</span></span></td>\r\n<td><span style=\"font-size: 12pt;\"><strong> </strong><span style=\"font-size: 12pt;\"><strong>R  95</strong> per person</span></span></td>\r\n</tr>\r\n<tr>\r\n<td><span style=\"font-size: 12pt;\"> <span style=\"font-size: 12pt;\">Light Lunch</span></span></td>\r\n<td><span style=\"font-size: 12pt;\">From <span style=\"font-size: 12pt;\"><strong>R  95 </strong>per person</span></span></td>\r\n</tr>\r\n<tr>\r\n<td><span style=\"font-size: 12pt;\"> <span style=\"font-size: 12pt;\">Dinners</span></span></td>\r\n<td><span style=\"font-size: 12pt;\">From <span style=\"font-size: 12pt;\"><strong>R 150 </strong>per person</span></span></td>\r\n</tr>\r\n<tr>\r\n<td><span style=\"font-size: 12pt;\"> </span></td>\r\n<td><span style=\"font-size: 12pt;\"><strong> </strong></span></td>\r\n</tr>\r\n<tr>\r\n<td><strong><span style=\"font-size: 12pt;\">Others</span></strong></td>\r\n<td><span style=\"font-size: 12pt;\"><strong> </strong></span></td>\r\n</tr>\r\n<tr>\r\n<td><span style=\"font-size: 12pt;\">Gate Remote</span></td>\r\n<td><span style=\"font-size: 12pt;\"><strong>R 200 </strong>deposit</span></td>\r\n</tr>\r\n<tr>\r\n<td><span style=\"font-size: 12pt;\">Gas Braai</span></td>\r\n<td><span style=\"font-size: 12pt;\"><strong>R 120 </strong>per day</span></td>\r\n</tr>\r\n<tr>\r\n<td><span style=\"font-size: 12pt;\">Day Visitors / Guests</span></td>\r\n<td><span style=\"font-size: 12pt;\"><strong>R 35 </strong>per person per day</span></td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n&nbsp;\r\n\r\n<hr />\r\n\r\n[/fusion_text][modal name=\"rates\" title=\"2015 Rates\" size=\"large\" background=\"\" border_color=\"\" show_footer=\"yes\" class=\"\" id=\"\"]\r\n<table style=\"width: 100%;\" cellspacing=\"10\" cellpadding=\"5\">\r\n<tbody>\r\n<tr>\r\n<td colspan=\"2\"><span style=\"font-size: 10pt;\">ALL PRICES INCLUDE VAT </span></td>\r\n</tr>\r\n<tr>\r\n<td colspan=\"2\"><span style=\"font-size: 12pt;\"><strong>Self-Catering / Self-Servicing Accommodation</strong></span></td>\r\n</tr>\r\n<tr>\r\n<td><span style=\"font-size: 12pt;\">Full House - Max 10 persons per lodge</span></td>\r\n<td><span style=\"font-size: 12pt;\"><strong>R3250</strong> per night (R325 per person)</span></td>\r\n</tr>\r\n<tr>\r\n<td><span style=\"font-size: 12pt;\">Single - Max 1 person per room</span></td>\r\n<td><span style=\"font-size: 12pt;\"><strong>R 650</strong> per person per night</span></td>\r\n</tr>\r\n<tr>\r\n<td><span style=\"font-size: 12pt;\">Sharing - Max 2 persons per room</span></td>\r\n<td><span style=\"font-size: 12pt;\"><strong>R 495</strong> per person per night</span></td>\r\n</tr>\r\n<tr>\r\n<td></td>\r\n<td></td>\r\n</tr>\r\n<tr>\r\n<td><strong><span style=\"font-size: 12pt;\">Servicing Options</span></strong></td>\r\n<td></td>\r\n</tr>\r\n<tr>\r\n<td><span style=\"font-size: 12pt;\">Lodge Only Servicing (Optional) </span></td>\r\n<td><span style=\"font-size: 12pt;\"><strong>R30</strong> per person per day - Max <span style=\"font-size: 12pt;\"><strong>R 150 </strong>per day</span></span></td>\r\n</tr>\r\n<tr>\r\n<td><span style=\"font-size: 12pt;\">Lodge &amp; Room Servicing (Optional) </span></td>\r\n<td><span style=\"font-size: 12pt;\"><strong>R50</strong> per person per day - Max <span style=\"font-size: 12pt;\"><strong>R 250 </strong>per day</span></span></td>\r\n</tr>\r\n<tr>\r\n<td></td>\r\n<td></td>\r\n</tr>\r\n<tr>\r\n<td colspan=\"2\"><span style=\"font-size: 12pt;\"><span style=\"font-size: 12pt;\"><strong>Catering Options</strong></span> </span></td>\r\n</tr>\r\n<tr>\r\n<td><span style=\"font-size: 12pt;\"> <span style=\"font-size: 12pt;\">Breakfast (Continental)</span></span></td>\r\n<td><span style=\"font-size: 12pt;\"> <span style=\"font-size: 12pt;\"><strong>R 55</strong> per person</span></span></td>\r\n</tr>\r\n<tr>\r\n<td><span style=\"font-size: 12pt;\"> <span style=\"font-size: 12pt;\">Breakfast (Full English)</span></span></td>\r\n<td><span style=\"font-size: 12pt;\"> <span style=\"font-size: 12pt;\"><strong>R 95</strong> per person</span></span></td>\r\n</tr>\r\n<tr>\r\n<td><span style=\"font-size: 12pt;\"> <span style=\"font-size: 12pt;\">Light Lunch</span></span></td>\r\n<td><span style=\"font-size: 12pt;\">From <span style=\"font-size: 12pt;\"><strong>R 95 </strong>per person</span></span></td>\r\n</tr>\r\n<tr>\r\n<td><span style=\"font-size: 12pt;\"> <span style=\"font-size: 12pt;\">Dinners</span></span></td>\r\n<td><span style=\"font-size: 12pt;\">From <span style=\"font-size: 12pt;\"><strong>R 150 </strong>per person</span></span></td>\r\n</tr>\r\n<tr>\r\n<td></td>\r\n<td></td>\r\n</tr>\r\n<tr>\r\n<td><strong><span style=\"font-size: 12pt;\">Others</span></strong></td>\r\n<td></td>\r\n</tr>\r\n<tr>\r\n<td><span style=\"font-size: 12pt;\">Gate Remote</span></td>\r\n<td><span style=\"font-size: 12pt;\"><strong>R 200 </strong>deposit</span></td>\r\n</tr>\r\n<tr>\r\n<td><span style=\"font-size: 12pt;\">Gas Braai</span></td>\r\n<td><span style=\"font-size: 12pt;\"><strong>R 120 </strong>per day</span></td>\r\n</tr>\r\n<tr>\r\n<td><span style=\"font-size: 12pt;\">Day Visitors / Guests</span></td>\r\n<td><span style=\"font-size: 12pt;\"><strong>R 35 </strong>per person per day</span></td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n\r\n<hr />\r\n\r\n[/modal][button link=\"\" color=\"default\" size=\"\"  type=\"\" shape=\"\" target=\"_self\" title=\"\" gradient_colors=\"|\" gradient_hover_colors=\"|\" accent_color=\"\" accent_hover_color=\"\" bevel_color=\"\" border_width=\"1px\" icon=\"\" icon_position=\"left\" icon_divider=\"no\" modal=\"rates\" animation_type=\"0\" animation_direction=\"left\" animation_speed=\"1\" alignment=\"\" class=\"\" id=\"\"]Click here![/button]', 'Rates', '', 'inherit', 'closed', 'closed', '', '1121-revision-v1', '', '', '2015-10-05 17:06:09', '2015-10-05 15:06:09', '', 1121, 'http://localhost/assagaylodge/1121-revision-v1/', 0, 'revision', '', 0),
(1154, 1, '2015-10-05 17:09:42', '2015-10-05 15:09:42', '[fusion_text]<div id=\"crayon-561290280ca64695180501-1\" class=\"crayon-line\"><span class=\"crayon-sy\">[</span><span class=\"crayon-e\">modal_text_link </span><span class=\"crayon-v\">name</span><span class=\"crayon-o\">=</span><span class=\"crayon-s\">\"\"</span> <span class=\"crayon-t\">class</span><span class=\"crayon-o\">=</span><span class=\"crayon-s\">\"\"</span> <span class=\"crayon-v\">id</span><span class=\"crayon-o\">=</span><span class=\"crayon-s\">\"\"</span><span class=\"crayon-sy\">]</span><span class=\"crayon-e\">Your </span><span class=\"crayon-e\">Content </span><span class=\"crayon-e\">Goes </span><span class=\"crayon-v\">Here</span><span class=\"crayon-sy\">[</span><span class=\"crayon-o\">/</span><span class=\"crayon-v\">modal_text_link</span><span class=\"crayon-sy\">]</span></div>[/fusion_text][fusion_text]\r\n<table style=\"width: 100%;\" cellspacing=\"10\" cellpadding=\"5\">\r\n<tbody>\r\n<tr>\r\n<td colspan=\"2\"><span style=\"font-size: 10pt;\">ALL PRICES INCLUDE VAT<strong> </strong></span></td>\r\n</tr>\r\n<tr>\r\n<td colspan=\"2\"><span style=\"font-size: 12pt;\"><strong>Self-Catering / Self-Servicing Accommodation</strong></span></td>\r\n</tr>\r\n<tr>\r\n<td><span style=\"font-size: 12pt;\">Full House - Max 10 persons per lodge</span></td>\r\n<td><span style=\"font-size: 12pt;\"><strong>R3250</strong> per night (R325 per person)</span></td>\r\n</tr>\r\n<tr>\r\n<td><span style=\"font-size: 12pt;\">Single - Max 1 person per room</span></td>\r\n<td><span style=\"font-size: 12pt;\"><strong>R 650</strong> per person per night</span></td>\r\n</tr>\r\n<tr>\r\n<td><span style=\"font-size: 12pt;\">Sharing - Max 2 persons per room</span></td>\r\n<td><span style=\"font-size: 12pt;\"><strong>R 495</strong> per person per night</span></td>\r\n</tr>\r\n<tr>\r\n<td><span style=\"font-size: 12pt;\"> </span></td>\r\n<td><span style=\"font-size: 12pt;\"><strong> </strong></span></td>\r\n</tr>\r\n<tr>\r\n<td><strong><span style=\"font-size: 12pt;\">Servicing Options</span></strong></td>\r\n<td><span style=\"font-size: 12pt;\"><strong> </strong></span></td>\r\n</tr>\r\n<tr>\r\n<td><span style=\"font-size: 12pt;\">Lodge Only Servicing (Optional) </span></td>\r\n<td><span style=\"font-size: 12pt;\"><strong>R30</strong> per person per day - Max <span style=\"font-size: 12pt;\"><strong>R 150 </strong>per day</span></span></td>\r\n</tr>\r\n<tr>\r\n<td><span style=\"font-size: 12pt;\">Lodge &amp; Room Servicing (Optional) </span></td>\r\n<td><span style=\"font-size: 12pt;\"><strong>R50</strong> per person per day - Max <span style=\"font-size: 12pt;\"><strong>R 250 </strong>per day</span></span></td>\r\n</tr>\r\n<tr>\r\n<td><span style=\"font-size: 12pt;\"> </span></td>\r\n<td><span style=\"font-size: 12pt;\"><strong> </strong></span></td>\r\n</tr>\r\n<tr>\r\n<td colspan=\"2\"><span style=\"font-size: 12pt;\"><span style=\"font-size: 12pt;\"><strong>Catering Options</strong></span> </span><span style=\"font-size: 12pt;\"><strong> </strong></span></td>\r\n</tr>\r\n<tr>\r\n<td><span style=\"font-size: 12pt;\"> <span style=\"font-size: 12pt;\">Breakfast (Continental)</span></span></td>\r\n<td><span style=\"font-size: 12pt;\"><strong> </strong><span style=\"font-size: 12pt;\"><strong>R  55</strong> per person</span></span></td>\r\n</tr>\r\n<tr>\r\n<td><span style=\"font-size: 12pt;\"> <span style=\"font-size: 12pt;\">Breakfast (Full English)</span></span></td>\r\n<td><span style=\"font-size: 12pt;\"><strong> </strong><span style=\"font-size: 12pt;\"><strong>R  95</strong> per person</span></span></td>\r\n</tr>\r\n<tr>\r\n<td><span style=\"font-size: 12pt;\"> <span style=\"font-size: 12pt;\">Light Lunch</span></span></td>\r\n<td><span style=\"font-size: 12pt;\">From <span style=\"font-size: 12pt;\"><strong>R  95 </strong>per person</span></span></td>\r\n</tr>\r\n<tr>\r\n<td><span style=\"font-size: 12pt;\"> <span style=\"font-size: 12pt;\">Dinners</span></span></td>\r\n<td><span style=\"font-size: 12pt;\">From <span style=\"font-size: 12pt;\"><strong>R 150 </strong>per person</span></span></td>\r\n</tr>\r\n<tr>\r\n<td><span style=\"font-size: 12pt;\"> </span></td>\r\n<td><span style=\"font-size: 12pt;\"><strong> </strong></span></td>\r\n</tr>\r\n<tr>\r\n<td><strong><span style=\"font-size: 12pt;\">Others</span></strong></td>\r\n<td><span style=\"font-size: 12pt;\"><strong> </strong></span></td>\r\n</tr>\r\n<tr>\r\n<td><span style=\"font-size: 12pt;\">Gate Remote</span></td>\r\n<td><span style=\"font-size: 12pt;\"><strong>R 200 </strong>deposit</span></td>\r\n</tr>\r\n<tr>\r\n<td><span style=\"font-size: 12pt;\">Gas Braai</span></td>\r\n<td><span style=\"font-size: 12pt;\"><strong>R 120 </strong>per day</span></td>\r\n</tr>\r\n<tr>\r\n<td><span style=\"font-size: 12pt;\">Day Visitors / Guests</span></td>\r\n<td><span style=\"font-size: 12pt;\"><strong>R 35 </strong>per person per day</span></td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n&nbsp;\r\n\r\n<hr />\r\n\r\n[/fusion_text][modal name=\"rates\" title=\"2015 Rates\" size=\"large\" background=\"\" border_color=\"\" show_footer=\"yes\" class=\"\" id=\"\"]\r\n<table style=\"width: 100%;\" cellspacing=\"10\" cellpadding=\"5\">\r\n<tbody>\r\n<tr>\r\n<td colspan=\"2\"><span style=\"font-size: 10pt;\">ALL PRICES INCLUDE VAT </span></td>\r\n</tr>\r\n<tr>\r\n<td colspan=\"2\"><span style=\"font-size: 12pt;\"><strong>Self-Catering / Self-Servicing Accommodation</strong></span></td>\r\n</tr>\r\n<tr>\r\n<td><span style=\"font-size: 12pt;\">Full House - Max 10 persons per lodge</span></td>\r\n<td><span style=\"font-size: 12pt;\"><strong>R3250</strong> per night (R325 per person)</span></td>\r\n</tr>\r\n<tr>\r\n<td><span style=\"font-size: 12pt;\">Single - Max 1 person per room</span></td>\r\n<td><span style=\"font-size: 12pt;\"><strong>R 650</strong> per person per night</span></td>\r\n</tr>\r\n<tr>\r\n<td><span style=\"font-size: 12pt;\">Sharing - Max 2 persons per room</span></td>\r\n<td><span style=\"font-size: 12pt;\"><strong>R 495</strong> per person per night</span></td>\r\n</tr>\r\n<tr>\r\n<td></td>\r\n<td></td>\r\n</tr>\r\n<tr>\r\n<td><strong><span style=\"font-size: 12pt;\">Servicing Options</span></strong></td>\r\n<td></td>\r\n</tr>\r\n<tr>\r\n<td><span style=\"font-size: 12pt;\">Lodge Only Servicing (Optional) </span></td>\r\n<td><span style=\"font-size: 12pt;\"><strong>R30</strong> per person per day - Max <span style=\"font-size: 12pt;\"><strong>R 150 </strong>per day</span></span></td>\r\n</tr>\r\n<tr>\r\n<td><span style=\"font-size: 12pt;\">Lodge &amp; Room Servicing (Optional) </span></td>\r\n<td><span style=\"font-size: 12pt;\"><strong>R50</strong> per person per day - Max <span style=\"font-size: 12pt;\"><strong>R 250 </strong>per day</span></span></td>\r\n</tr>\r\n<tr>\r\n<td></td>\r\n<td></td>\r\n</tr>\r\n<tr>\r\n<td colspan=\"2\"><span style=\"font-size: 12pt;\"><span style=\"font-size: 12pt;\"><strong>Catering Options</strong></span> </span></td>\r\n</tr>\r\n<tr>\r\n<td><span style=\"font-size: 12pt;\"> <span style=\"font-size: 12pt;\">Breakfast (Continental)</span></span></td>\r\n<td><span style=\"font-size: 12pt;\"> <span style=\"font-size: 12pt;\"><strong>R 55</strong> per person</span></span></td>\r\n</tr>\r\n<tr>\r\n<td><span style=\"font-size: 12pt;\"> <span style=\"font-size: 12pt;\">Breakfast (Full English)</span></span></td>\r\n<td><span style=\"font-size: 12pt;\"> <span style=\"font-size: 12pt;\"><strong>R 95</strong> per person</span></span></td>\r\n</tr>\r\n<tr>\r\n<td><span style=\"font-size: 12pt;\"> <span style=\"font-size: 12pt;\">Light Lunch</span></span></td>\r\n<td><span style=\"font-size: 12pt;\">From <span style=\"font-size: 12pt;\"><strong>R 95 </strong>per person</span></span></td>\r\n</tr>\r\n<tr>\r\n<td><span style=\"font-size: 12pt;\"> <span style=\"font-size: 12pt;\">Dinners</span></span></td>\r\n<td><span style=\"font-size: 12pt;\">From <span style=\"font-size: 12pt;\"><strong>R 150 </strong>per person</span></span></td>\r\n</tr>\r\n<tr>\r\n<td></td>\r\n<td></td>\r\n</tr>\r\n<tr>\r\n<td><strong><span style=\"font-size: 12pt;\">Others</span></strong></td>\r\n<td></td>\r\n</tr>\r\n<tr>\r\n<td><span style=\"font-size: 12pt;\">Gate Remote</span></td>\r\n<td><span style=\"font-size: 12pt;\"><strong>R 200 </strong>deposit</span></td>\r\n</tr>\r\n<tr>\r\n<td><span style=\"font-size: 12pt;\">Gas Braai</span></td>\r\n<td><span style=\"font-size: 12pt;\"><strong>R 120 </strong>per day</span></td>\r\n</tr>\r\n<tr>\r\n<td><span style=\"font-size: 12pt;\">Day Visitors / Guests</span></td>\r\n<td><span style=\"font-size: 12pt;\"><strong>R 35 </strong>per person per day</span></td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n\r\n<hr />\r\n\r\n[/modal][button link=\"\" color=\"default\" size=\"\"  type=\"\" shape=\"\" target=\"_self\" title=\"\" gradient_colors=\"|\" gradient_hover_colors=\"|\" accent_color=\"\" accent_hover_color=\"\" bevel_color=\"\" border_width=\"1px\" icon=\"\" icon_position=\"left\" icon_divider=\"no\" modal=\"rates\" animation_type=\"0\" animation_direction=\"left\" animation_speed=\"1\" alignment=\"\" class=\"\" id=\"\"]Click here![/button]', 'Rates', '', 'inherit', 'closed', 'closed', '', '1121-revision-v1', '', '', '2015-10-05 17:09:42', '2015-10-05 15:09:42', '', 1121, 'http://localhost/assagaylodge/1121-revision-v1/', 0, 'revision', '', 0),
(1155, 1, '2015-10-05 17:11:25', '2015-10-05 15:11:25', '[fusion_code]W21vZGFsX3RleHRfbGluayBuYW1lPSIiIGNsYXNzPSIiIGlkPSIiXVlvdXIgQ29udGVudCBHb2VzIEhlcmVbL21vZGFsX3RleHRfbGlua10=[/fusion_code][fusion_text]\r\n<table style=\"width: 100%;\" cellspacing=\"10\" cellpadding=\"5\">\r\n<tbody>\r\n<tr>\r\n<td colspan=\"2\"><span style=\"font-size: 10pt;\">ALL PRICES INCLUDE VAT<strong> </strong></span></td>\r\n</tr>\r\n<tr>\r\n<td colspan=\"2\"><span style=\"font-size: 12pt;\"><strong>Self-Catering / Self-Servicing Accommodation</strong></span></td>\r\n</tr>\r\n<tr>\r\n<td><span style=\"font-size: 12pt;\">Full House - Max 10 persons per lodge</span></td>\r\n<td><span style=\"font-size: 12pt;\"><strong>R3250</strong> per night (R325 per person)</span></td>\r\n</tr>\r\n<tr>\r\n<td><span style=\"font-size: 12pt;\">Single - Max 1 person per room</span></td>\r\n<td><span style=\"font-size: 12pt;\"><strong>R 650</strong> per person per night</span></td>\r\n</tr>\r\n<tr>\r\n<td><span style=\"font-size: 12pt;\">Sharing - Max 2 persons per room</span></td>\r\n<td><span style=\"font-size: 12pt;\"><strong>R 495</strong> per person per night</span></td>\r\n</tr>\r\n<tr>\r\n<td><span style=\"font-size: 12pt;\"> </span></td>\r\n<td><span style=\"font-size: 12pt;\"><strong> </strong></span></td>\r\n</tr>\r\n<tr>\r\n<td><strong><span style=\"font-size: 12pt;\">Servicing Options</span></strong></td>\r\n<td><span style=\"font-size: 12pt;\"><strong> </strong></span></td>\r\n</tr>\r\n<tr>\r\n<td><span style=\"font-size: 12pt;\">Lodge Only Servicing (Optional) </span></td>\r\n<td><span style=\"font-size: 12pt;\"><strong>R30</strong> per person per day - Max <span style=\"font-size: 12pt;\"><strong>R 150 </strong>per day</span></span></td>\r\n</tr>\r\n<tr>\r\n<td><span style=\"font-size: 12pt;\">Lodge &amp; Room Servicing (Optional) </span></td>\r\n<td><span style=\"font-size: 12pt;\"><strong>R50</strong> per person per day - Max <span style=\"font-size: 12pt;\"><strong>R 250 </strong>per day</span></span></td>\r\n</tr>\r\n<tr>\r\n<td><span style=\"font-size: 12pt;\"> </span></td>\r\n<td><span style=\"font-size: 12pt;\"><strong> </strong></span></td>\r\n</tr>\r\n<tr>\r\n<td colspan=\"2\"><span style=\"font-size: 12pt;\"><span style=\"font-size: 12pt;\"><strong>Catering Options</strong></span> </span><span style=\"font-size: 12pt;\"><strong> </strong></span></td>\r\n</tr>\r\n<tr>\r\n<td><span style=\"font-size: 12pt;\"> <span style=\"font-size: 12pt;\">Breakfast (Continental)</span></span></td>\r\n<td><span style=\"font-size: 12pt;\"><strong> </strong><span style=\"font-size: 12pt;\"><strong>R  55</strong> per person</span></span></td>\r\n</tr>\r\n<tr>\r\n<td><span style=\"font-size: 12pt;\"> <span style=\"font-size: 12pt;\">Breakfast (Full English)</span></span></td>\r\n<td><span style=\"font-size: 12pt;\"><strong> </strong><span style=\"font-size: 12pt;\"><strong>R  95</strong> per person</span></span></td>\r\n</tr>\r\n<tr>\r\n<td><span style=\"font-size: 12pt;\"> <span style=\"font-size: 12pt;\">Light Lunch</span></span></td>\r\n<td><span style=\"font-size: 12pt;\">From <span style=\"font-size: 12pt;\"><strong>R  95 </strong>per person</span></span></td>\r\n</tr>\r\n<tr>\r\n<td><span style=\"font-size: 12pt;\"> <span style=\"font-size: 12pt;\">Dinners</span></span></td>\r\n<td><span style=\"font-size: 12pt;\">From <span style=\"font-size: 12pt;\"><strong>R 150 </strong>per person</span></span></td>\r\n</tr>\r\n<tr>\r\n<td><span style=\"font-size: 12pt;\"> </span></td>\r\n<td><span style=\"font-size: 12pt;\"><strong> </strong></span></td>\r\n</tr>\r\n<tr>\r\n<td><strong><span style=\"font-size: 12pt;\">Others</span></strong></td>\r\n<td><span style=\"font-size: 12pt;\"><strong> </strong></span></td>\r\n</tr>\r\n<tr>\r\n<td><span style=\"font-size: 12pt;\">Gate Remote</span></td>\r\n<td><span style=\"font-size: 12pt;\"><strong>R 200 </strong>deposit</span></td>\r\n</tr>\r\n<tr>\r\n<td><span style=\"font-size: 12pt;\">Gas Braai</span></td>\r\n<td><span style=\"font-size: 12pt;\"><strong>R 120 </strong>per day</span></td>\r\n</tr>\r\n<tr>\r\n<td><span style=\"font-size: 12pt;\">Day Visitors / Guests</span></td>\r\n<td><span style=\"font-size: 12pt;\"><strong>R 35 </strong>per person per day</span></td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n&nbsp;\r\n\r\n<hr />\r\n\r\n[/fusion_text][modal name=\"rates\" title=\"2015 Rates\" size=\"large\" background=\"\" border_color=\"\" show_footer=\"yes\" class=\"\" id=\"\"]\r\n<table style=\"width: 100%;\" cellspacing=\"10\" cellpadding=\"5\">\r\n<tbody>\r\n<tr>\r\n<td colspan=\"2\"><span style=\"font-size: 10pt;\">ALL PRICES INCLUDE VAT </span></td>\r\n</tr>\r\n<tr>\r\n<td colspan=\"2\"><span style=\"font-size: 12pt;\"><strong>Self-Catering / Self-Servicing Accommodation</strong></span></td>\r\n</tr>\r\n<tr>\r\n<td><span style=\"font-size: 12pt;\">Full House - Max 10 persons per lodge</span></td>\r\n<td><span style=\"font-size: 12pt;\"><strong>R3250</strong> per night (R325 per person)</span></td>\r\n</tr>\r\n<tr>\r\n<td><span style=\"font-size: 12pt;\">Single - Max 1 person per room</span></td>\r\n<td><span style=\"font-size: 12pt;\"><strong>R 650</strong> per person per night</span></td>\r\n</tr>\r\n<tr>\r\n<td><span style=\"font-size: 12pt;\">Sharing - Max 2 persons per room</span></td>\r\n<td><span style=\"font-size: 12pt;\"><strong>R 495</strong> per person per night</span></td>\r\n</tr>\r\n<tr>\r\n<td></td>\r\n<td></td>\r\n</tr>\r\n<tr>\r\n<td><strong><span style=\"font-size: 12pt;\">Servicing Options</span></strong></td>\r\n<td></td>\r\n</tr>\r\n<tr>\r\n<td><span style=\"font-size: 12pt;\">Lodge Only Servicing (Optional) </span></td>\r\n<td><span style=\"font-size: 12pt;\"><strong>R30</strong> per person per day - Max <span style=\"font-size: 12pt;\"><strong>R 150 </strong>per day</span></span></td>\r\n</tr>\r\n<tr>\r\n<td><span style=\"font-size: 12pt;\">Lodge &amp; Room Servicing (Optional) </span></td>\r\n<td><span style=\"font-size: 12pt;\"><strong>R50</strong> per person per day - Max <span style=\"font-size: 12pt;\"><strong>R 250 </strong>per day</span></span></td>\r\n</tr>\r\n<tr>\r\n<td></td>\r\n<td></td>\r\n</tr>\r\n<tr>\r\n<td colspan=\"2\"><span style=\"font-size: 12pt;\"><span style=\"font-size: 12pt;\"><strong>Catering Options</strong></span> </span></td>\r\n</tr>\r\n<tr>\r\n<td><span style=\"font-size: 12pt;\"> <span style=\"font-size: 12pt;\">Breakfast (Continental)</span></span></td>\r\n<td><span style=\"font-size: 12pt;\"> <span style=\"font-size: 12pt;\"><strong>R 55</strong> per person</span></span></td>\r\n</tr>\r\n<tr>\r\n<td><span style=\"font-size: 12pt;\"> <span style=\"font-size: 12pt;\">Breakfast (Full English)</span></span></td>\r\n<td><span style=\"font-size: 12pt;\"> <span style=\"font-size: 12pt;\"><strong>R 95</strong> per person</span></span></td>\r\n</tr>\r\n<tr>\r\n<td><span style=\"font-size: 12pt;\"> <span style=\"font-size: 12pt;\">Light Lunch</span></span></td>\r\n<td><span style=\"font-size: 12pt;\">From <span style=\"font-size: 12pt;\"><strong>R 95 </strong>per person</span></span></td>\r\n</tr>\r\n<tr>\r\n<td><span style=\"font-size: 12pt;\"> <span style=\"font-size: 12pt;\">Dinners</span></span></td>\r\n<td><span style=\"font-size: 12pt;\">From <span style=\"font-size: 12pt;\"><strong>R 150 </strong>per person</span></span></td>\r\n</tr>\r\n<tr>\r\n<td></td>\r\n<td></td>\r\n</tr>\r\n<tr>\r\n<td><strong><span style=\"font-size: 12pt;\">Others</span></strong></td>\r\n<td></td>\r\n</tr>\r\n<tr>\r\n<td><span style=\"font-size: 12pt;\">Gate Remote</span></td>\r\n<td><span style=\"font-size: 12pt;\"><strong>R 200 </strong>deposit</span></td>\r\n</tr>\r\n<tr>\r\n<td><span style=\"font-size: 12pt;\">Gas Braai</span></td>\r\n<td><span style=\"font-size: 12pt;\"><strong>R 120 </strong>per day</span></td>\r\n</tr>\r\n<tr>\r\n<td><span style=\"font-size: 12pt;\">Day Visitors / Guests</span></td>\r\n<td><span style=\"font-size: 12pt;\"><strong>R 35 </strong>per person per day</span></td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n\r\n<hr />\r\n\r\n[/modal][button link=\"\" color=\"default\" size=\"\" type=\"\" shape=\"\" target=\"_self\" title=\"\" gradient_colors=\"|\" gradient_hover_colors=\"|\" accent_color=\"\" accent_hover_color=\"\" bevel_color=\"\" border_width=\"1px\" icon=\"\" icon_position=\"left\" icon_divider=\"no\" modal=\"rates\" animation_type=\"0\" animation_direction=\"left\" animation_speed=\"1\" alignment=\"\" class=\"\" id=\"\"]Click here![/button]', 'Rates', '', 'inherit', 'closed', 'closed', '', '1121-revision-v1', '', '', '2015-10-05 17:11:25', '2015-10-05 15:11:25', '', 1121, 'http://localhost/assagaylodge/1121-revision-v1/', 0, 'revision', '', 0);
INSERT INTO `wp_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(1156, 1, '2015-10-05 17:12:19', '2015-10-05 15:12:19', '<div id=\"crayon-561290280ca64695180501-1\" class=\"crayon-line\"><span class=\"crayon-sy\">[</span><span class=\"crayon-e\">modal_text_link </span><span class=\"crayon-v\">name</span><span class=\"crayon-o\">=</span><span class=\"crayon-s\">\"\"</span> <span class=\"crayon-t\">class</span><span class=\"crayon-o\">=</span><span class=\"crayon-s\">\"\"</span> <span class=\"crayon-v\">id</span><span class=\"crayon-o\">=</span><span class=\"crayon-s\">\"\"</span><span class=\"crayon-sy\">]</span><span class=\"crayon-e\">Your </span><span class=\"crayon-e\">Content </span><span class=\"crayon-e\">Goes </span><span class=\"crayon-v\">Here</span><span class=\"crayon-sy\">[</span><span class=\"crayon-o\">/</span><span class=\"crayon-v\">modal_text_link</span><span class=\"crayon-sy\">]</span></div>\r\n<div class=\"crayon-line\"></div>\r\n<table style=\"width: 100%;\" cellspacing=\"10\" cellpadding=\"5\">\r\n<tbody>\r\n<tr>\r\n<td colspan=\"2\"><span style=\"font-size: 10pt;\">ALL PRICES INCLUDE VAT<strong> </strong></span></td>\r\n</tr>\r\n<tr>\r\n<td colspan=\"2\"><span style=\"font-size: 12pt;\"><strong>Self-Catering / Self-Servicing Accommodation</strong></span></td>\r\n</tr>\r\n<tr>\r\n<td><span style=\"font-size: 12pt;\">Full House - Max 10 persons per lodge</span></td>\r\n<td><span style=\"font-size: 12pt;\"><strong>R3250</strong> per night (R325 per person)</span></td>\r\n</tr>\r\n<tr>\r\n<td><span style=\"font-size: 12pt;\">Single - Max 1 person per room</span></td>\r\n<td><span style=\"font-size: 12pt;\"><strong>R 650</strong> per person per night</span></td>\r\n</tr>\r\n<tr>\r\n<td><span style=\"font-size: 12pt;\">Sharing - Max 2 persons per room</span></td>\r\n<td><span style=\"font-size: 12pt;\"><strong>R 495</strong> per person per night</span></td>\r\n</tr>\r\n<tr>\r\n<td><span style=\"font-size: 12pt;\"> </span></td>\r\n<td><span style=\"font-size: 12pt;\"><strong> </strong></span></td>\r\n</tr>\r\n<tr>\r\n<td><strong><span style=\"font-size: 12pt;\">Servicing Options</span></strong></td>\r\n<td><span style=\"font-size: 12pt;\"><strong> </strong></span></td>\r\n</tr>\r\n<tr>\r\n<td><span style=\"font-size: 12pt;\">Lodge Only Servicing (Optional) </span></td>\r\n<td><span style=\"font-size: 12pt;\"><strong>R30</strong> per person per day - Max <span style=\"font-size: 12pt;\"><strong>R 150 </strong>per day</span></span></td>\r\n</tr>\r\n<tr>\r\n<td><span style=\"font-size: 12pt;\">Lodge &amp; Room Servicing (Optional) </span></td>\r\n<td><span style=\"font-size: 12pt;\"><strong>R50</strong> per person per day - Max <span style=\"font-size: 12pt;\"><strong>R 250 </strong>per day</span></span></td>\r\n</tr>\r\n<tr>\r\n<td><span style=\"font-size: 12pt;\"> </span></td>\r\n<td><span style=\"font-size: 12pt;\"><strong> </strong></span></td>\r\n</tr>\r\n<tr>\r\n<td colspan=\"2\"><span style=\"font-size: 12pt;\"><span style=\"font-size: 12pt;\"><strong>Catering Options</strong></span> </span><span style=\"font-size: 12pt;\"><strong> </strong></span></td>\r\n</tr>\r\n<tr>\r\n<td><span style=\"font-size: 12pt;\"> <span style=\"font-size: 12pt;\">Breakfast (Continental)</span></span></td>\r\n<td><span style=\"font-size: 12pt;\"><strong> </strong><span style=\"font-size: 12pt;\"><strong>R  55</strong> per person</span></span></td>\r\n</tr>\r\n<tr>\r\n<td><span style=\"font-size: 12pt;\"> <span style=\"font-size: 12pt;\">Breakfast (Full English)</span></span></td>\r\n<td><span style=\"font-size: 12pt;\"><strong> </strong><span style=\"font-size: 12pt;\"><strong>R  95</strong> per person</span></span></td>\r\n</tr>\r\n<tr>\r\n<td><span style=\"font-size: 12pt;\"> <span style=\"font-size: 12pt;\">Light Lunch</span></span></td>\r\n<td><span style=\"font-size: 12pt;\">From <span style=\"font-size: 12pt;\"><strong>R  95 </strong>per person</span></span></td>\r\n</tr>\r\n<tr>\r\n<td><span style=\"font-size: 12pt;\"> <span style=\"font-size: 12pt;\">Dinners</span></span></td>\r\n<td><span style=\"font-size: 12pt;\">From <span style=\"font-size: 12pt;\"><strong>R 150 </strong>per person</span></span></td>\r\n</tr>\r\n<tr>\r\n<td><span style=\"font-size: 12pt;\"> </span></td>\r\n<td><span style=\"font-size: 12pt;\"><strong> </strong></span></td>\r\n</tr>\r\n<tr>\r\n<td><strong><span style=\"font-size: 12pt;\">Others</span></strong></td>\r\n<td><span style=\"font-size: 12pt;\"><strong> </strong></span></td>\r\n</tr>\r\n<tr>\r\n<td><span style=\"font-size: 12pt;\">Gate Remote</span></td>\r\n<td><span style=\"font-size: 12pt;\"><strong>R 200 </strong>deposit</span></td>\r\n</tr>\r\n<tr>\r\n<td><span style=\"font-size: 12pt;\">Gas Braai</span></td>\r\n<td><span style=\"font-size: 12pt;\"><strong>R 120 </strong>per day</span></td>\r\n</tr>\r\n<tr>\r\n<td><span style=\"font-size: 12pt;\">Day Visitors / Guests</span></td>\r\n<td><span style=\"font-size: 12pt;\"><strong>R 35 </strong>per person per day</span></td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n&nbsp;\r\n\r\n<hr />\r\n\r\n[/fusion_text][modal name=\"rates\" title=\"2015 Rates\" size=\"large\" background=\"\" border_color=\"\" show_footer=\"yes\" class=\"\" id=\"\"]\r\n<table style=\"width: 100%;\" cellspacing=\"10\" cellpadding=\"5\">\r\n<tbody>\r\n<tr>\r\n<td colspan=\"2\"><span style=\"font-size: 10pt;\">ALL PRICES INCLUDE VAT </span></td>\r\n</tr>\r\n<tr>\r\n<td colspan=\"2\"><span style=\"font-size: 12pt;\"><strong>Self-Catering / Self-Servicing Accommodation</strong></span></td>\r\n</tr>\r\n<tr>\r\n<td><span style=\"font-size: 12pt;\">Full House - Max 10 persons per lodge</span></td>\r\n<td><span style=\"font-size: 12pt;\"><strong>R3250</strong> per night (R325 per person)</span></td>\r\n</tr>\r\n<tr>\r\n<td><span style=\"font-size: 12pt;\">Single - Max 1 person per room</span></td>\r\n<td><span style=\"font-size: 12pt;\"><strong>R 650</strong> per person per night</span></td>\r\n</tr>\r\n<tr>\r\n<td><span style=\"font-size: 12pt;\">Sharing - Max 2 persons per room</span></td>\r\n<td><span style=\"font-size: 12pt;\"><strong>R 495</strong> per person per night</span></td>\r\n</tr>\r\n<tr>\r\n<td></td>\r\n<td></td>\r\n</tr>\r\n<tr>\r\n<td><strong><span style=\"font-size: 12pt;\">Servicing Options</span></strong></td>\r\n<td></td>\r\n</tr>\r\n<tr>\r\n<td><span style=\"font-size: 12pt;\">Lodge Only Servicing (Optional) </span></td>\r\n<td><span style=\"font-size: 12pt;\"><strong>R30</strong> per person per day - Max <span style=\"font-size: 12pt;\"><strong>R 150 </strong>per day</span></span></td>\r\n</tr>\r\n<tr>\r\n<td><span style=\"font-size: 12pt;\">Lodge &amp; Room Servicing (Optional) </span></td>\r\n<td><span style=\"font-size: 12pt;\"><strong>R50</strong> per person per day - Max <span style=\"font-size: 12pt;\"><strong>R 250 </strong>per day</span></span></td>\r\n</tr>\r\n<tr>\r\n<td></td>\r\n<td></td>\r\n</tr>\r\n<tr>\r\n<td colspan=\"2\"><span style=\"font-size: 12pt;\"><span style=\"font-size: 12pt;\"><strong>Catering Options</strong></span> </span></td>\r\n</tr>\r\n<tr>\r\n<td><span style=\"font-size: 12pt;\"> <span style=\"font-size: 12pt;\">Breakfast (Continental)</span></span></td>\r\n<td><span style=\"font-size: 12pt;\"> <span style=\"font-size: 12pt;\"><strong>R 55</strong> per person</span></span></td>\r\n</tr>\r\n<tr>\r\n<td><span style=\"font-size: 12pt;\"> <span style=\"font-size: 12pt;\">Breakfast (Full English)</span></span></td>\r\n<td><span style=\"font-size: 12pt;\"> <span style=\"font-size: 12pt;\"><strong>R 95</strong> per person</span></span></td>\r\n</tr>\r\n<tr>\r\n<td><span style=\"font-size: 12pt;\"> <span style=\"font-size: 12pt;\">Light Lunch</span></span></td>\r\n<td><span style=\"font-size: 12pt;\">From <span style=\"font-size: 12pt;\"><strong>R 95 </strong>per person</span></span></td>\r\n</tr>\r\n<tr>\r\n<td><span style=\"font-size: 12pt;\"> <span style=\"font-size: 12pt;\">Dinners</span></span></td>\r\n<td><span style=\"font-size: 12pt;\">From <span style=\"font-size: 12pt;\"><strong>R 150 </strong>per person</span></span></td>\r\n</tr>\r\n<tr>\r\n<td></td>\r\n<td></td>\r\n</tr>\r\n<tr>\r\n<td><strong><span style=\"font-size: 12pt;\">Others</span></strong></td>\r\n<td></td>\r\n</tr>\r\n<tr>\r\n<td><span style=\"font-size: 12pt;\">Gate Remote</span></td>\r\n<td><span style=\"font-size: 12pt;\"><strong>R 200 </strong>deposit</span></td>\r\n</tr>\r\n<tr>\r\n<td><span style=\"font-size: 12pt;\">Gas Braai</span></td>\r\n<td><span style=\"font-size: 12pt;\"><strong>R 120 </strong>per day</span></td>\r\n</tr>\r\n<tr>\r\n<td><span style=\"font-size: 12pt;\">Day Visitors / Guests</span></td>\r\n<td><span style=\"font-size: 12pt;\"><strong>R 35 </strong>per person per day</span></td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n\r\n<hr />\r\n\r\n[/modal][button link=\"\" color=\"default\" size=\"\" type=\"\" shape=\"\" target=\"_self\" title=\"\" gradient_colors=\"|\" gradient_hover_colors=\"|\" accent_color=\"\" accent_hover_color=\"\" bevel_color=\"\" border_width=\"1px\" icon=\"\" icon_position=\"left\" icon_divider=\"no\" modal=\"rates\" animation_type=\"0\" animation_direction=\"left\" animation_speed=\"1\" alignment=\"\" class=\"\" id=\"\"]Click here![/button]', 'Rates', '', 'inherit', 'closed', 'closed', '', '1121-revision-v1', '', '', '2015-10-05 17:12:19', '2015-10-05 15:12:19', '', 1121, 'http://localhost/assagaylodge/1121-revision-v1/', 0, 'revision', '', 0),
(1157, 1, '2015-10-05 17:15:04', '2015-10-05 15:15:04', '[fusion_text]\r\n<table style=\"width: 100%;\" cellspacing=\"10\" cellpadding=\"5\">\r\n<tbody>\r\n<tr>\r\n<td colspan=\"2\"><span style=\"font-size: 10pt;\">ALL PRICES INCLUDE VAT<strong> </strong></span></td>\r\n</tr>\r\n<tr>\r\n<td colspan=\"2\"><span style=\"font-size: 12pt;\"><strong>Self-Catering / Self-Servicing Accommodation</strong></span></td>\r\n</tr>\r\n<tr>\r\n<td><span style=\"font-size: 12pt;\">Full House - Max 10 persons per lodge</span></td>\r\n<td><span style=\"font-size: 12pt;\"><strong>R3250</strong> per night (R325 per person)</span></td>\r\n</tr>\r\n<tr>\r\n<td><span style=\"font-size: 12pt;\">Single - Max 1 person per room</span></td>\r\n<td><span style=\"font-size: 12pt;\"><strong>R 650</strong> per person per night</span></td>\r\n</tr>\r\n<tr>\r\n<td><span style=\"font-size: 12pt;\">Sharing - Max 2 persons per room</span></td>\r\n<td><span style=\"font-size: 12pt;\"><strong>R 495</strong> per person per night</span></td>\r\n</tr>\r\n<tr>\r\n<td><span style=\"font-size: 12pt;\"> </span></td>\r\n<td><span style=\"font-size: 12pt;\"><strong> </strong></span></td>\r\n</tr>\r\n<tr>\r\n<td><strong><span style=\"font-size: 12pt;\">Servicing Options</span></strong></td>\r\n<td><span style=\"font-size: 12pt;\"><strong> </strong></span></td>\r\n</tr>\r\n<tr>\r\n<td><span style=\"font-size: 12pt;\">Lodge Only Servicing (Optional) </span></td>\r\n<td><span style=\"font-size: 12pt;\"><strong>R30</strong> per person per day - Max <span style=\"font-size: 12pt;\"><strong>R 150 </strong>per day</span></span></td>\r\n</tr>\r\n<tr>\r\n<td><span style=\"font-size: 12pt;\">Lodge &amp; Room Servicing (Optional) </span></td>\r\n<td><span style=\"font-size: 12pt;\"><strong>R50</strong> per person per day - Max <span style=\"font-size: 12pt;\"><strong>R 250 </strong>per day</span></span></td>\r\n</tr>\r\n<tr>\r\n<td><span style=\"font-size: 12pt;\"> </span></td>\r\n<td><span style=\"font-size: 12pt;\"><strong> </strong></span></td>\r\n</tr>\r\n<tr>\r\n<td colspan=\"2\"><span style=\"font-size: 12pt;\"><span style=\"font-size: 12pt;\"><strong>Catering Options</strong></span> </span><span style=\"font-size: 12pt;\"><strong> </strong></span></td>\r\n</tr>\r\n<tr>\r\n<td><span style=\"font-size: 12pt;\"> <span style=\"font-size: 12pt;\">Breakfast (Continental)</span></span></td>\r\n<td><span style=\"font-size: 12pt;\"><strong> </strong><span style=\"font-size: 12pt;\"><strong>R  55</strong> per person</span></span></td>\r\n</tr>\r\n<tr>\r\n<td><span style=\"font-size: 12pt;\"> <span style=\"font-size: 12pt;\">Breakfast (Full English)</span></span></td>\r\n<td><span style=\"font-size: 12pt;\"><strong> </strong><span style=\"font-size: 12pt;\"><strong>R  95</strong> per person</span></span></td>\r\n</tr>\r\n<tr>\r\n<td><span style=\"font-size: 12pt;\"> <span style=\"font-size: 12pt;\">Light Lunch</span></span></td>\r\n<td><span style=\"font-size: 12pt;\">From <span style=\"font-size: 12pt;\"><strong>R  95 </strong>per person</span></span></td>\r\n</tr>\r\n<tr>\r\n<td><span style=\"font-size: 12pt;\"> <span style=\"font-size: 12pt;\">Dinners</span></span></td>\r\n<td><span style=\"font-size: 12pt;\">From <span style=\"font-size: 12pt;\"><strong>R 150 </strong>per person</span></span></td>\r\n</tr>\r\n<tr>\r\n<td><span style=\"font-size: 12pt;\"> </span></td>\r\n<td><span style=\"font-size: 12pt;\"><strong> </strong></span></td>\r\n</tr>\r\n<tr>\r\n<td><strong><span style=\"font-size: 12pt;\">Others</span></strong></td>\r\n<td><span style=\"font-size: 12pt;\"><strong> </strong></span></td>\r\n</tr>\r\n<tr>\r\n<td><span style=\"font-size: 12pt;\">Gate Remote</span></td>\r\n<td><span style=\"font-size: 12pt;\"><strong>R 200 </strong>deposit</span></td>\r\n</tr>\r\n<tr>\r\n<td><span style=\"font-size: 12pt;\">Gas Braai</span></td>\r\n<td><span style=\"font-size: 12pt;\"><strong>R 120 </strong>per day</span></td>\r\n</tr>\r\n<tr>\r\n<td><span style=\"font-size: 12pt;\">Day Visitors / Guests</span></td>\r\n<td><span style=\"font-size: 12pt;\"><strong>R 35 </strong>per person per day</span></td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n&nbsp;\r\n\r\n<hr />\r\n\r\n[/fusion_text][modal name=\"rates\" title=\"2015 Rates\" size=\"large\" background=\"\" border_color=\"\" show_footer=\"yes\" class=\"\" id=\"\"]\r\n<table style=\"width: 100%;\" cellspacing=\"10\" cellpadding=\"5\">\r\n<tbody>\r\n<tr>\r\n<td colspan=\"2\"><span style=\"font-size: 10pt;\">ALL PRICES INCLUDE VAT </span></td>\r\n</tr>\r\n<tr>\r\n<td colspan=\"2\"><span style=\"font-size: 12pt;\"><strong>Self-Catering / Self-Servicing Accommodation</strong></span></td>\r\n</tr>\r\n<tr>\r\n<td><span style=\"font-size: 12pt;\">Full House - Max 10 persons per lodge</span></td>\r\n<td><span style=\"font-size: 12pt;\"><strong>R3250</strong> per night (R325 per person)</span></td>\r\n</tr>\r\n<tr>\r\n<td><span style=\"font-size: 12pt;\">Single - Max 1 person per room</span></td>\r\n<td><span style=\"font-size: 12pt;\"><strong>R 650</strong> per person per night</span></td>\r\n</tr>\r\n<tr>\r\n<td><span style=\"font-size: 12pt;\">Sharing - Max 2 persons per room</span></td>\r\n<td><span style=\"font-size: 12pt;\"><strong>R 495</strong> per person per night</span></td>\r\n</tr>\r\n<tr>\r\n<td></td>\r\n<td></td>\r\n</tr>\r\n<tr>\r\n<td><strong><span style=\"font-size: 12pt;\">Servicing Options</span></strong></td>\r\n<td></td>\r\n</tr>\r\n<tr>\r\n<td><span style=\"font-size: 12pt;\">Lodge Only Servicing (Optional) </span></td>\r\n<td><span style=\"font-size: 12pt;\"><strong>R30</strong> per person per day - Max <span style=\"font-size: 12pt;\"><strong>R 150 </strong>per day</span></span></td>\r\n</tr>\r\n<tr>\r\n<td><span style=\"font-size: 12pt;\">Lodge &amp; Room Servicing (Optional) </span></td>\r\n<td><span style=\"font-size: 12pt;\"><strong>R50</strong> per person per day - Max <span style=\"font-size: 12pt;\"><strong>R 250 </strong>per day</span></span></td>\r\n</tr>\r\n<tr>\r\n<td></td>\r\n<td></td>\r\n</tr>\r\n<tr>\r\n<td colspan=\"2\"><span style=\"font-size: 12pt;\"><span style=\"font-size: 12pt;\"><strong>Catering Options</strong></span> </span></td>\r\n</tr>\r\n<tr>\r\n<td><span style=\"font-size: 12pt;\"> <span style=\"font-size: 12pt;\">Breakfast (Continental)</span></span></td>\r\n<td><span style=\"font-size: 12pt;\"> <span style=\"font-size: 12pt;\"><strong>R 55</strong> per person</span></span></td>\r\n</tr>\r\n<tr>\r\n<td><span style=\"font-size: 12pt;\"> <span style=\"font-size: 12pt;\">Breakfast (Full English)</span></span></td>\r\n<td><span style=\"font-size: 12pt;\"> <span style=\"font-size: 12pt;\"><strong>R 95</strong> per person</span></span></td>\r\n</tr>\r\n<tr>\r\n<td><span style=\"font-size: 12pt;\"> <span style=\"font-size: 12pt;\">Light Lunch</span></span></td>\r\n<td><span style=\"font-size: 12pt;\">From <span style=\"font-size: 12pt;\"><strong>R 95 </strong>per person</span></span></td>\r\n</tr>\r\n<tr>\r\n<td><span style=\"font-size: 12pt;\"> <span style=\"font-size: 12pt;\">Dinners</span></span></td>\r\n<td><span style=\"font-size: 12pt;\">From <span style=\"font-size: 12pt;\"><strong>R 150 </strong>per person</span></span></td>\r\n</tr>\r\n<tr>\r\n<td></td>\r\n<td></td>\r\n</tr>\r\n<tr>\r\n<td><strong><span style=\"font-size: 12pt;\">Others</span></strong></td>\r\n<td></td>\r\n</tr>\r\n<tr>\r\n<td><span style=\"font-size: 12pt;\">Gate Remote</span></td>\r\n<td><span style=\"font-size: 12pt;\"><strong>R 200 </strong>deposit</span></td>\r\n</tr>\r\n<tr>\r\n<td><span style=\"font-size: 12pt;\">Gas Braai</span></td>\r\n<td><span style=\"font-size: 12pt;\"><strong>R 120 </strong>per day</span></td>\r\n</tr>\r\n<tr>\r\n<td><span style=\"font-size: 12pt;\">Day Visitors / Guests</span></td>\r\n<td><span style=\"font-size: 12pt;\"><strong>R 35 </strong>per person per day</span></td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n\r\n<hr />\r\n\r\n[/modal][button link=\"\" color=\"default\" size=\"\" type=\"\" shape=\"\" target=\"_self\" title=\"\" gradient_colors=\"|\" gradient_hover_colors=\"|\" accent_color=\"\" accent_hover_color=\"\" bevel_color=\"\" border_width=\"1px\" icon=\"\" icon_position=\"left\" icon_divider=\"no\" modal=\"rates\" animation_type=\"0\" animation_direction=\"left\" animation_speed=\"1\" alignment=\"\" class=\"\" id=\"\"]Click here![/button]', 'Rates', '', 'inherit', 'closed', 'closed', '', '1121-revision-v1', '', '', '2015-10-05 17:15:04', '2015-10-05 15:15:04', '', 1121, 'http://localhost/assagaylodge/1121-revision-v1/', 0, 'revision', '', 0),
(1160, 1, '2015-12-12 11:52:31', '2015-12-12 09:52:31', '[fullwidth background_color=\"\" background_image=\"http://localhost/assagaylodge/wp-content/uploads/2015/01/about-parallax11.jpg\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"center center\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"20\" padding_bottom=\"20\" padding_left=\"0\" padding_right=\"0\" hundred_percent=\"yes\" equal_height_columns=\"yes\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][one_sixth last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][modal name=\"rates\" title=\"2015 Rates\" size=\"large\" background=\"\" border_color=\"\" show_footer=\"yes\" class=\"\" id=\"\"]<p>\r\nALL PRICES INCLUDE VAT</p>\r\n<h3>Full House Self-Catering (Max 10 persons): <strong>R2950</strong> per night (R295 per person)</h3>\r\n<h3>Self-Catering:</h3>\r\n<p><strong>Weekdays (Monday, Tuesday, Wednesday or Thursday):</strong></p>\r\n<p>Single Private Room <strong>R595</strong> per person per night<br />\r\nSharing <strong>R395</strong> per person per night</p>\r\n<p><strong>Weekends (Friday, Saturday, Sunday):</strong></p>\r\n<p>Single Private Room <strong>R645</strong> per person per night<br />\r\nSharing <strong>R445</strong> per person per night</p>\r\n<h3>Breakfast Optional:</h3>\r\n<p>Continental<strong> R55</strong> per person<br />\r\nFull English <strong>R95</strong> per person</p>\r\n<h3>Lodge & Room Servicing Optional: <strong>R195 </strong>per day</h3>\r\n<hr />\r\n<h3>Specials</h3>\r\n<p>Weekdays: Book any 3 weekdays, Monday, Tuesday, Wednesday or Thursday, and only pay for 2 days.</p>\r\n<p>15% Discount. Arrive Friday Depart Sunday.</p>\r\n[/modal][button link=\"\" color=\"green\" size=\"medium\"  type=\"\" shape=\"\" target=\"_self\" title=\"\" gradient_colors=\"|\" gradient_hover_colors=\"|\" accent_color=\"\" accent_hover_color=\"\" bevel_color=\"\" border_width=\"1px\" icon=\"\" icon_position=\"left\" icon_divider=\"no\" modal=\"rates\" animation_type=\"0\" animation_direction=\"left\" animation_speed=\"1\" alignment=\"center\" class=\"\" id=\"\"]2015 Rates[/button][/one_sixth][two_third last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][fusion_text][easy_form booknow style=\"blue\" submit=\"Reservation successfully sent\" subsubmit=\"Please continue.\" credit=\"Reservation complete\" subcredit=\"You\'ll receive an email with the reservations details\" resourcename=\"Room\" pers=\"1\" resource=\"854\"][/fusion_text][/two_third][one_sixth last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][modal name=\"specials\" title=\"Current Specials\" size=\"large\" background=\"\" border_color=\"\" show_footer=\"yes\" class=\"\" id=\"\"]\r\n\r\nALL PRICES INCLUDE VAT\r\n<h3>Full House Self-Catering (Max 10 persons): <strong>R2950</strong> per night (R295 per person)</h3>\r\n<h3>Self-Catering:</h3>\r\n<strong>Weekdays (Monday, Tuesday, Wednesday or Thursday):</strong>\r\n\r\nSingle Private Room <strong>R595</strong> per person per night\r\nSharing <strong>R395</strong> per person per night\r\n\r\n<strong>Weekends (Friday, Saturday, Sunday):</strong>\r\n\r\nSingle Private Room <strong>R645</strong> per person per night\r\nSharing <strong>R445</strong> per person per night\r\n<h3>Breakfast Optional:</h3>\r\nContinental<strong> R55</strong> per person\r\nFull English <strong>R95</strong> per person\r\n<h3>Lodge &amp; Room Servicing Optional: <strong>R195 </strong>per day</h3>\r\n\r\n<hr />\r\n\r\n<h3>Specials</h3>\r\nWeekdays: Book any 3 weekdays, Monday, Tuesday, Wednesday or Thursday, and only pay for 2 days.\r\n\r\n15% Discount. Arrive Friday Depart Sunday.\r\n\r\n[/modal][button link=\"\" color=\"green\" size=\"medium\"  type=\"\" shape=\"\" target=\"_self\" title=\"\" gradient_colors=\"|\" gradient_hover_colors=\"|\" accent_color=\"\" accent_hover_color=\"\" bevel_color=\"\" border_width=\"1px\" icon=\"\" icon_position=\"left\" icon_divider=\"no\" modal=\"specials\" animation_type=\"0\" animation_direction=\"left\" animation_speed=\"1\" alignment=\"center\" class=\"\" id=\"\"]Current Specials[/button][/one_sixth][/fullwidth][fullwidth background_color=\"\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding_top=\"20\" padding_bottom=\"20\" padding_left=\"0\" padding_right=\"0\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][recent_works layout=\"grid\" picture_size=\"fixed\" boxed_text=\"unboxed\" filters=\"yes\" columns=\"4\" column_spacing=\"12\" cat_slug=\"\" exclude_cats=\"\" number_posts=\"8\" offset=\"\" excerpt_length=\"35\" strip_html=\"yes\" carousel_layout=\"title_on_rollover\" scroll_items=\"\" autoplay=\"no\" show_nav=\"yes\" mouse_scroll=\"no\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" class=\"\" id=\"\"][/recent_works][/fullwidth]', 'Book Now', '', 'inherit', 'closed', 'closed', '', '855-revision-v1', '', '', '2015-12-12 11:52:31', '2015-12-12 09:52:31', '', 855, 'http://msla.co.za/lodge/855-revision-v1/', 0, 'revision', '', 0),
(1161, 1, '2015-12-12 12:01:13', '2015-12-12 10:01:13', '[fullwidth background_color=\"\" background_image=\"http://msla.co.za/lodge/wp-content/uploads/2015/01/about-parallax11.jpg\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"center center\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"20\" padding_bottom=\"20\" padding_left=\"0\" padding_right=\"0\" hundred_percent=\"yes\" equal_height_columns=\"yes\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][one_sixth last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][modal name=\"rates\" title=\"2015 Rates\" size=\"large\" background=\"\" border_color=\"\" show_footer=\"yes\" class=\"\" id=\"\"]<p>\r\nALL PRICES INCLUDE VAT</p>\r\n<h3>Full House Self-Catering (Max 10 persons): <strong>R2950</strong> per night (R295 per person)</h3>\r\n<h3>Self-Catering:</h3>\r\n<p><strong>Weekdays (Monday, Tuesday, Wednesday or Thursday):</strong></p>\r\n<p>Single Private Room <strong>R595</strong> per person per night<br />\r\nSharing <strong>R395</strong> per person per night</p>\r\n<p><strong>Weekends (Friday, Saturday, Sunday):</strong></p>\r\n<p>Single Private Room <strong>R645</strong> per person per night<br />\r\nSharing <strong>R445</strong> per person per night</p>\r\n<h3>Breakfast Optional:</h3>\r\n<p>Continental<strong> R55</strong> per person<br />\r\nFull English <strong>R95</strong> per person</p>\r\n<h3>Lodge & Room Servicing Optional: <strong>R195 </strong>per day</h3>\r\n<hr />\r\n<h3>Specials</h3>\r\n<p>Weekdays: Book any 3 weekdays, Monday, Tuesday, Wednesday or Thursday, and only pay for 2 days.</p>\r\n<p>15% Discount. Arrive Friday Depart Sunday.</p>\r\n[/modal][button link=\"\" color=\"green\" size=\"medium\"  type=\"\" shape=\"\" target=\"_self\" title=\"\" gradient_colors=\"|\" gradient_hover_colors=\"|\" accent_color=\"\" accent_hover_color=\"\" bevel_color=\"\" border_width=\"1px\" icon=\"\" icon_position=\"left\" icon_divider=\"no\" modal=\"rates\" animation_type=\"0\" animation_direction=\"left\" animation_speed=\"1\" alignment=\"center\" class=\"\" id=\"\"]2015 Rates[/button][/one_sixth][two_third last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][fusion_text][easy_form booknow style=\"none\" submit=\"Reservation successfully sent\" subsubmit=\"Please continue.\" credit=\"Reservation complete\" subcredit=\"You\'ll receive an email with the reservations details\" resourcename=\"Room\" pers=\"1\" resource=\"854\"][/fusion_text][/two_third][one_sixth last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][modal name=\"specials\" title=\"Current Specials\" size=\"large\" background=\"\" border_color=\"\" show_footer=\"yes\" class=\"\" id=\"\"]\r\n\r\nALL PRICES INCLUDE VAT\r\n<h3>Full House Self-Catering (Max 10 persons): <strong>R2950</strong> per night (R295 per person)</h3>\r\n<h3>Self-Catering:</h3>\r\n<strong>Weekdays (Monday, Tuesday, Wednesday or Thursday):</strong>\r\n\r\nSingle Private Room <strong>R595</strong> per person per night\r\nSharing <strong>R395</strong> per person per night\r\n\r\n<strong>Weekends (Friday, Saturday, Sunday):</strong>\r\n\r\nSingle Private Room <strong>R645</strong> per person per night\r\nSharing <strong>R445</strong> per person per night\r\n<h3>Breakfast Optional:</h3>\r\nContinental<strong> R55</strong> per person\r\nFull English <strong>R95</strong> per person\r\n<h3>Lodge &amp; Room Servicing Optional: <strong>R195 </strong>per day</h3>\r\n\r\n<hr />\r\n\r\n<h3>Specials</h3>\r\nWeekdays: Book any 3 weekdays, Monday, Tuesday, Wednesday or Thursday, and only pay for 2 days.\r\n\r\n15% Discount. Arrive Friday Depart Sunday.\r\n\r\n[/modal][button link=\"\" color=\"green\" size=\"medium\"  type=\"\" shape=\"\" target=\"_self\" title=\"\" gradient_colors=\"|\" gradient_hover_colors=\"|\" accent_color=\"\" accent_hover_color=\"\" bevel_color=\"\" border_width=\"1px\" icon=\"\" icon_position=\"left\" icon_divider=\"no\" modal=\"specials\" animation_type=\"0\" animation_direction=\"left\" animation_speed=\"1\" alignment=\"center\" class=\"\" id=\"\"]Current Specials[/button][/one_sixth][/fullwidth][fullwidth background_color=\"\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding_top=\"20\" padding_bottom=\"20\" padding_left=\"0\" padding_right=\"0\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][recent_works layout=\"grid\" picture_size=\"fixed\" boxed_text=\"unboxed\" filters=\"yes\" columns=\"4\" column_spacing=\"12\" cat_slug=\"\" exclude_cats=\"\" number_posts=\"8\" offset=\"\" excerpt_length=\"35\" strip_html=\"yes\" carousel_layout=\"title_on_rollover\" scroll_items=\"\" autoplay=\"no\" show_nav=\"yes\" mouse_scroll=\"no\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" class=\"\" id=\"\"][/recent_works][/fullwidth]', 'Book Now', '', 'inherit', 'closed', 'closed', '', '855-revision-v1', '', '', '2015-12-12 12:01:13', '2015-12-12 10:01:13', '', 855, 'http://msla.co.za/lodge/855-revision-v1/', 0, 'revision', '', 0);
INSERT INTO `wp_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(1164, 1, '2016-01-26 09:28:40', '2016-01-26 07:28:40', '[fullwidth background_color=\"#f0f0ed\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"90px\" padding_bottom=\"0px\" padding_left=\"0px\" padding_right=\"0px\" hundred_percent=\"yes\" equal_height_columns=\"yes\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][one_half last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"http://localhost/assagaylodge/wp-content/uploads/2015/01/DSC01554-e1442325082893.jpg\" background_repeat=\"no-repeat\" background_position=\"center center\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" class=\"\" id=\"\"][fusion_text]\r\n<ul>\r\n	<li>No Fancy Star Grading</li>\r\n	<li>No Room Service</li>\r\n	<li>No Bed turn downs</li>\r\n</ul>\r\n----------------------- just old fashioned homely comforts\r\n\r\n[/fusion_text][/one_half][two_fifth last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"30px\" margin_top=\"\" margin_bottom=\"0px\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" class=\"special\" id=\"\"][fusion_text]\r\n<h1 style=\"text-align: justify;\">5 BEDROOM FAMILY LODGE</h1>\r\n<h3 style=\"text-align: justify;\">A Four Season Lodge, because there’s Always Something to Celebrate… We offer comfort, relaxation and exceptional service right in the heart of 1000 Hills. The Forest, the Gardens, the Atmosphere all speak to  Rest  &amp; Relaxation.</h3>\r\n[/fusion_text][separator style_type=\"single\" top_margin=\"0\" bottom_margin=\"30\" sep_color=\"#000000\" border_size=\"\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"170px\" alignment=\"left\" class=\"separator-left\" id=\"\"][modal name=\"rates\" title=\"2015 Rates\" size=\"large\" background=\"\" border_color=\"\" show_footer=\"yes\" class=\"\" id=\"\"]\r\n<table style=\"width: 100%;\" cellspacing=\"10\" cellpadding=\"5\">\r\n<tbody>\r\n<tr>\r\n<td colspan=\"2\"><span style=\"font-size: 10pt;\">ALL PRICES INCLUDE VAT </span></td>\r\n</tr>\r\n<tr>\r\n<td colspan=\"2\"><span style=\"font-size: 12pt;\"><strong>Self-Catering / Self-Servicing Accommodation</strong></span></td>\r\n</tr>\r\n<tr>\r\n<td><span style=\"font-size: 12pt;\">Full House - Max 10 persons per lodge</span></td>\r\n<td><span style=\"font-size: 12pt;\"><strong>R3250</strong> per night (R325 per person)</span></td>\r\n</tr>\r\n<tr>\r\n<td><span style=\"font-size: 12pt;\">Single - Max 1 person per room</span></td>\r\n<td><span style=\"font-size: 12pt;\"><strong>R 650</strong> per person per night</span></td>\r\n</tr>\r\n<tr>\r\n<td><span style=\"font-size: 12pt;\">Sharing - Max 2 persons per room</span></td>\r\n<td><span style=\"font-size: 12pt;\"><strong>R 495</strong> per person per night</span></td>\r\n</tr>\r\n<tr>\r\n<td></td>\r\n<td></td>\r\n</tr>\r\n<tr>\r\n<td><strong><span style=\"font-size: 12pt;\">Servicing Options</span></strong></td>\r\n<td></td>\r\n</tr>\r\n<tr>\r\n<td><span style=\"font-size: 12pt;\">Lodge Only Servicing (Optional) </span></td>\r\n<td><span style=\"font-size: 12pt;\"><strong>R30</strong> per person per day - Max <span style=\"font-size: 12pt;\"><strong>R 150 </strong>per day</span></span></td>\r\n</tr>\r\n<tr>\r\n<td><span style=\"font-size: 12pt;\">Lodge &amp; Room Servicing (Optional) </span></td>\r\n<td><span style=\"font-size: 12pt;\"><strong>R50</strong> per person per day - Max <span style=\"font-size: 12pt;\"><strong>R 250 </strong>per day</span></span></td>\r\n</tr>\r\n<tr>\r\n<td></td>\r\n<td></td>\r\n</tr>\r\n<tr>\r\n<td colspan=\"2\"><span style=\"font-size: 12pt;\"><span style=\"font-size: 12pt;\"><strong>Catering Options</strong></span> </span></td>\r\n</tr>\r\n<tr>\r\n<td><span style=\"font-size: 12pt;\"> <span style=\"font-size: 12pt;\">Breakfast (Continental)</span></span></td>\r\n<td><span style=\"font-size: 12pt;\"> <span style=\"font-size: 12pt;\"><strong>R 55</strong> per person</span></span></td>\r\n</tr>\r\n<tr>\r\n<td><span style=\"font-size: 12pt;\"> <span style=\"font-size: 12pt;\">Breakfast (Full English)</span></span></td>\r\n<td><span style=\"font-size: 12pt;\"> <span style=\"font-size: 12pt;\"><strong>R 95</strong> per person</span></span></td>\r\n</tr>\r\n<tr>\r\n<td><span style=\"font-size: 12pt;\"> <span style=\"font-size: 12pt;\">Light Lunch</span></span></td>\r\n<td><span style=\"font-size: 12pt;\">From <span style=\"font-size: 12pt;\"><strong>R 95 </strong>per person</span></span></td>\r\n</tr>\r\n<tr>\r\n<td><span style=\"font-size: 12pt;\"> <span style=\"font-size: 12pt;\">Dinners</span></span></td>\r\n<td><span style=\"font-size: 12pt;\">From <span style=\"font-size: 12pt;\"><strong>R 150 </strong>per person</span></span></td>\r\n</tr>\r\n<tr>\r\n<td></td>\r\n<td></td>\r\n</tr>\r\n<tr>\r\n<td><strong><span style=\"font-size: 12pt;\">Others</span></strong></td>\r\n<td></td>\r\n</tr>\r\n<tr>\r\n<td><span style=\"font-size: 12pt;\">Gate Remote</span></td>\r\n<td><span style=\"font-size: 12pt;\"><strong>R 200 </strong>deposit</span></td>\r\n</tr>\r\n<tr>\r\n<td><span style=\"font-size: 12pt;\">Gas Braai</span></td>\r\n<td><span style=\"font-size: 12pt;\"><strong>R 120 </strong>per day</span></td>\r\n</tr>\r\n<tr>\r\n<td><span style=\"font-size: 12pt;\">Day Visitors / Guests</span></td>\r\n<td><span style=\"font-size: 12pt;\"><strong>R 35 </strong>per person per day</span></td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n&nbsp;\r\n\r\n<hr />\r\n\r\n[/modal][button link=\"\" color=\"darkgreen\" size=\"\" type=\"\" shape=\"\" target=\"_self\" title=\"\" gradient_colors=\"|\" gradient_hover_colors=\"|\" accent_color=\"\" accent_hover_color=\"\" bevel_color=\"\" border_width=\"1px\" icon=\"\" icon_position=\"left\" icon_divider=\"no\" modal=\"rates\" animation_type=\"0\" animation_direction=\"left\" animation_speed=\"1\" alignment=\"\" class=\"\" id=\"\"]2015 RATES[/button][/two_fifth][/fullwidth][fullwidth background_color=\"#f0f0ed\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"20\" padding_bottom=\"20\" padding_left=\"0px\" padding_right=\"0px\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][one_half last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][fusion_text]\r\n<h3 style=\"text-align: justify;\">Set in the rolling peaks and valleys of a thousand hills surrounded by a canopy of indigenous trees, you will find that horses still have right of way, we certainly offer the best of both worlds, farm and charm coupled with modern amenities that will have you feeling relaxed and rejuvenated.</h3>\r\n<h3 style=\"text-align: justify;\">We know that sometimes you are searching for a romantic getaway or maybe a few days away with old friends. Other times you are searching for a place to host a weekend, family reunion or a business retreat. In addition to nightly room rentals, our lodge is also available for meetings, retreats  and makes the perfect place for a wedding party to stay together and get ready for the big day. Regardless, with our five comfortable and cozy guest bedrooms , multiple garden spaces and hideaways, and a  large private deck  where you can take a nap or read a book we definitely have the room for you!</h3>\r\n[/fusion_text][/one_half][one_half last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][fusion_text]\r\n<h3 style=\"text-align: justify;\">Our lodge has been in our family for years and has recently been beautifully renovated. Five rooms all with en-suite showers, tea/coffee making facilities, MNet and satellite television (DSTV) open Wi-Fi. Sumptuous meals are served on the bottom deck at the swimming pool. Barbecues, afternoon tea in the garden or picnic baskets  on request all add to the service that awaits you, Our lodge features a 50 foot high Apex ceiling, spacious living, dining and bar area including a fitted kitchenette all adding to a sense of homey comfort.</h3>\r\n<h3 style=\"text-align: justify;\">Be lulled to sleep by the sound of the waterfall  and tinkling stream just outside your window, waking from a peaceful night\'s sleep in a pillow-top bed dressed in luxurious linens to coddle you in ultimate comfort.</h3>\r\n<h3 style=\"text-align: justify;\">Our property boasts many different species of birds and animals. We have a resident otter, a family of wild bush pigs,  a family of rock rabbits, porcupine, little blue duikers, a variety of different frogs and an abundance of bird life, including the occasional snakes that pass through!</h3>\r\n<h3 style=\"text-align: justify;\">Evenings are quiet and peaceful taking you far away from the business of city life. This is a unique and memorable country experience. We look forward to having you as a guest!</h3>\r\n[/fusion_text][/one_half][/fullwidth][fullwidth background_color=\"#f0f0ed\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"20\" padding_bottom=\"20\" padding_left=\"0px\" padding_right=\"0px\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][fusion_text]\r\n<h1 style=\"text-align: center;\">Gallery</h1>\r\n[/fusion_text][separator style_type=\"single\" top_margin=\"\" bottom_margin=\"40\" sep_color=\"#000000\" border_size=\"\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"170px\" alignment=\"\" class=\"\" id=\"\"][one_sixth last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][/one_sixth][two_third last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][fusion_text]\r\n<h3 style=\"text-align: justify;\">The Lodge is open, spacious, comfortable and homely. During hot summer days, sit and bask in the sun on the deck  with one of our  picnic specials. In winter, snuggle up with a good book or challenge one another to a friendly board game in the glassed nook area .</h3>\r\n[/fusion_text][/two_third][one_sixth last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][/one_sixth][/fullwidth][fullwidth background_color=\"#f0f0ed\" background_image=\"http://localhost/assagaylodge/wp-content/uploads/2015/01/Wood_Texture.jpg\" background_parallax=\"fixed\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"30\" padding_bottom=\"10\" padding_left=\"0\" padding_right=\"0\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][recent_works layout=\"grid\" picture_size=\"auto\" boxed_text=\"unboxed\" filters=\"no\" columns=\"3\" column_spacing=\"12\" cat_slug=\"the-lodge\" exclude_cats=\"\" number_posts=\"9\" offset=\"\" excerpt_length=\"35\" strip_html=\"yes\" carousel_layout=\"title_on_rollover\" scroll_items=\"\" autoplay=\"no\" show_nav=\"yes\" mouse_scroll=\"no\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" class=\"\" id=\"\"][/recent_works][/fullwidth][fullwidth background_color=\"#f0f0ed\" background_image=\"\" background_parallax=\"fixed\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"20\" padding_bottom=\"20\" padding_left=\"0px\" padding_right=\"0px\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][fusion_text]\r\n<h1 style=\"text-align: center;\">BEDROOMS</h1>\r\n[/fusion_text][separator style_type=\"single\" top_margin=\"\" bottom_margin=\"20\" sep_color=\"#000000\" border_size=\"\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"170px\" alignment=\"\" class=\"\" id=\"\"][one_sixth last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][/one_sixth][two_third last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][fusion_text]\r\n<h3 style=\"text-align: justify;\">When it comes to our bedrooms we’re proud to say we offer something a little more special. One of five  lovingly and tastefully decorated guest rooms. Soft gray decor soothes the senses providing a peaceful, blissfully comfortable rest from your travels and hectic lives.</h3>\r\n<h3 style=\"text-align: justify;\">Our  bedrooms are spacious, clean, comfortable all en-suite, equipped with either king size or queen size beds. Each room sleeps two guests. The rooms have high ceilings, wall heaters &amp; ceiling fans. Beds all have electric blankets in Winter, 100% cotton percale sheets and thick hyper allergenic microfiber duvets and pillows. All guest rooms are cleaned with organic and green products. Amenities include hairdryers in each room. Three rooms feature King-sized beds  of which two can be  split into two single beds. Two  rooms can therefore be changed into a twin room upon request. Two rooms feature a Queen-sized double bed. These beds cannot be split into twin beds.</h3>\r\n[/fusion_text][/two_third][one_sixth last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][/one_sixth][/fullwidth][fullwidth background_color=\"\" background_image=\"http://localhost/assagaylodge/wp-content/uploads/2015/01/DSC01516-1148-x-764.jpg\" background_parallax=\"fixed\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"center center\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"20\" padding_bottom=\"20\" padding_left=\"0\" padding_right=\"0\" hundred_percent=\"no\" equal_height_columns=\"yes\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][recent_works layout=\"grid\" picture_size=\"auto\" boxed_text=\"unboxed\" filters=\"no\" columns=\"3\" column_spacing=\"12\" cat_slug=\"bedrooms\" exclude_cats=\"\" number_posts=\"6\" offset=\"\" excerpt_length=\"35\" strip_html=\"yes\" carousel_layout=\"title_on_rollover\" scroll_items=\"\" autoplay=\"no\" show_nav=\"yes\" mouse_scroll=\"no\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" class=\"\" id=\"\"][/recent_works][/fullwidth][fullwidth background_color=\"#f0f0ed\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"20\" padding_bottom=\"20\" padding_left=\"0\" padding_right=\"0\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][fusion_text]\r\n<h1 style=\"text-align: center;\">GARDENS</h1>\r\n[/fusion_text][separator style_type=\"single\" top_margin=\"\" bottom_margin=\"20\" sep_color=\"#000000\" border_size=\"\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"170px\" alignment=\"\" class=\"\" id=\"\"][one_sixth last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][/one_sixth][two_third last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][fusion_text]\r\n<h3 style=\"text-align: justify;\">The garden is large and offers many secluded spots to lose yourself in a book with a glass of wine underneath the shade of a tree, listening to the sounds of the birds and smelling the beautiful flowers.</h3>\r\n[/fusion_text][/two_third][one_sixth last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][/one_sixth][recent_works layout=\"grid\" picture_size=\"auto\" boxed_text=\"boxed\" filters=\"no\" columns=\"3\" column_spacing=\"12\" cat_slug=\"gardens\" exclude_cats=\"\" number_posts=\"9\" offset=\"\" excerpt_length=\"35\" strip_html=\"yes\" carousel_layout=\"title_on_rollover\" scroll_items=\"\" autoplay=\"no\" show_nav=\"yes\" mouse_scroll=\"no\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" class=\"\" id=\"\"][/recent_works][/fullwidth][fullwidth background_color=\"#ffffff\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"65px\" padding_bottom=\"65px\" padding_left=\"0px\" padding_right=\"0px\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][button link=\"http://localhost/assagaylodge/book-now/\" color=\"default\" size=\"xlarge\" type=\"3d\" shape=\"round\" target=\"_self\" title=\"\" gradient_colors=\"#f0f0ed|#f0f0ed\" gradient_hover_colors=\"#6666a4|#6666a4\" accent_color=\"#ffffff\" accent_hover_color=\"#ffffff\" bevel_color=\"\" border_width=\"0px\" icon=\"\" icon_position=\"left\" icon_divider=\"no\" modal=\"\" animation_type=\"0\" animation_direction=\"left\" animation_speed=\"1\" alignment=\"center\" class=\"\" id=\"\"]Make A Reservation Enquiry[/button][/fullwidth]', 'Home', '', 'inherit', 'closed', 'closed', '', '7-revision-v1', '', '', '2016-01-26 09:28:40', '2016-01-26 07:28:40', '', 7, 'http://msla.co.za/lodge/7-revision-v1/', 0, 'revision', '', 0),
(1165, 1, '2016-01-26 10:02:01', '2016-01-26 08:02:01', '[fullwidth background_color=\"#f0f0ed\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"90px\" padding_bottom=\"0px\" padding_left=\"0px\" padding_right=\"0px\" hundred_percent=\"yes\" equal_height_columns=\"yes\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][three_fifth last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"http://localhost/assagaylodge/wp-content/uploads/2015/01/DSC01554-e1442325082893.jpg\" background_repeat=\"no-repeat\" background_position=\"center center\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" class=\"\" id=\"\"][fusion_text]\r\n<ul>\r\n	<li>No Fancy Star Grading</li>\r\n	<li>No Room Service</li>\r\n	<li>No Bed turn downs</li>\r\n</ul>\r\n----------------------- just old fashioned homely comforts\r\n\r\n[/fusion_text][/three_fifth][two_fifth last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"30px\" margin_top=\"\" margin_bottom=\"0px\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" class=\"special\" id=\"\"][fusion_text]\r\n<h1 style=\"text-align: justify;\">5 BEDROOM FAMILY LODGE</h1>\r\n<h3 style=\"text-align: justify;\">A Four Season Lodge, because there’s Always Something to Celebrate… We offer comfort, relaxation and exceptional service right in the heart of 1000 Hills. The Forest, the Gardens, the Atmosphere all speak to  Rest  &amp; Relaxation.</h3>\r\n[/fusion_text][separator style_type=\"single\" top_margin=\"0\" bottom_margin=\"30\" sep_color=\"#000000\" border_size=\"\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"170px\" alignment=\"left\" class=\"separator-left\" id=\"\"][modal name=\"rates\" title=\"2015 Rates\" size=\"large\" background=\"\" border_color=\"\" show_footer=\"yes\" class=\"\" id=\"\"]\r\n<table style=\"width: 100%;\" cellspacing=\"10\" cellpadding=\"5\">\r\n<tbody>\r\n<tr>\r\n<td colspan=\"2\"><span style=\"font-size: 10pt;\">ALL PRICES INCLUDE VAT </span></td>\r\n</tr>\r\n<tr>\r\n<td colspan=\"2\"><span style=\"font-size: 12pt;\"><strong>Self-Catering / Self-Servicing Accommodation</strong></span></td>\r\n</tr>\r\n<tr>\r\n<td><span style=\"font-size: 12pt;\">Full House - Max 10 persons per lodge</span></td>\r\n<td><span style=\"font-size: 12pt;\"><strong>R3250</strong> per night (R325 per person)</span></td>\r\n</tr>\r\n<tr>\r\n<td><span style=\"font-size: 12pt;\">Single - Max 1 person per room</span></td>\r\n<td><span style=\"font-size: 12pt;\"><strong>R 650</strong> per person per night</span></td>\r\n</tr>\r\n<tr>\r\n<td><span style=\"font-size: 12pt;\">Sharing - Max 2 persons per room</span></td>\r\n<td><span style=\"font-size: 12pt;\"><strong>R 495</strong> per person per night</span></td>\r\n</tr>\r\n<tr>\r\n<td></td>\r\n<td></td>\r\n</tr>\r\n<tr>\r\n<td><strong><span style=\"font-size: 12pt;\">Servicing Options</span></strong></td>\r\n<td></td>\r\n</tr>\r\n<tr>\r\n<td><span style=\"font-size: 12pt;\">Lodge Only Servicing (Optional) </span></td>\r\n<td><span style=\"font-size: 12pt;\"><strong>R30</strong> per person per day - Max <span style=\"font-size: 12pt;\"><strong>R 150 </strong>per day</span></span></td>\r\n</tr>\r\n<tr>\r\n<td><span style=\"font-size: 12pt;\">Lodge &amp; Room Servicing (Optional) </span></td>\r\n<td><span style=\"font-size: 12pt;\"><strong>R50</strong> per person per day - Max <span style=\"font-size: 12pt;\"><strong>R 250 </strong>per day</span></span></td>\r\n</tr>\r\n<tr>\r\n<td></td>\r\n<td></td>\r\n</tr>\r\n<tr>\r\n<td colspan=\"2\"><span style=\"font-size: 12pt;\"><span style=\"font-size: 12pt;\"><strong>Catering Options</strong></span> </span></td>\r\n</tr>\r\n<tr>\r\n<td><span style=\"font-size: 12pt;\"> <span style=\"font-size: 12pt;\">Breakfast (Continental)</span></span></td>\r\n<td><span style=\"font-size: 12pt;\"> <span style=\"font-size: 12pt;\"><strong>R 55</strong> per person</span></span></td>\r\n</tr>\r\n<tr>\r\n<td><span style=\"font-size: 12pt;\"> <span style=\"font-size: 12pt;\">Breakfast (Full English)</span></span></td>\r\n<td><span style=\"font-size: 12pt;\"> <span style=\"font-size: 12pt;\"><strong>R 95</strong> per person</span></span></td>\r\n</tr>\r\n<tr>\r\n<td><span style=\"font-size: 12pt;\"> <span style=\"font-size: 12pt;\">Light Lunch</span></span></td>\r\n<td><span style=\"font-size: 12pt;\">From <span style=\"font-size: 12pt;\"><strong>R 95 </strong>per person</span></span></td>\r\n</tr>\r\n<tr>\r\n<td><span style=\"font-size: 12pt;\"> <span style=\"font-size: 12pt;\">Dinners</span></span></td>\r\n<td><span style=\"font-size: 12pt;\">From <span style=\"font-size: 12pt;\"><strong>R 150 </strong>per person</span></span></td>\r\n</tr>\r\n<tr>\r\n<td></td>\r\n<td></td>\r\n</tr>\r\n<tr>\r\n<td><strong><span style=\"font-size: 12pt;\">Others</span></strong></td>\r\n<td></td>\r\n</tr>\r\n<tr>\r\n<td><span style=\"font-size: 12pt;\">Gate Remote</span></td>\r\n<td><span style=\"font-size: 12pt;\"><strong>R 200 </strong>deposit</span></td>\r\n</tr>\r\n<tr>\r\n<td><span style=\"font-size: 12pt;\">Gas Braai</span></td>\r\n<td><span style=\"font-size: 12pt;\"><strong>R 120 </strong>per day</span></td>\r\n</tr>\r\n<tr>\r\n<td><span style=\"font-size: 12pt;\">Day Visitors / Guests</span></td>\r\n<td><span style=\"font-size: 12pt;\"><strong>R 35 </strong>per person per day</span></td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n&nbsp;\r\n\r\n<hr />\r\n\r\n[/modal][button link=\"\" color=\"darkgreen\" size=\"\" type=\"\" shape=\"\" target=\"_self\" title=\"\" gradient_colors=\"|\" gradient_hover_colors=\"|\" accent_color=\"\" accent_hover_color=\"\" bevel_color=\"\" border_width=\"1px\" icon=\"\" icon_position=\"left\" icon_divider=\"no\" modal=\"rates\" animation_type=\"0\" animation_direction=\"left\" animation_speed=\"1\" alignment=\"\" class=\"\" id=\"\"]2015 RATES[/button][/two_fifth][/fullwidth][fullwidth background_color=\"#f0f0ed\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"20\" padding_bottom=\"20\" padding_left=\"0px\" padding_right=\"0px\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][one_half last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][fusion_text]\r\n<h3 style=\"text-align: justify;\">Set in the rolling peaks and valleys of a thousand hills surrounded by a canopy of indigenous trees, you will find that horses still have right of way, we certainly offer the best of both worlds, farm and charm coupled with modern amenities that will have you feeling relaxed and rejuvenated.</h3>\r\n<h3 style=\"text-align: justify;\">We know that sometimes you are searching for a romantic getaway or maybe a few days away with old friends. Other times you are searching for a place to host a weekend, family reunion or a business retreat. In addition to nightly room rentals, our lodge is also available for meetings, retreats  and makes the perfect place for a wedding party to stay together and get ready for the big day. Regardless, with our five comfortable and cozy guest bedrooms , multiple garden spaces and hideaways, and a  large private deck  where you can take a nap or read a book we definitely have the room for you!</h3>\r\n[/fusion_text][/one_half][one_half last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][fusion_text]\r\n<h3 style=\"text-align: justify;\">Our lodge has been in our family for years and has recently been beautifully renovated. Five rooms all with en-suite showers, tea/coffee making facilities, MNet and satellite television (DSTV) open Wi-Fi. Sumptuous meals are served on the bottom deck at the swimming pool. Barbecues, afternoon tea in the garden or picnic baskets  on request all add to the service that awaits you, Our lodge features a 50 foot high Apex ceiling, spacious living, dining and bar area including a fitted kitchenette all adding to a sense of homey comfort.</h3>\r\n<h3 style=\"text-align: justify;\">Be lulled to sleep by the sound of the waterfall  and tinkling stream just outside your window, waking from a peaceful night\'s sleep in a pillow-top bed dressed in luxurious linens to coddle you in ultimate comfort.</h3>\r\n<h3 style=\"text-align: justify;\">Our property boasts many different species of birds and animals. We have a resident otter, a family of wild bush pigs,  a family of rock rabbits, porcupine, little blue duikers, a variety of different frogs and an abundance of bird life, including the occasional snakes that pass through!</h3>\r\n<h3 style=\"text-align: justify;\">Evenings are quiet and peaceful taking you far away from the business of city life. This is a unique and memorable country experience. We look forward to having you as a guest!</h3>\r\n[/fusion_text][/one_half][/fullwidth][fullwidth background_color=\"#f0f0ed\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"20\" padding_bottom=\"20\" padding_left=\"0px\" padding_right=\"0px\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][fusion_text]\r\n<h1 style=\"text-align: center;\">Gallery</h1>\r\n[/fusion_text][separator style_type=\"single\" top_margin=\"\" bottom_margin=\"40\" sep_color=\"#000000\" border_size=\"\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"170px\" alignment=\"\" class=\"\" id=\"\"][one_sixth last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][/one_sixth][two_third last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][fusion_text]\r\n<h3 style=\"text-align: justify;\">The Lodge is open, spacious, comfortable and homely. During hot summer days, sit and bask in the sun on the deck  with one of our  picnic specials. In winter, snuggle up with a good book or challenge one another to a friendly board game in the glassed nook area .</h3>\r\n[/fusion_text][/two_third][one_sixth last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][/one_sixth][/fullwidth][fullwidth background_color=\"#f0f0ed\" background_image=\"http://localhost/assagaylodge/wp-content/uploads/2015/01/Wood_Texture.jpg\" background_parallax=\"fixed\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"30\" padding_bottom=\"10\" padding_left=\"0\" padding_right=\"0\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][recent_works layout=\"grid\" picture_size=\"auto\" boxed_text=\"unboxed\" filters=\"no\" columns=\"3\" column_spacing=\"12\" cat_slug=\"the-lodge\" exclude_cats=\"\" number_posts=\"9\" offset=\"\" excerpt_length=\"35\" strip_html=\"yes\" carousel_layout=\"title_on_rollover\" scroll_items=\"\" autoplay=\"no\" show_nav=\"yes\" mouse_scroll=\"no\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" class=\"\" id=\"\"][/recent_works][/fullwidth][fullwidth background_color=\"#f0f0ed\" background_image=\"\" background_parallax=\"fixed\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"20\" padding_bottom=\"20\" padding_left=\"0px\" padding_right=\"0px\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][fusion_text]\r\n<h1 style=\"text-align: center;\">BEDROOMS</h1>\r\n[/fusion_text][separator style_type=\"single\" top_margin=\"\" bottom_margin=\"20\" sep_color=\"#000000\" border_size=\"\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"170px\" alignment=\"\" class=\"\" id=\"\"][one_sixth last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][/one_sixth][two_third last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][fusion_text]\r\n<h3 style=\"text-align: justify;\">When it comes to our bedrooms we’re proud to say we offer something a little more special. One of five  lovingly and tastefully decorated guest rooms. Soft gray decor soothes the senses providing a peaceful, blissfully comfortable rest from your travels and hectic lives.</h3>\r\n<h3 style=\"text-align: justify;\">Our  bedrooms are spacious, clean, comfortable all en-suite, equipped with either king size or queen size beds. Each room sleeps two guests. The rooms have high ceilings, wall heaters &amp; ceiling fans. Beds all have electric blankets in Winter, 100% cotton percale sheets and thick hyper allergenic microfiber duvets and pillows. All guest rooms are cleaned with organic and green products. Amenities include hairdryers in each room. Three rooms feature King-sized beds  of which two can be  split into two single beds. Two  rooms can therefore be changed into a twin room upon request. Two rooms feature a Queen-sized double bed. These beds cannot be split into twin beds.</h3>\r\n[/fusion_text][/two_third][one_sixth last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][/one_sixth][/fullwidth][fullwidth background_color=\"\" background_image=\"http://localhost/assagaylodge/wp-content/uploads/2015/01/DSC01516-1148-x-764.jpg\" background_parallax=\"fixed\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"center center\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"20\" padding_bottom=\"20\" padding_left=\"0\" padding_right=\"0\" hundred_percent=\"no\" equal_height_columns=\"yes\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][recent_works layout=\"grid\" picture_size=\"auto\" boxed_text=\"unboxed\" filters=\"no\" columns=\"3\" column_spacing=\"12\" cat_slug=\"bedrooms\" exclude_cats=\"\" number_posts=\"6\" offset=\"\" excerpt_length=\"35\" strip_html=\"yes\" carousel_layout=\"title_on_rollover\" scroll_items=\"\" autoplay=\"no\" show_nav=\"yes\" mouse_scroll=\"no\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" class=\"\" id=\"\"][/recent_works][/fullwidth][fullwidth background_color=\"#f0f0ed\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"20\" padding_bottom=\"20\" padding_left=\"0\" padding_right=\"0\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][fusion_text]\r\n<h1 style=\"text-align: center;\">GARDENS</h1>\r\n[/fusion_text][separator style_type=\"single\" top_margin=\"\" bottom_margin=\"20\" sep_color=\"#000000\" border_size=\"\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"170px\" alignment=\"\" class=\"\" id=\"\"][one_sixth last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][/one_sixth][two_third last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][fusion_text]\r\n<h3 style=\"text-align: justify;\">The garden is large and offers many secluded spots to lose yourself in a book with a glass of wine underneath the shade of a tree, listening to the sounds of the birds and smelling the beautiful flowers.</h3>\r\n[/fusion_text][/two_third][one_sixth last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][/one_sixth][recent_works layout=\"grid\" picture_size=\"auto\" boxed_text=\"boxed\" filters=\"no\" columns=\"3\" column_spacing=\"12\" cat_slug=\"gardens\" exclude_cats=\"\" number_posts=\"9\" offset=\"\" excerpt_length=\"35\" strip_html=\"yes\" carousel_layout=\"title_on_rollover\" scroll_items=\"\" autoplay=\"no\" show_nav=\"yes\" mouse_scroll=\"no\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" class=\"\" id=\"\"][/recent_works][/fullwidth][fullwidth background_color=\"#ffffff\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"65px\" padding_bottom=\"65px\" padding_left=\"0px\" padding_right=\"0px\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][button link=\"http://localhost/assagaylodge/book-now/\" color=\"default\" size=\"xlarge\" type=\"3d\" shape=\"round\" target=\"_self\" title=\"\" gradient_colors=\"#f0f0ed|#f0f0ed\" gradient_hover_colors=\"#6666a4|#6666a4\" accent_color=\"#ffffff\" accent_hover_color=\"#ffffff\" bevel_color=\"\" border_width=\"0px\" icon=\"\" icon_position=\"left\" icon_divider=\"no\" modal=\"\" animation_type=\"0\" animation_direction=\"left\" animation_speed=\"1\" alignment=\"center\" class=\"\" id=\"\"]Make A Reservation Enquiry[/button][/fullwidth][one_third last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][/one_third][two_fifth last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][/two_fifth]', 'Home', '', 'inherit', 'closed', 'closed', '', '7-revision-v1', '', '', '2016-01-26 10:02:01', '2016-01-26 08:02:01', '', 7, 'http://msla.co.za/lodge/7-revision-v1/', 0, 'revision', '', 0);
INSERT INTO `wp_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(1166, 1, '2016-01-26 10:05:47', '2016-01-26 08:05:47', '[fullwidth background_color=\"#f0f0ed\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"90px\" padding_bottom=\"0px\" padding_left=\"0px\" padding_right=\"0px\" hundred_percent=\"yes\" equal_height_columns=\"yes\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][three_fifth last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"http://localhost/assagaylodge/wp-content/uploads/2015/01/DSC01554-e1442325082893.jpg\" background_repeat=\"no-repeat\" background_position=\"center center\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" class=\"\" id=\"\"][fusion_text]\r\n<h2 style=\"text-align: center;\">No Fancy Star Grading\r\nNo Room Service\r\nNo Bed turn downs</h2>\r\n<h2 style=\"text-align: center;\">... just old fashioned homely comforts</h2>\r\n[/fusion_text][/three_fifth][two_fifth last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"30px\" margin_top=\"\" margin_bottom=\"0px\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" class=\"special\" id=\"\"][fusion_text]\r\n<h1 style=\"text-align: justify;\">5 BEDROOM FAMILY LODGE</h1>\r\n<h3 style=\"text-align: justify;\">A Four Season Lodge, because there’s Always Something to Celebrate… We offer comfort, relaxation and exceptional service right in the heart of 1000 Hills. The Forest, the Gardens, the Atmosphere all speak to  Rest  &amp; Relaxation.</h3>\r\n[/fusion_text][separator style_type=\"single\" top_margin=\"0\" bottom_margin=\"30\" sep_color=\"#000000\" border_size=\"\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"170px\" alignment=\"left\" class=\"separator-left\" id=\"\"][modal name=\"rates\" title=\"2015 Rates\" size=\"large\" background=\"\" border_color=\"\" show_footer=\"yes\" class=\"\" id=\"\"]\r\n<table style=\"width: 100%;\" cellspacing=\"10\" cellpadding=\"5\">\r\n<tbody>\r\n<tr>\r\n<td colspan=\"2\"><span style=\"font-size: 10pt;\">ALL PRICES INCLUDE VAT </span></td>\r\n</tr>\r\n<tr>\r\n<td colspan=\"2\"><span style=\"font-size: 12pt;\"><strong>Self-Catering / Self-Servicing Accommodation</strong></span></td>\r\n</tr>\r\n<tr>\r\n<td><span style=\"font-size: 12pt;\">Full House - Max 10 persons per lodge</span></td>\r\n<td><span style=\"font-size: 12pt;\"><strong>R3250</strong> per night (R325 per person)</span></td>\r\n</tr>\r\n<tr>\r\n<td><span style=\"font-size: 12pt;\">Single - Max 1 person per room</span></td>\r\n<td><span style=\"font-size: 12pt;\"><strong>R 650</strong> per person per night</span></td>\r\n</tr>\r\n<tr>\r\n<td><span style=\"font-size: 12pt;\">Sharing - Max 2 persons per room</span></td>\r\n<td><span style=\"font-size: 12pt;\"><strong>R 495</strong> per person per night</span></td>\r\n</tr>\r\n<tr>\r\n<td></td>\r\n<td></td>\r\n</tr>\r\n<tr>\r\n<td><strong><span style=\"font-size: 12pt;\">Servicing Options</span></strong></td>\r\n<td></td>\r\n</tr>\r\n<tr>\r\n<td><span style=\"font-size: 12pt;\">Lodge Only Servicing (Optional) </span></td>\r\n<td><span style=\"font-size: 12pt;\"><strong>R30</strong> per person per day - Max <span style=\"font-size: 12pt;\"><strong>R 150 </strong>per day</span></span></td>\r\n</tr>\r\n<tr>\r\n<td><span style=\"font-size: 12pt;\">Lodge &amp; Room Servicing (Optional) </span></td>\r\n<td><span style=\"font-size: 12pt;\"><strong>R50</strong> per person per day - Max <span style=\"font-size: 12pt;\"><strong>R 250 </strong>per day</span></span></td>\r\n</tr>\r\n<tr>\r\n<td></td>\r\n<td></td>\r\n</tr>\r\n<tr>\r\n<td colspan=\"2\"><span style=\"font-size: 12pt;\"><span style=\"font-size: 12pt;\"><strong>Catering Options</strong></span> </span></td>\r\n</tr>\r\n<tr>\r\n<td><span style=\"font-size: 12pt;\"> <span style=\"font-size: 12pt;\">Breakfast (Continental)</span></span></td>\r\n<td><span style=\"font-size: 12pt;\"> <span style=\"font-size: 12pt;\"><strong>R 55</strong> per person</span></span></td>\r\n</tr>\r\n<tr>\r\n<td><span style=\"font-size: 12pt;\"> <span style=\"font-size: 12pt;\">Breakfast (Full English)</span></span></td>\r\n<td><span style=\"font-size: 12pt;\"> <span style=\"font-size: 12pt;\"><strong>R 95</strong> per person</span></span></td>\r\n</tr>\r\n<tr>\r\n<td><span style=\"font-size: 12pt;\"> <span style=\"font-size: 12pt;\">Light Lunch</span></span></td>\r\n<td><span style=\"font-size: 12pt;\">From <span style=\"font-size: 12pt;\"><strong>R 95 </strong>per person</span></span></td>\r\n</tr>\r\n<tr>\r\n<td><span style=\"font-size: 12pt;\"> <span style=\"font-size: 12pt;\">Dinners</span></span></td>\r\n<td><span style=\"font-size: 12pt;\">From <span style=\"font-size: 12pt;\"><strong>R 150 </strong>per person</span></span></td>\r\n</tr>\r\n<tr>\r\n<td></td>\r\n<td></td>\r\n</tr>\r\n<tr>\r\n<td><strong><span style=\"font-size: 12pt;\">Others</span></strong></td>\r\n<td></td>\r\n</tr>\r\n<tr>\r\n<td><span style=\"font-size: 12pt;\">Gate Remote</span></td>\r\n<td><span style=\"font-size: 12pt;\"><strong>R 200 </strong>deposit</span></td>\r\n</tr>\r\n<tr>\r\n<td><span style=\"font-size: 12pt;\">Gas Braai</span></td>\r\n<td><span style=\"font-size: 12pt;\"><strong>R 120 </strong>per day</span></td>\r\n</tr>\r\n<tr>\r\n<td><span style=\"font-size: 12pt;\">Day Visitors / Guests</span></td>\r\n<td><span style=\"font-size: 12pt;\"><strong>R 35 </strong>per person per day</span></td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n&nbsp;\r\n\r\n<hr />\r\n\r\n[/modal][button link=\"\" color=\"darkgreen\" size=\"\" type=\"\" shape=\"\" target=\"_self\" title=\"\" gradient_colors=\"|\" gradient_hover_colors=\"|\" accent_color=\"\" accent_hover_color=\"\" bevel_color=\"\" border_width=\"1px\" icon=\"\" icon_position=\"left\" icon_divider=\"no\" modal=\"rates\" animation_type=\"0\" animation_direction=\"left\" animation_speed=\"1\" alignment=\"\" class=\"\" id=\"\"]2015 RATES[/button][/two_fifth][/fullwidth][fullwidth background_color=\"#f0f0ed\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"20\" padding_bottom=\"20\" padding_left=\"0px\" padding_right=\"0px\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][one_half last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][fusion_text]\r\n<h3 style=\"text-align: justify;\">Set in the rolling peaks and valleys of a thousand hills surrounded by a canopy of indigenous trees, you will find that horses still have right of way, we certainly offer the best of both worlds, farm and charm coupled with modern amenities that will have you feeling relaxed and rejuvenated.</h3>\r\n<h3 style=\"text-align: justify;\">We know that sometimes you are searching for a romantic getaway or maybe a few days away with old friends. Other times you are searching for a place to host a weekend, family reunion or a business retreat. In addition to nightly room rentals, our lodge is also available for meetings, retreats  and makes the perfect place for a wedding party to stay together and get ready for the big day. Regardless, with our five comfortable and cozy guest bedrooms , multiple garden spaces and hideaways, and a  large private deck  where you can take a nap or read a book we definitely have the room for you!</h3>\r\n[/fusion_text][/one_half][one_half last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][fusion_text]\r\n<h3 style=\"text-align: justify;\">Our lodge has been in our family for years and has recently been beautifully renovated. Five rooms all with en-suite showers, tea/coffee making facilities, MNet and satellite television (DSTV) open Wi-Fi. Sumptuous meals are served on the bottom deck at the swimming pool. Barbecues, afternoon tea in the garden or picnic baskets  on request all add to the service that awaits you, Our lodge features a 50 foot high Apex ceiling, spacious living, dining and bar area including a fitted kitchenette all adding to a sense of homey comfort.</h3>\r\n<h3 style=\"text-align: justify;\">Be lulled to sleep by the sound of the waterfall  and tinkling stream just outside your window, waking from a peaceful night\'s sleep in a pillow-top bed dressed in luxurious linens to coddle you in ultimate comfort.</h3>\r\n<h3 style=\"text-align: justify;\">Our property boasts many different species of birds and animals. We have a resident otter, a family of wild bush pigs,  a family of rock rabbits, porcupine, little blue duikers, a variety of different frogs and an abundance of bird life, including the occasional snakes that pass through!</h3>\r\n<h3 style=\"text-align: justify;\">Evenings are quiet and peaceful taking you far away from the business of city life. This is a unique and memorable country experience. We look forward to having you as a guest!</h3>\r\n[/fusion_text][/one_half][/fullwidth][fullwidth background_color=\"#f0f0ed\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"20\" padding_bottom=\"20\" padding_left=\"0px\" padding_right=\"0px\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][fusion_text]\r\n<h1 style=\"text-align: center;\">Gallery</h1>\r\n[/fusion_text][separator style_type=\"single\" top_margin=\"\" bottom_margin=\"40\" sep_color=\"#000000\" border_size=\"\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"170px\" alignment=\"\" class=\"\" id=\"\"][one_sixth last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][/one_sixth][two_third last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][fusion_text]\r\n<h3 style=\"text-align: justify;\">The Lodge is open, spacious, comfortable and homely. During hot summer days, sit and bask in the sun on the deck  with one of our  picnic specials. In winter, snuggle up with a good book or challenge one another to a friendly board game in the glassed nook area .</h3>\r\n[/fusion_text][/two_third][one_sixth last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][/one_sixth][/fullwidth][fullwidth background_color=\"#f0f0ed\" background_image=\"http://localhost/assagaylodge/wp-content/uploads/2015/01/Wood_Texture.jpg\" background_parallax=\"fixed\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"30\" padding_bottom=\"10\" padding_left=\"0\" padding_right=\"0\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][recent_works layout=\"grid\" picture_size=\"auto\" boxed_text=\"unboxed\" filters=\"no\" columns=\"3\" column_spacing=\"12\" cat_slug=\"the-lodge\" exclude_cats=\"\" number_posts=\"9\" offset=\"\" excerpt_length=\"35\" strip_html=\"yes\" carousel_layout=\"title_on_rollover\" scroll_items=\"\" autoplay=\"no\" show_nav=\"yes\" mouse_scroll=\"no\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" class=\"\" id=\"\"][/recent_works][/fullwidth][fullwidth background_color=\"#f0f0ed\" background_image=\"\" background_parallax=\"fixed\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"20\" padding_bottom=\"20\" padding_left=\"0px\" padding_right=\"0px\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][fusion_text]\r\n<h1 style=\"text-align: center;\">BEDROOMS</h1>\r\n[/fusion_text][separator style_type=\"single\" top_margin=\"\" bottom_margin=\"20\" sep_color=\"#000000\" border_size=\"\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"170px\" alignment=\"\" class=\"\" id=\"\"][one_sixth last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][/one_sixth][two_third last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][fusion_text]\r\n<h3 style=\"text-align: justify;\">When it comes to our bedrooms we’re proud to say we offer something a little more special. One of five  lovingly and tastefully decorated guest rooms. Soft gray decor soothes the senses providing a peaceful, blissfully comfortable rest from your travels and hectic lives.</h3>\r\n<h3 style=\"text-align: justify;\">Our  bedrooms are spacious, clean, comfortable all en-suite, equipped with either king size or queen size beds. Each room sleeps two guests. The rooms have high ceilings, wall heaters &amp; ceiling fans. Beds all have electric blankets in Winter, 100% cotton percale sheets and thick hyper allergenic microfiber duvets and pillows. All guest rooms are cleaned with organic and green products. Amenities include hairdryers in each room. Three rooms feature King-sized beds  of which two can be  split into two single beds. Two  rooms can therefore be changed into a twin room upon request. Two rooms feature a Queen-sized double bed. These beds cannot be split into twin beds.</h3>\r\n[/fusion_text][/two_third][one_sixth last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][/one_sixth][/fullwidth][fullwidth background_color=\"\" background_image=\"http://localhost/assagaylodge/wp-content/uploads/2015/01/DSC01516-1148-x-764.jpg\" background_parallax=\"fixed\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"center center\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"20\" padding_bottom=\"20\" padding_left=\"0\" padding_right=\"0\" hundred_percent=\"no\" equal_height_columns=\"yes\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][recent_works layout=\"grid\" picture_size=\"auto\" boxed_text=\"unboxed\" filters=\"no\" columns=\"3\" column_spacing=\"12\" cat_slug=\"bedrooms\" exclude_cats=\"\" number_posts=\"6\" offset=\"\" excerpt_length=\"35\" strip_html=\"yes\" carousel_layout=\"title_on_rollover\" scroll_items=\"\" autoplay=\"no\" show_nav=\"yes\" mouse_scroll=\"no\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" class=\"\" id=\"\"][/recent_works][/fullwidth][fullwidth background_color=\"#f0f0ed\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"20\" padding_bottom=\"20\" padding_left=\"0\" padding_right=\"0\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][fusion_text]\r\n<h1 style=\"text-align: center;\">GARDENS</h1>\r\n[/fusion_text][separator style_type=\"single\" top_margin=\"\" bottom_margin=\"20\" sep_color=\"#000000\" border_size=\"\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"170px\" alignment=\"\" class=\"\" id=\"\"][one_sixth last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][/one_sixth][two_third last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][fusion_text]\r\n<h3 style=\"text-align: justify;\">The garden is large and offers many secluded spots to lose yourself in a book with a glass of wine underneath the shade of a tree, listening to the sounds of the birds and smelling the beautiful flowers.</h3>\r\n[/fusion_text][/two_third][one_sixth last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][/one_sixth][recent_works layout=\"grid\" picture_size=\"auto\" boxed_text=\"boxed\" filters=\"no\" columns=\"3\" column_spacing=\"12\" cat_slug=\"gardens\" exclude_cats=\"\" number_posts=\"9\" offset=\"\" excerpt_length=\"35\" strip_html=\"yes\" carousel_layout=\"title_on_rollover\" scroll_items=\"\" autoplay=\"no\" show_nav=\"yes\" mouse_scroll=\"no\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" class=\"\" id=\"\"][/recent_works][/fullwidth][fullwidth background_color=\"#ffffff\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"65px\" padding_bottom=\"65px\" padding_left=\"0px\" padding_right=\"0px\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][button link=\"http://localhost/assagaylodge/book-now/\" color=\"default\" size=\"xlarge\" type=\"3d\" shape=\"round\" target=\"_self\" title=\"\" gradient_colors=\"#f0f0ed|#f0f0ed\" gradient_hover_colors=\"#6666a4|#6666a4\" accent_color=\"#ffffff\" accent_hover_color=\"#ffffff\" bevel_color=\"\" border_width=\"0px\" icon=\"\" icon_position=\"left\" icon_divider=\"no\" modal=\"\" animation_type=\"0\" animation_direction=\"left\" animation_speed=\"1\" alignment=\"center\" class=\"\" id=\"\"]Make A Reservation Enquiry[/button][/fullwidth][one_third last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][/one_third][two_fifth last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][/two_fifth]', 'Home', '', 'inherit', 'closed', 'closed', '', '7-revision-v1', '', '', '2016-01-26 10:05:47', '2016-01-26 08:05:47', '', 7, 'http://msla.co.za/lodge/7-revision-v1/', 0, 'revision', '', 0),
(1167, 1, '2016-01-26 10:07:45', '2016-01-26 08:07:45', '[fullwidth background_color=\"#f0f0ed\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"90px\" padding_bottom=\"0px\" padding_left=\"0px\" padding_right=\"0px\" hundred_percent=\"yes\" equal_height_columns=\"yes\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][one_sixth last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][/one_sixth][one_third last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"http://localhost/assagaylodge/wp-content/uploads/2015/01/DSC01554-e1442325082893.jpg\" background_repeat=\"no-repeat\" background_position=\"center center\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" class=\"\" id=\"\"][fusion_text]\r\n<h2 style=\"text-align: center;\">No Fancy Star Grading\r\nNo Room Service\r\nNo Bed turn downs</h2>\r\n<h2 style=\"text-align: center;\">... just old fashioned homely comforts</h2>\r\n[/fusion_text][/one_third][one_third last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"30px\" margin_top=\"\" margin_bottom=\"0px\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" class=\"special\" id=\"\"][fusion_text]\r\n<h1 style=\"text-align: justify;\">5 BEDROOM FAMILY LODGE</h1>\r\n<h3 style=\"text-align: justify;\">A Four Season Lodge, because there’s Always Something to Celebrate… We offer comfort, relaxation and exceptional service right in the heart of 1000 Hills. The Forest, the Gardens, the Atmosphere all speak to  Rest  &amp; Relaxation.</h3>\r\n[/fusion_text][separator style_type=\"single\" top_margin=\"0\" bottom_margin=\"30\" sep_color=\"#000000\" border_size=\"\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"170px\" alignment=\"left\" class=\"separator-left\" id=\"\"][modal name=\"rates\" title=\"2015 Rates\" size=\"large\" background=\"\" border_color=\"\" show_footer=\"yes\" class=\"\" id=\"\"]\r\n<table style=\"width: 100%;\" cellspacing=\"10\" cellpadding=\"5\">\r\n<tbody>\r\n<tr>\r\n<td colspan=\"2\"><span style=\"font-size: 10pt;\">ALL PRICES INCLUDE VAT </span></td>\r\n</tr>\r\n<tr>\r\n<td colspan=\"2\"><span style=\"font-size: 12pt;\"><strong>Self-Catering / Self-Servicing Accommodation</strong></span></td>\r\n</tr>\r\n<tr>\r\n<td><span style=\"font-size: 12pt;\">Full House - Max 10 persons per lodge</span></td>\r\n<td><span style=\"font-size: 12pt;\"><strong>R3250</strong> per night (R325 per person)</span></td>\r\n</tr>\r\n<tr>\r\n<td><span style=\"font-size: 12pt;\">Single - Max 1 person per room</span></td>\r\n<td><span style=\"font-size: 12pt;\"><strong>R 650</strong> per person per night</span></td>\r\n</tr>\r\n<tr>\r\n<td><span style=\"font-size: 12pt;\">Sharing - Max 2 persons per room</span></td>\r\n<td><span style=\"font-size: 12pt;\"><strong>R 495</strong> per person per night</span></td>\r\n</tr>\r\n<tr>\r\n<td></td>\r\n<td></td>\r\n</tr>\r\n<tr>\r\n<td><strong><span style=\"font-size: 12pt;\">Servicing Options</span></strong></td>\r\n<td></td>\r\n</tr>\r\n<tr>\r\n<td><span style=\"font-size: 12pt;\">Lodge Only Servicing (Optional) </span></td>\r\n<td><span style=\"font-size: 12pt;\"><strong>R30</strong> per person per day - Max <span style=\"font-size: 12pt;\"><strong>R 150 </strong>per day</span></span></td>\r\n</tr>\r\n<tr>\r\n<td><span style=\"font-size: 12pt;\">Lodge &amp; Room Servicing (Optional) </span></td>\r\n<td><span style=\"font-size: 12pt;\"><strong>R50</strong> per person per day - Max <span style=\"font-size: 12pt;\"><strong>R 250 </strong>per day</span></span></td>\r\n</tr>\r\n<tr>\r\n<td></td>\r\n<td></td>\r\n</tr>\r\n<tr>\r\n<td colspan=\"2\"><span style=\"font-size: 12pt;\"><span style=\"font-size: 12pt;\"><strong>Catering Options</strong></span> </span></td>\r\n</tr>\r\n<tr>\r\n<td><span style=\"font-size: 12pt;\"> <span style=\"font-size: 12pt;\">Breakfast (Continental)</span></span></td>\r\n<td><span style=\"font-size: 12pt;\"> <span style=\"font-size: 12pt;\"><strong>R 55</strong> per person</span></span></td>\r\n</tr>\r\n<tr>\r\n<td><span style=\"font-size: 12pt;\"> <span style=\"font-size: 12pt;\">Breakfast (Full English)</span></span></td>\r\n<td><span style=\"font-size: 12pt;\"> <span style=\"font-size: 12pt;\"><strong>R 95</strong> per person</span></span></td>\r\n</tr>\r\n<tr>\r\n<td><span style=\"font-size: 12pt;\"> <span style=\"font-size: 12pt;\">Light Lunch</span></span></td>\r\n<td><span style=\"font-size: 12pt;\">From <span style=\"font-size: 12pt;\"><strong>R 95 </strong>per person</span></span></td>\r\n</tr>\r\n<tr>\r\n<td><span style=\"font-size: 12pt;\"> <span style=\"font-size: 12pt;\">Dinners</span></span></td>\r\n<td><span style=\"font-size: 12pt;\">From <span style=\"font-size: 12pt;\"><strong>R 150 </strong>per person</span></span></td>\r\n</tr>\r\n<tr>\r\n<td></td>\r\n<td></td>\r\n</tr>\r\n<tr>\r\n<td><strong><span style=\"font-size: 12pt;\">Others</span></strong></td>\r\n<td></td>\r\n</tr>\r\n<tr>\r\n<td><span style=\"font-size: 12pt;\">Gate Remote</span></td>\r\n<td><span style=\"font-size: 12pt;\"><strong>R 200 </strong>deposit</span></td>\r\n</tr>\r\n<tr>\r\n<td><span style=\"font-size: 12pt;\">Gas Braai</span></td>\r\n<td><span style=\"font-size: 12pt;\"><strong>R 120 </strong>per day</span></td>\r\n</tr>\r\n<tr>\r\n<td><span style=\"font-size: 12pt;\">Day Visitors / Guests</span></td>\r\n<td><span style=\"font-size: 12pt;\"><strong>R 35 </strong>per person per day</span></td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n&nbsp;\r\n\r\n<hr />\r\n\r\n[/modal][button link=\"\" color=\"darkgreen\" size=\"\" type=\"\" shape=\"\" target=\"_self\" title=\"\" gradient_colors=\"|\" gradient_hover_colors=\"|\" accent_color=\"\" accent_hover_color=\"\" bevel_color=\"\" border_width=\"1px\" icon=\"\" icon_position=\"left\" icon_divider=\"no\" modal=\"rates\" animation_type=\"0\" animation_direction=\"left\" animation_speed=\"1\" alignment=\"\" class=\"\" id=\"\"]2015 RATES[/button][/one_third][one_sixth last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][/one_sixth][/fullwidth][fullwidth background_color=\"#f0f0ed\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"20\" padding_bottom=\"20\" padding_left=\"0px\" padding_right=\"0px\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][one_half last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][fusion_text]\r\n<h3 style=\"text-align: justify;\">Set in the rolling peaks and valleys of a thousand hills surrounded by a canopy of indigenous trees, you will find that horses still have right of way, we certainly offer the best of both worlds, farm and charm coupled with modern amenities that will have you feeling relaxed and rejuvenated.</h3>\r\n<h3 style=\"text-align: justify;\">We know that sometimes you are searching for a romantic getaway or maybe a few days away with old friends. Other times you are searching for a place to host a weekend, family reunion or a business retreat. In addition to nightly room rentals, our lodge is also available for meetings, retreats  and makes the perfect place for a wedding party to stay together and get ready for the big day. Regardless, with our five comfortable and cozy guest bedrooms , multiple garden spaces and hideaways, and a  large private deck  where you can take a nap or read a book we definitely have the room for you!</h3>\r\n[/fusion_text][/one_half][one_half last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][fusion_text]\r\n<h3 style=\"text-align: justify;\">Our lodge has been in our family for years and has recently been beautifully renovated. Five rooms all with en-suite showers, tea/coffee making facilities, MNet and satellite television (DSTV) open Wi-Fi. Sumptuous meals are served on the bottom deck at the swimming pool. Barbecues, afternoon tea in the garden or picnic baskets  on request all add to the service that awaits you, Our lodge features a 50 foot high Apex ceiling, spacious living, dining and bar area including a fitted kitchenette all adding to a sense of homey comfort.</h3>\r\n<h3 style=\"text-align: justify;\">Be lulled to sleep by the sound of the waterfall  and tinkling stream just outside your window, waking from a peaceful night\'s sleep in a pillow-top bed dressed in luxurious linens to coddle you in ultimate comfort.</h3>\r\n<h3 style=\"text-align: justify;\">Our property boasts many different species of birds and animals. We have a resident otter, a family of wild bush pigs,  a family of rock rabbits, porcupine, little blue duikers, a variety of different frogs and an abundance of bird life, including the occasional snakes that pass through!</h3>\r\n<h3 style=\"text-align: justify;\">Evenings are quiet and peaceful taking you far away from the business of city life. This is a unique and memorable country experience. We look forward to having you as a guest!</h3>\r\n[/fusion_text][/one_half][/fullwidth][fullwidth background_color=\"#f0f0ed\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"20\" padding_bottom=\"20\" padding_left=\"0px\" padding_right=\"0px\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][fusion_text]\r\n<h1 style=\"text-align: center;\">Gallery</h1>\r\n[/fusion_text][separator style_type=\"single\" top_margin=\"\" bottom_margin=\"40\" sep_color=\"#000000\" border_size=\"\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"170px\" alignment=\"\" class=\"\" id=\"\"][one_sixth last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][/one_sixth][two_third last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][fusion_text]\r\n<h3 style=\"text-align: justify;\">The Lodge is open, spacious, comfortable and homely. During hot summer days, sit and bask in the sun on the deck  with one of our  picnic specials. In winter, snuggle up with a good book or challenge one another to a friendly board game in the glassed nook area .</h3>\r\n[/fusion_text][/two_third][one_sixth last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][/one_sixth][/fullwidth][fullwidth background_color=\"#f0f0ed\" background_image=\"http://localhost/assagaylodge/wp-content/uploads/2015/01/Wood_Texture.jpg\" background_parallax=\"fixed\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"30\" padding_bottom=\"10\" padding_left=\"0\" padding_right=\"0\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][recent_works layout=\"grid\" picture_size=\"auto\" boxed_text=\"unboxed\" filters=\"no\" columns=\"3\" column_spacing=\"12\" cat_slug=\"the-lodge\" exclude_cats=\"\" number_posts=\"9\" offset=\"\" excerpt_length=\"35\" strip_html=\"yes\" carousel_layout=\"title_on_rollover\" scroll_items=\"\" autoplay=\"no\" show_nav=\"yes\" mouse_scroll=\"no\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" class=\"\" id=\"\"][/recent_works][/fullwidth][fullwidth background_color=\"#f0f0ed\" background_image=\"\" background_parallax=\"fixed\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"20\" padding_bottom=\"20\" padding_left=\"0px\" padding_right=\"0px\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][fusion_text]\r\n<h1 style=\"text-align: center;\">BEDROOMS</h1>\r\n[/fusion_text][separator style_type=\"single\" top_margin=\"\" bottom_margin=\"20\" sep_color=\"#000000\" border_size=\"\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"170px\" alignment=\"\" class=\"\" id=\"\"][one_sixth last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][/one_sixth][two_third last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][fusion_text]\r\n<h3 style=\"text-align: justify;\">When it comes to our bedrooms we’re proud to say we offer something a little more special. One of five  lovingly and tastefully decorated guest rooms. Soft gray decor soothes the senses providing a peaceful, blissfully comfortable rest from your travels and hectic lives.</h3>\r\n<h3 style=\"text-align: justify;\">Our  bedrooms are spacious, clean, comfortable all en-suite, equipped with either king size or queen size beds. Each room sleeps two guests. The rooms have high ceilings, wall heaters &amp; ceiling fans. Beds all have electric blankets in Winter, 100% cotton percale sheets and thick hyper allergenic microfiber duvets and pillows. All guest rooms are cleaned with organic and green products. Amenities include hairdryers in each room. Three rooms feature King-sized beds  of which two can be  split into two single beds. Two  rooms can therefore be changed into a twin room upon request. Two rooms feature a Queen-sized double bed. These beds cannot be split into twin beds.</h3>\r\n[/fusion_text][/two_third][one_sixth last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][/one_sixth][/fullwidth][fullwidth background_color=\"\" background_image=\"http://localhost/assagaylodge/wp-content/uploads/2015/01/DSC01516-1148-x-764.jpg\" background_parallax=\"fixed\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"center center\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"20\" padding_bottom=\"20\" padding_left=\"0\" padding_right=\"0\" hundred_percent=\"no\" equal_height_columns=\"yes\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][recent_works layout=\"grid\" picture_size=\"auto\" boxed_text=\"unboxed\" filters=\"no\" columns=\"3\" column_spacing=\"12\" cat_slug=\"bedrooms\" exclude_cats=\"\" number_posts=\"6\" offset=\"\" excerpt_length=\"35\" strip_html=\"yes\" carousel_layout=\"title_on_rollover\" scroll_items=\"\" autoplay=\"no\" show_nav=\"yes\" mouse_scroll=\"no\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" class=\"\" id=\"\"][/recent_works][/fullwidth][fullwidth background_color=\"#f0f0ed\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"20\" padding_bottom=\"20\" padding_left=\"0\" padding_right=\"0\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][fusion_text]\r\n<h1 style=\"text-align: center;\">GARDENS</h1>\r\n[/fusion_text][separator style_type=\"single\" top_margin=\"\" bottom_margin=\"20\" sep_color=\"#000000\" border_size=\"\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"170px\" alignment=\"\" class=\"\" id=\"\"][one_sixth last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][/one_sixth][two_third last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][fusion_text]\r\n<h3 style=\"text-align: justify;\">The garden is large and offers many secluded spots to lose yourself in a book with a glass of wine underneath the shade of a tree, listening to the sounds of the birds and smelling the beautiful flowers.</h3>\r\n[/fusion_text][/two_third][one_sixth last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][/one_sixth][recent_works layout=\"grid\" picture_size=\"auto\" boxed_text=\"boxed\" filters=\"no\" columns=\"3\" column_spacing=\"12\" cat_slug=\"gardens\" exclude_cats=\"\" number_posts=\"9\" offset=\"\" excerpt_length=\"35\" strip_html=\"yes\" carousel_layout=\"title_on_rollover\" scroll_items=\"\" autoplay=\"no\" show_nav=\"yes\" mouse_scroll=\"no\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" class=\"\" id=\"\"][/recent_works][/fullwidth][fullwidth background_color=\"#ffffff\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"65px\" padding_bottom=\"65px\" padding_left=\"0px\" padding_right=\"0px\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][button link=\"http://localhost/assagaylodge/book-now/\" color=\"default\" size=\"xlarge\" type=\"3d\" shape=\"round\" target=\"_self\" title=\"\" gradient_colors=\"#f0f0ed|#f0f0ed\" gradient_hover_colors=\"#6666a4|#6666a4\" accent_color=\"#ffffff\" accent_hover_color=\"#ffffff\" bevel_color=\"\" border_width=\"0px\" icon=\"\" icon_position=\"left\" icon_divider=\"no\" modal=\"\" animation_type=\"0\" animation_direction=\"left\" animation_speed=\"1\" alignment=\"center\" class=\"\" id=\"\"]Make A Reservation Enquiry[/button][/fullwidth][one_third last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][/one_third][two_fifth last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][/two_fifth]', 'Home', '', 'inherit', 'closed', 'closed', '', '7-revision-v1', '', '', '2016-01-26 10:07:45', '2016-01-26 08:07:45', '', 7, 'http://msla.co.za/lodge/7-revision-v1/', 0, 'revision', '', 0);
INSERT INTO `wp_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(1168, 1, '2016-01-26 10:13:54', '2016-01-26 08:13:54', '[fullwidth background_color=\"#f0f0ed\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"90px\" padding_bottom=\"0px\" padding_left=\"0px\" padding_right=\"0px\" hundred_percent=\"yes\" equal_height_columns=\"yes\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][one_sixth last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][/one_sixth][one_third last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"http://localhost/assagaylodge/wp-content/uploads/2015/01/DSC01554-e1442325082893.jpg\" background_repeat=\"no-repeat\" background_position=\"center center\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" class=\"\" id=\"\"][fusion_text]\r\n<h2 style=\"text-align: center;\">No Fancy Star Grading\r\nNo Room Service\r\nNo Bed turn downs</h2>\r\n<h2 style=\"text-align: center;\">... just old fashioned homely comforts</h2>\r\n[/fusion_text][/one_third][one_third last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"0px\" margin_top=\"\" margin_bottom=\"0px\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" class=\"special\" id=\"\"][fusion_text]\r\n<h1 style=\"text-align: justify;\">5 BEDROOM FAMILY LODGE</h1>\r\n<h3 style=\"text-align: justify;\">A Four Season Lodge, because there’s Always Something to Celebrate… We offer comfort, relaxation and exceptional service right in the heart of 1000 Hills. The Forest, the Gardens, the Atmosphere all speak to  Rest  &amp; Relaxation.</h3>\r\n[/fusion_text][separator style_type=\"single\" top_margin=\"0\" bottom_margin=\"30\" sep_color=\"#000000\" border_size=\"\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"170px\" alignment=\"left\" class=\"separator-left\" id=\"\"][modal name=\"rates\" title=\"2015 Rates\" size=\"large\" background=\"\" border_color=\"\" show_footer=\"yes\" class=\"\" id=\"\"]\r\n<table style=\"width: 100%;\" cellspacing=\"10\" cellpadding=\"5\">\r\n<tbody>\r\n<tr>\r\n<td colspan=\"2\"><span style=\"font-size: 10pt;\">ALL PRICES INCLUDE VAT </span></td>\r\n</tr>\r\n<tr>\r\n<td colspan=\"2\"><span style=\"font-size: 12pt;\"><strong>Self-Catering / Self-Servicing Accommodation</strong></span></td>\r\n</tr>\r\n<tr>\r\n<td><span style=\"font-size: 12pt;\">Full House - Max 10 persons per lodge</span></td>\r\n<td><span style=\"font-size: 12pt;\"><strong>R3250</strong> per night (R325 per person)</span></td>\r\n</tr>\r\n<tr>\r\n<td><span style=\"font-size: 12pt;\">Single - Max 1 person per room</span></td>\r\n<td><span style=\"font-size: 12pt;\"><strong>R 650</strong> per person per night</span></td>\r\n</tr>\r\n<tr>\r\n<td><span style=\"font-size: 12pt;\">Sharing - Max 2 persons per room</span></td>\r\n<td><span style=\"font-size: 12pt;\"><strong>R 495</strong> per person per night</span></td>\r\n</tr>\r\n<tr>\r\n<td></td>\r\n<td></td>\r\n</tr>\r\n<tr>\r\n<td><strong><span style=\"font-size: 12pt;\">Servicing Options</span></strong></td>\r\n<td></td>\r\n</tr>\r\n<tr>\r\n<td><span style=\"font-size: 12pt;\">Lodge Only Servicing (Optional) </span></td>\r\n<td><span style=\"font-size: 12pt;\"><strong>R30</strong> per person per day - Max <span style=\"font-size: 12pt;\"><strong>R 150 </strong>per day</span></span></td>\r\n</tr>\r\n<tr>\r\n<td><span style=\"font-size: 12pt;\">Lodge &amp; Room Servicing (Optional) </span></td>\r\n<td><span style=\"font-size: 12pt;\"><strong>R50</strong> per person per day - Max <span style=\"font-size: 12pt;\"><strong>R 250 </strong>per day</span></span></td>\r\n</tr>\r\n<tr>\r\n<td></td>\r\n<td></td>\r\n</tr>\r\n<tr>\r\n<td colspan=\"2\"><span style=\"font-size: 12pt;\"><span style=\"font-size: 12pt;\"><strong>Catering Options</strong></span> </span></td>\r\n</tr>\r\n<tr>\r\n<td><span style=\"font-size: 12pt;\"> <span style=\"font-size: 12pt;\">Breakfast (Continental)</span></span></td>\r\n<td><span style=\"font-size: 12pt;\"> <span style=\"font-size: 12pt;\"><strong>R 55</strong> per person</span></span></td>\r\n</tr>\r\n<tr>\r\n<td><span style=\"font-size: 12pt;\"> <span style=\"font-size: 12pt;\">Breakfast (Full English)</span></span></td>\r\n<td><span style=\"font-size: 12pt;\"> <span style=\"font-size: 12pt;\"><strong>R 95</strong> per person</span></span></td>\r\n</tr>\r\n<tr>\r\n<td><span style=\"font-size: 12pt;\"> <span style=\"font-size: 12pt;\">Light Lunch</span></span></td>\r\n<td><span style=\"font-size: 12pt;\">From <span style=\"font-size: 12pt;\"><strong>R 95 </strong>per person</span></span></td>\r\n</tr>\r\n<tr>\r\n<td><span style=\"font-size: 12pt;\"> <span style=\"font-size: 12pt;\">Dinners</span></span></td>\r\n<td><span style=\"font-size: 12pt;\">From <span style=\"font-size: 12pt;\"><strong>R 150 </strong>per person</span></span></td>\r\n</tr>\r\n<tr>\r\n<td></td>\r\n<td></td>\r\n</tr>\r\n<tr>\r\n<td><strong><span style=\"font-size: 12pt;\">Others</span></strong></td>\r\n<td></td>\r\n</tr>\r\n<tr>\r\n<td><span style=\"font-size: 12pt;\">Gate Remote</span></td>\r\n<td><span style=\"font-size: 12pt;\"><strong>R 200 </strong>deposit</span></td>\r\n</tr>\r\n<tr>\r\n<td><span style=\"font-size: 12pt;\">Gas Braai</span></td>\r\n<td><span style=\"font-size: 12pt;\"><strong>R 120 </strong>per day</span></td>\r\n</tr>\r\n<tr>\r\n<td><span style=\"font-size: 12pt;\">Day Visitors / Guests</span></td>\r\n<td><span style=\"font-size: 12pt;\"><strong>R 35 </strong>per person per day</span></td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n&nbsp;\r\n\r\n<hr />\r\n\r\n[/modal][button link=\"\" color=\"darkgreen\" size=\"\" type=\"\" shape=\"\" target=\"_self\" title=\"\" gradient_colors=\"|\" gradient_hover_colors=\"|\" accent_color=\"\" accent_hover_color=\"\" bevel_color=\"\" border_width=\"1px\" icon=\"\" icon_position=\"left\" icon_divider=\"no\" modal=\"rates\" animation_type=\"0\" animation_direction=\"left\" animation_speed=\"1\" alignment=\"\" class=\"\" id=\"\"]2015 RATES[/button][/one_third][one_sixth last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][/one_sixth][/fullwidth][fullwidth background_color=\"#f0f0ed\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"20\" padding_bottom=\"20\" padding_left=\"0px\" padding_right=\"0px\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][one_half last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][fusion_text]\r\n<h3 style=\"text-align: justify;\">Set in the rolling peaks and valleys of a thousand hills surrounded by a canopy of indigenous trees, you will find that horses still have right of way, we certainly offer the best of both worlds, farm and charm coupled with modern amenities that will have you feeling relaxed and rejuvenated.</h3>\r\n<h3 style=\"text-align: justify;\">We know that sometimes you are searching for a romantic getaway or maybe a few days away with old friends. Other times you are searching for a place to host a weekend, family reunion or a business retreat. In addition to nightly room rentals, our lodge is also available for meetings, retreats  and makes the perfect place for a wedding party to stay together and get ready for the big day. Regardless, with our five comfortable and cozy guest bedrooms , multiple garden spaces and hideaways, and a  large private deck  where you can take a nap or read a book we definitely have the room for you!</h3>\r\n[/fusion_text][/one_half][one_half last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][fusion_text]\r\n<h3 style=\"text-align: justify;\">Our lodge has been in our family for years and has recently been beautifully renovated. Five rooms all with en-suite showers, tea/coffee making facilities, MNet and satellite television (DSTV) open Wi-Fi. Sumptuous meals are served on the bottom deck at the swimming pool. Barbecues, afternoon tea in the garden or picnic baskets  on request all add to the service that awaits you, Our lodge features a 50 foot high Apex ceiling, spacious living, dining and bar area including a fitted kitchenette all adding to a sense of homey comfort.</h3>\r\n<h3 style=\"text-align: justify;\">Be lulled to sleep by the sound of the waterfall  and tinkling stream just outside your window, waking from a peaceful night\'s sleep in a pillow-top bed dressed in luxurious linens to coddle you in ultimate comfort.</h3>\r\n<h3 style=\"text-align: justify;\">Our property boasts many different species of birds and animals. We have a resident otter, a family of wild bush pigs,  a family of rock rabbits, porcupine, little blue duikers, a variety of different frogs and an abundance of bird life, including the occasional snakes that pass through!</h3>\r\n<h3 style=\"text-align: justify;\">Evenings are quiet and peaceful taking you far away from the business of city life. This is a unique and memorable country experience. We look forward to having you as a guest!</h3>\r\n[/fusion_text][/one_half][/fullwidth][fullwidth background_color=\"#f0f0ed\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"20\" padding_bottom=\"20\" padding_left=\"0px\" padding_right=\"0px\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][fusion_text]\r\n<h1 style=\"text-align: center;\">Gallery</h1>\r\n[/fusion_text][separator style_type=\"single\" top_margin=\"\" bottom_margin=\"40\" sep_color=\"#000000\" border_size=\"\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"170px\" alignment=\"\" class=\"\" id=\"\"][one_sixth last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][/one_sixth][two_third last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][fusion_text]\r\n<h3 style=\"text-align: justify;\">The Lodge is open, spacious, comfortable and homely. During hot summer days, sit and bask in the sun on the deck  with one of our  picnic specials. In winter, snuggle up with a good book or challenge one another to a friendly board game in the glassed nook area .</h3>\r\n[/fusion_text][/two_third][one_sixth last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][/one_sixth][/fullwidth][fullwidth background_color=\"#f0f0ed\" background_image=\"http://localhost/assagaylodge/wp-content/uploads/2015/01/Wood_Texture.jpg\" background_parallax=\"fixed\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"30\" padding_bottom=\"10\" padding_left=\"0\" padding_right=\"0\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][recent_works layout=\"grid\" picture_size=\"auto\" boxed_text=\"unboxed\" filters=\"no\" columns=\"3\" column_spacing=\"12\" cat_slug=\"the-lodge\" exclude_cats=\"\" number_posts=\"9\" offset=\"\" excerpt_length=\"35\" strip_html=\"yes\" carousel_layout=\"title_on_rollover\" scroll_items=\"\" autoplay=\"no\" show_nav=\"yes\" mouse_scroll=\"no\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" class=\"\" id=\"\"][/recent_works][/fullwidth][fullwidth background_color=\"#f0f0ed\" background_image=\"\" background_parallax=\"fixed\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"20\" padding_bottom=\"20\" padding_left=\"0px\" padding_right=\"0px\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][fusion_text]\r\n<h1 style=\"text-align: center;\">BEDROOMS</h1>\r\n[/fusion_text][separator style_type=\"single\" top_margin=\"\" bottom_margin=\"20\" sep_color=\"#000000\" border_size=\"\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"170px\" alignment=\"\" class=\"\" id=\"\"][one_sixth last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][/one_sixth][two_third last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][fusion_text]\r\n<h3 style=\"text-align: justify;\">When it comes to our bedrooms we’re proud to say we offer something a little more special. One of five  lovingly and tastefully decorated guest rooms. Soft gray decor soothes the senses providing a peaceful, blissfully comfortable rest from your travels and hectic lives.</h3>\r\n<h3 style=\"text-align: justify;\">Our  bedrooms are spacious, clean, comfortable all en-suite, equipped with either king size or queen size beds. Each room sleeps two guests. The rooms have high ceilings, wall heaters &amp; ceiling fans. Beds all have electric blankets in Winter, 100% cotton percale sheets and thick hyper allergenic microfiber duvets and pillows. All guest rooms are cleaned with organic and green products. Amenities include hairdryers in each room. Three rooms feature King-sized beds  of which two can be  split into two single beds. Two  rooms can therefore be changed into a twin room upon request. Two rooms feature a Queen-sized double bed. These beds cannot be split into twin beds.</h3>\r\n[/fusion_text][/two_third][one_sixth last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][/one_sixth][/fullwidth][fullwidth background_color=\"\" background_image=\"http://localhost/assagaylodge/wp-content/uploads/2015/01/DSC01516-1148-x-764.jpg\" background_parallax=\"fixed\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"center center\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"20\" padding_bottom=\"20\" padding_left=\"0\" padding_right=\"0\" hundred_percent=\"no\" equal_height_columns=\"yes\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][recent_works layout=\"grid\" picture_size=\"auto\" boxed_text=\"unboxed\" filters=\"no\" columns=\"3\" column_spacing=\"12\" cat_slug=\"bedrooms\" exclude_cats=\"\" number_posts=\"6\" offset=\"\" excerpt_length=\"35\" strip_html=\"yes\" carousel_layout=\"title_on_rollover\" scroll_items=\"\" autoplay=\"no\" show_nav=\"yes\" mouse_scroll=\"no\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" class=\"\" id=\"\"][/recent_works][/fullwidth][fullwidth background_color=\"#f0f0ed\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"20\" padding_bottom=\"20\" padding_left=\"0\" padding_right=\"0\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][fusion_text]\r\n<h1 style=\"text-align: center;\">GARDENS</h1>\r\n[/fusion_text][separator style_type=\"single\" top_margin=\"\" bottom_margin=\"20\" sep_color=\"#000000\" border_size=\"\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"170px\" alignment=\"\" class=\"\" id=\"\"][one_sixth last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][/one_sixth][two_third last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][fusion_text]\r\n<h3 style=\"text-align: justify;\">The garden is large and offers many secluded spots to lose yourself in a book with a glass of wine underneath the shade of a tree, listening to the sounds of the birds and smelling the beautiful flowers.</h3>\r\n[/fusion_text][/two_third][one_sixth last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][/one_sixth][recent_works layout=\"grid\" picture_size=\"auto\" boxed_text=\"boxed\" filters=\"no\" columns=\"3\" column_spacing=\"12\" cat_slug=\"gardens\" exclude_cats=\"\" number_posts=\"9\" offset=\"\" excerpt_length=\"35\" strip_html=\"yes\" carousel_layout=\"title_on_rollover\" scroll_items=\"\" autoplay=\"no\" show_nav=\"yes\" mouse_scroll=\"no\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" class=\"\" id=\"\"][/recent_works][/fullwidth][fullwidth background_color=\"#ffffff\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"65px\" padding_bottom=\"65px\" padding_left=\"0px\" padding_right=\"0px\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][button link=\"http://localhost/assagaylodge/book-now/\" color=\"default\" size=\"xlarge\" type=\"3d\" shape=\"round\" target=\"_self\" title=\"\" gradient_colors=\"#f0f0ed|#f0f0ed\" gradient_hover_colors=\"#6666a4|#6666a4\" accent_color=\"#ffffff\" accent_hover_color=\"#ffffff\" bevel_color=\"\" border_width=\"0px\" icon=\"\" icon_position=\"left\" icon_divider=\"no\" modal=\"\" animation_type=\"0\" animation_direction=\"left\" animation_speed=\"1\" alignment=\"center\" class=\"\" id=\"\"]Make A Reservation Enquiry[/button][/fullwidth][one_third last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][/one_third][two_fifth last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][/two_fifth]', 'Home', '', 'inherit', 'closed', 'closed', '', '7-revision-v1', '', '', '2016-01-26 10:13:54', '2016-01-26 08:13:54', '', 7, 'http://msla.co.za/lodge/7-revision-v1/', 0, 'revision', '', 0),
(1169, 1, '2016-01-26 10:33:36', '2016-01-26 08:33:36', '[fullwidth background_color=\"#f0f0ed\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"20\" padding_bottom=\"20\" padding_left=\"0px\" padding_right=\"0px\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][one_half last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][fusion_text]\r\n<h2 style=\"text-align: center;\">No Fancy Star Grading\r\nNo Room Service\r\nNo Bed turn downs</h2>\r\n<h2 style=\"text-align: center;\">... just old fashioned homely comforts</h2>\r\n[/fusion_text][/one_half][one_half last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][fusion_text]\r\n<h1 style=\"text-align: justify;\">5 BEDROOM FAMILY LODGE</h1>\r\n<h3 style=\"text-align: justify;\">A Four Season Lodge, because there’s Always Something to Celebrate… We offer comfort, relaxation and exceptional service right in the heart of 1000 Hills. The Forest, the Gardens, the Atmosphere all speak to  Rest  &amp; Relaxation.</h3>\r\n[/fusion_text][separator style_type=\"single\" top_margin=\"0\" bottom_margin=\"30\" sep_color=\"#000000\" border_size=\"\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"170px\" alignment=\"left\" class=\"separator-left\" id=\"\"][modal name=\"rates\" title=\"2015 Rates\" size=\"large\" background=\"\" border_color=\"\" show_footer=\"yes\" class=\"\" id=\"\"]\r\n<table style=\"width: 100%;\" cellspacing=\"10\" cellpadding=\"5\">\r\n<tbody>\r\n<tr>\r\n<td colspan=\"2\"><span style=\"font-size: 10pt;\">ALL PRICES INCLUDE VAT </span></td>\r\n</tr>\r\n<tr>\r\n<td colspan=\"2\"><span style=\"font-size: 12pt;\"><strong>Self-Catering / Self-Servicing Accommodation</strong></span></td>\r\n</tr>\r\n<tr>\r\n<td><span style=\"font-size: 12pt;\">Full House - Max 10 persons per lodge</span></td>\r\n<td><span style=\"font-size: 12pt;\"><strong>R3250</strong> per night (R325 per person)</span></td>\r\n</tr>\r\n<tr>\r\n<td><span style=\"font-size: 12pt;\">Single - Max 1 person per room</span></td>\r\n<td><span style=\"font-size: 12pt;\"><strong>R 650</strong> per person per night</span></td>\r\n</tr>\r\n<tr>\r\n<td><span style=\"font-size: 12pt;\">Sharing - Max 2 persons per room</span></td>\r\n<td><span style=\"font-size: 12pt;\"><strong>R 495</strong> per person per night</span></td>\r\n</tr>\r\n<tr>\r\n<td></td>\r\n<td></td>\r\n</tr>\r\n<tr>\r\n<td><strong><span style=\"font-size: 12pt;\">Servicing Options</span></strong></td>\r\n<td></td>\r\n</tr>\r\n<tr>\r\n<td><span style=\"font-size: 12pt;\">Lodge Only Servicing (Optional) </span></td>\r\n<td><span style=\"font-size: 12pt;\"><strong>R30</strong> per person per day - Max <span style=\"font-size: 12pt;\"><strong>R 150 </strong>per day</span></span></td>\r\n</tr>\r\n<tr>\r\n<td><span style=\"font-size: 12pt;\">Lodge &amp; Room Servicing (Optional) </span></td>\r\n<td><span style=\"font-size: 12pt;\"><strong>R50</strong> per person per day - Max <span style=\"font-size: 12pt;\"><strong>R 250 </strong>per day</span></span></td>\r\n</tr>\r\n<tr>\r\n<td></td>\r\n<td></td>\r\n</tr>\r\n<tr>\r\n<td colspan=\"2\"><span style=\"font-size: 12pt;\"><span style=\"font-size: 12pt;\"><strong>Catering Options</strong></span> </span></td>\r\n</tr>\r\n<tr>\r\n<td><span style=\"font-size: 12pt;\"> <span style=\"font-size: 12pt;\">Breakfast (Continental)</span></span></td>\r\n<td><span style=\"font-size: 12pt;\"> <span style=\"font-size: 12pt;\"><strong>R 55</strong> per person</span></span></td>\r\n</tr>\r\n<tr>\r\n<td><span style=\"font-size: 12pt;\"> <span style=\"font-size: 12pt;\">Breakfast (Full English)</span></span></td>\r\n<td><span style=\"font-size: 12pt;\"> <span style=\"font-size: 12pt;\"><strong>R 95</strong> per person</span></span></td>\r\n</tr>\r\n<tr>\r\n<td><span style=\"font-size: 12pt;\"> <span style=\"font-size: 12pt;\">Light Lunch</span></span></td>\r\n<td><span style=\"font-size: 12pt;\">From <span style=\"font-size: 12pt;\"><strong>R 95 </strong>per person</span></span></td>\r\n</tr>\r\n<tr>\r\n<td><span style=\"font-size: 12pt;\"> <span style=\"font-size: 12pt;\">Dinners</span></span></td>\r\n<td><span style=\"font-size: 12pt;\">From <span style=\"font-size: 12pt;\"><strong>R 150 </strong>per person</span></span></td>\r\n</tr>\r\n<tr>\r\n<td></td>\r\n<td></td>\r\n</tr>\r\n<tr>\r\n<td><strong><span style=\"font-size: 12pt;\">Others</span></strong></td>\r\n<td></td>\r\n</tr>\r\n<tr>\r\n<td><span style=\"font-size: 12pt;\">Gate Remote</span></td>\r\n<td><span style=\"font-size: 12pt;\"><strong>R 200 </strong>deposit</span></td>\r\n</tr>\r\n<tr>\r\n<td><span style=\"font-size: 12pt;\">Gas Braai</span></td>\r\n<td><span style=\"font-size: 12pt;\"><strong>R 120 </strong>per day</span></td>\r\n</tr>\r\n<tr>\r\n<td><span style=\"font-size: 12pt;\">Day Visitors / Guests</span></td>\r\n<td><span style=\"font-size: 12pt;\"><strong>R 35 </strong>per person per day</span></td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n&nbsp;\r\n\r\n<hr />\r\n\r\n[/modal][button link=\"\" color=\"darkgreen\" size=\"\" type=\"\" shape=\"\" target=\"_self\" title=\"\" gradient_colors=\"|\" gradient_hover_colors=\"|\" accent_color=\"\" accent_hover_color=\"\" bevel_color=\"\" border_width=\"1px\" icon=\"\" icon_position=\"left\" icon_divider=\"no\" modal=\"rates\" animation_type=\"0\" animation_direction=\"left\" animation_speed=\"1\" alignment=\"\" class=\"\" id=\"\"]2015 RATES[/button][/one_half][/fullwidth][fullwidth background_color=\"#f0f0ed\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"20\" padding_bottom=\"20\" padding_left=\"0px\" padding_right=\"0px\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][one_half last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][fusion_text]\r\n<h3 style=\"text-align: justify;\">Set in the rolling peaks and valleys of a thousand hills surrounded by a canopy of indigenous trees, you will find that horses still have right of way, we certainly offer the best of both worlds, farm and charm coupled with modern amenities that will have you feeling relaxed and rejuvenated.</h3>\r\n<h3 style=\"text-align: justify;\">We know that sometimes you are searching for a romantic getaway or maybe a few days away with old friends. Other times you are searching for a place to host a weekend, family reunion or a business retreat. In addition to nightly room rentals, our lodge is also available for meetings, retreats  and makes the perfect place for a wedding party to stay together and get ready for the big day. Regardless, with our five comfortable and cozy guest bedrooms , multiple garden spaces and hideaways, and a  large private deck  where you can take a nap or read a book we definitely have the room for you!</h3>\r\n[/fusion_text][/one_half][one_half last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][fusion_text]\r\n<h3 style=\"text-align: justify;\">Our lodge has been in our family for years and has recently been beautifully renovated. Five rooms all with en-suite showers, tea/coffee making facilities, MNet and satellite television (DSTV) open Wi-Fi. Sumptuous meals are served on the bottom deck at the swimming pool. Barbecues, afternoon tea in the garden or picnic baskets  on request all add to the service that awaits you, Our lodge features a 50 foot high Apex ceiling, spacious living, dining and bar area including a fitted kitchenette all adding to a sense of homey comfort.</h3>\r\n<h3 style=\"text-align: justify;\">Be lulled to sleep by the sound of the waterfall  and tinkling stream just outside your window, waking from a peaceful night\'s sleep in a pillow-top bed dressed in luxurious linens to coddle you in ultimate comfort.</h3>\r\n<h3 style=\"text-align: justify;\">Our property boasts many different species of birds and animals. We have a resident otter, a family of wild bush pigs,  a family of rock rabbits, porcupine, little blue duikers, a variety of different frogs and an abundance of bird life, including the occasional snakes that pass through!</h3>\r\n<h3 style=\"text-align: justify;\">Evenings are quiet and peaceful taking you far away from the business of city life. This is a unique and memorable country experience. We look forward to having you as a guest!</h3>\r\n[/fusion_text][/one_half][/fullwidth][fullwidth background_color=\"#f0f0ed\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"20\" padding_bottom=\"20\" padding_left=\"0px\" padding_right=\"0px\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][fusion_text]\r\n<h1 style=\"text-align: center;\">Gallery</h1>\r\n[/fusion_text][separator style_type=\"single\" top_margin=\"\" bottom_margin=\"40\" sep_color=\"#000000\" border_size=\"\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"170px\" alignment=\"\" class=\"\" id=\"\"][one_sixth last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][/one_sixth][two_third last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][fusion_text]\r\n<h3 style=\"text-align: justify;\">The Lodge is open, spacious, comfortable and homely. During hot summer days, sit and bask in the sun on the deck  with one of our  picnic specials. In winter, snuggle up with a good book or challenge one another to a friendly board game in the glassed nook area .</h3>\r\n[/fusion_text][/two_third][one_sixth last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][/one_sixth][/fullwidth][fullwidth background_color=\"#f0f0ed\" background_image=\"http://localhost/assagaylodge/wp-content/uploads/2015/01/Wood_Texture.jpg\" background_parallax=\"fixed\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"30\" padding_bottom=\"10\" padding_left=\"0\" padding_right=\"0\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][recent_works layout=\"grid\" picture_size=\"auto\" boxed_text=\"unboxed\" filters=\"no\" columns=\"3\" column_spacing=\"12\" cat_slug=\"the-lodge\" exclude_cats=\"\" number_posts=\"9\" offset=\"\" excerpt_length=\"35\" strip_html=\"yes\" carousel_layout=\"title_on_rollover\" scroll_items=\"\" autoplay=\"no\" show_nav=\"yes\" mouse_scroll=\"no\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" class=\"\" id=\"\"][/recent_works][/fullwidth][fullwidth background_color=\"#f0f0ed\" background_image=\"\" background_parallax=\"fixed\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"20\" padding_bottom=\"20\" padding_left=\"0px\" padding_right=\"0px\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][fusion_text]\r\n<h1 style=\"text-align: center;\">BEDROOMS</h1>\r\n[/fusion_text][separator style_type=\"single\" top_margin=\"\" bottom_margin=\"20\" sep_color=\"#000000\" border_size=\"\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"170px\" alignment=\"\" class=\"\" id=\"\"][one_sixth last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][/one_sixth][two_third last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][fusion_text]\r\n<h3 style=\"text-align: justify;\">When it comes to our bedrooms we’re proud to say we offer something a little more special. One of five  lovingly and tastefully decorated guest rooms. Soft gray decor soothes the senses providing a peaceful, blissfully comfortable rest from your travels and hectic lives.</h3>\r\n<h3 style=\"text-align: justify;\">Our  bedrooms are spacious, clean, comfortable all en-suite, equipped with either king size or queen size beds. Each room sleeps two guests. The rooms have high ceilings, wall heaters &amp; ceiling fans. Beds all have electric blankets in Winter, 100% cotton percale sheets and thick hyper allergenic microfiber duvets and pillows. All guest rooms are cleaned with organic and green products. Amenities include hairdryers in each room. Three rooms feature King-sized beds  of which two can be  split into two single beds. Two  rooms can therefore be changed into a twin room upon request. Two rooms feature a Queen-sized double bed. These beds cannot be split into twin beds.</h3>\r\n[/fusion_text][/two_third][one_sixth last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][/one_sixth][/fullwidth][fullwidth background_color=\"\" background_image=\"http://localhost/assagaylodge/wp-content/uploads/2015/01/DSC01516-1148-x-764.jpg\" background_parallax=\"fixed\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"center center\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"20\" padding_bottom=\"20\" padding_left=\"0\" padding_right=\"0\" hundred_percent=\"no\" equal_height_columns=\"yes\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][recent_works layout=\"grid\" picture_size=\"auto\" boxed_text=\"unboxed\" filters=\"no\" columns=\"3\" column_spacing=\"12\" cat_slug=\"bedrooms\" exclude_cats=\"\" number_posts=\"6\" offset=\"\" excerpt_length=\"35\" strip_html=\"yes\" carousel_layout=\"title_on_rollover\" scroll_items=\"\" autoplay=\"no\" show_nav=\"yes\" mouse_scroll=\"no\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" class=\"\" id=\"\"][/recent_works][/fullwidth][fullwidth background_color=\"#f0f0ed\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"20\" padding_bottom=\"20\" padding_left=\"0\" padding_right=\"0\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][fusion_text]\r\n<h1 style=\"text-align: center;\">GARDENS</h1>\r\n[/fusion_text][separator style_type=\"single\" top_margin=\"\" bottom_margin=\"20\" sep_color=\"#000000\" border_size=\"\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"170px\" alignment=\"\" class=\"\" id=\"\"][one_sixth last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][/one_sixth][two_third last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][fusion_text]\r\n<h3 style=\"text-align: justify;\">The garden is large and offers many secluded spots to lose yourself in a book with a glass of wine underneath the shade of a tree, listening to the sounds of the birds and smelling the beautiful flowers.</h3>\r\n[/fusion_text][/two_third][one_sixth last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][/one_sixth][recent_works layout=\"grid\" picture_size=\"auto\" boxed_text=\"boxed\" filters=\"no\" columns=\"3\" column_spacing=\"12\" cat_slug=\"gardens\" exclude_cats=\"\" number_posts=\"9\" offset=\"\" excerpt_length=\"35\" strip_html=\"yes\" carousel_layout=\"title_on_rollover\" scroll_items=\"\" autoplay=\"no\" show_nav=\"yes\" mouse_scroll=\"no\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" class=\"\" id=\"\"][/recent_works][/fullwidth][fullwidth background_color=\"#ffffff\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"65px\" padding_bottom=\"65px\" padding_left=\"0px\" padding_right=\"0px\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][button link=\"http://localhost/assagaylodge/book-now/\" color=\"default\" size=\"xlarge\" type=\"3d\" shape=\"round\" target=\"_self\" title=\"\" gradient_colors=\"#f0f0ed|#f0f0ed\" gradient_hover_colors=\"#6666a4|#6666a4\" accent_color=\"#ffffff\" accent_hover_color=\"#ffffff\" bevel_color=\"\" border_width=\"0px\" icon=\"\" icon_position=\"left\" icon_divider=\"no\" modal=\"\" animation_type=\"0\" animation_direction=\"left\" animation_speed=\"1\" alignment=\"center\" class=\"\" id=\"\"]Make A Reservation Enquiry[/button][/fullwidth][one_third last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][/one_third][two_fifth last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][/two_fifth]', 'Home', '', 'inherit', 'closed', 'closed', '', '7-revision-v1', '', '', '2016-01-26 10:33:36', '2016-01-26 08:33:36', '', 7, 'http://msla.co.za/lodge/7-revision-v1/', 0, 'revision', '', 0);
INSERT INTO `wp_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(1170, 1, '2016-01-26 10:39:21', '2016-01-26 08:39:21', '[fullwidth background_color=\"#f0f0ed\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"20\" padding_bottom=\"20\" padding_left=\"0px\" padding_right=\"0px\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][one_half last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][separator style_type=\"none\" top_margin=\"\" bottom_margin=\"\" sep_color=\"\" border_size=\"\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"\" alignment=\"\" class=\"\" id=\"\"][fusion_text]\r\n<h2 style=\"text-align: center;\">No Fancy Star Grading\r\nNo Room Service\r\nNo Bed Turn-downs\r\nNo Rose Petals in the Bath water</h2>\r\n<h2 style=\"text-align: center;\">... just old fashioned homely comforts</h2>\r\n[/fusion_text][/one_half][one_half last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][fusion_text]\r\n<h1 style=\"text-align: justify;\">5 BEDROOM FAMILY LODGE</h1>\r\n<h3 style=\"text-align: justify;\">A Four Season Lodge, because there’s Always Something to Celebrate… We offer comfort, relaxation and exceptional service right in the heart of 1000 Hills. The Forest, the Gardens, the Atmosphere all speak to  Rest  &amp; Relaxation.</h3>\r\n[/fusion_text][separator style_type=\"single\" top_margin=\"0\" bottom_margin=\"30\" sep_color=\"#000000\" border_size=\"\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"170px\" alignment=\"left\" class=\"separator-left\" id=\"\"][modal name=\"rates\" title=\"2015 Rates\" size=\"large\" background=\"\" border_color=\"\" show_footer=\"yes\" class=\"\" id=\"\"]\r\n<table style=\"width: 100%;\" cellspacing=\"10\" cellpadding=\"5\">\r\n<tbody>\r\n<tr>\r\n<td colspan=\"2\"><span style=\"font-size: 10pt;\">ALL PRICES INCLUDE VAT </span></td>\r\n</tr>\r\n<tr>\r\n<td colspan=\"2\"><span style=\"font-size: 12pt;\"><strong>Self-Catering / Self-Servicing Accommodation</strong></span></td>\r\n</tr>\r\n<tr>\r\n<td><span style=\"font-size: 12pt;\">Full House - Max 10 persons per lodge</span></td>\r\n<td><span style=\"font-size: 12pt;\"><strong>R3250</strong> per night (R325 per person)</span></td>\r\n</tr>\r\n<tr>\r\n<td><span style=\"font-size: 12pt;\">Single - Max 1 person per room</span></td>\r\n<td><span style=\"font-size: 12pt;\"><strong>R 650</strong> per person per night</span></td>\r\n</tr>\r\n<tr>\r\n<td><span style=\"font-size: 12pt;\">Sharing - Max 2 persons per room</span></td>\r\n<td><span style=\"font-size: 12pt;\"><strong>R 495</strong> per person per night</span></td>\r\n</tr>\r\n<tr>\r\n<td></td>\r\n<td></td>\r\n</tr>\r\n<tr>\r\n<td><strong><span style=\"font-size: 12pt;\">Servicing Options</span></strong></td>\r\n<td></td>\r\n</tr>\r\n<tr>\r\n<td><span style=\"font-size: 12pt;\">Lodge Only Servicing (Optional) </span></td>\r\n<td><span style=\"font-size: 12pt;\"><strong>R30</strong> per person per day - Max <span style=\"font-size: 12pt;\"><strong>R 150 </strong>per day</span></span></td>\r\n</tr>\r\n<tr>\r\n<td><span style=\"font-size: 12pt;\">Lodge &amp; Room Servicing (Optional) </span></td>\r\n<td><span style=\"font-size: 12pt;\"><strong>R50</strong> per person per day - Max <span style=\"font-size: 12pt;\"><strong>R 250 </strong>per day</span></span></td>\r\n</tr>\r\n<tr>\r\n<td></td>\r\n<td></td>\r\n</tr>\r\n<tr>\r\n<td colspan=\"2\"><span style=\"font-size: 12pt;\"><span style=\"font-size: 12pt;\"><strong>Catering Options</strong></span> </span></td>\r\n</tr>\r\n<tr>\r\n<td><span style=\"font-size: 12pt;\"> <span style=\"font-size: 12pt;\">Breakfast (Continental)</span></span></td>\r\n<td><span style=\"font-size: 12pt;\"> <span style=\"font-size: 12pt;\"><strong>R 55</strong> per person</span></span></td>\r\n</tr>\r\n<tr>\r\n<td><span style=\"font-size: 12pt;\"> <span style=\"font-size: 12pt;\">Breakfast (Full English)</span></span></td>\r\n<td><span style=\"font-size: 12pt;\"> <span style=\"font-size: 12pt;\"><strong>R 95</strong> per person</span></span></td>\r\n</tr>\r\n<tr>\r\n<td><span style=\"font-size: 12pt;\"> <span style=\"font-size: 12pt;\">Light Lunch</span></span></td>\r\n<td><span style=\"font-size: 12pt;\">From <span style=\"font-size: 12pt;\"><strong>R 95 </strong>per person</span></span></td>\r\n</tr>\r\n<tr>\r\n<td><span style=\"font-size: 12pt;\"> <span style=\"font-size: 12pt;\">Dinners</span></span></td>\r\n<td><span style=\"font-size: 12pt;\">From <span style=\"font-size: 12pt;\"><strong>R 150 </strong>per person</span></span></td>\r\n</tr>\r\n<tr>\r\n<td></td>\r\n<td></td>\r\n</tr>\r\n<tr>\r\n<td><strong><span style=\"font-size: 12pt;\">Others</span></strong></td>\r\n<td></td>\r\n</tr>\r\n<tr>\r\n<td><span style=\"font-size: 12pt;\">Gate Remote</span></td>\r\n<td><span style=\"font-size: 12pt;\"><strong>R 200 </strong>deposit</span></td>\r\n</tr>\r\n<tr>\r\n<td><span style=\"font-size: 12pt;\">Gas Braai</span></td>\r\n<td><span style=\"font-size: 12pt;\"><strong>R 120 </strong>per day</span></td>\r\n</tr>\r\n<tr>\r\n<td><span style=\"font-size: 12pt;\">Day Visitors / Guests</span></td>\r\n<td><span style=\"font-size: 12pt;\"><strong>R 35 </strong>per person per day</span></td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n&nbsp;\r\n\r\n<hr />\r\n\r\n[/modal][button link=\"\" color=\"darkgreen\" size=\"\" type=\"\" shape=\"\" target=\"_self\" title=\"\" gradient_colors=\"|\" gradient_hover_colors=\"|\" accent_color=\"\" accent_hover_color=\"\" bevel_color=\"\" border_width=\"1px\" icon=\"\" icon_position=\"left\" icon_divider=\"no\" modal=\"rates\" animation_type=\"0\" animation_direction=\"left\" animation_speed=\"1\" alignment=\"\" class=\"\" id=\"\"]2015 RATES[/button][/one_half][/fullwidth][fullwidth background_color=\"#f0f0ed\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"20\" padding_bottom=\"20\" padding_left=\"0px\" padding_right=\"0px\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][one_half last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][fusion_text]\r\n<h3 style=\"text-align: justify;\">Set in the rolling peaks and valleys of a thousand hills surrounded by a canopy of indigenous trees, you will find that horses still have right of way, we certainly offer the best of both worlds, farm and charm coupled with modern amenities that will have you feeling relaxed and rejuvenated.</h3>\r\n<h3 style=\"text-align: justify;\">We know that sometimes you are searching for a romantic getaway or maybe a few days away with old friends. Other times you are searching for a place to host a weekend, family reunion or a business retreat. In addition to nightly room rentals, our lodge is also available for meetings, retreats  and makes the perfect place for a wedding party to stay together and get ready for the big day. Regardless, with our five comfortable and cozy guest bedrooms , multiple garden spaces and hideaways, and a  large private deck  where you can take a nap or read a book we definitely have the room for you!</h3>\r\n[/fusion_text][/one_half][one_half last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][fusion_text]\r\n<h3 style=\"text-align: justify;\">Our lodge has been in our family for years and has recently been beautifully renovated. Five rooms all with en-suite showers, tea/coffee making facilities, MNet and satellite television (DSTV) open Wi-Fi. Sumptuous meals are served on the bottom deck at the swimming pool. Barbecues, afternoon tea in the garden or picnic baskets  on request all add to the service that awaits you, Our lodge features a 50 foot high Apex ceiling, spacious living, dining and bar area including a fitted kitchenette all adding to a sense of homey comfort.</h3>\r\n<h3 style=\"text-align: justify;\">Be lulled to sleep by the sound of the waterfall  and tinkling stream just outside your window, waking from a peaceful night\'s sleep in a pillow-top bed dressed in luxurious linens to coddle you in ultimate comfort.</h3>\r\n<h3 style=\"text-align: justify;\">Our property boasts many different species of birds and animals. We have a resident otter, a family of wild bush pigs,  a family of rock rabbits, porcupine, little blue duikers, a variety of different frogs and an abundance of bird life, including the occasional snakes that pass through!</h3>\r\n<h3 style=\"text-align: justify;\">Evenings are quiet and peaceful taking you far away from the business of city life. This is a unique and memorable country experience. We look forward to having you as a guest!</h3>\r\n[/fusion_text][/one_half][/fullwidth][fullwidth background_color=\"#f0f0ed\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"20\" padding_bottom=\"20\" padding_left=\"0px\" padding_right=\"0px\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][fusion_text]\r\n<h1 style=\"text-align: center;\">Gallery</h1>\r\n[/fusion_text][separator style_type=\"single\" top_margin=\"\" bottom_margin=\"40\" sep_color=\"#000000\" border_size=\"\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"170px\" alignment=\"\" class=\"\" id=\"\"][one_sixth last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][/one_sixth][two_third last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][fusion_text]\r\n<h3 style=\"text-align: justify;\">The Lodge is open, spacious, comfortable and homely. During hot summer days, sit and bask in the sun on the deck  with one of our  picnic specials. In winter, snuggle up with a good book or challenge one another to a friendly board game in the glassed nook area .</h3>\r\n[/fusion_text][/two_third][one_sixth last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][/one_sixth][/fullwidth][fullwidth background_color=\"#f0f0ed\" background_image=\"http://localhost/assagaylodge/wp-content/uploads/2015/01/Wood_Texture.jpg\" background_parallax=\"fixed\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"30\" padding_bottom=\"10\" padding_left=\"0\" padding_right=\"0\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][recent_works layout=\"grid\" picture_size=\"auto\" boxed_text=\"unboxed\" filters=\"no\" columns=\"3\" column_spacing=\"12\" cat_slug=\"the-lodge\" exclude_cats=\"\" number_posts=\"9\" offset=\"\" excerpt_length=\"35\" strip_html=\"yes\" carousel_layout=\"title_on_rollover\" scroll_items=\"\" autoplay=\"no\" show_nav=\"yes\" mouse_scroll=\"no\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" class=\"\" id=\"\"][/recent_works][/fullwidth][fullwidth background_color=\"#f0f0ed\" background_image=\"\" background_parallax=\"fixed\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"20\" padding_bottom=\"20\" padding_left=\"0px\" padding_right=\"0px\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][fusion_text]\r\n<h1 style=\"text-align: center;\">BEDROOMS</h1>\r\n[/fusion_text][separator style_type=\"single\" top_margin=\"\" bottom_margin=\"20\" sep_color=\"#000000\" border_size=\"\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"170px\" alignment=\"\" class=\"\" id=\"\"][one_sixth last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][/one_sixth][two_third last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][fusion_text]\r\n<h3 style=\"text-align: justify;\">When it comes to our bedrooms we’re proud to say we offer something a little more special. One of five  lovingly and tastefully decorated guest rooms. Soft gray decor soothes the senses providing a peaceful, blissfully comfortable rest from your travels and hectic lives.</h3>\r\n<h3 style=\"text-align: justify;\">Our  bedrooms are spacious, clean, comfortable all en-suite, equipped with either king size or queen size beds. Each room sleeps two guests. The rooms have high ceilings, wall heaters &amp; ceiling fans. Beds all have electric blankets in Winter, 100% cotton percale sheets and thick hyper allergenic microfiber duvets and pillows. All guest rooms are cleaned with organic and green products. Amenities include hairdryers in each room. Three rooms feature King-sized beds  of which two can be  split into two single beds. Two  rooms can therefore be changed into a twin room upon request. Two rooms feature a Queen-sized double bed. These beds cannot be split into twin beds.</h3>\r\n[/fusion_text][/two_third][one_sixth last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][/one_sixth][/fullwidth][fullwidth background_color=\"\" background_image=\"http://localhost/assagaylodge/wp-content/uploads/2015/01/DSC01516-1148-x-764.jpg\" background_parallax=\"fixed\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"center center\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"20\" padding_bottom=\"20\" padding_left=\"0\" padding_right=\"0\" hundred_percent=\"no\" equal_height_columns=\"yes\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][recent_works layout=\"grid\" picture_size=\"auto\" boxed_text=\"unboxed\" filters=\"no\" columns=\"3\" column_spacing=\"12\" cat_slug=\"bedrooms\" exclude_cats=\"\" number_posts=\"6\" offset=\"\" excerpt_length=\"35\" strip_html=\"yes\" carousel_layout=\"title_on_rollover\" scroll_items=\"\" autoplay=\"no\" show_nav=\"yes\" mouse_scroll=\"no\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" class=\"\" id=\"\"][/recent_works][/fullwidth][fullwidth background_color=\"#f0f0ed\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"20\" padding_bottom=\"20\" padding_left=\"0\" padding_right=\"0\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][fusion_text]\r\n<h1 style=\"text-align: center;\">GARDENS</h1>\r\n[/fusion_text][separator style_type=\"single\" top_margin=\"\" bottom_margin=\"20\" sep_color=\"#000000\" border_size=\"\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"170px\" alignment=\"\" class=\"\" id=\"\"][one_sixth last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][/one_sixth][two_third last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][fusion_text]\r\n<h3 style=\"text-align: justify;\">The garden is large and offers many secluded spots to lose yourself in a book with a glass of wine underneath the shade of a tree, listening to the sounds of the birds and smelling the beautiful flowers.</h3>\r\n[/fusion_text][/two_third][one_sixth last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][/one_sixth][recent_works layout=\"grid\" picture_size=\"auto\" boxed_text=\"boxed\" filters=\"no\" columns=\"3\" column_spacing=\"12\" cat_slug=\"gardens\" exclude_cats=\"\" number_posts=\"9\" offset=\"\" excerpt_length=\"35\" strip_html=\"yes\" carousel_layout=\"title_on_rollover\" scroll_items=\"\" autoplay=\"no\" show_nav=\"yes\" mouse_scroll=\"no\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" class=\"\" id=\"\"][/recent_works][/fullwidth][fullwidth background_color=\"#ffffff\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"65px\" padding_bottom=\"65px\" padding_left=\"0px\" padding_right=\"0px\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][button link=\"http://localhost/assagaylodge/book-now/\" color=\"default\" size=\"xlarge\" type=\"3d\" shape=\"round\" target=\"_self\" title=\"\" gradient_colors=\"#f0f0ed|#f0f0ed\" gradient_hover_colors=\"#6666a4|#6666a4\" accent_color=\"#ffffff\" accent_hover_color=\"#ffffff\" bevel_color=\"\" border_width=\"0px\" icon=\"\" icon_position=\"left\" icon_divider=\"no\" modal=\"\" animation_type=\"0\" animation_direction=\"left\" animation_speed=\"1\" alignment=\"center\" class=\"\" id=\"\"]Make A Reservation Enquiry[/button][/fullwidth][one_third last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][/one_third][two_fifth last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][/two_fifth]', 'Home', '', 'inherit', 'closed', 'closed', '', '7-revision-v1', '', '', '2016-01-26 10:39:21', '2016-01-26 08:39:21', '', 7, 'http://msla.co.za/lodge/7-revision-v1/', 0, 'revision', '', 0),
(1171, 1, '2016-01-26 10:40:57', '2016-01-26 08:40:57', '[fullwidth background_color=\"#f0f0ed\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"20\" padding_bottom=\"20\" padding_left=\"0px\" padding_right=\"0px\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][one_half last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][separator style_type=\"single\" top_margin=\"0\" bottom_margin=\"30\" sep_color=\"#000000\" border_size=\"\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"170px\" alignment=\"left\" class=\"separator-left\" id=\"\"][fusion_text]\r\n<h2 style=\"text-align: center;\">No Fancy Star Grading\r\nNo Room Service\r\nNo Bed Turn-downs\r\nNo Rose Petals in the Bath water</h2>\r\n<h2 style=\"text-align: center;\">... just old fashioned homely comforts</h2>\r\n[/fusion_text][/one_half][one_half last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][fusion_text]\r\n<h1 style=\"text-align: justify;\">5 BEDROOM FAMILY LODGE</h1>\r\n<h3 style=\"text-align: justify;\">A Four Season Lodge, because there’s Always Something to Celebrate… We offer comfort, relaxation and exceptional service right in the heart of 1000 Hills. The Forest, the Gardens, the Atmosphere all speak to  Rest  &amp; Relaxation.</h3>\r\n[/fusion_text][modal name=\"rates\" title=\"2015 Rates\" size=\"large\" background=\"\" border_color=\"\" show_footer=\"yes\" class=\"\" id=\"\"]\r\n<table style=\"width: 100%;\" cellspacing=\"10\" cellpadding=\"5\">\r\n<tbody>\r\n<tr>\r\n<td colspan=\"2\"><span style=\"font-size: 10pt;\">ALL PRICES INCLUDE VAT </span></td>\r\n</tr>\r\n<tr>\r\n<td colspan=\"2\"><span style=\"font-size: 12pt;\"><strong>Self-Catering / Self-Servicing Accommodation</strong></span></td>\r\n</tr>\r\n<tr>\r\n<td><span style=\"font-size: 12pt;\">Full House - Max 10 persons per lodge</span></td>\r\n<td><span style=\"font-size: 12pt;\"><strong>R3250</strong> per night (R325 per person)</span></td>\r\n</tr>\r\n<tr>\r\n<td><span style=\"font-size: 12pt;\">Single - Max 1 person per room</span></td>\r\n<td><span style=\"font-size: 12pt;\"><strong>R 650</strong> per person per night</span></td>\r\n</tr>\r\n<tr>\r\n<td><span style=\"font-size: 12pt;\">Sharing - Max 2 persons per room</span></td>\r\n<td><span style=\"font-size: 12pt;\"><strong>R 495</strong> per person per night</span></td>\r\n</tr>\r\n<tr>\r\n<td></td>\r\n<td></td>\r\n</tr>\r\n<tr>\r\n<td><strong><span style=\"font-size: 12pt;\">Servicing Options</span></strong></td>\r\n<td></td>\r\n</tr>\r\n<tr>\r\n<td><span style=\"font-size: 12pt;\">Lodge Only Servicing (Optional) </span></td>\r\n<td><span style=\"font-size: 12pt;\"><strong>R30</strong> per person per day - Max <span style=\"font-size: 12pt;\"><strong>R 150 </strong>per day</span></span></td>\r\n</tr>\r\n<tr>\r\n<td><span style=\"font-size: 12pt;\">Lodge &amp; Room Servicing (Optional) </span></td>\r\n<td><span style=\"font-size: 12pt;\"><strong>R50</strong> per person per day - Max <span style=\"font-size: 12pt;\"><strong>R 250 </strong>per day</span></span></td>\r\n</tr>\r\n<tr>\r\n<td></td>\r\n<td></td>\r\n</tr>\r\n<tr>\r\n<td colspan=\"2\"><span style=\"font-size: 12pt;\"><span style=\"font-size: 12pt;\"><strong>Catering Options</strong></span> </span></td>\r\n</tr>\r\n<tr>\r\n<td><span style=\"font-size: 12pt;\"> <span style=\"font-size: 12pt;\">Breakfast (Continental)</span></span></td>\r\n<td><span style=\"font-size: 12pt;\"> <span style=\"font-size: 12pt;\"><strong>R 55</strong> per person</span></span></td>\r\n</tr>\r\n<tr>\r\n<td><span style=\"font-size: 12pt;\"> <span style=\"font-size: 12pt;\">Breakfast (Full English)</span></span></td>\r\n<td><span style=\"font-size: 12pt;\"> <span style=\"font-size: 12pt;\"><strong>R 95</strong> per person</span></span></td>\r\n</tr>\r\n<tr>\r\n<td><span style=\"font-size: 12pt;\"> <span style=\"font-size: 12pt;\">Light Lunch</span></span></td>\r\n<td><span style=\"font-size: 12pt;\">From <span style=\"font-size: 12pt;\"><strong>R 95 </strong>per person</span></span></td>\r\n</tr>\r\n<tr>\r\n<td><span style=\"font-size: 12pt;\"> <span style=\"font-size: 12pt;\">Dinners</span></span></td>\r\n<td><span style=\"font-size: 12pt;\">From <span style=\"font-size: 12pt;\"><strong>R 150 </strong>per person</span></span></td>\r\n</tr>\r\n<tr>\r\n<td></td>\r\n<td></td>\r\n</tr>\r\n<tr>\r\n<td><strong><span style=\"font-size: 12pt;\">Others</span></strong></td>\r\n<td></td>\r\n</tr>\r\n<tr>\r\n<td><span style=\"font-size: 12pt;\">Gate Remote</span></td>\r\n<td><span style=\"font-size: 12pt;\"><strong>R 200 </strong>deposit</span></td>\r\n</tr>\r\n<tr>\r\n<td><span style=\"font-size: 12pt;\">Gas Braai</span></td>\r\n<td><span style=\"font-size: 12pt;\"><strong>R 120 </strong>per day</span></td>\r\n</tr>\r\n<tr>\r\n<td><span style=\"font-size: 12pt;\">Day Visitors / Guests</span></td>\r\n<td><span style=\"font-size: 12pt;\"><strong>R 35 </strong>per person per day</span></td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n&nbsp;\r\n\r\n<hr />\r\n\r\n[/modal][button link=\"\" color=\"darkgreen\" size=\"\" type=\"\" shape=\"\" target=\"_self\" title=\"\" gradient_colors=\"|\" gradient_hover_colors=\"|\" accent_color=\"\" accent_hover_color=\"\" bevel_color=\"\" border_width=\"1px\" icon=\"\" icon_position=\"left\" icon_divider=\"no\" modal=\"rates\" animation_type=\"0\" animation_direction=\"left\" animation_speed=\"1\" alignment=\"\" class=\"\" id=\"\"]2015 RATES[/button][separator style_type=\"single\" top_margin=\"0\" bottom_margin=\"30\" sep_color=\"#000000\" border_size=\"\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"170px\" alignment=\"left\" class=\"separator-left\" id=\"\"][/one_half][/fullwidth][fullwidth background_color=\"#f0f0ed\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"20\" padding_bottom=\"20\" padding_left=\"0px\" padding_right=\"0px\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][one_half last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][fusion_text]\r\n<h3 style=\"text-align: justify;\">Set in the rolling peaks and valleys of a thousand hills surrounded by a canopy of indigenous trees, you will find that horses still have right of way, we certainly offer the best of both worlds, farm and charm coupled with modern amenities that will have you feeling relaxed and rejuvenated.</h3>\r\n<h3 style=\"text-align: justify;\">We know that sometimes you are searching for a romantic getaway or maybe a few days away with old friends. Other times you are searching for a place to host a weekend, family reunion or a business retreat. In addition to nightly room rentals, our lodge is also available for meetings, retreats  and makes the perfect place for a wedding party to stay together and get ready for the big day. Regardless, with our five comfortable and cozy guest bedrooms , multiple garden spaces and hideaways, and a  large private deck  where you can take a nap or read a book we definitely have the room for you!</h3>\r\n[/fusion_text][/one_half][one_half last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][fusion_text]\r\n<h3 style=\"text-align: justify;\">Our lodge has been in our family for years and has recently been beautifully renovated. Five rooms all with en-suite showers, tea/coffee making facilities, MNet and satellite television (DSTV) open Wi-Fi. Sumptuous meals are served on the bottom deck at the swimming pool. Barbecues, afternoon tea in the garden or picnic baskets  on request all add to the service that awaits you, Our lodge features a 50 foot high Apex ceiling, spacious living, dining and bar area including a fitted kitchenette all adding to a sense of homey comfort.</h3>\r\n<h3 style=\"text-align: justify;\">Be lulled to sleep by the sound of the waterfall  and tinkling stream just outside your window, waking from a peaceful night\'s sleep in a pillow-top bed dressed in luxurious linens to coddle you in ultimate comfort.</h3>\r\n<h3 style=\"text-align: justify;\">Our property boasts many different species of birds and animals. We have a resident otter, a family of wild bush pigs,  a family of rock rabbits, porcupine, little blue duikers, a variety of different frogs and an abundance of bird life, including the occasional snakes that pass through!</h3>\r\n<h3 style=\"text-align: justify;\">Evenings are quiet and peaceful taking you far away from the business of city life. This is a unique and memorable country experience. We look forward to having you as a guest!</h3>\r\n[/fusion_text][/one_half][/fullwidth][fullwidth background_color=\"#f0f0ed\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"20\" padding_bottom=\"20\" padding_left=\"0px\" padding_right=\"0px\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][fusion_text]\r\n<h1 style=\"text-align: center;\">Gallery</h1>\r\n[/fusion_text][separator style_type=\"single\" top_margin=\"\" bottom_margin=\"40\" sep_color=\"#000000\" border_size=\"\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"170px\" alignment=\"\" class=\"\" id=\"\"][one_sixth last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][/one_sixth][two_third last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][fusion_text]\r\n<h3 style=\"text-align: justify;\">The Lodge is open, spacious, comfortable and homely. During hot summer days, sit and bask in the sun on the deck  with one of our  picnic specials. In winter, snuggle up with a good book or challenge one another to a friendly board game in the glassed nook area .</h3>\r\n[/fusion_text][/two_third][one_sixth last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][/one_sixth][/fullwidth][fullwidth background_color=\"#f0f0ed\" background_image=\"http://localhost/assagaylodge/wp-content/uploads/2015/01/Wood_Texture.jpg\" background_parallax=\"fixed\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"30\" padding_bottom=\"10\" padding_left=\"0\" padding_right=\"0\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][recent_works layout=\"grid\" picture_size=\"auto\" boxed_text=\"unboxed\" filters=\"no\" columns=\"3\" column_spacing=\"12\" cat_slug=\"the-lodge\" exclude_cats=\"\" number_posts=\"9\" offset=\"\" excerpt_length=\"35\" strip_html=\"yes\" carousel_layout=\"title_on_rollover\" scroll_items=\"\" autoplay=\"no\" show_nav=\"yes\" mouse_scroll=\"no\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" class=\"\" id=\"\"][/recent_works][/fullwidth][fullwidth background_color=\"#f0f0ed\" background_image=\"\" background_parallax=\"fixed\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"20\" padding_bottom=\"20\" padding_left=\"0px\" padding_right=\"0px\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][fusion_text]\r\n<h1 style=\"text-align: center;\">BEDROOMS</h1>\r\n[/fusion_text][separator style_type=\"single\" top_margin=\"\" bottom_margin=\"20\" sep_color=\"#000000\" border_size=\"\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"170px\" alignment=\"\" class=\"\" id=\"\"][one_sixth last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][/one_sixth][two_third last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][fusion_text]\r\n<h3 style=\"text-align: justify;\">When it comes to our bedrooms we’re proud to say we offer something a little more special. One of five  lovingly and tastefully decorated guest rooms. Soft gray decor soothes the senses providing a peaceful, blissfully comfortable rest from your travels and hectic lives.</h3>\r\n<h3 style=\"text-align: justify;\">Our  bedrooms are spacious, clean, comfortable all en-suite, equipped with either king size or queen size beds. Each room sleeps two guests. The rooms have high ceilings, wall heaters &amp; ceiling fans. Beds all have electric blankets in Winter, 100% cotton percale sheets and thick hyper allergenic microfiber duvets and pillows. All guest rooms are cleaned with organic and green products. Amenities include hairdryers in each room. Three rooms feature King-sized beds  of which two can be  split into two single beds. Two  rooms can therefore be changed into a twin room upon request. Two rooms feature a Queen-sized double bed. These beds cannot be split into twin beds.</h3>\r\n[/fusion_text][/two_third][one_sixth last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][/one_sixth][/fullwidth][fullwidth background_color=\"\" background_image=\"http://localhost/assagaylodge/wp-content/uploads/2015/01/DSC01516-1148-x-764.jpg\" background_parallax=\"fixed\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"center center\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"20\" padding_bottom=\"20\" padding_left=\"0\" padding_right=\"0\" hundred_percent=\"no\" equal_height_columns=\"yes\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][recent_works layout=\"grid\" picture_size=\"auto\" boxed_text=\"unboxed\" filters=\"no\" columns=\"3\" column_spacing=\"12\" cat_slug=\"bedrooms\" exclude_cats=\"\" number_posts=\"6\" offset=\"\" excerpt_length=\"35\" strip_html=\"yes\" carousel_layout=\"title_on_rollover\" scroll_items=\"\" autoplay=\"no\" show_nav=\"yes\" mouse_scroll=\"no\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" class=\"\" id=\"\"][/recent_works][/fullwidth][fullwidth background_color=\"#f0f0ed\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"20\" padding_bottom=\"20\" padding_left=\"0\" padding_right=\"0\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][fusion_text]\r\n<h1 style=\"text-align: center;\">GARDENS</h1>\r\n[/fusion_text][separator style_type=\"single\" top_margin=\"\" bottom_margin=\"20\" sep_color=\"#000000\" border_size=\"\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"170px\" alignment=\"\" class=\"\" id=\"\"][one_sixth last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][/one_sixth][two_third last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][fusion_text]\r\n<h3 style=\"text-align: justify;\">The garden is large and offers many secluded spots to lose yourself in a book with a glass of wine underneath the shade of a tree, listening to the sounds of the birds and smelling the beautiful flowers.</h3>\r\n[/fusion_text][/two_third][one_sixth last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][/one_sixth][recent_works layout=\"grid\" picture_size=\"auto\" boxed_text=\"boxed\" filters=\"no\" columns=\"3\" column_spacing=\"12\" cat_slug=\"gardens\" exclude_cats=\"\" number_posts=\"9\" offset=\"\" excerpt_length=\"35\" strip_html=\"yes\" carousel_layout=\"title_on_rollover\" scroll_items=\"\" autoplay=\"no\" show_nav=\"yes\" mouse_scroll=\"no\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" class=\"\" id=\"\"][/recent_works][/fullwidth][fullwidth background_color=\"#ffffff\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"65px\" padding_bottom=\"65px\" padding_left=\"0px\" padding_right=\"0px\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][button link=\"http://localhost/assagaylodge/book-now/\" color=\"default\" size=\"xlarge\" type=\"3d\" shape=\"round\" target=\"_self\" title=\"\" gradient_colors=\"#f0f0ed|#f0f0ed\" gradient_hover_colors=\"#6666a4|#6666a4\" accent_color=\"#ffffff\" accent_hover_color=\"#ffffff\" bevel_color=\"\" border_width=\"0px\" icon=\"\" icon_position=\"left\" icon_divider=\"no\" modal=\"\" animation_type=\"0\" animation_direction=\"left\" animation_speed=\"1\" alignment=\"center\" class=\"\" id=\"\"]Make A Reservation Enquiry[/button][/fullwidth][one_third last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][/one_third][two_fifth last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][/two_fifth]', 'Home', '', 'inherit', 'closed', 'closed', '', '7-revision-v1', '', '', '2016-01-26 10:40:57', '2016-01-26 08:40:57', '', 7, 'http://msla.co.za/lodge/7-revision-v1/', 0, 'revision', '', 0);
INSERT INTO `wp_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(1172, 1, '2016-01-26 10:42:29', '2016-01-26 08:42:29', '[fullwidth background_color=\"#f0f0ed\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"20\" padding_bottom=\"20\" padding_left=\"0px\" padding_right=\"0px\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][one_half last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][separator style_type=\"single\" top_margin=\"0\" bottom_margin=\"30\" sep_color=\"#000000\" border_size=\"\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"170px\" alignment=\"center\" class=\"separator-left\" id=\"\"][fusion_text]\r\n<h2 style=\"text-align: center;\">No Fancy Star Grading\r\nNo Room Service\r\nNo Bed Turn-downs\r\nNo Rose Petals in the Bath water</h2>\r\n<h2 style=\"text-align: center;\">... just old fashioned homely comforts</h2>\r\n[/fusion_text][/one_half][one_half last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][fusion_text]\r\n<h1 style=\"text-align: justify;\">5 BEDROOM FAMILY LODGE</h1>\r\n<h3 style=\"text-align: justify;\">A Four Season Lodge, because there’s Always Something to Celebrate… We offer comfort, relaxation and exceptional service right in the heart of 1000 Hills. The Forest, the Gardens, the Atmosphere all speak to  Rest  &amp; Relaxation.</h3>\r\n[/fusion_text][separator style_type=\"single\" top_margin=\"0\" bottom_margin=\"30\" sep_color=\"#000000\" border_size=\"\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"170px\" alignment=\"left\" class=\"separator-left\" id=\"\"][modal name=\"rates\" title=\"2015 Rates\" size=\"large\" background=\"\" border_color=\"\" show_footer=\"yes\" class=\"\" id=\"\"]\r\n<table style=\"width: 100%;\" cellspacing=\"10\" cellpadding=\"5\">\r\n<tbody>\r\n<tr>\r\n<td colspan=\"2\"><span style=\"font-size: 10pt;\">ALL PRICES INCLUDE VAT </span></td>\r\n</tr>\r\n<tr>\r\n<td colspan=\"2\"><span style=\"font-size: 12pt;\"><strong>Self-Catering / Self-Servicing Accommodation</strong></span></td>\r\n</tr>\r\n<tr>\r\n<td><span style=\"font-size: 12pt;\">Full House - Max 10 persons per lodge</span></td>\r\n<td><span style=\"font-size: 12pt;\"><strong>R3250</strong> per night (R325 per person)</span></td>\r\n</tr>\r\n<tr>\r\n<td><span style=\"font-size: 12pt;\">Single - Max 1 person per room</span></td>\r\n<td><span style=\"font-size: 12pt;\"><strong>R 650</strong> per person per night</span></td>\r\n</tr>\r\n<tr>\r\n<td><span style=\"font-size: 12pt;\">Sharing - Max 2 persons per room</span></td>\r\n<td><span style=\"font-size: 12pt;\"><strong>R 495</strong> per person per night</span></td>\r\n</tr>\r\n<tr>\r\n<td></td>\r\n<td></td>\r\n</tr>\r\n<tr>\r\n<td><strong><span style=\"font-size: 12pt;\">Servicing Options</span></strong></td>\r\n<td></td>\r\n</tr>\r\n<tr>\r\n<td><span style=\"font-size: 12pt;\">Lodge Only Servicing (Optional) </span></td>\r\n<td><span style=\"font-size: 12pt;\"><strong>R30</strong> per person per day - Max <span style=\"font-size: 12pt;\"><strong>R 150 </strong>per day</span></span></td>\r\n</tr>\r\n<tr>\r\n<td><span style=\"font-size: 12pt;\">Lodge &amp; Room Servicing (Optional) </span></td>\r\n<td><span style=\"font-size: 12pt;\"><strong>R50</strong> per person per day - Max <span style=\"font-size: 12pt;\"><strong>R 250 </strong>per day</span></span></td>\r\n</tr>\r\n<tr>\r\n<td></td>\r\n<td></td>\r\n</tr>\r\n<tr>\r\n<td colspan=\"2\"><span style=\"font-size: 12pt;\"><span style=\"font-size: 12pt;\"><strong>Catering Options</strong></span> </span></td>\r\n</tr>\r\n<tr>\r\n<td><span style=\"font-size: 12pt;\"> <span style=\"font-size: 12pt;\">Breakfast (Continental)</span></span></td>\r\n<td><span style=\"font-size: 12pt;\"> <span style=\"font-size: 12pt;\"><strong>R 55</strong> per person</span></span></td>\r\n</tr>\r\n<tr>\r\n<td><span style=\"font-size: 12pt;\"> <span style=\"font-size: 12pt;\">Breakfast (Full English)</span></span></td>\r\n<td><span style=\"font-size: 12pt;\"> <span style=\"font-size: 12pt;\"><strong>R 95</strong> per person</span></span></td>\r\n</tr>\r\n<tr>\r\n<td><span style=\"font-size: 12pt;\"> <span style=\"font-size: 12pt;\">Light Lunch</span></span></td>\r\n<td><span style=\"font-size: 12pt;\">From <span style=\"font-size: 12pt;\"><strong>R 95 </strong>per person</span></span></td>\r\n</tr>\r\n<tr>\r\n<td><span style=\"font-size: 12pt;\"> <span style=\"font-size: 12pt;\">Dinners</span></span></td>\r\n<td><span style=\"font-size: 12pt;\">From <span style=\"font-size: 12pt;\"><strong>R 150 </strong>per person</span></span></td>\r\n</tr>\r\n<tr>\r\n<td></td>\r\n<td></td>\r\n</tr>\r\n<tr>\r\n<td><strong><span style=\"font-size: 12pt;\">Others</span></strong></td>\r\n<td></td>\r\n</tr>\r\n<tr>\r\n<td><span style=\"font-size: 12pt;\">Gate Remote</span></td>\r\n<td><span style=\"font-size: 12pt;\"><strong>R 200 </strong>deposit</span></td>\r\n</tr>\r\n<tr>\r\n<td><span style=\"font-size: 12pt;\">Gas Braai</span></td>\r\n<td><span style=\"font-size: 12pt;\"><strong>R 120 </strong>per day</span></td>\r\n</tr>\r\n<tr>\r\n<td><span style=\"font-size: 12pt;\">Day Visitors / Guests</span></td>\r\n<td><span style=\"font-size: 12pt;\"><strong>R 35 </strong>per person per day</span></td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n&nbsp;\r\n\r\n<hr />\r\n\r\n[/modal][button link=\"\" color=\"darkgreen\" size=\"\" type=\"\" shape=\"\" target=\"_self\" title=\"\" gradient_colors=\"|\" gradient_hover_colors=\"|\" accent_color=\"\" accent_hover_color=\"\" bevel_color=\"\" border_width=\"1px\" icon=\"\" icon_position=\"left\" icon_divider=\"no\" modal=\"rates\" animation_type=\"0\" animation_direction=\"left\" animation_speed=\"1\" alignment=\"\" class=\"\" id=\"\"]2015 RATES[/button][/one_half][/fullwidth][fullwidth background_color=\"#f0f0ed\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"20\" padding_bottom=\"20\" padding_left=\"0px\" padding_right=\"0px\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][one_half last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][fusion_text]\r\n<h3 style=\"text-align: justify;\">Set in the rolling peaks and valleys of a thousand hills surrounded by a canopy of indigenous trees, you will find that horses still have right of way, we certainly offer the best of both worlds, farm and charm coupled with modern amenities that will have you feeling relaxed and rejuvenated.</h3>\r\n<h3 style=\"text-align: justify;\">We know that sometimes you are searching for a romantic getaway or maybe a few days away with old friends. Other times you are searching for a place to host a weekend, family reunion or a business retreat. In addition to nightly room rentals, our lodge is also available for meetings, retreats  and makes the perfect place for a wedding party to stay together and get ready for the big day. Regardless, with our five comfortable and cozy guest bedrooms , multiple garden spaces and hideaways, and a  large private deck  where you can take a nap or read a book we definitely have the room for you!</h3>\r\n[/fusion_text][/one_half][one_half last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][fusion_text]\r\n<h3 style=\"text-align: justify;\">Our lodge has been in our family for years and has recently been beautifully renovated. Five rooms all with en-suite showers, tea/coffee making facilities, MNet and satellite television (DSTV) open Wi-Fi. Sumptuous meals are served on the bottom deck at the swimming pool. Barbecues, afternoon tea in the garden or picnic baskets  on request all add to the service that awaits you, Our lodge features a 50 foot high Apex ceiling, spacious living, dining and bar area including a fitted kitchenette all adding to a sense of homey comfort.</h3>\r\n<h3 style=\"text-align: justify;\">Be lulled to sleep by the sound of the waterfall  and tinkling stream just outside your window, waking from a peaceful night\'s sleep in a pillow-top bed dressed in luxurious linens to coddle you in ultimate comfort.</h3>\r\n<h3 style=\"text-align: justify;\">Our property boasts many different species of birds and animals. We have a resident otter, a family of wild bush pigs,  a family of rock rabbits, porcupine, little blue duikers, a variety of different frogs and an abundance of bird life, including the occasional snakes that pass through!</h3>\r\n<h3 style=\"text-align: justify;\">Evenings are quiet and peaceful taking you far away from the business of city life. This is a unique and memorable country experience. We look forward to having you as a guest!</h3>\r\n[/fusion_text][/one_half][/fullwidth][fullwidth background_color=\"#f0f0ed\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"20\" padding_bottom=\"20\" padding_left=\"0px\" padding_right=\"0px\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][fusion_text]\r\n<h1 style=\"text-align: center;\">Gallery</h1>\r\n[/fusion_text][separator style_type=\"single\" top_margin=\"\" bottom_margin=\"40\" sep_color=\"#000000\" border_size=\"\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"170px\" alignment=\"\" class=\"\" id=\"\"][one_sixth last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][/one_sixth][two_third last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][fusion_text]\r\n<h3 style=\"text-align: justify;\">The Lodge is open, spacious, comfortable and homely. During hot summer days, sit and bask in the sun on the deck  with one of our  picnic specials. In winter, snuggle up with a good book or challenge one another to a friendly board game in the glassed nook area .</h3>\r\n[/fusion_text][/two_third][one_sixth last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][/one_sixth][/fullwidth][fullwidth background_color=\"#f0f0ed\" background_image=\"http://localhost/assagaylodge/wp-content/uploads/2015/01/Wood_Texture.jpg\" background_parallax=\"fixed\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"30\" padding_bottom=\"10\" padding_left=\"0\" padding_right=\"0\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][recent_works layout=\"grid\" picture_size=\"auto\" boxed_text=\"unboxed\" filters=\"no\" columns=\"3\" column_spacing=\"12\" cat_slug=\"the-lodge\" exclude_cats=\"\" number_posts=\"9\" offset=\"\" excerpt_length=\"35\" strip_html=\"yes\" carousel_layout=\"title_on_rollover\" scroll_items=\"\" autoplay=\"no\" show_nav=\"yes\" mouse_scroll=\"no\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" class=\"\" id=\"\"][/recent_works][/fullwidth][fullwidth background_color=\"#f0f0ed\" background_image=\"\" background_parallax=\"fixed\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"20\" padding_bottom=\"20\" padding_left=\"0px\" padding_right=\"0px\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][fusion_text]\r\n<h1 style=\"text-align: center;\">BEDROOMS</h1>\r\n[/fusion_text][separator style_type=\"single\" top_margin=\"\" bottom_margin=\"20\" sep_color=\"#000000\" border_size=\"\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"170px\" alignment=\"\" class=\"\" id=\"\"][one_sixth last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][/one_sixth][two_third last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][fusion_text]\r\n<h3 style=\"text-align: justify;\">When it comes to our bedrooms we’re proud to say we offer something a little more special. One of five  lovingly and tastefully decorated guest rooms. Soft gray decor soothes the senses providing a peaceful, blissfully comfortable rest from your travels and hectic lives.</h3>\r\n<h3 style=\"text-align: justify;\">Our  bedrooms are spacious, clean, comfortable all en-suite, equipped with either king size or queen size beds. Each room sleeps two guests. The rooms have high ceilings, wall heaters &amp; ceiling fans. Beds all have electric blankets in Winter, 100% cotton percale sheets and thick hyper allergenic microfiber duvets and pillows. All guest rooms are cleaned with organic and green products. Amenities include hairdryers in each room. Three rooms feature King-sized beds  of which two can be  split into two single beds. Two  rooms can therefore be changed into a twin room upon request. Two rooms feature a Queen-sized double bed. These beds cannot be split into twin beds.</h3>\r\n[/fusion_text][/two_third][one_sixth last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][/one_sixth][/fullwidth][fullwidth background_color=\"\" background_image=\"http://localhost/assagaylodge/wp-content/uploads/2015/01/DSC01516-1148-x-764.jpg\" background_parallax=\"fixed\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"center center\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"20\" padding_bottom=\"20\" padding_left=\"0\" padding_right=\"0\" hundred_percent=\"no\" equal_height_columns=\"yes\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][recent_works layout=\"grid\" picture_size=\"auto\" boxed_text=\"unboxed\" filters=\"no\" columns=\"3\" column_spacing=\"12\" cat_slug=\"bedrooms\" exclude_cats=\"\" number_posts=\"6\" offset=\"\" excerpt_length=\"35\" strip_html=\"yes\" carousel_layout=\"title_on_rollover\" scroll_items=\"\" autoplay=\"no\" show_nav=\"yes\" mouse_scroll=\"no\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" class=\"\" id=\"\"][/recent_works][/fullwidth][fullwidth background_color=\"#f0f0ed\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"20\" padding_bottom=\"20\" padding_left=\"0\" padding_right=\"0\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][fusion_text]\r\n<h1 style=\"text-align: center;\">GARDENS</h1>\r\n[/fusion_text][separator style_type=\"single\" top_margin=\"\" bottom_margin=\"20\" sep_color=\"#000000\" border_size=\"\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"170px\" alignment=\"\" class=\"\" id=\"\"][one_sixth last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][/one_sixth][two_third last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][fusion_text]\r\n<h3 style=\"text-align: justify;\">The garden is large and offers many secluded spots to lose yourself in a book with a glass of wine underneath the shade of a tree, listening to the sounds of the birds and smelling the beautiful flowers.</h3>\r\n[/fusion_text][/two_third][one_sixth last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][/one_sixth][recent_works layout=\"grid\" picture_size=\"auto\" boxed_text=\"boxed\" filters=\"no\" columns=\"3\" column_spacing=\"12\" cat_slug=\"gardens\" exclude_cats=\"\" number_posts=\"9\" offset=\"\" excerpt_length=\"35\" strip_html=\"yes\" carousel_layout=\"title_on_rollover\" scroll_items=\"\" autoplay=\"no\" show_nav=\"yes\" mouse_scroll=\"no\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" class=\"\" id=\"\"][/recent_works][/fullwidth][fullwidth background_color=\"#ffffff\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"65px\" padding_bottom=\"65px\" padding_left=\"0px\" padding_right=\"0px\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][button link=\"http://localhost/assagaylodge/book-now/\" color=\"default\" size=\"xlarge\" type=\"3d\" shape=\"round\" target=\"_self\" title=\"\" gradient_colors=\"#f0f0ed|#f0f0ed\" gradient_hover_colors=\"#6666a4|#6666a4\" accent_color=\"#ffffff\" accent_hover_color=\"#ffffff\" bevel_color=\"\" border_width=\"0px\" icon=\"\" icon_position=\"left\" icon_divider=\"no\" modal=\"\" animation_type=\"0\" animation_direction=\"left\" animation_speed=\"1\" alignment=\"center\" class=\"\" id=\"\"]Make A Reservation Enquiry[/button][/fullwidth][one_third last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][/one_third][two_fifth last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][/two_fifth]', 'Home', '', 'inherit', 'closed', 'closed', '', '7-revision-v1', '', '', '2016-01-26 10:42:29', '2016-01-26 08:42:29', '', 7, 'http://msla.co.za/lodge/7-revision-v1/', 0, 'revision', '', 0),
(1173, 1, '2016-01-26 11:09:47', '2016-01-26 09:09:47', '[fullwidth background_color=\"#f0f0ed\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"20\" padding_bottom=\"20\" padding_left=\"0px\" padding_right=\"0px\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][one_half last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][separator style_type=\"single\" top_margin=\"0\" bottom_margin=\"30\" sep_color=\"#000000\" border_size=\"\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"170px\" alignment=\"center\" class=\"separator-left\" id=\"\"][fusion_text]\r\n<h1 style=\"text-align: center;\">No Fancy Star Grading\r\nNo Room Service\r\nNo Bed Turn-downs\r\nNo Rose Petals in the Bath water</h1>\r\n<h1 style=\"text-align: center;\">... just old fashioned homely comforts</h1>\r\n[/fusion_text][/one_half][one_half last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][fusion_text]\r\n<h1 style=\"text-align: justify;\">5 BEDROOM FAMILY LODGE</h1>\r\n<h3 style=\"text-align: justify;\">A Four Season Lodge, because there’s Always Something to Celebrate… We offer comfort, relaxation and exceptional service right in the heart of 1000 Hills. The Forest, the Gardens, the Atmosphere all speak to  Rest  &amp; Relaxation.</h3>\r\n[/fusion_text][separator style_type=\"single\" top_margin=\"0\" bottom_margin=\"30\" sep_color=\"#000000\" border_size=\"\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"170px\" alignment=\"left\" class=\"separator-left\" id=\"\"][modal name=\"rates\" title=\"2015 Rates\" size=\"large\" background=\"\" border_color=\"\" show_footer=\"yes\" class=\"\" id=\"\"]\r\n<table style=\"width: 100%;\" cellspacing=\"10\" cellpadding=\"5\">\r\n<tbody>\r\n<tr>\r\n<td colspan=\"2\"><span style=\"font-size: 10pt;\">ALL PRICES INCLUDE VAT </span></td>\r\n</tr>\r\n<tr>\r\n<td colspan=\"2\"><span style=\"font-size: 12pt;\"><strong>Self-Catering / Self-Servicing Accommodation</strong></span></td>\r\n</tr>\r\n<tr>\r\n<td><span style=\"font-size: 12pt;\">Full House - Max 10 persons per lodge</span></td>\r\n<td><span style=\"font-size: 12pt;\"><strong>R3250</strong> per night (R325 per person)</span></td>\r\n</tr>\r\n<tr>\r\n<td><span style=\"font-size: 12pt;\">Single - Max 1 person per room</span></td>\r\n<td><span style=\"font-size: 12pt;\"><strong>R 650</strong> per person per night</span></td>\r\n</tr>\r\n<tr>\r\n<td><span style=\"font-size: 12pt;\">Sharing - Max 2 persons per room</span></td>\r\n<td><span style=\"font-size: 12pt;\"><strong>R 495</strong> per person per night</span></td>\r\n</tr>\r\n<tr>\r\n<td></td>\r\n<td></td>\r\n</tr>\r\n<tr>\r\n<td><strong><span style=\"font-size: 12pt;\">Servicing Options</span></strong></td>\r\n<td></td>\r\n</tr>\r\n<tr>\r\n<td><span style=\"font-size: 12pt;\">Lodge Only Servicing (Optional) </span></td>\r\n<td><span style=\"font-size: 12pt;\"><strong>R30</strong> per person per day - Max <span style=\"font-size: 12pt;\"><strong>R 150 </strong>per day</span></span></td>\r\n</tr>\r\n<tr>\r\n<td><span style=\"font-size: 12pt;\">Lodge &amp; Room Servicing (Optional) </span></td>\r\n<td><span style=\"font-size: 12pt;\"><strong>R50</strong> per person per day - Max <span style=\"font-size: 12pt;\"><strong>R 250 </strong>per day</span></span></td>\r\n</tr>\r\n<tr>\r\n<td></td>\r\n<td></td>\r\n</tr>\r\n<tr>\r\n<td colspan=\"2\"><span style=\"font-size: 12pt;\"><span style=\"font-size: 12pt;\"><strong>Catering Options</strong></span> </span></td>\r\n</tr>\r\n<tr>\r\n<td><span style=\"font-size: 12pt;\"> <span style=\"font-size: 12pt;\">Breakfast (Continental)</span></span></td>\r\n<td><span style=\"font-size: 12pt;\"> <span style=\"font-size: 12pt;\"><strong>R 55</strong> per person</span></span></td>\r\n</tr>\r\n<tr>\r\n<td><span style=\"font-size: 12pt;\"> <span style=\"font-size: 12pt;\">Breakfast (Full English)</span></span></td>\r\n<td><span style=\"font-size: 12pt;\"> <span style=\"font-size: 12pt;\"><strong>R 95</strong> per person</span></span></td>\r\n</tr>\r\n<tr>\r\n<td><span style=\"font-size: 12pt;\"> <span style=\"font-size: 12pt;\">Light Lunch</span></span></td>\r\n<td><span style=\"font-size: 12pt;\">From <span style=\"font-size: 12pt;\"><strong>R 95 </strong>per person</span></span></td>\r\n</tr>\r\n<tr>\r\n<td><span style=\"font-size: 12pt;\"> <span style=\"font-size: 12pt;\">Dinners</span></span></td>\r\n<td><span style=\"font-size: 12pt;\">From <span style=\"font-size: 12pt;\"><strong>R 150 </strong>per person</span></span></td>\r\n</tr>\r\n<tr>\r\n<td></td>\r\n<td></td>\r\n</tr>\r\n<tr>\r\n<td><strong><span style=\"font-size: 12pt;\">Others</span></strong></td>\r\n<td></td>\r\n</tr>\r\n<tr>\r\n<td><span style=\"font-size: 12pt;\">Gate Remote</span></td>\r\n<td><span style=\"font-size: 12pt;\"><strong>R 200 </strong>deposit</span></td>\r\n</tr>\r\n<tr>\r\n<td><span style=\"font-size: 12pt;\">Gas Braai</span></td>\r\n<td><span style=\"font-size: 12pt;\"><strong>R 120 </strong>per day</span></td>\r\n</tr>\r\n<tr>\r\n<td><span style=\"font-size: 12pt;\">Day Visitors / Guests</span></td>\r\n<td><span style=\"font-size: 12pt;\"><strong>R 35 </strong>per person per day</span></td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n&nbsp;\r\n\r\n<hr />\r\n\r\n[/modal][button link=\"\" color=\"darkgreen\" size=\"\" type=\"\" shape=\"\" target=\"_self\" title=\"\" gradient_colors=\"|\" gradient_hover_colors=\"|\" accent_color=\"\" accent_hover_color=\"\" bevel_color=\"\" border_width=\"1px\" icon=\"\" icon_position=\"left\" icon_divider=\"no\" modal=\"rates\" animation_type=\"0\" animation_direction=\"left\" animation_speed=\"1\" alignment=\"\" class=\"\" id=\"\"]2015 RATES[/button][/one_half][/fullwidth][fullwidth background_color=\"#f0f0ed\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"20\" padding_bottom=\"20\" padding_left=\"0px\" padding_right=\"0px\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][one_half last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][fusion_text]\r\n<h3 style=\"text-align: justify;\">Set in the rolling peaks and valleys of a thousand hills surrounded by a canopy of indigenous trees, you will find that horses still have right of way, we certainly offer the best of both worlds, farm and charm coupled with modern amenities that will have you feeling relaxed and rejuvenated.</h3>\r\n<h3 style=\"text-align: justify;\">We know that sometimes you are searching for a romantic getaway or maybe a few days away with old friends. Other times you are searching for a place to host a weekend, family reunion or a business retreat. In addition to nightly room rentals, our lodge is also available for meetings, retreats  and makes the perfect place for a wedding party to stay together and get ready for the big day. Regardless, with our five comfortable and cozy guest bedrooms , multiple garden spaces and hideaways, and a  large private deck  where you can take a nap or read a book we definitely have the room for you!</h3>\r\n[/fusion_text][/one_half][one_half last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][fusion_text]\r\n<h3 style=\"text-align: justify;\">Our lodge has been in our family for years and has recently been beautifully renovated. Five rooms all with en-suite showers, tea/coffee making facilities, MNet and satellite television (DSTV) open Wi-Fi. Sumptuous meals are served on the bottom deck at the swimming pool. Barbecues, afternoon tea in the garden or picnic baskets  on request all add to the service that awaits you, Our lodge features a 50 foot high Apex ceiling, spacious living, dining and bar area including a fitted kitchenette all adding to a sense of homey comfort.</h3>\r\n<h3 style=\"text-align: justify;\">Be lulled to sleep by the sound of the waterfall  and tinkling stream just outside your window, waking from a peaceful night\'s sleep in a pillow-top bed dressed in luxurious linens to coddle you in ultimate comfort.</h3>\r\n<h3 style=\"text-align: justify;\">Our property boasts many different species of birds and animals. We have a resident otter, a family of wild bush pigs,  a family of rock rabbits, porcupine, little blue duikers, a variety of different frogs and an abundance of bird life, including the occasional snakes that pass through!</h3>\r\n<h3 style=\"text-align: justify;\">Evenings are quiet and peaceful taking you far away from the business of city life. This is a unique and memorable country experience. We look forward to having you as a guest!</h3>\r\n[/fusion_text][/one_half][/fullwidth][fullwidth background_color=\"#f0f0ed\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"20\" padding_bottom=\"20\" padding_left=\"0px\" padding_right=\"0px\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][fusion_text]\r\n<h1 style=\"text-align: center;\">Gallery</h1>\r\n[/fusion_text][separator style_type=\"single\" top_margin=\"\" bottom_margin=\"40\" sep_color=\"#000000\" border_size=\"\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"170px\" alignment=\"\" class=\"\" id=\"\"][one_sixth last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][/one_sixth][two_third last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][fusion_text]\r\n<h3 style=\"text-align: justify;\">The Lodge is open, spacious, comfortable and homely. During hot summer days, sit and bask in the sun on the deck  with one of our  picnic specials. In winter, snuggle up with a good book or challenge one another to a friendly board game in the glassed nook area .</h3>\r\n[/fusion_text][/two_third][one_sixth last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][/one_sixth][/fullwidth][fullwidth background_color=\"#f0f0ed\" background_image=\"http://localhost/assagaylodge/wp-content/uploads/2015/01/Wood_Texture.jpg\" background_parallax=\"fixed\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"30\" padding_bottom=\"10\" padding_left=\"0\" padding_right=\"0\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][recent_works layout=\"grid\" picture_size=\"auto\" boxed_text=\"unboxed\" filters=\"no\" columns=\"3\" column_spacing=\"12\" cat_slug=\"the-lodge\" exclude_cats=\"\" number_posts=\"9\" offset=\"\" excerpt_length=\"35\" strip_html=\"yes\" carousel_layout=\"title_on_rollover\" scroll_items=\"\" autoplay=\"no\" show_nav=\"yes\" mouse_scroll=\"no\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" class=\"\" id=\"\"][/recent_works][/fullwidth][fullwidth background_color=\"#f0f0ed\" background_image=\"\" background_parallax=\"fixed\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"20\" padding_bottom=\"20\" padding_left=\"0px\" padding_right=\"0px\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][fusion_text]\r\n<h1 style=\"text-align: center;\">BEDROOMS</h1>\r\n[/fusion_text][separator style_type=\"single\" top_margin=\"\" bottom_margin=\"20\" sep_color=\"#000000\" border_size=\"\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"170px\" alignment=\"\" class=\"\" id=\"\"][one_sixth last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][/one_sixth][two_third last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][fusion_text]\r\n<h3 style=\"text-align: justify;\">When it comes to our bedrooms we’re proud to say we offer something a little more special. One of five  lovingly and tastefully decorated guest rooms. Soft gray decor soothes the senses providing a peaceful, blissfully comfortable rest from your travels and hectic lives.</h3>\r\n<h3 style=\"text-align: justify;\">Our  bedrooms are spacious, clean, comfortable all en-suite, equipped with either king size or queen size beds. Each room sleeps two guests. The rooms have high ceilings, wall heaters &amp; ceiling fans. Beds all have electric blankets in Winter, 100% cotton percale sheets and thick hyper allergenic microfiber duvets and pillows. All guest rooms are cleaned with organic and green products. Amenities include hairdryers in each room. Three rooms feature King-sized beds  of which two can be  split into two single beds. Two  rooms can therefore be changed into a twin room upon request. Two rooms feature a Queen-sized double bed. These beds cannot be split into twin beds.</h3>\r\n[/fusion_text][/two_third][one_sixth last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][/one_sixth][/fullwidth][fullwidth background_color=\"\" background_image=\"http://localhost/assagaylodge/wp-content/uploads/2015/01/DSC01516-1148-x-764.jpg\" background_parallax=\"fixed\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"center center\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"20\" padding_bottom=\"20\" padding_left=\"0\" padding_right=\"0\" hundred_percent=\"no\" equal_height_columns=\"yes\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][recent_works layout=\"grid\" picture_size=\"auto\" boxed_text=\"unboxed\" filters=\"no\" columns=\"3\" column_spacing=\"12\" cat_slug=\"bedrooms\" exclude_cats=\"\" number_posts=\"6\" offset=\"\" excerpt_length=\"35\" strip_html=\"yes\" carousel_layout=\"title_on_rollover\" scroll_items=\"\" autoplay=\"no\" show_nav=\"yes\" mouse_scroll=\"no\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" class=\"\" id=\"\"][/recent_works][/fullwidth][fullwidth background_color=\"#f0f0ed\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"20\" padding_bottom=\"20\" padding_left=\"0\" padding_right=\"0\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][fusion_text]\r\n<h1 style=\"text-align: center;\">GARDENS</h1>\r\n[/fusion_text][separator style_type=\"single\" top_margin=\"\" bottom_margin=\"20\" sep_color=\"#000000\" border_size=\"\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"170px\" alignment=\"\" class=\"\" id=\"\"][one_sixth last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][/one_sixth][two_third last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][fusion_text]\r\n<h3 style=\"text-align: justify;\">The garden is large and offers many secluded spots to lose yourself in a book with a glass of wine underneath the shade of a tree, listening to the sounds of the birds and smelling the beautiful flowers.</h3>\r\n[/fusion_text][/two_third][one_sixth last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][/one_sixth][recent_works layout=\"grid\" picture_size=\"auto\" boxed_text=\"boxed\" filters=\"no\" columns=\"3\" column_spacing=\"12\" cat_slug=\"gardens\" exclude_cats=\"\" number_posts=\"9\" offset=\"\" excerpt_length=\"35\" strip_html=\"yes\" carousel_layout=\"title_on_rollover\" scroll_items=\"\" autoplay=\"no\" show_nav=\"yes\" mouse_scroll=\"no\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" class=\"\" id=\"\"][/recent_works][/fullwidth][fullwidth background_color=\"#ffffff\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"65px\" padding_bottom=\"65px\" padding_left=\"0px\" padding_right=\"0px\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][button link=\"http://localhost/assagaylodge/book-now/\" color=\"default\" size=\"xlarge\" type=\"3d\" shape=\"round\" target=\"_self\" title=\"\" gradient_colors=\"#f0f0ed|#f0f0ed\" gradient_hover_colors=\"#6666a4|#6666a4\" accent_color=\"#ffffff\" accent_hover_color=\"#ffffff\" bevel_color=\"\" border_width=\"0px\" icon=\"\" icon_position=\"left\" icon_divider=\"no\" modal=\"\" animation_type=\"0\" animation_direction=\"left\" animation_speed=\"1\" alignment=\"center\" class=\"\" id=\"\"]Make A Reservation Enquiry[/button][/fullwidth][one_third last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][/one_third][two_fifth last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][/two_fifth]', 'Home', '', 'inherit', 'closed', 'closed', '', '7-revision-v1', '', '', '2016-01-26 11:09:47', '2016-01-26 09:09:47', '', 7, 'http://msla.co.za/lodge/7-revision-v1/', 0, 'revision', '', 0);
INSERT INTO `wp_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(1174, 1, '2016-01-26 11:37:46', '2016-01-26 09:37:46', '[fullwidth background_color=\"#f0f0ed\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"20\" padding_bottom=\"20\" padding_left=\"0px\" padding_right=\"0px\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][one_half last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][separator style_type=\"single\" top_margin=\"0\" bottom_margin=\"30\" sep_color=\"#000000\" border_size=\"\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"170px\" alignment=\"center\" class=\"separator-left\" id=\"\"][fusion_text]\r\n<h1 style=\"text-align: center;\">No Fancy Star Grading\r\nNo Room Service\r\nNo Bed Turn-downs\r\nNo Rose Petals in the Bath water</h1>\r\n<h1 style=\"text-align: center;\">... just old fashioned homely comforts</h1>\r\n[/fusion_text][/one_half][one_half last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][fusion_text]\r\n<h1 style=\"text-align: justify;\">5 BEDROOM FAMILY LODGE</h1>\r\n<h3 style=\"text-align: justify;\">A Four Season Lodge, because there’s Always Something to Celebrate… We offer comfort, relaxation and exceptional service right in the heart of 1000 Hills. The Forest, the Gardens, the Atmosphere all speak to  Rest  &amp; Relaxation.</h3>\r\n[/fusion_text][separator style_type=\"single\" top_margin=\"0\" bottom_margin=\"30\" sep_color=\"#000000\" border_size=\"\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"170px\" alignment=\"left\" class=\"separator-left\" id=\"\"][modal name=\"rates\" title=\"2015 Rates\" size=\"large\" background=\"\" border_color=\"\" show_footer=\"yes\" class=\"\" id=\"\"]\r\n<table style=\"width: 100%;\" cellspacing=\"10\" cellpadding=\"5\">\r\n<tbody>\r\n<tr>\r\n<td colspan=\"2\"><span style=\"font-size: 10pt;\">ALL PRICES INCLUDE VAT </span></td>\r\n</tr>\r\n<tr>\r\n<td colspan=\"2\"><span style=\"font-size: 12pt;\"><strong>Self-Catering / Self-Servicing Accommodation</strong></span></td>\r\n</tr>\r\n<tr>\r\n<td><span style=\"font-size: 12pt;\">Full House - Max 10 persons per lodge</span></td>\r\n<td><span style=\"font-size: 12pt;\"><strong>R3250</strong> per night (R325 per person)</span></td>\r\n</tr>\r\n<tr>\r\n<td><span style=\"font-size: 12pt;\">Single - Max 1 person per room</span></td>\r\n<td><span style=\"font-size: 12pt;\"><strong>R 650</strong> per person per night</span></td>\r\n</tr>\r\n<tr>\r\n<td><span style=\"font-size: 12pt;\">Sharing - Max 2 persons per room</span></td>\r\n<td><span style=\"font-size: 12pt;\"><strong>R 495</strong> per person per night</span></td>\r\n</tr>\r\n<tr>\r\n<td></td>\r\n<td></td>\r\n</tr>\r\n<tr>\r\n<td><strong><span style=\"font-size: 12pt;\">Servicing Options</span></strong></td>\r\n<td></td>\r\n</tr>\r\n<tr>\r\n<td><span style=\"font-size: 12pt;\">Lodge Only Servicing (Optional) </span></td>\r\n<td><span style=\"font-size: 12pt;\"><strong>R30</strong> per person per day - Max <span style=\"font-size: 12pt;\"><strong>R 150 </strong>per day</span></span></td>\r\n</tr>\r\n<tr>\r\n<td><span style=\"font-size: 12pt;\">Lodge &amp; Room Servicing (Optional) </span></td>\r\n<td><span style=\"font-size: 12pt;\"><strong>R50</strong> per person per day - Max <span style=\"font-size: 12pt;\"><strong>R 250 </strong>per day</span></span></td>\r\n</tr>\r\n<tr>\r\n<td></td>\r\n<td></td>\r\n</tr>\r\n<tr>\r\n<td colspan=\"2\"><span style=\"font-size: 12pt;\"><span style=\"font-size: 12pt;\"><strong>Catering Options</strong></span> </span></td>\r\n</tr>\r\n<tr>\r\n<td><span style=\"font-size: 12pt;\"> <span style=\"font-size: 12pt;\">Breakfast (Continental)</span></span></td>\r\n<td><span style=\"font-size: 12pt;\"> <span style=\"font-size: 12pt;\"><strong>R 55</strong> per person</span></span></td>\r\n</tr>\r\n<tr>\r\n<td><span style=\"font-size: 12pt;\"> <span style=\"font-size: 12pt;\">Breakfast (Full English)</span></span></td>\r\n<td><span style=\"font-size: 12pt;\"> <span style=\"font-size: 12pt;\"><strong>R 95</strong> per person</span></span></td>\r\n</tr>\r\n<tr>\r\n<td><span style=\"font-size: 12pt;\"> <span style=\"font-size: 12pt;\">Light Lunch</span></span></td>\r\n<td><span style=\"font-size: 12pt;\">From <span style=\"font-size: 12pt;\"><strong>R 95 </strong>per person</span></span></td>\r\n</tr>\r\n<tr>\r\n<td><span style=\"font-size: 12pt;\"> <span style=\"font-size: 12pt;\">Dinners</span></span></td>\r\n<td><span style=\"font-size: 12pt;\">From <span style=\"font-size: 12pt;\"><strong>R 150 </strong>per person</span></span></td>\r\n</tr>\r\n<tr>\r\n<td></td>\r\n<td></td>\r\n</tr>\r\n<tr>\r\n<td><strong><span style=\"font-size: 12pt;\">Others</span></strong></td>\r\n<td></td>\r\n</tr>\r\n<tr>\r\n<td><span style=\"font-size: 12pt;\">Gate Remote</span></td>\r\n<td><span style=\"font-size: 12pt;\"><strong>R 200 </strong>deposit</span></td>\r\n</tr>\r\n<tr>\r\n<td><span style=\"font-size: 12pt;\">Gas Braai</span></td>\r\n<td><span style=\"font-size: 12pt;\"><strong>R 120 </strong>per day</span></td>\r\n</tr>\r\n<tr>\r\n<td><span style=\"font-size: 12pt;\">Day Visitors / Guests</span></td>\r\n<td><span style=\"font-size: 12pt;\"><strong>R 35 </strong>per person per day</span></td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n&nbsp;\r\n\r\n<hr />\r\n\r\n[/modal][button link=\"\" color=\"darkgreen\" size=\"\" type=\"\" shape=\"\" target=\"_self\" title=\"\" gradient_colors=\"|\" gradient_hover_colors=\"|\" accent_color=\"\" accent_hover_color=\"\" bevel_color=\"\" border_width=\"1px\" icon=\"\" icon_position=\"left\" icon_divider=\"no\" modal=\"rates\" animation_type=\"0\" animation_direction=\"left\" animation_speed=\"1\" alignment=\"\" class=\"\" id=\"\"]2015 RATES[/button][/one_half][/fullwidth][fullwidth background_color=\"#f0f0ed\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"20\" padding_bottom=\"20\" padding_left=\"0px\" padding_right=\"0px\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][one_half last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][fusion_text]\r\n<h3 style=\"text-align: justify;\">Set in the rolling peaks and valleys of a thousand hills surrounded by a canopy of indigenous trees, you will find that horses still have right of way, we certainly offer the best of both worlds, farm and charm coupled with modern amenities that will have you feeling relaxed and rejuvenated.</h3>\r\n<h3 style=\"text-align: justify;\">We know that sometimes you are searching for a romantic getaway or maybe a few days away with old friends. Other times you are searching for a place to host a weekend, family reunion or a business retreat. In addition to nightly room rentals, our lodge is also available for meetings, retreats  and makes the perfect place for a wedding party to stay together and get ready for the big day. Regardless, with our five comfortable and cozy guest bedrooms , multiple garden spaces and hideaways, and a  large private deck  where you can take a nap or read a book we definitely have the room for you!</h3>\r\n[/fusion_text][/one_half][one_half last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][fusion_text]\r\n<h3 style=\"text-align: justify;\">Our lodge has been in our family for years and has recently been beautifully renovated. Five rooms all with en-suite showers, tea/coffee making facilities, MNet and satellite television (DSTV) open Wi-Fi. Sumptuous meals are served on the bottom deck at the swimming pool. Barbecues, afternoon tea in the garden or picnic baskets  on request all add to the service that awaits you, Our lodge features a 36 foot high vaulted ceiling, spacious living, dining and bar area including a fitted kitchenette all adding to a sense of homey comfort.</h3>\r\n<h3 style=\"text-align: justify;\">Be lulled to sleep by the sound of the waterfall  and tinkling stream just outside your window, waking from a peaceful night\'s sleep in a pillow-top bed dressed in luxurious linens to coddle you in ultimate comfort.</h3>\r\n<h3 style=\"text-align: justify;\">Our property boasts many different species of birds and animals. We have a resident otter, a family of wild bush pigs,  a family of rock rabbits, porcupine, little blue duikers, a variety of different frogs and an abundance of bird life, including the occasional snakes that pass through!</h3>\r\n<h3 style=\"text-align: justify;\">Evenings are quiet and peaceful taking you far away from the business of city life. This is a unique and memorable country experience. We look forward to having you as a guest!</h3>\r\n[/fusion_text][/one_half][/fullwidth][fullwidth background_color=\"#f0f0ed\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"20\" padding_bottom=\"20\" padding_left=\"0px\" padding_right=\"0px\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][fusion_text]\r\n<h1 style=\"text-align: center;\">Gallery</h1>\r\n[/fusion_text][separator style_type=\"single\" top_margin=\"\" bottom_margin=\"40\" sep_color=\"#000000\" border_size=\"\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"170px\" alignment=\"\" class=\"\" id=\"\"][one_sixth last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][/one_sixth][two_third last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][fusion_text]\r\n<h3 style=\"text-align: justify;\">The Lodge is open, spacious, comfortable and homely. During hot summer days, sit and bask in the sun on the deck  with one of our  picnic specials. In winter, snuggle up with a good book or challenge one another to a friendly board game in the glassed nook area .</h3>\r\n[/fusion_text][/two_third][one_sixth last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][/one_sixth][/fullwidth][fullwidth background_color=\"#f0f0ed\" background_image=\"http://localhost/assagaylodge/wp-content/uploads/2015/01/Wood_Texture.jpg\" background_parallax=\"fixed\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"30\" padding_bottom=\"10\" padding_left=\"0\" padding_right=\"0\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][recent_works layout=\"grid\" picture_size=\"auto\" boxed_text=\"unboxed\" filters=\"no\" columns=\"3\" column_spacing=\"12\" cat_slug=\"the-lodge\" exclude_cats=\"\" number_posts=\"9\" offset=\"\" excerpt_length=\"35\" strip_html=\"yes\" carousel_layout=\"title_on_rollover\" scroll_items=\"\" autoplay=\"no\" show_nav=\"yes\" mouse_scroll=\"no\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" class=\"\" id=\"\"][/recent_works][/fullwidth][fullwidth background_color=\"#f0f0ed\" background_image=\"\" background_parallax=\"fixed\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"20\" padding_bottom=\"20\" padding_left=\"0px\" padding_right=\"0px\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][fusion_text]\r\n<h1 style=\"text-align: center;\">BEDROOMS</h1>\r\n[/fusion_text][separator style_type=\"single\" top_margin=\"\" bottom_margin=\"20\" sep_color=\"#000000\" border_size=\"\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"170px\" alignment=\"\" class=\"\" id=\"\"][one_sixth last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][/one_sixth][two_third last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][fusion_text]\r\n<h3 style=\"text-align: justify;\">When it comes to our bedrooms we’re proud to say we offer something a little more special. One of five  lovingly and tastefully decorated guest rooms. Soft gray decor soothes the senses providing a peaceful, blissfully comfortable rest from your travels and hectic lives.</h3>\r\n<h3 style=\"text-align: justify;\">Our  bedrooms are spacious, clean, comfortable all en-suite, equipped with either king size or queen size beds. Each room sleeps two guests. The rooms have high ceilings, wall heaters &amp; ceiling fans. Beds all have electric blankets in Winter, 100% cotton percale sheets and thick hyper allergenic microfiber duvets and pillows. All guest rooms are cleaned with organic and green products. Amenities include hairdryers in each room. Three rooms feature King-sized beds  of which two can be  split into two single beds. Two  rooms can therefore be changed into a twin room upon request. Two rooms feature a Queen-sized double bed. These beds cannot be split into twin beds.</h3>\r\n[/fusion_text][/two_third][one_sixth last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][/one_sixth][/fullwidth][fullwidth background_color=\"\" background_image=\"http://localhost/assagaylodge/wp-content/uploads/2015/01/DSC01516-1148-x-764.jpg\" background_parallax=\"fixed\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"center center\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"20\" padding_bottom=\"20\" padding_left=\"0\" padding_right=\"0\" hundred_percent=\"no\" equal_height_columns=\"yes\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][recent_works layout=\"grid\" picture_size=\"auto\" boxed_text=\"unboxed\" filters=\"no\" columns=\"3\" column_spacing=\"12\" cat_slug=\"bedrooms\" exclude_cats=\"\" number_posts=\"6\" offset=\"\" excerpt_length=\"35\" strip_html=\"yes\" carousel_layout=\"title_on_rollover\" scroll_items=\"\" autoplay=\"no\" show_nav=\"yes\" mouse_scroll=\"no\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" class=\"\" id=\"\"][/recent_works][/fullwidth][fullwidth background_color=\"#f0f0ed\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"20\" padding_bottom=\"20\" padding_left=\"0\" padding_right=\"0\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][fusion_text]\r\n<h1 style=\"text-align: center;\">GARDENS</h1>\r\n[/fusion_text][separator style_type=\"single\" top_margin=\"\" bottom_margin=\"20\" sep_color=\"#000000\" border_size=\"\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"170px\" alignment=\"\" class=\"\" id=\"\"][one_sixth last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][/one_sixth][two_third last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][fusion_text]\r\n<h3 style=\"text-align: justify;\">The garden is large and offers many secluded spots to lose yourself in a book with a glass of wine underneath the shade of a tree, listening to the sounds of the birds and smelling the beautiful flowers.</h3>\r\n[/fusion_text][/two_third][one_sixth last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][/one_sixth][recent_works layout=\"grid\" picture_size=\"auto\" boxed_text=\"boxed\" filters=\"no\" columns=\"3\" column_spacing=\"12\" cat_slug=\"gardens\" exclude_cats=\"\" number_posts=\"9\" offset=\"\" excerpt_length=\"35\" strip_html=\"yes\" carousel_layout=\"title_on_rollover\" scroll_items=\"\" autoplay=\"no\" show_nav=\"yes\" mouse_scroll=\"no\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" class=\"\" id=\"\"][/recent_works][/fullwidth][fullwidth background_color=\"#ffffff\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"65px\" padding_bottom=\"65px\" padding_left=\"0px\" padding_right=\"0px\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][button link=\"http://localhost/assagaylodge/book-now/\" color=\"default\" size=\"xlarge\" type=\"3d\" shape=\"round\" target=\"_self\" title=\"\" gradient_colors=\"#f0f0ed|#f0f0ed\" gradient_hover_colors=\"#6666a4|#6666a4\" accent_color=\"#ffffff\" accent_hover_color=\"#ffffff\" bevel_color=\"\" border_width=\"0px\" icon=\"\" icon_position=\"left\" icon_divider=\"no\" modal=\"\" animation_type=\"0\" animation_direction=\"left\" animation_speed=\"1\" alignment=\"center\" class=\"\" id=\"\"]Make A Reservation Enquiry[/button][/fullwidth][one_third last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][/one_third][two_fifth last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][/two_fifth]', 'Home', '', 'inherit', 'closed', 'closed', '', '7-revision-v1', '', '', '2016-01-26 11:37:46', '2016-01-26 09:37:46', '', 7, 'http://msla.co.za/lodge/7-revision-v1/', 0, 'revision', '', 0),
(1176, 1, '2016-01-26 14:02:56', '2016-01-26 12:02:56', '[fullwidth background_color=\"#f0f0ed\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"20\" padding_bottom=\"20\" padding_left=\"0px\" padding_right=\"0px\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][one_half last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][separator style_type=\"single\" top_margin=\"0\" bottom_margin=\"30\" sep_color=\"#000000\" border_size=\"\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"170px\" alignment=\"center\" class=\"separator-left\" id=\"\"][fusion_text]\r\n<h1 style=\"text-align: center;\">No Fancy Star Grading\r\nNo Room Service\r\nNo Bed Turn-downs\r\nNo Rose Petals in the Bath water</h1>\r\n<h1 style=\"text-align: center;\">... just old fashioned homely comforts</h1>\r\n[/fusion_text][/one_half][one_half last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][fusion_text]\r\n<h1 style=\"text-align: justify;\">5 BEDROOM FAMILY LODGE</h1>\r\n<h3 style=\"text-align: justify;\">We are a four season lodge, because there’s always something to celebrate… We offer comfort, relaxation and privacy right in the heart of 1000 Hills. The Forest, the Gardens, the Atmosphere all speak to  Rest  &amp; Relaxation.</h3>\r\n[/fusion_text][separator style_type=\"single\" top_margin=\"0\" bottom_margin=\"30\" sep_color=\"#000000\" border_size=\"\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"170px\" alignment=\"left\" class=\"separator-left\" id=\"\"][modal name=\"rates\" title=\"2015 Rates\" size=\"large\" background=\"\" border_color=\"\" show_footer=\"yes\" class=\"\" id=\"\"]\r\n<table style=\"width: 100%;\" cellspacing=\"10\" cellpadding=\"5\">\r\n<tbody>\r\n<tr>\r\n<td colspan=\"2\"><span style=\"font-size: 10pt;\">ALL PRICES INCLUDE VAT </span></td>\r\n</tr>\r\n<tr>\r\n<td colspan=\"2\"><span style=\"font-size: 12pt;\"><strong>Self-Catering / Self-Servicing Accommodation</strong></span></td>\r\n</tr>\r\n<tr>\r\n<td><span style=\"font-size: 12pt;\">Full House - Max 10 persons per lodge</span></td>\r\n<td><span style=\"font-size: 12pt;\"><strong>R3250</strong> per night (R325 per person)</span></td>\r\n</tr>\r\n<tr>\r\n<td><span style=\"font-size: 12pt;\">Single - Max 1 person per room</span></td>\r\n<td><span style=\"font-size: 12pt;\"><strong>R 650</strong> per person per night</span></td>\r\n</tr>\r\n<tr>\r\n<td><span style=\"font-size: 12pt;\">Sharing - Max 2 persons per room</span></td>\r\n<td><span style=\"font-size: 12pt;\"><strong>R 495</strong> per person per night</span></td>\r\n</tr>\r\n<tr>\r\n<td></td>\r\n<td></td>\r\n</tr>\r\n<tr>\r\n<td><strong><span style=\"font-size: 12pt;\">Servicing Options</span></strong></td>\r\n<td></td>\r\n</tr>\r\n<tr>\r\n<td><span style=\"font-size: 12pt;\">Lodge Only Servicing (Optional) </span></td>\r\n<td><span style=\"font-size: 12pt;\"><strong>R30</strong> per person per day - Max <span style=\"font-size: 12pt;\"><strong>R 150 </strong>per day</span></span></td>\r\n</tr>\r\n<tr>\r\n<td><span style=\"font-size: 12pt;\">Lodge &amp; Room Servicing (Optional) </span></td>\r\n<td><span style=\"font-size: 12pt;\"><strong>R50</strong> per person per day - Max <span style=\"font-size: 12pt;\"><strong>R 250 </strong>per day</span></span></td>\r\n</tr>\r\n<tr>\r\n<td></td>\r\n<td></td>\r\n</tr>\r\n<tr>\r\n<td colspan=\"2\"><span style=\"font-size: 12pt;\"><span style=\"font-size: 12pt;\"><strong>Catering Options</strong></span> </span></td>\r\n</tr>\r\n<tr>\r\n<td><span style=\"font-size: 12pt;\"> <span style=\"font-size: 12pt;\">Breakfast (Continental)</span></span></td>\r\n<td><span style=\"font-size: 12pt;\"> <span style=\"font-size: 12pt;\"><strong>R 55</strong> per person</span></span></td>\r\n</tr>\r\n<tr>\r\n<td><span style=\"font-size: 12pt;\"> <span style=\"font-size: 12pt;\">Breakfast (Full English)</span></span></td>\r\n<td><span style=\"font-size: 12pt;\"> <span style=\"font-size: 12pt;\"><strong>R 95</strong> per person</span></span></td>\r\n</tr>\r\n<tr>\r\n<td><span style=\"font-size: 12pt;\"> <span style=\"font-size: 12pt;\">Light Lunch</span></span></td>\r\n<td><span style=\"font-size: 12pt;\">From <span style=\"font-size: 12pt;\"><strong>R 95 </strong>per person</span></span></td>\r\n</tr>\r\n<tr>\r\n<td><span style=\"font-size: 12pt;\"> <span style=\"font-size: 12pt;\">Dinners</span></span></td>\r\n<td><span style=\"font-size: 12pt;\">From <span style=\"font-size: 12pt;\"><strong>R 150 </strong>per person</span></span></td>\r\n</tr>\r\n<tr>\r\n<td></td>\r\n<td></td>\r\n</tr>\r\n<tr>\r\n<td><strong><span style=\"font-size: 12pt;\">Others</span></strong></td>\r\n<td></td>\r\n</tr>\r\n<tr>\r\n<td><span style=\"font-size: 12pt;\">Gate Remote</span></td>\r\n<td><span style=\"font-size: 12pt;\"><strong>R 200 </strong>deposit</span></td>\r\n</tr>\r\n<tr>\r\n<td><span style=\"font-size: 12pt;\">Gas Braai</span></td>\r\n<td><span style=\"font-size: 12pt;\"><strong>R 120 </strong>per day</span></td>\r\n</tr>\r\n<tr>\r\n<td><span style=\"font-size: 12pt;\">Day Visitors / Guests</span></td>\r\n<td><span style=\"font-size: 12pt;\"><strong>R 35 </strong>per person per day</span></td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n&nbsp;\r\n\r\n<hr />\r\n\r\n[/modal][button link=\"\" color=\"darkgreen\" size=\"\" type=\"\" shape=\"\" target=\"_self\" title=\"\" gradient_colors=\"|\" gradient_hover_colors=\"|\" accent_color=\"\" accent_hover_color=\"\" bevel_color=\"\" border_width=\"1px\" icon=\"\" icon_position=\"left\" icon_divider=\"no\" modal=\"rates\" animation_type=\"0\" animation_direction=\"left\" animation_speed=\"1\" alignment=\"\" class=\"\" id=\"\"]2015 RATES[/button][/one_half][/fullwidth][fullwidth background_color=\"#f0f0ed\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"20\" padding_bottom=\"20\" padding_left=\"0px\" padding_right=\"0px\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][one_half last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][fusion_text]\r\n<h3 style=\"text-align: justify;\">Set in the rolling peaks and valleys of a thousand hills surrounded by a canopy of indigenous trees, you will find that horses still have right of way, we certainly offer the best of both worlds, farm and charm coupled with modern amenities that will have you feeling relaxed and rejuvenated.</h3>\r\n<h3 style=\"text-align: justify;\">We know that sometimes you are searching for a romantic getaway or maybe a few days away with old friends. Other times you are searching for a place to host a weekend, family reunion or a business retreat. In addition to nightly room rentals, our lodge is also available for meetings, retreats  and makes the perfect place for a wedding party to stay together and get ready for the big day. Regardless, with our five comfortable and cozy guest bedrooms , multiple garden spaces and hideaways, and a  large private deck  where you can take a nap or read a book we definitely have the room for you!</h3>\r\n[/fusion_text][/one_half][one_half last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][fusion_text]\r\n<h3 style=\"text-align: justify;\">Our lodge has been in our family for years and has recently been beautifully renovated. Five rooms all with en-suite showers lead off your own large central lounge, featuring a 36 foot high vaulted ceiling, offering spacious living, dining, and a bar/conversational lounge area which includes a fitted kitchenette, all adding to a sense of homely comfort. Sumptuous meals can be provided on request and served on the bottom deck at the swimming pool.</h3>\r\n<h3 style=\"text-align: justify;\">Be lulled to sleep by the sound of the waterfall and tinkling stream just outside your window, waking from a peaceful night\'s sleep in a pillow-top bed dressed in luxurious linens to coddle you in ultimate comfort.</h3>\r\n<h3 style=\"text-align: justify;\">Our property boasts many different species of birds and animals. We have a resident otter, a family of wild bush pigs,  a family of rock rabbits, porcupine, little blue duikers, a variety of different frogs and an abundance of bird life, including the occasional snakes that pass through!</h3>\r\n<h3 style=\"text-align: justify;\">Evenings are quiet and peaceful taking you far away from the business of city life. This is a unique and memorable country experience. We look forward to having you as a guest!</h3>\r\n[/fusion_text][/one_half][/fullwidth][fullwidth background_color=\"#f0f0ed\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"20\" padding_bottom=\"20\" padding_left=\"0px\" padding_right=\"0px\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][fusion_text]\r\n<h1 style=\"text-align: center;\">Gallery</h1>\r\n[/fusion_text][separator style_type=\"single\" top_margin=\"\" bottom_margin=\"40\" sep_color=\"#000000\" border_size=\"\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"170px\" alignment=\"\" class=\"\" id=\"\"][one_sixth last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][/one_sixth][two_third last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][fusion_text]\r\n<h3 style=\"text-align: justify;\">The Lodge is open, spacious, comfortable and homely. During hot summer days, sit and bask in the sun on the deck  with one of our  picnic specials. In winter, snuggle up with a good book or challenge one another to a friendly board game in the glassed nook area .</h3>\r\n[/fusion_text][/two_third][one_sixth last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][/one_sixth][/fullwidth][fullwidth background_color=\"#f0f0ed\" background_image=\"http://localhost/assagaylodge/wp-content/uploads/2015/01/Wood_Texture.jpg\" background_parallax=\"fixed\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"30\" padding_bottom=\"10\" padding_left=\"0\" padding_right=\"0\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][recent_works layout=\"grid\" picture_size=\"auto\" boxed_text=\"unboxed\" filters=\"no\" columns=\"3\" column_spacing=\"12\" cat_slug=\"the-lodge\" exclude_cats=\"\" number_posts=\"9\" offset=\"\" excerpt_length=\"35\" strip_html=\"yes\" carousel_layout=\"title_on_rollover\" scroll_items=\"\" autoplay=\"no\" show_nav=\"yes\" mouse_scroll=\"no\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" class=\"\" id=\"\"][/recent_works][/fullwidth][fullwidth background_color=\"#f0f0ed\" background_image=\"\" background_parallax=\"fixed\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"20\" padding_bottom=\"20\" padding_left=\"0px\" padding_right=\"0px\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][fusion_text]\r\n<h1 style=\"text-align: center;\">BEDROOMS</h1>\r\n[/fusion_text][separator style_type=\"single\" top_margin=\"\" bottom_margin=\"20\" sep_color=\"#000000\" border_size=\"\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"170px\" alignment=\"\" class=\"\" id=\"\"][one_sixth last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][/one_sixth][two_third last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][fusion_text]\r\n<h3 style=\"text-align: justify;\">When it comes to our bedrooms we’re proud to say we offer something a little more special. One of five  lovingly and tastefully decorated guest rooms. Soft gray decor soothes the senses providing a peaceful, blissfully comfortable rest from your travels and hectic lives.</h3>\r\n<h3 style=\"text-align: justify;\">Our  bedrooms are spacious, clean, comfortable all en-suite, equipped with either king size or queen size beds. Each room sleeps two guests. The rooms have high ceilings, wall heaters &amp; ceiling fans. Beds all have electric blankets in Winter, 100% cotton percale sheets and thick hyper allergenic microfiber duvets and pillows. All guest rooms are cleaned with organic and green products. Amenities include hairdryers in each room. Three rooms feature King-sized beds  of which two can be  split into two single beds. Two  rooms can therefore be changed into a twin room upon request. Two rooms feature a Queen-sized double bed. These beds cannot be split into twin beds.</h3>\r\n[/fusion_text][/two_third][one_sixth last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][/one_sixth][/fullwidth][fullwidth background_color=\"\" background_image=\"http://localhost/assagaylodge/wp-content/uploads/2015/01/DSC01516-1148-x-764.jpg\" background_parallax=\"fixed\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"center center\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"20\" padding_bottom=\"20\" padding_left=\"0\" padding_right=\"0\" hundred_percent=\"no\" equal_height_columns=\"yes\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][recent_works layout=\"grid\" picture_size=\"auto\" boxed_text=\"unboxed\" filters=\"no\" columns=\"3\" column_spacing=\"12\" cat_slug=\"bedrooms\" exclude_cats=\"\" number_posts=\"6\" offset=\"\" excerpt_length=\"35\" strip_html=\"yes\" carousel_layout=\"title_on_rollover\" scroll_items=\"\" autoplay=\"no\" show_nav=\"yes\" mouse_scroll=\"no\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" class=\"\" id=\"\"][/recent_works][/fullwidth][fullwidth background_color=\"#f0f0ed\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"20\" padding_bottom=\"20\" padding_left=\"0\" padding_right=\"0\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][fusion_text]\r\n<h1 style=\"text-align: center;\">GARDENS</h1>\r\n[/fusion_text][separator style_type=\"single\" top_margin=\"\" bottom_margin=\"20\" sep_color=\"#000000\" border_size=\"\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"170px\" alignment=\"\" class=\"\" id=\"\"][one_sixth last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][/one_sixth][two_third last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][fusion_text]\r\n<h3 style=\"text-align: justify;\">The garden is large and offers many secluded spots to lose yourself in a book with a glass of wine underneath the shade of a tree, listening to the sounds of the birds and smelling the beautiful flowers.</h3>\r\n[/fusion_text][/two_third][one_sixth last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][/one_sixth][recent_works layout=\"grid\" picture_size=\"auto\" boxed_text=\"boxed\" filters=\"no\" columns=\"3\" column_spacing=\"12\" cat_slug=\"gardens\" exclude_cats=\"\" number_posts=\"9\" offset=\"\" excerpt_length=\"35\" strip_html=\"yes\" carousel_layout=\"title_on_rollover\" scroll_items=\"\" autoplay=\"no\" show_nav=\"yes\" mouse_scroll=\"no\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" class=\"\" id=\"\"][/recent_works][/fullwidth][fullwidth background_color=\"#ffffff\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"65px\" padding_bottom=\"65px\" padding_left=\"0px\" padding_right=\"0px\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][button link=\"http://localhost/assagaylodge/book-now/\" color=\"default\" size=\"xlarge\" type=\"3d\" shape=\"round\" target=\"_self\" title=\"\" gradient_colors=\"#f0f0ed|#f0f0ed\" gradient_hover_colors=\"#6666a4|#6666a4\" accent_color=\"#ffffff\" accent_hover_color=\"#ffffff\" bevel_color=\"\" border_width=\"0px\" icon=\"\" icon_position=\"left\" icon_divider=\"no\" modal=\"\" animation_type=\"0\" animation_direction=\"left\" animation_speed=\"1\" alignment=\"center\" class=\"\" id=\"\"]Make A Reservation Enquiry[/button][/fullwidth][one_third last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][/one_third][two_fifth last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][/two_fifth]', 'Home', '', 'inherit', 'closed', 'closed', '', '7-revision-v1', '', '', '2016-01-26 14:02:56', '2016-01-26 12:02:56', '', 7, 'http://msla.co.za/lodge/7-revision-v1/', 0, 'revision', '', 0);
INSERT INTO `wp_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(1177, 1, '2016-01-26 14:06:12', '2016-01-26 12:06:12', '[fullwidth background_color=\"#f0f0ed\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"20\" padding_bottom=\"20\" padding_left=\"0px\" padding_right=\"0px\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][one_half last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][separator style_type=\"single\" top_margin=\"0\" bottom_margin=\"30\" sep_color=\"#000000\" border_size=\"\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"170px\" alignment=\"center\" class=\"separator-left\" id=\"\"][fusion_text]\r\n<h1 style=\"text-align: center;\">No Fancy Star Grading\r\nNo Room Service\r\nNo Bed Turn-downs\r\nNo Rose Petals in the Bath water</h1>\r\n<h1 style=\"text-align: center;\">... just old fashioned homely comforts</h1>\r\n[/fusion_text][/one_half][one_half last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][fusion_text]\r\n<h1 style=\"text-align: justify;\">5 BEDROOM FAMILY LODGE</h1>\r\n<h3 style=\"text-align: justify;\">We are a four season lodge, because there’s always something to celebrate… We offer comfort, relaxation and privacy right in the heart of 1000 Hills. The Forest, the Gardens, the Atmosphere all speak to  Rest  &amp; Relaxation.</h3>\r\n[/fusion_text][separator style_type=\"single\" top_margin=\"0\" bottom_margin=\"30\" sep_color=\"#000000\" border_size=\"\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"170px\" alignment=\"left\" class=\"separator-left\" id=\"\"][modal name=\"rates\" title=\"2015 Rates\" size=\"large\" background=\"\" border_color=\"\" show_footer=\"yes\" class=\"\" id=\"\"]\r\n<table style=\"width: 100%;\" cellspacing=\"10\" cellpadding=\"5\">\r\n<tbody>\r\n<tr>\r\n<td colspan=\"2\"><span style=\"font-size: 10pt;\">ALL PRICES INCLUDE VAT </span></td>\r\n</tr>\r\n<tr>\r\n<td colspan=\"2\"><span style=\"font-size: 12pt;\"><strong>Self-Catering / Self-Servicing Accommodation</strong></span></td>\r\n</tr>\r\n<tr>\r\n<td><span style=\"font-size: 12pt;\">Full House - Max 10 persons per lodge</span></td>\r\n<td><span style=\"font-size: 12pt;\"><strong>R3250</strong> per night (R325 per person)</span></td>\r\n</tr>\r\n<tr>\r\n<td><span style=\"font-size: 12pt;\">Single - Max 1 person per room</span></td>\r\n<td><span style=\"font-size: 12pt;\"><strong>R 650</strong> per person per night</span></td>\r\n</tr>\r\n<tr>\r\n<td><span style=\"font-size: 12pt;\">Sharing - Max 2 persons per room</span></td>\r\n<td><span style=\"font-size: 12pt;\"><strong>R 495</strong> per person per night</span></td>\r\n</tr>\r\n<tr>\r\n<td></td>\r\n<td></td>\r\n</tr>\r\n<tr>\r\n<td><strong><span style=\"font-size: 12pt;\">Servicing Options</span></strong></td>\r\n<td></td>\r\n</tr>\r\n<tr>\r\n<td><span style=\"font-size: 12pt;\">Lodge Only Servicing (Optional) </span></td>\r\n<td><span style=\"font-size: 12pt;\"><strong>R30</strong> per person per day - Max <span style=\"font-size: 12pt;\"><strong>R 150 </strong>per day</span></span></td>\r\n</tr>\r\n<tr>\r\n<td><span style=\"font-size: 12pt;\">Lodge &amp; Room Servicing (Optional) </span></td>\r\n<td><span style=\"font-size: 12pt;\"><strong>R50</strong> per person per day - Max <span style=\"font-size: 12pt;\"><strong>R 250 </strong>per day</span></span></td>\r\n</tr>\r\n<tr>\r\n<td></td>\r\n<td></td>\r\n</tr>\r\n<tr>\r\n<td colspan=\"2\"><span style=\"font-size: 12pt;\"><span style=\"font-size: 12pt;\"><strong>Catering Options</strong></span> </span></td>\r\n</tr>\r\n<tr>\r\n<td><span style=\"font-size: 12pt;\"> <span style=\"font-size: 12pt;\">Breakfast (Continental)</span></span></td>\r\n<td><span style=\"font-size: 12pt;\"> <span style=\"font-size: 12pt;\"><strong>R 55</strong> per person</span></span></td>\r\n</tr>\r\n<tr>\r\n<td><span style=\"font-size: 12pt;\"> <span style=\"font-size: 12pt;\">Breakfast (Full English)</span></span></td>\r\n<td><span style=\"font-size: 12pt;\"> <span style=\"font-size: 12pt;\"><strong>R 95</strong> per person</span></span></td>\r\n</tr>\r\n<tr>\r\n<td><span style=\"font-size: 12pt;\"> <span style=\"font-size: 12pt;\">Light Lunch</span></span></td>\r\n<td><span style=\"font-size: 12pt;\">From <span style=\"font-size: 12pt;\"><strong>R 95 </strong>per person</span></span></td>\r\n</tr>\r\n<tr>\r\n<td><span style=\"font-size: 12pt;\"> <span style=\"font-size: 12pt;\">Dinners</span></span></td>\r\n<td><span style=\"font-size: 12pt;\">From <span style=\"font-size: 12pt;\"><strong>R 150 </strong>per person</span></span></td>\r\n</tr>\r\n<tr>\r\n<td></td>\r\n<td></td>\r\n</tr>\r\n<tr>\r\n<td><strong><span style=\"font-size: 12pt;\">Others</span></strong></td>\r\n<td></td>\r\n</tr>\r\n<tr>\r\n<td><span style=\"font-size: 12pt;\">Gate Remote</span></td>\r\n<td><span style=\"font-size: 12pt;\"><strong>R 200 </strong>deposit</span></td>\r\n</tr>\r\n<tr>\r\n<td><span style=\"font-size: 12pt;\">Gas Braai</span></td>\r\n<td><span style=\"font-size: 12pt;\"><strong>R 120 </strong>per day</span></td>\r\n</tr>\r\n<tr>\r\n<td><span style=\"font-size: 12pt;\">Day Visitors / Guests</span></td>\r\n<td><span style=\"font-size: 12pt;\"><strong>R 35 </strong>per person per day</span></td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n&nbsp;\r\n\r\n<hr />\r\n\r\n[/modal][button link=\"\" color=\"darkgreen\" size=\"\" type=\"\" shape=\"\" target=\"_self\" title=\"\" gradient_colors=\"|\" gradient_hover_colors=\"|\" accent_color=\"\" accent_hover_color=\"\" bevel_color=\"\" border_width=\"1px\" icon=\"\" icon_position=\"left\" icon_divider=\"no\" modal=\"rates\" animation_type=\"0\" animation_direction=\"left\" animation_speed=\"1\" alignment=\"\" class=\"\" id=\"\"]2015 RATES[/button][/one_half][/fullwidth][fullwidth background_color=\"#f0f0ed\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"20\" padding_bottom=\"20\" padding_left=\"0px\" padding_right=\"0px\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][one_half last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][fusion_text]\r\n<h3 style=\"text-align: justify;\">Set in the rolling peaks and valleys of a thousand hills surrounded by a canopy of indigenous trees, you will find that horses still have right of way, we certainly offer the best of both worlds, farm and charm coupled with modern amenities that will have you feeling relaxed and rejuvenated.</h3>\r\n<h3 style=\"text-align: justify;\">We know that sometimes you are searching for a romantic getaway or maybe a few days away with old friends. Other times you are searching for a place to host a weekend, family reunion or a business retreat. In addition to nightly room rentals, our lodge is also available for meetings, retreats  and makes the perfect place for a wedding party to stay together and get ready for the big day. Regardless, with our five comfortable and cozy guest bedrooms, multiple garden spaces and hideaways, and a  large private deck  where you can take a nap or read a book we definitely have the room for you!</h3>\r\n<h3 style=\"text-align: justify;\">Our property boasts many different species of birds and animals. We have a resident otter, a family of wild bush pigs,  a family of rock rabbits, porcupine, little blue duikers, a variety of different frogs and an abundance of bird life, including the occasional snakes that pass through!</h3>\r\n[/fusion_text][/one_half][one_half last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][fusion_text]\r\n<h3 style=\"text-align: justify;\">Our lodge has been in our family for years and has recently been beautifully renovated. Five rooms all with en-suite showers lead off your own large central lounge, featuring a 36 foot high vaulted ceiling, offering spacious living, dining, and a bar/conversational lounge area which includes a fitted kitchenette, all adding to a sense of homely comfort. Sumptuous meals can be provided on request and served on the bottom deck at the swimming pool.</h3>\r\n<h3 style=\"text-align: justify;\">Be lulled to sleep by the sound of the waterfall and tinkling stream just outside your window, waking from a peaceful night\'s sleep in a pillow-top bed dressed in luxurious linens to coddle you in ultimate comfort.</h3>\r\n<h3 style=\"text-align: justify;\">Evenings are quiet and peaceful taking you far away from the business of city life. This is a unique and memorable country experience. We look forward to having you as a guest!</h3>\r\n[/fusion_text][/one_half][/fullwidth][fullwidth background_color=\"#f0f0ed\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"20\" padding_bottom=\"20\" padding_left=\"0px\" padding_right=\"0px\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][fusion_text]\r\n<h1 style=\"text-align: center;\">Gallery</h1>\r\n[/fusion_text][separator style_type=\"single\" top_margin=\"\" bottom_margin=\"40\" sep_color=\"#000000\" border_size=\"\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"170px\" alignment=\"\" class=\"\" id=\"\"][one_sixth last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][/one_sixth][two_third last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][fusion_text]\r\n<h3 style=\"text-align: justify;\">The Lodge is open, spacious, comfortable and homely. During hot summer days, sit and bask in the sun on the deck  with one of our  picnic specials. In winter, snuggle up with a good book or challenge one another to a friendly board game in the glassed nook area .</h3>\r\n[/fusion_text][/two_third][one_sixth last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][/one_sixth][/fullwidth][fullwidth background_color=\"#f0f0ed\" background_image=\"http://localhost/assagaylodge/wp-content/uploads/2015/01/Wood_Texture.jpg\" background_parallax=\"fixed\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"30\" padding_bottom=\"10\" padding_left=\"0\" padding_right=\"0\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][recent_works layout=\"grid\" picture_size=\"auto\" boxed_text=\"unboxed\" filters=\"no\" columns=\"3\" column_spacing=\"12\" cat_slug=\"the-lodge\" exclude_cats=\"\" number_posts=\"9\" offset=\"\" excerpt_length=\"35\" strip_html=\"yes\" carousel_layout=\"title_on_rollover\" scroll_items=\"\" autoplay=\"no\" show_nav=\"yes\" mouse_scroll=\"no\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" class=\"\" id=\"\"][/recent_works][/fullwidth][fullwidth background_color=\"#f0f0ed\" background_image=\"\" background_parallax=\"fixed\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"20\" padding_bottom=\"20\" padding_left=\"0px\" padding_right=\"0px\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][fusion_text]\r\n<h1 style=\"text-align: center;\">BEDROOMS</h1>\r\n[/fusion_text][separator style_type=\"single\" top_margin=\"\" bottom_margin=\"20\" sep_color=\"#000000\" border_size=\"\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"170px\" alignment=\"\" class=\"\" id=\"\"][one_sixth last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][/one_sixth][two_third last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][fusion_text]\r\n<h3 style=\"text-align: justify;\">When it comes to our bedrooms we’re proud to say we offer something a little more special. One of five  lovingly and tastefully decorated guest rooms. Soft gray decor soothes the senses providing a peaceful, blissfully comfortable rest from your travels and hectic lives.</h3>\r\n<h3 style=\"text-align: justify;\">Our  bedrooms are spacious, clean, comfortable all en-suite, equipped with either king size or queen size beds. Each room sleeps two guests. The rooms have high ceilings, wall heaters &amp; ceiling fans. Beds all have electric blankets in Winter, 100% cotton percale sheets and thick hyper allergenic microfiber duvets and pillows. All guest rooms are cleaned with organic and green products. Amenities include hairdryers in each room. Three rooms feature King-sized beds  of which two can be  split into two single beds. Two  rooms can therefore be changed into a twin room upon request. Two rooms feature a Queen-sized double bed. These beds cannot be split into twin beds.</h3>\r\n[/fusion_text][/two_third][one_sixth last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][/one_sixth][/fullwidth][fullwidth background_color=\"\" background_image=\"http://localhost/assagaylodge/wp-content/uploads/2015/01/DSC01516-1148-x-764.jpg\" background_parallax=\"fixed\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"center center\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"20\" padding_bottom=\"20\" padding_left=\"0\" padding_right=\"0\" hundred_percent=\"no\" equal_height_columns=\"yes\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][recent_works layout=\"grid\" picture_size=\"auto\" boxed_text=\"unboxed\" filters=\"no\" columns=\"3\" column_spacing=\"12\" cat_slug=\"bedrooms\" exclude_cats=\"\" number_posts=\"6\" offset=\"\" excerpt_length=\"35\" strip_html=\"yes\" carousel_layout=\"title_on_rollover\" scroll_items=\"\" autoplay=\"no\" show_nav=\"yes\" mouse_scroll=\"no\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" class=\"\" id=\"\"][/recent_works][/fullwidth][fullwidth background_color=\"#f0f0ed\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"20\" padding_bottom=\"20\" padding_left=\"0\" padding_right=\"0\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][fusion_text]\r\n<h1 style=\"text-align: center;\">GARDENS</h1>\r\n[/fusion_text][separator style_type=\"single\" top_margin=\"\" bottom_margin=\"20\" sep_color=\"#000000\" border_size=\"\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"170px\" alignment=\"\" class=\"\" id=\"\"][one_sixth last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][/one_sixth][two_third last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][fusion_text]\r\n<h3 style=\"text-align: justify;\">The garden is large and offers many secluded spots to lose yourself in a book with a glass of wine underneath the shade of a tree, listening to the sounds of the birds and smelling the beautiful flowers.</h3>\r\n[/fusion_text][/two_third][one_sixth last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][/one_sixth][recent_works layout=\"grid\" picture_size=\"auto\" boxed_text=\"boxed\" filters=\"no\" columns=\"3\" column_spacing=\"12\" cat_slug=\"gardens\" exclude_cats=\"\" number_posts=\"9\" offset=\"\" excerpt_length=\"35\" strip_html=\"yes\" carousel_layout=\"title_on_rollover\" scroll_items=\"\" autoplay=\"no\" show_nav=\"yes\" mouse_scroll=\"no\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" class=\"\" id=\"\"][/recent_works][/fullwidth][fullwidth background_color=\"#ffffff\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"65px\" padding_bottom=\"65px\" padding_left=\"0px\" padding_right=\"0px\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][button link=\"http://localhost/assagaylodge/book-now/\" color=\"default\" size=\"xlarge\" type=\"3d\" shape=\"round\" target=\"_self\" title=\"\" gradient_colors=\"#f0f0ed|#f0f0ed\" gradient_hover_colors=\"#6666a4|#6666a4\" accent_color=\"#ffffff\" accent_hover_color=\"#ffffff\" bevel_color=\"\" border_width=\"0px\" icon=\"\" icon_position=\"left\" icon_divider=\"no\" modal=\"\" animation_type=\"0\" animation_direction=\"left\" animation_speed=\"1\" alignment=\"center\" class=\"\" id=\"\"]Make A Reservation Enquiry[/button][/fullwidth][one_third last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][/one_third][two_fifth last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][/two_fifth]', 'Home', '', 'inherit', 'closed', 'closed', '', '7-revision-v1', '', '', '2016-01-26 14:06:12', '2016-01-26 12:06:12', '', 7, 'http://msla.co.za/lodge/7-revision-v1/', 0, 'revision', '', 0),
(1178, 1, '2016-01-26 14:10:37', '2016-01-26 12:10:37', '[fullwidth background_color=\"#f0f0ed\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"20\" padding_bottom=\"20\" padding_left=\"0px\" padding_right=\"0px\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][one_half last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][separator style_type=\"single\" top_margin=\"0\" bottom_margin=\"30\" sep_color=\"#000000\" border_size=\"\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"170px\" alignment=\"center\" class=\"separator-left\" id=\"\"][fusion_text]\r\n<h1 style=\"text-align: center;\">No Fancy Star Grading\r\nNo Room Service\r\nNo Bed Turn-downs\r\nNo Rose Petals in the Bath water</h1>\r\n<h1 style=\"text-align: center;\">... just old fashioned homely comforts</h1>\r\n[/fusion_text][/one_half][one_half last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][fusion_text]\r\n<h1 style=\"text-align: justify;\">5 BEDROOM FAMILY LODGE</h1>\r\n<h3 style=\"text-align: justify;\">We are a four season lodge, because there’s always something to celebrate… We offer comfort, relaxation and privacy right in the heart of 1000 Hills. The Forest, the Gardens, the Atmosphere all speak to  Rest  &amp; Relaxation.</h3>\r\n[/fusion_text][separator style_type=\"single\" top_margin=\"0\" bottom_margin=\"30\" sep_color=\"#000000\" border_size=\"\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"170px\" alignment=\"left\" class=\"separator-left\" id=\"\"][modal name=\"rates\" title=\"2015 Rates\" size=\"large\" background=\"\" border_color=\"\" show_footer=\"yes\" class=\"\" id=\"\"]\r\n<table style=\"width: 100%;\" cellspacing=\"10\" cellpadding=\"5\">\r\n<tbody>\r\n<tr>\r\n<td colspan=\"2\"><span style=\"font-size: 10pt;\">ALL PRICES INCLUDE VAT </span></td>\r\n</tr>\r\n<tr>\r\n<td colspan=\"2\"><span style=\"font-size: 12pt;\"><strong>Self-Catering / Self-Servicing Accommodation</strong></span></td>\r\n</tr>\r\n<tr>\r\n<td><span style=\"font-size: 12pt;\">Full House - Max 10 persons per lodge</span></td>\r\n<td><span style=\"font-size: 12pt;\"><strong>R3250</strong> per night (R325 per person)</span></td>\r\n</tr>\r\n<tr>\r\n<td><span style=\"font-size: 12pt;\">Single - Max 1 person per room</span></td>\r\n<td><span style=\"font-size: 12pt;\"><strong>R 650</strong> per person per night</span></td>\r\n</tr>\r\n<tr>\r\n<td><span style=\"font-size: 12pt;\">Sharing - Max 2 persons per room</span></td>\r\n<td><span style=\"font-size: 12pt;\"><strong>R 495</strong> per person per night</span></td>\r\n</tr>\r\n<tr>\r\n<td></td>\r\n<td></td>\r\n</tr>\r\n<tr>\r\n<td><strong><span style=\"font-size: 12pt;\">Servicing Options</span></strong></td>\r\n<td></td>\r\n</tr>\r\n<tr>\r\n<td><span style=\"font-size: 12pt;\">Lodge Only Servicing (Optional) </span></td>\r\n<td><span style=\"font-size: 12pt;\"><strong>R30</strong> per person per day - Max <span style=\"font-size: 12pt;\"><strong>R 150 </strong>per day</span></span></td>\r\n</tr>\r\n<tr>\r\n<td><span style=\"font-size: 12pt;\">Lodge &amp; Room Servicing (Optional) </span></td>\r\n<td><span style=\"font-size: 12pt;\"><strong>R50</strong> per person per day - Max <span style=\"font-size: 12pt;\"><strong>R 250 </strong>per day</span></span></td>\r\n</tr>\r\n<tr>\r\n<td></td>\r\n<td></td>\r\n</tr>\r\n<tr>\r\n<td colspan=\"2\"><span style=\"font-size: 12pt;\"><span style=\"font-size: 12pt;\"><strong>Catering Options</strong></span> </span></td>\r\n</tr>\r\n<tr>\r\n<td><span style=\"font-size: 12pt;\"> <span style=\"font-size: 12pt;\">Breakfast (Continental)</span></span></td>\r\n<td><span style=\"font-size: 12pt;\"> <span style=\"font-size: 12pt;\"><strong>R 55</strong> per person</span></span></td>\r\n</tr>\r\n<tr>\r\n<td><span style=\"font-size: 12pt;\"> <span style=\"font-size: 12pt;\">Breakfast (Full English)</span></span></td>\r\n<td><span style=\"font-size: 12pt;\"> <span style=\"font-size: 12pt;\"><strong>R 95</strong> per person</span></span></td>\r\n</tr>\r\n<tr>\r\n<td><span style=\"font-size: 12pt;\"> <span style=\"font-size: 12pt;\">Light Lunch</span></span></td>\r\n<td><span style=\"font-size: 12pt;\">From <span style=\"font-size: 12pt;\"><strong>R 95 </strong>per person</span></span></td>\r\n</tr>\r\n<tr>\r\n<td><span style=\"font-size: 12pt;\"> <span style=\"font-size: 12pt;\">Dinners</span></span></td>\r\n<td><span style=\"font-size: 12pt;\">From <span style=\"font-size: 12pt;\"><strong>R 150 </strong>per person</span></span></td>\r\n</tr>\r\n<tr>\r\n<td></td>\r\n<td></td>\r\n</tr>\r\n<tr>\r\n<td><strong><span style=\"font-size: 12pt;\">Others</span></strong></td>\r\n<td></td>\r\n</tr>\r\n<tr>\r\n<td><span style=\"font-size: 12pt;\">Gate Remote</span></td>\r\n<td><span style=\"font-size: 12pt;\"><strong>R 200 </strong>deposit</span></td>\r\n</tr>\r\n<tr>\r\n<td><span style=\"font-size: 12pt;\">Gas Braai</span></td>\r\n<td><span style=\"font-size: 12pt;\"><strong>R 120 </strong>per day</span></td>\r\n</tr>\r\n<tr>\r\n<td><span style=\"font-size: 12pt;\">Day Visitors / Guests</span></td>\r\n<td><span style=\"font-size: 12pt;\"><strong>R 35 </strong>per person per day</span></td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n&nbsp;\r\n\r\n<hr />\r\n\r\n[/modal][button link=\"\" color=\"darkgreen\" size=\"\" type=\"\" shape=\"\" target=\"_self\" title=\"\" gradient_colors=\"|\" gradient_hover_colors=\"|\" accent_color=\"\" accent_hover_color=\"\" bevel_color=\"\" border_width=\"1px\" icon=\"\" icon_position=\"left\" icon_divider=\"no\" modal=\"rates\" animation_type=\"0\" animation_direction=\"left\" animation_speed=\"1\" alignment=\"\" class=\"\" id=\"\"]2015 RATES[/button][/one_half][/fullwidth][fullwidth background_color=\"#f0f0ed\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"20\" padding_bottom=\"20\" padding_left=\"0px\" padding_right=\"0px\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][one_half last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][fusion_text]\r\n<h3 style=\"text-align: justify;\">Set in the rolling peaks and valleys of a thousand hills surrounded by a canopy of indigenous trees, you will find that horses still have right of way, we certainly offer the best of both worlds, farm and charm coupled with modern amenities that will have you feeling relaxed and rejuvenated.</h3>\r\n<h3 style=\"text-align: justify;\">We know that sometimes you are searching for a romantic getaway or maybe a few days away with old friends. Other times you are searching for a place to host a weekend, family reunion or a business retreat. In addition to nightly room rentals, our lodge is also available for meetings, retreats  and makes the perfect place for a wedding party to stay together and get ready for the big day. Regardless, with our five comfortable and cozy guest bedrooms, multiple garden spaces and hideaways, and a  large private deck  where you can take a nap or read a book we definitely have the room for you!</h3>\r\n<h3 style=\"text-align: justify;\">Evenings are quiet and peaceful taking you far away from the business of city life. This is a unique and memorable country experience. We look forward to having you as a guest!</h3>\r\n[/fusion_text][/one_half][one_half last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][fusion_text]\r\n<h3 style=\"text-align: justify;\">Our lodge has been in our family for years and has recently been beautifully renovated. Five rooms all with en-suite showers lead off your own large central lounge, featuring a 36 foot high vaulted ceiling, offering spacious living, dining, and a bar/conversational lounge area which includes a fitted kitchenette, all adding to a sense of homely comfort. Sumptuous meals can be provided on request and served on the bottom deck at the swimming pool.</h3>\r\n<h3 style=\"text-align: justify;\">Be lulled to sleep by the sound of the waterfall and tinkling stream just outside your window, waking from a peaceful night\'s sleep in a pillow-top bed dressed in luxurious linens to coddle you in ultimate comfort.</h3>\r\n<h3 style=\"text-align: justify;\">Our property boasts many different species of birds and animals. We have a resident otter, a family of wild bush pigs,  a family of rock rabbits, porcupine, little blue duikers, a variety of different frogs and an abundance of bird life, including the occasional snakes that pass through!</h3>\r\n[/fusion_text][/one_half][/fullwidth][fullwidth background_color=\"#f0f0ed\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"20\" padding_bottom=\"20\" padding_left=\"0px\" padding_right=\"0px\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][fusion_text]\r\n<h1 style=\"text-align: center;\">Gallery</h1>\r\n[/fusion_text][separator style_type=\"single\" top_margin=\"\" bottom_margin=\"40\" sep_color=\"#000000\" border_size=\"\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"170px\" alignment=\"\" class=\"\" id=\"\"][one_sixth last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][/one_sixth][two_third last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][fusion_text]\r\n<h3 style=\"text-align: justify;\">The Lodge is open, spacious, comfortable and homely. During hot summer days, sit and bask in the sun on the deck  with one of our  picnic specials. In winter, snuggle up with a good book or challenge one another to a friendly board game in the glassed nook area .</h3>\r\n[/fusion_text][/two_third][one_sixth last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][/one_sixth][/fullwidth][fullwidth background_color=\"#f0f0ed\" background_image=\"http://localhost/assagaylodge/wp-content/uploads/2015/01/Wood_Texture.jpg\" background_parallax=\"fixed\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"30\" padding_bottom=\"10\" padding_left=\"0\" padding_right=\"0\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][recent_works layout=\"grid\" picture_size=\"auto\" boxed_text=\"unboxed\" filters=\"no\" columns=\"3\" column_spacing=\"12\" cat_slug=\"the-lodge\" exclude_cats=\"\" number_posts=\"9\" offset=\"\" excerpt_length=\"35\" strip_html=\"yes\" carousel_layout=\"title_on_rollover\" scroll_items=\"\" autoplay=\"no\" show_nav=\"yes\" mouse_scroll=\"no\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" class=\"\" id=\"\"][/recent_works][/fullwidth][fullwidth background_color=\"#f0f0ed\" background_image=\"\" background_parallax=\"fixed\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"20\" padding_bottom=\"20\" padding_left=\"0px\" padding_right=\"0px\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][fusion_text]\r\n<h1 style=\"text-align: center;\">BEDROOMS</h1>\r\n[/fusion_text][separator style_type=\"single\" top_margin=\"\" bottom_margin=\"20\" sep_color=\"#000000\" border_size=\"\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"170px\" alignment=\"\" class=\"\" id=\"\"][one_sixth last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][/one_sixth][two_third last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][fusion_text]\r\n<h3 style=\"text-align: justify;\">When it comes to our bedrooms we’re proud to say we offer something a little more special. One of five  lovingly and tastefully decorated guest rooms. Soft gray decor soothes the senses providing a peaceful, blissfully comfortable rest from your travels and hectic lives.</h3>\r\n<h3 style=\"text-align: justify;\">Our  bedrooms are spacious, clean, comfortable all en-suite, equipped with either king size or queen size beds. Each room sleeps two guests. The rooms have high ceilings, wall heaters &amp; ceiling fans. Beds all have electric blankets in Winter, 100% cotton percale sheets and thick hyper allergenic microfiber duvets and pillows. All guest rooms are cleaned with organic and green products. Amenities include hairdryers in each room. Three rooms feature King-sized beds  of which two can be  split into two single beds. Two  rooms can therefore be changed into a twin room upon request. Two rooms feature a Queen-sized double bed. These beds cannot be split into twin beds.</h3>\r\n[/fusion_text][/two_third][one_sixth last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][/one_sixth][/fullwidth][fullwidth background_color=\"\" background_image=\"http://localhost/assagaylodge/wp-content/uploads/2015/01/DSC01516-1148-x-764.jpg\" background_parallax=\"fixed\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"center center\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"20\" padding_bottom=\"20\" padding_left=\"0\" padding_right=\"0\" hundred_percent=\"no\" equal_height_columns=\"yes\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][recent_works layout=\"grid\" picture_size=\"auto\" boxed_text=\"unboxed\" filters=\"no\" columns=\"3\" column_spacing=\"12\" cat_slug=\"bedrooms\" exclude_cats=\"\" number_posts=\"6\" offset=\"\" excerpt_length=\"35\" strip_html=\"yes\" carousel_layout=\"title_on_rollover\" scroll_items=\"\" autoplay=\"no\" show_nav=\"yes\" mouse_scroll=\"no\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" class=\"\" id=\"\"][/recent_works][/fullwidth][fullwidth background_color=\"#f0f0ed\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"20\" padding_bottom=\"20\" padding_left=\"0\" padding_right=\"0\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][fusion_text]\r\n<h1 style=\"text-align: center;\">GARDENS</h1>\r\n[/fusion_text][separator style_type=\"single\" top_margin=\"\" bottom_margin=\"20\" sep_color=\"#000000\" border_size=\"\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"170px\" alignment=\"\" class=\"\" id=\"\"][one_sixth last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][/one_sixth][two_third last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][fusion_text]\r\n<h3 style=\"text-align: justify;\">The garden is large and offers many secluded spots to lose yourself in a book with a glass of wine underneath the shade of a tree, listening to the sounds of the birds and smelling the beautiful flowers.</h3>\r\n[/fusion_text][/two_third][one_sixth last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][/one_sixth][recent_works layout=\"grid\" picture_size=\"auto\" boxed_text=\"boxed\" filters=\"no\" columns=\"3\" column_spacing=\"12\" cat_slug=\"gardens\" exclude_cats=\"\" number_posts=\"9\" offset=\"\" excerpt_length=\"35\" strip_html=\"yes\" carousel_layout=\"title_on_rollover\" scroll_items=\"\" autoplay=\"no\" show_nav=\"yes\" mouse_scroll=\"no\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" class=\"\" id=\"\"][/recent_works][/fullwidth][fullwidth background_color=\"#ffffff\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"65px\" padding_bottom=\"65px\" padding_left=\"0px\" padding_right=\"0px\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][button link=\"http://localhost/assagaylodge/book-now/\" color=\"default\" size=\"xlarge\" type=\"3d\" shape=\"round\" target=\"_self\" title=\"\" gradient_colors=\"#f0f0ed|#f0f0ed\" gradient_hover_colors=\"#6666a4|#6666a4\" accent_color=\"#ffffff\" accent_hover_color=\"#ffffff\" bevel_color=\"\" border_width=\"0px\" icon=\"\" icon_position=\"left\" icon_divider=\"no\" modal=\"\" animation_type=\"0\" animation_direction=\"left\" animation_speed=\"1\" alignment=\"center\" class=\"\" id=\"\"]Make A Reservation Enquiry[/button][/fullwidth][one_third last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][/one_third][two_fifth last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][/two_fifth]', 'Home', '', 'inherit', 'closed', 'closed', '', '7-revision-v1', '', '', '2016-01-26 14:10:37', '2016-01-26 12:10:37', '', 7, 'http://msla.co.za/lodge/7-revision-v1/', 0, 'revision', '', 0);
INSERT INTO `wp_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(1179, 1, '2016-01-26 14:17:11', '2016-01-26 12:17:11', '[fullwidth background_color=\"\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"70px\" padding_bottom=\"75px\" padding_left=\"0px\" padding_right=\"0px\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][one_half last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][fusion_text]\r\n<h3>Contact Us</h3>\r\nSend us a message.[/fusion_text][fusion_text][contact-form-7 id=\"246\" title=\"Contact form 1\"][/fusion_text][/one_half][one_half last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][fusion_text]\r\n<h1>Where are we?</h1>\r\n<h2>4 Williams Road\r\nAssagay, Hillcrest\r\nKwaZulu Natal</h2>\r\n<h1>Contact</h1>\r\n<h2>0317656046 or 0317655961</h2>\r\n[/fusion_text][separator style_type=\"none\" top_margin=\"\" bottom_margin=\"20\" sep_color=\"\" border_size=\"\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"\" alignment=\"\" class=\"\" id=\"\"][accordian class=\"\" id=\"\"][toggle title=\"GPS Location\" open=\"no\"]\r\n\r\n<strong>GPS: Latitude (South) -29.771865, Longitude (East) 30.736892</strong>\r\n\r\n[/toggle][toggle title=\"Directions\" open=\"no\"]\r\n\r\nWhether you are coming from Durban or Pietermaritzburg be sure to take the Shongweni / Assagay / Hillcrest turn off. This is known as Kassier Rd however it is poorly marked but it is nevertheless the road which you turn into from the highway. It runs from Shongweni in the south, over both highways (N3 &amp; M13), passed the Hillcrest Hospital, through to Old Main Rd, in the north.\r\n\r\nHead towards Old Main Road, Hillcrest.\r\n\r\nRemain on Kassier Road, heading north, for about 2-3km and turn into Assagay Road, a good land mark is the Assagay Nursery &amp; Equitack (Animal Feeds) almost opposite this turn off.\r\n\r\nTake the turn into Assagay Road (not Assagay Cresent). Head up the rise. Turn left into Castle Road, carry down the dip for about 500m and cross a small water-bridge. Turn first right into Lello Road, just after the bridge. Continue on Lello Road, the road dips and briefly climbs, the valley falling away to your right. Finally, turn left into Williams Road (it\'s essentially the first left turn on Lello Road), Continue down Williams Road for about 800m. On your right you will come to the entrance of the farm called `Fourever`No 4 Williams Road. There’s a 1000 Hills Tourism Sign outside. A wooden fence and silver gate. Welcome to Assagay Lodge.\r\n\r\n[/toggle][/accordian][/one_half][/fullwidth][fullwidth background_color=\"\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"0px\" padding_bottom=\"0px\" padding_left=\"0px\" padding_right=\"0px\" hundred_percent=\"yes\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][map address=\"Assagay Forest Lodge\" type=\"roadmap\" map_style=\"custom\" overlay_color=\"#6666a4\" infobox=\"custom\" infobox_background_color=\"rgba(102,102,164,.8)\" infobox_text_color=\"#ffffff\" infobox_content=\"\" icon=\"http://theme-fusion.com/avada_demos_xml/travel/wp-content/uploads/2015/01/map.png\" width=\"100%\" height=\"700px\" zoom=\"13\" scrollwheel=\"yes\" scale=\"yes\" zoom_pancontrol=\"yes\" animation=\"yes\" popup=\"no\" class=\"\" id=\"\"][/map][/fullwidth]', 'Contact & Directions', '', 'inherit', 'closed', 'closed', '', '11-revision-v1', '', '', '2016-01-26 14:17:11', '2016-01-26 12:17:11', '', 11, 'http://msla.co.za/lodge/11-revision-v1/', 0, 'revision', '', 0),
(1180, 1, '2016-01-26 14:19:36', '2016-01-26 12:19:36', '[fullwidth background_color=\"\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"70px\" padding_bottom=\"75px\" padding_left=\"0px\" padding_right=\"0px\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][one_half last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][fusion_text]<h1>Contact Us</h1>\r\n<h2>Send us a message.</h2>[/fusion_text][fusion_text][contact-form-7 id=\"246\" title=\"Contact form 1\"][/fusion_text][/one_half][one_half last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][fusion_text]\r\n<h1>Where are we?</h1>\r\n<h2>4 Williams Road\r\nAssagay, Hillcrest\r\nKwaZulu Natal</h2>\r\n<h1>Contact</h1>\r\n<h2>0317656046 or 0317655961</h2>\r\n[/fusion_text][separator style_type=\"none\" top_margin=\"\" bottom_margin=\"20\" sep_color=\"\" border_size=\"\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"\" alignment=\"\" class=\"\" id=\"\"][accordian class=\"\" id=\"\"][toggle title=\"GPS Location\" open=\"no\"]\r\n\r\n<strong>GPS: Latitude (South) -29.771865, Longitude (East) 30.736892</strong>\r\n\r\n[/toggle][toggle title=\"Directions\" open=\"no\"]\r\n\r\nWhether you are coming from Durban or Pietermaritzburg be sure to take the Shongweni / Assagay / Hillcrest turn off. This is known as Kassier Rd however it is poorly marked but it is nevertheless the road which you turn into from the highway. It runs from Shongweni in the south, over both highways (N3 &amp; M13), passed the Hillcrest Hospital, through to Old Main Rd, in the north.\r\n\r\nHead towards Old Main Road, Hillcrest.\r\n\r\nRemain on Kassier Road, heading north, for about 2-3km and turn into Assagay Road, a good land mark is the Assagay Nursery &amp; Equitack (Animal Feeds) almost opposite this turn off.\r\n\r\nTake the turn into Assagay Road (not Assagay Cresent). Head up the rise. Turn left into Castle Road, carry down the dip for about 500m and cross a small water-bridge. Turn first right into Lello Road, just after the bridge. Continue on Lello Road, the road dips and briefly climbs, the valley falling away to your right. Finally, turn left into Williams Road (it\'s essentially the first left turn on Lello Road), Continue down Williams Road for about 800m. On your right you will come to the entrance of the farm called `Fourever`No 4 Williams Road. There’s a 1000 Hills Tourism Sign outside. A wooden fence and silver gate. Welcome to Assagay Lodge.\r\n\r\n[/toggle][/accordian][/one_half][/fullwidth][fullwidth background_color=\"\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"0px\" padding_bottom=\"0px\" padding_left=\"0px\" padding_right=\"0px\" hundred_percent=\"yes\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][map address=\"Assagay Forest Lodge\" type=\"roadmap\" map_style=\"custom\" overlay_color=\"#6666a4\" infobox=\"custom\" infobox_background_color=\"rgba(102,102,164,.8)\" infobox_text_color=\"#ffffff\" infobox_content=\"\" icon=\"http://theme-fusion.com/avada_demos_xml/travel/wp-content/uploads/2015/01/map.png\" width=\"100%\" height=\"700px\" zoom=\"13\" scrollwheel=\"yes\" scale=\"yes\" zoom_pancontrol=\"yes\" animation=\"yes\" popup=\"no\" class=\"\" id=\"\"][/map][/fullwidth]', 'Contact & Directions', '', 'inherit', 'closed', 'closed', '', '11-revision-v1', '', '', '2016-01-26 14:19:36', '2016-01-26 12:19:36', '', 11, 'http://msla.co.za/lodge/11-revision-v1/', 0, 'revision', '', 0),
(1181, 1, '2016-01-26 15:20:49', '2016-01-26 13:20:49', '[fullwidth background_color=\"\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding_top=\"20\" padding_bottom=\"20\" padding_left=\"0\" padding_right=\"0\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][title size=\"1\" content_align=\"right\" style_type=\"default\" sep_color=\"\" class=\"\" id=\"\"]Terms &amp; Conditions[/title][/fullwidth][one_sixth last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][/one_sixth][two_third last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][fusion_text]\r\n<h3 style=\"text-align: justify;\">Check-in Times</h3>\r\n<span style=\"font-size: 12pt;\">[checklist icon=\"fa-star-o\" iconcolor=\"\" circle=\"\" circlecolor=\"\" size=\"13px\" class=\"\" id=\"\"]\r\n[li_item icon=\"\"]Check-in Time is from 14h00 to 18h00 (Late arrivals must be arranged before hand).[/li_item]\r\n[li_item icon=\"\"]Check-out Time is before 10h00.[/li_item]\r\n[/checklist]</span>[/fusion_text][/two_third][one_sixth last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][/one_sixth][one_sixth last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][/one_sixth][two_third last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][fusion_text]\r\n<h3 style=\"text-align: justify;\">Payment Terms</h3>\r\n<p style=\"text-align: justify;\"><span style=\"font-size: 12pt;\">[checklist icon=\"fa-star-o\" iconcolor=\"\" circle=\"\" circlecolor=\"\" size=\"13px\" class=\"\" id=\"\"]\r\n[li_item icon=\"\"]Rates are inclusive of 14% VAT.[/li_item]\r\n[li_item icon=\"\"]Payment may be made via Bank Transfer, Credit Card or Cash.[/li_item]\r\n[li_item icon=\"\"]No Cheques will be accepted.[/li_item]\r\n[li_item icon=\"\"]All accommodation must be settled either before or on arrival.[/li_item]\r\n[li_item icon=\"\"]No bookings are guaranteed until your reservation is confirmed, having paid a 50% deposit.[/li_item]\r\n[/checklist]</span></p>\r\n[/fusion_text][/two_third][one_sixth last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][/one_sixth][one_sixth last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][/one_sixth][two_third last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][fusion_text]\r\n<h3 style=\"text-align: justify;\">Refunds &amp; Cancelation Terms</h3>\r\n<p style=\"text-align: justify;\"><span style=\"font-size: 12pt;\">[checklist icon=\"fa-star-o\" iconcolor=\"\" circle=\"\" circlecolor=\"\" size=\"13px\" class=\"\" id=\"\"]\r\n[li_item icon=\"\"]Guests are liable for the tariff of the full period booked.[/li_item]\r\n[li_item icon=\"\"]No refunds will be given for early departures, late arrivals, weather conditions or power outages<span style=\"text-align: justify;\">.</span>[/li_item]\r\n[li_item icon=\"\"]<span style=\"text-align: justify;\">Cancellation of any booking will only be accepted in writing or by email.</span>[/li_item]\r\n[li_item icon=\"\"]<span style=\"text-align: justify;\">If you cancel your reservation </span><span style=\"text-align: justify;\">3 weeks</span><span style=\"text-align: justify;\"> before your arrival date, your deposit will be </span><span style=\"text-align: justify;\">r</span><span style=\"text-align: justify;\">efund</span><span style=\"text-align: justify;\">ed</span><span style=\"text-align: justify;\"> less an administration fee of </span>15%.[/li_item]\r\n[li_item icon=\"\"]<span style=\"text-align: justify;\">If you cancel your reservation 2 weeks before your arrival date, your deposit will become </span>non-refundable.[/li_item]\r\n[li_item icon=\"\"]<span style=\"text-align: justify;\">Payments are not refundable for reservations not cancelled and not taken up.</span>[/li_item]\r\n[/checklist]</span></p>\r\n[/fusion_text][/two_third][one_sixth last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][/one_sixth][one_sixth last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][/one_sixth][two_third last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][fusion_text]<h3><span style=\"font-size: 12pt;\">General Terms</span></h3>\r\n<span style=\"font-size: 12pt;\">[checklist icon=\"fa-star-o\" iconcolor=\"\" circle=\"\" circlecolor=\"\" size=\"13px\" class=\"\" id=\"\"]\r\n[li_item icon=\"\"]A reservation may not be transferred.[/li_item]\r\n[li_item icon=\"\"]Bookings are for holiday purposes only and cannot give rise to a tenancy.[/li_item]\r\n[li_item icon=\"\"]Persons occupying the lodge may not exceed the number of persons indicated upon booking.[/li_item]\r\n[li_item icon=\"\"]During nights the all doors must be locked. Please remember to lock the door behind you and to remove the key.[/li_item]\r\n[li_item icon=\"\"]Please leave the Lodge reasonable tidy and clean after use.[/li_item]\r\n[li_item icon=\"\"]Out of respect for all guests, and the fact that we are in a conservancy, noise must be kept down to a comfortable level and we request that there be silence in the Lodge between 22h00 and 08h00.[/li_item]\r\n[li_item icon=\"\"]Please keep furniture, fixtures and fittings in the same state of repair and condition as at the beginning of your stay. In the event of any damage to furniture, fixtures or fittings, you may be held liable for the replacement value or repair costs. This includes damage to the pool area.[/li_item]\r\n[li_item icon=\"\"]The use of open fires and the burning of any unprotected candles or fuel burning lanterns, in or around the Lodge, will not be permitted.[/li_item]\r\n[li_item icon=\"\"]We operate a non-smoking policy throughout the Lodge. You are welcome to smoke outside the house, where ashtrays and/or bins will be provided.[/li_item]\r\n[li_item icon=\"\"]No pets or animals, with the exception of guide dogs, are allowed on the premises.[/li_item]\r\n[li_item icon=\"\"]The use or sale of any illegal substance in the Lodge or on surrounding property is not permissible.[/li_item]\r\n[li_item icon=\"\"]<span style=\"text-align: justify;\">Right of admission is reserved.</span>[/li_item]\r\n[li_item icon=\"\"]We reserve the right to eject a guest/guests from the Lodge if they are not conducting themselves in an appropriate and/or acceptable manner to the building and/or other residents or staff.[/li_item]\r\n[li_item icon=\"\"]Swimming Pool - The premises contains an unsupervised, open pool which may be used at the guests\' own risk.[/li_item]</span>\r\n<span style=\"font-size: 12pt;\"> [/checklist]</span>[/fusion_text][/two_third][one_sixth last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][/one_sixth]', 'T&Cs', '', 'inherit', 'closed', 'closed', '', '984-revision-v1', '', '', '2016-01-26 15:20:49', '2016-01-26 13:20:49', '', 984, 'http://msla.co.za/lodge/984-revision-v1/', 0, 'revision', '', 0),
(1182, 1, '2016-10-18 18:08:58', '2016-10-18 16:08:58', '[fusion_builder_container background_color=\"\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding_top=\"20\" padding_bottom=\"20\" padding_left=\"\" padding_right=\"\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][fusion_builder_row][fusion_builder_column type=\"1_1\" layout=\"1_1\" last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding_top=\"\" padding_right=\"\" padding_bottom=\"\" padding_left=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\" min_height=\"\"][fusion_text][dopbsp id=\"1\" lang=\"en\"][/fusion_text][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container]', 'Reservations', '', 'publish', 'closed', 'closed', '', 'reservations', '', '', '2019-11-13 14:25:25', '2019-11-13 12:25:25', '', 0, 'http://msla.co.za/lodge/?page_id=1182', 0, 'page', '', 0),
(1185, 1, '2016-04-19 11:28:36', '2016-04-19 09:28:36', '[fusion_text]<table style=\"width: 100%;\" cellspacing=\"10\" cellpadding=\"5\">\r\n<tbody>\r\n<tr>\r\n<td colspan=\"2\"><span style=\"font-size: 10pt;\">ALL PRICES INCLUDE VAT<strong> </strong></span></td>\r\n</tr>\r\n<tr>\r\n<td colspan=\"2\"><span style=\"font-size: 12pt;\"><strong>Self-Catering / Self-Servicing Accommodation</strong></span></td>\r\n</tr>\r\n<tr>\r\n<td><span style=\"font-size: 12pt;\">Full House - Max 10 persons per lodge</span></td>\r\n<td><span style=\"font-size: 12pt;\"><strong>R3250</strong> per night (R325 per person)</span></td>\r\n</tr>\r\n<tr>\r\n<td><span style=\"font-size: 12pt;\">Single - Max 1 person per room</span></td>\r\n<td><span style=\"font-size: 12pt;\"><strong>R 650</strong> per person per night</span></td>\r\n</tr>\r\n<tr>\r\n<td><span style=\"font-size: 12pt;\">Sharing - Max 2 persons per room</span></td>\r\n<td><span style=\"font-size: 12pt;\"><strong>R 495</strong> per person per night</span></td>\r\n</tr>\r\n<tr>\r\n<td><span style=\"font-size: 12pt;\"> </span></td>\r\n<td><span style=\"font-size: 12pt;\"><strong> </strong></span></td>\r\n</tr>\r\n<tr>\r\n<td><strong><span style=\"font-size: 12pt;\">Servicing Options</span></strong></td>\r\n<td><span style=\"font-size: 12pt;\"><strong> </strong></span></td>\r\n</tr>\r\n<tr>\r\n<td><span style=\"font-size: 12pt;\">Lodge Only Servicing (Optional) </span></td>\r\n<td><span style=\"font-size: 12pt;\"><strong>R30</strong> per person per day - Max <span style=\"font-size: 12pt;\"><strong>R 150 </strong>per day</span></span></td>\r\n</tr>\r\n<tr>\r\n<td><span style=\"font-size: 12pt;\">Lodge &amp; Room Servicing (Optional) </span></td>\r\n<td><span style=\"font-size: 12pt;\"><strong>R50</strong> per person per day - Max <span style=\"font-size: 12pt;\"><strong>R 250 </strong>per day</span></span></td>\r\n</tr>\r\n<tr>\r\n<td><span style=\"font-size: 12pt;\"> </span></td>\r\n<td><span style=\"font-size: 12pt;\"><strong> </strong></span></td>\r\n</tr>\r\n<tr>\r\n<td colspan=\"2\"><span style=\"font-size: 12pt;\"><span style=\"font-size: 12pt;\"><strong>Catering Options</strong></span> </span><span style=\"font-size: 12pt;\"><strong> </strong></span></td>\r\n</tr>\r\n<tr>\r\n<td><span style=\"font-size: 12pt;\"> <span style=\"font-size: 12pt;\">Breakfast (Continental)</span></span></td>\r\n<td><span style=\"font-size: 12pt;\"><strong> </strong><span style=\"font-size: 12pt;\"><strong>R  55</strong> per person</span></span></td>\r\n</tr>\r\n<tr>\r\n<td><span style=\"font-size: 12pt;\"> <span style=\"font-size: 12pt;\">Breakfast (Full English)</span></span></td>\r\n<td><span style=\"font-size: 12pt;\"><strong> </strong><span style=\"font-size: 12pt;\"><strong>R  75</strong> per person</span></span></td>\r\n</tr>\r\n<tr>\r\n<td><span style=\"font-size: 12pt;\"> <span style=\"font-size: 12pt;\">Light Lunch</span></span></td>\r\n<td><span style=\"font-size: 12pt;\">From <span style=\"font-size: 12pt;\"><strong>R  95 </strong>per person</span></span></td>\r\n</tr>\r\n<tr>\r\n<td><span style=\"font-size: 12pt;\"> <span style=\"font-size: 12pt;\">Dinners</span></span></td>\r\n<td><span style=\"font-size: 12pt;\">From <span style=\"font-size: 12pt;\"><strong>R 150 </strong>per person</span></span></td>\r\n</tr>\r\n<tr>\r\n<td><span style=\"font-size: 12pt;\"> </span></td>\r\n<td><span style=\"font-size: 12pt;\"><strong> </strong></span></td>\r\n</tr>\r\n<tr>\r\n<td><strong><span style=\"font-size: 12pt;\">Others</span></strong></td>\r\n<td><span style=\"font-size: 12pt;\"><strong> </strong></span></td>\r\n</tr>\r\n<tr>\r\n<td><span style=\"font-size: 12pt;\">Gate Remote</span></td>\r\n<td><span style=\"font-size: 12pt;\"><strong>R 200 </strong>deposit</span></td>\r\n</tr>\r\n<tr>\r\n<td><span style=\"font-size: 12pt;\">Gas Braai</span></td>\r\n<td><span style=\"font-size: 12pt;\"><strong>R 120 </strong>per day</span></td>\r\n</tr>\r\n<tr>\r\n<td><span style=\"font-size: 12pt;\">Day Visitors / Guests</span></td>\r\n<td><span style=\"font-size: 12pt;\"><strong>R 50 </strong>per person per day</span></td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n\r\n<hr />[/fusion_text][modal name=\"rates\" title=\"2015 Rates\" size=\"large\" background=\"\" border_color=\"\" show_footer=\"yes\" class=\"\" id=\"\"]\r\n<table style=\"width: 100%;\" cellspacing=\"10\" cellpadding=\"5\">\r\n<tbody>\r\n<tr>\r\n<td colspan=\"2\"><span style=\"font-size: 10pt;\">ALL PRICES INCLUDE VAT </span></td>\r\n</tr>\r\n<tr>\r\n<td colspan=\"2\"><span style=\"font-size: 12pt;\"><strong>Self-Catering / Self-Servicing Accommodation</strong></span></td>\r\n</tr>\r\n<tr>\r\n<td><span style=\"font-size: 12pt;\">Full House - Max 10 persons per lodge</span></td>\r\n<td><span style=\"font-size: 12pt;\"><strong>R3250</strong> per night (R325 per person)</span></td>\r\n</tr>\r\n<tr>\r\n<td><span style=\"font-size: 12pt;\">Single - Max 1 person per room</span></td>\r\n<td><span style=\"font-size: 12pt;\"><strong>R 650</strong> per person per night</span></td>\r\n</tr>\r\n<tr>\r\n<td><span style=\"font-size: 12pt;\">Sharing - Max 2 persons per room</span></td>\r\n<td><span style=\"font-size: 12pt;\"><strong>R 495</strong> per person per night</span></td>\r\n</tr>\r\n<tr>\r\n<td></td>\r\n<td></td>\r\n</tr>\r\n<tr>\r\n<td><strong><span style=\"font-size: 12pt;\">Servicing Options</span></strong></td>\r\n<td></td>\r\n</tr>\r\n<tr>\r\n<td><span style=\"font-size: 12pt;\">Lodge Only Servicing (Optional) </span></td>\r\n<td><span style=\"font-size: 12pt;\"><strong>R30</strong> per person per day - Max <span style=\"font-size: 12pt;\"><strong>R 150 </strong>per day</span></span></td>\r\n</tr>\r\n<tr>\r\n<td><span style=\"font-size: 12pt;\">Lodge &amp; Room Servicing (Optional) </span></td>\r\n<td><span style=\"font-size: 12pt;\"><strong>R50</strong> per person per day - Max <span style=\"font-size: 12pt;\"><strong>R 250 </strong>per day</span></span></td>\r\n</tr>\r\n<tr>\r\n<td></td>\r\n<td></td>\r\n</tr>\r\n<tr>\r\n<td colspan=\"2\"><span style=\"font-size: 12pt;\"><span style=\"font-size: 12pt;\"><strong>Catering Options</strong></span> </span></td>\r\n</tr>\r\n<tr>\r\n<td><span style=\"font-size: 12pt;\"> <span style=\"font-size: 12pt;\">Breakfast (Continental)</span></span></td>\r\n<td><span style=\"font-size: 12pt;\"> <span style=\"font-size: 12pt;\"><strong>R 55</strong> per person</span></span></td>\r\n</tr>\r\n<tr>\r\n<td><span style=\"font-size: 12pt;\"> <span style=\"font-size: 12pt;\">Breakfast (Full English)</span></span></td>\r\n<td><span style=\"font-size: 12pt;\"> <span style=\"font-size: 12pt;\"><strong>R 95</strong> per person</span></span></td>\r\n</tr>\r\n<tr>\r\n<td><span style=\"font-size: 12pt;\"> <span style=\"font-size: 12pt;\">Light Lunch</span></span></td>\r\n<td><span style=\"font-size: 12pt;\">From <span style=\"font-size: 12pt;\"><strong>R 95 </strong>per person</span></span></td>\r\n</tr>\r\n<tr>\r\n<td><span style=\"font-size: 12pt;\"> <span style=\"font-size: 12pt;\">Dinners</span></span></td>\r\n<td><span style=\"font-size: 12pt;\">From <span style=\"font-size: 12pt;\"><strong>R 150 </strong>per person</span></span></td>\r\n</tr>\r\n<tr>\r\n<td></td>\r\n<td></td>\r\n</tr>\r\n<tr>\r\n<td><strong><span style=\"font-size: 12pt;\">Others</span></strong></td>\r\n<td></td>\r\n</tr>\r\n<tr>\r\n<td><span style=\"font-size: 12pt;\">Gate Remote</span></td>\r\n<td><span style=\"font-size: 12pt;\"><strong>R 200 </strong>deposit</span></td>\r\n</tr>\r\n<tr>\r\n<td><span style=\"font-size: 12pt;\">Gas Braai</span></td>\r\n<td><span style=\"font-size: 12pt;\"><strong>R 120 </strong>per day</span></td>\r\n</tr>\r\n<tr>\r\n<td><span style=\"font-size: 12pt;\">Day Visitors / Guests</span></td>\r\n<td><span style=\"font-size: 12pt;\"><strong>R 35 </strong>per person per day</span></td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n\r\n<hr />\r\n\r\n[/modal][button link=\"\" color=\"default\" size=\"\"  type=\"\" shape=\"\" target=\"_self\" title=\"\" gradient_colors=\"|\" gradient_hover_colors=\"|\" accent_color=\"\" accent_hover_color=\"\" bevel_color=\"\" border_width=\"1px\" icon=\"\" icon_position=\"left\" icon_divider=\"no\" modal=\"rates\" animation_type=\"0\" animation_direction=\"left\" animation_speed=\"1\" alignment=\"\" class=\"\" id=\"\"]Click here![/button]', 'Rates', '', 'inherit', 'closed', 'closed', '', '1121-revision-v1', '', '', '2016-04-19 11:28:36', '2016-04-19 09:28:36', '', 1121, 'http://msla.co.za/lodge/1121-revision-v1/', 0, 'revision', '', 0),
(1186, 1, '2016-04-19 11:36:08', '2016-04-19 09:36:08', '[fusion_text]\r\n<table style=\"width: 100%;\" cellspacing=\"10\" cellpadding=\"5\">\r\n<tbody>\r\n<tr>\r\n<td colspan=\"2\"><span style=\"font-size: 10pt;\">ALL PRICES INCLUDE VAT<strong> </strong></span></td>\r\n</tr>\r\n<tr>\r\n<td colspan=\"2\"><span style=\"font-size: 12pt;\"><strong>Self-Catering / Self-Servicing Accommodation</strong></span></td>\r\n</tr>\r\n<tr>\r\n<td><span style=\"font-size: 12pt;\">Full House - Max 10 persons per lodge</span></td>\r\n<td><span style=\"font-size: 12pt;\"><strong>R3250</strong> per night (R325 per person)</span></td>\r\n</tr>\r\n<tr>\r\n<td><span style=\"font-size: 12pt;\">Single - Max 1 person per room</span></td>\r\n<td><span style=\"font-size: 12pt;\"><strong>R 650</strong> per person per night</span></td>\r\n</tr>\r\n<tr>\r\n<td><span style=\"font-size: 12pt;\">Sharing - Max 2 persons per room</span></td>\r\n<td><span style=\"font-size: 12pt;\"><strong>R 495</strong> per person per night</span></td>\r\n</tr>\r\n<tr>\r\n<td><span style=\"font-size: 12pt;\"> </span></td>\r\n<td><span style=\"font-size: 12pt;\"><strong> </strong></span></td>\r\n</tr>\r\n<tr>\r\n<td><strong><span style=\"font-size: 12pt;\">Servicing Options</span></strong></td>\r\n<td><span style=\"font-size: 12pt;\"><strong> </strong></span></td>\r\n</tr>\r\n<tr>\r\n<td><span style=\"font-size: 12pt;\">Lodge Only Servicing (Optional) </span></td>\r\n<td><span style=\"font-size: 12pt;\"><strong>R30</strong> per person per day - Max <span style=\"font-size: 12pt;\"><strong>R 150 </strong>per day</span></span></td>\r\n</tr>\r\n<tr>\r\n<td><span style=\"font-size: 12pt;\">Lodge &amp; Room Servicing (Optional) </span></td>\r\n<td><span style=\"font-size: 12pt;\"><strong>R50</strong> per person per day - Max <span style=\"font-size: 12pt;\"><strong>R 250 </strong>per day</span></span></td>\r\n</tr>\r\n<tr>\r\n<td><span style=\"font-size: 12pt;\"> </span></td>\r\n<td><span style=\"font-size: 12pt;\"><strong> </strong></span></td>\r\n</tr>\r\n<tr>\r\n<td colspan=\"2\"><span style=\"font-size: 12pt;\"><span style=\"font-size: 12pt;\"><strong>Catering Options</strong></span> </span><span style=\"font-size: 12pt;\"><strong> </strong></span></td>\r\n</tr>\r\n<tr>\r\n<td><span style=\"font-size: 12pt;\"> <span style=\"font-size: 12pt;\">Breakfast (Continental)</span></span></td>\r\n<td><span style=\"font-size: 12pt;\"><strong> </strong><span style=\"font-size: 12pt;\"><strong>R  55</strong> per person</span></span></td>\r\n</tr>\r\n<tr>\r\n<td><span style=\"font-size: 12pt;\"> <span style=\"font-size: 12pt;\">Breakfast (Full English)</span></span></td>\r\n<td><span style=\"font-size: 12pt;\"><strong> </strong><span style=\"font-size: 12pt;\"><strong>R  75</strong> per person</span></span></td>\r\n</tr>\r\n<tr>\r\n<td><span style=\"font-size: 12pt;\"> <span style=\"font-size: 12pt;\">Light Lunch</span></span></td>\r\n<td><span style=\"font-size: 12pt;\">From <span style=\"font-size: 12pt;\"><strong>R  95 </strong>per person</span></span></td>\r\n</tr>\r\n<tr>\r\n<td><span style=\"font-size: 12pt;\"> <span style=\"font-size: 12pt;\">Dinners</span></span></td>\r\n<td><span style=\"font-size: 12pt;\">From <span style=\"font-size: 12pt;\"><strong>R 150 </strong>per person</span></span></td>\r\n</tr>\r\n<tr>\r\n<td><span style=\"font-size: 12pt;\"> </span></td>\r\n<td><span style=\"font-size: 12pt;\"><strong> </strong></span></td>\r\n</tr>\r\n<tr>\r\n<td><strong><span style=\"font-size: 12pt;\">Others</span></strong></td>\r\n<td><span style=\"font-size: 12pt;\"><strong> </strong></span></td>\r\n</tr>\r\n<tr>\r\n<td><span style=\"font-size: 12pt;\">Gate Remote</span></td>\r\n<td><span style=\"font-size: 12pt;\"><strong>R 200 </strong>deposit</span></td>\r\n</tr>\r\n<tr>\r\n<td><span style=\"font-size: 12pt;\">Gas Braai</span></td>\r\n<td><span style=\"font-size: 12pt;\"><strong>R 120 </strong>per day</span></td>\r\n</tr>\r\n<tr>\r\n<td><span style=\"font-size: 12pt;\">Day Visitors / Guests</span></td>\r\n<td><span style=\"font-size: 12pt;\"><strong>R 50 </strong>per person per day</span></td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n\r\n<hr />\r\n\r\n[/fusion_text][modal name=\"rates\" title=\"Rates &amp; Tariffs\" size=\"large\" background=\"\" border_color=\"\" show_footer=\"yes\" class=\"\" id=\"\"]\r\n<table style=\"width: 100%;\" cellspacing=\"10\" cellpadding=\"5\">\r\n<tbody>\r\n<tr>\r\n<td colspan=\"2\"><span style=\"font-size: 10pt;\">ALL PRICES INCLUDE VAT </span></td>\r\n</tr>\r\n<tr>\r\n<td colspan=\"2\"><span style=\"font-size: 12pt;\"><strong>Self-Catering / Self-Servicing Accommodation</strong></span></td>\r\n</tr>\r\n<tr>\r\n<td><span style=\"font-size: 12pt;\">Full House - Max 10 persons per lodge</span></td>\r\n<td><span style=\"font-size: 12pt;\"><strong>R3250</strong> per night (R325 per person)</span></td>\r\n</tr>\r\n<tr>\r\n<td><span style=\"font-size: 12pt;\">Single - Max 1 person per room</span></td>\r\n<td><span style=\"font-size: 12pt;\"><strong>R 650</strong> per person per night</span></td>\r\n</tr>\r\n<tr>\r\n<td><span style=\"font-size: 12pt;\">Sharing - Max 2 persons per room</span></td>\r\n<td><span style=\"font-size: 12pt;\"><strong>R 495</strong> per person per night</span></td>\r\n</tr>\r\n<tr>\r\n<td></td>\r\n<td></td>\r\n</tr>\r\n<tr>\r\n<td><strong><span style=\"font-size: 12pt;\">Servicing Options</span></strong></td>\r\n<td></td>\r\n</tr>\r\n<tr>\r\n<td><span style=\"font-size: 12pt;\">Lodge Only Servicing (Optional) </span></td>\r\n<td><span style=\"font-size: 12pt;\"><strong>R30</strong> per person per day - Max <span style=\"font-size: 12pt;\"><strong>R 150 </strong>per day</span></span></td>\r\n</tr>\r\n<tr>\r\n<td><span style=\"font-size: 12pt;\">Lodge &amp; Room Servicing (Optional) </span></td>\r\n<td><span style=\"font-size: 12pt;\"><strong>R50</strong> per person per day - Max <span style=\"font-size: 12pt;\"><strong>R 250 </strong>per day</span></span></td>\r\n</tr>\r\n<tr>\r\n<td></td>\r\n<td></td>\r\n</tr>\r\n<tr>\r\n<td colspan=\"2\"><span style=\"font-size: 12pt;\"><span style=\"font-size: 12pt;\"><strong>Catering Options</strong></span> </span></td>\r\n</tr>\r\n<tr>\r\n<td><span style=\"font-size: 12pt;\"> <span style=\"font-size: 12pt;\">Breakfast (Continental)</span></span></td>\r\n<td><span style=\"font-size: 12pt;\"> <span style=\"font-size: 12pt;\"><strong>R 55</strong> per person</span></span></td>\r\n</tr>\r\n<tr>\r\n<td><span style=\"font-size: 12pt;\"> <span style=\"font-size: 12pt;\">Breakfast (Full English)</span></span></td>\r\n<td><span style=\"font-size: 12pt;\"> <span style=\"font-size: 12pt;\"><strong>R 95</strong> per person</span></span></td>\r\n</tr>\r\n<tr>\r\n<td><span style=\"font-size: 12pt;\"> <span style=\"font-size: 12pt;\">Light Lunch</span></span></td>\r\n<td><span style=\"font-size: 12pt;\">From <span style=\"font-size: 12pt;\"><strong>R 95 </strong>per person</span></span></td>\r\n</tr>\r\n<tr>\r\n<td><span style=\"font-size: 12pt;\"> <span style=\"font-size: 12pt;\">Dinners</span></span></td>\r\n<td><span style=\"font-size: 12pt;\">From <span style=\"font-size: 12pt;\"><strong>R 150 </strong>per person</span></span></td>\r\n</tr>\r\n<tr>\r\n<td></td>\r\n<td></td>\r\n</tr>\r\n<tr>\r\n<td><strong><span style=\"font-size: 12pt;\">Others</span></strong></td>\r\n<td></td>\r\n</tr>\r\n<tr>\r\n<td><span style=\"font-size: 12pt;\">Gate Remote</span></td>\r\n<td><span style=\"font-size: 12pt;\"><strong>R 200 </strong>deposit</span></td>\r\n</tr>\r\n<tr>\r\n<td><span style=\"font-size: 12pt;\">Gas Braai</span></td>\r\n<td><span style=\"font-size: 12pt;\"><strong>R 120 </strong>per day</span></td>\r\n</tr>\r\n<tr>\r\n<td><span style=\"font-size: 12pt;\">Day Visitors / Guests</span></td>\r\n<td><span style=\"font-size: 12pt;\"><strong>R 35 </strong>per person per day</span></td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n\r\n<hr />\r\n\r\n[/modal][button link=\"\" color=\"default\" size=\"\" type=\"\" shape=\"\" target=\"_self\" title=\"\" gradient_colors=\"|\" gradient_hover_colors=\"|\" accent_color=\"\" accent_hover_color=\"\" bevel_color=\"\" border_width=\"1px\" icon=\"\" icon_position=\"left\" icon_divider=\"no\" modal=\"rates\" animation_type=\"0\" animation_direction=\"left\" animation_speed=\"1\" alignment=\"\" class=\"\" id=\"\"]Click here![/button]', 'Rates', '', 'inherit', 'closed', 'closed', '', '1121-revision-v1', '', '', '2016-04-19 11:36:08', '2016-04-19 09:36:08', '', 1121, 'http://msla.co.za/lodge/1121-revision-v1/', 0, 'revision', '', 0);
INSERT INTO `wp_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(1187, 1, '2016-04-19 11:42:57', '2016-04-19 09:42:57', '[fullwidth background_color=\"#f0f0ed\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"20\" padding_bottom=\"20\" padding_left=\"0px\" padding_right=\"0px\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][one_half last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][separator style_type=\"single\" top_margin=\"0\" bottom_margin=\"30\" sep_color=\"#000000\" border_size=\"\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"170px\" alignment=\"center\" class=\"separator-left\" id=\"\"][fusion_text]\r\n<h1 style=\"text-align: center;\">No Fancy Star Grading\r\nNo Room Service\r\nNo Bed Turn-downs\r\nNo Rose Petals in the Bath water</h1>\r\n<h1 style=\"text-align: center;\">... just old fashioned homely comforts</h1>\r\n[/fusion_text][/one_half][one_half last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][fusion_text]\r\n<h1 style=\"text-align: justify;\">5 BEDROOM FAMILY LODGE</h1>\r\n<h3 style=\"text-align: justify;\">We are a four season lodge, because there’s always something to celebrate… We offer comfort, relaxation and privacy right in the heart of 1000 Hills. The Forest, the Gardens, the Atmosphere all speak to  Rest  &amp; Relaxation.</h3>\r\n[/fusion_text][separator style_type=\"single\" top_margin=\"0\" bottom_margin=\"30\" sep_color=\"#000000\" border_size=\"\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"170px\" alignment=\"left\" class=\"separator-left\" id=\"\"][modal name=\"rates\" title=\"2015 Rates\" size=\"large\" background=\"\" border_color=\"\" show_footer=\"yes\" class=\"\" id=\"\"]\r\n<table style=\"width: 100%;\" cellspacing=\"10\" cellpadding=\"5\">\r\n<tbody>\r\n<tr>\r\n<td colspan=\"2\"><span style=\"font-size: 10pt;\">ALL PRICES INCLUDE VAT </span></td>\r\n</tr>\r\n<tr>\r\n<td colspan=\"2\"><span style=\"font-size: 12pt;\"><strong>Self-Catering / Self-Servicing Accommodation</strong></span></td>\r\n</tr>\r\n<tr>\r\n<td><span style=\"font-size: 12pt;\">Full House - Max 10 persons per lodge</span></td>\r\n<td><span style=\"font-size: 12pt;\"><strong>R3250</strong> per night (R325 per person)</span></td>\r\n</tr>\r\n<tr>\r\n<td><span style=\"font-size: 12pt;\">Single - Max 1 person per room</span></td>\r\n<td><span style=\"font-size: 12pt;\"><strong>R 650</strong> per person per night</span></td>\r\n</tr>\r\n<tr>\r\n<td><span style=\"font-size: 12pt;\">Sharing - Max 2 persons per room</span></td>\r\n<td><span style=\"font-size: 12pt;\"><strong>R 495</strong> per person per night</span></td>\r\n</tr>\r\n<tr>\r\n<td></td>\r\n<td></td>\r\n</tr>\r\n<tr>\r\n<td><strong><span style=\"font-size: 12pt;\">Servicing Options</span></strong></td>\r\n<td></td>\r\n</tr>\r\n<tr>\r\n<td><span style=\"font-size: 12pt;\">Lodge Only Servicing (Optional) </span></td>\r\n<td><span style=\"font-size: 12pt;\"><strong>R30</strong> per person per day - Max <span style=\"font-size: 12pt;\"><strong>R 150 </strong>per day</span></span></td>\r\n</tr>\r\n<tr>\r\n<td><span style=\"font-size: 12pt;\">Lodge &amp; Room Servicing (Optional) </span></td>\r\n<td><span style=\"font-size: 12pt;\"><strong>R50</strong> per person per day - Max <span style=\"font-size: 12pt;\"><strong>R 250 </strong>per day</span></span></td>\r\n</tr>\r\n<tr>\r\n<td></td>\r\n<td></td>\r\n</tr>\r\n<tr>\r\n<td colspan=\"2\"><span style=\"font-size: 12pt;\"><span style=\"font-size: 12pt;\"><strong>Catering Options</strong></span> </span></td>\r\n</tr>\r\n<tr>\r\n<td><span style=\"font-size: 12pt;\"> <span style=\"font-size: 12pt;\">Breakfast (Continental)</span></span></td>\r\n<td><span style=\"font-size: 12pt;\"> <span style=\"font-size: 12pt;\"><strong>R 55</strong> per person</span></span></td>\r\n</tr>\r\n<tr>\r\n<td><span style=\"font-size: 12pt;\"> <span style=\"font-size: 12pt;\">Breakfast (Full English)</span></span></td>\r\n<td><span style=\"font-size: 12pt;\"> <span style=\"font-size: 12pt;\"><strong>R 75</strong> per person</span></span></td>\r\n</tr>\r\n<tr>\r\n<td><span style=\"font-size: 12pt;\"> <span style=\"font-size: 12pt;\">Light Lunch</span></span></td>\r\n<td><span style=\"font-size: 12pt;\">From <span style=\"font-size: 12pt;\"><strong>R 95 </strong>per person</span></span></td>\r\n</tr>\r\n<tr>\r\n<td><span style=\"font-size: 12pt;\"> <span style=\"font-size: 12pt;\">Dinners</span></span></td>\r\n<td><span style=\"font-size: 12pt;\">From <span style=\"font-size: 12pt;\"><strong>R 150 </strong>per person</span></span></td>\r\n</tr>\r\n<tr>\r\n<td></td>\r\n<td></td>\r\n</tr>\r\n<tr>\r\n<td><strong><span style=\"font-size: 12pt;\">Others</span></strong></td>\r\n<td></td>\r\n</tr>\r\n<tr>\r\n<td><span style=\"font-size: 12pt;\">Gate Remote</span></td>\r\n<td><span style=\"font-size: 12pt;\"><strong>R 200 </strong>deposit</span></td>\r\n</tr>\r\n<tr>\r\n<td><span style=\"font-size: 12pt;\">Gas Braai</span></td>\r\n<td><span style=\"font-size: 12pt;\"><strong>R 120 </strong>per day</span></td>\r\n</tr>\r\n<tr>\r\n<td><span style=\"font-size: 12pt;\">Day Visitors / Guests</span></td>\r\n<td><span style=\"font-size: 12pt;\"><strong>R 50 </strong>per person per day</span></td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n\r\n<hr />\r\n\r\n[/modal][button link=\"\" color=\"darkgreen\" size=\"\" type=\"\" shape=\"\" target=\"_self\" title=\"\" gradient_colors=\"|\" gradient_hover_colors=\"|\" accent_color=\"\" accent_hover_color=\"\" bevel_color=\"\" border_width=\"1px\" icon=\"\" icon_position=\"left\" icon_divider=\"no\" modal=\"rates\" animation_type=\"0\" animation_direction=\"left\" animation_speed=\"1\" alignment=\"\" class=\"\" id=\"\"]2016 RATES[/button][/one_half][/fullwidth][fullwidth background_color=\"#f0f0ed\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"20\" padding_bottom=\"20\" padding_left=\"0px\" padding_right=\"0px\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][one_half last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][fusion_text]\r\n<h3 style=\"text-align: justify;\">Set in the rolling peaks and valleys of a thousand hills surrounded by a canopy of indigenous trees, you will find that horses still have right of way, we certainly offer the best of both worlds, farm and charm coupled with modern amenities that will have you feeling relaxed and rejuvenated.</h3>\r\n<h3 style=\"text-align: justify;\">We know that sometimes you are searching for a romantic getaway or maybe a few days away with old friends. Other times you are searching for a place to host a weekend, family reunion or a business retreat. In addition to nightly room rentals, our lodge is also available for meetings, retreats  and makes the perfect place for a wedding party to stay together and get ready for the big day. Regardless, with our five comfortable and cozy guest bedrooms, multiple garden spaces and hideaways, and a  large private deck  where you can take a nap or read a book we definitely have the room for you!</h3>\r\n<h3 style=\"text-align: justify;\">Evenings are quiet and peaceful taking you far away from the business of city life. This is a unique and memorable country experience. We look forward to having you as a guest!</h3>\r\n[/fusion_text][/one_half][one_half last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][fusion_text]\r\n<h3 style=\"text-align: justify;\">Our lodge has been in our family for years and has recently been beautifully renovated. Five rooms all with en-suite showers lead off your own large central lounge, featuring a 36 foot high vaulted ceiling, offering spacious living, dining, and a bar/conversational lounge area which includes a fitted kitchenette, all adding to a sense of homely comfort. Sumptuous meals can be provided on request and served on the bottom deck at the swimming pool.</h3>\r\n<h3 style=\"text-align: justify;\">Be lulled to sleep by the sound of the waterfall and tinkling stream just outside your window, waking from a peaceful night\'s sleep in a pillow-top bed dressed in luxurious linens to coddle you in ultimate comfort.</h3>\r\n<h3 style=\"text-align: justify;\">Our property boasts many different species of birds and animals. We have a resident otter, a family of wild bush pigs,  a family of rock rabbits, porcupine, little blue duikers, a variety of different frogs and an abundance of bird life, including the occasional snakes that pass through!</h3>\r\n[/fusion_text][/one_half][/fullwidth][fullwidth background_color=\"#f0f0ed\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"20\" padding_bottom=\"20\" padding_left=\"0px\" padding_right=\"0px\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][fusion_text]\r\n<h1 style=\"text-align: center;\">Gallery</h1>\r\n[/fusion_text][separator style_type=\"single\" top_margin=\"\" bottom_margin=\"40\" sep_color=\"#000000\" border_size=\"\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"170px\" alignment=\"\" class=\"\" id=\"\"][one_sixth last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][/one_sixth][two_third last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][fusion_text]\r\n<h3 style=\"text-align: justify;\">The Lodge is open, spacious, comfortable and homely. During hot summer days, sit and bask in the sun on the deck  with one of our  picnic specials. In winter, snuggle up with a good book or challenge one another to a friendly board game in the glassed nook area .</h3>\r\n[/fusion_text][/two_third][one_sixth last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][/one_sixth][/fullwidth][fullwidth background_color=\"#f0f0ed\" background_image=\"http://localhost/assagaylodge/wp-content/uploads/2015/01/Wood_Texture.jpg\" background_parallax=\"fixed\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"30\" padding_bottom=\"10\" padding_left=\"0\" padding_right=\"0\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][recent_works layout=\"grid\" picture_size=\"auto\" boxed_text=\"unboxed\" filters=\"no\" columns=\"3\" column_spacing=\"12\" cat_slug=\"the-lodge\" exclude_cats=\"\" number_posts=\"9\" offset=\"\" excerpt_length=\"35\" strip_html=\"yes\" carousel_layout=\"title_on_rollover\" scroll_items=\"\" autoplay=\"no\" show_nav=\"yes\" mouse_scroll=\"no\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" class=\"\" id=\"\"][/recent_works][/fullwidth][fullwidth background_color=\"#f0f0ed\" background_image=\"\" background_parallax=\"fixed\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"20\" padding_bottom=\"20\" padding_left=\"0px\" padding_right=\"0px\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][fusion_text]\r\n<h1 style=\"text-align: center;\">BEDROOMS</h1>\r\n[/fusion_text][separator style_type=\"single\" top_margin=\"\" bottom_margin=\"20\" sep_color=\"#000000\" border_size=\"\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"170px\" alignment=\"\" class=\"\" id=\"\"][one_sixth last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][/one_sixth][two_third last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][fusion_text]\r\n<h3 style=\"text-align: justify;\">When it comes to our bedrooms we’re proud to say we offer something a little more special. One of five  lovingly and tastefully decorated guest rooms. Soft gray decor soothes the senses providing a peaceful, blissfully comfortable rest from your travels and hectic lives.</h3>\r\n<h3 style=\"text-align: justify;\">Our  bedrooms are spacious, clean, comfortable all en-suite, equipped with either king size or queen size beds. Each room sleeps two guests. The rooms have high ceilings, wall heaters &amp; ceiling fans. Beds all have electric blankets in Winter, 100% cotton percale sheets and thick hyper allergenic microfiber duvets and pillows. All guest rooms are cleaned with organic and green products. Amenities include hairdryers in each room. Three rooms feature King-sized beds  of which two can be  split into two single beds. Two  rooms can therefore be changed into a twin room upon request. Two rooms feature a Queen-sized double bed. These beds cannot be split into twin beds.</h3>\r\n[/fusion_text][/two_third][one_sixth last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][/one_sixth][/fullwidth][fullwidth background_color=\"\" background_image=\"http://localhost/assagaylodge/wp-content/uploads/2015/01/DSC01516-1148-x-764.jpg\" background_parallax=\"fixed\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"center center\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"20\" padding_bottom=\"20\" padding_left=\"0\" padding_right=\"0\" hundred_percent=\"no\" equal_height_columns=\"yes\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][recent_works layout=\"grid\" picture_size=\"auto\" boxed_text=\"unboxed\" filters=\"no\" columns=\"3\" column_spacing=\"12\" cat_slug=\"bedrooms\" exclude_cats=\"\" number_posts=\"6\" offset=\"\" excerpt_length=\"35\" strip_html=\"yes\" carousel_layout=\"title_on_rollover\" scroll_items=\"\" autoplay=\"no\" show_nav=\"yes\" mouse_scroll=\"no\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" class=\"\" id=\"\"][/recent_works][/fullwidth][fullwidth background_color=\"#f0f0ed\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"20\" padding_bottom=\"20\" padding_left=\"0\" padding_right=\"0\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][fusion_text]\r\n<h1 style=\"text-align: center;\">GARDENS</h1>\r\n[/fusion_text][separator style_type=\"single\" top_margin=\"\" bottom_margin=\"20\" sep_color=\"#000000\" border_size=\"\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"170px\" alignment=\"\" class=\"\" id=\"\"][one_sixth last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][/one_sixth][two_third last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][fusion_text]\r\n<h3 style=\"text-align: justify;\">The garden is large and offers many secluded spots to lose yourself in a book with a glass of wine underneath the shade of a tree, listening to the sounds of the birds and smelling the beautiful flowers.</h3>\r\n[/fusion_text][/two_third][one_sixth last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][/one_sixth][recent_works layout=\"grid\" picture_size=\"auto\" boxed_text=\"boxed\" filters=\"no\" columns=\"3\" column_spacing=\"12\" cat_slug=\"gardens\" exclude_cats=\"\" number_posts=\"9\" offset=\"\" excerpt_length=\"35\" strip_html=\"yes\" carousel_layout=\"title_on_rollover\" scroll_items=\"\" autoplay=\"no\" show_nav=\"yes\" mouse_scroll=\"no\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" class=\"\" id=\"\"][/recent_works][/fullwidth][fullwidth background_color=\"#ffffff\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"65px\" padding_bottom=\"65px\" padding_left=\"0px\" padding_right=\"0px\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][button link=\"http://localhost/assagaylodge/book-now/\" color=\"default\" size=\"xlarge\" type=\"3d\" shape=\"round\" target=\"_self\" title=\"\" gradient_colors=\"#f0f0ed|#f0f0ed\" gradient_hover_colors=\"#6666a4|#6666a4\" accent_color=\"#ffffff\" accent_hover_color=\"#ffffff\" bevel_color=\"\" border_width=\"0px\" icon=\"\" icon_position=\"left\" icon_divider=\"no\" modal=\"\" animation_type=\"0\" animation_direction=\"left\" animation_speed=\"1\" alignment=\"center\" class=\"\" id=\"\"]Make A Reservation Enquiry[/button][/fullwidth][one_third last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][/one_third][two_fifth last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][/two_fifth]', 'Home', '', 'inherit', 'closed', 'closed', '', '7-revision-v1', '', '', '2016-04-19 11:42:57', '2016-04-19 09:42:57', '', 7, 'http://msla.co.za/lodge/7-revision-v1/', 0, 'revision', '', 0),
(1188, 1, '2016-04-19 15:34:41', '2016-04-19 13:34:41', '[fullwidth background_color=\"#f0f0ed\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"20\" padding_bottom=\"20\" padding_left=\"0px\" padding_right=\"0px\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][one_half last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][separator style_type=\"single\" top_margin=\"0\" bottom_margin=\"30\" sep_color=\"#000000\" border_size=\"\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"170px\" alignment=\"center\" class=\"separator-left\" id=\"\"][fusion_text]\r\n<h1 style=\"text-align: center;\">No Fancy Star Grading\r\nNo Room Service\r\nNo Bed Turn-downs\r\nNo Rose Petals in the Bath water</h1>\r\n<h1 style=\"text-align: center;\">... just old fashioned homely comforts</h1>\r\n[/fusion_text][/one_half][one_half last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][fusion_text]\r\n<h1 style=\"text-align: justify;\">5 BEDROOM FAMILY LODGE</h1>\r\n<h3 style=\"text-align: justify;\">We are a four season lodge, because there’s always something to celebrate… We offer comfort, relaxation and privacy right in the heart of 1000 Hills. The Forest, the Gardens, the Atmosphere all speak to  Rest  &amp; Relaxation.</h3>\r\n[/fusion_text][separator style_type=\"single\" top_margin=\"0\" bottom_margin=\"30\" sep_color=\"#000000\" border_size=\"\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"170px\" alignment=\"left\" class=\"separator-left\" id=\"\"][modal name=\"rates\" title=\"2015 Rates\" size=\"large\" background=\"\" border_color=\"\" show_footer=\"yes\" class=\"\" id=\"\"]\r\n<table style=\"width: 100%;\" cellspacing=\"10\" cellpadding=\"5\">\r\n<tbody>\r\n<tr>\r\n<td colspan=\"2\"><span style=\"font-size: 10pt;\">ALL PRICES INCLUDE VAT </span></td>\r\n</tr>\r\n<tr>\r\n<td colspan=\"2\"><span style=\"font-size: 12pt;\"><strong>Self-Catering / Self-Servicing Accommodation</strong></span></td>\r\n</tr>\r\n<tr>\r\n<td><span style=\"font-size: 12pt;\">Full House - Max 10 persons per lodge</span></td>\r\n<td><span style=\"font-size: 12pt;\"><strong>R3250</strong> per night (R325 per person)</span></td>\r\n</tr>\r\n<tr>\r\n<td><span style=\"font-size: 12pt;\">Single - Max 1 person per room</span></td>\r\n<td><span style=\"font-size: 12pt;\"><strong>R 650</strong> per person per night</span></td>\r\n</tr>\r\n<tr>\r\n<td><span style=\"font-size: 12pt;\">Sharing - Max 2 persons per room</span></td>\r\n<td><span style=\"font-size: 12pt;\"><strong>R 495</strong> per person per night</span></td>\r\n</tr>\r\n<tr>\r\n<td></td>\r\n<td></td>\r\n</tr>\r\n<tr>\r\n<td><strong><span style=\"font-size: 12pt;\">Servicing Options</span></strong></td>\r\n<td></td>\r\n</tr>\r\n<tr>\r\n<td><span style=\"font-size: 12pt;\">Lodge Only Servicing (Optional) </span></td>\r\n<td><span style=\"font-size: 12pt;\"><strong>R30</strong> per person per day - Max <span style=\"font-size: 12pt;\"><strong>R 150 </strong>per day</span></span></td>\r\n</tr>\r\n<tr>\r\n<td><span style=\"font-size: 12pt;\">Lodge &amp; Room Servicing (Optional) </span></td>\r\n<td><span style=\"font-size: 12pt;\"><strong>R50</strong> per person per day - Max <span style=\"font-size: 12pt;\"><strong>R 250 </strong>per day</span></span></td>\r\n</tr>\r\n<tr>\r\n<td></td>\r\n<td></td>\r\n</tr>\r\n<tr>\r\n<td colspan=\"2\"><span style=\"font-size: 12pt;\"><span style=\"font-size: 12pt;\"><strong>Catering Options</strong></span> </span></td>\r\n</tr>\r\n<tr>\r\n<td><span style=\"font-size: 12pt;\"> <span style=\"font-size: 12pt;\">Breakfast (Continental)</span></span></td>\r\n<td><span style=\"font-size: 12pt;\"> <span style=\"font-size: 12pt;\"><strong>R 55</strong> per person</span></span></td>\r\n</tr>\r\n<tr>\r\n<td><span style=\"font-size: 12pt;\"> <span style=\"font-size: 12pt;\">Breakfast (Full English)</span></span></td>\r\n<td><span style=\"font-size: 12pt;\"> <span style=\"font-size: 12pt;\"><strong>R 75</strong> per person</span></span></td>\r\n</tr>\r\n<tr>\r\n<td><span style=\"font-size: 12pt;\"> <span style=\"font-size: 12pt;\">Light Lunch</span></span></td>\r\n<td><span style=\"font-size: 12pt;\">From <span style=\"font-size: 12pt;\"><strong>R 95 </strong>per person</span></span></td>\r\n</tr>\r\n<tr>\r\n<td><span style=\"font-size: 12pt;\"> <span style=\"font-size: 12pt;\">Dinners</span></span></td>\r\n<td><span style=\"font-size: 12pt;\">From <span style=\"font-size: 12pt;\"><strong>R 150 </strong>per person</span></span></td>\r\n</tr>\r\n<tr>\r\n<td></td>\r\n<td></td>\r\n</tr>\r\n<tr>\r\n<td><strong><span style=\"font-size: 12pt;\">Others</span></strong></td>\r\n<td></td>\r\n</tr>\r\n<tr>\r\n<td><span style=\"font-size: 12pt;\">Gate Remote</span></td>\r\n<td><span style=\"font-size: 12pt;\"><strong>R 200 </strong>deposit</span></td>\r\n</tr>\r\n<tr>\r\n<td><span style=\"font-size: 12pt;\">Gas Braai</span></td>\r\n<td><span style=\"font-size: 12pt;\"><strong>R 120 </strong>per day</span></td>\r\n</tr>\r\n<tr>\r\n<td><span style=\"font-size: 12pt;\">Day Visitors / Guests</span></td>\r\n<td><span style=\"font-size: 12pt;\"><strong>R 50 </strong>per person per day</span></td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n\r\n<hr />\r\n\r\n[/modal][button link=\"\" color=\"darkgreen\" size=\"\"  type=\"\" shape=\"\" target=\"_self\" title=\"\" gradient_colors=\"|\" gradient_hover_colors=\"|\" accent_color=\"\" accent_hover_color=\"\" bevel_color=\"\" border_width=\"1px\" icon=\"\" icon_position=\"left\" icon_divider=\"no\" modal=\"rates\" animation_type=\"0\" animation_direction=\"left\" animation_speed=\"1\" alignment=\"\" class=\"\" id=\"\"]2016 RATES[/button][/one_half][/fullwidth][fullwidth background_color=\"#f0f0ed\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"20\" padding_bottom=\"20\" padding_left=\"0px\" padding_right=\"0px\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][one_half last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][fusion_text]\r\n<h3 style=\"text-align: justify;\">Set in the rolling peaks and valleys of a thousand hills surrounded by a canopy of indigenous trees, you will find that horses still have right of way, we certainly offer the best of both worlds, farm and charm coupled with modern amenities that will have you feeling relaxed and rejuvenated.</h3>\r\n<h3 style=\"text-align: justify;\">We know that sometimes you are searching for a romantic getaway or maybe a few days away with old friends. Other times you are searching for a place to host a weekend, family reunion or a business retreat. In addition to nightly room rentals, our lodge is also available for meetings, retreats  and makes the perfect place for a wedding party to stay together and get ready for the big day. Regardless, with our five comfortable and cozy guest bedrooms, multiple garden spaces and hideaways, and a  large private deck  where you can take a nap or read a book we definitely have the room for you!</h3>\r\n<h3 style=\"text-align: justify;\">Evenings are quiet and peaceful taking you far away from the business of city life. This is a unique and memorable country experience. We look forward to having you as a guest!</h3>\r\n[/fusion_text][/one_half][one_half last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][fusion_text]\r\n<h3 style=\"text-align: justify;\">Our lodge has been in our family for years and has recently been beautifully renovated. Five rooms all with en-suite showers lead off your own large central lounge, featuring a 36 foot high vaulted ceiling, offering spacious living, dining, and a bar/conversational lounge area which includes a fitted kitchenette, all adding to a sense of homely comfort. Sumptuous meals can be provided on request and served on the bottom deck at the swimming pool.</h3>\r\n<h3 style=\"text-align: justify;\">Be lulled to sleep by the sound of the waterfall and tinkling stream just outside your window, waking from a peaceful night\'s sleep in a pillow-top bed dressed in luxurious linens to coddle you in ultimate comfort.</h3>\r\n<h3 style=\"text-align: justify;\">Our property boasts many different species of birds and animals. We have a resident otter, a family of wild bush pigs,  a family of rock rabbits, porcupine, little blue duikers, a variety of different frogs and an abundance of bird life, including the occasional snakes that pass through!</h3>\r\n[/fusion_text][/one_half][/fullwidth][fullwidth background_color=\"#f0f0ed\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"20\" padding_bottom=\"20\" padding_left=\"0px\" padding_right=\"0px\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][fusion_text]\r\n<h1 style=\"text-align: center;\">Gallery</h1>\r\n[/fusion_text][separator style_type=\"single\" top_margin=\"\" bottom_margin=\"40\" sep_color=\"#000000\" border_size=\"\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"170px\" alignment=\"\" class=\"\" id=\"\"][one_sixth last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][/one_sixth][two_third last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][fusion_text]\r\n<h3 style=\"text-align: justify;\">The Lodge is open, spacious, comfortable and homely. During hot summer days, sit and bask in the sun on the deck  with one of our  picnic specials. In winter, snuggle up with a good book or challenge one another to a friendly board game in the glassed nook area .</h3>\r\n[/fusion_text][/two_third][one_sixth last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][/one_sixth][/fullwidth][fullwidth background_color=\"#f0f0ed\" background_image=\"http://localhost/assagaylodge/wp-content/uploads/2015/01/Wood_Texture.jpg\" background_parallax=\"fixed\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"30\" padding_bottom=\"10\" padding_left=\"0\" padding_right=\"0\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][recent_works layout=\"grid\" picture_size=\"auto\" boxed_text=\"unboxed\" filters=\"no\" columns=\"3\" column_spacing=\"12\" cat_slug=\"the-lodge\" exclude_cats=\"\" number_posts=\"9\" offset=\"\" excerpt_length=\"35\" strip_html=\"yes\" carousel_layout=\"title_on_rollover\" scroll_items=\"\" autoplay=\"no\" show_nav=\"yes\" mouse_scroll=\"no\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" class=\"\" id=\"\"][/recent_works][/fullwidth][fullwidth background_color=\"#f0f0ed\" background_image=\"\" background_parallax=\"fixed\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"20\" padding_bottom=\"20\" padding_left=\"0px\" padding_right=\"0px\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][fusion_text]\r\n<h1 style=\"text-align: center;\">BEDROOMS</h1>\r\n[/fusion_text][separator style_type=\"single\" top_margin=\"\" bottom_margin=\"20\" sep_color=\"#000000\" border_size=\"\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"170px\" alignment=\"\" class=\"\" id=\"\"][one_sixth last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][/one_sixth][two_third last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][fusion_text]\r\n<h3 style=\"text-align: justify;\">When it comes to our bedrooms we’re proud to say we offer something a little more special. One of five  lovingly and tastefully decorated guest rooms. Soft gray decor soothes the senses providing a peaceful, blissfully comfortable rest from your travels and hectic lives.</h3>\r\n<h3 style=\"text-align: justify;\">Our  bedrooms are spacious, clean, comfortable all en-suite, equipped with either king size or queen size beds. Each room sleeps two guests. The rooms have high ceilings, wall heaters &amp; ceiling fans. Beds all have electric blankets in Winter, 100% cotton percale sheets and thick hyper allergenic microfiber duvets and pillows. All guest rooms are cleaned with organic and green products. Amenities include hairdryers in each room. Three rooms feature King-sized beds  of which two can be  split into two single beds. Two  rooms can therefore be changed into a twin room upon request. Two rooms feature a Queen-sized double bed. These beds cannot be split into twin beds.</h3>\r\n[/fusion_text][/two_third][one_sixth last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][/one_sixth][/fullwidth][fullwidth background_color=\"\" background_image=\"http://localhost/assagaylodge/wp-content/uploads/2015/01/DSC01516-1148-x-764.jpg\" background_parallax=\"fixed\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"center center\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"20\" padding_bottom=\"20\" padding_left=\"0\" padding_right=\"0\" hundred_percent=\"no\" equal_height_columns=\"yes\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][recent_works layout=\"grid\" picture_size=\"auto\" boxed_text=\"unboxed\" filters=\"no\" columns=\"3\" column_spacing=\"12\" cat_slug=\"bedrooms\" exclude_cats=\"\" number_posts=\"6\" offset=\"\" excerpt_length=\"35\" strip_html=\"yes\" carousel_layout=\"title_on_rollover\" scroll_items=\"\" autoplay=\"no\" show_nav=\"yes\" mouse_scroll=\"no\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" class=\"\" id=\"\"][/recent_works][/fullwidth][fullwidth background_color=\"#f0f0ed\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"20\" padding_bottom=\"20\" padding_left=\"0\" padding_right=\"0\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][fusion_text]\r\n<h1 style=\"text-align: center;\">GARDENS</h1>\r\n[/fusion_text][separator style_type=\"single\" top_margin=\"\" bottom_margin=\"20\" sep_color=\"#000000\" border_size=\"\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"170px\" alignment=\"\" class=\"\" id=\"\"][one_sixth last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][/one_sixth][two_third last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][fusion_text]\r\n<h3 style=\"text-align: justify;\">The garden is large and offers many secluded spots to lose yourself in a book with a glass of wine underneath the shade of a tree, listening to the sounds of the birds and smelling the beautiful flowers.</h3>\r\n[/fusion_text][/two_third][one_sixth last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][/one_sixth][recent_works layout=\"grid\" picture_size=\"auto\" boxed_text=\"boxed\" filters=\"no\" columns=\"3\" column_spacing=\"12\" cat_slug=\"gardens\" exclude_cats=\"\" number_posts=\"9\" offset=\"\" excerpt_length=\"35\" strip_html=\"yes\" carousel_layout=\"title_on_rollover\" scroll_items=\"\" autoplay=\"no\" show_nav=\"yes\" mouse_scroll=\"no\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" class=\"\" id=\"\"][/recent_works][one_third last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][imageframe lightbox=\"no\" lightbox_image=\"\" style_type=\"none\" bordercolor=\"\" bordersize=\"0px\" borderradius=\"0\" stylecolor=\"\" align=\"none\" link=\"\" linktarget=\"_self\" animation_type=\"0\" animation_direction=\"\" animation_speed=\"0.1\" hide_on_mobile=\"no\" class=\"\" id=\"\"] <img alt=\"\" src=\"\" />[/imageframe][/one_third][one_third last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][/one_third][one_third last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][/one_third][/fullwidth][fullwidth background_color=\"#ffffff\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"65px\" padding_bottom=\"65px\" padding_left=\"0px\" padding_right=\"0px\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][button link=\"http://localhost/assagaylodge/book-now/\" color=\"default\" size=\"xlarge\"  type=\"3d\" shape=\"round\" target=\"_self\" title=\"\" gradient_colors=\"#f0f0ed|#f0f0ed\" gradient_hover_colors=\"#6666a4|#6666a4\" accent_color=\"#ffffff\" accent_hover_color=\"#ffffff\" bevel_color=\"\" border_width=\"0px\" icon=\"\" icon_position=\"left\" icon_divider=\"no\" modal=\"\" animation_type=\"0\" animation_direction=\"left\" animation_speed=\"1\" alignment=\"center\" class=\"\" id=\"\"]Make A Reservation Enquiry[/button][/fullwidth][one_third last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][/one_third][two_fifth last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][/two_fifth]', 'Home', '', 'inherit', 'closed', 'closed', '', '7-revision-v1', '', '', '2016-04-19 15:34:41', '2016-04-19 13:34:41', '', 7, 'http://msla.co.za/lodge/7-revision-v1/', 0, 'revision', '', 0);
INSERT INTO `wp_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(1189, 1, '2016-04-19 15:38:58', '2016-04-19 13:38:58', '[fullwidth background_color=\"#f0f0ed\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"20\" padding_bottom=\"20\" padding_left=\"0px\" padding_right=\"0px\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][one_half last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][separator style_type=\"single\" top_margin=\"0\" bottom_margin=\"30\" sep_color=\"#000000\" border_size=\"\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"170px\" alignment=\"center\" class=\"separator-left\" id=\"\"][fusion_text]\r\n<h1 style=\"text-align: center;\">No Fancy Star Grading\r\nNo Room Service\r\nNo Bed Turn-downs\r\nNo Rose Petals in the Bath water</h1>\r\n<h1 style=\"text-align: center;\">... just old fashioned homely comforts</h1>\r\n[/fusion_text][/one_half][one_half last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][fusion_text]\r\n<h1 style=\"text-align: justify;\">5 BEDROOM FAMILY LODGE</h1>\r\n<h3 style=\"text-align: justify;\">We are a four season lodge, because there’s always something to celebrate… We offer comfort, relaxation and privacy right in the heart of 1000 Hills. The Forest, the Gardens, the Atmosphere all speak to  Rest  &amp; Relaxation.</h3>\r\n[/fusion_text][separator style_type=\"single\" top_margin=\"0\" bottom_margin=\"30\" sep_color=\"#000000\" border_size=\"\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"170px\" alignment=\"left\" class=\"separator-left\" id=\"\"][modal name=\"rates\" title=\"2015 Rates\" size=\"large\" background=\"\" border_color=\"\" show_footer=\"yes\" class=\"\" id=\"\"]\r\n<table style=\"width: 100%;\" cellspacing=\"10\" cellpadding=\"5\">\r\n<tbody>\r\n<tr>\r\n<td colspan=\"2\"><span style=\"font-size: 10pt;\">ALL PRICES INCLUDE VAT </span></td>\r\n</tr>\r\n<tr>\r\n<td colspan=\"2\"><span style=\"font-size: 12pt;\"><strong>Self-Catering / Self-Servicing Accommodation</strong></span></td>\r\n</tr>\r\n<tr>\r\n<td><span style=\"font-size: 12pt;\">Full House - Max 10 persons per lodge</span></td>\r\n<td><span style=\"font-size: 12pt;\"><strong>R3250</strong> per night (R325 per person)</span></td>\r\n</tr>\r\n<tr>\r\n<td><span style=\"font-size: 12pt;\">Single - Max 1 person per room</span></td>\r\n<td><span style=\"font-size: 12pt;\"><strong>R 650</strong> per person per night</span></td>\r\n</tr>\r\n<tr>\r\n<td><span style=\"font-size: 12pt;\">Sharing - Max 2 persons per room</span></td>\r\n<td><span style=\"font-size: 12pt;\"><strong>R 495</strong> per person per night</span></td>\r\n</tr>\r\n<tr>\r\n<td></td>\r\n<td></td>\r\n</tr>\r\n<tr>\r\n<td><strong><span style=\"font-size: 12pt;\">Servicing Options</span></strong></td>\r\n<td></td>\r\n</tr>\r\n<tr>\r\n<td><span style=\"font-size: 12pt;\">Lodge Only Servicing (Optional) </span></td>\r\n<td><span style=\"font-size: 12pt;\"><strong>R30</strong> per person per day - Max <span style=\"font-size: 12pt;\"><strong>R 150 </strong>per day</span></span></td>\r\n</tr>\r\n<tr>\r\n<td><span style=\"font-size: 12pt;\">Lodge &amp; Room Servicing (Optional) </span></td>\r\n<td><span style=\"font-size: 12pt;\"><strong>R50</strong> per person per day - Max <span style=\"font-size: 12pt;\"><strong>R 250 </strong>per day</span></span></td>\r\n</tr>\r\n<tr>\r\n<td></td>\r\n<td></td>\r\n</tr>\r\n<tr>\r\n<td colspan=\"2\"><span style=\"font-size: 12pt;\"><span style=\"font-size: 12pt;\"><strong>Catering Options</strong></span> </span></td>\r\n</tr>\r\n<tr>\r\n<td><span style=\"font-size: 12pt;\"> <span style=\"font-size: 12pt;\">Breakfast (Continental)</span></span></td>\r\n<td><span style=\"font-size: 12pt;\"> <span style=\"font-size: 12pt;\"><strong>R 55</strong> per person</span></span></td>\r\n</tr>\r\n<tr>\r\n<td><span style=\"font-size: 12pt;\"> <span style=\"font-size: 12pt;\">Breakfast (Full English)</span></span></td>\r\n<td><span style=\"font-size: 12pt;\"> <span style=\"font-size: 12pt;\"><strong>R 75</strong> per person</span></span></td>\r\n</tr>\r\n<tr>\r\n<td><span style=\"font-size: 12pt;\"> <span style=\"font-size: 12pt;\">Light Lunch</span></span></td>\r\n<td><span style=\"font-size: 12pt;\">From <span style=\"font-size: 12pt;\"><strong>R 95 </strong>per person</span></span></td>\r\n</tr>\r\n<tr>\r\n<td><span style=\"font-size: 12pt;\"> <span style=\"font-size: 12pt;\">Dinners</span></span></td>\r\n<td><span style=\"font-size: 12pt;\">From <span style=\"font-size: 12pt;\"><strong>R 150 </strong>per person</span></span></td>\r\n</tr>\r\n<tr>\r\n<td></td>\r\n<td></td>\r\n</tr>\r\n<tr>\r\n<td><strong><span style=\"font-size: 12pt;\">Others</span></strong></td>\r\n<td></td>\r\n</tr>\r\n<tr>\r\n<td><span style=\"font-size: 12pt;\">Gate Remote</span></td>\r\n<td><span style=\"font-size: 12pt;\"><strong>R 200 </strong>deposit</span></td>\r\n</tr>\r\n<tr>\r\n<td><span style=\"font-size: 12pt;\">Gas Braai</span></td>\r\n<td><span style=\"font-size: 12pt;\"><strong>R 120 </strong>per day</span></td>\r\n</tr>\r\n<tr>\r\n<td><span style=\"font-size: 12pt;\">Day Visitors / Guests</span></td>\r\n<td><span style=\"font-size: 12pt;\"><strong>R 50 </strong>per person per day</span></td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n\r\n<hr />\r\n\r\n[/modal][button link=\"\" color=\"darkgreen\" size=\"\"  type=\"\" shape=\"\" target=\"_self\" title=\"\" gradient_colors=\"|\" gradient_hover_colors=\"|\" accent_color=\"\" accent_hover_color=\"\" bevel_color=\"\" border_width=\"1px\" icon=\"\" icon_position=\"left\" icon_divider=\"no\" modal=\"rates\" animation_type=\"0\" animation_direction=\"left\" animation_speed=\"1\" alignment=\"\" class=\"\" id=\"\"]2016 RATES[/button][/one_half][/fullwidth][fullwidth background_color=\"#f0f0ed\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"20\" padding_bottom=\"20\" padding_left=\"0px\" padding_right=\"0px\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][one_half last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][fusion_text]\r\n<h3 style=\"text-align: justify;\">Set in the rolling peaks and valleys of a thousand hills surrounded by a canopy of indigenous trees, you will find that horses still have right of way, we certainly offer the best of both worlds, farm and charm coupled with modern amenities that will have you feeling relaxed and rejuvenated.</h3>\r\n<h3 style=\"text-align: justify;\">We know that sometimes you are searching for a romantic getaway or maybe a few days away with old friends. Other times you are searching for a place to host a weekend, family reunion or a business retreat. In addition to nightly room rentals, our lodge is also available for meetings, retreats  and makes the perfect place for a wedding party to stay together and get ready for the big day. Regardless, with our five comfortable and cozy guest bedrooms, multiple garden spaces and hideaways, and a  large private deck  where you can take a nap or read a book we definitely have the room for you!</h3>\r\n<h3 style=\"text-align: justify;\">Evenings are quiet and peaceful taking you far away from the business of city life. This is a unique and memorable country experience. We look forward to having you as a guest!</h3>\r\n[/fusion_text][/one_half][one_half last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][fusion_text]\r\n<h3 style=\"text-align: justify;\">Our lodge has been in our family for years and has recently been beautifully renovated. Five rooms all with en-suite showers lead off your own large central lounge, featuring a 36 foot high vaulted ceiling, offering spacious living, dining, and a bar/conversational lounge area which includes a fitted kitchenette, all adding to a sense of homely comfort. Sumptuous meals can be provided on request and served on the bottom deck at the swimming pool.</h3>\r\n<h3 style=\"text-align: justify;\">Be lulled to sleep by the sound of the waterfall and tinkling stream just outside your window, waking from a peaceful night\'s sleep in a pillow-top bed dressed in luxurious linens to coddle you in ultimate comfort.</h3>\r\n<h3 style=\"text-align: justify;\">Our property boasts many different species of birds and animals. We have a resident otter, a family of wild bush pigs,  a family of rock rabbits, porcupine, little blue duikers, a variety of different frogs and an abundance of bird life, including the occasional snakes that pass through!</h3>\r\n[/fusion_text][/one_half][/fullwidth][fullwidth background_color=\"#f0f0ed\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"20\" padding_bottom=\"20\" padding_left=\"0px\" padding_right=\"0px\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][fusion_text]\r\n<h1 style=\"text-align: center;\">Gallery</h1>\r\n[/fusion_text][separator style_type=\"single\" top_margin=\"\" bottom_margin=\"40\" sep_color=\"#000000\" border_size=\"\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"170px\" alignment=\"\" class=\"\" id=\"\"][one_sixth last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][/one_sixth][two_third last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][fusion_text]\r\n<h3 style=\"text-align: justify;\">The Lodge is open, spacious, comfortable and homely. During hot summer days, sit and bask in the sun on the deck  with one of our  picnic specials. In winter, snuggle up with a good book or challenge one another to a friendly board game in the glassed nook area .</h3>\r\n[/fusion_text][/two_third][one_sixth last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][/one_sixth][/fullwidth][fullwidth background_color=\"#f0f0ed\" background_image=\"http://localhost/assagaylodge/wp-content/uploads/2015/01/Wood_Texture.jpg\" background_parallax=\"fixed\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"30\" padding_bottom=\"10\" padding_left=\"0\" padding_right=\"0\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][recent_works layout=\"grid\" picture_size=\"auto\" boxed_text=\"unboxed\" filters=\"no\" columns=\"3\" column_spacing=\"12\" cat_slug=\"the-lodge\" exclude_cats=\"\" number_posts=\"9\" offset=\"\" excerpt_length=\"35\" strip_html=\"yes\" carousel_layout=\"title_on_rollover\" scroll_items=\"\" autoplay=\"no\" show_nav=\"yes\" mouse_scroll=\"no\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" class=\"\" id=\"\"][/recent_works][/fullwidth][fullwidth background_color=\"#f0f0ed\" background_image=\"\" background_parallax=\"fixed\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"20\" padding_bottom=\"20\" padding_left=\"0px\" padding_right=\"0px\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][fusion_text]\r\n<h1 style=\"text-align: center;\">BEDROOMS</h1>\r\n[/fusion_text][separator style_type=\"single\" top_margin=\"\" bottom_margin=\"20\" sep_color=\"#000000\" border_size=\"\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"170px\" alignment=\"\" class=\"\" id=\"\"][one_sixth last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][/one_sixth][two_third last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][fusion_text]\r\n<h3 style=\"text-align: justify;\">When it comes to our bedrooms we’re proud to say we offer something a little more special. One of five  lovingly and tastefully decorated guest rooms. Soft gray decor soothes the senses providing a peaceful, blissfully comfortable rest from your travels and hectic lives.</h3>\r\n<h3 style=\"text-align: justify;\">Our  bedrooms are spacious, clean, comfortable all en-suite, equipped with either king size or queen size beds. Each room sleeps two guests. The rooms have high ceilings, wall heaters &amp; ceiling fans. Beds all have electric blankets in Winter, 100% cotton percale sheets and thick hyper allergenic microfiber duvets and pillows. All guest rooms are cleaned with organic and green products. Amenities include hairdryers in each room. Three rooms feature King-sized beds  of which two can be  split into two single beds. Two  rooms can therefore be changed into a twin room upon request. Two rooms feature a Queen-sized double bed. These beds cannot be split into twin beds.</h3>\r\n[/fusion_text][/two_third][one_sixth last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][/one_sixth][/fullwidth][fullwidth background_color=\"\" background_image=\"http://localhost/assagaylodge/wp-content/uploads/2015/01/DSC01516-1148-x-764.jpg\" background_parallax=\"fixed\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"center center\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"20\" padding_bottom=\"20\" padding_left=\"0\" padding_right=\"0\" hundred_percent=\"no\" equal_height_columns=\"yes\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][recent_works layout=\"grid\" picture_size=\"auto\" boxed_text=\"unboxed\" filters=\"no\" columns=\"3\" column_spacing=\"12\" cat_slug=\"bedrooms\" exclude_cats=\"\" number_posts=\"6\" offset=\"\" excerpt_length=\"35\" strip_html=\"yes\" carousel_layout=\"title_on_rollover\" scroll_items=\"\" autoplay=\"no\" show_nav=\"yes\" mouse_scroll=\"no\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" class=\"\" id=\"\"][/recent_works][/fullwidth][fullwidth background_color=\"#f0f0ed\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"20\" padding_bottom=\"20\" padding_left=\"0\" padding_right=\"0\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][fusion_text]\r\n<h1 style=\"text-align: center;\">GARDENS</h1>\r\n[/fusion_text][separator style_type=\"single\" top_margin=\"\" bottom_margin=\"20\" sep_color=\"#000000\" border_size=\"\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"170px\" alignment=\"\" class=\"\" id=\"\"][one_sixth last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][/one_sixth][two_third last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][fusion_text]\r\n<h3 style=\"text-align: justify;\">The garden is large and offers many secluded spots to lose yourself in a book with a glass of wine underneath the shade of a tree, listening to the sounds of the birds and smelling the beautiful flowers.</h3>\r\n[/fusion_text][/two_third][one_sixth last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][/one_sixth][recent_works layout=\"grid\" picture_size=\"auto\" boxed_text=\"boxed\" filters=\"no\" columns=\"3\" column_spacing=\"12\" cat_slug=\"gardens\" exclude_cats=\"\" number_posts=\"9\" offset=\"\" excerpt_length=\"35\" strip_html=\"yes\" carousel_layout=\"title_on_rollover\" scroll_items=\"\" autoplay=\"no\" show_nav=\"yes\" mouse_scroll=\"no\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" class=\"\" id=\"\"][/recent_works][one_third last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][imageframe lightbox=\"no\" lightbox_image=\"\" style_type=\"none\" bordercolor=\"\" bordersize=\"0px\" borderradius=\"0\" stylecolor=\"\" align=\"none\" link=\"\" linktarget=\"_self\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" hide_on_mobile=\"no\" class=\"\" id=\"\"] <img alt=\"\" src=\"http://msla.co.za/lodge/wp-content/uploads/2015/09/Easter-Pics-079-800-x-533.jpg\" />[/imageframe][/one_third][one_third last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][imageframe lightbox=\"no\" lightbox_image=\"\" style_type=\"none\" bordercolor=\"\" bordersize=\"0px\" borderradius=\"0\" stylecolor=\"\" align=\"none\" link=\"\" linktarget=\"_self\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" hide_on_mobile=\"no\" class=\"\" id=\"\"] <img alt=\"\" src=\"http://msla.co.za/lodge/wp-content/uploads/2015/09/Easter-Pics-079-800-x-533.jpg\" />[/imageframe][/one_third][one_third last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][imageframe lightbox=\"no\" lightbox_image=\"\" style_type=\"none\" bordercolor=\"\" bordersize=\"0px\" borderradius=\"0\" stylecolor=\"\" align=\"none\" link=\"\" linktarget=\"_self\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" hide_on_mobile=\"no\" class=\"\" id=\"\"] <img alt=\"\" src=\"http://msla.co.za/lodge/wp-content/uploads/2015/09/Easter-Pics-079-800-x-533.jpg\" />[/imageframe][/one_third][/fullwidth][fullwidth background_color=\"#ffffff\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"65px\" padding_bottom=\"65px\" padding_left=\"0px\" padding_right=\"0px\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][button link=\"http://localhost/assagaylodge/book-now/\" color=\"default\" size=\"xlarge\"  type=\"3d\" shape=\"round\" target=\"_self\" title=\"\" gradient_colors=\"#f0f0ed|#f0f0ed\" gradient_hover_colors=\"#6666a4|#6666a4\" accent_color=\"#ffffff\" accent_hover_color=\"#ffffff\" bevel_color=\"\" border_width=\"0px\" icon=\"\" icon_position=\"left\" icon_divider=\"no\" modal=\"\" animation_type=\"0\" animation_direction=\"left\" animation_speed=\"1\" alignment=\"center\" class=\"\" id=\"\"]Make A Reservation Enquiry[/button][/fullwidth][one_third last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][/one_third][two_fifth last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][/two_fifth]', 'Home', '', 'inherit', 'closed', 'closed', '', '7-revision-v1', '', '', '2016-04-19 15:38:58', '2016-04-19 13:38:58', '', 7, 'http://msla.co.za/lodge/7-revision-v1/', 0, 'revision', '', 0),
(1190, 1, '2016-04-19 15:50:40', '2016-04-19 13:50:40', '', '13265_696714407021729_1413850846_n', '', 'inherit', 'open', 'closed', '', '13265_696714407021729_1413850846_n', '', '', '2016-04-19 15:50:40', '2016-04-19 13:50:40', '', 0, 'http://msla.co.za/lodge/wp-content/uploads/2016/04/13265_696714407021729_1413850846_n.jpg', 0, 'attachment', 'image/jpeg', 0),
(1191, 1, '2016-04-19 15:50:46', '2016-04-19 13:50:46', '', '526469_716126638413839_847766485_n', '', 'inherit', 'open', 'closed', '', '526469_716126638413839_847766485_n', '', '', '2016-04-19 15:50:46', '2016-04-19 13:50:46', '', 0, 'http://msla.co.za/lodge/wp-content/uploads/2016/04/526469_716126638413839_847766485_n.jpg', 0, 'attachment', 'image/jpeg', 0),
(1192, 1, '2016-04-19 15:50:52', '2016-04-19 13:50:52', '', '598476_718334754859694_1050256252_n', '', 'inherit', 'open', 'closed', '', '598476_718334754859694_1050256252_n', '', '', '2016-04-19 15:50:52', '2016-04-19 13:50:52', '', 0, 'http://msla.co.za/lodge/wp-content/uploads/2016/04/598476_718334754859694_1050256252_n.jpg', 0, 'attachment', 'image/jpeg', 0),
(1193, 1, '2016-04-19 15:50:58', '2016-04-19 13:50:58', '', '971958_716239841735852_1273877130_n', '', 'inherit', 'open', 'closed', '', '971958_716239841735852_1273877130_n', '', '', '2016-04-19 15:50:58', '2016-04-19 13:50:58', '', 0, 'http://msla.co.za/lodge/wp-content/uploads/2016/04/971958_716239841735852_1273877130_n.jpg', 0, 'attachment', 'image/jpeg', 0),
(1194, 1, '2016-04-19 15:51:05', '2016-04-19 13:51:05', '', '1069952_696713320355171_1760801696_n', '', 'inherit', 'open', 'closed', '', '1069952_696713320355171_1760801696_n', '', '', '2016-04-19 15:51:05', '2016-04-19 13:51:05', '', 0, 'http://msla.co.za/lodge/wp-content/uploads/2016/04/1069952_696713320355171_1760801696_n.jpg', 0, 'attachment', 'image/jpeg', 0),
(1195, 1, '2016-04-19 15:51:12', '2016-04-19 13:51:12', '', '1186319_717077018318801_1461397372_n', '', 'inherit', 'open', 'closed', '', '1186319_717077018318801_1461397372_n', '', '', '2016-04-19 15:51:12', '2016-04-19 13:51:12', '', 0, 'http://msla.co.za/lodge/wp-content/uploads/2016/04/1186319_717077018318801_1461397372_n.jpg', 0, 'attachment', 'image/jpeg', 0),
(1196, 1, '2016-04-19 15:53:52', '2016-04-19 13:53:52', '', 'Gardens4', '', 'publish', 'open', 'closed', '', 'gardens4', '', '', '2016-04-19 15:53:52', '2016-04-19 13:53:52', '', 0, 'http://msla.co.za/lodge/?post_type=avada_portfolio&#038;p=1196', 0, 'avada_portfolio', '', 0),
(1197, 1, '2016-04-19 15:53:34', '2016-04-19 13:53:34', '', 'easter-pics-015b', '', 'inherit', 'open', 'closed', '', 'easter-pics-015b', '', '', '2016-04-19 15:53:34', '2016-04-19 13:53:34', '', 0, 'http://msla.co.za/lodge/wp-content/uploads/2016/04/easter-pics-015b.jpg', 0, 'attachment', 'image/jpeg', 0),
(1198, 1, '2016-04-19 15:53:52', '2016-04-19 13:53:52', '', 'Gardens4', '', 'inherit', 'closed', 'closed', '', '1196-revision-v1', '', '', '2016-04-19 15:53:52', '2016-04-19 13:53:52', '', 1196, 'http://msla.co.za/lodge/1196-revision-v1/', 0, 'revision', '', 0),
(1199, 1, '2016-04-19 15:56:14', '2016-04-19 13:56:14', '', 'Gardens5', '', 'publish', 'open', 'closed', '', 'gardens5', '', '', '2016-04-19 15:56:14', '2016-04-19 13:56:14', '', 0, 'http://msla.co.za/lodge/?post_type=avada_portfolio&#038;p=1199', 0, 'avada_portfolio', '', 0),
(1200, 1, '2016-04-19 15:56:14', '2016-04-19 13:56:14', '', 'Gardens5', '', 'inherit', 'closed', 'closed', '', '1199-revision-v1', '', '', '2016-04-19 15:56:14', '2016-04-19 13:56:14', '', 1199, 'http://msla.co.za/lodge/1199-revision-v1/', 0, 'revision', '', 0),
(1201, 1, '2016-04-19 15:58:23', '2016-04-19 13:58:23', '', 'Gardens6', '', 'publish', 'open', 'closed', '', 'gardens6', '', '', '2016-04-19 15:58:23', '2016-04-19 13:58:23', '', 0, 'http://msla.co.za/lodge/?post_type=avada_portfolio&#038;p=1201', 0, 'avada_portfolio', '', 0),
(1202, 1, '2016-04-19 15:58:29', '2016-04-19 13:58:29', '', 'Gardens7', '', 'publish', 'open', 'closed', '', 'gardens7', '', '', '2016-04-19 15:58:29', '2016-04-19 13:58:29', '', 0, 'http://msla.co.za/lodge/?post_type=avada_portfolio&#038;p=1202', 0, 'avada_portfolio', '', 0),
(1203, 1, '2016-04-19 15:58:23', '2016-04-19 13:58:23', '', 'Gardens6', '', 'inherit', 'closed', 'closed', '', '1201-revision-v1', '', '', '2016-04-19 15:58:23', '2016-04-19 13:58:23', '', 1201, 'http://msla.co.za/lodge/1201-revision-v1/', 0, 'revision', '', 0),
(1204, 1, '2016-04-19 15:58:29', '2016-04-19 13:58:29', '', 'Gardens7', '', 'inherit', 'closed', 'closed', '', '1202-revision-v1', '', '', '2016-04-19 15:58:29', '2016-04-19 13:58:29', '', 1202, 'http://msla.co.za/lodge/1202-revision-v1/', 0, 'revision', '', 0);
INSERT INTO `wp_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(1205, 1, '2016-04-19 16:01:46', '2016-04-19 14:01:46', '[fullwidth background_color=\"#f0f0ed\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"20\" padding_bottom=\"20\" padding_left=\"0px\" padding_right=\"0px\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][one_half last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][separator style_type=\"single\" top_margin=\"0\" bottom_margin=\"30\" sep_color=\"#000000\" border_size=\"\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"170px\" alignment=\"center\" class=\"separator-left\" id=\"\"][fusion_text]\r\n<h1 style=\"text-align: center;\">No Fancy Star Grading\r\nNo Room Service\r\nNo Bed Turn-downs\r\nNo Rose Petals in the Bath water</h1>\r\n<h1 style=\"text-align: center;\">... just old fashioned homely comforts</h1>\r\n[/fusion_text][/one_half][one_half last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][fusion_text]\r\n<h1 style=\"text-align: justify;\">5 BEDROOM FAMILY LODGE</h1>\r\n<h3 style=\"text-align: justify;\">We are a four season lodge, because there’s always something to celebrate… We offer comfort, relaxation and privacy right in the heart of 1000 Hills. The Forest, the Gardens, the Atmosphere all speak to  Rest  &amp; Relaxation.</h3>\r\n[/fusion_text][separator style_type=\"single\" top_margin=\"0\" bottom_margin=\"30\" sep_color=\"#000000\" border_size=\"\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"170px\" alignment=\"left\" class=\"separator-left\" id=\"\"][modal name=\"rates\" title=\"2015 Rates\" size=\"large\" background=\"\" border_color=\"\" show_footer=\"yes\" class=\"\" id=\"\"]\r\n<table style=\"width: 100%;\" cellspacing=\"10\" cellpadding=\"5\">\r\n<tbody>\r\n<tr>\r\n<td colspan=\"2\"><span style=\"font-size: 10pt;\">ALL PRICES INCLUDE VAT </span></td>\r\n</tr>\r\n<tr>\r\n<td colspan=\"2\"><span style=\"font-size: 12pt;\"><strong>Self-Catering / Self-Servicing Accommodation</strong></span></td>\r\n</tr>\r\n<tr>\r\n<td><span style=\"font-size: 12pt;\">Full House - Max 10 persons per lodge</span></td>\r\n<td><span style=\"font-size: 12pt;\"><strong>R3250</strong> per night (R325 per person)</span></td>\r\n</tr>\r\n<tr>\r\n<td><span style=\"font-size: 12pt;\">Single - Max 1 person per room</span></td>\r\n<td><span style=\"font-size: 12pt;\"><strong>R 650</strong> per person per night</span></td>\r\n</tr>\r\n<tr>\r\n<td><span style=\"font-size: 12pt;\">Sharing - Max 2 persons per room</span></td>\r\n<td><span style=\"font-size: 12pt;\"><strong>R 495</strong> per person per night</span></td>\r\n</tr>\r\n<tr>\r\n<td></td>\r\n<td></td>\r\n</tr>\r\n<tr>\r\n<td><strong><span style=\"font-size: 12pt;\">Servicing Options</span></strong></td>\r\n<td></td>\r\n</tr>\r\n<tr>\r\n<td><span style=\"font-size: 12pt;\">Lodge Only Servicing (Optional) </span></td>\r\n<td><span style=\"font-size: 12pt;\"><strong>R30</strong> per person per day - Max <span style=\"font-size: 12pt;\"><strong>R 150 </strong>per day</span></span></td>\r\n</tr>\r\n<tr>\r\n<td><span style=\"font-size: 12pt;\">Lodge &amp; Room Servicing (Optional) </span></td>\r\n<td><span style=\"font-size: 12pt;\"><strong>R50</strong> per person per day - Max <span style=\"font-size: 12pt;\"><strong>R 250 </strong>per day</span></span></td>\r\n</tr>\r\n<tr>\r\n<td></td>\r\n<td></td>\r\n</tr>\r\n<tr>\r\n<td colspan=\"2\"><span style=\"font-size: 12pt;\"><span style=\"font-size: 12pt;\"><strong>Catering Options</strong></span> </span></td>\r\n</tr>\r\n<tr>\r\n<td><span style=\"font-size: 12pt;\"> <span style=\"font-size: 12pt;\">Breakfast (Continental)</span></span></td>\r\n<td><span style=\"font-size: 12pt;\"> <span style=\"font-size: 12pt;\"><strong>R 55</strong> per person</span></span></td>\r\n</tr>\r\n<tr>\r\n<td><span style=\"font-size: 12pt;\"> <span style=\"font-size: 12pt;\">Breakfast (Full English)</span></span></td>\r\n<td><span style=\"font-size: 12pt;\"> <span style=\"font-size: 12pt;\"><strong>R 75</strong> per person</span></span></td>\r\n</tr>\r\n<tr>\r\n<td><span style=\"font-size: 12pt;\"> <span style=\"font-size: 12pt;\">Light Lunch</span></span></td>\r\n<td><span style=\"font-size: 12pt;\">From <span style=\"font-size: 12pt;\"><strong>R 95 </strong>per person</span></span></td>\r\n</tr>\r\n<tr>\r\n<td><span style=\"font-size: 12pt;\"> <span style=\"font-size: 12pt;\">Dinners</span></span></td>\r\n<td><span style=\"font-size: 12pt;\">From <span style=\"font-size: 12pt;\"><strong>R 150 </strong>per person</span></span></td>\r\n</tr>\r\n<tr>\r\n<td></td>\r\n<td></td>\r\n</tr>\r\n<tr>\r\n<td><strong><span style=\"font-size: 12pt;\">Others</span></strong></td>\r\n<td></td>\r\n</tr>\r\n<tr>\r\n<td><span style=\"font-size: 12pt;\">Gate Remote</span></td>\r\n<td><span style=\"font-size: 12pt;\"><strong>R 200 </strong>deposit</span></td>\r\n</tr>\r\n<tr>\r\n<td><span style=\"font-size: 12pt;\">Gas Braai</span></td>\r\n<td><span style=\"font-size: 12pt;\"><strong>R 120 </strong>per day</span></td>\r\n</tr>\r\n<tr>\r\n<td><span style=\"font-size: 12pt;\">Day Visitors / Guests</span></td>\r\n<td><span style=\"font-size: 12pt;\"><strong>R 50 </strong>per person per day</span></td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n\r\n<hr />\r\n\r\n[/modal][button link=\"\" color=\"darkgreen\" size=\"\"  type=\"\" shape=\"\" target=\"_self\" title=\"\" gradient_colors=\"|\" gradient_hover_colors=\"|\" accent_color=\"\" accent_hover_color=\"\" bevel_color=\"\" border_width=\"1px\" icon=\"\" icon_position=\"left\" icon_divider=\"no\" modal=\"rates\" animation_type=\"0\" animation_direction=\"left\" animation_speed=\"1\" alignment=\"\" class=\"\" id=\"\"]2016 RATES[/button][/one_half][/fullwidth][fullwidth background_color=\"#f0f0ed\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"20\" padding_bottom=\"20\" padding_left=\"0px\" padding_right=\"0px\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][one_half last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][fusion_text]\r\n<h3 style=\"text-align: justify;\">Set in the rolling peaks and valleys of a thousand hills surrounded by a canopy of indigenous trees, you will find that horses still have right of way, we certainly offer the best of both worlds, farm and charm coupled with modern amenities that will have you feeling relaxed and rejuvenated.</h3>\r\n<h3 style=\"text-align: justify;\">We know that sometimes you are searching for a romantic getaway or maybe a few days away with old friends. Other times you are searching for a place to host a weekend, family reunion or a business retreat. In addition to nightly room rentals, our lodge is also available for meetings, retreats  and makes the perfect place for a wedding party to stay together and get ready for the big day. Regardless, with our five comfortable and cozy guest bedrooms, multiple garden spaces and hideaways, and a  large private deck  where you can take a nap or read a book we definitely have the room for you!</h3>\r\n<h3 style=\"text-align: justify;\">Evenings are quiet and peaceful taking you far away from the business of city life. This is a unique and memorable country experience. We look forward to having you as a guest!</h3>\r\n[/fusion_text][/one_half][one_half last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][fusion_text]\r\n<h3 style=\"text-align: justify;\">Our lodge has been in our family for years and has recently been beautifully renovated. Five rooms all with en-suite showers lead off your own large central lounge, featuring a 36 foot high vaulted ceiling, offering spacious living, dining, and a bar/conversational lounge area which includes a fitted kitchenette, all adding to a sense of homely comfort. Sumptuous meals can be provided on request and served on the bottom deck at the swimming pool.</h3>\r\n<h3 style=\"text-align: justify;\">Be lulled to sleep by the sound of the waterfall and tinkling stream just outside your window, waking from a peaceful night\'s sleep in a pillow-top bed dressed in luxurious linens to coddle you in ultimate comfort.</h3>\r\n<h3 style=\"text-align: justify;\">Our property boasts many different species of birds and animals. We have a resident otter, a family of wild bush pigs,  a family of rock rabbits, porcupine, little blue duikers, a variety of different frogs and an abundance of bird life, including the occasional snakes that pass through!</h3>\r\n[/fusion_text][/one_half][/fullwidth][fullwidth background_color=\"#f0f0ed\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"20\" padding_bottom=\"20\" padding_left=\"0px\" padding_right=\"0px\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][fusion_text]\r\n<h1 style=\"text-align: center;\">Gallery</h1>\r\n[/fusion_text][separator style_type=\"single\" top_margin=\"\" bottom_margin=\"40\" sep_color=\"#000000\" border_size=\"\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"170px\" alignment=\"\" class=\"\" id=\"\"][one_sixth last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][/one_sixth][two_third last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][fusion_text]\r\n<h3 style=\"text-align: justify;\">The Lodge is open, spacious, comfortable and homely. During hot summer days, sit and bask in the sun on the deck  with one of our  picnic specials. In winter, snuggle up with a good book or challenge one another to a friendly board game in the glassed nook area .</h3>\r\n[/fusion_text][/two_third][one_sixth last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][/one_sixth][/fullwidth][fullwidth background_color=\"#f0f0ed\" background_image=\"http://localhost/assagaylodge/wp-content/uploads/2015/01/Wood_Texture.jpg\" background_parallax=\"fixed\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"30\" padding_bottom=\"10\" padding_left=\"0\" padding_right=\"0\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][recent_works layout=\"grid\" picture_size=\"auto\" boxed_text=\"unboxed\" filters=\"no\" columns=\"3\" column_spacing=\"12\" cat_slug=\"the-lodge\" exclude_cats=\"\" number_posts=\"9\" offset=\"\" excerpt_length=\"35\" strip_html=\"yes\" carousel_layout=\"title_on_rollover\" scroll_items=\"\" autoplay=\"no\" show_nav=\"yes\" mouse_scroll=\"no\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" class=\"\" id=\"\"][/recent_works][/fullwidth][fullwidth background_color=\"#f0f0ed\" background_image=\"\" background_parallax=\"fixed\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"20\" padding_bottom=\"20\" padding_left=\"0px\" padding_right=\"0px\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][fusion_text]\r\n<h1 style=\"text-align: center;\">BEDROOMS</h1>\r\n[/fusion_text][separator style_type=\"single\" top_margin=\"\" bottom_margin=\"20\" sep_color=\"#000000\" border_size=\"\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"170px\" alignment=\"\" class=\"\" id=\"\"][one_sixth last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][/one_sixth][two_third last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][fusion_text]\r\n<h3 style=\"text-align: justify;\">When it comes to our bedrooms we’re proud to say we offer something a little more special. One of five  lovingly and tastefully decorated guest rooms. Soft gray decor soothes the senses providing a peaceful, blissfully comfortable rest from your travels and hectic lives.</h3>\r\n<h3 style=\"text-align: justify;\">Our  bedrooms are spacious, clean, comfortable all en-suite, equipped with either king size or queen size beds. Each room sleeps two guests. The rooms have high ceilings, wall heaters &amp; ceiling fans. Beds all have electric blankets in Winter, 100% cotton percale sheets and thick hyper allergenic microfiber duvets and pillows. All guest rooms are cleaned with organic and green products. Amenities include hairdryers in each room. Three rooms feature King-sized beds  of which two can be  split into two single beds. Two  rooms can therefore be changed into a twin room upon request. Two rooms feature a Queen-sized double bed. These beds cannot be split into twin beds.</h3>\r\n[/fusion_text][/two_third][one_sixth last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][/one_sixth][/fullwidth][fullwidth background_color=\"\" background_image=\"http://localhost/assagaylodge/wp-content/uploads/2015/01/DSC01516-1148-x-764.jpg\" background_parallax=\"fixed\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"center center\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"20\" padding_bottom=\"20\" padding_left=\"0\" padding_right=\"0\" hundred_percent=\"no\" equal_height_columns=\"yes\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][recent_works layout=\"grid\" picture_size=\"auto\" boxed_text=\"unboxed\" filters=\"no\" columns=\"3\" column_spacing=\"12\" cat_slug=\"bedrooms\" exclude_cats=\"\" number_posts=\"6\" offset=\"\" excerpt_length=\"35\" strip_html=\"yes\" carousel_layout=\"title_on_rollover\" scroll_items=\"\" autoplay=\"no\" show_nav=\"yes\" mouse_scroll=\"no\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" class=\"\" id=\"\"][/recent_works][/fullwidth][fullwidth background_color=\"#f0f0ed\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"20\" padding_bottom=\"20\" padding_left=\"0\" padding_right=\"0\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][fusion_text]\r\n<h1 style=\"text-align: center;\">GARDENS</h1>\r\n[/fusion_text][separator style_type=\"single\" top_margin=\"\" bottom_margin=\"20\" sep_color=\"#000000\" border_size=\"\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"170px\" alignment=\"\" class=\"\" id=\"\"][one_sixth last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][/one_sixth][two_third last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][fusion_text]\r\n<h3 style=\"text-align: justify;\">The garden is large and offers many secluded spots to lose yourself in a book with a glass of wine underneath the shade of a tree, listening to the sounds of the birds and smelling the beautiful flowers.</h3>\r\n[/fusion_text][/two_third][one_sixth last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][/one_sixth][recent_works layout=\"grid\" picture_size=\"auto\" boxed_text=\"boxed\" filters=\"no\" columns=\"3\" column_spacing=\"12\" cat_slug=\"gardens\" exclude_cats=\"\" number_posts=\"9\" offset=\"\" excerpt_length=\"35\" strip_html=\"yes\" carousel_layout=\"title_on_rollover\" scroll_items=\"\" autoplay=\"no\" show_nav=\"yes\" mouse_scroll=\"no\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" class=\"\" id=\"\"][/recent_works][/fullwidth][fullwidth background_color=\"#ffffff\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"65px\" padding_bottom=\"65px\" padding_left=\"0px\" padding_right=\"0px\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][button link=\"http://localhost/assagaylodge/book-now/\" color=\"default\" size=\"xlarge\"  type=\"3d\" shape=\"round\" target=\"_self\" title=\"\" gradient_colors=\"#f0f0ed|#f0f0ed\" gradient_hover_colors=\"#6666a4|#6666a4\" accent_color=\"#ffffff\" accent_hover_color=\"#ffffff\" bevel_color=\"\" border_width=\"0px\" icon=\"\" icon_position=\"left\" icon_divider=\"no\" modal=\"\" animation_type=\"0\" animation_direction=\"left\" animation_speed=\"1\" alignment=\"center\" class=\"\" id=\"\"]Make A Reservation Enquiry[/button][/fullwidth]', 'Home', '', 'inherit', 'closed', 'closed', '', '7-revision-v1', '', '', '2016-04-19 16:01:46', '2016-04-19 14:01:46', '', 7, 'http://msla.co.za/lodge/7-revision-v1/', 0, 'revision', '', 0),
(1207, 1, '2016-05-09 16:18:08', '2016-05-09 14:18:08', '[fullwidth background_color=\"#f0f0ed\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"20\" padding_bottom=\"20\" padding_left=\"0px\" padding_right=\"0px\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][one_half last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][separator style_type=\"single\" top_margin=\"0\" bottom_margin=\"30\" sep_color=\"#000000\" border_size=\"\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"170px\" alignment=\"center\" class=\"separator-left\" id=\"\"][fusion_text]\r\n<h1 style=\"text-align: center;\">No Fancy Star Grading\r\nNo Room Service\r\nNo Bed Turn-downs\r\nNo Rose Petals in the Bath water</h1>\r\n<h1 style=\"text-align: center;\">... just old fashioned homely comforts</h1>\r\n[/fusion_text][fusion_text]&lt;div class=\"airbnb-embed-frame\" data-city-link-index=\"1\" data-eb=\"1462789260_DFsv4yPasFoGrzVG\" data-eu=\"Pzyw4G1I2cOy5yOeqs7KJp3V8wHpWUBxUDyVE31FLh2owL52LNs37jm48JRQ aDGoGLOcuSy/5RWwhapPlK8i5WAawNp0UhQ2ydBSwyCsewd69eRsBnwPSXee NayjEJDrUAjrimyOrYeup1EClW1KFr/qGzXJvE0v2+YLt4m1g98KmWPwcKLt 7CnKe71Bmi0i6XjbP4qBrn83lL+ADKhVXUXfcD8GsU3xN1AuOoy99qiAdlFd Iq65qx9phWPRmhKUId2kc0sTFw6N4/e7KLQbYhj2yr6og6nZdn8V0tzgZUVw M2HZfbbcUS78i9bBcybEgBXsLSaDiKncY7AP1+tZ7A== \" data-embed-source-type=\"badge_center\" data-trigger-source-type=\"badge_center\" data-listing-id=\"11821060\" data-photo-url=\"https://a2.muscache.com/im/pictures/7a7dc912-d638-48ff-a180-b28ffd7ea24d.jpg?aki_policy=x_large\" data-view=\"listing_frame\" style=\"max-width:600px;margin:auto;transition:height .2s;\"&gt;&lt;img src=\"https://a2.muscache.com/im/pictures/7a7dc912-d638-48ff-a180-b28ffd7ea24d.jpg?aki_policy=x_large\" style=\"max-width:100%;\" alt=\"\"/&gt;&lt;div&gt;&lt;a href=\"https://www.airbnb.com/rooms/11821060\" rel=\"nofollow\"&gt;&lt;h4&gt;Assagay Forest Lodge&lt;/h4&gt;&lt;/a&gt;&lt;div&gt;Outer West Durban, KwaZulu-Natal, South Africa&lt;/div&gt;&lt;blockquote&gt;Beautifully renovated. Five rooms [en-suite] lead off your own large central lounge, featuring a 36 foot high vaulted ceiling, offering spacious living, dining, and a conversational lounge area whi...&lt;/blockquote&gt;&lt;/div&gt;&lt;script async=\"\" src=\"https://www.airbnb.com/embeddable/airbnb_jssdk\"&gt;&lt;/script&gt;&lt;/div&gt;[/fusion_text][/one_half][one_half last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][fusion_text]\r\n<h1 style=\"text-align: justify;\">5 BEDROOM FAMILY LODGE</h1>\r\n<h3 style=\"text-align: justify;\">We are a four season lodge, because there’s always something to celebrate… We offer comfort, relaxation and privacy right in the heart of 1000 Hills. The Forest, the Gardens, the Atmosphere all speak to  Rest  &amp; Relaxation.</h3>\r\n[/fusion_text][separator style_type=\"single\" top_margin=\"0\" bottom_margin=\"30\" sep_color=\"#000000\" border_size=\"\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"170px\" alignment=\"left\" class=\"separator-left\" id=\"\"][modal name=\"rates\" title=\"2015 Rates\" size=\"large\" background=\"\" border_color=\"\" show_footer=\"yes\" class=\"\" id=\"\"]\r\n<table style=\"width: 100%;\" cellspacing=\"10\" cellpadding=\"5\">\r\n<tbody>\r\n<tr>\r\n<td colspan=\"2\"><span style=\"font-size: 10pt;\">ALL PRICES INCLUDE VAT </span></td>\r\n</tr>\r\n<tr>\r\n<td colspan=\"2\"><span style=\"font-size: 12pt;\"><strong>Self-Catering / Self-Servicing Accommodation</strong></span></td>\r\n</tr>\r\n<tr>\r\n<td><span style=\"font-size: 12pt;\">Full House - Max 10 persons per lodge</span></td>\r\n<td><span style=\"font-size: 12pt;\"><strong>R3250</strong> per night (R325 per person)</span></td>\r\n</tr>\r\n<tr>\r\n<td><span style=\"font-size: 12pt;\">Single - Max 1 person per room</span></td>\r\n<td><span style=\"font-size: 12pt;\"><strong>R 650</strong> per person per night</span></td>\r\n</tr>\r\n<tr>\r\n<td><span style=\"font-size: 12pt;\">Sharing - Max 2 persons per room</span></td>\r\n<td><span style=\"font-size: 12pt;\"><strong>R 495</strong> per person per night</span></td>\r\n</tr>\r\n<tr>\r\n<td></td>\r\n<td></td>\r\n</tr>\r\n<tr>\r\n<td><strong><span style=\"font-size: 12pt;\">Servicing Options</span></strong></td>\r\n<td></td>\r\n</tr>\r\n<tr>\r\n<td><span style=\"font-size: 12pt;\">Lodge Only Servicing (Optional) </span></td>\r\n<td><span style=\"font-size: 12pt;\"><strong>R30</strong> per person per day - Max <span style=\"font-size: 12pt;\"><strong>R 150 </strong>per day</span></span></td>\r\n</tr>\r\n<tr>\r\n<td><span style=\"font-size: 12pt;\">Lodge &amp; Room Servicing (Optional) </span></td>\r\n<td><span style=\"font-size: 12pt;\"><strong>R50</strong> per person per day - Max <span style=\"font-size: 12pt;\"><strong>R 250 </strong>per day</span></span></td>\r\n</tr>\r\n<tr>\r\n<td></td>\r\n<td></td>\r\n</tr>\r\n<tr>\r\n<td colspan=\"2\"><span style=\"font-size: 12pt;\"><span style=\"font-size: 12pt;\"><strong>Catering Options</strong></span> </span></td>\r\n</tr>\r\n<tr>\r\n<td><span style=\"font-size: 12pt;\"> <span style=\"font-size: 12pt;\">Breakfast (Continental)</span></span></td>\r\n<td><span style=\"font-size: 12pt;\"> <span style=\"font-size: 12pt;\"><strong>R 55</strong> per person</span></span></td>\r\n</tr>\r\n<tr>\r\n<td><span style=\"font-size: 12pt;\"> <span style=\"font-size: 12pt;\">Breakfast (Full English)</span></span></td>\r\n<td><span style=\"font-size: 12pt;\"> <span style=\"font-size: 12pt;\"><strong>R 75</strong> per person</span></span></td>\r\n</tr>\r\n<tr>\r\n<td><span style=\"font-size: 12pt;\"> <span style=\"font-size: 12pt;\">Light Lunch</span></span></td>\r\n<td><span style=\"font-size: 12pt;\">From <span style=\"font-size: 12pt;\"><strong>R 95 </strong>per person</span></span></td>\r\n</tr>\r\n<tr>\r\n<td><span style=\"font-size: 12pt;\"> <span style=\"font-size: 12pt;\">Dinners</span></span></td>\r\n<td><span style=\"font-size: 12pt;\">From <span style=\"font-size: 12pt;\"><strong>R 150 </strong>per person</span></span></td>\r\n</tr>\r\n<tr>\r\n<td></td>\r\n<td></td>\r\n</tr>\r\n<tr>\r\n<td><strong><span style=\"font-size: 12pt;\">Others</span></strong></td>\r\n<td></td>\r\n</tr>\r\n<tr>\r\n<td><span style=\"font-size: 12pt;\">Gate Remote</span></td>\r\n<td><span style=\"font-size: 12pt;\"><strong>R 200 </strong>deposit</span></td>\r\n</tr>\r\n<tr>\r\n<td><span style=\"font-size: 12pt;\">Gas Braai</span></td>\r\n<td><span style=\"font-size: 12pt;\"><strong>R 120 </strong>per day</span></td>\r\n</tr>\r\n<tr>\r\n<td><span style=\"font-size: 12pt;\">Day Visitors / Guests</span></td>\r\n<td><span style=\"font-size: 12pt;\"><strong>R 50 </strong>per person per day</span></td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n\r\n<hr />\r\n\r\n[/modal][button link=\"\" color=\"darkgreen\" size=\"\"  type=\"\" shape=\"\" target=\"_self\" title=\"\" gradient_colors=\"|\" gradient_hover_colors=\"|\" accent_color=\"\" accent_hover_color=\"\" bevel_color=\"\" border_width=\"1px\" icon=\"\" icon_position=\"left\" icon_divider=\"no\" modal=\"rates\" animation_type=\"0\" animation_direction=\"left\" animation_speed=\"1\" alignment=\"\" class=\"\" id=\"\"]2016 RATES[/button][/one_half][/fullwidth][fullwidth background_color=\"#f0f0ed\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"20\" padding_bottom=\"20\" padding_left=\"0px\" padding_right=\"0px\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][one_half last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][fusion_text]\r\n<h3 style=\"text-align: justify;\">Set in the rolling peaks and valleys of a thousand hills surrounded by a canopy of indigenous trees, you will find that horses still have right of way, we certainly offer the best of both worlds, farm and charm coupled with modern amenities that will have you feeling relaxed and rejuvenated.</h3>\r\n<h3 style=\"text-align: justify;\">We know that sometimes you are searching for a romantic getaway or maybe a few days away with old friends. Other times you are searching for a place to host a weekend, family reunion or a business retreat. In addition to nightly room rentals, our lodge is also available for meetings, retreats  and makes the perfect place for a wedding party to stay together and get ready for the big day. Regardless, with our five comfortable and cozy guest bedrooms, multiple garden spaces and hideaways, and a  large private deck  where you can take a nap or read a book we definitely have the room for you!</h3>\r\n<h3 style=\"text-align: justify;\">Evenings are quiet and peaceful taking you far away from the business of city life. This is a unique and memorable country experience. We look forward to having you as a guest!</h3>\r\n[/fusion_text][/one_half][one_half last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][fusion_text]\r\n<h3 style=\"text-align: justify;\">Our lodge has been in our family for years and has recently been beautifully renovated. Five rooms all with en-suite showers lead off your own large central lounge, featuring a 36 foot high vaulted ceiling, offering spacious living, dining, and a bar/conversational lounge area which includes a fitted kitchenette, all adding to a sense of homely comfort. Sumptuous meals can be provided on request and served on the bottom deck at the swimming pool.</h3>\r\n<h3 style=\"text-align: justify;\">Be lulled to sleep by the sound of the waterfall and tinkling stream just outside your window, waking from a peaceful night\'s sleep in a pillow-top bed dressed in luxurious linens to coddle you in ultimate comfort.</h3>\r\n<h3 style=\"text-align: justify;\">Our property boasts many different species of birds and animals. We have a resident otter, a family of wild bush pigs,  a family of rock rabbits, porcupine, little blue duikers, a variety of different frogs and an abundance of bird life, including the occasional snakes that pass through!</h3>\r\n[/fusion_text][/one_half][/fullwidth][fullwidth background_color=\"#f0f0ed\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"20\" padding_bottom=\"20\" padding_left=\"0px\" padding_right=\"0px\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][fusion_text]\r\n<h1 style=\"text-align: center;\">Gallery</h1>\r\n[/fusion_text][separator style_type=\"single\" top_margin=\"\" bottom_margin=\"40\" sep_color=\"#000000\" border_size=\"\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"170px\" alignment=\"\" class=\"\" id=\"\"][one_sixth last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][/one_sixth][two_third last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][fusion_text]\r\n<h3 style=\"text-align: justify;\">The Lodge is open, spacious, comfortable and homely. During hot summer days, sit and bask in the sun on the deck  with one of our  picnic specials. In winter, snuggle up with a good book or challenge one another to a friendly board game in the glassed nook area .</h3>\r\n[/fusion_text][/two_third][one_sixth last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][/one_sixth][/fullwidth][fullwidth background_color=\"#f0f0ed\" background_image=\"http://localhost/assagaylodge/wp-content/uploads/2015/01/Wood_Texture.jpg\" background_parallax=\"fixed\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"30\" padding_bottom=\"10\" padding_left=\"0\" padding_right=\"0\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][recent_works layout=\"grid\" picture_size=\"auto\" boxed_text=\"unboxed\" filters=\"no\" columns=\"3\" column_spacing=\"12\" cat_slug=\"the-lodge\" exclude_cats=\"\" number_posts=\"9\" offset=\"\" excerpt_length=\"35\" strip_html=\"yes\" carousel_layout=\"title_on_rollover\" scroll_items=\"\" autoplay=\"no\" show_nav=\"yes\" mouse_scroll=\"no\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" class=\"\" id=\"\"][/recent_works][/fullwidth][fullwidth background_color=\"#f0f0ed\" background_image=\"\" background_parallax=\"fixed\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"20\" padding_bottom=\"20\" padding_left=\"0px\" padding_right=\"0px\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][fusion_text]\r\n<h1 style=\"text-align: center;\">BEDROOMS</h1>\r\n[/fusion_text][separator style_type=\"single\" top_margin=\"\" bottom_margin=\"20\" sep_color=\"#000000\" border_size=\"\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"170px\" alignment=\"\" class=\"\" id=\"\"][one_sixth last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][/one_sixth][two_third last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][fusion_text]\r\n<h3 style=\"text-align: justify;\">When it comes to our bedrooms we’re proud to say we offer something a little more special. One of five  lovingly and tastefully decorated guest rooms. Soft gray decor soothes the senses providing a peaceful, blissfully comfortable rest from your travels and hectic lives.</h3>\r\n<h3 style=\"text-align: justify;\">Our  bedrooms are spacious, clean, comfortable all en-suite, equipped with either king size or queen size beds. Each room sleeps two guests. The rooms have high ceilings, wall heaters &amp; ceiling fans. Beds all have electric blankets in Winter, 100% cotton percale sheets and thick hyper allergenic microfiber duvets and pillows. All guest rooms are cleaned with organic and green products. Amenities include hairdryers in each room. Three rooms feature King-sized beds  of which two can be  split into two single beds. Two  rooms can therefore be changed into a twin room upon request. Two rooms feature a Queen-sized double bed. These beds cannot be split into twin beds.</h3>\r\n[/fusion_text][/two_third][one_sixth last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][/one_sixth][/fullwidth][fullwidth background_color=\"\" background_image=\"http://localhost/assagaylodge/wp-content/uploads/2015/01/DSC01516-1148-x-764.jpg\" background_parallax=\"fixed\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"center center\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"20\" padding_bottom=\"20\" padding_left=\"0\" padding_right=\"0\" hundred_percent=\"no\" equal_height_columns=\"yes\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][recent_works layout=\"grid\" picture_size=\"auto\" boxed_text=\"unboxed\" filters=\"no\" columns=\"3\" column_spacing=\"12\" cat_slug=\"bedrooms\" exclude_cats=\"\" number_posts=\"6\" offset=\"\" excerpt_length=\"35\" strip_html=\"yes\" carousel_layout=\"title_on_rollover\" scroll_items=\"\" autoplay=\"no\" show_nav=\"yes\" mouse_scroll=\"no\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" class=\"\" id=\"\"][/recent_works][/fullwidth][fullwidth background_color=\"#f0f0ed\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"20\" padding_bottom=\"20\" padding_left=\"0\" padding_right=\"0\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][fusion_text]\r\n<h1 style=\"text-align: center;\">GARDENS</h1>\r\n[/fusion_text][separator style_type=\"single\" top_margin=\"\" bottom_margin=\"20\" sep_color=\"#000000\" border_size=\"\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"170px\" alignment=\"\" class=\"\" id=\"\"][one_sixth last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][/one_sixth][two_third last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][fusion_text]\r\n<h3 style=\"text-align: justify;\">The garden is large and offers many secluded spots to lose yourself in a book with a glass of wine underneath the shade of a tree, listening to the sounds of the birds and smelling the beautiful flowers.</h3>\r\n[/fusion_text][/two_third][one_sixth last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][/one_sixth][recent_works layout=\"grid\" picture_size=\"auto\" boxed_text=\"boxed\" filters=\"no\" columns=\"3\" column_spacing=\"12\" cat_slug=\"gardens\" exclude_cats=\"\" number_posts=\"9\" offset=\"\" excerpt_length=\"35\" strip_html=\"yes\" carousel_layout=\"title_on_rollover\" scroll_items=\"\" autoplay=\"no\" show_nav=\"yes\" mouse_scroll=\"no\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" class=\"\" id=\"\"][/recent_works][/fullwidth][fullwidth background_color=\"#ffffff\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"65px\" padding_bottom=\"65px\" padding_left=\"0px\" padding_right=\"0px\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][button link=\"http://localhost/assagaylodge/book-now/\" color=\"default\" size=\"xlarge\"  type=\"3d\" shape=\"round\" target=\"_self\" title=\"\" gradient_colors=\"#f0f0ed|#f0f0ed\" gradient_hover_colors=\"#6666a4|#6666a4\" accent_color=\"#ffffff\" accent_hover_color=\"#ffffff\" bevel_color=\"\" border_width=\"0px\" icon=\"\" icon_position=\"left\" icon_divider=\"no\" modal=\"\" animation_type=\"0\" animation_direction=\"left\" animation_speed=\"1\" alignment=\"center\" class=\"\" id=\"\"]Make A Reservation Enquiry[/button][/fullwidth]', 'Home', '', 'inherit', 'closed', 'closed', '', '7-revision-v1', '', '', '2016-05-09 16:18:08', '2016-05-09 14:18:08', '', 7, 'http://msla.co.za/lodge/7-revision-v1/', 0, 'revision', '', 0);
INSERT INTO `wp_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(1208, 1, '2016-05-09 16:24:00', '2016-05-09 14:24:00', '[fullwidth background_color=\"#f0f0ed\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"20\" padding_bottom=\"20\" padding_left=\"0px\" padding_right=\"0px\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][one_half last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][separator style_type=\"single\" top_margin=\"0\" bottom_margin=\"30\" sep_color=\"#000000\" border_size=\"\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"170px\" alignment=\"center\" class=\"separator-left\" id=\"\"][fusion_text]\r\n<h1 style=\"text-align: center;\">No Fancy Star Grading\r\nNo Room Service\r\nNo Bed Turn-downs\r\nNo Rose Petals in the Bath water</h1>\r\n<h1 style=\"text-align: center;\">... just old fashioned homely comforts</h1>\r\n[/fusion_text][fusion_code]PGRpdiBjbGFzcz0iYWlyYm5iLWVtYmVkLWZyYW1lIiBkYXRhLWNpdHktbGluay1pbmRleD0iMSIgZGF0YS1lYj0iMTQ2Mjc4OTI2MF9ERnN2NHlQYXNGb0dyelZHIiBkYXRhLWV1PSJQenl3NEcxSTJjT3k1eU9lcXM3S0pwM1Y4d0hwV1VCeFVEeVZFMzFGTGgyb3dMNTJMTnMzN2ptNDhKUlEgYURHb0dMT2N1U3kvNVJXd2hhcFBsSzhpNVdBYXdOcDBVaFEyeWRCU3d5Q3Nld2Q2OWVSc0Jud1BTWGVlIE5heWpFSkRyVUFqcmlteU9yWWV1cDFFQ2xXMUtGci9xR3pYSnZFMHYyK1lMdDRtMWc5OEttV1B3Y0tMdCA3Q25LZTcxQm1pMGk2WGpiUDRxQnJuODNsTCtBREtoVlhVWGZjRDhHc1UzeE4xQXVPb3k5OXFpQWRsRmQgSXE2NXF4OXBoV1BSbWhLVUlkMmtjMHNURnc2TjQvZTdLTFFiWWhqMnlyNm9nNm5aZG44VjB0emdaVVZ3IE0ySFpmYmJjVVM3OGk5YkJjeWJFZ0JYc0xTYURpS25jWTdBUDErdFo3QT09ICIgZGF0YS1lbWJlZC1zb3VyY2UtdHlwZT0iYmFkZ2VfY2VudGVyIiBkYXRhLXRyaWdnZXItc291cmNlLXR5cGU9ImJhZGdlX2NlbnRlciIgZGF0YS1saXN0aW5nLWlkPSIxMTgyMTA2MCIgZGF0YS1waG90by11cmw9Imh0dHBzOi8vYTIubXVzY2FjaGUuY29tL2ltL3BpY3R1cmVzLzdhN2RjOTEyLWQ2MzgtNDhmZi1hMTgwLWIyOGZmZDdlYTI0ZC5qcGc/YWtpX3BvbGljeT14X2xhcmdlIiBkYXRhLXZpZXc9Imxpc3RpbmdfZnJhbWUiIHN0eWxlPSJtYXgtd2lkdGg6NjAwcHg7bWFyZ2luOmF1dG87dHJhbnNpdGlvbjpoZWlnaHQgLjJzOyI+PGltZyBzcmM9Imh0dHBzOi8vYTIubXVzY2FjaGUuY29tL2ltL3BpY3R1cmVzLzdhN2RjOTEyLWQ2MzgtNDhmZi1hMTgwLWIyOGZmZDdlYTI0ZC5qcGc/YWtpX3BvbGljeT14X2xhcmdlIiBzdHlsZT0ibWF4LXdpZHRoOjEwMCU7IiBhbHQ9IiIvPjxkaXY+PGEgaHJlZj0iaHR0cHM6Ly93d3cuYWlyYm5iLmNvbS9yb29tcy8xMTgyMTA2MCIgcmVsPSJub2ZvbGxvdyI+PGg0PkFzc2FnYXkgRm9yZXN0IExvZGdlPC9oND48L2E+PGRpdj5PdXRlciBXZXN0IER1cmJhbiwgS3dhWnVsdS1OYXRhbCwgU291dGggQWZyaWNhPC9kaXY+PGJsb2NrcXVvdGU+QmVhdXRpZnVsbHkgcmVub3ZhdGVkLiBGaXZlIHJvb21zIFtlbi1zdWl0ZV0gbGVhZCBvZmYgeW91ciBvd24gbGFyZ2UgY2VudHJhbCBsb3VuZ2UsIGZlYXR1cmluZyBhIDM2IGZvb3QgaGlnaCB2YXVsdGVkIGNlaWxpbmcsIG9mZmVyaW5nIHNwYWNpb3VzIGxpdmluZywgZGluaW5nLCBhbmQgYSBjb252ZXJzYXRpb25hbCBsb3VuZ2UgYXJlYSB3aGkuLi48L2Jsb2NrcXVvdGU+PC9kaXY+PHNjcmlwdCBhc3luYz0iIiBzcmM9Imh0dHBzOi8vd3d3LmFpcmJuYi5jb20vZW1iZWRkYWJsZS9haXJibmJfanNzZGsiPjwvc2NyaXB0PjwvZGl2Pg==[/fusion_code][/one_half][one_half last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][fusion_text]\r\n<h1 style=\"text-align: justify;\">5 BEDROOM FAMILY LODGE</h1>\r\n<h3 style=\"text-align: justify;\">We are a four season lodge, because there’s always something to celebrate… We offer comfort, relaxation and privacy right in the heart of 1000 Hills. The Forest, the Gardens, the Atmosphere all speak to  Rest  &amp; Relaxation.</h3>\r\n[/fusion_text][separator style_type=\"single\" top_margin=\"0\" bottom_margin=\"30\" sep_color=\"#000000\" border_size=\"\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"170px\" alignment=\"left\" class=\"separator-left\" id=\"\"][modal name=\"rates\" title=\"2015 Rates\" size=\"large\" background=\"\" border_color=\"\" show_footer=\"yes\" class=\"\" id=\"\"]\r\n<table style=\"width: 100%;\" cellspacing=\"10\" cellpadding=\"5\">\r\n<tbody>\r\n<tr>\r\n<td colspan=\"2\"><span style=\"font-size: 10pt;\">ALL PRICES INCLUDE VAT </span></td>\r\n</tr>\r\n<tr>\r\n<td colspan=\"2\"><span style=\"font-size: 12pt;\"><strong>Self-Catering / Self-Servicing Accommodation</strong></span></td>\r\n</tr>\r\n<tr>\r\n<td><span style=\"font-size: 12pt;\">Full House - Max 10 persons per lodge</span></td>\r\n<td><span style=\"font-size: 12pt;\"><strong>R3250</strong> per night (R325 per person)</span></td>\r\n</tr>\r\n<tr>\r\n<td><span style=\"font-size: 12pt;\">Single - Max 1 person per room</span></td>\r\n<td><span style=\"font-size: 12pt;\"><strong>R 650</strong> per person per night</span></td>\r\n</tr>\r\n<tr>\r\n<td><span style=\"font-size: 12pt;\">Sharing - Max 2 persons per room</span></td>\r\n<td><span style=\"font-size: 12pt;\"><strong>R 495</strong> per person per night</span></td>\r\n</tr>\r\n<tr>\r\n<td></td>\r\n<td></td>\r\n</tr>\r\n<tr>\r\n<td><strong><span style=\"font-size: 12pt;\">Servicing Options</span></strong></td>\r\n<td></td>\r\n</tr>\r\n<tr>\r\n<td><span style=\"font-size: 12pt;\">Lodge Only Servicing (Optional) </span></td>\r\n<td><span style=\"font-size: 12pt;\"><strong>R30</strong> per person per day - Max <span style=\"font-size: 12pt;\"><strong>R 150 </strong>per day</span></span></td>\r\n</tr>\r\n<tr>\r\n<td><span style=\"font-size: 12pt;\">Lodge &amp; Room Servicing (Optional) </span></td>\r\n<td><span style=\"font-size: 12pt;\"><strong>R50</strong> per person per day - Max <span style=\"font-size: 12pt;\"><strong>R 250 </strong>per day</span></span></td>\r\n</tr>\r\n<tr>\r\n<td></td>\r\n<td></td>\r\n</tr>\r\n<tr>\r\n<td colspan=\"2\"><span style=\"font-size: 12pt;\"><span style=\"font-size: 12pt;\"><strong>Catering Options</strong></span> </span></td>\r\n</tr>\r\n<tr>\r\n<td><span style=\"font-size: 12pt;\"> <span style=\"font-size: 12pt;\">Breakfast (Continental)</span></span></td>\r\n<td><span style=\"font-size: 12pt;\"> <span style=\"font-size: 12pt;\"><strong>R 55</strong> per person</span></span></td>\r\n</tr>\r\n<tr>\r\n<td><span style=\"font-size: 12pt;\"> <span style=\"font-size: 12pt;\">Breakfast (Full English)</span></span></td>\r\n<td><span style=\"font-size: 12pt;\"> <span style=\"font-size: 12pt;\"><strong>R 75</strong> per person</span></span></td>\r\n</tr>\r\n<tr>\r\n<td><span style=\"font-size: 12pt;\"> <span style=\"font-size: 12pt;\">Light Lunch</span></span></td>\r\n<td><span style=\"font-size: 12pt;\">From <span style=\"font-size: 12pt;\"><strong>R 95 </strong>per person</span></span></td>\r\n</tr>\r\n<tr>\r\n<td><span style=\"font-size: 12pt;\"> <span style=\"font-size: 12pt;\">Dinners</span></span></td>\r\n<td><span style=\"font-size: 12pt;\">From <span style=\"font-size: 12pt;\"><strong>R 150 </strong>per person</span></span></td>\r\n</tr>\r\n<tr>\r\n<td></td>\r\n<td></td>\r\n</tr>\r\n<tr>\r\n<td><strong><span style=\"font-size: 12pt;\">Others</span></strong></td>\r\n<td></td>\r\n</tr>\r\n<tr>\r\n<td><span style=\"font-size: 12pt;\">Gate Remote</span></td>\r\n<td><span style=\"font-size: 12pt;\"><strong>R 200 </strong>deposit</span></td>\r\n</tr>\r\n<tr>\r\n<td><span style=\"font-size: 12pt;\">Gas Braai</span></td>\r\n<td><span style=\"font-size: 12pt;\"><strong>R 120 </strong>per day</span></td>\r\n</tr>\r\n<tr>\r\n<td><span style=\"font-size: 12pt;\">Day Visitors / Guests</span></td>\r\n<td><span style=\"font-size: 12pt;\"><strong>R 50 </strong>per person per day</span></td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n\r\n<hr />\r\n\r\n[/modal][button link=\"\" color=\"darkgreen\" size=\"\"  type=\"\" shape=\"\" target=\"_self\" title=\"\" gradient_colors=\"|\" gradient_hover_colors=\"|\" accent_color=\"\" accent_hover_color=\"\" bevel_color=\"\" border_width=\"1px\" icon=\"\" icon_position=\"left\" icon_divider=\"no\" modal=\"rates\" animation_type=\"0\" animation_direction=\"left\" animation_speed=\"1\" alignment=\"\" class=\"\" id=\"\"]2016 RATES[/button][/one_half][/fullwidth][fullwidth background_color=\"#f0f0ed\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"20\" padding_bottom=\"20\" padding_left=\"0px\" padding_right=\"0px\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][one_half last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][fusion_text]\r\n<h3 style=\"text-align: justify;\">Set in the rolling peaks and valleys of a thousand hills surrounded by a canopy of indigenous trees, you will find that horses still have right of way, we certainly offer the best of both worlds, farm and charm coupled with modern amenities that will have you feeling relaxed and rejuvenated.</h3>\r\n<h3 style=\"text-align: justify;\">We know that sometimes you are searching for a romantic getaway or maybe a few days away with old friends. Other times you are searching for a place to host a weekend, family reunion or a business retreat. In addition to nightly room rentals, our lodge is also available for meetings, retreats  and makes the perfect place for a wedding party to stay together and get ready for the big day. Regardless, with our five comfortable and cozy guest bedrooms, multiple garden spaces and hideaways, and a  large private deck  where you can take a nap or read a book we definitely have the room for you!</h3>\r\n<h3 style=\"text-align: justify;\">Evenings are quiet and peaceful taking you far away from the business of city life. This is a unique and memorable country experience. We look forward to having you as a guest!</h3>\r\n[/fusion_text][/one_half][one_half last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][fusion_text]\r\n<h3 style=\"text-align: justify;\">Our lodge has been in our family for years and has recently been beautifully renovated. Five rooms all with en-suite showers lead off your own large central lounge, featuring a 36 foot high vaulted ceiling, offering spacious living, dining, and a bar/conversational lounge area which includes a fitted kitchenette, all adding to a sense of homely comfort. Sumptuous meals can be provided on request and served on the bottom deck at the swimming pool.</h3>\r\n<h3 style=\"text-align: justify;\">Be lulled to sleep by the sound of the waterfall and tinkling stream just outside your window, waking from a peaceful night\'s sleep in a pillow-top bed dressed in luxurious linens to coddle you in ultimate comfort.</h3>\r\n<h3 style=\"text-align: justify;\">Our property boasts many different species of birds and animals. We have a resident otter, a family of wild bush pigs,  a family of rock rabbits, porcupine, little blue duikers, a variety of different frogs and an abundance of bird life, including the occasional snakes that pass through!</h3>\r\n[/fusion_text][/one_half][/fullwidth][fullwidth background_color=\"#f0f0ed\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"20\" padding_bottom=\"20\" padding_left=\"0px\" padding_right=\"0px\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][fusion_text]\r\n<h1 style=\"text-align: center;\">Gallery</h1>\r\n[/fusion_text][separator style_type=\"single\" top_margin=\"\" bottom_margin=\"40\" sep_color=\"#000000\" border_size=\"\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"170px\" alignment=\"\" class=\"\" id=\"\"][one_sixth last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][/one_sixth][two_third last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][fusion_text]\r\n<h3 style=\"text-align: justify;\">The Lodge is open, spacious, comfortable and homely. During hot summer days, sit and bask in the sun on the deck  with one of our  picnic specials. In winter, snuggle up with a good book or challenge one another to a friendly board game in the glassed nook area .</h3>\r\n[/fusion_text][/two_third][one_sixth last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][/one_sixth][/fullwidth][fullwidth background_color=\"#f0f0ed\" background_image=\"http://localhost/assagaylodge/wp-content/uploads/2015/01/Wood_Texture.jpg\" background_parallax=\"fixed\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"30\" padding_bottom=\"10\" padding_left=\"0\" padding_right=\"0\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][recent_works layout=\"grid\" picture_size=\"auto\" boxed_text=\"unboxed\" filters=\"no\" columns=\"3\" column_spacing=\"12\" cat_slug=\"the-lodge\" exclude_cats=\"\" number_posts=\"9\" offset=\"\" excerpt_length=\"35\" strip_html=\"yes\" carousel_layout=\"title_on_rollover\" scroll_items=\"\" autoplay=\"no\" show_nav=\"yes\" mouse_scroll=\"no\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" class=\"\" id=\"\"][/recent_works][/fullwidth][fullwidth background_color=\"#f0f0ed\" background_image=\"\" background_parallax=\"fixed\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"20\" padding_bottom=\"20\" padding_left=\"0px\" padding_right=\"0px\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][fusion_text]\r\n<h1 style=\"text-align: center;\">BEDROOMS</h1>\r\n[/fusion_text][separator style_type=\"single\" top_margin=\"\" bottom_margin=\"20\" sep_color=\"#000000\" border_size=\"\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"170px\" alignment=\"\" class=\"\" id=\"\"][one_sixth last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][/one_sixth][two_third last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][fusion_text]\r\n<h3 style=\"text-align: justify;\">When it comes to our bedrooms we’re proud to say we offer something a little more special. One of five  lovingly and tastefully decorated guest rooms. Soft gray decor soothes the senses providing a peaceful, blissfully comfortable rest from your travels and hectic lives.</h3>\r\n<h3 style=\"text-align: justify;\">Our  bedrooms are spacious, clean, comfortable all en-suite, equipped with either king size or queen size beds. Each room sleeps two guests. The rooms have high ceilings, wall heaters &amp; ceiling fans. Beds all have electric blankets in Winter, 100% cotton percale sheets and thick hyper allergenic microfiber duvets and pillows. All guest rooms are cleaned with organic and green products. Amenities include hairdryers in each room. Three rooms feature King-sized beds  of which two can be  split into two single beds. Two  rooms can therefore be changed into a twin room upon request. Two rooms feature a Queen-sized double bed. These beds cannot be split into twin beds.</h3>\r\n[/fusion_text][/two_third][one_sixth last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][/one_sixth][/fullwidth][fullwidth background_color=\"\" background_image=\"http://localhost/assagaylodge/wp-content/uploads/2015/01/DSC01516-1148-x-764.jpg\" background_parallax=\"fixed\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"center center\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"20\" padding_bottom=\"20\" padding_left=\"0\" padding_right=\"0\" hundred_percent=\"no\" equal_height_columns=\"yes\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][recent_works layout=\"grid\" picture_size=\"auto\" boxed_text=\"unboxed\" filters=\"no\" columns=\"3\" column_spacing=\"12\" cat_slug=\"bedrooms\" exclude_cats=\"\" number_posts=\"6\" offset=\"\" excerpt_length=\"35\" strip_html=\"yes\" carousel_layout=\"title_on_rollover\" scroll_items=\"\" autoplay=\"no\" show_nav=\"yes\" mouse_scroll=\"no\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" class=\"\" id=\"\"][/recent_works][/fullwidth][fullwidth background_color=\"#f0f0ed\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"20\" padding_bottom=\"20\" padding_left=\"0\" padding_right=\"0\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][fusion_text]\r\n<h1 style=\"text-align: center;\">GARDENS</h1>\r\n[/fusion_text][separator style_type=\"single\" top_margin=\"\" bottom_margin=\"20\" sep_color=\"#000000\" border_size=\"\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"170px\" alignment=\"\" class=\"\" id=\"\"][one_sixth last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][/one_sixth][two_third last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][fusion_text]\r\n<h3 style=\"text-align: justify;\">The garden is large and offers many secluded spots to lose yourself in a book with a glass of wine underneath the shade of a tree, listening to the sounds of the birds and smelling the beautiful flowers.</h3>\r\n[/fusion_text][/two_third][one_sixth last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][/one_sixth][recent_works layout=\"grid\" picture_size=\"auto\" boxed_text=\"boxed\" filters=\"no\" columns=\"3\" column_spacing=\"12\" cat_slug=\"gardens\" exclude_cats=\"\" number_posts=\"9\" offset=\"\" excerpt_length=\"35\" strip_html=\"yes\" carousel_layout=\"title_on_rollover\" scroll_items=\"\" autoplay=\"no\" show_nav=\"yes\" mouse_scroll=\"no\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" class=\"\" id=\"\"][/recent_works][/fullwidth][fullwidth background_color=\"#ffffff\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"65px\" padding_bottom=\"65px\" padding_left=\"0px\" padding_right=\"0px\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][button link=\"http://localhost/assagaylodge/book-now/\" color=\"default\" size=\"xlarge\"  type=\"3d\" shape=\"round\" target=\"_self\" title=\"\" gradient_colors=\"#f0f0ed|#f0f0ed\" gradient_hover_colors=\"#6666a4|#6666a4\" accent_color=\"#ffffff\" accent_hover_color=\"#ffffff\" bevel_color=\"\" border_width=\"0px\" icon=\"\" icon_position=\"left\" icon_divider=\"no\" modal=\"\" animation_type=\"0\" animation_direction=\"left\" animation_speed=\"1\" alignment=\"center\" class=\"\" id=\"\"]Make A Reservation Enquiry[/button][/fullwidth][fusion_code]Q2xpY2sgZWRpdCBidXR0b24gdG8gY2hhbmdlIHRoaXMgY29kZS4=[/fusion_code]', 'Home', '', 'inherit', 'closed', 'closed', '', '7-revision-v1', '', '', '2016-05-09 16:24:00', '2016-05-09 14:24:00', '', 7, 'http://msla.co.za/lodge/7-revision-v1/', 0, 'revision', '', 0),
(1209, 1, '2016-05-09 16:37:16', '2016-05-09 14:37:16', '[fullwidth background_color=\"#f0f0ed\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"20\" padding_bottom=\"20\" padding_left=\"0px\" padding_right=\"0px\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][one_half last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][separator style_type=\"single\" top_margin=\"0\" bottom_margin=\"30\" sep_color=\"#000000\" border_size=\"\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"170px\" alignment=\"center\" class=\"separator-left\" id=\"\"][fusion_text]\r\n<h1 style=\"text-align: center;\">No Fancy Star Grading\r\nNo Room Service\r\nNo Bed Turn-downs\r\nNo Rose Petals in the Bath water</h1>\r\n<h1 style=\"text-align: center;\">... just old fashioned homely comforts</h1>\r\n[/fusion_text][/one_half][one_half last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][fusion_text]\r\n<h1 style=\"text-align: justify;\">5 BEDROOM FAMILY LODGE</h1>\r\n<h3 style=\"text-align: justify;\">We are a four season lodge, because there’s always something to celebrate… We offer comfort, relaxation and privacy right in the heart of 1000 Hills. The Forest, the Gardens, the Atmosphere all speak to  Rest  &amp; Relaxation.</h3>\r\n[/fusion_text][separator style_type=\"single\" top_margin=\"0\" bottom_margin=\"30\" sep_color=\"#000000\" border_size=\"\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"170px\" alignment=\"left\" class=\"separator-left\" id=\"\"][modal name=\"rates\" title=\"2015 Rates\" size=\"large\" background=\"\" border_color=\"\" show_footer=\"yes\" class=\"\" id=\"\"]\r\n<table style=\"width: 100%;\" cellspacing=\"10\" cellpadding=\"5\">\r\n<tbody>\r\n<tr>\r\n<td colspan=\"2\"><span style=\"font-size: 10pt;\">ALL PRICES INCLUDE VAT </span></td>\r\n</tr>\r\n<tr>\r\n<td colspan=\"2\"><span style=\"font-size: 12pt;\"><strong>Self-Catering / Self-Servicing Accommodation</strong></span></td>\r\n</tr>\r\n<tr>\r\n<td><span style=\"font-size: 12pt;\">Full House - Max 10 persons per lodge</span></td>\r\n<td><span style=\"font-size: 12pt;\"><strong>R3250</strong> per night (R325 per person)</span></td>\r\n</tr>\r\n<tr>\r\n<td><span style=\"font-size: 12pt;\">Single - Max 1 person per room</span></td>\r\n<td><span style=\"font-size: 12pt;\"><strong>R 650</strong> per person per night</span></td>\r\n</tr>\r\n<tr>\r\n<td><span style=\"font-size: 12pt;\">Sharing - Max 2 persons per room</span></td>\r\n<td><span style=\"font-size: 12pt;\"><strong>R 495</strong> per person per night</span></td>\r\n</tr>\r\n<tr>\r\n<td></td>\r\n<td></td>\r\n</tr>\r\n<tr>\r\n<td><strong><span style=\"font-size: 12pt;\">Servicing Options</span></strong></td>\r\n<td></td>\r\n</tr>\r\n<tr>\r\n<td><span style=\"font-size: 12pt;\">Lodge Only Servicing (Optional) </span></td>\r\n<td><span style=\"font-size: 12pt;\"><strong>R30</strong> per person per day - Max <span style=\"font-size: 12pt;\"><strong>R 150 </strong>per day</span></span></td>\r\n</tr>\r\n<tr>\r\n<td><span style=\"font-size: 12pt;\">Lodge &amp; Room Servicing (Optional) </span></td>\r\n<td><span style=\"font-size: 12pt;\"><strong>R50</strong> per person per day - Max <span style=\"font-size: 12pt;\"><strong>R 250 </strong>per day</span></span></td>\r\n</tr>\r\n<tr>\r\n<td></td>\r\n<td></td>\r\n</tr>\r\n<tr>\r\n<td colspan=\"2\"><span style=\"font-size: 12pt;\"><span style=\"font-size: 12pt;\"><strong>Catering Options</strong></span> </span></td>\r\n</tr>\r\n<tr>\r\n<td><span style=\"font-size: 12pt;\"> <span style=\"font-size: 12pt;\">Breakfast (Continental)</span></span></td>\r\n<td><span style=\"font-size: 12pt;\"> <span style=\"font-size: 12pt;\"><strong>R 55</strong> per person</span></span></td>\r\n</tr>\r\n<tr>\r\n<td><span style=\"font-size: 12pt;\"> <span style=\"font-size: 12pt;\">Breakfast (Full English)</span></span></td>\r\n<td><span style=\"font-size: 12pt;\"> <span style=\"font-size: 12pt;\"><strong>R 75</strong> per person</span></span></td>\r\n</tr>\r\n<tr>\r\n<td><span style=\"font-size: 12pt;\"> <span style=\"font-size: 12pt;\">Light Lunch</span></span></td>\r\n<td><span style=\"font-size: 12pt;\">From <span style=\"font-size: 12pt;\"><strong>R 95 </strong>per person</span></span></td>\r\n</tr>\r\n<tr>\r\n<td><span style=\"font-size: 12pt;\"> <span style=\"font-size: 12pt;\">Dinners</span></span></td>\r\n<td><span style=\"font-size: 12pt;\">From <span style=\"font-size: 12pt;\"><strong>R 150 </strong>per person</span></span></td>\r\n</tr>\r\n<tr>\r\n<td></td>\r\n<td></td>\r\n</tr>\r\n<tr>\r\n<td><strong><span style=\"font-size: 12pt;\">Others</span></strong></td>\r\n<td></td>\r\n</tr>\r\n<tr>\r\n<td><span style=\"font-size: 12pt;\">Gate Remote</span></td>\r\n<td><span style=\"font-size: 12pt;\"><strong>R 200 </strong>deposit</span></td>\r\n</tr>\r\n<tr>\r\n<td><span style=\"font-size: 12pt;\">Gas Braai</span></td>\r\n<td><span style=\"font-size: 12pt;\"><strong>R 120 </strong>per day</span></td>\r\n</tr>\r\n<tr>\r\n<td><span style=\"font-size: 12pt;\">Day Visitors / Guests</span></td>\r\n<td><span style=\"font-size: 12pt;\"><strong>R 50 </strong>per person per day</span></td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n\r\n<hr />\r\n\r\n[/modal][button link=\"\" color=\"darkgreen\" size=\"\"  type=\"\" shape=\"\" target=\"_self\" title=\"\" gradient_colors=\"|\" gradient_hover_colors=\"|\" accent_color=\"\" accent_hover_color=\"\" bevel_color=\"\" border_width=\"1px\" icon=\"\" icon_position=\"left\" icon_divider=\"no\" modal=\"rates\" animation_type=\"0\" animation_direction=\"left\" animation_speed=\"1\" alignment=\"\" class=\"\" id=\"\"]2016 RATES[/button][/one_half][/fullwidth][fullwidth background_color=\"#f0f0ed\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"20\" padding_bottom=\"20\" padding_left=\"0px\" padding_right=\"0px\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][one_half last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][fusion_text]\r\n<h3 style=\"text-align: justify;\">Set in the rolling peaks and valleys of a thousand hills surrounded by a canopy of indigenous trees, you will find that horses still have right of way, we certainly offer the best of both worlds, farm and charm coupled with modern amenities that will have you feeling relaxed and rejuvenated.</h3>\r\n<h3 style=\"text-align: justify;\">We know that sometimes you are searching for a romantic getaway or maybe a few days away with old friends. Other times you are searching for a place to host a weekend, family reunion or a business retreat. In addition to nightly room rentals, our lodge is also available for meetings, retreats  and makes the perfect place for a wedding party to stay together and get ready for the big day. Regardless, with our five comfortable and cozy guest bedrooms, multiple garden spaces and hideaways, and a  large private deck  where you can take a nap or read a book we definitely have the room for you!</h3>\r\n<h3 style=\"text-align: justify;\">Evenings are quiet and peaceful taking you far away from the business of city life. This is a unique and memorable country experience. We look forward to having you as a guest!</h3>\r\n[/fusion_text][/one_half][one_half last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][fusion_text]\r\n<h3 style=\"text-align: justify;\">Our lodge has been in our family for years and has recently been beautifully renovated. Five rooms all with en-suite showers lead off your own large central lounge, featuring a 36 foot high vaulted ceiling, offering spacious living, dining, and a bar/conversational lounge area which includes a fitted kitchenette, all adding to a sense of homely comfort. Sumptuous meals can be provided on request and served on the bottom deck at the swimming pool.</h3>\r\n<h3 style=\"text-align: justify;\">Be lulled to sleep by the sound of the waterfall and tinkling stream just outside your window, waking from a peaceful night\'s sleep in a pillow-top bed dressed in luxurious linens to coddle you in ultimate comfort.</h3>\r\n<h3 style=\"text-align: justify;\">Our property boasts many different species of birds and animals. We have a resident otter, a family of wild bush pigs,  a family of rock rabbits, porcupine, little blue duikers, a variety of different frogs and an abundance of bird life, including the occasional snakes that pass through!</h3>\r\n[/fusion_text][/one_half][/fullwidth][fullwidth background_color=\"#f0f0ed\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"20\" padding_bottom=\"20\" padding_left=\"0px\" padding_right=\"0px\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][fusion_text]\r\n<h1 style=\"text-align: center;\">Gallery</h1>\r\n[/fusion_text][separator style_type=\"single\" top_margin=\"\" bottom_margin=\"40\" sep_color=\"#000000\" border_size=\"\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"170px\" alignment=\"\" class=\"\" id=\"\"][one_sixth last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][/one_sixth][two_third last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][fusion_text]\r\n<h3 style=\"text-align: justify;\">The Lodge is open, spacious, comfortable and homely. During hot summer days, sit and bask in the sun on the deck  with one of our  picnic specials. In winter, snuggle up with a good book or challenge one another to a friendly board game in the glassed nook area .</h3>\r\n[/fusion_text][/two_third][one_sixth last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][/one_sixth][/fullwidth][fullwidth background_color=\"#f0f0ed\" background_image=\"http://localhost/assagaylodge/wp-content/uploads/2015/01/Wood_Texture.jpg\" background_parallax=\"fixed\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"30\" padding_bottom=\"10\" padding_left=\"0\" padding_right=\"0\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][recent_works layout=\"grid\" picture_size=\"auto\" boxed_text=\"unboxed\" filters=\"no\" columns=\"3\" column_spacing=\"12\" cat_slug=\"the-lodge\" exclude_cats=\"\" number_posts=\"9\" offset=\"\" excerpt_length=\"35\" strip_html=\"yes\" carousel_layout=\"title_on_rollover\" scroll_items=\"\" autoplay=\"no\" show_nav=\"yes\" mouse_scroll=\"no\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" class=\"\" id=\"\"][/recent_works][/fullwidth][fullwidth background_color=\"#f0f0ed\" background_image=\"\" background_parallax=\"fixed\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"20\" padding_bottom=\"20\" padding_left=\"0px\" padding_right=\"0px\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][fusion_text]\r\n<h1 style=\"text-align: center;\">BEDROOMS</h1>\r\n[/fusion_text][separator style_type=\"single\" top_margin=\"\" bottom_margin=\"20\" sep_color=\"#000000\" border_size=\"\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"170px\" alignment=\"\" class=\"\" id=\"\"][one_sixth last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][/one_sixth][two_third last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][fusion_text]\r\n<h3 style=\"text-align: justify;\">When it comes to our bedrooms we’re proud to say we offer something a little more special. One of five  lovingly and tastefully decorated guest rooms. Soft gray decor soothes the senses providing a peaceful, blissfully comfortable rest from your travels and hectic lives.</h3>\r\n<h3 style=\"text-align: justify;\">Our  bedrooms are spacious, clean, comfortable all en-suite, equipped with either king size or queen size beds. Each room sleeps two guests. The rooms have high ceilings, wall heaters &amp; ceiling fans. Beds all have electric blankets in Winter, 100% cotton percale sheets and thick hyper allergenic microfiber duvets and pillows. All guest rooms are cleaned with organic and green products. Amenities include hairdryers in each room. Three rooms feature King-sized beds  of which two can be  split into two single beds. Two  rooms can therefore be changed into a twin room upon request. Two rooms feature a Queen-sized double bed. These beds cannot be split into twin beds.</h3>\r\n[/fusion_text][/two_third][one_sixth last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][/one_sixth][/fullwidth][fullwidth background_color=\"\" background_image=\"http://localhost/assagaylodge/wp-content/uploads/2015/01/DSC01516-1148-x-764.jpg\" background_parallax=\"fixed\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"center center\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"20\" padding_bottom=\"20\" padding_left=\"0\" padding_right=\"0\" hundred_percent=\"no\" equal_height_columns=\"yes\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][recent_works layout=\"grid\" picture_size=\"auto\" boxed_text=\"unboxed\" filters=\"no\" columns=\"3\" column_spacing=\"12\" cat_slug=\"bedrooms\" exclude_cats=\"\" number_posts=\"6\" offset=\"\" excerpt_length=\"35\" strip_html=\"yes\" carousel_layout=\"title_on_rollover\" scroll_items=\"\" autoplay=\"no\" show_nav=\"yes\" mouse_scroll=\"no\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" class=\"\" id=\"\"][/recent_works][/fullwidth][fullwidth background_color=\"#f0f0ed\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"20\" padding_bottom=\"20\" padding_left=\"0\" padding_right=\"0\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][fusion_text]\r\n<h1 style=\"text-align: center;\">GARDENS</h1>\r\n[/fusion_text][separator style_type=\"single\" top_margin=\"\" bottom_margin=\"20\" sep_color=\"#000000\" border_size=\"\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"170px\" alignment=\"\" class=\"\" id=\"\"][one_sixth last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][/one_sixth][two_third last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][fusion_text]\r\n<h3 style=\"text-align: justify;\">The garden is large and offers many secluded spots to lose yourself in a book with a glass of wine underneath the shade of a tree, listening to the sounds of the birds and smelling the beautiful flowers.</h3>\r\n[/fusion_text][/two_third][one_sixth last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][/one_sixth][recent_works layout=\"grid\" picture_size=\"auto\" boxed_text=\"boxed\" filters=\"no\" columns=\"3\" column_spacing=\"12\" cat_slug=\"gardens\" exclude_cats=\"\" number_posts=\"9\" offset=\"\" excerpt_length=\"35\" strip_html=\"yes\" carousel_layout=\"title_on_rollover\" scroll_items=\"\" autoplay=\"no\" show_nav=\"yes\" mouse_scroll=\"no\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" class=\"\" id=\"\"][/recent_works][/fullwidth][fullwidth background_color=\"#ffffff\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"65px\" padding_bottom=\"65px\" padding_left=\"0px\" padding_right=\"0px\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][button link=\"http://localhost/assagaylodge/book-now/\" color=\"default\" size=\"xlarge\"  type=\"3d\" shape=\"round\" target=\"_self\" title=\"\" gradient_colors=\"#f0f0ed|#f0f0ed\" gradient_hover_colors=\"#6666a4|#6666a4\" accent_color=\"#ffffff\" accent_hover_color=\"#ffffff\" bevel_color=\"\" border_width=\"0px\" icon=\"\" icon_position=\"left\" icon_divider=\"no\" modal=\"\" animation_type=\"0\" animation_direction=\"left\" animation_speed=\"1\" alignment=\"center\" class=\"\" id=\"\"]Make A Reservation Enquiry[/button][/fullwidth][fusion_code]Q2xpY2sgZWRpdCBidXR0b24gdG8gY2hhbmdlIHRoaXMgY29kZS4=[/fusion_code]', 'Home', '', 'inherit', 'closed', 'closed', '', '7-revision-v1', '', '', '2016-05-09 16:37:16', '2016-05-09 14:37:16', '', 7, 'http://msla.co.za/lodge/7-revision-v1/', 0, 'revision', '', 0);
INSERT INTO `wp_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(1212, 1, '2016-05-31 09:58:20', '2016-05-31 07:58:20', '[fullwidth background_color=\"\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"70px\" padding_bottom=\"75px\" padding_left=\"0px\" padding_right=\"0px\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][one_half last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][fusion_text]\r\n<h1>Contact Us</h1>\r\n<h2>Send us a message.</h2>\r\n[/fusion_text][fusion_text][contact-form-7 id=\"246\" title=\"Contact form 1\"][/fusion_text][/one_half][one_half last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][fusion_text]\r\n<h1>Where are we?</h1>\r\n<h2>4 Williams Road\r\nAssagay, Hillcrest\r\nKwaZulu Natal</h2>\r\n<h1>Contact</h1>\r\n<h2>0317656046 or 0317655961</h2>\r\n[/fusion_text][separator style_type=\"none\" top_margin=\"\" bottom_margin=\"20\" sep_color=\"\" border_size=\"\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"\" alignment=\"\" class=\"\" id=\"\"][accordian class=\"\" id=\"\"][toggle title=\"GPS Location\" open=\"no\"]\r\n\r\n<strong>GPS: Latitude (South) -29.771865, Longitude (East) 30.736892</strong>\r\n\r\n[/toggle][toggle title=\"Directions\" open=\"no\"]\r\n\r\nWhether you are coming from Durban or Pietermaritzburg be sure to take the Shongweni / Assagay / Hillcrest turn off. This is known as Kassier Rd however it is poorly marked but it is nevertheless the road which you turn into from the highway. It runs from Shongweni in the south, over both highways (N3 &amp; M13), passed the Hillcrest Hospital, through to Old Main Rd, in the north.\r\n\r\nHead towards Old Main Road, Hillcrest.\r\n\r\nRemain on Kassier Road, heading north, for about 2-3km and turn into Assagay Road, a good land mark is the Assagay Nursery &amp; Equitack (Animal Feeds) almost opposite this turn off.\r\n\r\nTake the turn into Assagay Road (not Assagay Cresent). Head up the rise. Turn left into Castle Road, carry down the dip for about 500m and cross a small water-bridge. Turn first right into Lello Road, just after the bridge. Continue on Lello Road, the road dips and briefly climbs, the valley falling away to your right. Finally, turn left into Williams Road (it\'s essentially the first left turn on Lello Road), Continue down Williams Road for about 800m. On your right you will come to the entrance of the farm called `Fourever`No 4 Williams Road. There’s a 1000 Hills Tourism Sign outside. A wooden fence and silver gate. Welcome to Assagay Lodge.\r\n\r\n[/toggle][/accordian][/one_half][/fullwidth][fullwidth background_color=\"\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"0px\" padding_bottom=\"0px\" padding_left=\"0px\" padding_right=\"0px\" hundred_percent=\"yes\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][map address=\"Assagay Forest Lodge\" type=\"roadmap\" map_style=\"theme\" overlay_color=\"#6666a4\" infobox=\"custom\" infobox_background_color=\"rgba(102,102,164,.8)\" infobox_text_color=\"#ffffff\" infobox_content=\"\" icon=\"http://theme-fusion.com/avada_demos_xml/travel/wp-content/uploads/2015/01/map.png\" width=\"100%\" height=\"700px\" zoom=\"13\" scrollwheel=\"yes\" scale=\"yes\" zoom_pancontrol=\"yes\" animation=\"yes\" popup=\"no\" class=\"\" id=\"\"][/map][/fullwidth]', 'Contact & Directions', '', 'inherit', 'closed', 'closed', '', '11-revision-v1', '', '', '2016-05-31 09:58:20', '2016-05-31 07:58:20', '', 11, 'http://msla.co.za/lodge/11-revision-v1/', 0, 'revision', '', 0),
(1213, 1, '2016-05-31 10:03:14', '2016-05-31 08:03:14', '[fullwidth background_color=\"\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"70px\" padding_bottom=\"75px\" padding_left=\"0px\" padding_right=\"0px\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][one_half last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][fusion_text]\r\n<h1>Contact Us</h1>\r\n<h2>Send us a message.</h2>\r\n[/fusion_text][fusion_text][contact-form-7 id=\"246\" title=\"Contact form 1\"][/fusion_text][/one_half][one_half last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][fusion_text]\r\n<h1>Where are we?</h1>\r\n<h2>4 Williams Road\r\nAssagay, Hillcrest\r\nKwaZulu Natal</h2>\r\n<h1>Contact</h1>\r\n<h2>0317656046 or 0317655961</h2>\r\n[/fusion_text][separator style_type=\"none\" top_margin=\"\" bottom_margin=\"20\" sep_color=\"\" border_size=\"\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"\" alignment=\"\" class=\"\" id=\"\"][accordian class=\"\" id=\"\"][toggle title=\"GPS Location\" open=\"no\"]\r\n\r\n<strong>GPS: Latitude (South) -29.771865, Longitude (East) 30.736892</strong>\r\n\r\n[/toggle][toggle title=\"Directions\" open=\"no\"]\r\n\r\nWhether you are coming from Durban or Pietermaritzburg be sure to take the Shongweni / Assagay / Hillcrest turn off. This is known as Kassier Rd however it is poorly marked but it is nevertheless the road which you turn into from the highway. It runs from Shongweni in the south, over both highways (N3 &amp; M13), passed the Hillcrest Hospital, through to Old Main Rd, in the north.\r\n\r\nHead towards Old Main Road, Hillcrest.\r\n\r\nRemain on Kassier Road, heading north, for about 2-3km and turn into Assagay Road, a good land mark is the Assagay Nursery &amp; Equitack (Animal Feeds) almost opposite this turn off.\r\n\r\nTake the turn into Assagay Road (not Assagay Cresent). Head up the rise. Turn left into Castle Road, carry down the dip for about 500m and cross a small water-bridge. Turn first right into Lello Road, just after the bridge. Continue on Lello Road, the road dips and briefly climbs, the valley falling away to your right. Finally, turn left into Williams Road (it\'s essentially the first left turn on Lello Road), Continue down Williams Road for about 800m. On your right you will come to the entrance of the farm called `Fourever`No 4 Williams Road. There’s a 1000 Hills Tourism Sign outside. A wooden fence and silver gate. Welcome to Assagay Lodge.\r\n\r\n[/toggle][/accordian][/one_half][/fullwidth][fullwidth background_color=\"\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"0px\" padding_bottom=\"0px\" padding_left=\"0px\" padding_right=\"0px\" hundred_percent=\"yes\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][map address=\"Assagay Forest Lodge\" type=\"roadmap\" map_style=\"theme\" overlay_color=\"\" infobox=\"default\" infobox_background_color=\"\" infobox_text_color=\"\" infobox_content=\"\" icon=\"\" width=\"100%\" height=\"700px\" zoom=\"14\" scrollwheel=\"yes\" scale=\"yes\" zoom_pancontrol=\"yes\" animation=\"yes\" popup=\"yes\" class=\"\" id=\"\"][/map][map address=\"Assagay Forest Lodge\" type=\"roadmap\" map_style=\"theme\" overlay_color=\"#6666a4\" infobox=\"custom\" infobox_background_color=\"rgba(102,102,164,.8)\" infobox_text_color=\"#ffffff\" infobox_content=\"\" icon=\"http://theme-fusion.com/avada_demos_xml/travel/wp-content/uploads/2015/01/map.png\" width=\"100%\" height=\"700px\" zoom=\"13\" scrollwheel=\"yes\" scale=\"yes\" zoom_pancontrol=\"yes\" animation=\"yes\" popup=\"no\" class=\"\" id=\"\"][/map][/fullwidth]', 'Contact & Directions', '', 'inherit', 'closed', 'closed', '', '11-revision-v1', '', '', '2016-05-31 10:03:14', '2016-05-31 08:03:14', '', 11, 'http://msla.co.za/lodge/11-revision-v1/', 0, 'revision', '', 0),
(1214, 1, '2016-05-31 10:04:31', '2016-05-31 08:04:31', '[fullwidth background_color=\"\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"70px\" padding_bottom=\"75px\" padding_left=\"0px\" padding_right=\"0px\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][one_half last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][fusion_text]\r\n<h1>Contact Us</h1>\r\n<h2>Send us a message.</h2>\r\n[/fusion_text][fusion_text][contact-form-7 id=\"246\" title=\"Contact form 1\"][/fusion_text][/one_half][one_half last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][fusion_text]\r\n<h1>Where are we?</h1>\r\n<h2>4 Williams Road\r\nAssagay, Hillcrest\r\nKwaZulu Natal</h2>\r\n<h1>Contact</h1>\r\n<h2>0317656046 or 0317655961</h2>\r\n[/fusion_text][separator style_type=\"none\" top_margin=\"\" bottom_margin=\"20\" sep_color=\"\" border_size=\"\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"\" alignment=\"\" class=\"\" id=\"\"][accordian class=\"\" id=\"\"][toggle title=\"GPS Location\" open=\"no\"]\r\n\r\n<strong>GPS: Latitude (South) -29.771865, Longitude (East) 30.736892</strong>\r\n\r\n[/toggle][toggle title=\"Directions\" open=\"no\"]\r\n\r\nWhether you are coming from Durban or Pietermaritzburg be sure to take the Shongweni / Assagay / Hillcrest turn off. This is known as Kassier Rd however it is poorly marked but it is nevertheless the road which you turn into from the highway. It runs from Shongweni in the south, over both highways (N3 &amp; M13), passed the Hillcrest Hospital, through to Old Main Rd, in the north.\r\n\r\nHead towards Old Main Road, Hillcrest.\r\n\r\nRemain on Kassier Road, heading north, for about 2-3km and turn into Assagay Road, a good land mark is the Assagay Nursery &amp; Equitack (Animal Feeds) almost opposite this turn off.\r\n\r\nTake the turn into Assagay Road (not Assagay Cresent). Head up the rise. Turn left into Castle Road, carry down the dip for about 500m and cross a small water-bridge. Turn first right into Lello Road, just after the bridge. Continue on Lello Road, the road dips and briefly climbs, the valley falling away to your right. Finally, turn left into Williams Road (it\'s essentially the first left turn on Lello Road), Continue down Williams Road for about 800m. On your right you will come to the entrance of the farm called `Fourever`No 4 Williams Road. There’s a 1000 Hills Tourism Sign outside. A wooden fence and silver gate. Welcome to Assagay Lodge.\r\n\r\n[/toggle][/accordian][/one_half][/fullwidth][fullwidth background_color=\"\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"0px\" padding_bottom=\"0px\" padding_left=\"0px\" padding_right=\"0px\" hundred_percent=\"yes\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][map address=\"Assagay Forest Lodge\" type=\"roadmap\" map_style=\"theme\" overlay_color=\"#6666a4\" infobox=\"custom\" infobox_background_color=\"rgba(102,102,164,.8)\" infobox_text_color=\"#ffffff\" infobox_content=\"\" icon=\"http://theme-fusion.com/avada_demos_xml/travel/wp-content/uploads/2015/01/map.png\" width=\"100%\" height=\"700px\" zoom=\"13\" scrollwheel=\"yes\" scale=\"yes\" zoom_pancontrol=\"yes\" animation=\"yes\" popup=\"no\" class=\"\" id=\"\"][/map][/fullwidth]', 'Contact & Directions', '', 'inherit', 'closed', 'closed', '', '11-revision-v1', '', '', '2016-05-31 10:04:31', '2016-05-31 08:04:31', '', 11, 'http://msla.co.za/lodge/11-revision-v1/', 0, 'revision', '', 0),
(1215, 1, '2016-05-31 10:23:43', '2016-05-31 08:23:43', '[fullwidth background_color=\"\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"70px\" padding_bottom=\"75px\" padding_left=\"0px\" padding_right=\"0px\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][one_half last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][fusion_text]\r\n<h1>Contact Us</h1>\r\n<h2>Send us a message.</h2>\r\n[/fusion_text][fusion_text][contact-form-7 id=\"246\" title=\"Contact form 1\"][/fusion_text][/one_half][one_half last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][fusion_text]\r\n<h1>Where are we?</h1>\r\n<h2>4 Williams Road\r\nAssagay, Hillcrest\r\nKwaZulu Natal</h2>\r\n<h1>Contact</h1>\r\n<h2>0317656046 or 0317655961</h2>\r\n[/fusion_text][separator style_type=\"none\" top_margin=\"\" bottom_margin=\"20\" sep_color=\"\" border_size=\"\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"\" alignment=\"\" class=\"\" id=\"\"][accordian class=\"\" id=\"\"][toggle title=\"GPS Location\" open=\"no\"]\r\n\r\n<strong>GPS: Latitude (South) -29.771865, Longitude (East) 30.736892</strong>\r\n\r\n[/toggle][toggle title=\"Directions\" open=\"no\"]\r\n\r\nWhether you are coming from Durban or Pietermaritzburg be sure to take the Shongweni / Assagay / Hillcrest turn off. This is known as Kassier Rd however it is poorly marked but it is nevertheless the road which you turn into from the highway. It runs from Shongweni in the south, over both highways (N3 &amp; M13), passed the Hillcrest Hospital, through to Old Main Rd, in the north.\r\n\r\nHead towards Old Main Road, Hillcrest.\r\n\r\nRemain on Kassier Road, heading north, for about 2-3km and turn into Assagay Road, a good land mark is the Assagay Nursery &amp; Equitack (Animal Feeds) almost opposite this turn off.\r\n\r\nTake the turn into Assagay Road (not Assagay Cresent). Head up the rise. Turn left into Castle Road, carry down the dip for about 500m and cross a small water-bridge. Turn first right into Lello Road, just after the bridge. Continue on Lello Road, the road dips and briefly climbs, the valley falling away to your right. Finally, turn left into Williams Road (it\'s essentially the first left turn on Lello Road), Continue down Williams Road for about 800m. On your right you will come to the entrance of the farm called `Fourever`No 4 Williams Road. There’s a 1000 Hills Tourism Sign outside. A wooden fence and silver gate. Welcome to Assagay Lodge.\r\n\r\n[/toggle][/accordian][/one_half][/fullwidth][fullwidth background_color=\"\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"0px\" padding_bottom=\"0px\" padding_left=\"0px\" padding_right=\"0px\" hundred_percent=\"yes\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][map address=\"Assagay Forest Lodge\" type=\"roadmap\" map_style=\"default\" overlay_color=\"#6666a4\" infobox=\"custom\" infobox_background_color=\"rgba(102,102,164,.8)\" infobox_text_color=\"#ffffff\" infobox_content=\"\" icon=\"http://theme-fusion.com/avada_demos_xml/travel/wp-content/uploads/2015/01/map.png\" width=\"100%\" height=\"700px\" zoom=\"13\" scrollwheel=\"yes\" scale=\"yes\" zoom_pancontrol=\"yes\" animation=\"yes\" popup=\"no\" class=\"\" id=\"\"][/map][/fullwidth]', 'Contact & Directions', '', 'inherit', 'closed', 'closed', '', '11-revision-v1', '', '', '2016-05-31 10:23:43', '2016-05-31 08:23:43', '', 11, 'http://msla.co.za/lodge/11-revision-v1/', 0, 'revision', '', 0),
(1216, 1, '2016-05-31 10:25:06', '2016-05-31 08:25:06', '[fullwidth background_color=\"\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"70px\" padding_bottom=\"75px\" padding_left=\"0px\" padding_right=\"0px\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][one_half last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][fusion_text]\r\n<h1>Contact Us</h1>\r\n<h2>Send us a message.</h2>\r\n[/fusion_text][fusion_text][contact-form-7 id=\"246\" title=\"Contact form 1\"][/fusion_text][/one_half][one_half last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][fusion_text]\r\n<h1>Where are we?</h1>\r\n<h2>4 Williams Road\r\nAssagay, Hillcrest\r\nKwaZulu Natal</h2>\r\n<h1>Contact</h1>\r\n<h2>0317656046 or 0317655961</h2>\r\n[/fusion_text][separator style_type=\"none\" top_margin=\"\" bottom_margin=\"20\" sep_color=\"\" border_size=\"\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"\" alignment=\"\" class=\"\" id=\"\"][accordian class=\"\" id=\"\"][toggle title=\"GPS Location\" open=\"no\"]\r\n\r\n<strong>GPS: Latitude (South) -29.771865, Longitude (East) 30.736892</strong>\r\n\r\n[/toggle][toggle title=\"Directions\" open=\"no\"]\r\n\r\nWhether you are coming from Durban or Pietermaritzburg be sure to take the Shongweni / Assagay / Hillcrest turn off. This is known as Kassier Rd however it is poorly marked but it is nevertheless the road which you turn into from the highway. It runs from Shongweni in the south, over both highways (N3 &amp; M13), passed the Hillcrest Hospital, through to Old Main Rd, in the north.\r\n\r\nHead towards Old Main Road, Hillcrest.\r\n\r\nRemain on Kassier Road, heading north, for about 2-3km and turn into Assagay Road, a good land mark is the Assagay Nursery &amp; Equitack (Animal Feeds) almost opposite this turn off.\r\n\r\nTake the turn into Assagay Road (not Assagay Cresent). Head up the rise. Turn left into Castle Road, carry down the dip for about 500m and cross a small water-bridge. Turn first right into Lello Road, just after the bridge. Continue on Lello Road, the road dips and briefly climbs, the valley falling away to your right. Finally, turn left into Williams Road (it\'s essentially the first left turn on Lello Road), Continue down Williams Road for about 800m. On your right you will come to the entrance of the farm called `Fourever`No 4 Williams Road. There’s a 1000 Hills Tourism Sign outside. A wooden fence and silver gate. Welcome to Assagay Lodge.\r\n\r\n[/toggle][/accordian][/one_half][/fullwidth][fullwidth background_color=\"\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"0px\" padding_bottom=\"0px\" padding_left=\"0px\" padding_right=\"0px\" hundred_percent=\"yes\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][map address=\"Assagay Forest Lodge\" type=\"roadmap\" map_style=\"theme\" overlay_color=\"#6666a4\" infobox=\"custom\" infobox_background_color=\"rgba(102,102,164,.8)\" infobox_text_color=\"#ffffff\" infobox_content=\"\" icon=\"http://theme-fusion.com/avada_demos_xml/travel/wp-content/uploads/2015/01/map.png\" width=\"100%\" height=\"700px\" zoom=\"14\" scrollwheel=\"yes\" scale=\"yes\" zoom_pancontrol=\"yes\" animation=\"yes\" popup=\"no\" class=\"\" id=\"\"][/map][/fullwidth]', 'Contact & Directions', '', 'inherit', 'closed', 'closed', '', '11-revision-v1', '', '', '2016-05-31 10:25:06', '2016-05-31 08:25:06', '', 11, 'http://msla.co.za/lodge/11-revision-v1/', 0, 'revision', '', 0),
(1217, 1, '2016-05-31 10:26:18', '2016-05-31 08:26:18', '[fullwidth background_color=\"\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"70px\" padding_bottom=\"75px\" padding_left=\"0px\" padding_right=\"0px\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][one_half last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][fusion_text]\r\n<h1>Contact Us</h1>\r\n<h2>Send us a message.</h2>\r\n[/fusion_text][fusion_text][contact-form-7 id=\"246\" title=\"Contact form 1\"][/fusion_text][/one_half][one_half last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][fusion_text]\r\n<h1>Where are we?</h1>\r\n<h2>4 Williams Road\r\nAssagay, Hillcrest\r\nKwaZulu Natal</h2>\r\n<h1>Contact</h1>\r\n<h2>0317656046 or 0317655961</h2>\r\n[/fusion_text][separator style_type=\"none\" top_margin=\"\" bottom_margin=\"20\" sep_color=\"\" border_size=\"\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"\" alignment=\"\" class=\"\" id=\"\"][accordian class=\"\" id=\"\"][toggle title=\"GPS Location\" open=\"no\"]\r\n\r\n<strong>GPS: Latitude (South) -29.771865, Longitude (East) 30.736892</strong>\r\n\r\n[/toggle][toggle title=\"Directions\" open=\"no\"]\r\n\r\nWhether you are coming from Durban or Pietermaritzburg be sure to take the Shongweni / Assagay / Hillcrest turn off. This is known as Kassier Rd however it is poorly marked but it is nevertheless the road which you turn into from the highway. It runs from Shongweni in the south, over both highways (N3 &amp; M13), passed the Hillcrest Hospital, through to Old Main Rd, in the north.\r\n\r\nHead towards Old Main Road, Hillcrest.\r\n\r\nRemain on Kassier Road, heading north, for about 2-3km and turn into Assagay Road, a good land mark is the Assagay Nursery &amp; Equitack (Animal Feeds) almost opposite this turn off.\r\n\r\nTake the turn into Assagay Road (not Assagay Cresent). Head up the rise. Turn left into Castle Road, carry down the dip for about 500m and cross a small water-bridge. Turn first right into Lello Road, just after the bridge. Continue on Lello Road, the road dips and briefly climbs, the valley falling away to your right. Finally, turn left into Williams Road (it\'s essentially the first left turn on Lello Road), Continue down Williams Road for about 800m. On your right you will come to the entrance of the farm called `Fourever`No 4 Williams Road. There’s a 1000 Hills Tourism Sign outside. A wooden fence and silver gate. Welcome to Assagay Lodge.\r\n\r\n[/toggle][/accordian][/one_half][/fullwidth][fullwidth background_color=\"\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"0px\" padding_bottom=\"0px\" padding_left=\"0px\" padding_right=\"0px\" hundred_percent=\"yes\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][map address=\"Assagay Forest Lodge\" type=\"roadmap\" map_style=\"custom\" overlay_color=\"#6666a4\" infobox=\"custom\" infobox_background_color=\"rgba(102,102,164,.8)\" infobox_text_color=\"#ffffff\" infobox_content=\"\" icon=\"http://theme-fusion.com/avada_demos_xml/travel/wp-content/uploads/2015/01/map.png\" width=\"100%\" height=\"700px\" zoom=\"14\" scrollwheel=\"yes\" scale=\"yes\" zoom_pancontrol=\"yes\" animation=\"yes\" popup=\"no\" class=\"\" id=\"\"][/map][/fullwidth]', 'Contact & Directions', '', 'inherit', 'closed', 'closed', '', '11-revision-v1', '', '', '2016-05-31 10:26:18', '2016-05-31 08:26:18', '', 11, 'http://msla.co.za/lodge/11-revision-v1/', 0, 'revision', '', 0),
(1218, 1, '2016-05-31 10:28:02', '2016-05-31 08:28:02', '[fullwidth background_color=\"\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"70px\" padding_bottom=\"75px\" padding_left=\"0px\" padding_right=\"0px\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][one_half last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][fusion_text]\r\n<h1>Contact Us</h1>\r\n<h2>Send us a message.</h2>\r\n[/fusion_text][fusion_text][contact-form-7 id=\"246\" title=\"Contact form 1\"][/fusion_text][/one_half][one_half last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][fusion_text]\r\n<h1>Where are we?</h1>\r\n<h2>4 Williams Road\r\nAssagay, Hillcrest\r\nKwaZulu Natal</h2>\r\n<h1>Contact</h1>\r\n<h2>0317656046 or 0317655961</h2>\r\n[/fusion_text][separator style_type=\"none\" top_margin=\"\" bottom_margin=\"20\" sep_color=\"\" border_size=\"\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"\" alignment=\"\" class=\"\" id=\"\"][accordian class=\"\" id=\"\"][toggle title=\"GPS Location\" open=\"no\"]\r\n\r\n<strong>GPS: Latitude (South) -29.771865, Longitude (East) 30.736892</strong>\r\n\r\n[/toggle][toggle title=\"Directions\" open=\"no\"]\r\n\r\nWhether you are coming from Durban or Pietermaritzburg be sure to take the Shongweni / Assagay / Hillcrest turn off. This is known as Kassier Rd however it is poorly marked but it is nevertheless the road which you turn into from the highway. It runs from Shongweni in the south, over both highways (N3 &amp; M13), passed the Hillcrest Hospital, through to Old Main Rd, in the north.\r\n\r\nHead towards Old Main Road, Hillcrest.\r\n\r\nRemain on Kassier Road, heading north, for about 2-3km and turn into Assagay Road, a good land mark is the Assagay Nursery &amp; Equitack (Animal Feeds) almost opposite this turn off.\r\n\r\nTake the turn into Assagay Road (not Assagay Cresent). Head up the rise. Turn left into Castle Road, carry down the dip for about 500m and cross a small water-bridge. Turn first right into Lello Road, just after the bridge. Continue on Lello Road, the road dips and briefly climbs, the valley falling away to your right. Finally, turn left into Williams Road (it\'s essentially the first left turn on Lello Road), Continue down Williams Road for about 800m. On your right you will come to the entrance of the farm called `Fourever`No 4 Williams Road. There’s a 1000 Hills Tourism Sign outside. A wooden fence and silver gate. Welcome to Assagay Lodge.\r\n\r\n[/toggle][/accordian][/one_half][/fullwidth][fullwidth background_color=\"\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"0px\" padding_bottom=\"0px\" padding_left=\"0px\" padding_right=\"0px\" hundred_percent=\"yes\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][map address=\"Assagay Forest Lodge\" type=\"roadmap\" map_style=\"default\" overlay_color=\"#6666a4\" infobox=\"custom\" infobox_background_color=\"rgba(102,102,164,.8)\" infobox_text_color=\"#ffffff\" infobox_content=\"\" icon=\"http://theme-fusion.com/avada_demos_xml/travel/wp-content/uploads/2015/01/map.png\" width=\"100%\" height=\"700px\" zoom=\"14\" scrollwheel=\"yes\" scale=\"yes\" zoom_pancontrol=\"yes\" animation=\"yes\" popup=\"no\" class=\"\" id=\"\"][/map][/fullwidth]', 'Contact & Directions', '', 'inherit', 'closed', 'closed', '', '11-revision-v1', '', '', '2016-05-31 10:28:02', '2016-05-31 08:28:02', '', 11, 'http://msla.co.za/lodge/11-revision-v1/', 0, 'revision', '', 0),
(1219, 1, '2016-05-31 10:30:47', '2016-05-31 08:30:47', '[fullwidth background_color=\"\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"70px\" padding_bottom=\"75px\" padding_left=\"0px\" padding_right=\"0px\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][one_half last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][fusion_text]\r\n<h1>Contact Us</h1>\r\n<h2>Send us a message.</h2>\r\n[/fusion_text][fusion_text][contact-form-7 id=\"246\" title=\"Contact form 1\"][/fusion_text][/one_half][one_half last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][fusion_text]\r\n<h1>Where are we?</h1>\r\n<h2>4 Williams Road\r\nAssagay, Hillcrest\r\nKwaZulu Natal</h2>\r\n<h1>Contact</h1>\r\n<h2>0317656046 or 0317655961</h2>\r\n[/fusion_text][separator style_type=\"none\" top_margin=\"\" bottom_margin=\"20\" sep_color=\"\" border_size=\"\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"\" alignment=\"\" class=\"\" id=\"\"][accordian class=\"\" id=\"\"][toggle title=\"GPS Location\" open=\"no\"]\r\n\r\n<strong>GPS: Latitude (South) -29.771865, Longitude (East) 30.736892</strong>\r\n\r\n[/toggle][toggle title=\"Directions\" open=\"no\"]\r\n\r\nWhether you are coming from Durban or Pietermaritzburg be sure to take the Shongweni / Assagay / Hillcrest turn off. This is known as Kassier Rd however it is poorly marked but it is nevertheless the road which you turn into from the highway. It runs from Shongweni in the south, over both highways (N3 &amp; M13), passed the Hillcrest Hospital, through to Old Main Rd, in the north.\r\n\r\nHead towards Old Main Road, Hillcrest.\r\n\r\nRemain on Kassier Road, heading north, for about 2-3km and turn into Assagay Road, a good land mark is the Assagay Nursery &amp; Equitack (Animal Feeds) almost opposite this turn off.\r\n\r\nTake the turn into Assagay Road (not Assagay Cresent). Head up the rise. Turn left into Castle Road, carry down the dip for about 500m and cross a small water-bridge. Turn first right into Lello Road, just after the bridge. Continue on Lello Road, the road dips and briefly climbs, the valley falling away to your right. Finally, turn left into Williams Road (it\'s essentially the first left turn on Lello Road), Continue down Williams Road for about 800m. On your right you will come to the entrance of the farm called `Fourever`No 4 Williams Road. There’s a 1000 Hills Tourism Sign outside. A wooden fence and silver gate. Welcome to Assagay Lodge.\r\n\r\n[/toggle][/accordian][/one_half][/fullwidth][fullwidth background_color=\"\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"0px\" padding_bottom=\"0px\" padding_left=\"0px\" padding_right=\"0px\" hundred_percent=\"yes\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][map address=\"Assagay Forest Lodge\" type=\"roadmap\" map_style=\"default\" overlay_color=\"#6666a4\" infobox=\"custom\" infobox_background_color=\"rgba(102,102,164,.8)\" infobox_text_color=\"#ffffff\" infobox_content=\"\" icon=\"http://theme-fusion.com/avada_demos_xml/travel/wp-content/uploads/2015/01/map.png\" width=\"100%\" height=\"700px\" zoom=\"12\" scrollwheel=\"yes\" scale=\"yes\" zoom_pancontrol=\"yes\" animation=\"yes\" popup=\"no\" class=\"\" id=\"\"][/map][/fullwidth]', 'Contact & Directions', '', 'inherit', 'closed', 'closed', '', '11-revision-v1', '', '', '2016-05-31 10:30:47', '2016-05-31 08:30:47', '', 11, 'http://msla.co.za/lodge/11-revision-v1/', 0, 'revision', '', 0),
(1220, 1, '2016-05-31 10:31:42', '2016-05-31 08:31:42', '[fullwidth background_color=\"\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"70px\" padding_bottom=\"75px\" padding_left=\"0px\" padding_right=\"0px\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][one_half last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][fusion_text]\r\n<h1>Contact Us</h1>\r\n<h2>Send us a message.</h2>\r\n[/fusion_text][fusion_text][contact-form-7 id=\"246\" title=\"Contact form 1\"][/fusion_text][/one_half][one_half last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][fusion_text]\r\n<h1>Where are we?</h1>\r\n<h2>4 Williams Road\r\nAssagay, Hillcrest\r\nKwaZulu Natal</h2>\r\n<h1>Contact</h1>\r\n<h2>0317656046 or 0317655961</h2>\r\n[/fusion_text][separator style_type=\"none\" top_margin=\"\" bottom_margin=\"20\" sep_color=\"\" border_size=\"\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"\" alignment=\"\" class=\"\" id=\"\"][accordian class=\"\" id=\"\"][toggle title=\"GPS Location\" open=\"no\"]\r\n\r\n<strong>GPS: Latitude (South) -29.771865, Longitude (East) 30.736892</strong>\r\n\r\n[/toggle][toggle title=\"Directions\" open=\"no\"]\r\n\r\nWhether you are coming from Durban or Pietermaritzburg be sure to take the Shongweni / Assagay / Hillcrest turn off. This is known as Kassier Rd however it is poorly marked but it is nevertheless the road which you turn into from the highway. It runs from Shongweni in the south, over both highways (N3 &amp; M13), passed the Hillcrest Hospital, through to Old Main Rd, in the north.\r\n\r\nHead towards Old Main Road, Hillcrest.\r\n\r\nRemain on Kassier Road, heading north, for about 2-3km and turn into Assagay Road, a good land mark is the Assagay Nursery &amp; Equitack (Animal Feeds) almost opposite this turn off.\r\n\r\nTake the turn into Assagay Road (not Assagay Cresent). Head up the rise. Turn left into Castle Road, carry down the dip for about 500m and cross a small water-bridge. Turn first right into Lello Road, just after the bridge. Continue on Lello Road, the road dips and briefly climbs, the valley falling away to your right. Finally, turn left into Williams Road (it\'s essentially the first left turn on Lello Road), Continue down Williams Road for about 800m. On your right you will come to the entrance of the farm called `Fourever`No 4 Williams Road. There’s a 1000 Hills Tourism Sign outside. A wooden fence and silver gate. Welcome to Assagay Lodge.\r\n\r\n[/toggle][/accordian][/one_half][/fullwidth][fullwidth background_color=\"\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"0px\" padding_bottom=\"0px\" padding_left=\"0px\" padding_right=\"0px\" hundred_percent=\"yes\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][map address=\"Assagay Forest Lodge\" type=\"roadmap\" map_style=\"default\" overlay_color=\"#6666a4\" infobox=\"custom\" infobox_background_color=\"rgba(102,102,164,.8)\" infobox_text_color=\"#ffffff\" infobox_content=\"\" icon=\"http://theme-fusion.com/avada_demos_xml/travel/wp-content/uploads/2015/01/map.png\" width=\"100%\" height=\"700px\" zoom=\"15\" scrollwheel=\"yes\" scale=\"yes\" zoom_pancontrol=\"yes\" animation=\"yes\" popup=\"no\" class=\"\" id=\"\"][/map][/fullwidth]', 'Contact & Directions', '', 'inherit', 'closed', 'closed', '', '11-revision-v1', '', '', '2016-05-31 10:31:42', '2016-05-31 08:31:42', '', 11, 'http://msla.co.za/lodge/11-revision-v1/', 0, 'revision', '', 0);
INSERT INTO `wp_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(1221, 1, '2016-05-31 10:34:00', '2016-05-31 08:34:00', '[fullwidth background_color=\"\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"70px\" padding_bottom=\"75px\" padding_left=\"0px\" padding_right=\"0px\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][one_half last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][fusion_text]\r\n<h1>Contact Us</h1>\r\n<h2>Send us a message.</h2>\r\n[/fusion_text][fusion_text][contact-form-7 id=\"246\" title=\"Contact form 1\"][/fusion_text][/one_half][one_half last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][fusion_text]\r\n<h1>Where are we?</h1>\r\n<h2>4 Williams Road\r\nAssagay, Hillcrest\r\nKwaZulu Natal</h2>\r\n<h1>Contact</h1>\r\n<h2>0317656046 or 0317655961</h2>\r\n[/fusion_text][separator style_type=\"none\" top_margin=\"\" bottom_margin=\"20\" sep_color=\"\" border_size=\"\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"\" alignment=\"\" class=\"\" id=\"\"][accordian class=\"\" id=\"\"][toggle title=\"GPS Location\" open=\"no\"]\r\n\r\n<strong>GPS: Latitude (South) -29.771865, Longitude (East) 30.736892</strong>\r\n\r\n[/toggle][toggle title=\"Directions\" open=\"no\"]\r\n\r\nWhether you are coming from Durban or Pietermaritzburg be sure to take the Shongweni / Assagay / Hillcrest turn off. This is known as Kassier Rd however it is poorly marked but it is nevertheless the road which you turn into from the highway. It runs from Shongweni in the south, over both highways (N3 &amp; M13), passed the Hillcrest Hospital, through to Old Main Rd, in the north.\r\n\r\nHead towards Old Main Road, Hillcrest.\r\n\r\nRemain on Kassier Road, heading north, for about 2-3km and turn into Assagay Road, a good land mark is the Assagay Nursery &amp; Equitack (Animal Feeds) almost opposite this turn off.\r\n\r\nTake the turn into Assagay Road (not Assagay Cresent). Head up the rise. Turn left into Castle Road, carry down the dip for about 500m and cross a small water-bridge. Turn first right into Lello Road, just after the bridge. Continue on Lello Road, the road dips and briefly climbs, the valley falling away to your right. Finally, turn left into Williams Road (it\'s essentially the first left turn on Lello Road), Continue down Williams Road for about 800m. On your right you will come to the entrance of the farm called `Fourever`No 4 Williams Road. There’s a 1000 Hills Tourism Sign outside. A wooden fence and silver gate. Welcome to Assagay Lodge.\r\n\r\n[/toggle][/accordian][/one_half][/fullwidth][fullwidth background_color=\"\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"0px\" padding_bottom=\"0px\" padding_left=\"0px\" padding_right=\"0px\" hundred_percent=\"yes\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][map address=\"Assagay Forest Lodge | Assagay Lodge\" type=\"roadmap\" map_style=\"default\" overlay_color=\"#6666a4\" infobox=\"default\" infobox_background_color=\"rgba(102,102,164,.8)\" infobox_text_color=\"#ffffff\" infobox_content=\"\" icon=\"http://theme-fusion.com/avada_demos_xml/travel/wp-content/uploads/2015/01/map.png\" width=\"100%\" height=\"700px\" zoom=\"15\" scrollwheel=\"yes\" scale=\"yes\" zoom_pancontrol=\"yes\" animation=\"yes\" popup=\"no\" class=\"\" id=\"\"][/map][/fullwidth]', 'Contact & Directions', '', 'inherit', 'closed', 'closed', '', '11-revision-v1', '', '', '2016-05-31 10:34:00', '2016-05-31 08:34:00', '', 11, 'http://msla.co.za/lodge/11-revision-v1/', 0, 'revision', '', 0),
(1222, 1, '2016-05-31 10:35:41', '2016-05-31 08:35:41', '[fullwidth background_color=\"\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"70px\" padding_bottom=\"75px\" padding_left=\"0px\" padding_right=\"0px\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][one_half last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][fusion_text]\r\n<h1>Contact Us</h1>\r\n<h2>Send us a message.</h2>\r\n[/fusion_text][fusion_text][contact-form-7 id=\"246\" title=\"Contact form 1\"][/fusion_text][/one_half][one_half last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][fusion_text]\r\n<h1>Where are we?</h1>\r\n<h2>4 Williams Road\r\nAssagay, Hillcrest\r\nKwaZulu Natal</h2>\r\n<h1>Contact</h1>\r\n<h2>0317656046 or 0317655961</h2>\r\n[/fusion_text][separator style_type=\"none\" top_margin=\"\" bottom_margin=\"20\" sep_color=\"\" border_size=\"\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"\" alignment=\"\" class=\"\" id=\"\"][accordian class=\"\" id=\"\"][toggle title=\"GPS Location\" open=\"no\"]\r\n\r\n<strong>GPS: Latitude (South) -29.771865, Longitude (East) 30.736892</strong>\r\n\r\n[/toggle][toggle title=\"Directions\" open=\"no\"]\r\n\r\nWhether you are coming from Durban or Pietermaritzburg be sure to take the Shongweni / Assagay / Hillcrest turn off. This is known as Kassier Rd however it is poorly marked but it is nevertheless the road which you turn into from the highway. It runs from Shongweni in the south, over both highways (N3 &amp; M13), passed the Hillcrest Hospital, through to Old Main Rd, in the north.\r\n\r\nHead towards Old Main Road, Hillcrest.\r\n\r\nRemain on Kassier Road, heading north, for about 2-3km and turn into Assagay Road, a good land mark is the Assagay Nursery &amp; Equitack (Animal Feeds) almost opposite this turn off.\r\n\r\nTake the turn into Assagay Road (not Assagay Cresent). Head up the rise. Turn left into Castle Road, carry down the dip for about 500m and cross a small water-bridge. Turn first right into Lello Road, just after the bridge. Continue on Lello Road, the road dips and briefly climbs, the valley falling away to your right. Finally, turn left into Williams Road (it\'s essentially the first left turn on Lello Road), Continue down Williams Road for about 800m. On your right you will come to the entrance of the farm called `Fourever`No 4 Williams Road. There’s a 1000 Hills Tourism Sign outside. A wooden fence and silver gate. Welcome to Assagay Lodge.\r\n\r\n[/toggle][/accordian][/one_half][/fullwidth][fullwidth background_color=\"\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"0px\" padding_bottom=\"0px\" padding_left=\"0px\" padding_right=\"0px\" hundred_percent=\"yes\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][map address=\"Assagay Forest Lodge\" type=\"roadmap\" map_style=\"default\" overlay_color=\"#6666a4\" infobox=\"default\" infobox_background_color=\"rgba(102,102,164,.8)\" infobox_text_color=\"#ffffff\" infobox_content=\"\" icon=\"http://theme-fusion.com/avada_demos_xml/travel/wp-content/uploads/2015/01/map.png\" width=\"100%\" height=\"700px\" zoom=\"15\" scrollwheel=\"yes\" scale=\"yes\" zoom_pancontrol=\"yes\" animation=\"yes\" popup=\"no\" class=\"\" id=\"\"][/map][/fullwidth]', 'Contact & Directions', '', 'inherit', 'closed', 'closed', '', '11-revision-v1', '', '', '2016-05-31 10:35:41', '2016-05-31 08:35:41', '', 11, 'http://msla.co.za/lodge/11-revision-v1/', 0, 'revision', '', 0),
(1223, 1, '2016-05-31 10:44:50', '2016-05-31 08:44:50', '[fullwidth background_color=\"\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"70px\" padding_bottom=\"75px\" padding_left=\"0px\" padding_right=\"0px\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][one_half last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][fusion_text]\r\n<h1>Contact Us</h1>\r\n<h2>Send us a message.</h2>\r\n[/fusion_text][fusion_text][contact-form-7 id=\"246\" title=\"Contact form 1\"][/fusion_text][/one_half][one_half last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][fusion_text]\r\n<h1>Where are we?</h1>\r\n<h2>4 Williams Road\r\nAssagay, Hillcrest\r\nKwaZulu Natal</h2>\r\n<h1>Contact</h1>\r\n<h2>0317656046 or 0317655961</h2>\r\n[/fusion_text][separator style_type=\"none\" top_margin=\"\" bottom_margin=\"20\" sep_color=\"\" border_size=\"\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"\" alignment=\"\" class=\"\" id=\"\"][accordian class=\"\" id=\"\"][toggle title=\"GPS Location\" open=\"no\"]\r\n\r\n<strong>GPS: Latitude (South) -29.771865, Longitude (East) 30.736892</strong>\r\n\r\n[/toggle][toggle title=\"Directions\" open=\"no\"]\r\n\r\nWhether you are coming from Durban or Pietermaritzburg be sure to take the Shongweni / Assagay / Hillcrest turn off. This is known as Kassier Rd however it is poorly marked but it is nevertheless the road which you turn into from the highway. It runs from Shongweni in the south, over both highways (N3 &amp; M13), passed the Hillcrest Hospital, through to Old Main Rd, in the north.\r\n\r\nHead towards Old Main Road, Hillcrest.\r\n\r\nRemain on Kassier Road, heading north, for about 2-3km and turn into Assagay Road, a good land mark is the Assagay Nursery &amp; Equitack (Animal Feeds) almost opposite this turn off.\r\n\r\nTake the turn into Assagay Road (not Assagay Cresent). Head up the rise. Turn left into Castle Road, carry down the dip for about 500m and cross a small water-bridge. Turn first right into Lello Road, just after the bridge. Continue on Lello Road, the road dips and briefly climbs, the valley falling away to your right. Finally, turn left into Williams Road (it\'s essentially the first left turn on Lello Road), Continue down Williams Road for about 800m. On your right you will come to the entrance of the farm called `Fourever`No 4 Williams Road. There’s a 1000 Hills Tourism Sign outside. A wooden fence and silver gate. Welcome to Assagay Lodge.\r\n\r\n[/toggle][/accordian][/one_half][/fullwidth][fullwidth background_color=\"\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"0px\" padding_bottom=\"0px\" padding_left=\"0px\" padding_right=\"0px\" hundred_percent=\"yes\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][map address=\"Assagay Lodge\" type=\"roadmap\" map_style=\"default\" overlay_color=\"#6666a4\" infobox=\"default\" infobox_background_color=\"rgba(102,102,164,.8)\" infobox_text_color=\"#ffffff\" infobox_content=\"\" icon=\"http://theme-fusion.com/avada_demos_xml/travel/wp-content/uploads/2015/01/map.png\" width=\"100%\" height=\"700px\" zoom=\"15\" scrollwheel=\"yes\" scale=\"yes\" zoom_pancontrol=\"yes\" animation=\"yes\" popup=\"no\" class=\"\" id=\"\"][/map][/fullwidth]', 'Contact & Directions', '', 'inherit', 'closed', 'closed', '', '11-revision-v1', '', '', '2016-05-31 10:44:50', '2016-05-31 08:44:50', '', 11, 'http://msla.co.za/lodge/11-revision-v1/', 0, 'revision', '', 0),
(1224, 1, '2016-05-31 10:51:11', '2016-05-31 08:51:11', '[fullwidth background_color=\"\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"70px\" padding_bottom=\"75px\" padding_left=\"0px\" padding_right=\"0px\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][one_half last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][fusion_text]\r\n<h1>Contact Us</h1>\r\n<h2>Send us a message.</h2>\r\n[/fusion_text][fusion_text][contact-form-7 id=\"246\" title=\"Contact form 1\"][/fusion_text][/one_half][one_half last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][fusion_text]\r\n<h1>Where are we?</h1>\r\n<h2>4 Williams Road\r\nAssagay, Hillcrest\r\nKwaZulu Natal</h2>\r\n<h1>Contact</h1>\r\n<h2>0317656046 or 0317655961</h2>\r\n[/fusion_text][separator style_type=\"none\" top_margin=\"\" bottom_margin=\"20\" sep_color=\"\" border_size=\"\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"\" alignment=\"\" class=\"\" id=\"\"][accordian class=\"\" id=\"\"][toggle title=\"GPS Location\" open=\"no\"]\r\n\r\n<strong>GPS: Latitude (South) -29.771865, Longitude (East) 30.736892</strong>\r\n\r\n[/toggle][toggle title=\"Directions\" open=\"no\"]\r\n\r\nWhether you are coming from Durban or Pietermaritzburg be sure to take the Shongweni / Assagay / Hillcrest turn off. This is known as Kassier Rd however it is poorly marked but it is nevertheless the road which you turn into from the highway. It runs from Shongweni in the south, over both highways (N3 &amp; M13), passed the Hillcrest Hospital, through to Old Main Rd, in the north.\r\n\r\nHead towards Old Main Road, Hillcrest.\r\n\r\nRemain on Kassier Road, heading north, for about 2-3km and turn into Assagay Road, a good land mark is the Assagay Nursery &amp; Equitack (Animal Feeds) almost opposite this turn off.\r\n\r\nTake the turn into Assagay Road (not Assagay Cresent). Head up the rise. Turn left into Castle Road, carry down the dip for about 500m and cross a small water-bridge. Turn first right into Lello Road, just after the bridge. Continue on Lello Road, the road dips and briefly climbs, the valley falling away to your right. Finally, turn left into Williams Road (it\'s essentially the first left turn on Lello Road), Continue down Williams Road for about 800m. On your right you will come to the entrance of the farm called `Fourever`No 4 Williams Road. There’s a 1000 Hills Tourism Sign outside. A wooden fence and silver gate. Welcome to Assagay Lodge.\r\n\r\n[/toggle][/accordian][/one_half][/fullwidth][fullwidth background_color=\"\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"0px\" padding_bottom=\"0px\" padding_left=\"0px\" padding_right=\"0px\" hundred_percent=\"yes\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][map address=\"Assagay Forest Lodge|Assagay Lodge\" type=\"roadmap\" map_style=\"default\" overlay_color=\"#6666a4\" infobox=\"default\" infobox_background_color=\"rgba(102,102,164,.8)\" infobox_text_color=\"#ffffff\" infobox_content=\"\" icon=\"http://theme-fusion.com/avada_demos_xml/travel/wp-content/uploads/2015/01/map.png\" width=\"100%\" height=\"700px\" zoom=\"15\" scrollwheel=\"yes\" scale=\"yes\" zoom_pancontrol=\"yes\" animation=\"no\" popup=\"no\" class=\"\" id=\"\"][/map][/fullwidth]', 'Contact & Directions', '', 'inherit', 'closed', 'closed', '', '11-revision-v1', '', '', '2016-05-31 10:51:11', '2016-05-31 08:51:11', '', 11, 'http://msla.co.za/lodge/11-revision-v1/', 0, 'revision', '', 0),
(1225, 1, '2016-05-31 12:12:55', '2016-05-31 10:12:55', '[fullwidth background_color=\"\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"70px\" padding_bottom=\"75px\" padding_left=\"0px\" padding_right=\"0px\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][one_half last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][fusion_text]\r\n<h1>Contact Us</h1>\r\n<h2>Send us a message.</h2>\r\n[/fusion_text][fusion_text][contact-form-7 id=\"246\" title=\"Contact form 1\"][/fusion_text][/one_half][one_half last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][fusion_text]\r\n<h1>Where are we?</h1>\r\n<h2>4 Williams Road\r\nAssagay, Hillcrest\r\nKwaZulu Natal</h2>\r\n<h1>Contact</h1>\r\n<h2>0317656046 or 0317655961</h2>\r\n[/fusion_text][separator style_type=\"none\" top_margin=\"\" bottom_margin=\"20\" sep_color=\"\" border_size=\"\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"\" alignment=\"\" class=\"\" id=\"\"][accordian class=\"\" id=\"\"][toggle title=\"GPS Location\" open=\"no\"]\r\n\r\n<strong>GPS: Latitude (South) -29.771865, Longitude (East) 30.736892</strong>\r\n\r\n[/toggle][toggle title=\"Directions\" open=\"no\"]\r\n\r\nWhether you are coming from Durban or Pietermaritzburg be sure to take the Shongweni / Assagay / Hillcrest turn off. This is known as Kassier Rd however it is poorly marked but it is nevertheless the road which you turn into from the highway. It runs from Shongweni in the south, over both highways (N3 &amp; M13), passed the Hillcrest Hospital, through to Old Main Rd, in the north.\r\n\r\nHead towards Old Main Road, Hillcrest.\r\n\r\nRemain on Kassier Road, heading north, for about 2-3km and turn into Assagay Road, a good land mark is the Assagay Nursery &amp; Equitack (Animal Feeds) almost opposite this turn off.\r\n\r\nTake the turn into Assagay Road (not Assagay Cresent). Head up the rise. Turn left into Castle Road, carry down the dip for about 500m and cross a small water-bridge. Turn first right into Lello Road, just after the bridge. Continue on Lello Road, the road dips and briefly climbs, the valley falling away to your right. Finally, turn left into Williams Road (it\'s essentially the first left turn on Lello Road), Continue down Williams Road for about 800m. On your right you will come to the entrance of the farm called `Fourever`No 4 Williams Road. There’s a 1000 Hills Tourism Sign outside. A wooden fence and silver gate. Welcome to Assagay Lodge.\r\n\r\n[/toggle][/accordian][/one_half][/fullwidth][fullwidth background_color=\"\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"0px\" padding_bottom=\"0px\" padding_left=\"0px\" padding_right=\"0px\" hundred_percent=\"yes\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][map address=\"Assagay Forest Lodge\" type=\"roadmap\" map_style=\"default\" overlay_color=\"#6666a4\" infobox=\"default\" infobox_background_color=\"rgba(102,102,164,.8)\" infobox_text_color=\"#ffffff\" infobox_content=\"\" icon=\"http://theme-fusion.com/avada_demos_xml/travel/wp-content/uploads/2015/01/map.png\" width=\"100%\" height=\"700px\" zoom=\"15\" scrollwheel=\"yes\" scale=\"no\" zoom_pancontrol=\"yes\" animation=\"no\" popup=\"no\" class=\"\" id=\"\"][/map][/fullwidth]', 'Contact & Directions', '', 'inherit', 'closed', 'closed', '', '11-revision-v1', '', '', '2016-05-31 12:12:55', '2016-05-31 10:12:55', '', 11, 'http://msla.co.za/lodge/11-revision-v1/', 0, 'revision', '', 0),
(1227, 1, '2016-06-15 16:31:31', '2016-06-15 14:31:31', '[fullwidth background_color=\"\" background_image=\"http://msla.co.za/lodge/wp-content/uploads/2015/01/about-parallax11.jpg\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"center center\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"20\" padding_bottom=\"20\" padding_left=\"0\" padding_right=\"0\" hundred_percent=\"yes\" equal_height_columns=\"yes\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][one_sixth last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][/one_sixth][two_third last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][fusion_text][easy_form booknow style=\"none\" submit=\"Reservation successfully sent\" subsubmit=\"Please continue.\" credit=\"Reservation complete\" subcredit=\"You\'ll receive an email with the reservations details\" resourcename=\"Room\" pers=\"1\" resource=\"854\"][/fusion_text][/two_third][one_sixth last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][/one_sixth][/fullwidth][fullwidth background_color=\"\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding_top=\"20\" padding_bottom=\"20\" padding_left=\"0\" padding_right=\"0\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][recent_works layout=\"grid\" picture_size=\"fixed\" boxed_text=\"unboxed\" filters=\"yes\" columns=\"4\" column_spacing=\"12\" cat_slug=\"\" exclude_cats=\"\" number_posts=\"8\" offset=\"\" excerpt_length=\"35\" strip_html=\"yes\" carousel_layout=\"title_on_rollover\" scroll_items=\"\" autoplay=\"no\" show_nav=\"yes\" mouse_scroll=\"no\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" class=\"\" id=\"\"][/recent_works][/fullwidth]', 'Book Now', '', 'inherit', 'closed', 'closed', '', '855-revision-v1', '', '', '2016-06-15 16:31:31', '2016-06-15 14:31:31', '', 855, 'http://msla.co.za/lodge/855-revision-v1/', 0, 'revision', '', 0),
(1228, 1, '2016-06-15 16:32:06', '2016-06-15 14:32:06', '[fullwidth background_color=\"\" background_image=\"http://msla.co.za/lodge/wp-content/uploads/2015/01/about-parallax11.jpg\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"center center\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"20\" padding_bottom=\"20\" padding_left=\"0\" padding_right=\"0\" hundred_percent=\"yes\" equal_height_columns=\"yes\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][one_sixth last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][/one_sixth][two_third last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][fusion_text][easy_form booknow style=\"none\" submit=\"Reservation successfully sent\" subsubmit=\"Please continue.\" credit=\"Reservation complete\" subcredit=\"You\'ll receive an email with the reservations details\" resourcename=\"Room\" pers=\"1\" resource=\"854\"][/fusion_text][/two_third][one_sixth last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][/one_sixth][/fullwidth]', 'Book Now', '', 'inherit', 'closed', 'closed', '', '855-revision-v1', '', '', '2016-06-15 16:32:06', '2016-06-15 14:32:06', '', 855, 'http://msla.co.za/lodge/855-revision-v1/', 0, 'revision', '', 0);
INSERT INTO `wp_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(1230, 1, '2016-07-25 12:23:10', '2016-07-25 10:23:10', '[fullwidth background_color=\"#f0f0ed\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"20\" padding_bottom=\"20\" padding_left=\"0px\" padding_right=\"0px\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][one_half last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][separator style_type=\"single\" top_margin=\"0\" bottom_margin=\"30\" sep_color=\"#000000\" border_size=\"\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"170px\" alignment=\"center\" class=\"separator-left\" id=\"\"][fusion_text]\r\n<h1 style=\"text-align: center;\">No Fancy Star Grading\r\nNo Room Service\r\nNo Bed Turn-downs\r\nNo Rose Petals in the Bath water</h1>\r\n<h1 style=\"text-align: center;\">... just old fashioned homely comforts</h1>\r\n[/fusion_text][/one_half][one_half last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][fusion_text]\r\n<h1 style=\"text-align: justify;\">5 BEDROOM FAMILY LODGE</h1>\r\n<h3 style=\"text-align: justify;\">We are a four season lodge, because there’s always something to celebrate… We offer comfort, relaxation and privacy right in the heart of 1000 Hills. The Forest, the Gardens, the Atmosphere all speak to  Rest  &amp; Relaxation.</h3>\r\n[/fusion_text][separator style_type=\"single\" top_margin=\"0\" bottom_margin=\"30\" sep_color=\"#000000\" border_size=\"\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"170px\" alignment=\"left\" class=\"separator-left\" id=\"\"][modal name=\"rates\" title=\"2015 Rates\" size=\"large\" background=\"\" border_color=\"\" show_footer=\"yes\" class=\"\" id=\"\"]\r\n<table style=\"width: 100%;\" cellspacing=\"10\" cellpadding=\"5\">\r\n<tbody>\r\n<tr>\r\n<td colspan=\"2\"><span style=\"font-size: 10pt;\">ALL PRICES INCLUDE VAT </span></td>\r\n</tr>\r\n<tr>\r\n<td colspan=\"2\"><span style=\"font-size: 12pt;\"><strong>Self-Catering / Self-Servicing Accommodation</strong></span></td>\r\n</tr>\r\n<tr>\r\n<td><span style=\"font-size: 12pt;\">Full House - Max 10 persons per lodge</span></td>\r\n<td><span style=\"font-size: 12pt;\"><strong>R3250</strong> per night (R325 per person)</span></td>\r\n</tr>\r\n<tr>\r\n<td><span style=\"font-size: 12pt;\">Single - Max 1 person per room</span></td>\r\n<td><span style=\"font-size: 12pt;\"><strong>R 650</strong> per person per night</span></td>\r\n</tr>\r\n<tr>\r\n<td><span style=\"font-size: 12pt;\">Sharing - Max 2 persons per room</span></td>\r\n<td><span style=\"font-size: 12pt;\"><strong>R 495</strong> per person per night</span></td>\r\n</tr>\r\n<tr>\r\n<td></td>\r\n<td></td>\r\n</tr>\r\n<tr>\r\n<td><strong><span style=\"font-size: 12pt;\">Servicing Options</span></strong></td>\r\n<td></td>\r\n</tr>\r\n<tr>\r\n<td><span style=\"font-size: 12pt;\">Lodge Only Servicing (Optional) </span></td>\r\n<td><span style=\"font-size: 12pt;\"><strong>R30</strong> per person per day - Max <span style=\"font-size: 12pt;\"><strong>R 150 </strong>per day</span></span></td>\r\n</tr>\r\n<tr>\r\n<td><span style=\"font-size: 12pt;\">Lodge &amp; Room Servicing (Optional) </span></td>\r\n<td><span style=\"font-size: 12pt;\"><strong>R50</strong> per person per day - Max <span style=\"font-size: 12pt;\"><strong>R 250 </strong>per day</span></span></td>\r\n</tr>\r\n<tr>\r\n<td></td>\r\n<td></td>\r\n</tr>\r\n<tr>\r\n<td colspan=\"2\"><span style=\"font-size: 12pt;\"><span style=\"font-size: 12pt;\"><strong>Catering Options</strong></span> </span></td>\r\n</tr>\r\n<tr>\r\n<td><span style=\"font-size: 12pt;\"> <span style=\"font-size: 12pt;\">Breakfast (Continental)</span></span></td>\r\n<td><span style=\"font-size: 12pt;\"> <span style=\"font-size: 12pt;\"><strong>R 55</strong> per person</span></span></td>\r\n</tr>\r\n<tr>\r\n<td><span style=\"font-size: 12pt;\"> <span style=\"font-size: 12pt;\">Breakfast (Full English)</span></span></td>\r\n<td><span style=\"font-size: 12pt;\"> <span style=\"font-size: 12pt;\"><strong>R 75</strong> per person</span></span></td>\r\n</tr>\r\n<tr>\r\n<td><span style=\"font-size: 12pt;\"> <span style=\"font-size: 12pt;\">Light Lunch</span></span></td>\r\n<td><span style=\"font-size: 12pt;\">From <span style=\"font-size: 12pt;\"><strong>R 95 </strong>per person</span></span></td>\r\n</tr>\r\n<tr>\r\n<td><span style=\"font-size: 12pt;\"> <span style=\"font-size: 12pt;\">Dinners</span></span></td>\r\n<td><span style=\"font-size: 12pt;\">From <span style=\"font-size: 12pt;\"><strong>R 150 </strong>per person</span></span></td>\r\n</tr>\r\n<tr>\r\n<td></td>\r\n<td></td>\r\n</tr>\r\n<tr>\r\n<td><strong><span style=\"font-size: 12pt;\">Others</span></strong></td>\r\n<td></td>\r\n</tr>\r\n<tr>\r\n<td><span style=\"font-size: 12pt;\">Gate Remote</span></td>\r\n<td><span style=\"font-size: 12pt;\"><strong>R 200 </strong>deposit</span></td>\r\n</tr>\r\n<tr>\r\n<td><span style=\"font-size: 12pt;\">Gas Braai</span></td>\r\n<td><span style=\"font-size: 12pt;\"><strong>R 120 </strong>per day</span></td>\r\n</tr>\r\n<tr>\r\n<td><span style=\"font-size: 12pt;\">Day Visitors / Guests</span></td>\r\n<td><span style=\"font-size: 12pt;\"><strong>R 50 </strong>per person per day</span></td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n\r\n<hr />\r\n\r\n[/modal][button link=\"\" color=\"darkgreen\" size=\"\"  type=\"\" shape=\"\" target=\"_self\" title=\"\" gradient_colors=\"|\" gradient_hover_colors=\"|\" accent_color=\"\" accent_hover_color=\"\" bevel_color=\"\" border_width=\"1px\" icon=\"\" icon_position=\"left\" icon_divider=\"no\" modal=\"rates\" animation_type=\"0\" animation_direction=\"left\" animation_speed=\"1\" alignment=\"\" class=\"\" id=\"\"]2016 RATES[/button][/one_half][/fullwidth][fullwidth background_color=\"#f0f0ed\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"20\" padding_bottom=\"20\" padding_left=\"0px\" padding_right=\"0px\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][one_half last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][fusion_text]\r\n<h3 style=\"text-align: justify;\">Set in the rolling peaks and valleys of a thousand hills surrounded by a canopy of indigenous trees, you will find that horses still have right of way, we certainly offer the best of both worlds, farm and charm coupled with modern amenities that will have you feeling relaxed and rejuvenated.</h3>\r\n<h3 style=\"text-align: justify;\">We know that sometimes you are searching for a romantic getaway or maybe a few days away with old friends. Other times you are searching for a place to host a weekend, family reunion or a business retreat. In addition to nightly room rentals, our lodge is also available for meetings, retreats  and makes the perfect place for a wedding party to stay together and get ready for the big day. Regardless, with our five comfortable and cozy guest bedrooms, multiple garden spaces and hideaways, and a  large private deck  where you can take a nap or read a book we definitely have the room for you!</h3>\r\n<h3 style=\"text-align: justify;\">Evenings are quiet and peaceful taking you far away from the business of city life. This is a unique and memorable country experience. We look forward to having you as a guest!</h3>\r\n[/fusion_text][/one_half][one_half last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][fusion_text]\r\n<h3 style=\"text-align: justify;\">Our lodge has been in our family for years and has recently been beautifully renovated. Five rooms all with en-suite showers lead off your own large central lounge, featuring a 36 foot high vaulted ceiling, offering spacious living, dining, and a bar/conversational lounge area which includes a fitted kitchenette, all adding to a sense of homely comfort. Sumptuous meals can be provided on request and served on the bottom deck at the swimming pool.</h3>\r\n<h3 style=\"text-align: justify;\">Be lulled to sleep by the sound of the waterfall and tinkling stream just outside your window, waking from a peaceful night\'s sleep in a pillow-top bed dressed in luxurious linens to coddle you in ultimate comfort.</h3>\r\n<h3 style=\"text-align: justify;\">Our property boasts many different species of birds and animals. We have a resident otter, a family of wild bush pigs,  a family of rock rabbits, porcupine, little blue duikers, a variety of different frogs and an abundance of bird life, including the occasional snakes that pass through!</h3>\r\n[/fusion_text][/one_half][/fullwidth][fullwidth background_color=\"\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding_top=\"20\" padding_bottom=\"20\" padding_left=\"0\" padding_right=\"0\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][one_sixth last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][/one_sixth][two_third last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][fusion_text]&lt;div class=\"airbnb-embed-frame\" data-city-link-index=\"1\" data-eb=\"1469440670_0048freFd7IhHJnS\" data-eu=\"PO0+8+zJvFFWW1gZrXDXFi54Z3HrML1WqJUHSA9MhXFNANkDKLQwFUDbvOBv kJ9QLTwT6hCvbR76fSVq3IjBFN+13BwZJXrsVom7PXq512OcGkm0oeF6ZQ3i zM+/VhrxKjpDWWfDmOlnIRZFm9605i8az06bRJT1gbn/mW3m05abm6DNeM1s DaI7N6dBnnYqwAbx4cJtQsGjr636SpE6x8JElnGDmZ/V9rPCbAc6SsYU3o3F dOuPEDx3NBXZfAxSS5L2zP8twEz1h5G5VMIQv4oYM8TUtutu9R/Px3/FECFj s6R6JkWJYJtAE1wtCJbotPQ3FfBR3W+gOjkPV6d95A== \" data-embed-source-type=\"badge_center\" data-trigger-source-type=\"badge_center\" data-listing-id=\"11821060\" data-photo-url=\"https://a2.muscache.com/im/pictures/7a7dc912-d638-48ff-a180-b28ffd7ea24d.jpg?aki_policy=x_large\" data-view=\"listing_frame\" style=\"max-width:600px;margin:auto;transition:height .2s;\"&gt;&lt;img src=\"https://a2.muscache.com/im/pictures/7a7dc912-d638-48ff-a180-b28ffd7ea24d.jpg?aki_policy=x_large\" style=\"max-width:100%;\" alt=\"\"/&gt;&lt;div&gt;&lt;a href=\"https://www.airbnb.com/rooms/11821060\" rel=\"nofollow\"&gt;&lt;h4&gt;Assagay Forest Lodge -Self Catering&lt;/h4&gt;&lt;/a&gt;&lt;div&gt;Outer West Durban, KwaZulu-Natal, South Africa&lt;/div&gt;&lt;blockquote&gt;Beautifully renovated. Five rooms [en-suite] lead off your own large central lounge, featuring a 36 foot high vaulted ceiling, offering spacious living, dining, and a conversational lounge area whi...&lt;/blockquote&gt;&lt;/div&gt;&lt;script async=\"\" src=\"https://www.airbnb.com/embeddable/airbnb_jssdk\"&gt;&lt;/script&gt;&lt;/div&gt;[/fusion_text][/two_third][one_sixth last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][/one_sixth][/fullwidth][fullwidth background_color=\"#f0f0ed\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"20\" padding_bottom=\"20\" padding_left=\"0px\" padding_right=\"0px\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][fusion_text]\r\n<h1 style=\"text-align: center;\">Gallery</h1>\r\n[/fusion_text][separator style_type=\"single\" top_margin=\"\" bottom_margin=\"40\" sep_color=\"#000000\" border_size=\"\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"170px\" alignment=\"\" class=\"\" id=\"\"][one_sixth last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][/one_sixth][two_third last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][fusion_text]\r\n<h3 style=\"text-align: justify;\">The Lodge is open, spacious, comfortable and homely. During hot summer days, sit and bask in the sun on the deck  with one of our  picnic specials. In winter, snuggle up with a good book or challenge one another to a friendly board game in the glassed nook area .</h3>\r\n[/fusion_text][/two_third][one_sixth last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][/one_sixth][/fullwidth][fullwidth background_color=\"#f0f0ed\" background_image=\"http://localhost/assagaylodge/wp-content/uploads/2015/01/Wood_Texture.jpg\" background_parallax=\"fixed\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"30\" padding_bottom=\"10\" padding_left=\"0\" padding_right=\"0\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][recent_works layout=\"grid\" picture_size=\"auto\" boxed_text=\"unboxed\" filters=\"no\" columns=\"3\" column_spacing=\"12\" cat_slug=\"the-lodge\" exclude_cats=\"\" number_posts=\"9\" offset=\"\" excerpt_length=\"35\" strip_html=\"yes\" carousel_layout=\"title_on_rollover\" scroll_items=\"\" autoplay=\"no\" show_nav=\"yes\" mouse_scroll=\"no\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" class=\"\" id=\"\"][/recent_works][/fullwidth][fullwidth background_color=\"#f0f0ed\" background_image=\"\" background_parallax=\"fixed\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"20\" padding_bottom=\"20\" padding_left=\"0px\" padding_right=\"0px\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][fusion_text]\r\n<h1 style=\"text-align: center;\">BEDROOMS</h1>\r\n[/fusion_text][separator style_type=\"single\" top_margin=\"\" bottom_margin=\"20\" sep_color=\"#000000\" border_size=\"\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"170px\" alignment=\"\" class=\"\" id=\"\"][one_sixth last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][/one_sixth][two_third last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][fusion_text]\r\n<h3 style=\"text-align: justify;\">When it comes to our bedrooms we’re proud to say we offer something a little more special. One of five  lovingly and tastefully decorated guest rooms. Soft gray decor soothes the senses providing a peaceful, blissfully comfortable rest from your travels and hectic lives.</h3>\r\n<h3 style=\"text-align: justify;\">Our  bedrooms are spacious, clean, comfortable all en-suite, equipped with either king size or queen size beds. Each room sleeps two guests. The rooms have high ceilings, wall heaters &amp; ceiling fans. Beds all have electric blankets in Winter, 100% cotton percale sheets and thick hyper allergenic microfiber duvets and pillows. All guest rooms are cleaned with organic and green products. Amenities include hairdryers in each room. Three rooms feature King-sized beds  of which two can be  split into two single beds. Two  rooms can therefore be changed into a twin room upon request. Two rooms feature a Queen-sized double bed. These beds cannot be split into twin beds.</h3>\r\n[/fusion_text][/two_third][one_sixth last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][/one_sixth][/fullwidth][fullwidth background_color=\"\" background_image=\"http://localhost/assagaylodge/wp-content/uploads/2015/01/DSC01516-1148-x-764.jpg\" background_parallax=\"fixed\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"center center\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"20\" padding_bottom=\"20\" padding_left=\"0\" padding_right=\"0\" hundred_percent=\"no\" equal_height_columns=\"yes\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][recent_works layout=\"grid\" picture_size=\"auto\" boxed_text=\"unboxed\" filters=\"no\" columns=\"3\" column_spacing=\"12\" cat_slug=\"bedrooms\" exclude_cats=\"\" number_posts=\"6\" offset=\"\" excerpt_length=\"35\" strip_html=\"yes\" carousel_layout=\"title_on_rollover\" scroll_items=\"\" autoplay=\"no\" show_nav=\"yes\" mouse_scroll=\"no\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" class=\"\" id=\"\"][/recent_works][/fullwidth][fullwidth background_color=\"#f0f0ed\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"20\" padding_bottom=\"20\" padding_left=\"0\" padding_right=\"0\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][fusion_text]\r\n<h1 style=\"text-align: center;\">GARDENS</h1>\r\n[/fusion_text][separator style_type=\"single\" top_margin=\"\" bottom_margin=\"20\" sep_color=\"#000000\" border_size=\"\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"170px\" alignment=\"\" class=\"\" id=\"\"][one_sixth last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][/one_sixth][two_third last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][fusion_text]\r\n<h3 style=\"text-align: justify;\">The garden is large and offers many secluded spots to lose yourself in a book with a glass of wine underneath the shade of a tree, listening to the sounds of the birds and smelling the beautiful flowers.</h3>\r\n[/fusion_text][/two_third][one_sixth last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][/one_sixth][recent_works layout=\"grid\" picture_size=\"auto\" boxed_text=\"boxed\" filters=\"no\" columns=\"3\" column_spacing=\"12\" cat_slug=\"gardens\" exclude_cats=\"\" number_posts=\"9\" offset=\"\" excerpt_length=\"35\" strip_html=\"yes\" carousel_layout=\"title_on_rollover\" scroll_items=\"\" autoplay=\"no\" show_nav=\"yes\" mouse_scroll=\"no\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" class=\"\" id=\"\"][/recent_works][/fullwidth][fullwidth background_color=\"#ffffff\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"65px\" padding_bottom=\"65px\" padding_left=\"0px\" padding_right=\"0px\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][button link=\"http://localhost/assagaylodge/book-now/\" color=\"default\" size=\"xlarge\"  type=\"3d\" shape=\"round\" target=\"_self\" title=\"\" gradient_colors=\"#f0f0ed|#f0f0ed\" gradient_hover_colors=\"#6666a4|#6666a4\" accent_color=\"#ffffff\" accent_hover_color=\"#ffffff\" bevel_color=\"\" border_width=\"0px\" icon=\"\" icon_position=\"left\" icon_divider=\"no\" modal=\"\" animation_type=\"0\" animation_direction=\"left\" animation_speed=\"1\" alignment=\"center\" class=\"\" id=\"\"]Make A Reservation Enquiry[/button][/fullwidth][fusion_code]Q2xpY2sgZWRpdCBidXR0b24gdG8gY2hhbmdlIHRoaXMgY29kZS4=[/fusion_code]', 'Home', '', 'inherit', 'closed', 'closed', '', '7-revision-v1', '', '', '2016-07-25 12:23:10', '2016-07-25 10:23:10', '', 7, 'http://msla.co.za/lodge/7-revision-v1/', 0, 'revision', '', 0),
(1231, 1, '2016-07-25 12:31:15', '2016-07-25 10:31:15', '[fullwidth background_color=\"#f0f0ed\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"20\" padding_bottom=\"20\" padding_left=\"0px\" padding_right=\"0px\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][one_half last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][separator style_type=\"single\" top_margin=\"0\" bottom_margin=\"30\" sep_color=\"#000000\" border_size=\"\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"170px\" alignment=\"center\" class=\"separator-left\" id=\"\"][fusion_text]\r\n<h1 style=\"text-align: center;\">No Fancy Star Grading\r\nNo Room Service\r\nNo Bed Turn-downs\r\nNo Rose Petals in the Bath water</h1>\r\n<h1 style=\"text-align: center;\">... just old fashioned homely comforts</h1>\r\n[/fusion_text][/one_half][one_half last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][fusion_text]\r\n<h1 style=\"text-align: justify;\">5 BEDROOM FAMILY LODGE</h1>\r\n<h3 style=\"text-align: justify;\">We are a four season lodge, because there’s always something to celebrate… We offer comfort, relaxation and privacy right in the heart of 1000 Hills. The Forest, the Gardens, the Atmosphere all speak to  Rest  &amp; Relaxation.</h3>\r\n[/fusion_text][separator style_type=\"single\" top_margin=\"0\" bottom_margin=\"30\" sep_color=\"#000000\" border_size=\"\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"170px\" alignment=\"left\" class=\"separator-left\" id=\"\"][modal name=\"rates\" title=\"2015 Rates\" size=\"large\" background=\"\" border_color=\"\" show_footer=\"yes\" class=\"\" id=\"\"]\r\n<table style=\"width: 100%;\" cellspacing=\"10\" cellpadding=\"5\">\r\n<tbody>\r\n<tr>\r\n<td colspan=\"2\"><span style=\"font-size: 10pt;\">ALL PRICES INCLUDE VAT </span></td>\r\n</tr>\r\n<tr>\r\n<td colspan=\"2\"><span style=\"font-size: 12pt;\"><strong>Self-Catering / Self-Servicing Accommodation</strong></span></td>\r\n</tr>\r\n<tr>\r\n<td><span style=\"font-size: 12pt;\">Full House - Max 10 persons per lodge</span></td>\r\n<td><span style=\"font-size: 12pt;\"><strong>R3250</strong> per night (R325 per person)</span></td>\r\n</tr>\r\n<tr>\r\n<td><span style=\"font-size: 12pt;\">Single - Max 1 person per room</span></td>\r\n<td><span style=\"font-size: 12pt;\"><strong>R 650</strong> per person per night</span></td>\r\n</tr>\r\n<tr>\r\n<td><span style=\"font-size: 12pt;\">Sharing - Max 2 persons per room</span></td>\r\n<td><span style=\"font-size: 12pt;\"><strong>R 495</strong> per person per night</span></td>\r\n</tr>\r\n<tr>\r\n<td></td>\r\n<td></td>\r\n</tr>\r\n<tr>\r\n<td><strong><span style=\"font-size: 12pt;\">Servicing Options</span></strong></td>\r\n<td></td>\r\n</tr>\r\n<tr>\r\n<td><span style=\"font-size: 12pt;\">Lodge Only Servicing (Optional) </span></td>\r\n<td><span style=\"font-size: 12pt;\"><strong>R30</strong> per person per day - Max <span style=\"font-size: 12pt;\"><strong>R 150 </strong>per day</span></span></td>\r\n</tr>\r\n<tr>\r\n<td><span style=\"font-size: 12pt;\">Lodge &amp; Room Servicing (Optional) </span></td>\r\n<td><span style=\"font-size: 12pt;\"><strong>R50</strong> per person per day - Max <span style=\"font-size: 12pt;\"><strong>R 250 </strong>per day</span></span></td>\r\n</tr>\r\n<tr>\r\n<td></td>\r\n<td></td>\r\n</tr>\r\n<tr>\r\n<td colspan=\"2\"><span style=\"font-size: 12pt;\"><span style=\"font-size: 12pt;\"><strong>Catering Options</strong></span> </span></td>\r\n</tr>\r\n<tr>\r\n<td><span style=\"font-size: 12pt;\"> <span style=\"font-size: 12pt;\">Breakfast (Continental)</span></span></td>\r\n<td><span style=\"font-size: 12pt;\"> <span style=\"font-size: 12pt;\"><strong>R 55</strong> per person</span></span></td>\r\n</tr>\r\n<tr>\r\n<td><span style=\"font-size: 12pt;\"> <span style=\"font-size: 12pt;\">Breakfast (Full English)</span></span></td>\r\n<td><span style=\"font-size: 12pt;\"> <span style=\"font-size: 12pt;\"><strong>R 75</strong> per person</span></span></td>\r\n</tr>\r\n<tr>\r\n<td><span style=\"font-size: 12pt;\"> <span style=\"font-size: 12pt;\">Light Lunch</span></span></td>\r\n<td><span style=\"font-size: 12pt;\">From <span style=\"font-size: 12pt;\"><strong>R 95 </strong>per person</span></span></td>\r\n</tr>\r\n<tr>\r\n<td><span style=\"font-size: 12pt;\"> <span style=\"font-size: 12pt;\">Dinners</span></span></td>\r\n<td><span style=\"font-size: 12pt;\">From <span style=\"font-size: 12pt;\"><strong>R 150 </strong>per person</span></span></td>\r\n</tr>\r\n<tr>\r\n<td></td>\r\n<td></td>\r\n</tr>\r\n<tr>\r\n<td><strong><span style=\"font-size: 12pt;\">Others</span></strong></td>\r\n<td></td>\r\n</tr>\r\n<tr>\r\n<td><span style=\"font-size: 12pt;\">Gate Remote</span></td>\r\n<td><span style=\"font-size: 12pt;\"><strong>R 200 </strong>deposit</span></td>\r\n</tr>\r\n<tr>\r\n<td><span style=\"font-size: 12pt;\">Gas Braai</span></td>\r\n<td><span style=\"font-size: 12pt;\"><strong>R 120 </strong>per day</span></td>\r\n</tr>\r\n<tr>\r\n<td><span style=\"font-size: 12pt;\">Day Visitors / Guests</span></td>\r\n<td><span style=\"font-size: 12pt;\"><strong>R 50 </strong>per person per day</span></td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n\r\n<hr />\r\n\r\n[/modal][button link=\"\" color=\"darkgreen\" size=\"\"  type=\"\" shape=\"\" target=\"_self\" title=\"\" gradient_colors=\"|\" gradient_hover_colors=\"|\" accent_color=\"\" accent_hover_color=\"\" bevel_color=\"\" border_width=\"1px\" icon=\"\" icon_position=\"left\" icon_divider=\"no\" modal=\"rates\" animation_type=\"0\" animation_direction=\"left\" animation_speed=\"1\" alignment=\"\" class=\"\" id=\"\"]2016 RATES[/button][/one_half][/fullwidth][fullwidth background_color=\"#f0f0ed\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"20\" padding_bottom=\"20\" padding_left=\"0px\" padding_right=\"0px\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][one_half last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][fusion_text]\r\n<h3 style=\"text-align: justify;\">Set in the rolling peaks and valleys of a thousand hills surrounded by a canopy of indigenous trees, you will find that horses still have right of way, we certainly offer the best of both worlds, farm and charm coupled with modern amenities that will have you feeling relaxed and rejuvenated.</h3>\r\n<h3 style=\"text-align: justify;\">We know that sometimes you are searching for a romantic getaway or maybe a few days away with old friends. Other times you are searching for a place to host a weekend, family reunion or a business retreat. In addition to nightly room rentals, our lodge is also available for meetings, retreats  and makes the perfect place for a wedding party to stay together and get ready for the big day. Regardless, with our five comfortable and cozy guest bedrooms, multiple garden spaces and hideaways, and a  large private deck  where you can take a nap or read a book we definitely have the room for you!</h3>\r\n<h3 style=\"text-align: justify;\">Evenings are quiet and peaceful taking you far away from the business of city life. This is a unique and memorable country experience. We look forward to having you as a guest!</h3>\r\n[/fusion_text][/one_half][one_half last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][fusion_text]\r\n<h3 style=\"text-align: justify;\">Our lodge has been in our family for years and has recently been beautifully renovated. Five rooms all with en-suite showers lead off your own large central lounge, featuring a 36 foot high vaulted ceiling, offering spacious living, dining, and a bar/conversational lounge area which includes a fitted kitchenette, all adding to a sense of homely comfort. Sumptuous meals can be provided on request and served on the bottom deck at the swimming pool.</h3>\r\n<h3 style=\"text-align: justify;\">Be lulled to sleep by the sound of the waterfall and tinkling stream just outside your window, waking from a peaceful night\'s sleep in a pillow-top bed dressed in luxurious linens to coddle you in ultimate comfort.</h3>\r\n<h3 style=\"text-align: justify;\">Our property boasts many different species of birds and animals. We have a resident otter, a family of wild bush pigs,  a family of rock rabbits, porcupine, little blue duikers, a variety of different frogs and an abundance of bird life, including the occasional snakes that pass through!</h3>\r\n[/fusion_text][/one_half][/fullwidth][fullwidth background_color=\"#f0f0ed\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"20\" padding_bottom=\"20\" padding_left=\"0px\" padding_right=\"0px\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][fusion_text]\r\n<h1 style=\"text-align: center;\">Gallery</h1>\r\n[/fusion_text][separator style_type=\"single\" top_margin=\"\" bottom_margin=\"40\" sep_color=\"#000000\" border_size=\"\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"170px\" alignment=\"\" class=\"\" id=\"\"][one_sixth last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][/one_sixth][two_third last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][fusion_text]\r\n<h3 style=\"text-align: justify;\">The Lodge is open, spacious, comfortable and homely. During hot summer days, sit and bask in the sun on the deck  with one of our  picnic specials. In winter, snuggle up with a good book or challenge one another to a friendly board game in the glassed nook area .</h3>\r\n[/fusion_text][/two_third][one_sixth last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][/one_sixth][/fullwidth][fullwidth background_color=\"#f0f0ed\" background_image=\"http://localhost/assagaylodge/wp-content/uploads/2015/01/Wood_Texture.jpg\" background_parallax=\"fixed\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"30\" padding_bottom=\"10\" padding_left=\"0\" padding_right=\"0\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][recent_works layout=\"grid\" picture_size=\"auto\" boxed_text=\"unboxed\" filters=\"no\" columns=\"3\" column_spacing=\"12\" cat_slug=\"the-lodge\" exclude_cats=\"\" number_posts=\"9\" offset=\"\" excerpt_length=\"35\" strip_html=\"yes\" carousel_layout=\"title_on_rollover\" scroll_items=\"\" autoplay=\"no\" show_nav=\"yes\" mouse_scroll=\"no\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" class=\"\" id=\"\"][/recent_works][/fullwidth][fullwidth background_color=\"#f0f0ed\" background_image=\"\" background_parallax=\"fixed\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"20\" padding_bottom=\"20\" padding_left=\"0px\" padding_right=\"0px\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][fusion_text]\r\n<h1 style=\"text-align: center;\">BEDROOMS</h1>\r\n[/fusion_text][separator style_type=\"single\" top_margin=\"\" bottom_margin=\"20\" sep_color=\"#000000\" border_size=\"\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"170px\" alignment=\"\" class=\"\" id=\"\"][one_sixth last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][/one_sixth][two_third last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][fusion_text]\r\n<h3 style=\"text-align: justify;\">When it comes to our bedrooms we’re proud to say we offer something a little more special. One of five  lovingly and tastefully decorated guest rooms. Soft gray decor soothes the senses providing a peaceful, blissfully comfortable rest from your travels and hectic lives.</h3>\r\n<h3 style=\"text-align: justify;\">Our  bedrooms are spacious, clean, comfortable all en-suite, equipped with either king size or queen size beds. Each room sleeps two guests. The rooms have high ceilings, wall heaters &amp; ceiling fans. Beds all have electric blankets in Winter, 100% cotton percale sheets and thick hyper allergenic microfiber duvets and pillows. All guest rooms are cleaned with organic and green products. Amenities include hairdryers in each room. Three rooms feature King-sized beds  of which two can be  split into two single beds. Two  rooms can therefore be changed into a twin room upon request. Two rooms feature a Queen-sized double bed. These beds cannot be split into twin beds.</h3>\r\n[/fusion_text][/two_third][one_sixth last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][/one_sixth][/fullwidth][fullwidth background_color=\"\" background_image=\"http://localhost/assagaylodge/wp-content/uploads/2015/01/DSC01516-1148-x-764.jpg\" background_parallax=\"fixed\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"center center\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"20\" padding_bottom=\"20\" padding_left=\"0\" padding_right=\"0\" hundred_percent=\"no\" equal_height_columns=\"yes\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][recent_works layout=\"grid\" picture_size=\"auto\" boxed_text=\"unboxed\" filters=\"no\" columns=\"3\" column_spacing=\"12\" cat_slug=\"bedrooms\" exclude_cats=\"\" number_posts=\"6\" offset=\"\" excerpt_length=\"35\" strip_html=\"yes\" carousel_layout=\"title_on_rollover\" scroll_items=\"\" autoplay=\"no\" show_nav=\"yes\" mouse_scroll=\"no\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" class=\"\" id=\"\"][/recent_works][/fullwidth][fullwidth background_color=\"#f0f0ed\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"20\" padding_bottom=\"20\" padding_left=\"0\" padding_right=\"0\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][fusion_text]\r\n<h1 style=\"text-align: center;\">GARDENS</h1>\r\n[/fusion_text][separator style_type=\"single\" top_margin=\"\" bottom_margin=\"20\" sep_color=\"#000000\" border_size=\"\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"170px\" alignment=\"\" class=\"\" id=\"\"][one_sixth last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][/one_sixth][two_third last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][fusion_text]\r\n<h3 style=\"text-align: justify;\">The garden is large and offers many secluded spots to lose yourself in a book with a glass of wine underneath the shade of a tree, listening to the sounds of the birds and smelling the beautiful flowers.</h3>\r\n[/fusion_text][/two_third][one_sixth last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][/one_sixth][recent_works layout=\"grid\" picture_size=\"auto\" boxed_text=\"boxed\" filters=\"no\" columns=\"3\" column_spacing=\"12\" cat_slug=\"gardens\" exclude_cats=\"\" number_posts=\"9\" offset=\"\" excerpt_length=\"35\" strip_html=\"yes\" carousel_layout=\"title_on_rollover\" scroll_items=\"\" autoplay=\"no\" show_nav=\"yes\" mouse_scroll=\"no\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" class=\"\" id=\"\"][/recent_works][/fullwidth][fullwidth background_color=\"#ffffff\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"65px\" padding_bottom=\"65px\" padding_left=\"0px\" padding_right=\"0px\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][button link=\"http://localhost/assagaylodge/book-now/\" color=\"default\" size=\"xlarge\"  type=\"3d\" shape=\"round\" target=\"_self\" title=\"\" gradient_colors=\"#f0f0ed|#f0f0ed\" gradient_hover_colors=\"#6666a4|#6666a4\" accent_color=\"#ffffff\" accent_hover_color=\"#ffffff\" bevel_color=\"\" border_width=\"0px\" icon=\"\" icon_position=\"left\" icon_divider=\"no\" modal=\"\" animation_type=\"0\" animation_direction=\"left\" animation_speed=\"1\" alignment=\"center\" class=\"\" id=\"\"]Make A Reservation Enquiry[/button][/fullwidth][fusion_code]Q2xpY2sgZWRpdCBidXR0b24gdG8gY2hhbmdlIHRoaXMgY29kZS4=[/fusion_code]', 'Home', '', 'inherit', 'closed', 'closed', '', '7-revision-v1', '', '', '2016-07-25 12:31:15', '2016-07-25 10:31:15', '', 7, 'http://msla.co.za/lodge/7-revision-v1/', 0, 'revision', '', 0);
INSERT INTO `wp_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(1232, 1, '2016-07-25 12:38:09', '2016-07-25 10:38:09', '[fullwidth background_color=\"#f0f0ed\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"20\" padding_bottom=\"20\" padding_left=\"0px\" padding_right=\"0px\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][one_half last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][separator style_type=\"single\" top_margin=\"0\" bottom_margin=\"30\" sep_color=\"#000000\" border_size=\"\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"170px\" alignment=\"center\" class=\"separator-left\" id=\"\"][fusion_text]\r\n<h1 style=\"text-align: center;\">No Fancy Star Grading\r\nNo Room Service\r\nNo Bed Turn-downs\r\nNo Rose Petals in the Bath water</h1>\r\n<h1 style=\"text-align: center;\">... just old fashioned homely comforts</h1>\r\n[/fusion_text][/one_half][one_half last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][fusion_text]\r\n<h1 style=\"text-align: justify;\">5 BEDROOM FAMILY LODGE</h1>\r\n<h3 style=\"text-align: justify;\">We are a four season lodge, because there’s always something to celebrate… We offer comfort, relaxation and privacy right in the heart of 1000 Hills. The Forest, the Gardens, the Atmosphere all speak to  Rest  &amp; Relaxation.</h3>\r\n[/fusion_text][separator style_type=\"single\" top_margin=\"0\" bottom_margin=\"30\" sep_color=\"#000000\" border_size=\"\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"170px\" alignment=\"left\" class=\"separator-left\" id=\"\"][modal name=\"rates\" title=\"2015 Rates\" size=\"large\" background=\"\" border_color=\"\" show_footer=\"yes\" class=\"\" id=\"\"]\r\n<table style=\"width: 100%;\" cellspacing=\"10\" cellpadding=\"5\">\r\n<tbody>\r\n<tr>\r\n<td colspan=\"2\"><span style=\"font-size: 10pt;\">ALL PRICES INCLUDE VAT </span></td>\r\n</tr>\r\n<tr>\r\n<td colspan=\"2\"><span style=\"font-size: 12pt;\"><strong>Self-Catering / Self-Servicing Accommodation</strong></span></td>\r\n</tr>\r\n<tr>\r\n<td><span style=\"font-size: 12pt;\">Full House - Max 10 persons per lodge</span></td>\r\n<td><span style=\"font-size: 12pt;\"><strong>R3250</strong> per night (R325 per person)</span></td>\r\n</tr>\r\n<tr>\r\n<td><span style=\"font-size: 12pt;\">Single - Max 1 person per room</span></td>\r\n<td><span style=\"font-size: 12pt;\"><strong>R 650</strong> per person per night</span></td>\r\n</tr>\r\n<tr>\r\n<td><span style=\"font-size: 12pt;\">Sharing - Max 2 persons per room</span></td>\r\n<td><span style=\"font-size: 12pt;\"><strong>R 495</strong> per person per night</span></td>\r\n</tr>\r\n<tr>\r\n<td></td>\r\n<td></td>\r\n</tr>\r\n<tr>\r\n<td><strong><span style=\"font-size: 12pt;\">Servicing Options</span></strong></td>\r\n<td></td>\r\n</tr>\r\n<tr>\r\n<td><span style=\"font-size: 12pt;\">Lodge Only Servicing (Optional) </span></td>\r\n<td><span style=\"font-size: 12pt;\"><strong>R30</strong> per person per day - Max <span style=\"font-size: 12pt;\"><strong>R 150 </strong>per day</span></span></td>\r\n</tr>\r\n<tr>\r\n<td><span style=\"font-size: 12pt;\">Lodge &amp; Room Servicing (Optional) </span></td>\r\n<td><span style=\"font-size: 12pt;\"><strong>R50</strong> per person per day - Max <span style=\"font-size: 12pt;\"><strong>R 250 </strong>per day</span></span></td>\r\n</tr>\r\n<tr>\r\n<td></td>\r\n<td></td>\r\n</tr>\r\n<tr>\r\n<td colspan=\"2\"><span style=\"font-size: 12pt;\"><span style=\"font-size: 12pt;\"><strong>Catering Options</strong></span> </span></td>\r\n</tr>\r\n<tr>\r\n<td><span style=\"font-size: 12pt;\"> <span style=\"font-size: 12pt;\">Breakfast (Continental)</span></span></td>\r\n<td><span style=\"font-size: 12pt;\"> <span style=\"font-size: 12pt;\"><strong>R 55</strong> per person</span></span></td>\r\n</tr>\r\n<tr>\r\n<td><span style=\"font-size: 12pt;\"> <span style=\"font-size: 12pt;\">Breakfast (Full English)</span></span></td>\r\n<td><span style=\"font-size: 12pt;\"> <span style=\"font-size: 12pt;\"><strong>R 75</strong> per person</span></span></td>\r\n</tr>\r\n<tr>\r\n<td><span style=\"font-size: 12pt;\"> <span style=\"font-size: 12pt;\">Light Lunch</span></span></td>\r\n<td><span style=\"font-size: 12pt;\">From <span style=\"font-size: 12pt;\"><strong>R 95 </strong>per person</span></span></td>\r\n</tr>\r\n<tr>\r\n<td><span style=\"font-size: 12pt;\"> <span style=\"font-size: 12pt;\">Dinners</span></span></td>\r\n<td><span style=\"font-size: 12pt;\">From <span style=\"font-size: 12pt;\"><strong>R 150 </strong>per person</span></span></td>\r\n</tr>\r\n<tr>\r\n<td></td>\r\n<td></td>\r\n</tr>\r\n<tr>\r\n<td><strong><span style=\"font-size: 12pt;\">Others</span></strong></td>\r\n<td></td>\r\n</tr>\r\n<tr>\r\n<td><span style=\"font-size: 12pt;\">Gate Remote</span></td>\r\n<td><span style=\"font-size: 12pt;\"><strong>R 200 </strong>deposit</span></td>\r\n</tr>\r\n<tr>\r\n<td><span style=\"font-size: 12pt;\">Gas Braai</span></td>\r\n<td><span style=\"font-size: 12pt;\"><strong>R 120 </strong>per day</span></td>\r\n</tr>\r\n<tr>\r\n<td><span style=\"font-size: 12pt;\">Day Visitors / Guests</span></td>\r\n<td><span style=\"font-size: 12pt;\"><strong>R 50 </strong>per person per day</span></td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n\r\n<hr />\r\n\r\n[/modal][button link=\"\" color=\"darkgreen\" size=\"\" type=\"\" shape=\"\" target=\"_self\" title=\"\" gradient_colors=\"|\" gradient_hover_colors=\"|\" accent_color=\"\" accent_hover_color=\"\" bevel_color=\"\" border_width=\"1px\" icon=\"\" icon_position=\"left\" icon_divider=\"no\" modal=\"rates\" animation_type=\"0\" animation_direction=\"left\" animation_speed=\"1\" alignment=\"\" class=\"\" id=\"\"]2016 RATES[/button][/one_half][/fullwidth][fullwidth background_color=\"#f0f0ed\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"20\" padding_bottom=\"20\" padding_left=\"0px\" padding_right=\"0px\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][one_half last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][fusion_text]\r\n<h3 style=\"text-align: justify;\">Set in the rolling peaks and valleys of a thousand hills surrounded by a canopy of indigenous trees, you will find that horses still have right of way, we certainly offer the best of both worlds, farm and charm coupled with modern amenities that will have you feeling relaxed and rejuvenated.</h3>\r\n<h3 style=\"text-align: justify;\">We know that sometimes you are searching for a romantic getaway or maybe a few days away with old friends. Other times you are searching for a place to host a weekend, family reunion or a business retreat. In addition to nightly room rentals, our lodge is also available for meetings, retreats  and makes the perfect place for a wedding party to stay together and get ready for the big day. Regardless, with our five comfortable and cozy guest bedrooms, multiple garden spaces and hideaways, and a  large private deck  where you can take a nap or read a book we definitely have the room for you!</h3>\r\n<h3 style=\"text-align: justify;\">Evenings are quiet and peaceful taking you far away from the business of city life. This is a unique and memorable country experience. We look forward to having you as a guest!</h3>\r\n[/fusion_text][/one_half][one_half last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][fusion_text]\r\n<h3 style=\"text-align: justify;\">Our lodge has been in our family for years and has recently been beautifully renovated. Five rooms all with en-suite showers lead off your own large central lounge, featuring a 36 foot high vaulted ceiling, offering spacious living, dining, and a bar/conversational lounge area which includes a fitted kitchenette, all adding to a sense of homely comfort. Sumptuous meals can be provided on request and served on the bottom deck at the swimming pool.</h3>\r\n<h3 style=\"text-align: justify;\">Be lulled to sleep by the sound of the waterfall and tinkling stream just outside your window, waking from a peaceful night\'s sleep in a pillow-top bed dressed in luxurious linens to coddle you in ultimate comfort.</h3>\r\n<h3 style=\"text-align: justify;\">Our property boasts many different species of birds and animals. We have a resident otter, a family of wild bush pigs,  a family of rock rabbits, porcupine, little blue duikers, a variety of different frogs and an abundance of bird life, including the occasional snakes that pass through!</h3>\r\n[/fusion_text][/one_half][/fullwidth][one_full last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][fusion_code]PGRpdiBjbGFzcz0iYWlyYm5iLWVtYmVkLWZyYW1lIiBkYXRhLWNpdHktbGluay1pbmRleD0iMCIgZGF0YS1lYj0iMTQ2OTQ0MDY3MF8wMDQ4ZnJlRmQ3SWhISm5TIiBkYXRhLWV1PSJQTzArOCt6SnZGRldXMWdaclhEWEZpNTRaM0hyTUwxV3FKVUhTQTlNaFhGTkFOa0RLTFF3RlVEYnZPQnYga0o5UUxUd1Q2aEN2YlI3NmZTVnEzSWpCRk4rMTNCd1pKWHJzVm9tN1BYcTUxMk9jR2ttMG9lRjZaUTNpIHpNKy9WaHJ4S2pwRFdXZkRtT2xuSVJaRm05NjA1aThhejA2YlJKVDFnYm4vbVczbTA1YWJtNkROZU0xcyBEYUk3TjZkQm5uWXF3QWJ4NGNKdFFzR2pyNjM2U3BFNng4SkVsbkdEbVovVjlyUENiQWM2U3NZVTNvM0YgZE91UEVEeDNOQlhaZkF4U1M1TDJ6UDh0d0V6MWg1RzVWTUlRdjRvWU04VFV0dXR1OVIvUHgzL0ZFQ0ZqIHM2UjZKa1dKWUp0QUUxd3RDSmJvdFBRM0ZmQlIzVytnT2prUFY2ZDk1QT09ICIgZGF0YS1lbWJlZC1zb3VyY2UtdHlwZT0iYmFkZ2VfY2VudGVyIiBkYXRhLXRyaWdnZXItc291cmNlLXR5cGU9ImJhZGdlX2NlbnRlciIgZGF0YS1saXN0aW5nLWlkPSIxMTgyMTA2MCIgZGF0YS1waG90by11cmw9Imh0dHBzOi8vYTIubXVzY2FjaGUuY29tL2ltL3BpY3R1cmVzLzdhN2RjOTEyLWQ2MzgtNDhmZi1hMTgwLWIyOGZmZDdlYTI0ZC5qcGc/YWtpX3BvbGljeT14X2xhcmdlIiBkYXRhLXZpZXc9Imxpc3RpbmdfZnJhbWUiIHN0eWxlPSJtYXgtd2lkdGg6NjAwcHg7bWFyZ2luOmF1dG87dHJhbnNpdGlvbjpoZWlnaHQgLjJzOyI+PGltZyBzcmM9Imh0dHBzOi8vYTIubXVzY2FjaGUuY29tL2ltL3BpY3R1cmVzLzdhN2RjOTEyLWQ2MzgtNDhmZi1hMTgwLWIyOGZmZDdlYTI0ZC5qcGc/YWtpX3BvbGljeT14X2xhcmdlIiBzdHlsZT0ibWF4LXdpZHRoOjEwMCU7IiBhbHQ9IiIvPjxkaXY+PGEgaHJlZj0iaHR0cHM6Ly93d3cuYWlyYm5iLmNvbS9yb29tcy8xMTgyMTA2MCIgcmVsPSJub2ZvbGxvdyI+PGg0PkFzc2FnYXkgRm9yZXN0IExvZGdlIC1TZWxmIENhdGVyaW5nPC9oND48L2E+PGRpdj5PdXRlciBXZXN0IER1cmJhbiwgS3dhWnVsdS1OYXRhbCwgU291dGggQWZyaWNhPC9kaXY+PGJsb2NrcXVvdGU+QmVhdXRpZnVsbHkgcmVub3ZhdGVkLiBGaXZlIHJvb21zIFtlbi1zdWl0ZV0gbGVhZCBvZmYgeW91ciBvd24gbGFyZ2UgY2VudHJhbCBsb3VuZ2UsIGZlYXR1cmluZyBhIDM2IGZvb3QgaGlnaCB2YXVsdGVkIGNlaWxpbmcsIG9mZmVyaW5nIHNwYWNpb3VzIGxpdmluZywgZGluaW5nLCBhbmQgYSBjb252ZXJzYXRpb25hbCBsb3VuZ2UgYXJlYSB3aGkuLi48L2Jsb2NrcXVvdGU+PC9kaXY+PHNjcmlwdCBhc3luYz0iIiBzcmM9Imh0dHBzOi8vd3d3LmFpcmJuYi5jb20vZW1iZWRkYWJsZS9haXJibmJfanNzZGsiPjwvc2NyaXB0PjwvZGl2Pg==[/fusion_code][/one_full][fullwidth background_color=\"#f0f0ed\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"20\" padding_bottom=\"20\" padding_left=\"0px\" padding_right=\"0px\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][fusion_text]\r\n<h1 style=\"text-align: center;\">Gallery</h1>\r\n[/fusion_text][separator style_type=\"single\" top_margin=\"\" bottom_margin=\"40\" sep_color=\"#000000\" border_size=\"\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"170px\" alignment=\"\" class=\"\" id=\"\"][one_sixth last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][/one_sixth][two_third last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][fusion_text]\r\n<h3 style=\"text-align: justify;\">The Lodge is open, spacious, comfortable and homely. During hot summer days, sit and bask in the sun on the deck  with one of our  picnic specials. In winter, snuggle up with a good book or challenge one another to a friendly board game in the glassed nook area .</h3>\r\n[/fusion_text][/two_third][one_sixth last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][/one_sixth][/fullwidth][fullwidth background_color=\"#f0f0ed\" background_image=\"http://localhost/assagaylodge/wp-content/uploads/2015/01/Wood_Texture.jpg\" background_parallax=\"fixed\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"30\" padding_bottom=\"10\" padding_left=\"0\" padding_right=\"0\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][recent_works layout=\"grid\" picture_size=\"auto\" boxed_text=\"unboxed\" filters=\"no\" columns=\"3\" column_spacing=\"12\" cat_slug=\"the-lodge\" exclude_cats=\"\" number_posts=\"9\" offset=\"\" excerpt_length=\"35\" strip_html=\"yes\" carousel_layout=\"title_on_rollover\" scroll_items=\"\" autoplay=\"no\" show_nav=\"yes\" mouse_scroll=\"no\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" class=\"\" id=\"\"][/recent_works][/fullwidth][fullwidth background_color=\"#f0f0ed\" background_image=\"\" background_parallax=\"fixed\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"20\" padding_bottom=\"20\" padding_left=\"0px\" padding_right=\"0px\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][fusion_text]\r\n<h1 style=\"text-align: center;\">BEDROOMS</h1>\r\n[/fusion_text][separator style_type=\"single\" top_margin=\"\" bottom_margin=\"20\" sep_color=\"#000000\" border_size=\"\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"170px\" alignment=\"\" class=\"\" id=\"\"][one_sixth last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][/one_sixth][two_third last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][fusion_text]\r\n<h3 style=\"text-align: justify;\">When it comes to our bedrooms we’re proud to say we offer something a little more special. One of five  lovingly and tastefully decorated guest rooms. Soft gray decor soothes the senses providing a peaceful, blissfully comfortable rest from your travels and hectic lives.</h3>\r\n<h3 style=\"text-align: justify;\">Our  bedrooms are spacious, clean, comfortable all en-suite, equipped with either king size or queen size beds. Each room sleeps two guests. The rooms have high ceilings, wall heaters &amp; ceiling fans. Beds all have electric blankets in Winter, 100% cotton percale sheets and thick hyper allergenic microfiber duvets and pillows. All guest rooms are cleaned with organic and green products. Amenities include hairdryers in each room. Three rooms feature King-sized beds  of which two can be  split into two single beds. Two  rooms can therefore be changed into a twin room upon request. Two rooms feature a Queen-sized double bed. These beds cannot be split into twin beds.</h3>\r\n[/fusion_text][/two_third][one_sixth last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][/one_sixth][/fullwidth][fullwidth background_color=\"\" background_image=\"http://localhost/assagaylodge/wp-content/uploads/2015/01/DSC01516-1148-x-764.jpg\" background_parallax=\"fixed\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"center center\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"20\" padding_bottom=\"20\" padding_left=\"0\" padding_right=\"0\" hundred_percent=\"no\" equal_height_columns=\"yes\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][recent_works layout=\"grid\" picture_size=\"auto\" boxed_text=\"unboxed\" filters=\"no\" columns=\"3\" column_spacing=\"12\" cat_slug=\"bedrooms\" exclude_cats=\"\" number_posts=\"6\" offset=\"\" excerpt_length=\"35\" strip_html=\"yes\" carousel_layout=\"title_on_rollover\" scroll_items=\"\" autoplay=\"no\" show_nav=\"yes\" mouse_scroll=\"no\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" class=\"\" id=\"\"][/recent_works][/fullwidth][fullwidth background_color=\"#f0f0ed\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"20\" padding_bottom=\"20\" padding_left=\"0\" padding_right=\"0\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][fusion_text]\r\n<h1 style=\"text-align: center;\">GARDENS</h1>\r\n[/fusion_text][separator style_type=\"single\" top_margin=\"\" bottom_margin=\"20\" sep_color=\"#000000\" border_size=\"\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"170px\" alignment=\"\" class=\"\" id=\"\"][one_sixth last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][/one_sixth][two_third last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][fusion_text]\r\n<h3 style=\"text-align: justify;\">The garden is large and offers many secluded spots to lose yourself in a book with a glass of wine underneath the shade of a tree, listening to the sounds of the birds and smelling the beautiful flowers.</h3>\r\n[/fusion_text][/two_third][one_sixth last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][/one_sixth][recent_works layout=\"grid\" picture_size=\"auto\" boxed_text=\"boxed\" filters=\"no\" columns=\"3\" column_spacing=\"12\" cat_slug=\"gardens\" exclude_cats=\"\" number_posts=\"9\" offset=\"\" excerpt_length=\"35\" strip_html=\"yes\" carousel_layout=\"title_on_rollover\" scroll_items=\"\" autoplay=\"no\" show_nav=\"yes\" mouse_scroll=\"no\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" class=\"\" id=\"\"][/recent_works][/fullwidth][fullwidth background_color=\"#ffffff\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"65px\" padding_bottom=\"65px\" padding_left=\"0px\" padding_right=\"0px\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][button link=\"http://localhost/assagaylodge/book-now/\" color=\"default\" size=\"xlarge\" type=\"3d\" shape=\"round\" target=\"_self\" title=\"\" gradient_colors=\"#f0f0ed|#f0f0ed\" gradient_hover_colors=\"#6666a4|#6666a4\" accent_color=\"#ffffff\" accent_hover_color=\"#ffffff\" bevel_color=\"\" border_width=\"0px\" icon=\"\" icon_position=\"left\" icon_divider=\"no\" modal=\"\" animation_type=\"0\" animation_direction=\"left\" animation_speed=\"1\" alignment=\"center\" class=\"\" id=\"\"]Make A Reservation Enquiry[/button][/fullwidth]', 'Home', '', 'inherit', 'closed', 'closed', '', '7-revision-v1', '', '', '2016-07-25 12:38:09', '2016-07-25 10:38:09', '', 7, 'http://msla.co.za/lodge/7-revision-v1/', 0, 'revision', '', 0);
INSERT INTO `wp_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(1233, 1, '2016-07-25 12:42:44', '2016-07-25 10:42:44', '[fullwidth background_color=\"#f0f0ed\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"20\" padding_bottom=\"20\" padding_left=\"0px\" padding_right=\"0px\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][one_half last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][separator style_type=\"single\" top_margin=\"0\" bottom_margin=\"30\" sep_color=\"#000000\" border_size=\"\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"170px\" alignment=\"center\" class=\"separator-left\" id=\"\"][fusion_text]\r\n<h1 style=\"text-align: center;\">No Fancy Star Grading\r\nNo Room Service\r\nNo Bed Turn-downs\r\nNo Rose Petals in the Bath water</h1>\r\n<h1 style=\"text-align: center;\">... just old fashioned homely comforts</h1>\r\n[/fusion_text][/one_half][one_half last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][fusion_text]\r\n<h1 style=\"text-align: justify;\">5 BEDROOM FAMILY LODGE</h1>\r\n<h3 style=\"text-align: justify;\">We are a four season lodge, because there’s always something to celebrate… We offer comfort, relaxation and privacy right in the heart of 1000 Hills. The Forest, the Gardens, the Atmosphere all speak to  Rest  &amp; Relaxation.</h3>\r\n[/fusion_text][separator style_type=\"single\" top_margin=\"0\" bottom_margin=\"30\" sep_color=\"#000000\" border_size=\"\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"170px\" alignment=\"left\" class=\"separator-left\" id=\"\"][modal name=\"rates\" title=\"2015 Rates\" size=\"large\" background=\"\" border_color=\"\" show_footer=\"yes\" class=\"\" id=\"\"]\r\n<table style=\"width: 100%;\" cellspacing=\"10\" cellpadding=\"5\">\r\n<tbody>\r\n<tr>\r\n<td colspan=\"2\"><span style=\"font-size: 10pt;\">ALL PRICES INCLUDE VAT </span></td>\r\n</tr>\r\n<tr>\r\n<td colspan=\"2\"><span style=\"font-size: 12pt;\"><strong>Self-Catering / Self-Servicing Accommodation</strong></span></td>\r\n</tr>\r\n<tr>\r\n<td><span style=\"font-size: 12pt;\">Full House - Max 10 persons per lodge</span></td>\r\n<td><span style=\"font-size: 12pt;\"><strong>R3250</strong> per night (R325 per person)</span></td>\r\n</tr>\r\n<tr>\r\n<td><span style=\"font-size: 12pt;\">Single - Max 1 person per room</span></td>\r\n<td><span style=\"font-size: 12pt;\"><strong>R 650</strong> per person per night</span></td>\r\n</tr>\r\n<tr>\r\n<td><span style=\"font-size: 12pt;\">Sharing - Max 2 persons per room</span></td>\r\n<td><span style=\"font-size: 12pt;\"><strong>R 495</strong> per person per night</span></td>\r\n</tr>\r\n<tr>\r\n<td></td>\r\n<td></td>\r\n</tr>\r\n<tr>\r\n<td><strong><span style=\"font-size: 12pt;\">Servicing Options</span></strong></td>\r\n<td></td>\r\n</tr>\r\n<tr>\r\n<td><span style=\"font-size: 12pt;\">Lodge Only Servicing (Optional) </span></td>\r\n<td><span style=\"font-size: 12pt;\"><strong>R30</strong> per person per day - Max <span style=\"font-size: 12pt;\"><strong>R 150 </strong>per day</span></span></td>\r\n</tr>\r\n<tr>\r\n<td><span style=\"font-size: 12pt;\">Lodge &amp; Room Servicing (Optional) </span></td>\r\n<td><span style=\"font-size: 12pt;\"><strong>R50</strong> per person per day - Max <span style=\"font-size: 12pt;\"><strong>R 250 </strong>per day</span></span></td>\r\n</tr>\r\n<tr>\r\n<td></td>\r\n<td></td>\r\n</tr>\r\n<tr>\r\n<td colspan=\"2\"><span style=\"font-size: 12pt;\"><span style=\"font-size: 12pt;\"><strong>Catering Options</strong></span> </span></td>\r\n</tr>\r\n<tr>\r\n<td><span style=\"font-size: 12pt;\"> <span style=\"font-size: 12pt;\">Breakfast (Continental)</span></span></td>\r\n<td><span style=\"font-size: 12pt;\"> <span style=\"font-size: 12pt;\"><strong>R 55</strong> per person</span></span></td>\r\n</tr>\r\n<tr>\r\n<td><span style=\"font-size: 12pt;\"> <span style=\"font-size: 12pt;\">Breakfast (Full English)</span></span></td>\r\n<td><span style=\"font-size: 12pt;\"> <span style=\"font-size: 12pt;\"><strong>R 75</strong> per person</span></span></td>\r\n</tr>\r\n<tr>\r\n<td><span style=\"font-size: 12pt;\"> <span style=\"font-size: 12pt;\">Light Lunch</span></span></td>\r\n<td><span style=\"font-size: 12pt;\">From <span style=\"font-size: 12pt;\"><strong>R 95 </strong>per person</span></span></td>\r\n</tr>\r\n<tr>\r\n<td><span style=\"font-size: 12pt;\"> <span style=\"font-size: 12pt;\">Dinners</span></span></td>\r\n<td><span style=\"font-size: 12pt;\">From <span style=\"font-size: 12pt;\"><strong>R 150 </strong>per person</span></span></td>\r\n</tr>\r\n<tr>\r\n<td></td>\r\n<td></td>\r\n</tr>\r\n<tr>\r\n<td><strong><span style=\"font-size: 12pt;\">Others</span></strong></td>\r\n<td></td>\r\n</tr>\r\n<tr>\r\n<td><span style=\"font-size: 12pt;\">Gate Remote</span></td>\r\n<td><span style=\"font-size: 12pt;\"><strong>R 200 </strong>deposit</span></td>\r\n</tr>\r\n<tr>\r\n<td><span style=\"font-size: 12pt;\">Gas Braai</span></td>\r\n<td><span style=\"font-size: 12pt;\"><strong>R 120 </strong>per day</span></td>\r\n</tr>\r\n<tr>\r\n<td><span style=\"font-size: 12pt;\">Day Visitors / Guests</span></td>\r\n<td><span style=\"font-size: 12pt;\"><strong>R 50 </strong>per person per day</span></td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n\r\n<hr />\r\n\r\n[/modal][button link=\"\" color=\"darkgreen\" size=\"\" type=\"\" shape=\"\" target=\"_self\" title=\"\" gradient_colors=\"|\" gradient_hover_colors=\"|\" accent_color=\"\" accent_hover_color=\"\" bevel_color=\"\" border_width=\"1px\" icon=\"\" icon_position=\"left\" icon_divider=\"no\" modal=\"rates\" animation_type=\"0\" animation_direction=\"left\" animation_speed=\"1\" alignment=\"\" class=\"\" id=\"\"]2016 RATES[/button][/one_half][/fullwidth][fullwidth background_color=\"#f0f0ed\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"20\" padding_bottom=\"20\" padding_left=\"0px\" padding_right=\"0px\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][one_half last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][fusion_text]\r\n<h3 style=\"text-align: justify;\">Set in the rolling peaks and valleys of a thousand hills surrounded by a canopy of indigenous trees, you will find that horses still have right of way, we certainly offer the best of both worlds, farm and charm coupled with modern amenities that will have you feeling relaxed and rejuvenated.</h3>\r\n<h3 style=\"text-align: justify;\">We know that sometimes you are searching for a romantic getaway or maybe a few days away with old friends. Other times you are searching for a place to host a weekend, family reunion or a business retreat. In addition to nightly room rentals, our lodge is also available for meetings, retreats  and makes the perfect place for a wedding party to stay together and get ready for the big day. Regardless, with our five comfortable and cozy guest bedrooms, multiple garden spaces and hideaways, and a  large private deck  where you can take a nap or read a book we definitely have the room for you!</h3>\r\n<h3 style=\"text-align: justify;\">Evenings are quiet and peaceful taking you far away from the business of city life. This is a unique and memorable country experience. We look forward to having you as a guest!</h3>\r\n[/fusion_text][/one_half][one_half last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][fusion_text]\r\n<h3 style=\"text-align: justify;\">Our lodge has been in our family for years and has recently been beautifully renovated. Five rooms all with en-suite showers lead off your own large central lounge, featuring a 36 foot high vaulted ceiling, offering spacious living, dining, and a bar/conversational lounge area which includes a fitted kitchenette, all adding to a sense of homely comfort. Sumptuous meals can be provided on request and served on the bottom deck at the swimming pool.</h3>\r\n<h3 style=\"text-align: justify;\">Be lulled to sleep by the sound of the waterfall and tinkling stream just outside your window, waking from a peaceful night\'s sleep in a pillow-top bed dressed in luxurious linens to coddle you in ultimate comfort.</h3>\r\n<h3 style=\"text-align: justify;\">Our property boasts many different species of birds and animals. We have a resident otter, a family of wild bush pigs,  a family of rock rabbits, porcupine, little blue duikers, a variety of different frogs and an abundance of bird life, including the occasional snakes that pass through!</h3>\r\n[/fusion_text][/one_half][one_half last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][fusion_code]PGRpdiBjbGFzcz0iYWlyYm5iLWVtYmVkLWZyYW1lIiBkYXRhLWNpdHktbGluay1pbmRleD0iMCIgZGF0YS1lYj0iMTQ2OTQ0MDY3MF8wMDQ4ZnJlRmQ3SWhISm5TIiBkYXRhLWV1PSJQTzArOCt6SnZGRldXMWdaclhEWEZpNTRaM0hyTUwxV3FKVUhTQTlNaFhGTkFOa0RLTFF3RlVEYnZPQnYga0o5UUxUd1Q2aEN2YlI3NmZTVnEzSWpCRk4rMTNCd1pKWHJzVm9tN1BYcTUxMk9jR2ttMG9lRjZaUTNpIHpNKy9WaHJ4S2pwRFdXZkRtT2xuSVJaRm05NjA1aThhejA2YlJKVDFnYm4vbVczbTA1YWJtNkROZU0xcyBEYUk3TjZkQm5uWXF3QWJ4NGNKdFFzR2pyNjM2U3BFNng4SkVsbkdEbVovVjlyUENiQWM2U3NZVTNvM0YgZE91UEVEeDNOQlhaZkF4U1M1TDJ6UDh0d0V6MWg1RzVWTUlRdjRvWU04VFV0dXR1OVIvUHgzL0ZFQ0ZqIHM2UjZKa1dKWUp0QUUxd3RDSmJvdFBRM0ZmQlIzVytnT2prUFY2ZDk1QT09ICIgZGF0YS1lbWJlZC1zb3VyY2UtdHlwZT0iYmFkZ2VfY2VudGVyIiBkYXRhLXRyaWdnZXItc291cmNlLXR5cGU9ImJhZGdlX2NlbnRlciIgZGF0YS1saXN0aW5nLWlkPSIxMTgyMTA2MCIgZGF0YS1waG90by11cmw9Imh0dHBzOi8vYTIubXVzY2FjaGUuY29tL2ltL3BpY3R1cmVzLzdhN2RjOTEyLWQ2MzgtNDhmZi1hMTgwLWIyOGZmZDdlYTI0ZC5qcGc/YWtpX3BvbGljeT14X2xhcmdlIiBkYXRhLXZpZXc9Imxpc3RpbmdfZnJhbWUiIHN0eWxlPSJtYXgtd2lkdGg6NjAwcHg7bWFyZ2luOmF1dG87dHJhbnNpdGlvbjpoZWlnaHQgLjJzOyI+PGltZyBzcmM9Imh0dHBzOi8vYTIubXVzY2FjaGUuY29tL2ltL3BpY3R1cmVzLzdhN2RjOTEyLWQ2MzgtNDhmZi1hMTgwLWIyOGZmZDdlYTI0ZC5qcGc/YWtpX3BvbGljeT14X2xhcmdlIiBzdHlsZT0ibWF4LXdpZHRoOjEwMCU7IiBhbHQ9IiIvPjxkaXY+PGEgaHJlZj0iaHR0cHM6Ly93d3cuYWlyYm5iLmNvbS9yb29tcy8xMTgyMTA2MCIgcmVsPSJub2ZvbGxvdyI+PGg0PkFzc2FnYXkgRm9yZXN0IExvZGdlIC1TZWxmIENhdGVyaW5nPC9oND48L2E+PGRpdj5PdXRlciBXZXN0IER1cmJhbiwgS3dhWnVsdS1OYXRhbCwgU291dGggQWZyaWNhPC9kaXY+PGJsb2NrcXVvdGU+QmVhdXRpZnVsbHkgcmVub3ZhdGVkLiBGaXZlIHJvb21zIFtlbi1zdWl0ZV0gbGVhZCBvZmYgeW91ciBvd24gbGFyZ2UgY2VudHJhbCBsb3VuZ2UsIGZlYXR1cmluZyBhIDM2IGZvb3QgaGlnaCB2YXVsdGVkIGNlaWxpbmcsIG9mZmVyaW5nIHNwYWNpb3VzIGxpdmluZywgZGluaW5nLCBhbmQgYSBjb252ZXJzYXRpb25hbCBsb3VuZ2UgYXJlYSB3aGkuLi48L2Jsb2NrcXVvdGU+PC9kaXY+PHNjcmlwdCBhc3luYz0iIiBzcmM9Imh0dHBzOi8vd3d3LmFpcmJuYi5jb20vZW1iZWRkYWJsZS9haXJibmJfanNzZGsiPjwvc2NyaXB0PjwvZGl2Pg==[/fusion_code][/one_half][one_half last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][fusion_code]PGRpdiBjbGFzcz0iYWlyYm5iLWVtYmVkLWZyYW1lIiBkYXRhLXJldmlldy1jb3VudD0iMiIgZGF0YS1yZXZpZXctcmF0aW5nPSI1IiBkYXRhLXZpZXc9InN0YXJfcmF0aW5nX2J1dHRvbiIgZGF0YS1saXN0aW5nLWlkPSIxMTgyMTA2MCIgZGF0YS1lYj0iMTQ2OTQ0MDY3MF8wMDQ4ZnJlRmQ3SWhISm5TIiBkYXRhLWV1PSJQTzArOCt6SnZGRldXMWdaclhEWEZpNTRaM0hyTUwxV3FKVUhTQTlNaFhGTkFOa0RLTFF3RlVEYnZPQnYga0o5UUxUd1Q2aEN2YlI3NmZTVnEzSWpCRk4rMTNCd1pKWHJzVm9tN1BYcTUxMk9jR2ttMG9lRjZaUTNpIHpNKy9WaHJ4S2pwRFdXZkRtT2xuSVJaRm05NjA1aThhejA2YlJKVDFnYm4vbVczbTA1YWJtNkROZU0xcyBEYUk3TjZkQm5uWXF3QWJ4NGNKdFFzR2pyNjM2U3BFNng4SkVsbkdEbVovVjlyUENiQWM2U3NZVTNvM0YgZE91UEVEeDNOQlhaZkF4U1M1TDJ6UDh0d0V6MWg1RzVWTUlRdjRvWU04VFV0dXR1OVIvUHgzL0ZFQ0ZqIHM2UjZKa1dKWUp0QUUxd3RDSmJvdFBRM0ZmQlIzVytnT2prUFY2ZDk1QT09ICIgZGF0YS10cmlnZ2VyLXNvdXJjZS10eXBlPSJiYWRnZV9jZW50ZXIiIGRhdGEtZW1iZWQtc291cmNlLXR5cGU9ImJhZGdlX2NlbnRlciIgZGF0YS1saXN0aW5nLXVybD0iaHR0cHM6Ly93d3cuYWlyYm5iLmNvbS9yb29tcy8xMTgyMTA2MCIgc3R5bGU9ImhlaWdodDo3NXB4O21hcmdpbjphdXRvOyI+PGEgaHJlZj0iaHR0cHM6Ly93d3cuYWlyYm5iLmNvbS9yb29tcy8xMTgyMTA2MCI+PHNwYW4+NS1zdGFyIHdpdGggPC9zcGFuPjxzcGFuPjxzcGFuPjIgcmV2aWV3czwvc3Bhbj48L3NwYW4+PC9hPjxzY3JpcHQgYXN5bmM9IiIgc3JjPSJodHRwczovL3d3dy5haXJibmIuY29tL2VtYmVkZGFibGUvYWlyYm5iX2pzc2RrIj48L3NjcmlwdD48L2Rpdj4=[/fusion_code][/one_half][/fullwidth][fullwidth background_color=\"#f0f0ed\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"20\" padding_bottom=\"20\" padding_left=\"0px\" padding_right=\"0px\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][fusion_text]\r\n<h1 style=\"text-align: center;\">Gallery</h1>\r\n[/fusion_text][separator style_type=\"single\" top_margin=\"\" bottom_margin=\"40\" sep_color=\"#000000\" border_size=\"\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"170px\" alignment=\"\" class=\"\" id=\"\"][one_sixth last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][/one_sixth][two_third last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][fusion_text]\r\n<h3 style=\"text-align: justify;\">The Lodge is open, spacious, comfortable and homely. During hot summer days, sit and bask in the sun on the deck  with one of our  picnic specials. In winter, snuggle up with a good book or challenge one another to a friendly board game in the glassed nook area .</h3>\r\n[/fusion_text][/two_third][one_sixth last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][/one_sixth][/fullwidth][fullwidth background_color=\"#f0f0ed\" background_image=\"http://localhost/assagaylodge/wp-content/uploads/2015/01/Wood_Texture.jpg\" background_parallax=\"fixed\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"30\" padding_bottom=\"10\" padding_left=\"0\" padding_right=\"0\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][recent_works layout=\"grid\" picture_size=\"auto\" boxed_text=\"unboxed\" filters=\"no\" columns=\"3\" column_spacing=\"12\" cat_slug=\"the-lodge\" exclude_cats=\"\" number_posts=\"9\" offset=\"\" excerpt_length=\"35\" strip_html=\"yes\" carousel_layout=\"title_on_rollover\" scroll_items=\"\" autoplay=\"no\" show_nav=\"yes\" mouse_scroll=\"no\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" class=\"\" id=\"\"][/recent_works][/fullwidth][fullwidth background_color=\"#f0f0ed\" background_image=\"\" background_parallax=\"fixed\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"20\" padding_bottom=\"20\" padding_left=\"0px\" padding_right=\"0px\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][fusion_text]\r\n<h1 style=\"text-align: center;\">BEDROOMS</h1>\r\n[/fusion_text][separator style_type=\"single\" top_margin=\"\" bottom_margin=\"20\" sep_color=\"#000000\" border_size=\"\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"170px\" alignment=\"\" class=\"\" id=\"\"][one_sixth last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][/one_sixth][two_third last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][fusion_text]\r\n<h3 style=\"text-align: justify;\">When it comes to our bedrooms we’re proud to say we offer something a little more special. One of five  lovingly and tastefully decorated guest rooms. Soft gray decor soothes the senses providing a peaceful, blissfully comfortable rest from your travels and hectic lives.</h3>\r\n<h3 style=\"text-align: justify;\">Our  bedrooms are spacious, clean, comfortable all en-suite, equipped with either king size or queen size beds. Each room sleeps two guests. The rooms have high ceilings, wall heaters &amp; ceiling fans. Beds all have electric blankets in Winter, 100% cotton percale sheets and thick hyper allergenic microfiber duvets and pillows. All guest rooms are cleaned with organic and green products. Amenities include hairdryers in each room. Three rooms feature King-sized beds  of which two can be  split into two single beds. Two  rooms can therefore be changed into a twin room upon request. Two rooms feature a Queen-sized double bed. These beds cannot be split into twin beds.</h3>\r\n[/fusion_text][/two_third][one_sixth last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][/one_sixth][/fullwidth][fullwidth background_color=\"\" background_image=\"http://localhost/assagaylodge/wp-content/uploads/2015/01/DSC01516-1148-x-764.jpg\" background_parallax=\"fixed\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"center center\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"20\" padding_bottom=\"20\" padding_left=\"0\" padding_right=\"0\" hundred_percent=\"no\" equal_height_columns=\"yes\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][recent_works layout=\"grid\" picture_size=\"auto\" boxed_text=\"unboxed\" filters=\"no\" columns=\"3\" column_spacing=\"12\" cat_slug=\"bedrooms\" exclude_cats=\"\" number_posts=\"6\" offset=\"\" excerpt_length=\"35\" strip_html=\"yes\" carousel_layout=\"title_on_rollover\" scroll_items=\"\" autoplay=\"no\" show_nav=\"yes\" mouse_scroll=\"no\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" class=\"\" id=\"\"][/recent_works][/fullwidth][fullwidth background_color=\"#f0f0ed\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"20\" padding_bottom=\"20\" padding_left=\"0\" padding_right=\"0\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][fusion_text]\r\n<h1 style=\"text-align: center;\">GARDENS</h1>\r\n[/fusion_text][separator style_type=\"single\" top_margin=\"\" bottom_margin=\"20\" sep_color=\"#000000\" border_size=\"\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"170px\" alignment=\"\" class=\"\" id=\"\"][one_sixth last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][/one_sixth][two_third last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][fusion_text]\r\n<h3 style=\"text-align: justify;\">The garden is large and offers many secluded spots to lose yourself in a book with a glass of wine underneath the shade of a tree, listening to the sounds of the birds and smelling the beautiful flowers.</h3>\r\n[/fusion_text][/two_third][one_sixth last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][/one_sixth][recent_works layout=\"grid\" picture_size=\"auto\" boxed_text=\"boxed\" filters=\"no\" columns=\"3\" column_spacing=\"12\" cat_slug=\"gardens\" exclude_cats=\"\" number_posts=\"9\" offset=\"\" excerpt_length=\"35\" strip_html=\"yes\" carousel_layout=\"title_on_rollover\" scroll_items=\"\" autoplay=\"no\" show_nav=\"yes\" mouse_scroll=\"no\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" class=\"\" id=\"\"][/recent_works][/fullwidth][fullwidth background_color=\"#ffffff\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"65px\" padding_bottom=\"65px\" padding_left=\"0px\" padding_right=\"0px\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][button link=\"http://localhost/assagaylodge/book-now/\" color=\"default\" size=\"xlarge\" type=\"3d\" shape=\"round\" target=\"_self\" title=\"\" gradient_colors=\"#f0f0ed|#f0f0ed\" gradient_hover_colors=\"#6666a4|#6666a4\" accent_color=\"#ffffff\" accent_hover_color=\"#ffffff\" bevel_color=\"\" border_width=\"0px\" icon=\"\" icon_position=\"left\" icon_divider=\"no\" modal=\"\" animation_type=\"0\" animation_direction=\"left\" animation_speed=\"1\" alignment=\"center\" class=\"\" id=\"\"]Make A Reservation Enquiry[/button][/fullwidth]', 'Home', '', 'inherit', 'closed', 'closed', '', '7-revision-v1', '', '', '2016-07-25 12:42:44', '2016-07-25 10:42:44', '', 7, 'http://msla.co.za/lodge/7-revision-v1/', 0, 'revision', '', 0);
INSERT INTO `wp_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(1234, 1, '2016-07-25 12:48:27', '2016-07-25 10:48:27', '[fullwidth background_color=\"#f0f0ed\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"20\" padding_bottom=\"20\" padding_left=\"0px\" padding_right=\"0px\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][one_half last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][separator style_type=\"single\" top_margin=\"0\" bottom_margin=\"30\" sep_color=\"#000000\" border_size=\"\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"170px\" alignment=\"center\" class=\"separator-left\" id=\"\"][fusion_text]\r\n<h1 style=\"text-align: center;\">No Fancy Star Grading\r\nNo Room Service\r\nNo Bed Turn-downs\r\nNo Rose Petals in the Bath water</h1>\r\n<h1 style=\"text-align: center;\">... just old fashioned homely comforts</h1>\r\n[/fusion_text][/one_half][one_half last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][fusion_text]\r\n<h1 style=\"text-align: justify;\">5 BEDROOM FAMILY LODGE</h1>\r\n<h3 style=\"text-align: justify;\">We are a four season lodge, because there’s always something to celebrate… We offer comfort, relaxation and privacy right in the heart of 1000 Hills. The Forest, the Gardens, the Atmosphere all speak to  Rest  &amp; Relaxation.</h3>\r\n[/fusion_text][separator style_type=\"single\" top_margin=\"0\" bottom_margin=\"30\" sep_color=\"#000000\" border_size=\"\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"170px\" alignment=\"left\" class=\"separator-left\" id=\"\"][modal name=\"rates\" title=\"2015 Rates\" size=\"large\" background=\"\" border_color=\"\" show_footer=\"yes\" class=\"\" id=\"\"]\r\n<table style=\"width: 100%;\" cellspacing=\"10\" cellpadding=\"5\">\r\n<tbody>\r\n<tr>\r\n<td colspan=\"2\"><span style=\"font-size: 10pt;\">ALL PRICES INCLUDE VAT </span></td>\r\n</tr>\r\n<tr>\r\n<td colspan=\"2\"><span style=\"font-size: 12pt;\"><strong>Self-Catering / Self-Servicing Accommodation</strong></span></td>\r\n</tr>\r\n<tr>\r\n<td><span style=\"font-size: 12pt;\">Full House - Max 10 persons per lodge</span></td>\r\n<td><span style=\"font-size: 12pt;\"><strong>R3250</strong> per night (R325 per person)</span></td>\r\n</tr>\r\n<tr>\r\n<td><span style=\"font-size: 12pt;\">Single - Max 1 person per room</span></td>\r\n<td><span style=\"font-size: 12pt;\"><strong>R 650</strong> per person per night</span></td>\r\n</tr>\r\n<tr>\r\n<td><span style=\"font-size: 12pt;\">Sharing - Max 2 persons per room</span></td>\r\n<td><span style=\"font-size: 12pt;\"><strong>R 495</strong> per person per night</span></td>\r\n</tr>\r\n<tr>\r\n<td></td>\r\n<td></td>\r\n</tr>\r\n<tr>\r\n<td><strong><span style=\"font-size: 12pt;\">Servicing Options</span></strong></td>\r\n<td></td>\r\n</tr>\r\n<tr>\r\n<td><span style=\"font-size: 12pt;\">Lodge Only Servicing (Optional) </span></td>\r\n<td><span style=\"font-size: 12pt;\"><strong>R30</strong> per person per day - Max <span style=\"font-size: 12pt;\"><strong>R 150 </strong>per day</span></span></td>\r\n</tr>\r\n<tr>\r\n<td><span style=\"font-size: 12pt;\">Lodge &amp; Room Servicing (Optional) </span></td>\r\n<td><span style=\"font-size: 12pt;\"><strong>R50</strong> per person per day - Max <span style=\"font-size: 12pt;\"><strong>R 250 </strong>per day</span></span></td>\r\n</tr>\r\n<tr>\r\n<td></td>\r\n<td></td>\r\n</tr>\r\n<tr>\r\n<td colspan=\"2\"><span style=\"font-size: 12pt;\"><span style=\"font-size: 12pt;\"><strong>Catering Options</strong></span> </span></td>\r\n</tr>\r\n<tr>\r\n<td><span style=\"font-size: 12pt;\"> <span style=\"font-size: 12pt;\">Breakfast (Continental)</span></span></td>\r\n<td><span style=\"font-size: 12pt;\"> <span style=\"font-size: 12pt;\"><strong>R 55</strong> per person</span></span></td>\r\n</tr>\r\n<tr>\r\n<td><span style=\"font-size: 12pt;\"> <span style=\"font-size: 12pt;\">Breakfast (Full English)</span></span></td>\r\n<td><span style=\"font-size: 12pt;\"> <span style=\"font-size: 12pt;\"><strong>R 75</strong> per person</span></span></td>\r\n</tr>\r\n<tr>\r\n<td><span style=\"font-size: 12pt;\"> <span style=\"font-size: 12pt;\">Light Lunch</span></span></td>\r\n<td><span style=\"font-size: 12pt;\">From <span style=\"font-size: 12pt;\"><strong>R 95 </strong>per person</span></span></td>\r\n</tr>\r\n<tr>\r\n<td><span style=\"font-size: 12pt;\"> <span style=\"font-size: 12pt;\">Dinners</span></span></td>\r\n<td><span style=\"font-size: 12pt;\">From <span style=\"font-size: 12pt;\"><strong>R 150 </strong>per person</span></span></td>\r\n</tr>\r\n<tr>\r\n<td></td>\r\n<td></td>\r\n</tr>\r\n<tr>\r\n<td><strong><span style=\"font-size: 12pt;\">Others</span></strong></td>\r\n<td></td>\r\n</tr>\r\n<tr>\r\n<td><span style=\"font-size: 12pt;\">Gate Remote</span></td>\r\n<td><span style=\"font-size: 12pt;\"><strong>R 200 </strong>deposit</span></td>\r\n</tr>\r\n<tr>\r\n<td><span style=\"font-size: 12pt;\">Gas Braai</span></td>\r\n<td><span style=\"font-size: 12pt;\"><strong>R 120 </strong>per day</span></td>\r\n</tr>\r\n<tr>\r\n<td><span style=\"font-size: 12pt;\">Day Visitors / Guests</span></td>\r\n<td><span style=\"font-size: 12pt;\"><strong>R 50 </strong>per person per day</span></td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n\r\n<hr />\r\n\r\n[/modal][button link=\"\" color=\"darkgreen\" size=\"\" type=\"\" shape=\"\" target=\"_self\" title=\"\" gradient_colors=\"|\" gradient_hover_colors=\"|\" accent_color=\"\" accent_hover_color=\"\" bevel_color=\"\" border_width=\"1px\" icon=\"\" icon_position=\"left\" icon_divider=\"no\" modal=\"rates\" animation_type=\"0\" animation_direction=\"left\" animation_speed=\"1\" alignment=\"\" class=\"\" id=\"\"]2016 RATES[/button][/one_half][/fullwidth][fullwidth background_color=\"#f0f0ed\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"20\" padding_bottom=\"20\" padding_left=\"0px\" padding_right=\"0px\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][one_half last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][fusion_text]\r\n<h3 style=\"text-align: justify;\">Set in the rolling peaks and valleys of a thousand hills surrounded by a canopy of indigenous trees, you will find that horses still have right of way, we certainly offer the best of both worlds, farm and charm coupled with modern amenities that will have you feeling relaxed and rejuvenated.</h3>\r\n<h3 style=\"text-align: justify;\">We know that sometimes you are searching for a romantic getaway or maybe a few days away with old friends. Other times you are searching for a place to host a weekend, family reunion or a business retreat. In addition to nightly room rentals, our lodge is also available for meetings, retreats  and makes the perfect place for a wedding party to stay together and get ready for the big day. Regardless, with our five comfortable and cozy guest bedrooms, multiple garden spaces and hideaways, and a  large private deck  where you can take a nap or read a book we definitely have the room for you!</h3>\r\n<h3 style=\"text-align: justify;\">Evenings are quiet and peaceful taking you far away from the business of city life. This is a unique and memorable country experience. We look forward to having you as a guest!</h3>\r\n[/fusion_text][/one_half][one_half last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][fusion_text]\r\n<h3 style=\"text-align: justify;\">Our lodge has been in our family for years and has recently been beautifully renovated. Five rooms all with en-suite showers lead off your own large central lounge, featuring a 36 foot high vaulted ceiling, offering spacious living, dining, and a bar/conversational lounge area which includes a fitted kitchenette, all adding to a sense of homely comfort. Sumptuous meals can be provided on request and served on the bottom deck at the swimming pool.</h3>\r\n<h3 style=\"text-align: justify;\">Be lulled to sleep by the sound of the waterfall and tinkling stream just outside your window, waking from a peaceful night\'s sleep in a pillow-top bed dressed in luxurious linens to coddle you in ultimate comfort.</h3>\r\n<h3 style=\"text-align: justify;\">Our property boasts many different species of birds and animals. We have a resident otter, a family of wild bush pigs,  a family of rock rabbits, porcupine, little blue duikers, a variety of different frogs and an abundance of bird life, including the occasional snakes that pass through!</h3>\r\n[/fusion_text][/one_half][one_half last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][fusion_code]PGRpdiBjbGFzcz0iYWlyYm5iLWVtYmVkLWZyYW1lIiBkYXRhLWNpdHktbGluay1pbmRleD0iMCIgZGF0YS1lYj0iMTQ2OTQ0MDY3MF8wMDQ4ZnJlRmQ3SWhISm5TIiBkYXRhLWV1PSJQTzArOCt6SnZGRldXMWdaclhEWEZpNTRaM0hyTUwxV3FKVUhTQTlNaFhGTkFOa0RLTFF3RlVEYnZPQnYga0o5UUxUd1Q2aEN2YlI3NmZTVnEzSWpCRk4rMTNCd1pKWHJzVm9tN1BYcTUxMk9jR2ttMG9lRjZaUTNpIHpNKy9WaHJ4S2pwRFdXZkRtT2xuSVJaRm05NjA1aThhejA2YlJKVDFnYm4vbVczbTA1YWJtNkROZU0xcyBEYUk3TjZkQm5uWXF3QWJ4NGNKdFFzR2pyNjM2U3BFNng4SkVsbkdEbVovVjlyUENiQWM2U3NZVTNvM0YgZE91UEVEeDNOQlhaZkF4U1M1TDJ6UDh0d0V6MWg1RzVWTUlRdjRvWU04VFV0dXR1OVIvUHgzL0ZFQ0ZqIHM2UjZKa1dKWUp0QUUxd3RDSmJvdFBRM0ZmQlIzVytnT2prUFY2ZDk1QT09ICIgZGF0YS1lbWJlZC1zb3VyY2UtdHlwZT0iYmFkZ2VfY2VudGVyIiBkYXRhLXRyaWdnZXItc291cmNlLXR5cGU9ImJhZGdlX2NlbnRlciIgZGF0YS1saXN0aW5nLWlkPSIxMTgyMTA2MCIgZGF0YS1waG90by11cmw9Imh0dHBzOi8vYTIubXVzY2FjaGUuY29tL2ltL3BpY3R1cmVzLzdhN2RjOTEyLWQ2MzgtNDhmZi1hMTgwLWIyOGZmZDdlYTI0ZC5qcGc/YWtpX3BvbGljeT14X2xhcmdlIiBkYXRhLXZpZXc9Imxpc3RpbmdfZnJhbWUiIHN0eWxlPSJtYXgtd2lkdGg6NjAwcHg7bWFyZ2luOmF1dG87dHJhbnNpdGlvbjpoZWlnaHQgLjJzOyI+PGltZyBzcmM9Imh0dHBzOi8vYTIubXVzY2FjaGUuY29tL2ltL3BpY3R1cmVzLzdhN2RjOTEyLWQ2MzgtNDhmZi1hMTgwLWIyOGZmZDdlYTI0ZC5qcGc/YWtpX3BvbGljeT14X2xhcmdlIiBzdHlsZT0ibWF4LXdpZHRoOjEwMCU7IiBhbHQ9IiIvPjxkaXY+PGEgaHJlZj0iaHR0cHM6Ly93d3cuYWlyYm5iLmNvbS9yb29tcy8xMTgyMTA2MCIgcmVsPSJub2ZvbGxvdyI+PGg0PkFzc2FnYXkgRm9yZXN0IExvZGdlIC1TZWxmIENhdGVyaW5nPC9oND48L2E+PGRpdj5PdXRlciBXZXN0IER1cmJhbiwgS3dhWnVsdS1OYXRhbCwgU291dGggQWZyaWNhPC9kaXY+PC9kaXY+PHNjcmlwdCBhc3luYz0iIiBzcmM9Imh0dHBzOi8vd3d3LmFpcmJuYi5jb20vZW1iZWRkYWJsZS9haXJibmJfanNzZGsiPjwvc2NyaXB0PjwvZGl2Pg==[/fusion_code][/one_half][one_half last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][fusion_code]PGRpdiBjbGFzcz0iYWlyYm5iLWVtYmVkLWZyYW1lIiBkYXRhLXJldmlldy1jb3VudD0iMiIgZGF0YS1yZXZpZXctcmF0aW5nPSI1IiBkYXRhLXZpZXc9InN0YXJfcmF0aW5nX2J1dHRvbiIgZGF0YS1saXN0aW5nLWlkPSIxMTgyMTA2MCIgZGF0YS1lYj0iMTQ2OTQ0MDY3MF8wMDQ4ZnJlRmQ3SWhISm5TIiBkYXRhLWV1PSJQTzArOCt6SnZGRldXMWdaclhEWEZpNTRaM0hyTUwxV3FKVUhTQTlNaFhGTkFOa0RLTFF3RlVEYnZPQnYga0o5UUxUd1Q2aEN2YlI3NmZTVnEzSWpCRk4rMTNCd1pKWHJzVm9tN1BYcTUxMk9jR2ttMG9lRjZaUTNpIHpNKy9WaHJ4S2pwRFdXZkRtT2xuSVJaRm05NjA1aThhejA2YlJKVDFnYm4vbVczbTA1YWJtNkROZU0xcyBEYUk3TjZkQm5uWXF3QWJ4NGNKdFFzR2pyNjM2U3BFNng4SkVsbkdEbVovVjlyUENiQWM2U3NZVTNvM0YgZE91UEVEeDNOQlhaZkF4U1M1TDJ6UDh0d0V6MWg1RzVWTUlRdjRvWU04VFV0dXR1OVIvUHgzL0ZFQ0ZqIHM2UjZKa1dKWUp0QUUxd3RDSmJvdFBRM0ZmQlIzVytnT2prUFY2ZDk1QT09ICIgZGF0YS10cmlnZ2VyLXNvdXJjZS10eXBlPSJiYWRnZV9jZW50ZXIiIGRhdGEtZW1iZWQtc291cmNlLXR5cGU9ImJhZGdlX2NlbnRlciIgZGF0YS1saXN0aW5nLXVybD0iaHR0cHM6Ly93d3cuYWlyYm5iLmNvbS9yb29tcy8xMTgyMTA2MCIgc3R5bGU9ImhlaWdodDo3NXB4O21hcmdpbjphdXRvOyI+PGEgaHJlZj0iaHR0cHM6Ly93d3cuYWlyYm5iLmNvbS9yb29tcy8xMTgyMTA2MCI+PHNwYW4+NS1zdGFyIHdpdGggPC9zcGFuPjxzcGFuPjxzcGFuPjIgcmV2aWV3czwvc3Bhbj48L3NwYW4+PC9hPjxzY3JpcHQgYXN5bmM9IiIgc3JjPSJodHRwczovL3d3dy5haXJibmIuY29tL2VtYmVkZGFibGUvYWlyYm5iX2pzc2RrIj48L3NjcmlwdD48L2Rpdj4=[/fusion_code][/one_half][/fullwidth][fullwidth background_color=\"#f0f0ed\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"20\" padding_bottom=\"20\" padding_left=\"0px\" padding_right=\"0px\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][fusion_text]\r\n<h1 style=\"text-align: center;\">Gallery</h1>\r\n[/fusion_text][separator style_type=\"single\" top_margin=\"\" bottom_margin=\"40\" sep_color=\"#000000\" border_size=\"\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"170px\" alignment=\"\" class=\"\" id=\"\"][one_sixth last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][/one_sixth][two_third last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][fusion_text]\r\n<h3 style=\"text-align: justify;\">The Lodge is open, spacious, comfortable and homely. During hot summer days, sit and bask in the sun on the deck  with one of our  picnic specials. In winter, snuggle up with a good book or challenge one another to a friendly board game in the glassed nook area .</h3>\r\n[/fusion_text][/two_third][one_sixth last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][/one_sixth][/fullwidth][fullwidth background_color=\"#f0f0ed\" background_image=\"http://localhost/assagaylodge/wp-content/uploads/2015/01/Wood_Texture.jpg\" background_parallax=\"fixed\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"30\" padding_bottom=\"10\" padding_left=\"0\" padding_right=\"0\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][recent_works layout=\"grid\" picture_size=\"auto\" boxed_text=\"unboxed\" filters=\"no\" columns=\"3\" column_spacing=\"12\" cat_slug=\"the-lodge\" exclude_cats=\"\" number_posts=\"9\" offset=\"\" excerpt_length=\"35\" strip_html=\"yes\" carousel_layout=\"title_on_rollover\" scroll_items=\"\" autoplay=\"no\" show_nav=\"yes\" mouse_scroll=\"no\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" class=\"\" id=\"\"][/recent_works][/fullwidth][fullwidth background_color=\"#f0f0ed\" background_image=\"\" background_parallax=\"fixed\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"20\" padding_bottom=\"20\" padding_left=\"0px\" padding_right=\"0px\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][fusion_text]\r\n<h1 style=\"text-align: center;\">BEDROOMS</h1>\r\n[/fusion_text][separator style_type=\"single\" top_margin=\"\" bottom_margin=\"20\" sep_color=\"#000000\" border_size=\"\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"170px\" alignment=\"\" class=\"\" id=\"\"][one_sixth last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][/one_sixth][two_third last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][fusion_text]\r\n<h3 style=\"text-align: justify;\">When it comes to our bedrooms we’re proud to say we offer something a little more special. One of five  lovingly and tastefully decorated guest rooms. Soft gray decor soothes the senses providing a peaceful, blissfully comfortable rest from your travels and hectic lives.</h3>\r\n<h3 style=\"text-align: justify;\">Our  bedrooms are spacious, clean, comfortable all en-suite, equipped with either king size or queen size beds. Each room sleeps two guests. The rooms have high ceilings, wall heaters &amp; ceiling fans. Beds all have electric blankets in Winter, 100% cotton percale sheets and thick hyper allergenic microfiber duvets and pillows. All guest rooms are cleaned with organic and green products. Amenities include hairdryers in each room. Three rooms feature King-sized beds  of which two can be  split into two single beds. Two  rooms can therefore be changed into a twin room upon request. Two rooms feature a Queen-sized double bed. These beds cannot be split into twin beds.</h3>\r\n[/fusion_text][/two_third][one_sixth last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][/one_sixth][/fullwidth][fullwidth background_color=\"\" background_image=\"http://localhost/assagaylodge/wp-content/uploads/2015/01/DSC01516-1148-x-764.jpg\" background_parallax=\"fixed\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"center center\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"20\" padding_bottom=\"20\" padding_left=\"0\" padding_right=\"0\" hundred_percent=\"no\" equal_height_columns=\"yes\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][recent_works layout=\"grid\" picture_size=\"auto\" boxed_text=\"unboxed\" filters=\"no\" columns=\"3\" column_spacing=\"12\" cat_slug=\"bedrooms\" exclude_cats=\"\" number_posts=\"6\" offset=\"\" excerpt_length=\"35\" strip_html=\"yes\" carousel_layout=\"title_on_rollover\" scroll_items=\"\" autoplay=\"no\" show_nav=\"yes\" mouse_scroll=\"no\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" class=\"\" id=\"\"][/recent_works][/fullwidth][fullwidth background_color=\"#f0f0ed\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"20\" padding_bottom=\"20\" padding_left=\"0\" padding_right=\"0\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][fusion_text]\r\n<h1 style=\"text-align: center;\">GARDENS</h1>\r\n[/fusion_text][separator style_type=\"single\" top_margin=\"\" bottom_margin=\"20\" sep_color=\"#000000\" border_size=\"\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"170px\" alignment=\"\" class=\"\" id=\"\"][one_sixth last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][/one_sixth][two_third last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][fusion_text]\r\n<h3 style=\"text-align: justify;\">The garden is large and offers many secluded spots to lose yourself in a book with a glass of wine underneath the shade of a tree, listening to the sounds of the birds and smelling the beautiful flowers.</h3>\r\n[/fusion_text][/two_third][one_sixth last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][/one_sixth][recent_works layout=\"grid\" picture_size=\"auto\" boxed_text=\"boxed\" filters=\"no\" columns=\"3\" column_spacing=\"12\" cat_slug=\"gardens\" exclude_cats=\"\" number_posts=\"9\" offset=\"\" excerpt_length=\"35\" strip_html=\"yes\" carousel_layout=\"title_on_rollover\" scroll_items=\"\" autoplay=\"no\" show_nav=\"yes\" mouse_scroll=\"no\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" class=\"\" id=\"\"][/recent_works][/fullwidth][fullwidth background_color=\"#ffffff\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"65px\" padding_bottom=\"65px\" padding_left=\"0px\" padding_right=\"0px\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][button link=\"http://localhost/assagaylodge/book-now/\" color=\"default\" size=\"xlarge\" type=\"3d\" shape=\"round\" target=\"_self\" title=\"\" gradient_colors=\"#f0f0ed|#f0f0ed\" gradient_hover_colors=\"#6666a4|#6666a4\" accent_color=\"#ffffff\" accent_hover_color=\"#ffffff\" bevel_color=\"\" border_width=\"0px\" icon=\"\" icon_position=\"left\" icon_divider=\"no\" modal=\"\" animation_type=\"0\" animation_direction=\"left\" animation_speed=\"1\" alignment=\"center\" class=\"\" id=\"\"]Make A Reservation Enquiry[/button][/fullwidth]', 'Home', '', 'inherit', 'closed', 'closed', '', '7-revision-v1', '', '', '2016-07-25 12:48:27', '2016-07-25 10:48:27', '', 7, 'http://msla.co.za/lodge/7-revision-v1/', 0, 'revision', '', 0);
INSERT INTO `wp_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(1235, 1, '2016-07-25 13:08:33', '2016-07-25 11:08:33', '[fullwidth background_color=\"#f0f0ed\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"20\" padding_bottom=\"20\" padding_left=\"0px\" padding_right=\"0px\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][one_half last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][separator style_type=\"single\" top_margin=\"0\" bottom_margin=\"30\" sep_color=\"#000000\" border_size=\"\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"170px\" alignment=\"center\" class=\"separator-left\" id=\"\"][fusion_text]\r\n<h1 style=\"text-align: center;\">No Fancy Star Grading\r\nNo Room Service\r\nNo Bed Turn-downs\r\nNo Rose Petals in the Bath water</h1>\r\n<h1 style=\"text-align: center;\">... just old fashioned homely comforts</h1>\r\n[/fusion_text][/one_half][one_half last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][fusion_text]\r\n<h1 style=\"text-align: justify;\">5 BEDROOM FAMILY LODGE</h1>\r\n<h3 style=\"text-align: justify;\">We are a four season lodge, because there’s always something to celebrate… We offer comfort, relaxation and privacy right in the heart of 1000 Hills. The Forest, the Gardens, the Atmosphere all speak to  Rest  &amp; Relaxation.</h3>\r\n[/fusion_text][separator style_type=\"single\" top_margin=\"0\" bottom_margin=\"30\" sep_color=\"#000000\" border_size=\"\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"170px\" alignment=\"left\" class=\"separator-left\" id=\"\"][modal name=\"rates\" title=\"2015 Rates\" size=\"large\" background=\"\" border_color=\"\" show_footer=\"yes\" class=\"\" id=\"\"]\r\n<table style=\"width: 100%;\" cellspacing=\"10\" cellpadding=\"5\">\r\n<tbody>\r\n<tr>\r\n<td colspan=\"2\"><span style=\"font-size: 10pt;\">ALL PRICES INCLUDE VAT </span></td>\r\n</tr>\r\n<tr>\r\n<td colspan=\"2\"><span style=\"font-size: 12pt;\"><strong>Self-Catering / Self-Servicing Accommodation</strong></span></td>\r\n</tr>\r\n<tr>\r\n<td><span style=\"font-size: 12pt;\">Full House - Max 10 persons per lodge</span></td>\r\n<td><span style=\"font-size: 12pt;\"><strong>R3250</strong> per night (R325 per person)</span></td>\r\n</tr>\r\n<tr>\r\n<td><span style=\"font-size: 12pt;\">Single - Max 1 person per room</span></td>\r\n<td><span style=\"font-size: 12pt;\"><strong>R 650</strong> per person per night</span></td>\r\n</tr>\r\n<tr>\r\n<td><span style=\"font-size: 12pt;\">Sharing - Max 2 persons per room</span></td>\r\n<td><span style=\"font-size: 12pt;\"><strong>R 495</strong> per person per night</span></td>\r\n</tr>\r\n<tr>\r\n<td></td>\r\n<td></td>\r\n</tr>\r\n<tr>\r\n<td><strong><span style=\"font-size: 12pt;\">Servicing Options</span></strong></td>\r\n<td></td>\r\n</tr>\r\n<tr>\r\n<td><span style=\"font-size: 12pt;\">Lodge Only Servicing (Optional) </span></td>\r\n<td><span style=\"font-size: 12pt;\"><strong>R30</strong> per person per day - Max <span style=\"font-size: 12pt;\"><strong>R 150 </strong>per day</span></span></td>\r\n</tr>\r\n<tr>\r\n<td><span style=\"font-size: 12pt;\">Lodge &amp; Room Servicing (Optional) </span></td>\r\n<td><span style=\"font-size: 12pt;\"><strong>R50</strong> per person per day - Max <span style=\"font-size: 12pt;\"><strong>R 250 </strong>per day</span></span></td>\r\n</tr>\r\n<tr>\r\n<td></td>\r\n<td></td>\r\n</tr>\r\n<tr>\r\n<td colspan=\"2\"><span style=\"font-size: 12pt;\"><span style=\"font-size: 12pt;\"><strong>Catering Options</strong></span> </span></td>\r\n</tr>\r\n<tr>\r\n<td><span style=\"font-size: 12pt;\"> <span style=\"font-size: 12pt;\">Breakfast (Continental)</span></span></td>\r\n<td><span style=\"font-size: 12pt;\"> <span style=\"font-size: 12pt;\"><strong>R 55</strong> per person</span></span></td>\r\n</tr>\r\n<tr>\r\n<td><span style=\"font-size: 12pt;\"> <span style=\"font-size: 12pt;\">Breakfast (Full English)</span></span></td>\r\n<td><span style=\"font-size: 12pt;\"> <span style=\"font-size: 12pt;\"><strong>R 75</strong> per person</span></span></td>\r\n</tr>\r\n<tr>\r\n<td><span style=\"font-size: 12pt;\"> <span style=\"font-size: 12pt;\">Light Lunch</span></span></td>\r\n<td><span style=\"font-size: 12pt;\">From <span style=\"font-size: 12pt;\"><strong>R 95 </strong>per person</span></span></td>\r\n</tr>\r\n<tr>\r\n<td><span style=\"font-size: 12pt;\"> <span style=\"font-size: 12pt;\">Dinners</span></span></td>\r\n<td><span style=\"font-size: 12pt;\">From <span style=\"font-size: 12pt;\"><strong>R 150 </strong>per person</span></span></td>\r\n</tr>\r\n<tr>\r\n<td></td>\r\n<td></td>\r\n</tr>\r\n<tr>\r\n<td><strong><span style=\"font-size: 12pt;\">Others</span></strong></td>\r\n<td></td>\r\n</tr>\r\n<tr>\r\n<td><span style=\"font-size: 12pt;\">Gate Remote</span></td>\r\n<td><span style=\"font-size: 12pt;\"><strong>R 200 </strong>deposit</span></td>\r\n</tr>\r\n<tr>\r\n<td><span style=\"font-size: 12pt;\">Gas Braai</span></td>\r\n<td><span style=\"font-size: 12pt;\"><strong>R 120 </strong>per day</span></td>\r\n</tr>\r\n<tr>\r\n<td><span style=\"font-size: 12pt;\">Day Visitors / Guests</span></td>\r\n<td><span style=\"font-size: 12pt;\"><strong>R 50 </strong>per person per day</span></td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n\r\n<hr />\r\n\r\n[/modal][button link=\"\" color=\"darkgreen\" size=\"\" type=\"\" shape=\"\" target=\"_self\" title=\"\" gradient_colors=\"|\" gradient_hover_colors=\"|\" accent_color=\"\" accent_hover_color=\"\" bevel_color=\"\" border_width=\"1px\" icon=\"\" icon_position=\"left\" icon_divider=\"no\" modal=\"rates\" animation_type=\"0\" animation_direction=\"left\" animation_speed=\"1\" alignment=\"\" class=\"\" id=\"\"]2016 RATES[/button][/one_half][/fullwidth][fullwidth background_color=\"#f0f0ed\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"20\" padding_bottom=\"20\" padding_left=\"0px\" padding_right=\"0px\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][one_half last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][fusion_text]\r\n<h3 style=\"text-align: justify;\">Set in the rolling peaks and valleys of a thousand hills surrounded by a canopy of indigenous trees, you will find that horses still have right of way, we certainly offer the best of both worlds, farm and charm coupled with modern amenities that will have you feeling relaxed and rejuvenated.</h3>\r\n<h3 style=\"text-align: justify;\">We know that sometimes you are searching for a romantic getaway or maybe a few days away with old friends. Other times you are searching for a place to host a weekend, family reunion or a business retreat. In addition to nightly room rentals, our lodge is also available for meetings, retreats  and makes the perfect place for a wedding party to stay together and get ready for the big day. Regardless, with our five comfortable and cozy guest bedrooms, multiple garden spaces and hideaways, and a  large private deck  where you can take a nap or read a book we definitely have the room for you!</h3>\r\n<h3 style=\"text-align: justify;\">Evenings are quiet and peaceful taking you far away from the business of city life. This is a unique and memorable country experience. We look forward to having you as a guest!</h3>\r\n[/fusion_text][/one_half][one_half last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][fusion_text]\r\n<h3 style=\"text-align: justify;\">Our lodge has been in our family for years and has recently been beautifully renovated. Five rooms all with en-suite showers lead off your own large central lounge, featuring a 36 foot high vaulted ceiling, offering spacious living, dining, and a bar/conversational lounge area which includes a fitted kitchenette, all adding to a sense of homely comfort. Sumptuous meals can be provided on request and served on the bottom deck at the swimming pool.</h3>\r\n<h3 style=\"text-align: justify;\">Be lulled to sleep by the sound of the waterfall and tinkling stream just outside your window, waking from a peaceful night\'s sleep in a pillow-top bed dressed in luxurious linens to coddle you in ultimate comfort.</h3>\r\n<h3 style=\"text-align: justify;\">Our property boasts many different species of birds and animals. We have a resident otter, a family of wild bush pigs,  a family of rock rabbits, porcupine, little blue duikers, a variety of different frogs and an abundance of bird life, including the occasional snakes that pass through!</h3>\r\n[/fusion_text][/one_half][one_half last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][fusion_code]PGRpdiBjbGFzcz0iYWlyYm5iLWVtYmVkLWZyYW1lIiBkYXRhLWNpdHktbGluay1pbmRleD0iMSIgZGF0YS1lYj0iMTQ2OTQ0MDY3MF8wMDQ4ZnJlRmQ3SWhISm5TIiBkYXRhLWVtYmVkLXNvdXJjZS10eXBlPSJwMyIgZGF0YS10cmlnZ2VyLXNvdXJjZS10eXBlPSJwMyIgZGF0YS1saXN0aW5nLWlkPSIxMTgyMTA2MCIgZGF0YS1waG90by11cmw9Imh0dHBzOi8vYTIubXVzY2FjaGUuY29tL2ltL3BpY3R1cmVzLzdhN2RjOTEyLWQ2MzgtNDhmZi1hMTgwLWIyOGZmZDdlYTI0ZC5qcGc/YWtpX3BvbGljeT14X2xhcmdlIiBkYXRhLXZpZXc9Imxpc3RpbmdfZnJhbWUiIHN0eWxlPSJtYXgtd2lkdGg6NjAwcHg7bWFyZ2luOmF1dG87dHJhbnNpdGlvbjpoZWlnaHQgLjJzOyI+PGltZyBzcmM9Imh0dHBzOi8vYTIubXVzY2FjaGUuY29tL2ltL3BpY3R1cmVzLzdhN2RjOTEyLWQ2MzgtNDhmZi1hMTgwLWIyOGZmZDdlYTI0ZC5qcGc/YWtpX3BvbGljeT14X2xhcmdlIiBzdHlsZT0ibWF4LXdpZHRoOjEwMCU7IiBhbHQ9IiIvPjxkaXY+PGEgaHJlZj0iaHR0cHM6Ly93d3cuYWlyYm5iLmNvbS9yb29tcy8xMTgyMTA2MCIgcmVsPSJub2ZvbGxvdyI+PGg0PkFzc2FnYXkgRm9yZXN0IExvZGdlIC1TZWxmIENhdGVyaW5nPC9oND48L2E+PGRpdj5PdXRlciBXZXN0IER1cmJhbiwgS3dhWnVsdS1OYXRhbCwgU291dGggQWZyaWNhPC9kaXY+PGJsb2NrcXVvdGU+QmVhdXRpZnVsbHkgcmVub3ZhdGVkLiBGaXZlIHJvb21zIFtlbi1zdWl0ZV0gbGVhZCBvZmYgeW91ciBvd24gbGFyZ2UgY2VudHJhbCBsb3VuZ2UsIGZlYXR1cmluZyBhIDM2IGZvb3QgaGlnaCB2YXVsdGVkIGNlaWxpbmcsIG9mZmVyaW5nIHNwYWNpb3VzIGxpdmluZywgZGluaW5nLCBhbmQgYSBjb252ZXJzYXRpb25hbCBsb3VuZ2UgYXJlYSB3aGkuLi48L2Jsb2NrcXVvdGU+PC9kaXY+PHNjcmlwdCBhc3luYz0iIiBzcmM9Imh0dHBzOi8vd3d3LmFpcmJuYi5jb20vZW1iZWRkYWJsZS9haXJibmJfanNzZGsiPjwvc2NyaXB0PjwvZGl2Pg==[/fusion_code][/one_half][/fullwidth][fullwidth background_color=\"#f0f0ed\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"20\" padding_bottom=\"20\" padding_left=\"0px\" padding_right=\"0px\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][fusion_text]\r\n<h1 style=\"text-align: center;\">Gallery</h1>\r\n[/fusion_text][separator style_type=\"single\" top_margin=\"\" bottom_margin=\"40\" sep_color=\"#000000\" border_size=\"\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"170px\" alignment=\"\" class=\"\" id=\"\"][one_sixth last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][/one_sixth][two_third last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][fusion_text]\r\n<h3 style=\"text-align: justify;\">The Lodge is open, spacious, comfortable and homely. During hot summer days, sit and bask in the sun on the deck  with one of our  picnic specials. In winter, snuggle up with a good book or challenge one another to a friendly board game in the glassed nook area .</h3>\r\n[/fusion_text][/two_third][one_sixth last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][/one_sixth][/fullwidth][fullwidth background_color=\"#f0f0ed\" background_image=\"http://localhost/assagaylodge/wp-content/uploads/2015/01/Wood_Texture.jpg\" background_parallax=\"fixed\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"30\" padding_bottom=\"10\" padding_left=\"0\" padding_right=\"0\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][recent_works layout=\"grid\" picture_size=\"auto\" boxed_text=\"unboxed\" filters=\"no\" columns=\"3\" column_spacing=\"12\" cat_slug=\"the-lodge\" exclude_cats=\"\" number_posts=\"9\" offset=\"\" excerpt_length=\"35\" strip_html=\"yes\" carousel_layout=\"title_on_rollover\" scroll_items=\"\" autoplay=\"no\" show_nav=\"yes\" mouse_scroll=\"no\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" class=\"\" id=\"\"][/recent_works][/fullwidth][fullwidth background_color=\"#f0f0ed\" background_image=\"\" background_parallax=\"fixed\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"20\" padding_bottom=\"20\" padding_left=\"0px\" padding_right=\"0px\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][fusion_text]\r\n<h1 style=\"text-align: center;\">BEDROOMS</h1>\r\n[/fusion_text][separator style_type=\"single\" top_margin=\"\" bottom_margin=\"20\" sep_color=\"#000000\" border_size=\"\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"170px\" alignment=\"\" class=\"\" id=\"\"][one_sixth last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][/one_sixth][two_third last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][fusion_text]\r\n<h3 style=\"text-align: justify;\">When it comes to our bedrooms we’re proud to say we offer something a little more special. One of five  lovingly and tastefully decorated guest rooms. Soft gray decor soothes the senses providing a peaceful, blissfully comfortable rest from your travels and hectic lives.</h3>\r\n<h3 style=\"text-align: justify;\">Our  bedrooms are spacious, clean, comfortable all en-suite, equipped with either king size or queen size beds. Each room sleeps two guests. The rooms have high ceilings, wall heaters &amp; ceiling fans. Beds all have electric blankets in Winter, 100% cotton percale sheets and thick hyper allergenic microfiber duvets and pillows. All guest rooms are cleaned with organic and green products. Amenities include hairdryers in each room. Three rooms feature King-sized beds  of which two can be  split into two single beds. Two  rooms can therefore be changed into a twin room upon request. Two rooms feature a Queen-sized double bed. These beds cannot be split into twin beds.</h3>\r\n[/fusion_text][/two_third][one_sixth last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][/one_sixth][/fullwidth][fullwidth background_color=\"\" background_image=\"http://localhost/assagaylodge/wp-content/uploads/2015/01/DSC01516-1148-x-764.jpg\" background_parallax=\"fixed\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"center center\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"20\" padding_bottom=\"20\" padding_left=\"0\" padding_right=\"0\" hundred_percent=\"no\" equal_height_columns=\"yes\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][recent_works layout=\"grid\" picture_size=\"auto\" boxed_text=\"unboxed\" filters=\"no\" columns=\"3\" column_spacing=\"12\" cat_slug=\"bedrooms\" exclude_cats=\"\" number_posts=\"6\" offset=\"\" excerpt_length=\"35\" strip_html=\"yes\" carousel_layout=\"title_on_rollover\" scroll_items=\"\" autoplay=\"no\" show_nav=\"yes\" mouse_scroll=\"no\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" class=\"\" id=\"\"][/recent_works][/fullwidth][fullwidth background_color=\"#f0f0ed\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"20\" padding_bottom=\"20\" padding_left=\"0\" padding_right=\"0\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][fusion_text]\r\n<h1 style=\"text-align: center;\">GARDENS</h1>\r\n[/fusion_text][separator style_type=\"single\" top_margin=\"\" bottom_margin=\"20\" sep_color=\"#000000\" border_size=\"\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"170px\" alignment=\"\" class=\"\" id=\"\"][one_sixth last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][/one_sixth][two_third last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][fusion_text]\r\n<h3 style=\"text-align: justify;\">The garden is large and offers many secluded spots to lose yourself in a book with a glass of wine underneath the shade of a tree, listening to the sounds of the birds and smelling the beautiful flowers.</h3>\r\n[/fusion_text][/two_third][one_sixth last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][/one_sixth][recent_works layout=\"grid\" picture_size=\"auto\" boxed_text=\"boxed\" filters=\"no\" columns=\"3\" column_spacing=\"12\" cat_slug=\"gardens\" exclude_cats=\"\" number_posts=\"9\" offset=\"\" excerpt_length=\"35\" strip_html=\"yes\" carousel_layout=\"title_on_rollover\" scroll_items=\"\" autoplay=\"no\" show_nav=\"yes\" mouse_scroll=\"no\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" class=\"\" id=\"\"][/recent_works][/fullwidth][fullwidth background_color=\"#ffffff\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"65px\" padding_bottom=\"65px\" padding_left=\"0px\" padding_right=\"0px\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][button link=\"http://localhost/assagaylodge/book-now/\" color=\"default\" size=\"xlarge\" type=\"3d\" shape=\"round\" target=\"_self\" title=\"\" gradient_colors=\"#f0f0ed|#f0f0ed\" gradient_hover_colors=\"#6666a4|#6666a4\" accent_color=\"#ffffff\" accent_hover_color=\"#ffffff\" bevel_color=\"\" border_width=\"0px\" icon=\"\" icon_position=\"left\" icon_divider=\"no\" modal=\"\" animation_type=\"0\" animation_direction=\"left\" animation_speed=\"1\" alignment=\"center\" class=\"\" id=\"\"]Make A Reservation Enquiry[/button][/fullwidth]', 'Home', '', 'inherit', 'closed', 'closed', '', '7-revision-v1', '', '', '2016-07-25 13:08:33', '2016-07-25 11:08:33', '', 7, 'http://msla.co.za/lodge/7-revision-v1/', 0, 'revision', '', 0),
(1236, 1, '2016-07-25 13:21:09', '2016-07-25 11:21:09', '', 'AIRBNB', '', 'inherit', 'open', 'closed', '', 'airbnb-logo-vector-150x150', '', '', '2016-07-25 14:11:03', '2016-07-25 12:11:03', '', 7, 'http://msla.co.za/lodge/wp-content/uploads/2016/07/AIRBNB-LOGO-VECTOR-150x150.png', 0, 'attachment', 'image/png', 0),
(1238, 1, '2016-07-25 14:01:30', '2016-07-25 12:01:30', '[fullwidth background_color=\"#f0f0ed\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"20\" padding_bottom=\"20\" padding_left=\"0px\" padding_right=\"0px\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][one_half last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][separator style_type=\"single\" top_margin=\"0\" bottom_margin=\"30\" sep_color=\"#000000\" border_size=\"\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"170px\" alignment=\"center\" class=\"separator-left\" id=\"\"][fusion_text]\r\n<h1 style=\"text-align: center;\">No Fancy Star Grading\r\nNo Room Service\r\nNo Bed Turn-downs\r\nNo Rose Petals in the Bath water</h1>\r\n<h1 style=\"text-align: center;\">... just old fashioned homely comforts</h1>\r\n[/fusion_text][/one_half][one_half last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][fusion_text]\r\n<h1 style=\"text-align: justify;\">5 BEDROOM FAMILY LODGE</h1>\r\n<h3 style=\"text-align: justify;\">We are a four season lodge, because there’s always something to celebrate… We offer comfort, relaxation and privacy right in the heart of 1000 Hills. The Forest, the Gardens, the Atmosphere all speak to  Rest  &amp; Relaxation.</h3>\r\n[/fusion_text][separator style_type=\"single\" top_margin=\"0\" bottom_margin=\"30\" sep_color=\"#000000\" border_size=\"\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"170px\" alignment=\"left\" class=\"separator-left\" id=\"\"][social_links icons_boxed=\"\" icons_boxed_radius=\"4px\" icon_colors=\"\" box_colors=\"\" tooltip_placement=\"\" rss=\"\" facebook=\"\" twitter=\"\" instagram=\"\" dribbble=\"\" google=\"\" linkedin=\"\" blogger=\"\" tumblr=\"\" reddit=\"\" yahoo=\"\" deviantart=\"\" vimeo=\"\" youtube=\"\" pinterest=\"\" digg=\"\" flickr=\"\" forrst=\"\" myspace=\"\" skype=\"\" paypal=\"\" dropbox=\"\" soundcloud=\"\" vk=\"\" email=\"\" show_custom=\"no\" alignment=\"\" class=\"\" id=\"\"][fusion_code]W3BlcnNvbiBuYW1lPSIiIHRpdGxlPSIiIHBpY3R1cmU9Imh0dHA6Ly9tc2xhLmNvLnphL2xvZGdlL3dwLWNvbnRlbnQvdXBsb2Fkcy8yMDE2LzA3L0FJUkJOQi1MT0dPLVZFQ1RPUi0xNTB4MTUwLnBuZyIgcGljX2xpbms9Imh0dHBzOi8vd3d3LmFpcmJuYi5jb20vcm9vbXMvMTE4MjEwNjA/cHJldmlldyIgbGlua3RhcmdldD0iX2JsYW5rIiBwaWNfc3R5bGU9IiIgaG92ZXJfdHlwZT0iIiBiYWNrZ3JvdW5kX2NvbG9yPSIiIGNvbnRlbnRfYWxpZ25tZW50PSIiIHBpY19zdHlsZV9jb2xvcj0iIiBwaWNfYm9yZGVyc2l6ZT0iIiBwaWNfYm9yZGVyY29sb3I9IiIgcGljX2JvcmRlcnJhZGl1cz0iIiBpY29uX3Bvc2l0aW9uPSIiIHNvY2lhbF9pY29uX2JveGVkPSIiIHNvY2lhbF9pY29uX2JveGVkX3JhZGl1cz0iIiBzb2NpYWxfaWNvbl9jb2xvcnM9IiIgc29jaWFsX2ljb25fYm94ZWRfY29sb3JzPSIiIHNvY2lhbF9pY29uX3Rvb2x0aXA9IiIgZW1haWw9IiIgZmFjZWJvb2s9IiIgdHdpdHRlcj0iIiBpbnN0YWdyYW09IiIgZHJpYmJibGU9IiIgZ29vZ2xlPSIiIGxpbmtlZGluPSIiIGJsb2dnZXI9IiIgdHVtYmxyPSIiIHJlZGRpdD0iIiB5YWhvbz0iIiBkZXZpYW50YXJ0PSIiIHZpbWVvPSIiIHlvdXR1YmU9IiIgcnNzPSIiIHBpbnRlcmVzdD0iIiBkaWdnPSIiIGZsaWNrcj0iIiBmb3Jyc3Q9IiIgbXlzcGFjZT0iIiBza3lwZT0iIiBwYXlwYWw9IiIgZHJvcGJveD0iIiBzb3VuZGNsb3VkPSIiIHZrPSIiIGNsYXNzPSIiIGlkPSIiXVsvcGVyc29uXQ==[/fusion_code][/one_half][/fullwidth][fullwidth background_color=\"#f0f0ed\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"20\" padding_bottom=\"20\" padding_left=\"0px\" padding_right=\"0px\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][one_half last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][fusion_text]\r\n<h3 style=\"text-align: justify;\">Set in the rolling peaks and valleys of a thousand hills surrounded by a canopy of indigenous trees, you will find that horses still have right of way, we certainly offer the best of both worlds, farm and charm coupled with modern amenities that will have you feeling relaxed and rejuvenated.</h3>\r\n<h3 style=\"text-align: justify;\">We know that sometimes you are searching for a romantic getaway or maybe a few days away with old friends. Other times you are searching for a place to host a weekend, family reunion or a business retreat. In addition to nightly room rentals, our lodge is also available for meetings, retreats  and makes the perfect place for a wedding party to stay together and get ready for the big day. Regardless, with our five comfortable and cozy guest bedrooms, multiple garden spaces and hideaways, and a  large private deck  where you can take a nap or read a book we definitely have the room for you!</h3>\r\n<h3 style=\"text-align: justify;\">Evenings are quiet and peaceful taking you far away from the business of city life. This is a unique and memorable country experience. We look forward to having you as a guest!</h3>\r\n[/fusion_text][/one_half][one_half last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][fusion_text]\r\n<h3 style=\"text-align: justify;\">Our lodge has been in our family for years and has recently been beautifully renovated. Five rooms all with en-suite showers lead off your own large central lounge, featuring a 36 foot high vaulted ceiling, offering spacious living, dining, and a bar/conversational lounge area which includes a fitted kitchenette, all adding to a sense of homely comfort. Sumptuous meals can be provided on request and served on the bottom deck at the swimming pool.</h3>\r\n<h3 style=\"text-align: justify;\">Be lulled to sleep by the sound of the waterfall and tinkling stream just outside your window, waking from a peaceful night\'s sleep in a pillow-top bed dressed in luxurious linens to coddle you in ultimate comfort.</h3>\r\n<h3 style=\"text-align: justify;\">Our property boasts many different species of birds and animals. We have a resident otter, a family of wild bush pigs,  a family of rock rabbits, porcupine, little blue duikers, a variety of different frogs and an abundance of bird life, including the occasional snakes that pass through!</h3>\r\n[/fusion_text][/one_half][one_half last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][fusion_code]PGRpdiBjbGFzcz0iYWlyYm5iLWVtYmVkLWZyYW1lIiBkYXRhLWNpdHktbGluay1pbmRleD0iMSIgZGF0YS1lYj0iMTQ2OTQ0MDY3MF8wMDQ4ZnJlRmQ3SWhISm5TIiBkYXRhLWVtYmVkLXNvdXJjZS10eXBlPSJwMyIgZGF0YS10cmlnZ2VyLXNvdXJjZS10eXBlPSJwMyIgZGF0YS1saXN0aW5nLWlkPSIxMTgyMTA2MCIgZGF0YS1waG90by11cmw9Imh0dHBzOi8vYTIubXVzY2FjaGUuY29tL2ltL3BpY3R1cmVzLzdhN2RjOTEyLWQ2MzgtNDhmZi1hMTgwLWIyOGZmZDdlYTI0ZC5qcGc/YWtpX3BvbGljeT14X2xhcmdlIiBkYXRhLXZpZXc9Imxpc3RpbmdfZnJhbWUiIHN0eWxlPSJtYXgtd2lkdGg6NjAwcHg7bWFyZ2luOmF1dG87dHJhbnNpdGlvbjpoZWlnaHQgLjJzOyI+PGltZyBzcmM9Imh0dHBzOi8vYTIubXVzY2FjaGUuY29tL2ltL3BpY3R1cmVzLzdhN2RjOTEyLWQ2MzgtNDhmZi1hMTgwLWIyOGZmZDdlYTI0ZC5qcGc/YWtpX3BvbGljeT14X2xhcmdlIiBzdHlsZT0ibWF4LXdpZHRoOjEwMCU7IiBhbHQ9IiIvPjxkaXY+PGEgaHJlZj0iaHR0cHM6Ly93d3cuYWlyYm5iLmNvbS9yb29tcy8xMTgyMTA2MCIgcmVsPSJub2ZvbGxvdyI+PGg0PkFzc2FnYXkgRm9yZXN0IExvZGdlIC1TZWxmIENhdGVyaW5nPC9oND48L2E+PGRpdj5PdXRlciBXZXN0IER1cmJhbiwgS3dhWnVsdS1OYXRhbCwgU291dGggQWZyaWNhPC9kaXY+PGJsb2NrcXVvdGU+QmVhdXRpZnVsbHkgcmVub3ZhdGVkLiBGaXZlIHJvb21zIFtlbi1zdWl0ZV0gbGVhZCBvZmYgeW91ciBvd24gbGFyZ2UgY2VudHJhbCBsb3VuZ2UsIGZlYXR1cmluZyBhIDM2IGZvb3QgaGlnaCB2YXVsdGVkIGNlaWxpbmcsIG9mZmVyaW5nIHNwYWNpb3VzIGxpdmluZywgZGluaW5nLCBhbmQgYSBjb252ZXJzYXRpb25hbCBsb3VuZ2UgYXJlYSB3aGkuLi48L2Jsb2NrcXVvdGU+PC9kaXY+PHNjcmlwdCBhc3luYz0iIiBzcmM9Imh0dHBzOi8vd3d3LmFpcmJuYi5jb20vZW1iZWRkYWJsZS9haXJibmJfanNzZGsiPjwvc2NyaXB0PjwvZGl2Pg==[/fusion_code][/one_half][/fullwidth][fullwidth background_color=\"#f0f0ed\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"20\" padding_bottom=\"20\" padding_left=\"0px\" padding_right=\"0px\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][fusion_text]\r\n<h1 style=\"text-align: center;\">Gallery</h1>\r\n[/fusion_text][separator style_type=\"single\" top_margin=\"\" bottom_margin=\"40\" sep_color=\"#000000\" border_size=\"\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"170px\" alignment=\"\" class=\"\" id=\"\"][one_sixth last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][/one_sixth][two_third last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][fusion_text]\r\n<h3 style=\"text-align: justify;\">The Lodge is open, spacious, comfortable and homely. During hot summer days, sit and bask in the sun on the deck  with one of our  picnic specials. In winter, snuggle up with a good book or challenge one another to a friendly board game in the glassed nook area .</h3>\r\n[/fusion_text][/two_third][one_sixth last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][/one_sixth][/fullwidth][fullwidth background_color=\"#f0f0ed\" background_image=\"http://localhost/assagaylodge/wp-content/uploads/2015/01/Wood_Texture.jpg\" background_parallax=\"fixed\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"30\" padding_bottom=\"10\" padding_left=\"0\" padding_right=\"0\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][recent_works layout=\"grid\" picture_size=\"auto\" boxed_text=\"unboxed\" filters=\"no\" columns=\"3\" column_spacing=\"12\" cat_slug=\"the-lodge\" exclude_cats=\"\" number_posts=\"9\" offset=\"\" excerpt_length=\"35\" strip_html=\"yes\" carousel_layout=\"title_on_rollover\" scroll_items=\"\" autoplay=\"no\" show_nav=\"yes\" mouse_scroll=\"no\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" class=\"\" id=\"\"][/recent_works][/fullwidth][fullwidth background_color=\"#f0f0ed\" background_image=\"\" background_parallax=\"fixed\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"20\" padding_bottom=\"20\" padding_left=\"0px\" padding_right=\"0px\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][fusion_text]\r\n<h1 style=\"text-align: center;\">BEDROOMS</h1>\r\n[/fusion_text][separator style_type=\"single\" top_margin=\"\" bottom_margin=\"20\" sep_color=\"#000000\" border_size=\"\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"170px\" alignment=\"\" class=\"\" id=\"\"][one_sixth last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][/one_sixth][two_third last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][fusion_text]\r\n<h3 style=\"text-align: justify;\">When it comes to our bedrooms we’re proud to say we offer something a little more special. One of five  lovingly and tastefully decorated guest rooms. Soft gray decor soothes the senses providing a peaceful, blissfully comfortable rest from your travels and hectic lives.</h3>\r\n<h3 style=\"text-align: justify;\">Our  bedrooms are spacious, clean, comfortable all en-suite, equipped with either king size or queen size beds. Each room sleeps two guests. The rooms have high ceilings, wall heaters &amp; ceiling fans. Beds all have electric blankets in Winter, 100% cotton percale sheets and thick hyper allergenic microfiber duvets and pillows. All guest rooms are cleaned with organic and green products. Amenities include hairdryers in each room. Three rooms feature King-sized beds  of which two can be  split into two single beds. Two  rooms can therefore be changed into a twin room upon request. Two rooms feature a Queen-sized double bed. These beds cannot be split into twin beds.</h3>\r\n[/fusion_text][/two_third][one_sixth last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][/one_sixth][/fullwidth][fullwidth background_color=\"\" background_image=\"http://localhost/assagaylodge/wp-content/uploads/2015/01/DSC01516-1148-x-764.jpg\" background_parallax=\"fixed\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"center center\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"20\" padding_bottom=\"20\" padding_left=\"0\" padding_right=\"0\" hundred_percent=\"no\" equal_height_columns=\"yes\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][recent_works layout=\"grid\" picture_size=\"auto\" boxed_text=\"unboxed\" filters=\"no\" columns=\"3\" column_spacing=\"12\" cat_slug=\"bedrooms\" exclude_cats=\"\" number_posts=\"6\" offset=\"\" excerpt_length=\"35\" strip_html=\"yes\" carousel_layout=\"title_on_rollover\" scroll_items=\"\" autoplay=\"no\" show_nav=\"yes\" mouse_scroll=\"no\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" class=\"\" id=\"\"][/recent_works][/fullwidth][fullwidth background_color=\"#f0f0ed\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"20\" padding_bottom=\"20\" padding_left=\"0\" padding_right=\"0\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][fusion_text]\r\n<h1 style=\"text-align: center;\">GARDENS</h1>\r\n[/fusion_text][separator style_type=\"single\" top_margin=\"\" bottom_margin=\"20\" sep_color=\"#000000\" border_size=\"\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"170px\" alignment=\"\" class=\"\" id=\"\"][one_sixth last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][/one_sixth][two_third last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][fusion_text]\r\n<h3 style=\"text-align: justify;\">The garden is large and offers many secluded spots to lose yourself in a book with a glass of wine underneath the shade of a tree, listening to the sounds of the birds and smelling the beautiful flowers.</h3>\r\n[/fusion_text][/two_third][one_sixth last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][/one_sixth][recent_works layout=\"grid\" picture_size=\"auto\" boxed_text=\"boxed\" filters=\"no\" columns=\"3\" column_spacing=\"12\" cat_slug=\"gardens\" exclude_cats=\"\" number_posts=\"9\" offset=\"\" excerpt_length=\"35\" strip_html=\"yes\" carousel_layout=\"title_on_rollover\" scroll_items=\"\" autoplay=\"no\" show_nav=\"yes\" mouse_scroll=\"no\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" class=\"\" id=\"\"][/recent_works][/fullwidth][fullwidth background_color=\"#ffffff\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"65px\" padding_bottom=\"65px\" padding_left=\"0px\" padding_right=\"0px\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][button link=\"http://localhost/assagaylodge/book-now/\" color=\"default\" size=\"xlarge\" type=\"3d\" shape=\"round\" target=\"_self\" title=\"\" gradient_colors=\"#f0f0ed|#f0f0ed\" gradient_hover_colors=\"#6666a4|#6666a4\" accent_color=\"#ffffff\" accent_hover_color=\"#ffffff\" bevel_color=\"\" border_width=\"0px\" icon=\"\" icon_position=\"left\" icon_divider=\"no\" modal=\"\" animation_type=\"0\" animation_direction=\"left\" animation_speed=\"1\" alignment=\"center\" class=\"\" id=\"\"]Make A Reservation Enquiry[/button][/fullwidth]', 'Home', '', 'inherit', 'closed', 'closed', '', '7-revision-v1', '', '', '2016-07-25 14:01:30', '2016-07-25 12:01:30', '', 7, 'http://msla.co.za/lodge/7-revision-v1/', 0, 'revision', '', 0);
INSERT INTO `wp_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(1239, 1, '2016-07-25 14:14:30', '2016-07-25 12:14:30', '[fullwidth background_color=\"#f0f0ed\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"20\" padding_bottom=\"20\" padding_left=\"0px\" padding_right=\"0px\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][one_half last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][separator style_type=\"single\" top_margin=\"0\" bottom_margin=\"30\" sep_color=\"#000000\" border_size=\"\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"170px\" alignment=\"center\" class=\"separator-left\" id=\"\"][fusion_text]\r\n<h1 style=\"text-align: center;\">No Fancy Star Grading\r\nNo Room Service\r\nNo Bed Turn-downs\r\nNo Rose Petals in the Bath water</h1>\r\n<h1 style=\"text-align: center;\">... just old fashioned homely comforts</h1>\r\n[/fusion_text][/one_half][one_half last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][fusion_text]\r\n<h1 style=\"text-align: justify;\">5 BEDROOM FAMILY LODGE</h1>\r\n<h3 style=\"text-align: justify;\">We are a four season lodge, because there’s always something to celebrate… We offer comfort, relaxation and privacy right in the heart of 1000 Hills. The Forest, the Gardens, the Atmosphere all speak to  Rest  &amp; Relaxation.</h3>\r\n[/fusion_text][separator style_type=\"single\" top_margin=\"0\" bottom_margin=\"30\" sep_color=\"#000000\" border_size=\"\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"170px\" alignment=\"left\" class=\"separator-left\" id=\"\"][fusion_text]<p style=\"text-align: center;\">Find us on Airbnb</p>[/fusion_text][fusion_code]W3BlcnNvbiBuYW1lPSIiIHRpdGxlPSIiIHBpY3R1cmU9Imh0dHA6Ly9tc2xhLmNvLnphL2xvZGdlL3dwLWNvbnRlbnQvdXBsb2Fkcy8yMDE2LzA3L0FJUkJOQi1MT0dPLVZFQ1RPUi0xNTB4MTUwLnBuZyIgcGljX2xpbms9Imh0dHBzOi8vd3d3LmFpcmJuYi5jb20vcm9vbXMvMTE4MjEwNjA/cHJldmlldyIgbGlua3RhcmdldD0iX2JsYW5rIiBwaWNfc3R5bGU9IiIgaG92ZXJfdHlwZT0iIiBiYWNrZ3JvdW5kX2NvbG9yPSIiIGNvbnRlbnRfYWxpZ25tZW50PSIiIHBpY19zdHlsZV9jb2xvcj0iIiBwaWNfYm9yZGVyc2l6ZT0iIiBwaWNfYm9yZGVyY29sb3I9IiIgcGljX2JvcmRlcnJhZGl1cz0iIiBpY29uX3Bvc2l0aW9uPSIiIHNvY2lhbF9pY29uX2JveGVkPSIiIHNvY2lhbF9pY29uX2JveGVkX3JhZGl1cz0iIiBzb2NpYWxfaWNvbl9jb2xvcnM9IiIgc29jaWFsX2ljb25fYm94ZWRfY29sb3JzPSIiIHNvY2lhbF9pY29uX3Rvb2x0aXA9IiIgZW1haWw9IiIgZmFjZWJvb2s9IiIgdHdpdHRlcj0iIiBpbnN0YWdyYW09IiIgZHJpYmJibGU9IiIgZ29vZ2xlPSIiIGxpbmtlZGluPSIiIGJsb2dnZXI9IiIgdHVtYmxyPSIiIHJlZGRpdD0iIiB5YWhvbz0iIiBkZXZpYW50YXJ0PSIiIHZpbWVvPSIiIHlvdXR1YmU9IiIgcnNzPSIiIHBpbnRlcmVzdD0iIiBkaWdnPSIiIGZsaWNrcj0iIiBmb3Jyc3Q9IiIgbXlzcGFjZT0iIiBza3lwZT0iIiBwYXlwYWw9IiIgZHJvcGJveD0iIiBzb3VuZGNsb3VkPSIiIHZrPSIiIGNsYXNzPSIiIGlkPSIiXVsvcGVyc29uXQ==[/fusion_code][/one_half][/fullwidth][fullwidth background_color=\"#f0f0ed\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"20\" padding_bottom=\"20\" padding_left=\"0px\" padding_right=\"0px\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][one_half last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][fusion_text]\r\n<h3 style=\"text-align: justify;\">Set in the rolling peaks and valleys of a thousand hills surrounded by a canopy of indigenous trees, you will find that horses still have right of way, we certainly offer the best of both worlds, farm and charm coupled with modern amenities that will have you feeling relaxed and rejuvenated.</h3>\r\n<h3 style=\"text-align: justify;\">We know that sometimes you are searching for a romantic getaway or maybe a few days away with old friends. Other times you are searching for a place to host a weekend, family reunion or a business retreat. In addition to nightly room rentals, our lodge is also available for meetings, retreats  and makes the perfect place for a wedding party to stay together and get ready for the big day. Regardless, with our five comfortable and cozy guest bedrooms, multiple garden spaces and hideaways, and a  large private deck  where you can take a nap or read a book we definitely have the room for you!</h3>\r\n<h3 style=\"text-align: justify;\">Evenings are quiet and peaceful taking you far away from the business of city life. This is a unique and memorable country experience. We look forward to having you as a guest!</h3>\r\n[/fusion_text][/one_half][one_half last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][fusion_text]\r\n<h3 style=\"text-align: justify;\">Our lodge has been in our family for years and has recently been beautifully renovated. Five rooms all with en-suite showers lead off your own large central lounge, featuring a 36 foot high vaulted ceiling, offering spacious living, dining, and a bar/conversational lounge area which includes a fitted kitchenette, all adding to a sense of homely comfort. Sumptuous meals can be provided on request and served on the bottom deck at the swimming pool.</h3>\r\n<h3 style=\"text-align: justify;\">Be lulled to sleep by the sound of the waterfall and tinkling stream just outside your window, waking from a peaceful night\'s sleep in a pillow-top bed dressed in luxurious linens to coddle you in ultimate comfort.</h3>\r\n<h3 style=\"text-align: justify;\">Our property boasts many different species of birds and animals. We have a resident otter, a family of wild bush pigs,  a family of rock rabbits, porcupine, little blue duikers, a variety of different frogs and an abundance of bird life, including the occasional snakes that pass through!</h3>\r\n[/fusion_text][/one_half][/fullwidth][fullwidth background_color=\"#f0f0ed\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"20\" padding_bottom=\"20\" padding_left=\"0px\" padding_right=\"0px\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][fusion_text]\r\n<h1 style=\"text-align: center;\">Gallery</h1>\r\n[/fusion_text][separator style_type=\"single\" top_margin=\"\" bottom_margin=\"40\" sep_color=\"#000000\" border_size=\"\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"170px\" alignment=\"\" class=\"\" id=\"\"][one_sixth last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][/one_sixth][two_third last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][fusion_text]\r\n<h3 style=\"text-align: justify;\">The Lodge is open, spacious, comfortable and homely. During hot summer days, sit and bask in the sun on the deck  with one of our  picnic specials. In winter, snuggle up with a good book or challenge one another to a friendly board game in the glassed nook area .</h3>\r\n[/fusion_text][/two_third][one_sixth last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][/one_sixth][/fullwidth][fullwidth background_color=\"#f0f0ed\" background_image=\"http://localhost/assagaylodge/wp-content/uploads/2015/01/Wood_Texture.jpg\" background_parallax=\"fixed\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"30\" padding_bottom=\"10\" padding_left=\"0\" padding_right=\"0\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][recent_works layout=\"grid\" picture_size=\"auto\" boxed_text=\"unboxed\" filters=\"no\" columns=\"3\" column_spacing=\"12\" cat_slug=\"the-lodge\" exclude_cats=\"\" number_posts=\"9\" offset=\"\" excerpt_length=\"35\" strip_html=\"yes\" carousel_layout=\"title_on_rollover\" scroll_items=\"\" autoplay=\"no\" show_nav=\"yes\" mouse_scroll=\"no\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" class=\"\" id=\"\"][/recent_works][/fullwidth][fullwidth background_color=\"#f0f0ed\" background_image=\"\" background_parallax=\"fixed\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"20\" padding_bottom=\"20\" padding_left=\"0px\" padding_right=\"0px\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][fusion_text]\r\n<h1 style=\"text-align: center;\">BEDROOMS</h1>\r\n[/fusion_text][separator style_type=\"single\" top_margin=\"\" bottom_margin=\"20\" sep_color=\"#000000\" border_size=\"\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"170px\" alignment=\"\" class=\"\" id=\"\"][one_sixth last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][/one_sixth][two_third last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][fusion_text]\r\n<h3 style=\"text-align: justify;\">When it comes to our bedrooms we’re proud to say we offer something a little more special. One of five  lovingly and tastefully decorated guest rooms. Soft gray decor soothes the senses providing a peaceful, blissfully comfortable rest from your travels and hectic lives.</h3>\r\n<h3 style=\"text-align: justify;\">Our  bedrooms are spacious, clean, comfortable all en-suite, equipped with either king size or queen size beds. Each room sleeps two guests. The rooms have high ceilings, wall heaters &amp; ceiling fans. Beds all have electric blankets in Winter, 100% cotton percale sheets and thick hyper allergenic microfiber duvets and pillows. All guest rooms are cleaned with organic and green products. Amenities include hairdryers in each room. Three rooms feature King-sized beds  of which two can be  split into two single beds. Two  rooms can therefore be changed into a twin room upon request. Two rooms feature a Queen-sized double bed. These beds cannot be split into twin beds.</h3>\r\n[/fusion_text][/two_third][one_sixth last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][/one_sixth][/fullwidth][fullwidth background_color=\"\" background_image=\"http://localhost/assagaylodge/wp-content/uploads/2015/01/DSC01516-1148-x-764.jpg\" background_parallax=\"fixed\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"center center\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"20\" padding_bottom=\"20\" padding_left=\"0\" padding_right=\"0\" hundred_percent=\"no\" equal_height_columns=\"yes\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][recent_works layout=\"grid\" picture_size=\"auto\" boxed_text=\"unboxed\" filters=\"no\" columns=\"3\" column_spacing=\"12\" cat_slug=\"bedrooms\" exclude_cats=\"\" number_posts=\"6\" offset=\"\" excerpt_length=\"35\" strip_html=\"yes\" carousel_layout=\"title_on_rollover\" scroll_items=\"\" autoplay=\"no\" show_nav=\"yes\" mouse_scroll=\"no\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" class=\"\" id=\"\"][/recent_works][/fullwidth][fullwidth background_color=\"#f0f0ed\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"20\" padding_bottom=\"20\" padding_left=\"0\" padding_right=\"0\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][fusion_text]\r\n<h1 style=\"text-align: center;\">GARDENS</h1>\r\n[/fusion_text][separator style_type=\"single\" top_margin=\"\" bottom_margin=\"20\" sep_color=\"#000000\" border_size=\"\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"170px\" alignment=\"\" class=\"\" id=\"\"][one_sixth last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][/one_sixth][two_third last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][fusion_text]\r\n<h3 style=\"text-align: justify;\">The garden is large and offers many secluded spots to lose yourself in a book with a glass of wine underneath the shade of a tree, listening to the sounds of the birds and smelling the beautiful flowers.</h3>\r\n[/fusion_text][/two_third][one_sixth last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][/one_sixth][recent_works layout=\"grid\" picture_size=\"auto\" boxed_text=\"boxed\" filters=\"no\" columns=\"3\" column_spacing=\"12\" cat_slug=\"gardens\" exclude_cats=\"\" number_posts=\"9\" offset=\"\" excerpt_length=\"35\" strip_html=\"yes\" carousel_layout=\"title_on_rollover\" scroll_items=\"\" autoplay=\"no\" show_nav=\"yes\" mouse_scroll=\"no\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" class=\"\" id=\"\"][/recent_works][/fullwidth][fullwidth background_color=\"#ffffff\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"65px\" padding_bottom=\"65px\" padding_left=\"0px\" padding_right=\"0px\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][button link=\"http://localhost/assagaylodge/book-now/\" color=\"default\" size=\"xlarge\"  type=\"3d\" shape=\"round\" target=\"_self\" title=\"\" gradient_colors=\"#f0f0ed|#f0f0ed\" gradient_hover_colors=\"#6666a4|#6666a4\" accent_color=\"#ffffff\" accent_hover_color=\"#ffffff\" bevel_color=\"\" border_width=\"0px\" icon=\"\" icon_position=\"left\" icon_divider=\"no\" modal=\"\" animation_type=\"0\" animation_direction=\"left\" animation_speed=\"1\" alignment=\"center\" class=\"\" id=\"\"]Make A Reservation Enquiry[/button][/fullwidth][title size=\"1\" content_align=\"left\" style_type=\"\" sep_color=\"\" class=\"\" id=\"\"][/title][fusion_text]Click edit button to change this text.[/fusion_text][fusion_text]Click edit button to change this text.[/fusion_text]', 'Home', '', 'inherit', 'closed', 'closed', '', '7-revision-v1', '', '', '2016-07-25 14:14:30', '2016-07-25 12:14:30', '', 7, 'http://msla.co.za/lodge/7-revision-v1/', 0, 'revision', '', 0),
(1241, 1, '2016-07-25 14:33:39', '2016-07-25 12:33:39', '[fullwidth background_color=\"#f0f0ed\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"20\" padding_bottom=\"20\" padding_left=\"0px\" padding_right=\"0px\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][one_half last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][separator style_type=\"single\" top_margin=\"0\" bottom_margin=\"30\" sep_color=\"#000000\" border_size=\"\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"170px\" alignment=\"center\" class=\"separator-left\" id=\"\"][fusion_text]\r\n<h1 style=\"text-align: center;\">No Fancy Star Grading\r\nNo Room Service\r\nNo Bed Turn-downs\r\nNo Rose Petals in the Bath water</h1>\r\n<h1 style=\"text-align: center;\">... just old fashioned homely comforts</h1>\r\n[/fusion_text][/one_half][one_half last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][fusion_text]\r\n<h1 style=\"text-align: justify;\">5 BEDROOM FAMILY LODGE</h1>\r\n<h3 style=\"text-align: justify;\">We are a four season lodge, because there’s always something to celebrate… We offer comfort, relaxation and privacy right in the heart of 1000 Hills. The Forest, the Gardens, the Atmosphere all speak to  Rest  &amp; Relaxation.</h3>\r\n[/fusion_text][separator style_type=\"single\" top_margin=\"0\" bottom_margin=\"30\" sep_color=\"#000000\" border_size=\"\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"170px\" alignment=\"left\" class=\"separator-left\" id=\"\"][fusion_text]\r\n<p style=\"text-align: left;\">Visit us on Airbnb</p>\r\n<p style=\"text-align: left;\"><a href=\"https://www.airbnb.com/rooms/11821060?preview\" target=\"_blank\"><img class=\"size-full wp-image-1236 alignleft\" src=\"http://msla.co.za/lodge/wp-content/uploads/2016/07/AIRBNB-LOGO-VECTOR-150x150.png\" alt=\"AIRBNB\" width=\"150\" height=\"150\" /></a></p>\r\n[/fusion_text][fusion_code]W3BlcnNvbiBuYW1lPSIiIHRpdGxlPSIiIHBpY3R1cmU9Imh0dHA6Ly9tc2xhLmNvLnphL2xvZGdlL3dwLWNvbnRlbnQvdXBsb2Fkcy8yMDE2LzA3L0FJUkJOQi1MT0dPLVZFQ1RPUi0xNTB4MTUwLnBuZyIgcGljX2xpbms9Imh0dHBzOi8vd3d3LmFpcmJuYi5jb20vcm9vbXMvMTE4MjEwNjA/cHJldmlldyIgbGlua3RhcmdldD0iX2JsYW5rIiBwaWNfc3R5bGU9IiIgaG92ZXJfdHlwZT0iIiBiYWNrZ3JvdW5kX2NvbG9yPSIiIGNvbnRlbnRfYWxpZ25tZW50PSIiIHBpY19zdHlsZV9jb2xvcj0iIiBwaWNfYm9yZGVyc2l6ZT0iIiBwaWNfYm9yZGVyY29sb3I9IiIgcGljX2JvcmRlcnJhZGl1cz0iIiBpY29uX3Bvc2l0aW9uPSIiIHNvY2lhbF9pY29uX2JveGVkPSIiIHNvY2lhbF9pY29uX2JveGVkX3JhZGl1cz0iIiBzb2NpYWxfaWNvbl9jb2xvcnM9IiIgc29jaWFsX2ljb25fYm94ZWRfY29sb3JzPSIiIHNvY2lhbF9pY29uX3Rvb2x0aXA9IiIgZW1haWw9IiIgZmFjZWJvb2s9IiIgdHdpdHRlcj0iIiBpbnN0YWdyYW09IiIgZHJpYmJibGU9IiIgZ29vZ2xlPSIiIGxpbmtlZGluPSIiIGJsb2dnZXI9IiIgdHVtYmxyPSIiIHJlZGRpdD0iIiB5YWhvbz0iIiBkZXZpYW50YXJ0PSIiIHZpbWVvPSIiIHlvdXR1YmU9IiIgcnNzPSIiIHBpbnRlcmVzdD0iIiBkaWdnPSIiIGZsaWNrcj0iIiBmb3Jyc3Q9IiIgbXlzcGFjZT0iIiBza3lwZT0iIiBwYXlwYWw9IiIgZHJvcGJveD0iIiBzb3VuZGNsb3VkPSIiIHZrPSIiIGNsYXNzPSIiIGlkPSIiXVsvcGVyc29uXQ==[/fusion_code][/one_half][/fullwidth][fullwidth background_color=\"#f0f0ed\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"20\" padding_bottom=\"20\" padding_left=\"0px\" padding_right=\"0px\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][one_half last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][fusion_text]\r\n<h3 style=\"text-align: justify;\">Set in the rolling peaks and valleys of a thousand hills surrounded by a canopy of indigenous trees, you will find that horses still have right of way, we certainly offer the best of both worlds, farm and charm coupled with modern amenities that will have you feeling relaxed and rejuvenated.</h3>\r\n<h3 style=\"text-align: justify;\">We know that sometimes you are searching for a romantic getaway or maybe a few days away with old friends. Other times you are searching for a place to host a weekend, family reunion or a business retreat. In addition to nightly room rentals, our lodge is also available for meetings, retreats  and makes the perfect place for a wedding party to stay together and get ready for the big day. Regardless, with our five comfortable and cozy guest bedrooms, multiple garden spaces and hideaways, and a  large private deck  where you can take a nap or read a book we definitely have the room for you!</h3>\r\n<h3 style=\"text-align: justify;\">Evenings are quiet and peaceful taking you far away from the business of city life. This is a unique and memorable country experience. We look forward to having you as a guest!</h3>\r\n[/fusion_text][/one_half][one_half last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][fusion_text]\r\n<h3 style=\"text-align: justify;\">Our lodge has been in our family for years and has recently been beautifully renovated. Five rooms all with en-suite showers lead off your own large central lounge, featuring a 36 foot high vaulted ceiling, offering spacious living, dining, and a bar/conversational lounge area which includes a fitted kitchenette, all adding to a sense of homely comfort. Sumptuous meals can be provided on request and served on the bottom deck at the swimming pool.</h3>\r\n<h3 style=\"text-align: justify;\">Be lulled to sleep by the sound of the waterfall and tinkling stream just outside your window, waking from a peaceful night\'s sleep in a pillow-top bed dressed in luxurious linens to coddle you in ultimate comfort.</h3>\r\n<h3 style=\"text-align: justify;\">Our property boasts many different species of birds and animals. We have a resident otter, a family of wild bush pigs,  a family of rock rabbits, porcupine, little blue duikers, a variety of different frogs and an abundance of bird life, including the occasional snakes that pass through!</h3>\r\n[/fusion_text][/one_half][/fullwidth][fullwidth background_color=\"#f0f0ed\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"20\" padding_bottom=\"20\" padding_left=\"0px\" padding_right=\"0px\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][fusion_text]\r\n<h1 style=\"text-align: center;\">Gallery</h1>\r\n[/fusion_text][separator style_type=\"single\" top_margin=\"\" bottom_margin=\"40\" sep_color=\"#000000\" border_size=\"\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"170px\" alignment=\"\" class=\"\" id=\"\"][one_sixth last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][/one_sixth][two_third last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][fusion_text]\r\n<h3 style=\"text-align: justify;\">The Lodge is open, spacious, comfortable and homely. During hot summer days, sit and bask in the sun on the deck  with one of our  picnic specials. In winter, snuggle up with a good book or challenge one another to a friendly board game in the glassed nook area .</h3>\r\n[/fusion_text][/two_third][one_sixth last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][/one_sixth][/fullwidth][fullwidth background_color=\"#f0f0ed\" background_image=\"http://localhost/assagaylodge/wp-content/uploads/2015/01/Wood_Texture.jpg\" background_parallax=\"fixed\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"30\" padding_bottom=\"10\" padding_left=\"0\" padding_right=\"0\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][recent_works layout=\"grid\" picture_size=\"auto\" boxed_text=\"unboxed\" filters=\"no\" columns=\"3\" column_spacing=\"12\" cat_slug=\"the-lodge\" exclude_cats=\"\" number_posts=\"9\" offset=\"\" excerpt_length=\"35\" strip_html=\"yes\" carousel_layout=\"title_on_rollover\" scroll_items=\"\" autoplay=\"no\" show_nav=\"yes\" mouse_scroll=\"no\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" class=\"\" id=\"\"][/recent_works][/fullwidth][fullwidth background_color=\"#f0f0ed\" background_image=\"\" background_parallax=\"fixed\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"20\" padding_bottom=\"20\" padding_left=\"0px\" padding_right=\"0px\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][fusion_text]\r\n<h1 style=\"text-align: center;\">BEDROOMS</h1>\r\n[/fusion_text][separator style_type=\"single\" top_margin=\"\" bottom_margin=\"20\" sep_color=\"#000000\" border_size=\"\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"170px\" alignment=\"\" class=\"\" id=\"\"][one_sixth last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][/one_sixth][two_third last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][fusion_text]\r\n<h3 style=\"text-align: justify;\">When it comes to our bedrooms we’re proud to say we offer something a little more special. One of five  lovingly and tastefully decorated guest rooms. Soft gray decor soothes the senses providing a peaceful, blissfully comfortable rest from your travels and hectic lives.</h3>\r\n<h3 style=\"text-align: justify;\">Our  bedrooms are spacious, clean, comfortable all en-suite, equipped with either king size or queen size beds. Each room sleeps two guests. The rooms have high ceilings, wall heaters &amp; ceiling fans. Beds all have electric blankets in Winter, 100% cotton percale sheets and thick hyper allergenic microfiber duvets and pillows. All guest rooms are cleaned with organic and green products. Amenities include hairdryers in each room. Three rooms feature King-sized beds  of which two can be  split into two single beds. Two  rooms can therefore be changed into a twin room upon request. Two rooms feature a Queen-sized double bed. These beds cannot be split into twin beds.</h3>\r\n[/fusion_text][/two_third][one_sixth last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][/one_sixth][/fullwidth][fullwidth background_color=\"\" background_image=\"http://localhost/assagaylodge/wp-content/uploads/2015/01/DSC01516-1148-x-764.jpg\" background_parallax=\"fixed\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"center center\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"20\" padding_bottom=\"20\" padding_left=\"0\" padding_right=\"0\" hundred_percent=\"no\" equal_height_columns=\"yes\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][recent_works layout=\"grid\" picture_size=\"auto\" boxed_text=\"unboxed\" filters=\"no\" columns=\"3\" column_spacing=\"12\" cat_slug=\"bedrooms\" exclude_cats=\"\" number_posts=\"6\" offset=\"\" excerpt_length=\"35\" strip_html=\"yes\" carousel_layout=\"title_on_rollover\" scroll_items=\"\" autoplay=\"no\" show_nav=\"yes\" mouse_scroll=\"no\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" class=\"\" id=\"\"][/recent_works][/fullwidth][fullwidth background_color=\"#f0f0ed\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"20\" padding_bottom=\"20\" padding_left=\"0\" padding_right=\"0\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][fusion_text]\r\n<h1 style=\"text-align: center;\">GARDENS</h1>\r\n[/fusion_text][separator style_type=\"single\" top_margin=\"\" bottom_margin=\"20\" sep_color=\"#000000\" border_size=\"\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"170px\" alignment=\"\" class=\"\" id=\"\"][one_sixth last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][/one_sixth][two_third last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][fusion_text]\r\n<h3 style=\"text-align: justify;\">The garden is large and offers many secluded spots to lose yourself in a book with a glass of wine underneath the shade of a tree, listening to the sounds of the birds and smelling the beautiful flowers.</h3>\r\n[/fusion_text][/two_third][one_sixth last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][/one_sixth][recent_works layout=\"grid\" picture_size=\"auto\" boxed_text=\"boxed\" filters=\"no\" columns=\"3\" column_spacing=\"12\" cat_slug=\"gardens\" exclude_cats=\"\" number_posts=\"9\" offset=\"\" excerpt_length=\"35\" strip_html=\"yes\" carousel_layout=\"title_on_rollover\" scroll_items=\"\" autoplay=\"no\" show_nav=\"yes\" mouse_scroll=\"no\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" class=\"\" id=\"\"][/recent_works][/fullwidth][fullwidth background_color=\"#ffffff\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"65px\" padding_bottom=\"65px\" padding_left=\"0px\" padding_right=\"0px\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][button link=\"http://localhost/assagaylodge/book-now/\" color=\"default\" size=\"xlarge\" type=\"3d\" shape=\"round\" target=\"_self\" title=\"\" gradient_colors=\"#f0f0ed|#f0f0ed\" gradient_hover_colors=\"#6666a4|#6666a4\" accent_color=\"#ffffff\" accent_hover_color=\"#ffffff\" bevel_color=\"\" border_width=\"0px\" icon=\"\" icon_position=\"left\" icon_divider=\"no\" modal=\"\" animation_type=\"0\" animation_direction=\"left\" animation_speed=\"1\" alignment=\"center\" class=\"\" id=\"\"]Make A Reservation Enquiry[/button][/fullwidth][title size=\"1\" content_align=\"left\" style_type=\"\" sep_color=\"\" class=\"\" id=\"\"][/title][fusion_text]Click edit button to change this text.[/fusion_text][fusion_text]Click edit button to change this text.[/fusion_text]', 'Home', '', 'inherit', 'closed', 'closed', '', '7-revision-v1', '', '', '2016-07-25 14:33:39', '2016-07-25 12:33:39', '', 7, 'http://msla.co.za/lodge/7-revision-v1/', 0, 'revision', '', 0);
INSERT INTO `wp_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(1242, 1, '2016-07-25 14:37:39', '2016-07-25 12:37:39', '[fullwidth background_color=\"#f0f0ed\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"20\" padding_bottom=\"20\" padding_left=\"0px\" padding_right=\"0px\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][one_half last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][separator style_type=\"single\" top_margin=\"0\" bottom_margin=\"30\" sep_color=\"#000000\" border_size=\"\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"170px\" alignment=\"center\" class=\"separator-left\" id=\"\"][fusion_text]\r\n<h1 style=\"text-align: center;\">No Fancy Star Grading\r\nNo Room Service\r\nNo Bed Turn-downs\r\nNo Rose Petals in the Bath water</h1>\r\n<h1 style=\"text-align: center;\">... just old fashioned homely comforts</h1>\r\n[/fusion_text][/one_half][one_half last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][fusion_text]\r\n<h1 style=\"text-align: justify;\">5 BEDROOM FAMILY LODGE</h1>\r\n<h3 style=\"text-align: justify;\">We are a four season lodge, because there’s always something to celebrate… We offer comfort, relaxation and privacy right in the heart of 1000 Hills. The Forest, the Gardens, the Atmosphere all speak to  Rest  &amp; Relaxation.</h3>\r\n[/fusion_text][separator style_type=\"single\" top_margin=\"0\" bottom_margin=\"30\" sep_color=\"#000000\" border_size=\"\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"170px\" alignment=\"left\" class=\"separator-left\" id=\"\"][fusion_text]\r\n<p style=\"text-align: left;\"><a href=\"https://www.airbnb.com/rooms/11821060?preview\" target=\"_blank\"><img class=\"size-full wp-image-1236 alignleft\" src=\"http://msla.co.za/lodge/wp-content/uploads/2016/07/AIRBNB-LOGO-VECTOR-150x150.png\" alt=\"AIRBNB\" width=\"150\" height=\"150\" /></a><a href=\"http://msla.co.za/lodge/wp-content/uploads/2015/01/trip-advisor-logo-639CB9D11D-seeklogo_com.png\"><img class=\"size-thumbnail wp-image-1240 alignleft\" src=\"http://msla.co.za/lodge/wp-content/uploads/2015/01/trip-advisor-logo-639CB9D11D-seeklogo_com-150x150.png\" alt=\"trip-advisor-logo-639CB9D11D-seeklogo_com\" width=\"150\" height=\"150\" /></a></p>\r\n[/fusion_text][fusion_code]W3BlcnNvbiBuYW1lPSIiIHRpdGxlPSIiIHBpY3R1cmU9Imh0dHA6Ly9tc2xhLmNvLnphL2xvZGdlL3dwLWNvbnRlbnQvdXBsb2Fkcy8yMDE2LzA3L0FJUkJOQi1MT0dPLVZFQ1RPUi0xNTB4MTUwLnBuZyIgcGljX2xpbms9Imh0dHBzOi8vd3d3LmFpcmJuYi5jb20vcm9vbXMvMTE4MjEwNjA/cHJldmlldyIgbGlua3RhcmdldD0iX2JsYW5rIiBwaWNfc3R5bGU9IiIgaG92ZXJfdHlwZT0iIiBiYWNrZ3JvdW5kX2NvbG9yPSIiIGNvbnRlbnRfYWxpZ25tZW50PSIiIHBpY19zdHlsZV9jb2xvcj0iIiBwaWNfYm9yZGVyc2l6ZT0iIiBwaWNfYm9yZGVyY29sb3I9IiIgcGljX2JvcmRlcnJhZGl1cz0iIiBpY29uX3Bvc2l0aW9uPSIiIHNvY2lhbF9pY29uX2JveGVkPSIiIHNvY2lhbF9pY29uX2JveGVkX3JhZGl1cz0iIiBzb2NpYWxfaWNvbl9jb2xvcnM9IiIgc29jaWFsX2ljb25fYm94ZWRfY29sb3JzPSIiIHNvY2lhbF9pY29uX3Rvb2x0aXA9IiIgZW1haWw9IiIgZmFjZWJvb2s9IiIgdHdpdHRlcj0iIiBpbnN0YWdyYW09IiIgZHJpYmJibGU9IiIgZ29vZ2xlPSIiIGxpbmtlZGluPSIiIGJsb2dnZXI9IiIgdHVtYmxyPSIiIHJlZGRpdD0iIiB5YWhvbz0iIiBkZXZpYW50YXJ0PSIiIHZpbWVvPSIiIHlvdXR1YmU9IiIgcnNzPSIiIHBpbnRlcmVzdD0iIiBkaWdnPSIiIGZsaWNrcj0iIiBmb3Jyc3Q9IiIgbXlzcGFjZT0iIiBza3lwZT0iIiBwYXlwYWw9IiIgZHJvcGJveD0iIiBzb3VuZGNsb3VkPSIiIHZrPSIiIGNsYXNzPSIiIGlkPSIiXVsvcGVyc29uXQ==[/fusion_code][/one_half][/fullwidth][fullwidth background_color=\"#f0f0ed\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"20\" padding_bottom=\"20\" padding_left=\"0px\" padding_right=\"0px\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][one_half last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][fusion_text]\r\n<h3 style=\"text-align: justify;\">Set in the rolling peaks and valleys of a thousand hills surrounded by a canopy of indigenous trees, you will find that horses still have right of way, we certainly offer the best of both worlds, farm and charm coupled with modern amenities that will have you feeling relaxed and rejuvenated.</h3>\r\n<h3 style=\"text-align: justify;\">We know that sometimes you are searching for a romantic getaway or maybe a few days away with old friends. Other times you are searching for a place to host a weekend, family reunion or a business retreat. In addition to nightly room rentals, our lodge is also available for meetings, retreats  and makes the perfect place for a wedding party to stay together and get ready for the big day. Regardless, with our five comfortable and cozy guest bedrooms, multiple garden spaces and hideaways, and a  large private deck  where you can take a nap or read a book we definitely have the room for you!</h3>\r\n<h3 style=\"text-align: justify;\">Evenings are quiet and peaceful taking you far away from the business of city life. This is a unique and memorable country experience. We look forward to having you as a guest!</h3>\r\n[/fusion_text][/one_half][one_half last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][fusion_text]\r\n<h3 style=\"text-align: justify;\">Our lodge has been in our family for years and has recently been beautifully renovated. Five rooms all with en-suite showers lead off your own large central lounge, featuring a 36 foot high vaulted ceiling, offering spacious living, dining, and a bar/conversational lounge area which includes a fitted kitchenette, all adding to a sense of homely comfort. Sumptuous meals can be provided on request and served on the bottom deck at the swimming pool.</h3>\r\n<h3 style=\"text-align: justify;\">Be lulled to sleep by the sound of the waterfall and tinkling stream just outside your window, waking from a peaceful night\'s sleep in a pillow-top bed dressed in luxurious linens to coddle you in ultimate comfort.</h3>\r\n<h3 style=\"text-align: justify;\">Our property boasts many different species of birds and animals. We have a resident otter, a family of wild bush pigs,  a family of rock rabbits, porcupine, little blue duikers, a variety of different frogs and an abundance of bird life, including the occasional snakes that pass through!</h3>\r\n[/fusion_text][/one_half][/fullwidth][fullwidth background_color=\"#f0f0ed\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"20\" padding_bottom=\"20\" padding_left=\"0px\" padding_right=\"0px\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][fusion_text]\r\n<h1 style=\"text-align: center;\">Gallery</h1>\r\n[/fusion_text][separator style_type=\"single\" top_margin=\"\" bottom_margin=\"40\" sep_color=\"#000000\" border_size=\"\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"170px\" alignment=\"\" class=\"\" id=\"\"][one_sixth last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][/one_sixth][two_third last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][fusion_text]\r\n<h3 style=\"text-align: justify;\">The Lodge is open, spacious, comfortable and homely. During hot summer days, sit and bask in the sun on the deck  with one of our  picnic specials. In winter, snuggle up with a good book or challenge one another to a friendly board game in the glassed nook area .</h3>\r\n[/fusion_text][/two_third][one_sixth last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][/one_sixth][/fullwidth][fullwidth background_color=\"#f0f0ed\" background_image=\"http://localhost/assagaylodge/wp-content/uploads/2015/01/Wood_Texture.jpg\" background_parallax=\"fixed\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"30\" padding_bottom=\"10\" padding_left=\"0\" padding_right=\"0\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][recent_works layout=\"grid\" picture_size=\"auto\" boxed_text=\"unboxed\" filters=\"no\" columns=\"3\" column_spacing=\"12\" cat_slug=\"the-lodge\" exclude_cats=\"\" number_posts=\"9\" offset=\"\" excerpt_length=\"35\" strip_html=\"yes\" carousel_layout=\"title_on_rollover\" scroll_items=\"\" autoplay=\"no\" show_nav=\"yes\" mouse_scroll=\"no\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" class=\"\" id=\"\"][/recent_works][/fullwidth][fullwidth background_color=\"#f0f0ed\" background_image=\"\" background_parallax=\"fixed\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"20\" padding_bottom=\"20\" padding_left=\"0px\" padding_right=\"0px\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][fusion_text]\r\n<h1 style=\"text-align: center;\">BEDROOMS</h1>\r\n[/fusion_text][separator style_type=\"single\" top_margin=\"\" bottom_margin=\"20\" sep_color=\"#000000\" border_size=\"\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"170px\" alignment=\"\" class=\"\" id=\"\"][one_sixth last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][/one_sixth][two_third last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][fusion_text]\r\n<h3 style=\"text-align: justify;\">When it comes to our bedrooms we’re proud to say we offer something a little more special. One of five  lovingly and tastefully decorated guest rooms. Soft gray decor soothes the senses providing a peaceful, blissfully comfortable rest from your travels and hectic lives.</h3>\r\n<h3 style=\"text-align: justify;\">Our  bedrooms are spacious, clean, comfortable all en-suite, equipped with either king size or queen size beds. Each room sleeps two guests. The rooms have high ceilings, wall heaters &amp; ceiling fans. Beds all have electric blankets in Winter, 100% cotton percale sheets and thick hyper allergenic microfiber duvets and pillows. All guest rooms are cleaned with organic and green products. Amenities include hairdryers in each room. Three rooms feature King-sized beds  of which two can be  split into two single beds. Two  rooms can therefore be changed into a twin room upon request. Two rooms feature a Queen-sized double bed. These beds cannot be split into twin beds.</h3>\r\n[/fusion_text][/two_third][one_sixth last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][/one_sixth][/fullwidth][fullwidth background_color=\"\" background_image=\"http://localhost/assagaylodge/wp-content/uploads/2015/01/DSC01516-1148-x-764.jpg\" background_parallax=\"fixed\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"center center\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"20\" padding_bottom=\"20\" padding_left=\"0\" padding_right=\"0\" hundred_percent=\"no\" equal_height_columns=\"yes\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][recent_works layout=\"grid\" picture_size=\"auto\" boxed_text=\"unboxed\" filters=\"no\" columns=\"3\" column_spacing=\"12\" cat_slug=\"bedrooms\" exclude_cats=\"\" number_posts=\"6\" offset=\"\" excerpt_length=\"35\" strip_html=\"yes\" carousel_layout=\"title_on_rollover\" scroll_items=\"\" autoplay=\"no\" show_nav=\"yes\" mouse_scroll=\"no\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" class=\"\" id=\"\"][/recent_works][/fullwidth][fullwidth background_color=\"#f0f0ed\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"20\" padding_bottom=\"20\" padding_left=\"0\" padding_right=\"0\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][fusion_text]\r\n<h1 style=\"text-align: center;\">GARDENS</h1>\r\n[/fusion_text][separator style_type=\"single\" top_margin=\"\" bottom_margin=\"20\" sep_color=\"#000000\" border_size=\"\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"170px\" alignment=\"\" class=\"\" id=\"\"][one_sixth last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][/one_sixth][two_third last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][fusion_text]\r\n<h3 style=\"text-align: justify;\">The garden is large and offers many secluded spots to lose yourself in a book with a glass of wine underneath the shade of a tree, listening to the sounds of the birds and smelling the beautiful flowers.</h3>\r\n[/fusion_text][/two_third][one_sixth last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][/one_sixth][recent_works layout=\"grid\" picture_size=\"auto\" boxed_text=\"boxed\" filters=\"no\" columns=\"3\" column_spacing=\"12\" cat_slug=\"gardens\" exclude_cats=\"\" number_posts=\"9\" offset=\"\" excerpt_length=\"35\" strip_html=\"yes\" carousel_layout=\"title_on_rollover\" scroll_items=\"\" autoplay=\"no\" show_nav=\"yes\" mouse_scroll=\"no\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" class=\"\" id=\"\"][/recent_works][/fullwidth][fullwidth background_color=\"#ffffff\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"65px\" padding_bottom=\"65px\" padding_left=\"0px\" padding_right=\"0px\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][button link=\"http://localhost/assagaylodge/book-now/\" color=\"default\" size=\"xlarge\" type=\"3d\" shape=\"round\" target=\"_self\" title=\"\" gradient_colors=\"#f0f0ed|#f0f0ed\" gradient_hover_colors=\"#6666a4|#6666a4\" accent_color=\"#ffffff\" accent_hover_color=\"#ffffff\" bevel_color=\"\" border_width=\"0px\" icon=\"\" icon_position=\"left\" icon_divider=\"no\" modal=\"\" animation_type=\"0\" animation_direction=\"left\" animation_speed=\"1\" alignment=\"center\" class=\"\" id=\"\"]Make A Reservation Enquiry[/button][/fullwidth][title size=\"1\" content_align=\"left\" style_type=\"\" sep_color=\"\" class=\"\" id=\"\"][/title][fusion_text]Click edit button to change this text.[/fusion_text][fusion_text]Click edit button to change this text.[/fusion_text]', 'Home', '', 'inherit', 'closed', 'closed', '', '7-revision-v1', '', '', '2016-07-25 14:37:39', '2016-07-25 12:37:39', '', 7, 'http://msla.co.za/lodge/7-revision-v1/', 0, 'revision', '', 0),
(1243, 1, '2016-07-25 15:59:44', '2016-07-25 13:59:44', '[fullwidth background_color=\"#f0f0ed\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"20\" padding_bottom=\"20\" padding_left=\"0px\" padding_right=\"0px\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][one_half last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][separator style_type=\"single\" top_margin=\"0\" bottom_margin=\"30\" sep_color=\"#000000\" border_size=\"\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"170px\" alignment=\"center\" class=\"separator-left\" id=\"\"][fusion_text]\r\n<h1 style=\"text-align: center;\">No Fancy Star Grading\r\nNo Room Service\r\nNo Bed Turn-downs\r\nNo Rose Petals in the Bath water</h1>\r\n<h1 style=\"text-align: center;\">... just old fashioned homely comforts</h1>\r\n[/fusion_text][/one_half][one_half last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][fusion_text]\r\n<h1 style=\"text-align: justify;\">5 BEDROOM FAMILY LODGE</h1>\r\n<h3 style=\"text-align: justify;\">We are a four season lodge, because there’s always something to celebrate… We offer comfort, relaxation and privacy right in the heart of 1000 Hills. The Forest, the Gardens, the Atmosphere all speak to  Rest  &amp; Relaxation.</h3>\r\n[/fusion_text][separator style_type=\"single\" top_margin=\"0\" bottom_margin=\"30\" sep_color=\"#000000\" border_size=\"\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"170px\" alignment=\"left\" class=\"separator-left\" id=\"\"][fusion_text]\r\n<p style=\"text-align: left;\"><a href=\"https://www.airbnb.com/rooms/11821060?preview\" target=\"_blank\"><img class=\"size-full wp-image-1236 alignleft\" src=\"http://msla.co.za/lodge/wp-content/uploads/2016/07/AIRBNB-LOGO-VECTOR-150x150.png\" alt=\"AIRBNB\" width=\"150\" height=\"150\" /></a><a href=\"https://www.tripadvisor.com/VacationRentalReview-g3420955-d6757119-Assagay_Forest_Lodge-Botha_s_Hill_KwaZulu_Natal.html\" target=\"_blank\"><img class=\"size-thumbnail wp-image-1240 alignleft\" src=\"http://msla.co.za/lodge/wp-content/uploads/2015/01/trip-advisor-logo-639CB9D11D-seeklogo_com-150x150.png\" alt=\"trip-advisor-logo-639CB9D11D-seeklogo_com\" width=\"150\" height=\"150\" /></a></p>\r\n[/fusion_text][fusion_code]W3BlcnNvbiBuYW1lPSIiIHRpdGxlPSIiIHBpY3R1cmU9Imh0dHA6Ly9tc2xhLmNvLnphL2xvZGdlL3dwLWNvbnRlbnQvdXBsb2Fkcy8yMDE2LzA3L0FJUkJOQi1MT0dPLVZFQ1RPUi0xNTB4MTUwLnBuZyIgcGljX2xpbms9Imh0dHBzOi8vd3d3LmFpcmJuYi5jb20vcm9vbXMvMTE4MjEwNjA/cHJldmlldyIgbGlua3RhcmdldD0iX2JsYW5rIiBwaWNfc3R5bGU9IiIgaG92ZXJfdHlwZT0iIiBiYWNrZ3JvdW5kX2NvbG9yPSIiIGNvbnRlbnRfYWxpZ25tZW50PSIiIHBpY19zdHlsZV9jb2xvcj0iIiBwaWNfYm9yZGVyc2l6ZT0iIiBwaWNfYm9yZGVyY29sb3I9IiIgcGljX2JvcmRlcnJhZGl1cz0iIiBpY29uX3Bvc2l0aW9uPSIiIHNvY2lhbF9pY29uX2JveGVkPSIiIHNvY2lhbF9pY29uX2JveGVkX3JhZGl1cz0iIiBzb2NpYWxfaWNvbl9jb2xvcnM9IiIgc29jaWFsX2ljb25fYm94ZWRfY29sb3JzPSIiIHNvY2lhbF9pY29uX3Rvb2x0aXA9IiIgZW1haWw9IiIgZmFjZWJvb2s9IiIgdHdpdHRlcj0iIiBpbnN0YWdyYW09IiIgZHJpYmJibGU9IiIgZ29vZ2xlPSIiIGxpbmtlZGluPSIiIGJsb2dnZXI9IiIgdHVtYmxyPSIiIHJlZGRpdD0iIiB5YWhvbz0iIiBkZXZpYW50YXJ0PSIiIHZpbWVvPSIiIHlvdXR1YmU9IiIgcnNzPSIiIHBpbnRlcmVzdD0iIiBkaWdnPSIiIGZsaWNrcj0iIiBmb3Jyc3Q9IiIgbXlzcGFjZT0iIiBza3lwZT0iIiBwYXlwYWw9IiIgZHJvcGJveD0iIiBzb3VuZGNsb3VkPSIiIHZrPSIiIGNsYXNzPSIiIGlkPSIiXVsvcGVyc29uXQ==[/fusion_code][/one_half][/fullwidth][fullwidth background_color=\"#f0f0ed\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"20\" padding_bottom=\"20\" padding_left=\"0px\" padding_right=\"0px\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][one_half last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][fusion_text]\r\n<h3 style=\"text-align: justify;\">Set in the rolling peaks and valleys of a thousand hills surrounded by a canopy of indigenous trees, you will find that horses still have right of way, we certainly offer the best of both worlds, farm and charm coupled with modern amenities that will have you feeling relaxed and rejuvenated.</h3>\r\n<h3 style=\"text-align: justify;\">We know that sometimes you are searching for a romantic getaway or maybe a few days away with old friends. Other times you are searching for a place to host a weekend, family reunion or a business retreat. In addition to nightly room rentals, our lodge is also available for meetings, retreats  and makes the perfect place for a wedding party to stay together and get ready for the big day. Regardless, with our five comfortable and cozy guest bedrooms, multiple garden spaces and hideaways, and a  large private deck  where you can take a nap or read a book we definitely have the room for you!</h3>\r\n<h3 style=\"text-align: justify;\">Evenings are quiet and peaceful taking you far away from the business of city life. This is a unique and memorable country experience. We look forward to having you as a guest!</h3>\r\n[/fusion_text][/one_half][one_half last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][fusion_text]\r\n<h3 style=\"text-align: justify;\">Our lodge has been in our family for years and has recently been beautifully renovated. Five rooms all with en-suite showers lead off your own large central lounge, featuring a 36 foot high vaulted ceiling, offering spacious living, dining, and a bar/conversational lounge area which includes a fitted kitchenette, all adding to a sense of homely comfort. Sumptuous meals can be provided on request and served on the bottom deck at the swimming pool.</h3>\r\n<h3 style=\"text-align: justify;\">Be lulled to sleep by the sound of the waterfall and tinkling stream just outside your window, waking from a peaceful night\'s sleep in a pillow-top bed dressed in luxurious linens to coddle you in ultimate comfort.</h3>\r\n<h3 style=\"text-align: justify;\">Our property boasts many different species of birds and animals. We have a resident otter, a family of wild bush pigs,  a family of rock rabbits, porcupine, little blue duikers, a variety of different frogs and an abundance of bird life, including the occasional snakes that pass through!</h3>\r\n[/fusion_text][/one_half][/fullwidth][fullwidth background_color=\"#f0f0ed\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"20\" padding_bottom=\"20\" padding_left=\"0px\" padding_right=\"0px\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][fusion_text]\r\n<h1 style=\"text-align: center;\">Gallery</h1>\r\n[/fusion_text][separator style_type=\"single\" top_margin=\"\" bottom_margin=\"40\" sep_color=\"#000000\" border_size=\"\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"170px\" alignment=\"\" class=\"\" id=\"\"][one_sixth last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][/one_sixth][two_third last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][fusion_text]\r\n<h3 style=\"text-align: justify;\">The Lodge is open, spacious, comfortable and homely. During hot summer days, sit and bask in the sun on the deck  with one of our  picnic specials. In winter, snuggle up with a good book or challenge one another to a friendly board game in the glassed nook area .</h3>\r\n[/fusion_text][/two_third][one_sixth last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][/one_sixth][/fullwidth][fullwidth background_color=\"#f0f0ed\" background_image=\"http://localhost/assagaylodge/wp-content/uploads/2015/01/Wood_Texture.jpg\" background_parallax=\"fixed\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"30\" padding_bottom=\"10\" padding_left=\"0\" padding_right=\"0\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][recent_works layout=\"grid\" picture_size=\"auto\" boxed_text=\"unboxed\" filters=\"no\" columns=\"3\" column_spacing=\"12\" cat_slug=\"the-lodge\" exclude_cats=\"\" number_posts=\"9\" offset=\"\" excerpt_length=\"35\" strip_html=\"yes\" carousel_layout=\"title_on_rollover\" scroll_items=\"\" autoplay=\"no\" show_nav=\"yes\" mouse_scroll=\"no\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" class=\"\" id=\"\"][/recent_works][/fullwidth][fullwidth background_color=\"#f0f0ed\" background_image=\"\" background_parallax=\"fixed\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"20\" padding_bottom=\"20\" padding_left=\"0px\" padding_right=\"0px\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][fusion_text]\r\n<h1 style=\"text-align: center;\">BEDROOMS</h1>\r\n[/fusion_text][separator style_type=\"single\" top_margin=\"\" bottom_margin=\"20\" sep_color=\"#000000\" border_size=\"\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"170px\" alignment=\"\" class=\"\" id=\"\"][one_sixth last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][/one_sixth][two_third last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][fusion_text]\r\n<h3 style=\"text-align: justify;\">When it comes to our bedrooms we’re proud to say we offer something a little more special. One of five  lovingly and tastefully decorated guest rooms. Soft gray decor soothes the senses providing a peaceful, blissfully comfortable rest from your travels and hectic lives.</h3>\r\n<h3 style=\"text-align: justify;\">Our  bedrooms are spacious, clean, comfortable all en-suite, equipped with either king size or queen size beds. Each room sleeps two guests. The rooms have high ceilings, wall heaters &amp; ceiling fans. Beds all have electric blankets in Winter, 100% cotton percale sheets and thick hyper allergenic microfiber duvets and pillows. All guest rooms are cleaned with organic and green products. Amenities include hairdryers in each room. Three rooms feature King-sized beds  of which two can be  split into two single beds. Two  rooms can therefore be changed into a twin room upon request. Two rooms feature a Queen-sized double bed. These beds cannot be split into twin beds.</h3>\r\n[/fusion_text][/two_third][one_sixth last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][/one_sixth][/fullwidth][fullwidth background_color=\"\" background_image=\"http://localhost/assagaylodge/wp-content/uploads/2015/01/DSC01516-1148-x-764.jpg\" background_parallax=\"fixed\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"center center\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"20\" padding_bottom=\"20\" padding_left=\"0\" padding_right=\"0\" hundred_percent=\"no\" equal_height_columns=\"yes\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][recent_works layout=\"grid\" picture_size=\"auto\" boxed_text=\"unboxed\" filters=\"no\" columns=\"3\" column_spacing=\"12\" cat_slug=\"bedrooms\" exclude_cats=\"\" number_posts=\"6\" offset=\"\" excerpt_length=\"35\" strip_html=\"yes\" carousel_layout=\"title_on_rollover\" scroll_items=\"\" autoplay=\"no\" show_nav=\"yes\" mouse_scroll=\"no\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" class=\"\" id=\"\"][/recent_works][/fullwidth][fullwidth background_color=\"#f0f0ed\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"20\" padding_bottom=\"20\" padding_left=\"0\" padding_right=\"0\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][fusion_text]\r\n<h1 style=\"text-align: center;\">GARDENS</h1>\r\n[/fusion_text][separator style_type=\"single\" top_margin=\"\" bottom_margin=\"20\" sep_color=\"#000000\" border_size=\"\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"170px\" alignment=\"\" class=\"\" id=\"\"][one_sixth last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][/one_sixth][two_third last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][fusion_text]\r\n<h3 style=\"text-align: justify;\">The garden is large and offers many secluded spots to lose yourself in a book with a glass of wine underneath the shade of a tree, listening to the sounds of the birds and smelling the beautiful flowers.</h3>\r\n[/fusion_text][/two_third][one_sixth last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][/one_sixth][recent_works layout=\"grid\" picture_size=\"auto\" boxed_text=\"boxed\" filters=\"no\" columns=\"3\" column_spacing=\"12\" cat_slug=\"gardens\" exclude_cats=\"\" number_posts=\"9\" offset=\"\" excerpt_length=\"35\" strip_html=\"yes\" carousel_layout=\"title_on_rollover\" scroll_items=\"\" autoplay=\"no\" show_nav=\"yes\" mouse_scroll=\"no\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" class=\"\" id=\"\"][/recent_works][/fullwidth][fullwidth background_color=\"#ffffff\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"65px\" padding_bottom=\"65px\" padding_left=\"0px\" padding_right=\"0px\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][button link=\"http://localhost/assagaylodge/book-now/\" color=\"default\" size=\"xlarge\" type=\"3d\" shape=\"round\" target=\"_self\" title=\"\" gradient_colors=\"#f0f0ed|#f0f0ed\" gradient_hover_colors=\"#6666a4|#6666a4\" accent_color=\"#ffffff\" accent_hover_color=\"#ffffff\" bevel_color=\"\" border_width=\"0px\" icon=\"\" icon_position=\"left\" icon_divider=\"no\" modal=\"\" animation_type=\"0\" animation_direction=\"left\" animation_speed=\"1\" alignment=\"center\" class=\"\" id=\"\"]Make A Reservation Enquiry[/button][/fullwidth][title size=\"1\" content_align=\"left\" style_type=\"\" sep_color=\"\" class=\"\" id=\"\"][/title][fusion_text]Click edit button to change this text.[/fusion_text][fusion_text]Click edit button to change this text.[/fusion_text]', 'Home', '', 'inherit', 'closed', 'closed', '', '7-revision-v1', '', '', '2016-07-25 15:59:44', '2016-07-25 13:59:44', '', 7, 'http://msla.co.za/lodge/7-revision-v1/', 0, 'revision', '', 0),
(1244, 1, '2016-07-25 16:19:46', '2016-07-25 14:19:46', '', 'tripadv', '', 'inherit', 'open', 'closed', '', 'tripadv', '', '', '2016-07-25 16:19:46', '2016-07-25 14:19:46', '', 7, 'http://msla.co.za/lodge/wp-content/uploads/2015/01/tripadv.jpg', 0, 'attachment', 'image/jpeg', 0);
INSERT INTO `wp_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(1245, 1, '2016-07-25 16:28:00', '2016-07-25 14:28:00', '[fullwidth background_color=\"#f0f0ed\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"20\" padding_bottom=\"20\" padding_left=\"0px\" padding_right=\"0px\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][one_half last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][separator style_type=\"single\" top_margin=\"0\" bottom_margin=\"30\" sep_color=\"#000000\" border_size=\"\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"170px\" alignment=\"center\" class=\"separator-left\" id=\"\"][fusion_text]\r\n<h1 style=\"text-align: center;\">No Fancy Star Grading\r\nNo Room Service\r\nNo Bed Turn-downs\r\nNo Rose Petals in the Bath water</h1>\r\n<h1 style=\"text-align: center;\">... just old fashioned homely comforts</h1>\r\n[/fusion_text][/one_half][one_half last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][fusion_text]\r\n<h1 style=\"text-align: justify;\">5 BEDROOM FAMILY LODGE</h1>\r\n<h3 style=\"text-align: justify;\">We are a four season lodge, because there’s always something to celebrate… We offer comfort, relaxation and privacy right in the heart of 1000 Hills. The Forest, the Gardens, the Atmosphere all speak to  Rest  &amp; Relaxation.</h3>\r\n[/fusion_text][separator style_type=\"single\" top_margin=\"0\" bottom_margin=\"30\" sep_color=\"#000000\" border_size=\"\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"170px\" alignment=\"left\" class=\"separator-left\" id=\"\"][fusion_text]\r\n<p style=\"text-align: left;\"><a href=\"https://www.airbnb.com/rooms/11821060?preview\" target=\"_blank\"><img class=\"size-full wp-image-1236 alignleft\" src=\"http://msla.co.za/lodge/wp-content/uploads/2016/07/AIRBNB-LOGO-VECTOR-150x150.png\" alt=\"AIRBNB\" width=\"150\" height=\"150\" /></a><a href=\"https://www.tripadvisor.com/VacationRentalReview-g3420955-d6757119-Assagay_Forest_Lodge-Botha_s_Hill_KwaZulu_Natal.html\" target=\"_blank\"><img class=\"size-thumbnail wp-image-1244 alignleft\" src=\"http://msla.co.za/lodge/wp-content/uploads/2015/01/tripadv-150x150.jpg\" alt=\"tripadv\" width=\"150\" height=\"150\" /></a></p>\r\n[/fusion_text][/one_half][/fullwidth][fullwidth background_color=\"#f0f0ed\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"20\" padding_bottom=\"20\" padding_left=\"0px\" padding_right=\"0px\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][one_half last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][fusion_text]\r\n<h3 style=\"text-align: justify;\">Set in the rolling peaks and valleys of a thousand hills surrounded by a canopy of indigenous trees, you will find that horses still have right of way, we certainly offer the best of both worlds, farm and charm coupled with modern amenities that will have you feeling relaxed and rejuvenated.</h3>\r\n<h3 style=\"text-align: justify;\">We know that sometimes you are searching for a romantic getaway or maybe a few days away with old friends. Other times you are searching for a place to host a weekend, family reunion or a business retreat. In addition to nightly room rentals, our lodge is also available for meetings, retreats  and makes the perfect place for a wedding party to stay together and get ready for the big day. Regardless, with our five comfortable and cozy guest bedrooms, multiple garden spaces and hideaways, and a  large private deck  where you can take a nap or read a book we definitely have the room for you!</h3>\r\n<h3 style=\"text-align: justify;\">Evenings are quiet and peaceful taking you far away from the business of city life. This is a unique and memorable country experience. We look forward to having you as a guest!</h3>\r\n[/fusion_text][/one_half][one_half last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][fusion_text]\r\n<h3 style=\"text-align: justify;\">Our lodge has been in our family for years and has recently been beautifully renovated. Five rooms all with en-suite showers lead off your own large central lounge, featuring a 36 foot high vaulted ceiling, offering spacious living, dining, and a bar/conversational lounge area which includes a fitted kitchenette, all adding to a sense of homely comfort. Sumptuous meals can be provided on request and served on the bottom deck at the swimming pool.</h3>\r\n<h3 style=\"text-align: justify;\">Be lulled to sleep by the sound of the waterfall and tinkling stream just outside your window, waking from a peaceful night\'s sleep in a pillow-top bed dressed in luxurious linens to coddle you in ultimate comfort.</h3>\r\n<h3 style=\"text-align: justify;\">Our property boasts many different species of birds and animals. We have a resident otter, a family of wild bush pigs,  a family of rock rabbits, porcupine, little blue duikers, a variety of different frogs and an abundance of bird life, including the occasional snakes that pass through!</h3>\r\n[/fusion_text][/one_half][/fullwidth][fullwidth background_color=\"#f0f0ed\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"20\" padding_bottom=\"20\" padding_left=\"0px\" padding_right=\"0px\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][fusion_text]\r\n<h1 style=\"text-align: center;\">Gallery</h1>\r\n[/fusion_text][separator style_type=\"single\" top_margin=\"\" bottom_margin=\"40\" sep_color=\"#000000\" border_size=\"\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"170px\" alignment=\"\" class=\"\" id=\"\"][one_sixth last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][/one_sixth][two_third last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][fusion_text]\r\n<h3 style=\"text-align: justify;\">The Lodge is open, spacious, comfortable and homely. During hot summer days, sit and bask in the sun on the deck  with one of our  picnic specials. In winter, snuggle up with a good book or challenge one another to a friendly board game in the glassed nook area .</h3>\r\n[/fusion_text][/two_third][one_sixth last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][/one_sixth][/fullwidth][fullwidth background_color=\"#f0f0ed\" background_image=\"http://localhost/assagaylodge/wp-content/uploads/2015/01/Wood_Texture.jpg\" background_parallax=\"fixed\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"30\" padding_bottom=\"10\" padding_left=\"0\" padding_right=\"0\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][recent_works layout=\"grid\" picture_size=\"auto\" boxed_text=\"unboxed\" filters=\"no\" columns=\"3\" column_spacing=\"12\" cat_slug=\"the-lodge\" exclude_cats=\"\" number_posts=\"9\" offset=\"\" excerpt_length=\"35\" strip_html=\"yes\" carousel_layout=\"title_on_rollover\" scroll_items=\"\" autoplay=\"no\" show_nav=\"yes\" mouse_scroll=\"no\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" class=\"\" id=\"\"][/recent_works][/fullwidth][fullwidth background_color=\"#f0f0ed\" background_image=\"\" background_parallax=\"fixed\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"20\" padding_bottom=\"20\" padding_left=\"0px\" padding_right=\"0px\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][fusion_text]\r\n<h1 style=\"text-align: center;\">BEDROOMS</h1>\r\n[/fusion_text][separator style_type=\"single\" top_margin=\"\" bottom_margin=\"20\" sep_color=\"#000000\" border_size=\"\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"170px\" alignment=\"\" class=\"\" id=\"\"][one_sixth last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][/one_sixth][two_third last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][fusion_text]\r\n<h3 style=\"text-align: justify;\">When it comes to our bedrooms we’re proud to say we offer something a little more special. One of five  lovingly and tastefully decorated guest rooms. Soft gray decor soothes the senses providing a peaceful, blissfully comfortable rest from your travels and hectic lives.</h3>\r\n<h3 style=\"text-align: justify;\">Our  bedrooms are spacious, clean, comfortable all en-suite, equipped with either king size or queen size beds. Each room sleeps two guests. The rooms have high ceilings, wall heaters &amp; ceiling fans. Beds all have electric blankets in Winter, 100% cotton percale sheets and thick hyper allergenic microfiber duvets and pillows. All guest rooms are cleaned with organic and green products. Amenities include hairdryers in each room. Three rooms feature King-sized beds  of which two can be  split into two single beds. Two  rooms can therefore be changed into a twin room upon request. Two rooms feature a Queen-sized double bed. These beds cannot be split into twin beds.</h3>\r\n[/fusion_text][/two_third][one_sixth last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][/one_sixth][/fullwidth][fullwidth background_color=\"\" background_image=\"http://localhost/assagaylodge/wp-content/uploads/2015/01/DSC01516-1148-x-764.jpg\" background_parallax=\"fixed\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"center center\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"20\" padding_bottom=\"20\" padding_left=\"0\" padding_right=\"0\" hundred_percent=\"no\" equal_height_columns=\"yes\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][recent_works layout=\"grid\" picture_size=\"auto\" boxed_text=\"unboxed\" filters=\"no\" columns=\"3\" column_spacing=\"12\" cat_slug=\"bedrooms\" exclude_cats=\"\" number_posts=\"6\" offset=\"\" excerpt_length=\"35\" strip_html=\"yes\" carousel_layout=\"title_on_rollover\" scroll_items=\"\" autoplay=\"no\" show_nav=\"yes\" mouse_scroll=\"no\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" class=\"\" id=\"\"][/recent_works][/fullwidth][fullwidth background_color=\"#f0f0ed\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"20\" padding_bottom=\"20\" padding_left=\"0\" padding_right=\"0\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][fusion_text]\r\n<h1 style=\"text-align: center;\">GARDENS</h1>\r\n[/fusion_text][separator style_type=\"single\" top_margin=\"\" bottom_margin=\"20\" sep_color=\"#000000\" border_size=\"\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"170px\" alignment=\"\" class=\"\" id=\"\"][one_sixth last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][/one_sixth][two_third last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][fusion_text]\r\n<h3 style=\"text-align: justify;\">The garden is large and offers many secluded spots to lose yourself in a book with a glass of wine underneath the shade of a tree, listening to the sounds of the birds and smelling the beautiful flowers.</h3>\r\n[/fusion_text][/two_third][one_sixth last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][/one_sixth][recent_works layout=\"grid\" picture_size=\"auto\" boxed_text=\"boxed\" filters=\"no\" columns=\"3\" column_spacing=\"12\" cat_slug=\"gardens\" exclude_cats=\"\" number_posts=\"9\" offset=\"\" excerpt_length=\"35\" strip_html=\"yes\" carousel_layout=\"title_on_rollover\" scroll_items=\"\" autoplay=\"no\" show_nav=\"yes\" mouse_scroll=\"no\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" class=\"\" id=\"\"][/recent_works][/fullwidth][fullwidth background_color=\"#ffffff\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"65px\" padding_bottom=\"65px\" padding_left=\"0px\" padding_right=\"0px\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][button link=\"http://localhost/assagaylodge/book-now/\" color=\"default\" size=\"xlarge\" type=\"3d\" shape=\"round\" target=\"_self\" title=\"\" gradient_colors=\"#f0f0ed|#f0f0ed\" gradient_hover_colors=\"#6666a4|#6666a4\" accent_color=\"#ffffff\" accent_hover_color=\"#ffffff\" bevel_color=\"\" border_width=\"0px\" icon=\"\" icon_position=\"left\" icon_divider=\"no\" modal=\"\" animation_type=\"0\" animation_direction=\"left\" animation_speed=\"1\" alignment=\"center\" class=\"\" id=\"\"]Make A Reservation Enquiry[/button][/fullwidth][title size=\"1\" content_align=\"left\" style_type=\"\" sep_color=\"\" class=\"\" id=\"\"][/title][fusion_text]Click edit button to change this text.[/fusion_text][fusion_text]Click edit button to change this text.[/fusion_text]', 'Home', '', 'inherit', 'closed', 'closed', '', '7-revision-v1', '', '', '2016-07-25 16:28:00', '2016-07-25 14:28:00', '', 7, 'http://msla.co.za/lodge/7-revision-v1/', 0, 'revision', '', 0),
(1246, 1, '2016-07-25 17:30:06', '2016-07-25 15:30:06', '', 'bookingcom', '', 'inherit', 'open', 'closed', '', 'bookingcom', '', '', '2016-07-25 17:30:06', '2016-07-25 15:30:06', '', 7, 'http://msla.co.za/lodge/wp-content/uploads/2015/01/bookingcom.png', 0, 'attachment', 'image/png', 0),
(1247, 1, '2016-07-25 17:32:36', '2016-07-25 15:32:36', '', 'bookiing.com', '', 'inherit', 'open', 'closed', '', 'bookiing-com', '', '', '2016-07-25 17:32:36', '2016-07-25 15:32:36', '', 7, 'http://msla.co.za/lodge/wp-content/uploads/2015/01/bookiing.com_.png', 0, 'attachment', 'image/png', 0),
(1248, 1, '2016-07-25 17:37:34', '2016-07-25 15:37:34', '[fullwidth background_color=\"#f0f0ed\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"20\" padding_bottom=\"20\" padding_left=\"0px\" padding_right=\"0px\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][one_half last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][separator style_type=\"single\" top_margin=\"0\" bottom_margin=\"30\" sep_color=\"#000000\" border_size=\"\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"170px\" alignment=\"center\" class=\"separator-left\" id=\"\"][fusion_text]\r\n<h1 style=\"text-align: center;\">No Fancy Star Grading\r\nNo Room Service\r\nNo Bed Turn-downs\r\nNo Rose Petals in the Bath water</h1>\r\n<h1 style=\"text-align: center;\">... just old fashioned homely comforts</h1>\r\n[/fusion_text][/one_half][one_half last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][fusion_text]\r\n<h1 style=\"text-align: justify;\">5 BEDROOM FAMILY LODGE</h1>\r\n<h3 style=\"text-align: justify;\">We are a four season lodge, because there’s always something to celebrate… We offer comfort, relaxation and privacy right in the heart of 1000 Hills. The Forest, the Gardens, the Atmosphere all speak to  Rest  &amp; Relaxation.</h3>\r\n[/fusion_text][separator style_type=\"single\" top_margin=\"0\" bottom_margin=\"30\" sep_color=\"#000000\" border_size=\"\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"170px\" alignment=\"left\" class=\"separator-left\" id=\"\"][fusion_text]\r\n<p style=\"text-align: left;\"><a href=\"https://www.airbnb.com/rooms/11821060?preview\" target=\"_blank\"><img class=\"size-full wp-image-1236 alignleft\" src=\"http://msla.co.za/lodge/wp-content/uploads/2016/07/AIRBNB-LOGO-VECTOR-150x150.png\" alt=\"AIRBNB\" width=\"150\" height=\"150\" /></a><a href=\"http://msla.co.za/lodge/wp-content/uploads/2015/01/bookingcom-e1469460864693.png\"><img class=\"alignleft size-full wp-image-1246\" src=\"http://msla.co.za/lodge/wp-content/uploads/2015/01/bookingcom-e1469460864693.png\" alt=\"bookingcom\" width=\"176\" height=\"150\" /></a><a href=\"https://www.tripadvisor.com/VacationRentalReview-g3420955-d6757119-Assagay_Forest_Lodge-Botha_s_Hill_KwaZulu_Natal.html\" target=\"_blank\"><img class=\"size-thumbnail wp-image-1244 alignleft\" src=\"http://msla.co.za/lodge/wp-content/uploads/2015/01/tripadv-150x150.jpg\" alt=\"tripadv\" width=\"150\" height=\"150\" /></a></p>\r\n[/fusion_text][/one_half][/fullwidth][fullwidth background_color=\"#f0f0ed\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"20\" padding_bottom=\"20\" padding_left=\"0px\" padding_right=\"0px\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][one_half last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][fusion_text]\r\n<h3 style=\"text-align: justify;\">Set in the rolling peaks and valleys of a thousand hills surrounded by a canopy of indigenous trees, you will find that horses still have right of way, we certainly offer the best of both worlds, farm and charm coupled with modern amenities that will have you feeling relaxed and rejuvenated.</h3>\r\n<h3 style=\"text-align: justify;\">We know that sometimes you are searching for a romantic getaway or maybe a few days away with old friends. Other times you are searching for a place to host a weekend, family reunion or a business retreat. In addition to nightly room rentals, our lodge is also available for meetings, retreats  and makes the perfect place for a wedding party to stay together and get ready for the big day. Regardless, with our five comfortable and cozy guest bedrooms, multiple garden spaces and hideaways, and a  large private deck  where you can take a nap or read a book we definitely have the room for you!</h3>\r\n<h3 style=\"text-align: justify;\">Evenings are quiet and peaceful taking you far away from the business of city life. This is a unique and memorable country experience. We look forward to having you as a guest!</h3>\r\n[/fusion_text][/one_half][one_half last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][fusion_text]\r\n<h3 style=\"text-align: justify;\">Our lodge has been in our family for years and has recently been beautifully renovated. Five rooms all with en-suite showers lead off your own large central lounge, featuring a 36 foot high vaulted ceiling, offering spacious living, dining, and a bar/conversational lounge area which includes a fitted kitchenette, all adding to a sense of homely comfort. Sumptuous meals can be provided on request and served on the bottom deck at the swimming pool.</h3>\r\n<h3 style=\"text-align: justify;\">Be lulled to sleep by the sound of the waterfall and tinkling stream just outside your window, waking from a peaceful night\'s sleep in a pillow-top bed dressed in luxurious linens to coddle you in ultimate comfort.</h3>\r\n<h3 style=\"text-align: justify;\">Our property boasts many different species of birds and animals. We have a resident otter, a family of wild bush pigs,  a family of rock rabbits, porcupine, little blue duikers, a variety of different frogs and an abundance of bird life, including the occasional snakes that pass through!</h3>\r\n[/fusion_text][/one_half][/fullwidth][fullwidth background_color=\"#f0f0ed\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"20\" padding_bottom=\"20\" padding_left=\"0px\" padding_right=\"0px\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][fusion_text]\r\n<h1 style=\"text-align: center;\">Gallery</h1>\r\n[/fusion_text][separator style_type=\"single\" top_margin=\"\" bottom_margin=\"40\" sep_color=\"#000000\" border_size=\"\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"170px\" alignment=\"\" class=\"\" id=\"\"][one_sixth last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][/one_sixth][two_third last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][fusion_text]\r\n<h3 style=\"text-align: justify;\">The Lodge is open, spacious, comfortable and homely. During hot summer days, sit and bask in the sun on the deck  with one of our  picnic specials. In winter, snuggle up with a good book or challenge one another to a friendly board game in the glassed nook area .</h3>\r\n[/fusion_text][/two_third][one_sixth last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][/one_sixth][/fullwidth][fullwidth background_color=\"#f0f0ed\" background_image=\"http://localhost/assagaylodge/wp-content/uploads/2015/01/Wood_Texture.jpg\" background_parallax=\"fixed\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"30\" padding_bottom=\"10\" padding_left=\"0\" padding_right=\"0\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][recent_works layout=\"grid\" picture_size=\"auto\" boxed_text=\"unboxed\" filters=\"no\" columns=\"3\" column_spacing=\"12\" cat_slug=\"the-lodge\" exclude_cats=\"\" number_posts=\"9\" offset=\"\" excerpt_length=\"35\" strip_html=\"yes\" carousel_layout=\"title_on_rollover\" scroll_items=\"\" autoplay=\"no\" show_nav=\"yes\" mouse_scroll=\"no\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" class=\"\" id=\"\"][/recent_works][/fullwidth][fullwidth background_color=\"#f0f0ed\" background_image=\"\" background_parallax=\"fixed\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"20\" padding_bottom=\"20\" padding_left=\"0px\" padding_right=\"0px\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][fusion_text]\r\n<h1 style=\"text-align: center;\">BEDROOMS</h1>\r\n[/fusion_text][separator style_type=\"single\" top_margin=\"\" bottom_margin=\"20\" sep_color=\"#000000\" border_size=\"\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"170px\" alignment=\"\" class=\"\" id=\"\"][one_sixth last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][/one_sixth][two_third last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][fusion_text]\r\n<h3 style=\"text-align: justify;\">When it comes to our bedrooms we’re proud to say we offer something a little more special. One of five  lovingly and tastefully decorated guest rooms. Soft gray decor soothes the senses providing a peaceful, blissfully comfortable rest from your travels and hectic lives.</h3>\r\n<h3 style=\"text-align: justify;\">Our  bedrooms are spacious, clean, comfortable all en-suite, equipped with either king size or queen size beds. Each room sleeps two guests. The rooms have high ceilings, wall heaters &amp; ceiling fans. Beds all have electric blankets in Winter, 100% cotton percale sheets and thick hyper allergenic microfiber duvets and pillows. All guest rooms are cleaned with organic and green products. Amenities include hairdryers in each room. Three rooms feature King-sized beds  of which two can be  split into two single beds. Two  rooms can therefore be changed into a twin room upon request. Two rooms feature a Queen-sized double bed. These beds cannot be split into twin beds.</h3>\r\n[/fusion_text][/two_third][one_sixth last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][/one_sixth][/fullwidth][fullwidth background_color=\"\" background_image=\"http://localhost/assagaylodge/wp-content/uploads/2015/01/DSC01516-1148-x-764.jpg\" background_parallax=\"fixed\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"center center\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"20\" padding_bottom=\"20\" padding_left=\"0\" padding_right=\"0\" hundred_percent=\"no\" equal_height_columns=\"yes\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][recent_works layout=\"grid\" picture_size=\"auto\" boxed_text=\"unboxed\" filters=\"no\" columns=\"3\" column_spacing=\"12\" cat_slug=\"bedrooms\" exclude_cats=\"\" number_posts=\"6\" offset=\"\" excerpt_length=\"35\" strip_html=\"yes\" carousel_layout=\"title_on_rollover\" scroll_items=\"\" autoplay=\"no\" show_nav=\"yes\" mouse_scroll=\"no\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" class=\"\" id=\"\"][/recent_works][/fullwidth][fullwidth background_color=\"#f0f0ed\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"20\" padding_bottom=\"20\" padding_left=\"0\" padding_right=\"0\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][fusion_text]\r\n<h1 style=\"text-align: center;\">GARDENS</h1>\r\n[/fusion_text][separator style_type=\"single\" top_margin=\"\" bottom_margin=\"20\" sep_color=\"#000000\" border_size=\"\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"170px\" alignment=\"\" class=\"\" id=\"\"][one_sixth last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][/one_sixth][two_third last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][fusion_text]\r\n<h3 style=\"text-align: justify;\">The garden is large and offers many secluded spots to lose yourself in a book with a glass of wine underneath the shade of a tree, listening to the sounds of the birds and smelling the beautiful flowers.</h3>\r\n[/fusion_text][/two_third][one_sixth last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][/one_sixth][recent_works layout=\"grid\" picture_size=\"auto\" boxed_text=\"boxed\" filters=\"no\" columns=\"3\" column_spacing=\"12\" cat_slug=\"gardens\" exclude_cats=\"\" number_posts=\"9\" offset=\"\" excerpt_length=\"35\" strip_html=\"yes\" carousel_layout=\"title_on_rollover\" scroll_items=\"\" autoplay=\"no\" show_nav=\"yes\" mouse_scroll=\"no\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" class=\"\" id=\"\"][/recent_works][/fullwidth][fullwidth background_color=\"#ffffff\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"65px\" padding_bottom=\"65px\" padding_left=\"0px\" padding_right=\"0px\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][button link=\"http://localhost/assagaylodge/book-now/\" color=\"default\" size=\"xlarge\" type=\"3d\" shape=\"round\" target=\"_self\" title=\"\" gradient_colors=\"#f0f0ed|#f0f0ed\" gradient_hover_colors=\"#6666a4|#6666a4\" accent_color=\"#ffffff\" accent_hover_color=\"#ffffff\" bevel_color=\"\" border_width=\"0px\" icon=\"\" icon_position=\"left\" icon_divider=\"no\" modal=\"\" animation_type=\"0\" animation_direction=\"left\" animation_speed=\"1\" alignment=\"center\" class=\"\" id=\"\"]Make A Reservation Enquiry[/button][/fullwidth][title size=\"1\" content_align=\"left\" style_type=\"\" sep_color=\"\" class=\"\" id=\"\"][/title][fusion_text]Click edit button to change this text.[/fusion_text][fusion_text]Click edit button to change this text.[/fusion_text]', 'Home', '', 'inherit', 'closed', 'closed', '', '7-revision-v1', '', '', '2016-07-25 17:37:34', '2016-07-25 15:37:34', '', 7, 'http://msla.co.za/lodge/7-revision-v1/', 0, 'revision', '', 0),
(1249, 1, '2016-07-25 19:38:01', '2016-07-25 17:38:01', '', 'airbnb', '', 'inherit', 'open', 'closed', '', 'squarelogoywrsy1445248847', '', '', '2016-07-25 19:40:54', '2016-07-25 17:40:54', '', 7, 'http://msla.co.za/lodge/wp-content/uploads/2015/01/squarelogoywRsy1445248847.png', 0, 'attachment', 'image/png', 0);
INSERT INTO `wp_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(1250, 1, '2016-07-25 19:45:22', '2016-07-25 17:45:22', '[fullwidth background_color=\"#f0f0ed\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"20\" padding_bottom=\"20\" padding_left=\"0px\" padding_right=\"0px\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][one_half last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][separator style_type=\"single\" top_margin=\"0\" bottom_margin=\"30\" sep_color=\"#000000\" border_size=\"\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"170px\" alignment=\"center\" class=\"separator-left\" id=\"\"][fusion_text]\r\n<h1 style=\"text-align: center;\">No Fancy Star Grading\r\nNo Room Service\r\nNo Bed Turn-downs\r\nNo Rose Petals in the Bath water</h1>\r\n<h1 style=\"text-align: center;\">... just old fashioned homely comforts</h1>\r\n[/fusion_text][/one_half][one_half last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][fusion_text]\r\n<h1 style=\"text-align: justify;\">5 BEDROOM FAMILY LODGE</h1>\r\n<h3 style=\"text-align: justify;\">We are a four season lodge, because there’s always something to celebrate… We offer comfort, relaxation and privacy right in the heart of 1000 Hills. The Forest, the Gardens, the Atmosphere all speak to  Rest  &amp; Relaxation.</h3>\r\n[/fusion_text][separator style_type=\"single\" top_margin=\"0\" bottom_margin=\"30\" sep_color=\"#000000\" border_size=\"\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"170px\" alignment=\"left\" class=\"separator-left\" id=\"\"][fusion_text]&nbsp;\r\n<table>\r\n<tbody>\r\n<tr>\r\n<td><a href=\"https://www.airbnb.com/rooms/11821060?preview\" target=\"_blank\"><img class=\"size-full wp-image-1249 alignnone\" src=\"http://msla.co.za/lodge/wp-content/uploads/2015/01/squarelogoywRsy1445248847-e1469468416234.png\" alt=\"airbnb\" width=\"150\" height=\"125\" /></a></td>\r\n<td><a href=\"https://www.tripadvisor.com/VacationRentalReview-g3420955-d6757119-Assagay_Forest_Lodge-Botha_s_Hill_KwaZulu_Natal.html\" target=\"_blank\"><img class=\"size-thumbnail wp-image-1244 alignnone\" src=\"http://msla.co.za/lodge/wp-content/uploads/2015/01/tripadv-150x150.jpg\" alt=\"tripadv\" width=\"150\" height=\"150\" /></a></td>\r\n<td><a href=\"http://msla.co.za/lodge/wp-content/uploads/2015/01/bookingcom-e1469460864693.png\"><img class=\"size-full wp-image-1246 alignnone\" src=\"http://msla.co.za/lodge/wp-content/uploads/2015/01/bookingcom-e1469460864693.png\" alt=\"bookingcom\" width=\"176\" height=\"150\" /></a></td>\r\n</tr>\r\n</tbody>\r\n</table>[/fusion_text][/one_half][/fullwidth][fullwidth background_color=\"#f0f0ed\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"20\" padding_bottom=\"20\" padding_left=\"0px\" padding_right=\"0px\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][one_half last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][fusion_text]\r\n<h3 style=\"text-align: justify;\">Set in the rolling peaks and valleys of a thousand hills surrounded by a canopy of indigenous trees, you will find that horses still have right of way, we certainly offer the best of both worlds, farm and charm coupled with modern amenities that will have you feeling relaxed and rejuvenated.</h3>\r\n<h3 style=\"text-align: justify;\">We know that sometimes you are searching for a romantic getaway or maybe a few days away with old friends. Other times you are searching for a place to host a weekend, family reunion or a business retreat. In addition to nightly room rentals, our lodge is also available for meetings, retreats  and makes the perfect place for a wedding party to stay together and get ready for the big day. Regardless, with our five comfortable and cozy guest bedrooms, multiple garden spaces and hideaways, and a  large private deck  where you can take a nap or read a book we definitely have the room for you!</h3>\r\n<h3 style=\"text-align: justify;\">Evenings are quiet and peaceful taking you far away from the business of city life. This is a unique and memorable country experience. We look forward to having you as a guest!</h3>\r\n[/fusion_text][/one_half][one_half last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][fusion_text]\r\n<h3 style=\"text-align: justify;\">Our lodge has been in our family for years and has recently been beautifully renovated. Five rooms all with en-suite showers lead off your own large central lounge, featuring a 36 foot high vaulted ceiling, offering spacious living, dining, and a bar/conversational lounge area which includes a fitted kitchenette, all adding to a sense of homely comfort. Sumptuous meals can be provided on request and served on the bottom deck at the swimming pool.</h3>\r\n<h3 style=\"text-align: justify;\">Be lulled to sleep by the sound of the waterfall and tinkling stream just outside your window, waking from a peaceful night\'s sleep in a pillow-top bed dressed in luxurious linens to coddle you in ultimate comfort.</h3>\r\n<h3 style=\"text-align: justify;\">Our property boasts many different species of birds and animals. We have a resident otter, a family of wild bush pigs,  a family of rock rabbits, porcupine, little blue duikers, a variety of different frogs and an abundance of bird life, including the occasional snakes that pass through!</h3>\r\n[/fusion_text][/one_half][/fullwidth][fullwidth background_color=\"#f0f0ed\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"20\" padding_bottom=\"20\" padding_left=\"0px\" padding_right=\"0px\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][fusion_text]\r\n<h1 style=\"text-align: center;\">Gallery</h1>\r\n[/fusion_text][separator style_type=\"single\" top_margin=\"\" bottom_margin=\"40\" sep_color=\"#000000\" border_size=\"\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"170px\" alignment=\"\" class=\"\" id=\"\"][one_sixth last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][/one_sixth][two_third last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][fusion_text]\r\n<h3 style=\"text-align: justify;\">The Lodge is open, spacious, comfortable and homely. During hot summer days, sit and bask in the sun on the deck  with one of our  picnic specials. In winter, snuggle up with a good book or challenge one another to a friendly board game in the glassed nook area .</h3>\r\n[/fusion_text][/two_third][one_sixth last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][/one_sixth][/fullwidth][fullwidth background_color=\"#f0f0ed\" background_image=\"http://localhost/assagaylodge/wp-content/uploads/2015/01/Wood_Texture.jpg\" background_parallax=\"fixed\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"30\" padding_bottom=\"10\" padding_left=\"0\" padding_right=\"0\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][recent_works layout=\"grid\" picture_size=\"auto\" boxed_text=\"unboxed\" filters=\"no\" columns=\"3\" column_spacing=\"12\" cat_slug=\"the-lodge\" exclude_cats=\"\" number_posts=\"9\" offset=\"\" excerpt_length=\"35\" strip_html=\"yes\" carousel_layout=\"title_on_rollover\" scroll_items=\"\" autoplay=\"no\" show_nav=\"yes\" mouse_scroll=\"no\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" class=\"\" id=\"\"][/recent_works][/fullwidth][fullwidth background_color=\"#f0f0ed\" background_image=\"\" background_parallax=\"fixed\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"20\" padding_bottom=\"20\" padding_left=\"0px\" padding_right=\"0px\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][fusion_text]\r\n<h1 style=\"text-align: center;\">BEDROOMS</h1>\r\n[/fusion_text][separator style_type=\"single\" top_margin=\"\" bottom_margin=\"20\" sep_color=\"#000000\" border_size=\"\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"170px\" alignment=\"\" class=\"\" id=\"\"][one_sixth last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][/one_sixth][two_third last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][fusion_text]\r\n<h3 style=\"text-align: justify;\">When it comes to our bedrooms we’re proud to say we offer something a little more special. One of five  lovingly and tastefully decorated guest rooms. Soft gray decor soothes the senses providing a peaceful, blissfully comfortable rest from your travels and hectic lives.</h3>\r\n<h3 style=\"text-align: justify;\">Our  bedrooms are spacious, clean, comfortable all en-suite, equipped with either king size or queen size beds. Each room sleeps two guests. The rooms have high ceilings, wall heaters &amp; ceiling fans. Beds all have electric blankets in Winter, 100% cotton percale sheets and thick hyper allergenic microfiber duvets and pillows. All guest rooms are cleaned with organic and green products. Amenities include hairdryers in each room. Three rooms feature King-sized beds  of which two can be  split into two single beds. Two  rooms can therefore be changed into a twin room upon request. Two rooms feature a Queen-sized double bed. These beds cannot be split into twin beds.</h3>\r\n[/fusion_text][/two_third][one_sixth last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][/one_sixth][/fullwidth][fullwidth background_color=\"\" background_image=\"http://localhost/assagaylodge/wp-content/uploads/2015/01/DSC01516-1148-x-764.jpg\" background_parallax=\"fixed\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"center center\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"20\" padding_bottom=\"20\" padding_left=\"0\" padding_right=\"0\" hundred_percent=\"no\" equal_height_columns=\"yes\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][recent_works layout=\"grid\" picture_size=\"auto\" boxed_text=\"unboxed\" filters=\"no\" columns=\"3\" column_spacing=\"12\" cat_slug=\"bedrooms\" exclude_cats=\"\" number_posts=\"6\" offset=\"\" excerpt_length=\"35\" strip_html=\"yes\" carousel_layout=\"title_on_rollover\" scroll_items=\"\" autoplay=\"no\" show_nav=\"yes\" mouse_scroll=\"no\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" class=\"\" id=\"\"][/recent_works][/fullwidth][fullwidth background_color=\"#f0f0ed\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"20\" padding_bottom=\"20\" padding_left=\"0\" padding_right=\"0\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][fusion_text]\r\n<h1 style=\"text-align: center;\">GARDENS</h1>\r\n[/fusion_text][separator style_type=\"single\" top_margin=\"\" bottom_margin=\"20\" sep_color=\"#000000\" border_size=\"\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"170px\" alignment=\"\" class=\"\" id=\"\"][one_sixth last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][/one_sixth][two_third last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][fusion_text]\r\n<h3 style=\"text-align: justify;\">The garden is large and offers many secluded spots to lose yourself in a book with a glass of wine underneath the shade of a tree, listening to the sounds of the birds and smelling the beautiful flowers.</h3>\r\n[/fusion_text][/two_third][one_sixth last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][/one_sixth][recent_works layout=\"grid\" picture_size=\"auto\" boxed_text=\"boxed\" filters=\"no\" columns=\"3\" column_spacing=\"12\" cat_slug=\"gardens\" exclude_cats=\"\" number_posts=\"9\" offset=\"\" excerpt_length=\"35\" strip_html=\"yes\" carousel_layout=\"title_on_rollover\" scroll_items=\"\" autoplay=\"no\" show_nav=\"yes\" mouse_scroll=\"no\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" class=\"\" id=\"\"][/recent_works][/fullwidth][fullwidth background_color=\"#ffffff\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"65px\" padding_bottom=\"65px\" padding_left=\"0px\" padding_right=\"0px\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][button link=\"http://localhost/assagaylodge/book-now/\" color=\"default\" size=\"xlarge\"  type=\"3d\" shape=\"round\" target=\"_self\" title=\"\" gradient_colors=\"#f0f0ed|#f0f0ed\" gradient_hover_colors=\"#6666a4|#6666a4\" accent_color=\"#ffffff\" accent_hover_color=\"#ffffff\" bevel_color=\"\" border_width=\"0px\" icon=\"\" icon_position=\"left\" icon_divider=\"no\" modal=\"\" animation_type=\"0\" animation_direction=\"left\" animation_speed=\"1\" alignment=\"center\" class=\"\" id=\"\"]Make A Reservation Enquiry[/button][/fullwidth][title size=\"1\" content_align=\"left\" style_type=\"\" sep_color=\"\" class=\"\" id=\"\"][/title][fusion_text]Click edit button to change this text.[/fusion_text][fusion_text]Click edit button to change this text.[/fusion_text]', 'Home', '', 'inherit', 'closed', 'closed', '', '7-revision-v1', '', '', '2016-07-25 19:45:22', '2016-07-25 17:45:22', '', 7, 'http://msla.co.za/lodge/7-revision-v1/', 0, 'revision', '', 0),
(1251, 1, '2016-07-25 19:46:59', '2016-07-25 17:46:59', '[fullwidth background_color=\"#f0f0ed\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"20\" padding_bottom=\"20\" padding_left=\"0px\" padding_right=\"0px\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][one_half last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][separator style_type=\"single\" top_margin=\"0\" bottom_margin=\"30\" sep_color=\"#000000\" border_size=\"\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"170px\" alignment=\"center\" class=\"separator-left\" id=\"\"][fusion_text]\r\n<h1 style=\"text-align: center;\">No Fancy Star Grading\r\nNo Room Service\r\nNo Bed Turn-downs\r\nNo Rose Petals in the Bath water</h1>\r\n<h1 style=\"text-align: center;\">... just old fashioned homely comforts</h1>\r\n[/fusion_text][/one_half][one_half last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][fusion_text]\r\n<h1 style=\"text-align: justify;\">5 BEDROOM FAMILY LODGE</h1>\r\n<h3 style=\"text-align: justify;\">We are a four season lodge, because there’s always something to celebrate… We offer comfort, relaxation and privacy right in the heart of 1000 Hills. The Forest, the Gardens, the Atmosphere all speak to  Rest  &amp; Relaxation.</h3>\r\n[/fusion_text][separator style_type=\"single\" top_margin=\"0\" bottom_margin=\"30\" sep_color=\"#000000\" border_size=\"\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"170px\" alignment=\"left\" class=\"separator-left\" id=\"\"][fusion_text]<table class=\" aligncenter\" cellspacing=\"5\" cellpadding=\"5\">\r\n<tbody>\r\n<tr>\r\n<td><a href=\"https://www.airbnb.com/rooms/11821060?preview\" target=\"_blank\"><img class=\"size-full wp-image-1249 alignnone\" src=\"http://msla.co.za/lodge/wp-content/uploads/2015/01/squarelogoywRsy1445248847-e1469468416234.png\" alt=\"airbnb\" width=\"150\" height=\"125\" /></a></td>\r\n<td><a href=\"https://www.tripadvisor.com/VacationRentalReview-g3420955-d6757119-Assagay_Forest_Lodge-Botha_s_Hill_KwaZulu_Natal.html\" target=\"_blank\"><img class=\"size-thumbnail wp-image-1244 alignnone\" src=\"http://msla.co.za/lodge/wp-content/uploads/2015/01/tripadv-150x150.jpg\" alt=\"tripadv\" width=\"150\" height=\"150\" /></a></td>\r\n<td><a href=\"http://msla.co.za/lodge/wp-content/uploads/2015/01/bookingcom-e1469460864693.png\"><img class=\"size-full wp-image-1246 alignnone\" src=\"http://msla.co.za/lodge/wp-content/uploads/2015/01/bookingcom-e1469460864693.png\" alt=\"bookingcom\" width=\"176\" height=\"150\" /></a></td>\r\n</tr>\r\n</tbody>\r\n</table>[/fusion_text][/one_half][/fullwidth][fullwidth background_color=\"#f0f0ed\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"20\" padding_bottom=\"20\" padding_left=\"0px\" padding_right=\"0px\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][one_half last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][fusion_text]\r\n<h3 style=\"text-align: justify;\">Set in the rolling peaks and valleys of a thousand hills surrounded by a canopy of indigenous trees, you will find that horses still have right of way, we certainly offer the best of both worlds, farm and charm coupled with modern amenities that will have you feeling relaxed and rejuvenated.</h3>\r\n<h3 style=\"text-align: justify;\">We know that sometimes you are searching for a romantic getaway or maybe a few days away with old friends. Other times you are searching for a place to host a weekend, family reunion or a business retreat. In addition to nightly room rentals, our lodge is also available for meetings, retreats  and makes the perfect place for a wedding party to stay together and get ready for the big day. Regardless, with our five comfortable and cozy guest bedrooms, multiple garden spaces and hideaways, and a  large private deck  where you can take a nap or read a book we definitely have the room for you!</h3>\r\n<h3 style=\"text-align: justify;\">Evenings are quiet and peaceful taking you far away from the business of city life. This is a unique and memorable country experience. We look forward to having you as a guest!</h3>\r\n[/fusion_text][/one_half][one_half last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][fusion_text]\r\n<h3 style=\"text-align: justify;\">Our lodge has been in our family for years and has recently been beautifully renovated. Five rooms all with en-suite showers lead off your own large central lounge, featuring a 36 foot high vaulted ceiling, offering spacious living, dining, and a bar/conversational lounge area which includes a fitted kitchenette, all adding to a sense of homely comfort. Sumptuous meals can be provided on request and served on the bottom deck at the swimming pool.</h3>\r\n<h3 style=\"text-align: justify;\">Be lulled to sleep by the sound of the waterfall and tinkling stream just outside your window, waking from a peaceful night\'s sleep in a pillow-top bed dressed in luxurious linens to coddle you in ultimate comfort.</h3>\r\n<h3 style=\"text-align: justify;\">Our property boasts many different species of birds and animals. We have a resident otter, a family of wild bush pigs,  a family of rock rabbits, porcupine, little blue duikers, a variety of different frogs and an abundance of bird life, including the occasional snakes that pass through!</h3>\r\n[/fusion_text][/one_half][/fullwidth][fullwidth background_color=\"#f0f0ed\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"20\" padding_bottom=\"20\" padding_left=\"0px\" padding_right=\"0px\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][fusion_text]\r\n<h1 style=\"text-align: center;\">Gallery</h1>\r\n[/fusion_text][separator style_type=\"single\" top_margin=\"\" bottom_margin=\"40\" sep_color=\"#000000\" border_size=\"\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"170px\" alignment=\"\" class=\"\" id=\"\"][one_sixth last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][/one_sixth][two_third last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][fusion_text]\r\n<h3 style=\"text-align: justify;\">The Lodge is open, spacious, comfortable and homely. During hot summer days, sit and bask in the sun on the deck  with one of our  picnic specials. In winter, snuggle up with a good book or challenge one another to a friendly board game in the glassed nook area .</h3>\r\n[/fusion_text][/two_third][one_sixth last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][/one_sixth][/fullwidth][fullwidth background_color=\"#f0f0ed\" background_image=\"http://localhost/assagaylodge/wp-content/uploads/2015/01/Wood_Texture.jpg\" background_parallax=\"fixed\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"30\" padding_bottom=\"10\" padding_left=\"0\" padding_right=\"0\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][recent_works layout=\"grid\" picture_size=\"auto\" boxed_text=\"unboxed\" filters=\"no\" columns=\"3\" column_spacing=\"12\" cat_slug=\"the-lodge\" exclude_cats=\"\" number_posts=\"9\" offset=\"\" excerpt_length=\"35\" strip_html=\"yes\" carousel_layout=\"title_on_rollover\" scroll_items=\"\" autoplay=\"no\" show_nav=\"yes\" mouse_scroll=\"no\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" class=\"\" id=\"\"][/recent_works][/fullwidth][fullwidth background_color=\"#f0f0ed\" background_image=\"\" background_parallax=\"fixed\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"20\" padding_bottom=\"20\" padding_left=\"0px\" padding_right=\"0px\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][fusion_text]\r\n<h1 style=\"text-align: center;\">BEDROOMS</h1>\r\n[/fusion_text][separator style_type=\"single\" top_margin=\"\" bottom_margin=\"20\" sep_color=\"#000000\" border_size=\"\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"170px\" alignment=\"\" class=\"\" id=\"\"][one_sixth last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][/one_sixth][two_third last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][fusion_text]\r\n<h3 style=\"text-align: justify;\">When it comes to our bedrooms we’re proud to say we offer something a little more special. One of five  lovingly and tastefully decorated guest rooms. Soft gray decor soothes the senses providing a peaceful, blissfully comfortable rest from your travels and hectic lives.</h3>\r\n<h3 style=\"text-align: justify;\">Our  bedrooms are spacious, clean, comfortable all en-suite, equipped with either king size or queen size beds. Each room sleeps two guests. The rooms have high ceilings, wall heaters &amp; ceiling fans. Beds all have electric blankets in Winter, 100% cotton percale sheets and thick hyper allergenic microfiber duvets and pillows. All guest rooms are cleaned with organic and green products. Amenities include hairdryers in each room. Three rooms feature King-sized beds  of which two can be  split into two single beds. Two  rooms can therefore be changed into a twin room upon request. Two rooms feature a Queen-sized double bed. These beds cannot be split into twin beds.</h3>\r\n[/fusion_text][/two_third][one_sixth last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][/one_sixth][/fullwidth][fullwidth background_color=\"\" background_image=\"http://localhost/assagaylodge/wp-content/uploads/2015/01/DSC01516-1148-x-764.jpg\" background_parallax=\"fixed\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"center center\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"20\" padding_bottom=\"20\" padding_left=\"0\" padding_right=\"0\" hundred_percent=\"no\" equal_height_columns=\"yes\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][recent_works layout=\"grid\" picture_size=\"auto\" boxed_text=\"unboxed\" filters=\"no\" columns=\"3\" column_spacing=\"12\" cat_slug=\"bedrooms\" exclude_cats=\"\" number_posts=\"6\" offset=\"\" excerpt_length=\"35\" strip_html=\"yes\" carousel_layout=\"title_on_rollover\" scroll_items=\"\" autoplay=\"no\" show_nav=\"yes\" mouse_scroll=\"no\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" class=\"\" id=\"\"][/recent_works][/fullwidth][fullwidth background_color=\"#f0f0ed\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"20\" padding_bottom=\"20\" padding_left=\"0\" padding_right=\"0\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][fusion_text]\r\n<h1 style=\"text-align: center;\">GARDENS</h1>\r\n[/fusion_text][separator style_type=\"single\" top_margin=\"\" bottom_margin=\"20\" sep_color=\"#000000\" border_size=\"\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"170px\" alignment=\"\" class=\"\" id=\"\"][one_sixth last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][/one_sixth][two_third last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][fusion_text]\r\n<h3 style=\"text-align: justify;\">The garden is large and offers many secluded spots to lose yourself in a book with a glass of wine underneath the shade of a tree, listening to the sounds of the birds and smelling the beautiful flowers.</h3>\r\n[/fusion_text][/two_third][one_sixth last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][/one_sixth][recent_works layout=\"grid\" picture_size=\"auto\" boxed_text=\"boxed\" filters=\"no\" columns=\"3\" column_spacing=\"12\" cat_slug=\"gardens\" exclude_cats=\"\" number_posts=\"9\" offset=\"\" excerpt_length=\"35\" strip_html=\"yes\" carousel_layout=\"title_on_rollover\" scroll_items=\"\" autoplay=\"no\" show_nav=\"yes\" mouse_scroll=\"no\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" class=\"\" id=\"\"][/recent_works][/fullwidth][fullwidth background_color=\"#ffffff\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"65px\" padding_bottom=\"65px\" padding_left=\"0px\" padding_right=\"0px\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][button link=\"http://localhost/assagaylodge/book-now/\" color=\"default\" size=\"xlarge\"  type=\"3d\" shape=\"round\" target=\"_self\" title=\"\" gradient_colors=\"#f0f0ed|#f0f0ed\" gradient_hover_colors=\"#6666a4|#6666a4\" accent_color=\"#ffffff\" accent_hover_color=\"#ffffff\" bevel_color=\"\" border_width=\"0px\" icon=\"\" icon_position=\"left\" icon_divider=\"no\" modal=\"\" animation_type=\"0\" animation_direction=\"left\" animation_speed=\"1\" alignment=\"center\" class=\"\" id=\"\"]Make A Reservation Enquiry[/button][/fullwidth][title size=\"1\" content_align=\"left\" style_type=\"\" sep_color=\"\" class=\"\" id=\"\"][/title][fusion_text]Click edit button to change this text.[/fusion_text][fusion_text]Click edit button to change this text.[/fusion_text]', 'Home', '', 'inherit', 'closed', 'closed', '', '7-revision-v1', '', '', '2016-07-25 19:46:59', '2016-07-25 17:46:59', '', 7, 'http://msla.co.za/lodge/7-revision-v1/', 0, 'revision', '', 0);
INSERT INTO `wp_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(1252, 1, '2016-07-25 23:45:26', '2016-07-25 21:45:26', '[fullwidth background_color=\"#f0f0ed\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"20\" padding_bottom=\"20\" padding_left=\"0px\" padding_right=\"0px\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][one_half last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][separator style_type=\"single\" top_margin=\"0\" bottom_margin=\"30\" sep_color=\"#000000\" border_size=\"\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"170px\" alignment=\"center\" class=\"separator-left\" id=\"\"][fusion_text]\r\n<h1 style=\"text-align: center;\">No Fancy Star Grading\r\nNo Room Service\r\nNo Bed Turn-downs\r\nNo Rose Petals in the Bath water</h1>\r\n<h1 style=\"text-align: center;\">... just old fashioned homely comforts</h1>\r\n[/fusion_text][/one_half][one_half last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][fusion_text]\r\n<h1 style=\"text-align: justify;\">5 BEDROOM FAMILY LODGE</h1>\r\n<h3 style=\"text-align: justify;\">We are a four season lodge, because there’s always something to celebrate… We offer comfort, relaxation and privacy right in the heart of 1000 Hills. The Forest, the Gardens, the Atmosphere all speak to  Rest  &amp; Relaxation.</h3>\r\n[/fusion_text][separator style_type=\"single\" top_margin=\"0\" bottom_margin=\"30\" sep_color=\"#000000\" border_size=\"\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"170px\" alignment=\"left\" class=\"separator-left\" id=\"\"][fusion_text]\r\n<table class=\" aligncenter\" cellspacing=\"5\" cellpadding=\"10\">\r\n<tbody>\r\n<tr>\r\n<td><a href=\"https://www.airbnb.com/rooms/11821060?preview\" target=\"_blank\"><img class=\"alignnone wp-image-1249 size-full\" src=\"http://msla.co.za/lodge/wp-content/uploads/2015/01/squarelogoywRsy1445248847-e1469482946977.png\" alt=\"airbnb\" width=\"100\" height=\"83\" /></a></td>\r\n<td><a href=\"https://www.tripadvisor.com/VacationRentalReview-g3420955-d6757119-Assagay_Forest_Lodge-Botha_s_Hill_KwaZulu_Natal.html\" target=\"_blank\"><img class=\"alignnone wp-image-1244 size-full\" src=\"http://msla.co.za/lodge/wp-content/uploads/2015/01/tripadv-e1469482990381.jpg\" alt=\"tripadv\" width=\"100\" height=\"100\" /></a></td>\r\n<td><a href=\"http://msla.co.za/lodge/wp-content/uploads/2015/01/bookingcom-e1469460864693.png\"><img class=\"alignnone wp-image-1246 size-full\" src=\"http://msla.co.za/lodge/wp-content/uploads/2015/01/bookingcom-e1469483041455.png\" alt=\"bookingcom\" width=\"117\" height=\"100\" /></a></td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n[/fusion_text][/one_half][/fullwidth][fullwidth background_color=\"#f0f0ed\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"20\" padding_bottom=\"20\" padding_left=\"0px\" padding_right=\"0px\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][one_half last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][fusion_text]\r\n<h3 style=\"text-align: justify;\">Set in the rolling peaks and valleys of a thousand hills surrounded by a canopy of indigenous trees, you will find that horses still have right of way, we certainly offer the best of both worlds, farm and charm coupled with modern amenities that will have you feeling relaxed and rejuvenated.</h3>\r\n<h3 style=\"text-align: justify;\">We know that sometimes you are searching for a romantic getaway or maybe a few days away with old friends. Other times you are searching for a place to host a weekend, family reunion or a business retreat. In addition to nightly room rentals, our lodge is also available for meetings, retreats  and makes the perfect place for a wedding party to stay together and get ready for the big day. Regardless, with our five comfortable and cozy guest bedrooms, multiple garden spaces and hideaways, and a  large private deck  where you can take a nap or read a book we definitely have the room for you!</h3>\r\n<h3 style=\"text-align: justify;\">Evenings are quiet and peaceful taking you far away from the business of city life. This is a unique and memorable country experience. We look forward to having you as a guest!</h3>\r\n[/fusion_text][/one_half][one_half last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][fusion_text]\r\n<h3 style=\"text-align: justify;\">Our lodge has been in our family for years and has recently been beautifully renovated. Five rooms all with en-suite showers lead off your own large central lounge, featuring a 36 foot high vaulted ceiling, offering spacious living, dining, and a bar/conversational lounge area which includes a fitted kitchenette, all adding to a sense of homely comfort. Sumptuous meals can be provided on request and served on the bottom deck at the swimming pool.</h3>\r\n<h3 style=\"text-align: justify;\">Be lulled to sleep by the sound of the waterfall and tinkling stream just outside your window, waking from a peaceful night\'s sleep in a pillow-top bed dressed in luxurious linens to coddle you in ultimate comfort.</h3>\r\n<h3 style=\"text-align: justify;\">Our property boasts many different species of birds and animals. We have a resident otter, a family of wild bush pigs,  a family of rock rabbits, porcupine, little blue duikers, a variety of different frogs and an abundance of bird life, including the occasional snakes that pass through!</h3>\r\n[/fusion_text][/one_half][/fullwidth][fullwidth background_color=\"#f0f0ed\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"20\" padding_bottom=\"20\" padding_left=\"0px\" padding_right=\"0px\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][fusion_text]\r\n<h1 style=\"text-align: center;\">Gallery</h1>\r\n[/fusion_text][separator style_type=\"single\" top_margin=\"\" bottom_margin=\"40\" sep_color=\"#000000\" border_size=\"\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"170px\" alignment=\"\" class=\"\" id=\"\"][one_sixth last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][/one_sixth][two_third last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][fusion_text]\r\n<h3 style=\"text-align: justify;\">The Lodge is open, spacious, comfortable and homely. During hot summer days, sit and bask in the sun on the deck  with one of our  picnic specials. In winter, snuggle up with a good book or challenge one another to a friendly board game in the glassed nook area .</h3>\r\n[/fusion_text][/two_third][one_sixth last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][/one_sixth][/fullwidth][fullwidth background_color=\"#f0f0ed\" background_image=\"http://localhost/assagaylodge/wp-content/uploads/2015/01/Wood_Texture.jpg\" background_parallax=\"fixed\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"30\" padding_bottom=\"10\" padding_left=\"0\" padding_right=\"0\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][recent_works layout=\"grid\" picture_size=\"auto\" boxed_text=\"unboxed\" filters=\"no\" columns=\"3\" column_spacing=\"12\" cat_slug=\"the-lodge\" exclude_cats=\"\" number_posts=\"9\" offset=\"\" excerpt_length=\"35\" strip_html=\"yes\" carousel_layout=\"title_on_rollover\" scroll_items=\"\" autoplay=\"no\" show_nav=\"yes\" mouse_scroll=\"no\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" class=\"\" id=\"\"][/recent_works][/fullwidth][fullwidth background_color=\"#f0f0ed\" background_image=\"\" background_parallax=\"fixed\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"20\" padding_bottom=\"20\" padding_left=\"0px\" padding_right=\"0px\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][fusion_text]\r\n<h1 style=\"text-align: center;\">BEDROOMS</h1>\r\n[/fusion_text][separator style_type=\"single\" top_margin=\"\" bottom_margin=\"20\" sep_color=\"#000000\" border_size=\"\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"170px\" alignment=\"\" class=\"\" id=\"\"][one_sixth last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][/one_sixth][two_third last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][fusion_text]\r\n<h3 style=\"text-align: justify;\">When it comes to our bedrooms we’re proud to say we offer something a little more special. One of five  lovingly and tastefully decorated guest rooms. Soft gray decor soothes the senses providing a peaceful, blissfully comfortable rest from your travels and hectic lives.</h3>\r\n<h3 style=\"text-align: justify;\">Our  bedrooms are spacious, clean, comfortable all en-suite, equipped with either king size or queen size beds. Each room sleeps two guests. The rooms have high ceilings, wall heaters &amp; ceiling fans. Beds all have electric blankets in Winter, 100% cotton percale sheets and thick hyper allergenic microfiber duvets and pillows. All guest rooms are cleaned with organic and green products. Amenities include hairdryers in each room. Three rooms feature King-sized beds  of which two can be  split into two single beds. Two  rooms can therefore be changed into a twin room upon request. Two rooms feature a Queen-sized double bed. These beds cannot be split into twin beds.</h3>\r\n[/fusion_text][/two_third][one_sixth last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][/one_sixth][/fullwidth][fullwidth background_color=\"\" background_image=\"http://localhost/assagaylodge/wp-content/uploads/2015/01/DSC01516-1148-x-764.jpg\" background_parallax=\"fixed\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"center center\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"20\" padding_bottom=\"20\" padding_left=\"0\" padding_right=\"0\" hundred_percent=\"no\" equal_height_columns=\"yes\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][recent_works layout=\"grid\" picture_size=\"auto\" boxed_text=\"unboxed\" filters=\"no\" columns=\"3\" column_spacing=\"12\" cat_slug=\"bedrooms\" exclude_cats=\"\" number_posts=\"6\" offset=\"\" excerpt_length=\"35\" strip_html=\"yes\" carousel_layout=\"title_on_rollover\" scroll_items=\"\" autoplay=\"no\" show_nav=\"yes\" mouse_scroll=\"no\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" class=\"\" id=\"\"][/recent_works][/fullwidth][fullwidth background_color=\"#f0f0ed\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"20\" padding_bottom=\"20\" padding_left=\"0\" padding_right=\"0\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][fusion_text]\r\n<h1 style=\"text-align: center;\">GARDENS</h1>\r\n[/fusion_text][separator style_type=\"single\" top_margin=\"\" bottom_margin=\"20\" sep_color=\"#000000\" border_size=\"\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"170px\" alignment=\"\" class=\"\" id=\"\"][one_sixth last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][/one_sixth][two_third last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][fusion_text]\r\n<h3 style=\"text-align: justify;\">The garden is large and offers many secluded spots to lose yourself in a book with a glass of wine underneath the shade of a tree, listening to the sounds of the birds and smelling the beautiful flowers.</h3>\r\n[/fusion_text][/two_third][one_sixth last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][/one_sixth][recent_works layout=\"grid\" picture_size=\"auto\" boxed_text=\"boxed\" filters=\"no\" columns=\"3\" column_spacing=\"12\" cat_slug=\"gardens\" exclude_cats=\"\" number_posts=\"9\" offset=\"\" excerpt_length=\"35\" strip_html=\"yes\" carousel_layout=\"title_on_rollover\" scroll_items=\"\" autoplay=\"no\" show_nav=\"yes\" mouse_scroll=\"no\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" class=\"\" id=\"\"][/recent_works][/fullwidth][fullwidth background_color=\"#ffffff\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"65px\" padding_bottom=\"65px\" padding_left=\"0px\" padding_right=\"0px\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][button link=\"http://localhost/assagaylodge/book-now/\" color=\"default\" size=\"xlarge\" type=\"3d\" shape=\"round\" target=\"_self\" title=\"\" gradient_colors=\"#f0f0ed|#f0f0ed\" gradient_hover_colors=\"#6666a4|#6666a4\" accent_color=\"#ffffff\" accent_hover_color=\"#ffffff\" bevel_color=\"\" border_width=\"0px\" icon=\"\" icon_position=\"left\" icon_divider=\"no\" modal=\"\" animation_type=\"0\" animation_direction=\"left\" animation_speed=\"1\" alignment=\"center\" class=\"\" id=\"\"]Make A Reservation Enquiry[/button][/fullwidth]', 'Home', '', 'inherit', 'closed', 'closed', '', '7-revision-v1', '', '', '2016-07-25 23:45:26', '2016-07-25 21:45:26', '', 7, 'http://msla.co.za/lodge/7-revision-v1/', 0, 'revision', '', 0),
(1253, 1, '2016-07-26 10:58:28', '2016-07-26 08:58:28', '[fullwidth background_color=\"\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"70px\" padding_bottom=\"75px\" padding_left=\"0px\" padding_right=\"0px\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][one_half last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][fusion_text]\r\n<h1>Contact Us</h1>\r\n<h2>Send us a message.</h2>\r\n[/fusion_text][fusion_text][contact-form-7 id=\"246\" title=\"Contact form 1\"][/fusion_text][/one_half][one_half last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][fusion_text]\r\n<h1>Where are we?</h1>\r\n<h2>4 Williams Road\r\nAssagay, Hillcrest\r\nKwaZulu Natal</h2>\r\n<h1>Contact</h1>\r\n<h2>0317656046 or 0317655961</h2>\r\n[/fusion_text][separator style_type=\"none\" top_margin=\"\" bottom_margin=\"20\" sep_color=\"\" border_size=\"\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"\" alignment=\"\" class=\"\" id=\"\"][accordian class=\"\" id=\"\"][toggle title=\"GPS Location\" open=\"no\"]\r\n\r\n<strong>GPS: Latitude (South) -29.771865, Longitude (East) 30.736892</strong>\r\n\r\n[/toggle][toggle title=\"Directions from King Shaka Airport / Durban\" open=\"no\"]\r\n\r\nFrom King Shaka Airport take the N2 South bound towards Durban, at the 3 level interchange be sure to take the N3 turn off towards Pietermaritzburg. Proceed through the Marionhill toll plaza and take the first off ramp marked Shongweni / Assagay / Hillcrest. Turn right towards Hillcrest into Kassier Road which will take you over the N3 and M13, keep on this road, pass the Hillcrest Private Hospital and Alverstone turn off. Remain on Kassier Road, for about 2-3km and turn into Assagay Road, which is just after Assagay Crescent.\r\n\r\nTake the left turn into Assagay Road. Head up the rise. Turn left into Castle Road, carry down the dip for about 500m and cross a small water-bridge. Turn first right into Lello Road, just after the bridge. Continue on Lello Road, the road dips and briefly climbs, the valley falling away to your right. Finally, turn left into Williams Road (it’s essentially the first left turn on Lello Road), Continue down Williams Road for about 800m. On your right you will come to the entrance of the farm called `Fourever` No 4 Williams Road. There’s a 1000 Hills Tourism Sign outside. A wooden fence and silver gate. Welcome to Assagay Forest Lodge.\r\n\r\n[/toggle][toggle title=\"Directions from Pietermaritzburg\" open=\"no\"]From Pietermaritzburg take the N3 towards Durban. After the Drummond turnoff the N3 makes a steep climb. Don\'t take the Alternative route but stay on the N3. Take the next off ramp marked Shongweni / Assagay / Hillcrest. Turn left towards Hillcrest into Kassier Road which will take you passed the Polo fields on your left and a Petrol Station on your right and over then over the M13, keep on this road, pass the Hillcrest Private Hospital and Alverstone turn off. Remain on Kassier Road, for about 2-3km and turn into Assagay Road, which is just after Assagay Crescent.\r\n\r\nTake the left turn into Assagay Road. Head up the rise. Turn left into Castle Road, carry down the dip for about 500m and cross a small water-bridge. Turn first right into Lello Road, just after the bridge. Continue on Lello Road, the road dips and briefly climbs, the valley falling away to your right. Finally, turn left into Williams Road (it’s essentially the first left turn on Lello Road), Continue down Williams Road for about 800m. On your right you will come to the entrance of the farm called `Fourever` No 4 Williams Road. There’s a 1000 Hills Tourism Sign outside. A wooden fence and silver gate. Welcome to Assagay Lodge.[/toggle][/accordian][/one_half][/fullwidth][fullwidth background_color=\"\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"0px\" padding_bottom=\"0px\" padding_left=\"0px\" padding_right=\"0px\" hundred_percent=\"yes\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][map address=\"Assagay Forest Lodge\" type=\"roadmap\" map_style=\"default\" overlay_color=\"#6666a4\" infobox=\"default\" infobox_background_color=\"rgba(102,102,164,.8)\" infobox_text_color=\"#ffffff\" infobox_content=\"\" icon=\"http://theme-fusion.com/avada_demos_xml/travel/wp-content/uploads/2015/01/map.png\" width=\"100%\" height=\"700px\" zoom=\"15\" scrollwheel=\"yes\" scale=\"no\" zoom_pancontrol=\"yes\" animation=\"no\" popup=\"no\" class=\"\" id=\"\"][/map][/fullwidth]', 'Contact & Directions', '', 'inherit', 'closed', 'closed', '', '11-revision-v1', '', '', '2016-07-26 10:58:28', '2016-07-26 08:58:28', '', 11, 'http://msla.co.za/lodge/11-revision-v1/', 0, 'revision', '', 0),
(1254, 1, '2016-07-26 11:02:06', '2016-07-26 09:02:06', '[fullwidth background_color=\"\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"70px\" padding_bottom=\"75px\" padding_left=\"0px\" padding_right=\"0px\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][one_half last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][fusion_text]\r\n<h1>Contact Us</h1>\r\n<h2>Send us a message.</h2>\r\n[/fusion_text][fusion_text][contact-form-7 id=\"246\" title=\"Contact form 1\"][/fusion_text][/one_half][one_half last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][fusion_text]\r\n<h1>Where are we?</h1>\r\n<h2>4 Williams Road\r\nAssagay, Hillcrest\r\nKwaZulu Natal</h2>\r\n<h1>Contact</h1>\r\n<h2>0317656046 or 0317655961</h2>\r\n[/fusion_text][separator style_type=\"none\" top_margin=\"\" bottom_margin=\"20\" sep_color=\"\" border_size=\"\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"\" alignment=\"\" class=\"\" id=\"\"][accordian class=\"\" id=\"\"][toggle title=\"GPS Location\" open=\"no\"]<p>\r\n<strong>GPS: Latitude (South) -29.771865, Longitude (East) 30.736892</strong></p>\r\n[/toggle][toggle title=\"Directions from King Shaka Airport / Durban\" open=\"no\"]<p>\r\nFrom King Shaka Airport take the N2 South bound towards Durban, at the 3 level interchange be sure to take the N3 turn off towards Pietermaritzburg. Proceed through the Marionhill toll plaza and take the first off ramp marked Shongweni / Assagay / Hillcrest. Turn right towards Hillcrest into Kassier Road which will take you over the N3 and M13, keep on this road, pass the Hillcrest Private Hospital and Alverstone turn off. Remain on Kassier Road, for about 2-3km and turn into Assagay Road, which is just after Assagay Crescent.</p>\r\n<p>Take the left turn into Assagay Road. Head up the rise. Turn left into Castle Road, carry down the dip for about 500m and cross a small water-bridge. Turn first right into Lello Road, just after the bridge. Continue on Lello Road, the road dips and briefly climbs, the valley falling away to your right. Finally, turn left into Williams Road (it’s essentially the first left turn on Lello Road), Continue down Williams Road for about 800m. On your right you will come to the entrance of the farm called `Fourever` No 4 Williams Road. There’s a 1000 Hills Tourism Sign outside. A wooden fence and silver gate. Welcome to Assagay Forest Lodge.</p>\r\n[/toggle][toggle title=\"Directions from Pietermaritzburg\" open=\"no\"]<p>From Pietermaritzburg take the N3 towards Durban. After the Drummond turnoff the N3 makes a steep climb. Don\'t take the Alternative route but stay on the N3. Take the next off ramp marked Shongweni / Assagay / Hillcrest. Turn left towards Hillcrest into Kassier Road which will take you passed the Polo fields on your left and a Petrol Station on your right and over then over the M13, keep on this road, pass the Hillcrest Private Hospital and Alverstone turn off. Remain on Kassier Road, for about 2-3km and turn into Assagay Road, which is just after Assagay Crescent.</p>\r\n<p>Take the left turn into Assagay Road. Head up the rise. Turn left into Castle Road, carry down the dip for about 500m and cross a small water-bridge. Turn first right into Lello Road, just after the bridge. Continue on Lello Road, the road dips and briefly climbs, the valley falling away to your right. Finally, turn left into Williams Road (it’s essentially the first left turn on Lello Road), Continue down Williams Road for about 800m. On your right you will come to the entrance of the farm called `Fourever` No 4 Williams Road. There’s a 1000 Hills Tourism Sign outside. A wooden fence and silver gate. Welcome to Assagay Lodge.</p>\r\n[/toggle][toggle title=\"Things to do\" open=\"no\"]<p>There is plenty to do.</p>\r\n<p>Durban Sea Side - 25kms<br />Game reserve - 15 kms<br />Animal Farm - 2kms<br />Brewery - 4kms<br />Shongweni Market - 6kms<br />Shongweni Dam - 8kms<br />Valley 1000 Hills , Zulu dancing and Croc farm - 4kms<br />Drakensberg Mountains - 3 hours<br />Hillcrest Shopping Centre - 3 kms<br />Waterfall Shopping Centre - 8kms<br />Pavilon Shopping Centre - 20 kms<br />Gateway Shopping Centre - 40kms</p>\r\n[/toggle][/accordian][/one_half][/fullwidth][fullwidth background_color=\"\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"0px\" padding_bottom=\"0px\" padding_left=\"0px\" padding_right=\"0px\" hundred_percent=\"yes\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][map address=\"Assagay Forest Lodge\" type=\"roadmap\" map_style=\"default\" overlay_color=\"#6666a4\" infobox=\"default\" infobox_background_color=\"rgba(102,102,164,.8)\" infobox_text_color=\"#ffffff\" infobox_content=\"\" icon=\"http://theme-fusion.com/avada_demos_xml/travel/wp-content/uploads/2015/01/map.png\" width=\"100%\" height=\"700px\" zoom=\"15\" scrollwheel=\"yes\" scale=\"no\" zoom_pancontrol=\"yes\" animation=\"no\" popup=\"no\" class=\"\" id=\"\"][/map][/fullwidth]', 'Contact & Directions', '', 'inherit', 'closed', 'closed', '', '11-revision-v1', '', '', '2016-07-26 11:02:06', '2016-07-26 09:02:06', '', 11, 'http://msla.co.za/lodge/11-revision-v1/', 0, 'revision', '', 0),
(1255, 1, '2016-07-26 11:03:16', '2016-07-26 09:03:16', '[fullwidth background_color=\"\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"70px\" padding_bottom=\"75px\" padding_left=\"0px\" padding_right=\"0px\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][one_half last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][fusion_text]\r\n<h1>Contact Us</h1>\r\n<h2>Send us a message.</h2>\r\n[/fusion_text][fusion_text][contact-form-7 id=\"246\" title=\"Contact form 1\"][/fusion_text][/one_half][one_half last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][fusion_text]\r\n<h1>Where are we?</h1>\r\n<h2>4 Williams Road\r\nAssagay, Hillcrest\r\nKwaZulu Natal</h2>\r\n<h1>Contact</h1>\r\n<h2>0317656046 or 0317655961</h2>\r\n[/fusion_text][separator style_type=\"none\" top_margin=\"\" bottom_margin=\"20\" sep_color=\"\" border_size=\"\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"\" alignment=\"\" class=\"\" id=\"\"][accordian class=\"\" id=\"\"][toggle title=\"GPS Location\" open=\"no\"]<p>\r\n<strong>GPS: Latitude (South) -29.771865, Longitude (East) 30.736892</strong></p>\r\n[/toggle][toggle title=\"Directions from King Shaka Airport / Durban\" open=\"no\"]<p>\r\nFrom King Shaka Airport take the N2 South bound towards Durban, at the 3 level interchange be sure to take the N3 turn off towards Pietermaritzburg. Proceed through the Marionhill toll plaza and take the first off ramp marked Shongweni / Assagay / Hillcrest. Turn right towards Hillcrest into Kassier Road which will take you over the N3 and M13, keep on this road, pass the Hillcrest Private Hospital and Alverstone turn off. Remain on Kassier Road, for about 2-3km and turn into Assagay Road, which is just after Assagay Crescent.</p>\r\n<p>Take the left turn into Assagay Road. Head up the rise. Turn left into Castle Road, carry down the dip for about 500m and cross a small water-bridge. Turn first right into Lello Road, just after the bridge. Continue on Lello Road, the road dips and briefly climbs, the valley falling away to your right. Finally, turn left into Williams Road (it’s essentially the first left turn on Lello Road), Continue down Williams Road for about 800m. On your right you will come to the entrance of the farm called `Fourever` No 4 Williams Road. There’s a 1000 Hills Tourism Sign outside. A wooden fence and silver gate. Welcome to Assagay Forest Lodge.</p>\r\n[/toggle][toggle title=\"Directions from Pietermaritzburg\" open=\"no\"]<p>From Pietermaritzburg take the N3 towards Durban. After the Drummond turnoff the N3 makes a steep climb. Don\'t take the Alternative route but stay on the N3. Take the next off ramp marked Shongweni / Assagay / Hillcrest. Turn left towards Hillcrest into Kassier Road which will take you passed the Polo fields on your left and a Petrol Station on your right and over then over the M13, keep on this road, pass the Hillcrest Private Hospital and Alverstone turn off. Remain on Kassier Road, for about 2-3km and turn into Assagay Road, which is just after Assagay Crescent.</p>\r\n<p>Take the left turn into Assagay Road. Head up the rise. Turn left into Castle Road, carry down the dip for about 500m and cross a small water-bridge. Turn first right into Lello Road, just after the bridge. Continue on Lello Road, the road dips and briefly climbs, the valley falling away to your right. Finally, turn left into Williams Road (it’s essentially the first left turn on Lello Road), Continue down Williams Road for about 800m. On your right you will come to the entrance of the farm called `Fourever` No 4 Williams Road. There’s a 1000 Hills Tourism Sign outside. A wooden fence and silver gate. Welcome to Assagay Lodge.</p>\r\n[/toggle][toggle title=\"Things to do\" open=\"no\"]<p>There is plenty to do.</p>\r\n<p>Durban Sea Side - 25kms<br />Game reserve - 15 kms<br />Animal Farm - 2kms<br />Brewery - 4kms<br />Shongweni Market - 6kms<br />Shongweni Dam - 8kms<br />Valley 1000 Hills , Zulu dancing and Croc farm - 4kms<br />Drakensberg Mountains - 3 hours<br />Hillcrest Shopping Centre - 3 kms<br />Waterfall Shopping Centre - 8kms<br />Pavilion Shopping Centre - 20 kms<br />Gateway Shopping Centre - 40kms</p>\r\n[/toggle][/accordian][/one_half][/fullwidth][fullwidth background_color=\"\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"0px\" padding_bottom=\"0px\" padding_left=\"0px\" padding_right=\"0px\" hundred_percent=\"yes\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][map address=\"Assagay Forest Lodge\" type=\"roadmap\" map_style=\"default\" overlay_color=\"#6666a4\" infobox=\"default\" infobox_background_color=\"rgba(102,102,164,.8)\" infobox_text_color=\"#ffffff\" infobox_content=\"\" icon=\"http://theme-fusion.com/avada_demos_xml/travel/wp-content/uploads/2015/01/map.png\" width=\"100%\" height=\"700px\" zoom=\"15\" scrollwheel=\"yes\" scale=\"no\" zoom_pancontrol=\"yes\" animation=\"no\" popup=\"no\" class=\"\" id=\"\"][/map][/fullwidth]', 'Contact & Directions', '', 'inherit', 'closed', 'closed', '', '11-revision-v1', '', '', '2016-07-26 11:03:16', '2016-07-26 09:03:16', '', 11, 'http://msla.co.za/lodge/11-revision-v1/', 0, 'revision', '', 0);
INSERT INTO `wp_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(1258, 1, '2016-09-19 11:52:45', '2016-09-19 09:52:45', '<div>\r\n<table class=\" alignleft\" style=\"width: 100%;\" cellspacing=\"0\" cellpadding=\"0\">\r\n<tbody>\r\n<tr style=\"height: 40px;\">\r\n<td style=\"width: 25%; height: 30px; text-align: left; vertical-align: middle;\"><span style=\"color: #99ccff; font-family: arial,helvetica,sans-serif; font-size: 12pt;\"><strong>RESERVATION DETAILS</strong></span></td>\r\n<td style=\"width: 25%; height: 30px; text-align: left; vertical-align: middle;\"><span style=\"color: #99ccff; font-family: arial,helvetica,sans-serif; font-size: 8pt;\"><span style=\"background-color: #0191c8;\">[error error_title=\"Errors found in the form\" error_message=\"There is a problem.\"]</span></span></td>\r\n<td style=\"width: 25%; height: 30px; text-align: left; vertical-align: middle;\"><span style=\"color: #99ccff; font-family: arial,helvetica,sans-serif; font-size: 12pt;\"> <span style=\"font-family: arial,helvetica,sans-serif;\">[[show_price before=\"ESTIMATED PRICE INCL VAT: \"]</span></span></td>\r\n<td style=\"width: 25%; height: 30px; text-align: right; vertical-align: middle;\"><span style=\"color: #99ccff; font-family: arial,helvetica,sans-serif; font-size: 12pt;\"><strong><span style=\"font-family: Arial;\">[hidden resource 854]</span> </strong></span></td>\r\n</tr>\r\n<tr style=\"height: 40px;\">\r\n<td style=\"width: 25%; height: 30px; text-align: left; vertical-align: middle;\"><span style=\"color: #99ccff; font-family: arial,helvetica,sans-serif; font-size: 10pt;\">Arrival Date</span></td>\r\n<td style=\"width: 25%; height: 30px; text-align: left; vertical-align: middle;\"><span style=\"color: #99ccff; font-family: arial,helvetica,sans-serif; font-size: 10pt;\">[date-from value=\"+1\"]</span></td>\r\n<td style=\"width: 25%; height: 30px; text-align: left; vertical-align: middle;\"><span style=\"color: #99ccff; font-family: arial,helvetica,sans-serif; font-size: 10pt;\">Departure Date</span></td>\r\n<td style=\"width: 25%; height: 30px; text-align: left; vertical-align: middle;\"><span style=\"color: #99ccff; font-family: arial,helvetica,sans-serif; font-size: 10pt;\">[date-to value=\"+2\"]</span></td>\r\n</tr>\r\n<tr style=\"height: 40px;\">\r\n<td style=\"width: 25%; height: 30px; text-align: left; vertical-align: middle;\"><span style=\"color: #99ccff; font-family: arial,helvetica,sans-serif; font-size: 10pt;\">Number Of Guests</span></td>\r\n<td style=\"width: 25%; height: 30px; text-align: left; vertical-align: middle;\"><span style=\"color: #99ccff; font-family: arial,helvetica,sans-serif; font-size: 10pt;\">[adults 1 10 value=\"1\"]</span></td>\r\n<td style=\"width: 25%; height: 30px; text-align: left; vertical-align: middle;\"><span style=\"color: #99ccff; font-family: arial,helvetica,sans-serif; font-size: 10pt;\">Children Under 2yrs (Own Bedding)</span></td>\r\n<td style=\"width: 25%; height: 30px; text-align: left; vertical-align: middle;\"><span style=\"color: #99ccff; font-family: arial,helvetica,sans-serif; font-size: 10pt;\">...Stay Free</span></td>\r\n</tr>\r\n<tr style=\"height: 40px;\">\r\n<td style=\"width: 25%; height: 30px; text-align: left; vertical-align: middle;\"><span style=\"color: #99ccff;\"> </span></td>\r\n<td style=\"width: 25%; height: 30px; text-align: left; vertical-align: middle;\"><span style=\"color: #99ccff;\"> </span></td>\r\n<td style=\"width: 25%; height: 30px; text-align: left; vertical-align: middle;\"><span style=\"color: #99ccff;\"> </span></td>\r\n<td style=\"width: 25%; height: 30px; text-align: left; vertical-align: middle;\"><span style=\"color: #99ccff;\"> </span></td>\r\n</tr>\r\n<tr style=\"height: 40px;\">\r\n<td style=\"width: 25%; height: 30px; text-align: left; vertical-align: middle;\"><span style=\"color: #99ccff; font-family: arial,helvetica,sans-serif; font-size: 10pt;\"><span style=\"font-family: arial,helvetica,sans-serif; font-size: 12pt;\"><strong>MEAL OPTIONS</strong></span></span></td>\r\n<td style=\"width: 25%; height: 30px; text-align: left; vertical-align: middle;\"><span style=\"color: #99ccff;\"> </span></td>\r\n<td style=\"width: 25%; height: 30px; text-align: left; vertical-align: middle;\"><span style=\"color: #99ccff; font-family: arial,helvetica,sans-serif; font-size: 10pt;\"> <span style=\"font-family: arial,helvetica,sans-serif; font-size: 12pt;\"><strong>SERVICE OPTIONS</strong></span></span></td>\r\n<td style=\"width: 25%; height: 30px; text-align: left; vertical-align: middle;\"><span style=\"color: #99ccff;\"> </span></td>\r\n</tr>\r\n<tr style=\"height: 40px;\">\r\n<td style=\"width: 25%; height: 30px; text-align: left; vertical-align: middle;\"><span style=\"color: #99ccff; font-family: arial,helvetica,sans-serif; font-size: 10pt;\">Include Morning Breakfast</span></td>\r\n<td style=\"width: 25%; height: 30px; text-align: left; vertical-align: middle;\"><span style=\"color: #99ccff; font-family: arial,helvetica,sans-serif; font-size: 10pt;\">[custom id=\"2\"]</span></td>\r\n<td style=\"width: 25%; height: 30px; text-align: left; vertical-align: middle;\"><span style=\"color: #99ccff; font-family: arial,helvetica,sans-serif; font-size: 10pt;\">Include Cleaning Services</span></td>\r\n<td style=\"width: 25%; height: 30px; text-align: left; vertical-align: middle;\"><span style=\"color: #99ccff; font-family: arial,helvetica,sans-serif; font-size: 10pt;\">[custom id=\"3\"]</span></td>\r\n</tr>\r\n<tr style=\"height: 40px;\">\r\n<td style=\"width: 25%; height: 30px; text-align: left; vertical-align: middle;\"><span style=\"color: #99ccff; font-family: arial,helvetica,sans-serif; font-size: 12pt;\"><span style=\"font-family: arial,helvetica,sans-serif; font-size: 10pt;\">Include Midday Lunch</span></span></td>\r\n<td style=\"width: 25%; height: 30px; text-align: left; vertical-align: middle;\"><span style=\"color: #99ccff; font-family: arial,helvetica,sans-serif; font-size: 12pt;\"><span style=\"font-family: arial,helvetica,sans-serif; font-size: 10pt;\">[custom id=\"4\"]</span></span></td>\r\n<td style=\"width: 25%; height: 30px; text-align: left; vertical-align: middle;\"><span style=\"color: #99ccff;\"> </span></td>\r\n<td style=\"width: 25%; height: 30px; text-align: left; vertical-align: middle;\"><span style=\"color: #99ccff;\"> </span></td>\r\n</tr>\r\n<tr style=\"height: 40px;\">\r\n<td style=\"width: 25%; height: 30px; text-align: left; vertical-align: middle;\"><span style=\"color: #99ccff; font-family: arial,helvetica,sans-serif; font-size: 12pt;\"><span style=\"font-family: arial,helvetica,sans-serif; font-size: 10pt;\">Include Evening Dinner</span></span></td>\r\n<td style=\"width: 25%; height: 30px; text-align: left; vertical-align: middle;\"><span style=\"color: #99ccff; font-family: arial,helvetica,sans-serif; font-size: 12pt;\"><strong><span style=\"font-family: arial,helvetica,sans-serif; font-size: 10pt;\">[custom id=\"5\"]</span></strong></span></td>\r\n<td style=\"width: 25%; height: 30px; text-align: left; vertical-align: middle;\"><span style=\"color: #99ccff;\"> </span></td>\r\n<td style=\"width: 25%; height: 30px; text-align: left; vertical-align: middle;\"><span style=\"color: #99ccff;\"> </span></td>\r\n</tr>\r\n<tr style=\"height: 40px;\">\r\n<td style=\"width: 25%; height: 30px; text-align: left; vertical-align: middle;\" colspan=\"4\"><span style=\"color: #99ccff;\"> </span></td>\r\n</tr>\r\n<tr style=\"height: 40px;\">\r\n<td style=\"width: 25%; height: 30px; text-align: left; vertical-align: middle;\" colspan=\"4\"><span style=\"color: #99ccff; font-family: arial,helvetica,sans-serif; font-size: 12pt;\"><strong>PERSONAL DETAILS</strong></span></td>\r\n</tr>\r\n<tr style=\"height: 40px;\">\r\n<td style=\"width: 25%; height: 30px; text-align: left; vertical-align: middle;\"><span style=\"color: #99ccff; font-family: arial,helvetica,sans-serif; font-size: 10pt;\">First Name</span></td>\r\n<td style=\"width: 25%; height: 30px; text-align: left; vertical-align: middle;\"><span style=\"color: #99ccff; font-family: arial,helvetica,sans-serif; font-size: 10pt;\">[thename]</span></td>\r\n<td style=\"width: 25%; height: 30px; text-align: left; vertical-align: middle;\"><span style=\"color: #99ccff; font-family: arial,helvetica,sans-serif; font-size: 10pt;\">Email Address</span></td>\r\n<td style=\"width: 25%; height: 30px; text-align: left; vertical-align: middle;\"><span style=\"color: #99ccff; font-family: arial,helvetica,sans-serif; font-size: 10pt;\">[email]</span></td>\r\n</tr>\r\n<tr style=\"height: 40px;\">\r\n<td style=\"width: 25%; height: 30px; text-align: left; vertical-align: middle;\"><span style=\"color: #99ccff; font-family: arial,helvetica,sans-serif; font-size: 10pt;\">Surname</span></td>\r\n<td style=\"width: 25%; height: 30px; text-align: left; vertical-align: middle;\"><span style=\"color: #99ccff; font-family: arial,helvetica,sans-serif; font-size: 10pt;\">[thename]</span></td>\r\n<td style=\"width: 25%; height: 30px; text-align: left; vertical-align: middle;\"><span style=\"color: #99ccff; font-family: arial,helvetica,sans-serif; font-size: 10pt;\">Contact Phone</span></td>\r\n<td style=\"width: 25%; height: 30px; text-align: left; vertical-align: middle;\"><span style=\"color: #99ccff; font-family: arial,helvetica,sans-serif; font-size: 10pt;\">[custom text Phone *]</span></td>\r\n</tr>\r\n<tr style=\"height: 40px;\">\r\n<td style=\"width: 25%; height: 30px; text-align: left; vertical-align: middle;\"><span style=\"color: #99ccff; font-family: arial,helvetica,sans-serif; font-size: 10pt;\">Country</span></td>\r\n<td style=\"width: 25%; height: 30px; text-align: left; vertical-align: middle;\"><span style=\"color: #99ccff; font-family: arial,helvetica,sans-serif; font-size: 10pt;\">[country value=\"ZA\"]</span></td>\r\n<td style=\"width: 25%; height: 30px; text-align: left; vertical-align: middle;\"><span style=\"color: #99ccff;\"> </span></td>\r\n<td style=\"width: 25%; height: 30px; text-align: left; vertical-align: middle;\"><span style=\"color: #99ccff;\"> </span></td>\r\n</tr>\r\n<tr style=\"height: 40px;\">\r\n<td style=\"width: 25%; height: 30px; text-align: left; vertical-align: middle;\" rowspan=\"3\"><span style=\"color: #99ccff; font-family: arial,helvetica,sans-serif; font-size: 10pt;\">Comments or Questions!</span></td>\r\n<td style=\"width: 25%; height: 30px; text-align: left; vertical-align: middle;\" rowspan=\"3\"><span style=\"color: #99ccff; font-family: arial,helvetica,sans-serif; font-size: 10pt;\">[custom textarea Message]</span></td>\r\n<td style=\"width: 25%; height: 30px; text-align: left; vertical-align: middle;\"><span style=\"color: #99ccff; font-family: arial,helvetica,sans-serif; font-size: 10pt;\">I accept <span style=\"text-decoration: underline;\"><strong> <a style=\"color: #99ccff; text-decoration: underline;\" href=\"http://msla.co.za/lodge/tcs/\">Terms &amp; Conditions</a></strong></span></span></td>\r\n<td style=\"width: 25%; height: 30px; text-align: left; vertical-align: middle;\"><span style=\"color: #99ccff; font-family: arial,helvetica,sans-serif; font-size: 10pt;\">[custom id=\"1\" title=\"Terms &amp; Conditions\"]</span></td>\r\n</tr>\r\n<tr style=\"height: 40px;\">\r\n<td style=\"width: 25%; height: 30px; text-align: left; vertical-align: middle;\"><span style=\"color: #99ccff; font-family: arial,helvetica,sans-serif; font-size: 10pt;\">Enter Security Code</span></td>\r\n<td style=\"width: 25%; height: 30px; text-align: left; vertical-align: middle;\"><span style=\"color: #99ccff; font-family: arial,helvetica,sans-serif; font-size: 16pt;\">[captcha]</span></td>\r\n</tr>\r\n<tr style=\"height: 40px;\">\r\n<td style=\"width: 240px; text-align: left; vertical-align: middle;\"><span style=\"color: #99ccff;\"> </span></td>\r\n<td style=\"width: 240px; text-align: left; vertical-align: middle;\"><span style=\"color: #99ccff; font-family: arial,helvetica,sans-serif; font-size: 10pt;\">[submit value=\"Submit\"]</span></td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n</div>', 'Form Templet', '', 'inherit', 'closed', 'closed', '', '1072-revision-v1', '', '', '2016-09-19 11:52:45', '2016-09-19 09:52:45', '', 1072, 'http://msla.co.za/lodge/1072-revision-v1/', 0, 'revision', '', 0),
(1260, 1, '2016-10-06 14:29:18', '2016-10-06 12:29:18', '[fullwidth background_color=\"#f0f0ed\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"20\" padding_bottom=\"20\" padding_left=\"0px\" padding_right=\"0px\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][one_half last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][separator style_type=\"single\" top_margin=\"0\" bottom_margin=\"30\" sep_color=\"#000000\" border_size=\"\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"170px\" alignment=\"center\" class=\"separator-left\" id=\"\"][fusion_text]\r\n<h1 style=\"text-align: center;\">No Fancy Star Grading\r\nNo Room Service\r\nNo Bed Turn-downs\r\nNo Rose Petals in the Bath water</h1>\r\n<h1 style=\"text-align: center;\">... just old fashioned homely comforts</h1>\r\n[/fusion_text][/one_half][one_half last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][fusion_text]\r\n<h1 style=\"text-align: justify;\">5 BEDROOM FAMILY LODGE</h1>\r\n<h3 style=\"text-align: justify;\">We are a four season lodge, because there’s always something to celebrate… We offer comfort, relaxation and privacy right in the heart of 1000 Hills. The Forest, the Gardens, the Atmosphere all speak to  Rest  &amp; Relaxation.</h3>\r\n[/fusion_text][separator style_type=\"single\" top_margin=\"0\" bottom_margin=\"30\" sep_color=\"#000000\" border_size=\"\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"170px\" alignment=\"left\" class=\"separator-left\" id=\"\"][/one_half][/fullwidth][fullwidth background_color=\"#f0f0ed\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"20\" padding_bottom=\"20\" padding_left=\"0px\" padding_right=\"0px\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][one_half last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][fusion_text]\r\n<h3 style=\"text-align: justify;\">Set in the rolling peaks and valleys of a thousand hills surrounded by a canopy of indigenous trees, you will find that horses still have right of way, we certainly offer the best of both worlds, farm and charm coupled with modern amenities that will have you feeling relaxed and rejuvenated.</h3>\r\n<h3 style=\"text-align: justify;\">We know that sometimes you are searching for a romantic getaway or maybe a few days away with old friends. Other times you are searching for a place to host a weekend, family reunion or a business retreat. In addition to nightly room rentals, our lodge is also available for meetings, retreats  and makes the perfect place for a wedding party to stay together and get ready for the big day. Regardless, with our five comfortable and cozy guest bedrooms, multiple garden spaces and hideaways, and a  large private deck  where you can take a nap or read a book we definitely have the room for you!</h3>\r\n<h3 style=\"text-align: justify;\">Evenings are quiet and peaceful taking you far away from the business of city life. This is a unique and memorable country experience. We look forward to having you as a guest!</h3>\r\n[/fusion_text][/one_half][one_half last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][fusion_text]\r\n<h3 style=\"text-align: justify;\">Our lodge has been in our family for years and has recently been beautifully renovated. Five rooms all with en-suite showers lead off your own large central lounge, featuring a 36 foot high vaulted ceiling, offering spacious living, dining, and a bar/conversational lounge area which includes a fitted kitchenette, all adding to a sense of homely comfort. Sumptuous meals can be provided on request and served on the bottom deck at the swimming pool.</h3>\r\n<h3 style=\"text-align: justify;\">Be lulled to sleep by the sound of the waterfall and tinkling stream just outside your window, waking from a peaceful night\'s sleep in a pillow-top bed dressed in luxurious linens to coddle you in ultimate comfort.</h3>\r\n<h3 style=\"text-align: justify;\">Our property boasts many different species of birds and animals. We have a resident otter, a family of wild bush pigs,  a family of rock rabbits, porcupine, little blue duikers, a variety of different frogs and an abundance of bird life, including the occasional snakes that pass through!</h3>\r\n[/fusion_text][/one_half][/fullwidth][fullwidth background_color=\"#f0f0ed\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"20\" padding_bottom=\"20\" padding_left=\"0px\" padding_right=\"0px\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][fusion_text]\r\n<h1 style=\"text-align: center;\">Gallery</h1>\r\n[/fusion_text][separator style_type=\"single\" top_margin=\"\" bottom_margin=\"40\" sep_color=\"#000000\" border_size=\"\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"170px\" alignment=\"\" class=\"\" id=\"\"][one_sixth last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][/one_sixth][two_third last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][fusion_text]\r\n<h3 style=\"text-align: justify;\">The Lodge is open, spacious, comfortable and homely. During hot summer days, sit and bask in the sun on the deck  with one of our  picnic specials. In winter, snuggle up with a good book or challenge one another to a friendly board game in the glassed nook area .</h3>\r\n[/fusion_text][/two_third][one_sixth last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][/one_sixth][/fullwidth][fullwidth background_color=\"#f0f0ed\" background_image=\"http://localhost/assagaylodge/wp-content/uploads/2015/01/Wood_Texture.jpg\" background_parallax=\"fixed\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"30\" padding_bottom=\"10\" padding_left=\"0\" padding_right=\"0\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][recent_works layout=\"grid\" picture_size=\"auto\" boxed_text=\"unboxed\" filters=\"no\" columns=\"3\" column_spacing=\"12\" cat_slug=\"the-lodge\" exclude_cats=\"\" number_posts=\"9\" offset=\"\" excerpt_length=\"35\" strip_html=\"yes\" carousel_layout=\"title_on_rollover\" scroll_items=\"\" autoplay=\"no\" show_nav=\"yes\" mouse_scroll=\"no\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" class=\"\" id=\"\"][/recent_works][/fullwidth][fullwidth background_color=\"#f0f0ed\" background_image=\"\" background_parallax=\"fixed\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"20\" padding_bottom=\"20\" padding_left=\"0px\" padding_right=\"0px\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][fusion_text]\r\n<h1 style=\"text-align: center;\">BEDROOMS</h1>\r\n[/fusion_text][separator style_type=\"single\" top_margin=\"\" bottom_margin=\"20\" sep_color=\"#000000\" border_size=\"\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"170px\" alignment=\"\" class=\"\" id=\"\"][one_sixth last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][/one_sixth][two_third last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][fusion_text]\r\n<h3 style=\"text-align: justify;\">When it comes to our bedrooms we’re proud to say we offer something a little more special. One of five  lovingly and tastefully decorated guest rooms. Soft gray decor soothes the senses providing a peaceful, blissfully comfortable rest from your travels and hectic lives.</h3>\r\n<h3 style=\"text-align: justify;\">Our  bedrooms are spacious, clean, comfortable all en-suite, equipped with either king size or queen size beds. Each room sleeps two guests. The rooms have high ceilings, wall heaters &amp; ceiling fans. Beds all have electric blankets in Winter, 100% cotton percale sheets and thick hyper allergenic microfiber duvets and pillows. All guest rooms are cleaned with organic and green products. Amenities include hairdryers in each room. Three rooms feature King-sized beds  of which two can be  split into two single beds. Two  rooms can therefore be changed into a twin room upon request. Two rooms feature a Queen-sized double bed. These beds cannot be split into twin beds.</h3>\r\n[/fusion_text][/two_third][one_sixth last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][/one_sixth][/fullwidth][fullwidth background_color=\"\" background_image=\"http://localhost/assagaylodge/wp-content/uploads/2015/01/DSC01516-1148-x-764.jpg\" background_parallax=\"fixed\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"center center\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"20\" padding_bottom=\"20\" padding_left=\"0\" padding_right=\"0\" hundred_percent=\"no\" equal_height_columns=\"yes\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][recent_works layout=\"grid\" picture_size=\"auto\" boxed_text=\"unboxed\" filters=\"no\" columns=\"3\" column_spacing=\"12\" cat_slug=\"bedrooms\" exclude_cats=\"\" number_posts=\"6\" offset=\"\" excerpt_length=\"35\" strip_html=\"yes\" carousel_layout=\"title_on_rollover\" scroll_items=\"\" autoplay=\"no\" show_nav=\"yes\" mouse_scroll=\"no\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" class=\"\" id=\"\"][/recent_works][/fullwidth][fullwidth background_color=\"#f0f0ed\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"20\" padding_bottom=\"20\" padding_left=\"0\" padding_right=\"0\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][fusion_text]\r\n<h1 style=\"text-align: center;\">GARDENS</h1>\r\n[/fusion_text][separator style_type=\"single\" top_margin=\"\" bottom_margin=\"20\" sep_color=\"#000000\" border_size=\"\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"170px\" alignment=\"\" class=\"\" id=\"\"][one_sixth last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][/one_sixth][two_third last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][fusion_text]\r\n<h3 style=\"text-align: justify;\">The garden is large and offers many secluded spots to lose yourself in a book with a glass of wine underneath the shade of a tree, listening to the sounds of the birds and smelling the beautiful flowers.</h3>\r\n[/fusion_text][/two_third][one_sixth last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][/one_sixth][recent_works layout=\"grid\" picture_size=\"auto\" boxed_text=\"boxed\" filters=\"no\" columns=\"3\" column_spacing=\"12\" cat_slug=\"gardens\" exclude_cats=\"\" number_posts=\"9\" offset=\"\" excerpt_length=\"35\" strip_html=\"yes\" carousel_layout=\"title_on_rollover\" scroll_items=\"\" autoplay=\"no\" show_nav=\"yes\" mouse_scroll=\"no\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" class=\"\" id=\"\"][/recent_works][/fullwidth][fullwidth background_color=\"#ffffff\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"65px\" padding_bottom=\"65px\" padding_left=\"0px\" padding_right=\"0px\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][button link=\"http://localhost/assagaylodge/book-now/\" color=\"default\" size=\"xlarge\"  type=\"3d\" shape=\"round\" target=\"_self\" title=\"\" gradient_colors=\"#f0f0ed|#f0f0ed\" gradient_hover_colors=\"#6666a4|#6666a4\" accent_color=\"#ffffff\" accent_hover_color=\"#ffffff\" bevel_color=\"\" border_width=\"0px\" icon=\"\" icon_position=\"left\" icon_divider=\"no\" modal=\"\" animation_type=\"0\" animation_direction=\"left\" animation_speed=\"1\" alignment=\"center\" class=\"\" id=\"\"]Make A Reservation Enquiry[/button][/fullwidth]', 'Home', '', 'inherit', 'closed', 'closed', '', '7-revision-v1', '', '', '2016-10-06 14:29:18', '2016-10-06 12:29:18', '', 7, 'http://msla.co.za/lodge/7-revision-v1/', 0, 'revision', '', 0),
(1261, 1, '2016-10-06 14:42:35', '2016-10-06 12:42:35', '[fusion_text]<table style=\"width: 100%;\" cellspacing=\"10\" cellpadding=\"5\">\r\n<tbody>\r\n<tr>\r\n<td colspan=\"2\"><span style=\"font-size: 10pt;\">ALL PRICES INCLUDE VAT<strong> </strong></span></td>\r\n</tr>\r\n<tr>\r\n<td colspan=\"2\"><span style=\"font-size: 12pt;\"><strong>Self-Catering / Self-Servicing Accommodation</strong></span></td>\r\n</tr>\r\n<tr>\r\n<td><span style=\"font-size: 12pt;\">Accommodation 1-5 persons</span></td>\r\n<td><span style=\"font-size: 12pt;\"><strong>*R 580</strong> per person per night</span></td>\r\n</tr>\r\n<tr>\r\n<td><span style=\"font-size: 12pt;\">Accommodation 6-10 persons</span></td>\r\n<td><span style=\"font-size: 12pt;\"><strong>*R 440</strong> per person per night</span></td>\r\n</tr>\r\n<tr>\r\n<td><span style=\"font-size: 12pt;\">To qualify for a 15% discount</span></td>\r\n<td><span style=\"font-size: 12pt;\">a) Book directly through this site </span></td>\r\n</tr>\r\n<tr>\r\n<td><span style=\"font-size: 12pt;\"> </span></td>\r\n<td><span style=\"font-size: 12pt;\">b) Pay 100% deposit</span></td>\r\n</tr>\r\n<tr>\r\n<td><strong><span style=\"font-size: 12pt;\">Servicing Options</span></strong></td>\r\n<td><span style=\"font-size: 12pt;\"><strong> </strong></span></td>\r\n</tr>\r\n<tr>\r\n<td><span style=\"font-size: 12pt;\">Lodge Only Servicing (Optional) </span></td>\r\n<td><span style=\"font-size: 12pt;\"><strong>R25</strong> per person per day - Max <span style=\"font-size: 12pt;\"><strong>R 150 </strong>per day</span></span></td>\r\n</tr>\r\n<tr>\r\n<td><span style=\"font-size: 12pt;\">Lodge &amp; Room Servicing (Optional) </span></td>\r\n<td><span style=\"font-size: 12pt;\"><strong>R45</strong> per person per day - Max <span style=\"font-size: 12pt;\"><strong>R 270 </strong>per day</span></span></td>\r\n</tr>\r\n<tr>\r\n<td><span style=\"font-size: 12pt;\"> </span></td>\r\n<td><span style=\"font-size: 12pt;\"><strong> </strong></span></td>\r\n</tr>\r\n<tr>\r\n<td colspan=\"2\"><span style=\"font-size: 12pt;\"><span style=\"font-size: 12pt;\"><strong>Catering Options</strong></span> </span><span style=\"font-size: 12pt;\"><strong> </strong></span></td>\r\n</tr>\r\n<tr>\r\n<td><span style=\"font-size: 12pt;\"> <span style=\"font-size: 12pt;\">Breakfast (Continental)</span></span></td>\r\n<td><span style=\"font-size: 12pt;\"><strong> </strong><span style=\"font-size: 12pt;\"><strong>R  55</strong> per person</span></span></td>\r\n</tr>\r\n<tr>\r\n<td><span style=\"font-size: 12pt;\"> <span style=\"font-size: 12pt;\">Breakfast (Full English)</span></span></td>\r\n<td><span style=\"font-size: 12pt;\"><strong> </strong><span style=\"font-size: 12pt;\"><strong>R  75</strong> per person</span></span></td>\r\n</tr>\r\n<tr>\r\n<td><span style=\"font-size: 12pt;\"> <span style=\"font-size: 12pt;\">Light Lunch</span></span></td>\r\n<td><span style=\"font-size: 12pt;\">From <span style=\"font-size: 12pt;\"><strong>R120</strong>per person</span></span></td>\r\n</tr>\r\n<tr>\r\n<td><span style=\"font-size: 12pt;\"> <span style=\"font-size: 12pt;\">Dinners</span></span></td>\r\n<td><span style=\"font-size: 12pt;\">From <span style=\"font-size: 12pt;\"><strong>R 180 </strong>per person</span></span></td>\r\n</tr>\r\n<tr>\r\n<td><span style=\"font-size: 12pt;\"> </span></td>\r\n<td><span style=\"font-size: 12pt;\"><strong> </strong></span></td>\r\n</tr>\r\n<tr>\r\n<td><strong><span style=\"font-size: 12pt;\">Others</span></strong></td>\r\n<td><span style=\"font-size: 12pt;\"><strong> </strong></span></td>\r\n</tr>\r\n<tr>\r\n<td><span style=\"font-size: 12pt;\">Gate Remote</span></td>\r\n<td><span style=\"font-size: 12pt;\"><strong>R 200 </strong>deposit</span></td>\r\n</tr>\r\n<tr>\r\n<td><span style=\"font-size: 12pt;\">Gas Braai</span></td>\r\n<td><span style=\"font-size: 12pt;\"><strong>R 120 </strong>per day</span></td>\r\n</tr>\r\n<tr>\r\n<td><span style=\"font-size: 12pt;\">Day Visitors / Guests</span></td>\r\n<td><span style=\"font-size: 12pt;\"><strong>R 50 </strong>per person per day</span></td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n\r\n<hr />[/fusion_text][modal name=\"rates\" title=\"Rates &amp; Tariffs\" size=\"large\" background=\"\" border_color=\"\" show_footer=\"yes\" class=\"\" id=\"\"]\r\n<table style=\"width: 100%;\" cellspacing=\"10\" cellpadding=\"5\">\r\n<tbody>\r\n<tr>\r\n<td colspan=\"2\"><span style=\"font-size: 10pt;\">ALL PRICES INCLUDE VAT </span></td>\r\n</tr>\r\n<tr>\r\n<td colspan=\"2\"><span style=\"font-size: 12pt;\"><strong>Self-Catering / Self-Servicing Accommodation</strong></span></td>\r\n</tr>\r\n<tr>\r\n<td><span style=\"font-size: 12pt;\">Full House - Max 10 persons per lodge</span></td>\r\n<td><span style=\"font-size: 12pt;\"><strong>R3250</strong> per night (R325 per person)</span></td>\r\n</tr>\r\n<tr>\r\n<td><span style=\"font-size: 12pt;\">Single - Max 1 person per room</span></td>\r\n<td><span style=\"font-size: 12pt;\"><strong>R 650</strong> per person per night</span></td>\r\n</tr>\r\n<tr>\r\n<td><span style=\"font-size: 12pt;\">Sharing - Max 2 persons per room</span></td>\r\n<td><span style=\"font-size: 12pt;\"><strong>R 495</strong> per person per night</span></td>\r\n</tr>\r\n<tr>\r\n<td></td>\r\n<td></td>\r\n</tr>\r\n<tr>\r\n<td><strong><span style=\"font-size: 12pt;\">Servicing Options</span></strong></td>\r\n<td></td>\r\n</tr>\r\n<tr>\r\n<td><span style=\"font-size: 12pt;\">Lodge Only Servicing (Optional) </span></td>\r\n<td><span style=\"font-size: 12pt;\"><strong>R30</strong> per person per day - Max <span style=\"font-size: 12pt;\"><strong>R 150 </strong>per day</span></span></td>\r\n</tr>\r\n<tr>\r\n<td><span style=\"font-size: 12pt;\">Lodge &amp; Room Servicing (Optional) </span></td>\r\n<td><span style=\"font-size: 12pt;\"><strong>R50</strong> per person per day - Max <span style=\"font-size: 12pt;\"><strong>R 250 </strong>per day</span></span></td>\r\n</tr>\r\n<tr>\r\n<td></td>\r\n<td></td>\r\n</tr>\r\n<tr>\r\n<td colspan=\"2\"><span style=\"font-size: 12pt;\"><span style=\"font-size: 12pt;\"><strong>Catering Options</strong></span> </span></td>\r\n</tr>\r\n<tr>\r\n<td><span style=\"font-size: 12pt;\"> <span style=\"font-size: 12pt;\">Breakfast (Continental)</span></span></td>\r\n<td><span style=\"font-size: 12pt;\"> <span style=\"font-size: 12pt;\"><strong>R 55</strong> per person</span></span></td>\r\n</tr>\r\n<tr>\r\n<td><span style=\"font-size: 12pt;\"> <span style=\"font-size: 12pt;\">Breakfast (Full English)</span></span></td>\r\n<td><span style=\"font-size: 12pt;\"> <span style=\"font-size: 12pt;\"><strong>R 95</strong> per person</span></span></td>\r\n</tr>\r\n<tr>\r\n<td><span style=\"font-size: 12pt;\"> <span style=\"font-size: 12pt;\">Light Lunch</span></span></td>\r\n<td><span style=\"font-size: 12pt;\">From <span style=\"font-size: 12pt;\"><strong>R 95 </strong>per person</span></span></td>\r\n</tr>\r\n<tr>\r\n<td><span style=\"font-size: 12pt;\"> <span style=\"font-size: 12pt;\">Dinners</span></span></td>\r\n<td><span style=\"font-size: 12pt;\">From <span style=\"font-size: 12pt;\"><strong>R 150 </strong>per person</span></span></td>\r\n</tr>\r\n<tr>\r\n<td></td>\r\n<td></td>\r\n</tr>\r\n<tr>\r\n<td><strong><span style=\"font-size: 12pt;\">Others</span></strong></td>\r\n<td></td>\r\n</tr>\r\n<tr>\r\n<td><span style=\"font-size: 12pt;\">Gate Remote</span></td>\r\n<td><span style=\"font-size: 12pt;\"><strong>R 200 </strong>deposit</span></td>\r\n</tr>\r\n<tr>\r\n<td><span style=\"font-size: 12pt;\">Gas Braai</span></td>\r\n<td><span style=\"font-size: 12pt;\"><strong>R 120 </strong>per day</span></td>\r\n</tr>\r\n<tr>\r\n<td><span style=\"font-size: 12pt;\">Day Visitors / Guests</span></td>\r\n<td><span style=\"font-size: 12pt;\"><strong>R 35 </strong>per person per day</span></td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n\r\n<hr />\r\n\r\n[/modal][button link=\"\" color=\"default\" size=\"\"  type=\"\" shape=\"\" target=\"_self\" title=\"\" gradient_colors=\"|\" gradient_hover_colors=\"|\" accent_color=\"\" accent_hover_color=\"\" bevel_color=\"\" border_width=\"1px\" icon=\"\" icon_position=\"left\" icon_divider=\"no\" modal=\"rates\" animation_type=\"0\" animation_direction=\"left\" animation_speed=\"1\" alignment=\"\" class=\"\" id=\"\"]Click here![/button]', 'Rates', '', 'inherit', 'closed', 'closed', '', '1121-revision-v1', '', '', '2016-10-06 14:42:35', '2016-10-06 12:42:35', '', 1121, 'http://msla.co.za/lodge/1121-revision-v1/', 0, 'revision', '', 0),
(1262, 1, '2016-10-06 14:44:29', '2016-10-06 12:44:29', '[fusion_text]\r\n<table style=\"width: 100%;\" cellspacing=\"10\" cellpadding=\"5\">\r\n<tbody>\r\n<tr>\r\n<td colspan=\"2\"><span style=\"font-size: 10pt;\">ALL PRICES INCLUDE VAT<strong> </strong></span></td>\r\n</tr>\r\n<tr>\r\n<td colspan=\"2\"><span style=\"font-size: 12pt;\"><strong>Self-Catering / Self-Servicing Accommodation</strong></span></td>\r\n</tr>\r\n<tr>\r\n<td><span style=\"font-size: 12pt;\">Accommodation 1-5 persons (first 5)</span></td>\r\n<td><span style=\"font-size: 12pt;\"><strong>*R 580</strong> per person per night</span></td>\r\n</tr>\r\n<tr>\r\n<td><span style=\"font-size: 12pt;\">Accommodation 6-10 persons </span></td>\r\n<td><span style=\"font-size: 12pt;\"><strong>*R 440</strong> per person per night</span></td>\r\n</tr>\r\n<tr>\r\n<td><span style=\"font-size: 12pt;\">To qualify for a 15% discount</span></td>\r\n<td><span style=\"font-size: 12pt;\">a) Book directly through this site </span></td>\r\n</tr>\r\n<tr>\r\n<td><span style=\"font-size: 12pt;\"> </span></td>\r\n<td><span style=\"font-size: 12pt;\">b) Pay 100% deposit</span></td>\r\n</tr>\r\n<tr>\r\n<td><strong><span style=\"font-size: 12pt;\">Servicing Options</span></strong></td>\r\n<td><span style=\"font-size: 12pt;\"><strong> </strong></span></td>\r\n</tr>\r\n<tr>\r\n<td><span style=\"font-size: 12pt;\">Lodge Only Servicing (Optional) </span></td>\r\n<td><span style=\"font-size: 12pt;\"><strong>R25</strong> per person per day - Max <span style=\"font-size: 12pt;\"><strong>R 150 </strong>per day</span></span></td>\r\n</tr>\r\n<tr>\r\n<td><span style=\"font-size: 12pt;\">Lodge &amp; Room Servicing (Optional) </span></td>\r\n<td><span style=\"font-size: 12pt;\"><strong>R45</strong> per person per day - Max <span style=\"font-size: 12pt;\"><strong>R 270 </strong>per day</span></span></td>\r\n</tr>\r\n<tr>\r\n<td><span style=\"font-size: 12pt;\"> </span></td>\r\n<td><span style=\"font-size: 12pt;\"><strong> </strong></span></td>\r\n</tr>\r\n<tr>\r\n<td colspan=\"2\"><span style=\"font-size: 12pt;\"><span style=\"font-size: 12pt;\"><strong>Catering Options</strong></span> </span><span style=\"font-size: 12pt;\"><strong> </strong></span></td>\r\n</tr>\r\n<tr>\r\n<td><span style=\"font-size: 12pt;\"> <span style=\"font-size: 12pt;\">Breakfast (Continental)</span></span></td>\r\n<td><span style=\"font-size: 12pt;\"><strong> </strong><span style=\"font-size: 12pt;\"><strong>R  55</strong> per person</span></span></td>\r\n</tr>\r\n<tr>\r\n<td><span style=\"font-size: 12pt;\"> <span style=\"font-size: 12pt;\">Breakfast (Full English)</span></span></td>\r\n<td><span style=\"font-size: 12pt;\"><strong> </strong><span style=\"font-size: 12pt;\"><strong>R  75</strong> per person</span></span></td>\r\n</tr>\r\n<tr>\r\n<td><span style=\"font-size: 12pt;\"> <span style=\"font-size: 12pt;\">Light Lunch</span></span></td>\r\n<td><span style=\"font-size: 12pt;\">From <span style=\"font-size: 12pt;\"><strong>R120</strong>per person</span></span></td>\r\n</tr>\r\n<tr>\r\n<td><span style=\"font-size: 12pt;\"> <span style=\"font-size: 12pt;\">Dinners</span></span></td>\r\n<td><span style=\"font-size: 12pt;\">From <span style=\"font-size: 12pt;\"><strong>R 180 </strong>per person</span></span></td>\r\n</tr>\r\n<tr>\r\n<td><span style=\"font-size: 12pt;\"> </span></td>\r\n<td><span style=\"font-size: 12pt;\"><strong> </strong></span></td>\r\n</tr>\r\n<tr>\r\n<td><strong><span style=\"font-size: 12pt;\">Others</span></strong></td>\r\n<td><span style=\"font-size: 12pt;\"><strong> </strong></span></td>\r\n</tr>\r\n<tr>\r\n<td><span style=\"font-size: 12pt;\">Gate Remote</span></td>\r\n<td><span style=\"font-size: 12pt;\"><strong>R 200 </strong>deposit</span></td>\r\n</tr>\r\n<tr>\r\n<td><span style=\"font-size: 12pt;\">Gas Braai</span></td>\r\n<td><span style=\"font-size: 12pt;\"><strong>R 120 </strong>per day</span></td>\r\n</tr>\r\n<tr>\r\n<td><span style=\"font-size: 12pt;\">Day Visitors / Guests</span></td>\r\n<td><span style=\"font-size: 12pt;\"><strong>R 50 </strong>per person per day</span></td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n\r\n<hr />\r\n\r\n[/fusion_text][modal name=\"rates\" title=\"Rates &amp; Tariffs\" size=\"large\" background=\"\" border_color=\"\" show_footer=\"yes\" class=\"\" id=\"\"]\r\n<table style=\"width: 100%;\" cellspacing=\"10\" cellpadding=\"5\">\r\n<tbody>\r\n<tr>\r\n<td colspan=\"2\"><span style=\"font-size: 10pt;\">ALL PRICES INCLUDE VAT </span></td>\r\n</tr>\r\n<tr>\r\n<td colspan=\"2\"><span style=\"font-size: 12pt;\"><strong>Self-Catering / Self-Servicing Accommodation</strong></span></td>\r\n</tr>\r\n<tr>\r\n<td><span style=\"font-size: 12pt;\">Full House - Max 10 persons per lodge</span></td>\r\n<td><span style=\"font-size: 12pt;\"><strong>R3250</strong> per night (R325 per person)</span></td>\r\n</tr>\r\n<tr>\r\n<td><span style=\"font-size: 12pt;\">Single - Max 1 person per room</span></td>\r\n<td><span style=\"font-size: 12pt;\"><strong>R 650</strong> per person per night</span></td>\r\n</tr>\r\n<tr>\r\n<td><span style=\"font-size: 12pt;\">Sharing - Max 2 persons per room</span></td>\r\n<td><span style=\"font-size: 12pt;\"><strong>R 495</strong> per person per night</span></td>\r\n</tr>\r\n<tr>\r\n<td></td>\r\n<td></td>\r\n</tr>\r\n<tr>\r\n<td><strong><span style=\"font-size: 12pt;\">Servicing Options</span></strong></td>\r\n<td></td>\r\n</tr>\r\n<tr>\r\n<td><span style=\"font-size: 12pt;\">Lodge Only Servicing (Optional) </span></td>\r\n<td><span style=\"font-size: 12pt;\"><strong>R30</strong> per person per day - Max <span style=\"font-size: 12pt;\"><strong>R 150 </strong>per day</span></span></td>\r\n</tr>\r\n<tr>\r\n<td><span style=\"font-size: 12pt;\">Lodge &amp; Room Servicing (Optional) </span></td>\r\n<td><span style=\"font-size: 12pt;\"><strong>R50</strong> per person per day - Max <span style=\"font-size: 12pt;\"><strong>R 250 </strong>per day</span></span></td>\r\n</tr>\r\n<tr>\r\n<td></td>\r\n<td></td>\r\n</tr>\r\n<tr>\r\n<td colspan=\"2\"><span style=\"font-size: 12pt;\"><span style=\"font-size: 12pt;\"><strong>Catering Options</strong></span> </span></td>\r\n</tr>\r\n<tr>\r\n<td><span style=\"font-size: 12pt;\"> <span style=\"font-size: 12pt;\">Breakfast (Continental)</span></span></td>\r\n<td><span style=\"font-size: 12pt;\"> <span style=\"font-size: 12pt;\"><strong>R 55</strong> per person</span></span></td>\r\n</tr>\r\n<tr>\r\n<td><span style=\"font-size: 12pt;\"> <span style=\"font-size: 12pt;\">Breakfast (Full English)</span></span></td>\r\n<td><span style=\"font-size: 12pt;\"> <span style=\"font-size: 12pt;\"><strong>R 95</strong> per person</span></span></td>\r\n</tr>\r\n<tr>\r\n<td><span style=\"font-size: 12pt;\"> <span style=\"font-size: 12pt;\">Light Lunch</span></span></td>\r\n<td><span style=\"font-size: 12pt;\">From <span style=\"font-size: 12pt;\"><strong>R 95 </strong>per person</span></span></td>\r\n</tr>\r\n<tr>\r\n<td><span style=\"font-size: 12pt;\"> <span style=\"font-size: 12pt;\">Dinners</span></span></td>\r\n<td><span style=\"font-size: 12pt;\">From <span style=\"font-size: 12pt;\"><strong>R 150 </strong>per person</span></span></td>\r\n</tr>\r\n<tr>\r\n<td></td>\r\n<td></td>\r\n</tr>\r\n<tr>\r\n<td><strong><span style=\"font-size: 12pt;\">Others</span></strong></td>\r\n<td></td>\r\n</tr>\r\n<tr>\r\n<td><span style=\"font-size: 12pt;\">Gate Remote</span></td>\r\n<td><span style=\"font-size: 12pt;\"><strong>R 200 </strong>deposit</span></td>\r\n</tr>\r\n<tr>\r\n<td><span style=\"font-size: 12pt;\">Gas Braai</span></td>\r\n<td><span style=\"font-size: 12pt;\"><strong>R 120 </strong>per day</span></td>\r\n</tr>\r\n<tr>\r\n<td><span style=\"font-size: 12pt;\">Day Visitors / Guests</span></td>\r\n<td><span style=\"font-size: 12pt;\"><strong>R 35 </strong>per person per day</span></td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n\r\n<hr />\r\n\r\n[/modal][button link=\"\" color=\"default\" size=\"\" type=\"\" shape=\"\" target=\"_self\" title=\"\" gradient_colors=\"|\" gradient_hover_colors=\"|\" accent_color=\"\" accent_hover_color=\"\" bevel_color=\"\" border_width=\"1px\" icon=\"\" icon_position=\"left\" icon_divider=\"no\" modal=\"rates\" animation_type=\"0\" animation_direction=\"left\" animation_speed=\"1\" alignment=\"\" class=\"\" id=\"\"]Click here![/button]', 'Rates', '', 'inherit', 'closed', 'closed', '', '1121-revision-v1', '', '', '2016-10-06 14:44:29', '2016-10-06 12:44:29', '', 1121, 'http://msla.co.za/lodge/1121-revision-v1/', 0, 'revision', '', 0);
INSERT INTO `wp_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(1263, 1, '2016-10-06 14:49:22', '2016-10-06 12:49:22', '[fusion_text]\r\n<table style=\"width: 100%;\" cellspacing=\"10\" cellpadding=\"5\">\r\n<tbody>\r\n<tr>\r\n<td colspan=\"2\"><span style=\"font-size: 10pt;\">ALL PRICES INCLUDE VAT<strong> </strong></span></td>\r\n</tr>\r\n<tr>\r\n<td colspan=\"2\"><span style=\"font-size: 12pt;\"><strong>Self-Catering / Self-Servicing Accommodation</strong></span></td>\r\n</tr>\r\n<tr>\r\n<td><span style=\"font-size: 12pt;\">Accommodation 1-5 persons (first 5)</span></td>\r\n<td><span style=\"font-size: 12pt;\"><strong>*R 580</strong> per person per night</span></td>\r\n</tr>\r\n<tr>\r\n<td><span style=\"font-size: 12pt;\">Accommodation 6-10 persons </span></td>\r\n<td><span style=\"font-size: 12pt;\"><strong>*R 440</strong> per person per night</span></td>\r\n</tr>\r\n<tr>\r\n<td><span style=\"font-size: 12pt;\">To qualify for a 15% discount on accommodation</span></td>\r\n<td><span style=\"font-size: 12pt;\">a) Book directly through this site </span></td>\r\n</tr>\r\n<tr>\r\n<td><span style=\"font-size: 12pt;\"> </span></td>\r\n<td><span style=\"font-size: 12pt;\">b) Pay 100% deposit</span></td>\r\n</tr>\r\n<tr>\r\n<td><strong><span style=\"font-size: 12pt;\">Servicing Options</span></strong></td>\r\n<td><span style=\"font-size: 12pt;\"><strong> </strong></span></td>\r\n</tr>\r\n<tr>\r\n<td><span style=\"font-size: 12pt;\">Lodge Only Servicing (Optional) </span></td>\r\n<td><span style=\"font-size: 12pt;\"><strong>R25</strong> per person per day - Max <span style=\"font-size: 12pt;\"><strong>R 150 </strong>per day</span></span></td>\r\n</tr>\r\n<tr>\r\n<td><span style=\"font-size: 12pt;\">Lodge &amp; Room Servicing (Optional) </span></td>\r\n<td><span style=\"font-size: 12pt;\"><strong>R45</strong> per person per day - Max <span style=\"font-size: 12pt;\"><strong>R 270 </strong>per day</span></span></td>\r\n</tr>\r\n<tr>\r\n<td><span style=\"font-size: 12pt;\"> </span></td>\r\n<td><span style=\"font-size: 12pt;\"><strong> </strong></span></td>\r\n</tr>\r\n<tr>\r\n<td colspan=\"2\"><span style=\"font-size: 12pt;\"><span style=\"font-size: 12pt;\"><strong>Catering Options</strong></span> </span><span style=\"font-size: 12pt;\"><strong> </strong></span></td>\r\n</tr>\r\n<tr>\r\n<td><span style=\"font-size: 12pt;\"> <span style=\"font-size: 12pt;\">Breakfast (Muesli/Cereal, Yogurt &amp; Toast)</span></span></td>\r\n<td><span style=\"font-size: 12pt;\"><strong> </strong><span style=\"font-size: 12pt;\"><strong>R  55</strong> per person</span></span></td>\r\n</tr>\r\n<tr>\r\n<td><span style=\"font-size: 12pt;\"> <span style=\"font-size: 12pt;\">Breakfast (Full Hot English &amp; Toast)</span></span></td>\r\n<td><span style=\"font-size: 12pt;\"><strong> </strong><span style=\"font-size: 12pt;\"><strong>R  75</strong> per person</span></span></td>\r\n</tr>\r\n<tr>\r\n<td><span style=\"font-size: 12pt;\"> <span style=\"font-size: 12pt;\">Light Lunch</span></span></td>\r\n<td><span style=\"font-size: 12pt;\">From <span style=\"font-size: 12pt;\"><strong>R120 </strong>per person</span></span></td>\r\n</tr>\r\n<tr>\r\n<td><span style=\"font-size: 12pt;\"> <span style=\"font-size: 12pt;\">Dinners</span></span></td>\r\n<td><span style=\"font-size: 12pt;\">From <span style=\"font-size: 12pt;\"><strong>R 180 </strong>per person</span></span></td>\r\n</tr>\r\n<tr>\r\n<td><span style=\"font-size: 12pt;\"> </span></td>\r\n<td><span style=\"font-size: 12pt;\"><strong> </strong></span></td>\r\n</tr>\r\n<tr>\r\n<td><strong><span style=\"font-size: 12pt;\">Others</span></strong></td>\r\n<td><span style=\"font-size: 12pt;\"><strong> </strong></span></td>\r\n</tr>\r\n<tr>\r\n<td><span style=\"font-size: 12pt;\">Gate Remote</span></td>\r\n<td><span style=\"font-size: 12pt;\"><strong>R 200 </strong>deposit</span></td>\r\n</tr>\r\n<tr>\r\n<td><span style=\"font-size: 12pt;\">Gas Braai</span></td>\r\n<td><span style=\"font-size: 12pt;\"><strong>R 120 </strong>per day</span></td>\r\n</tr>\r\n<tr>\r\n<td><span style=\"font-size: 12pt;\">Day Visitors / Guests</span></td>\r\n<td><span style=\"font-size: 12pt;\"><strong>R 50 </strong>per person per day</span></td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n\r\n<hr />\r\n\r\n[/fusion_text][modal name=\"rates\" title=\"Rates &amp; Tariffs\" size=\"large\" background=\"\" border_color=\"\" show_footer=\"yes\" class=\"\" id=\"\"]\r\n<table style=\"width: 100%;\" cellspacing=\"10\" cellpadding=\"5\">\r\n<tbody>\r\n<tr>\r\n<td colspan=\"2\"><span style=\"font-size: 10pt;\">ALL PRICES INCLUDE VAT </span></td>\r\n</tr>\r\n<tr>\r\n<td colspan=\"2\"><span style=\"font-size: 12pt;\"><strong>Self-Catering / Self-Servicing Accommodation</strong></span></td>\r\n</tr>\r\n<tr>\r\n<td><span style=\"font-size: 12pt;\">Full House - Max 10 persons per lodge</span></td>\r\n<td><span style=\"font-size: 12pt;\"><strong>R3250</strong> per night (R325 per person)</span></td>\r\n</tr>\r\n<tr>\r\n<td><span style=\"font-size: 12pt;\">Single - Max 1 person per room</span></td>\r\n<td><span style=\"font-size: 12pt;\"><strong>R 650</strong> per person per night</span></td>\r\n</tr>\r\n<tr>\r\n<td><span style=\"font-size: 12pt;\">Sharing - Max 2 persons per room</span></td>\r\n<td><span style=\"font-size: 12pt;\"><strong>R 495</strong> per person per night</span></td>\r\n</tr>\r\n<tr>\r\n<td></td>\r\n<td></td>\r\n</tr>\r\n<tr>\r\n<td><strong><span style=\"font-size: 12pt;\">Servicing Options</span></strong></td>\r\n<td></td>\r\n</tr>\r\n<tr>\r\n<td><span style=\"font-size: 12pt;\">Lodge Only Servicing (Optional) </span></td>\r\n<td><span style=\"font-size: 12pt;\"><strong>R30</strong> per person per day - Max <span style=\"font-size: 12pt;\"><strong>R 150 </strong>per day</span></span></td>\r\n</tr>\r\n<tr>\r\n<td><span style=\"font-size: 12pt;\">Lodge &amp; Room Servicing (Optional) </span></td>\r\n<td><span style=\"font-size: 12pt;\"><strong>R50</strong> per person per day - Max <span style=\"font-size: 12pt;\"><strong>R 250 </strong>per day</span></span></td>\r\n</tr>\r\n<tr>\r\n<td></td>\r\n<td></td>\r\n</tr>\r\n<tr>\r\n<td colspan=\"2\"><span style=\"font-size: 12pt;\"><span style=\"font-size: 12pt;\"><strong>Catering Options</strong></span> </span></td>\r\n</tr>\r\n<tr>\r\n<td><span style=\"font-size: 12pt;\"> <span style=\"font-size: 12pt;\">Breakfast (Continental)</span></span></td>\r\n<td><span style=\"font-size: 12pt;\"> <span style=\"font-size: 12pt;\"><strong>R 55</strong> per person</span></span></td>\r\n</tr>\r\n<tr>\r\n<td><span style=\"font-size: 12pt;\"> <span style=\"font-size: 12pt;\">Breakfast (Full English)</span></span></td>\r\n<td><span style=\"font-size: 12pt;\"> <span style=\"font-size: 12pt;\"><strong>R 95</strong> per person</span></span></td>\r\n</tr>\r\n<tr>\r\n<td><span style=\"font-size: 12pt;\"> <span style=\"font-size: 12pt;\">Light Lunch</span></span></td>\r\n<td><span style=\"font-size: 12pt;\">From <span style=\"font-size: 12pt;\"><strong>R 95 </strong>per person</span></span></td>\r\n</tr>\r\n<tr>\r\n<td><span style=\"font-size: 12pt;\"> <span style=\"font-size: 12pt;\">Dinners</span></span></td>\r\n<td><span style=\"font-size: 12pt;\">From <span style=\"font-size: 12pt;\"><strong>R 150 </strong>per person</span></span></td>\r\n</tr>\r\n<tr>\r\n<td></td>\r\n<td></td>\r\n</tr>\r\n<tr>\r\n<td><strong><span style=\"font-size: 12pt;\">Others</span></strong></td>\r\n<td></td>\r\n</tr>\r\n<tr>\r\n<td><span style=\"font-size: 12pt;\">Gate Remote</span></td>\r\n<td><span style=\"font-size: 12pt;\"><strong>R 200 </strong>deposit</span></td>\r\n</tr>\r\n<tr>\r\n<td><span style=\"font-size: 12pt;\">Gas Braai</span></td>\r\n<td><span style=\"font-size: 12pt;\"><strong>R 120 </strong>per day</span></td>\r\n</tr>\r\n<tr>\r\n<td><span style=\"font-size: 12pt;\">Day Visitors / Guests</span></td>\r\n<td><span style=\"font-size: 12pt;\"><strong>R 35 </strong>per person per day</span></td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n\r\n<hr />\r\n\r\n[/modal][button link=\"\" color=\"default\" size=\"\" type=\"\" shape=\"\" target=\"_self\" title=\"\" gradient_colors=\"|\" gradient_hover_colors=\"|\" accent_color=\"\" accent_hover_color=\"\" bevel_color=\"\" border_width=\"1px\" icon=\"\" icon_position=\"left\" icon_divider=\"no\" modal=\"rates\" animation_type=\"0\" animation_direction=\"left\" animation_speed=\"1\" alignment=\"\" class=\"\" id=\"\"]Click here![/button]', 'Rates', '', 'inherit', 'closed', 'closed', '', '1121-revision-v1', '', '', '2016-10-06 14:49:22', '2016-10-06 12:49:22', '', 1121, 'http://msla.co.za/lodge/1121-revision-v1/', 0, 'revision', '', 0),
(1264, 1, '2016-10-13 10:42:39', '2016-10-13 08:42:39', '[fullwidth background_color=\"\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding_top=\"20\" padding_bottom=\"20\" padding_left=\"0\" padding_right=\"0\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][title size=\"1\" content_align=\"right\" style_type=\"default\" sep_color=\"\" class=\"\" id=\"\"]Terms &amp; Conditions[/title][/fullwidth][one_sixth last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][/one_sixth][two_third last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][fusion_text]\r\n<h3 style=\"text-align: justify;\">Check-in Times</h3>\r\n<span style=\"font-size: 12pt;\">[checklist icon=\"fa-star-o\" iconcolor=\"\" circle=\"\" circlecolor=\"\" size=\"13px\" class=\"\" id=\"\"]\r\n[li_item icon=\"\"]Check-in Time is from 14h00 to 18h00 (Late arrivals must be arranged before hand).[/li_item]\r\n[li_item icon=\"\"]Check-out Time is before 10h00.[/li_item]\r\n[/checklist]</span>[/fusion_text][/two_third][one_sixth last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][/one_sixth][one_sixth last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][/one_sixth][two_third last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][fusion_text]\r\n<h3 style=\"text-align: justify;\">Payment Terms</h3>\r\n<p style=\"text-align: justify;\"><span style=\"font-size: 12pt;\">[checklist icon=\"fa-star-o\" iconcolor=\"\" circle=\"\" circlecolor=\"\" size=\"13px\" class=\"\" id=\"\"]\r\n[li_item icon=\"\"]Rates are inclusive of <strong>14%</strong> VAT.[/li_item]\r\n[li_item icon=\"\"]Payment must be made via <strong>Bank Transfer</strong>, alternatively, <strong>Cash</strong> may be accepted by prior arrangement.[/li_item]\r\n[li_item icon=\"\"]We no longer accept Cheques.[/li_item]\r\n[li_item icon=\"\"]All accommodation must be settled either before or on arrival.[/li_item]\r\n[li_item icon=\"\"]No bookings are guaranteed until your reservation is confirmed, having paid at least a <strong>50% deposit</strong>.[/li_item]\r\n[/checklist]</span></p>\r\n[/fusion_text][/two_third][one_sixth last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][/one_sixth][one_sixth last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][/one_sixth][two_third last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][fusion_text]\r\n<h3 style=\"text-align: justify;\">Refunds &amp; Cancelation Terms</h3>\r\n<p style=\"text-align: justify;\"><span style=\"font-size: 12pt;\">[checklist icon=\"fa-star-o\" iconcolor=\"\" circle=\"\" circlecolor=\"\" size=\"13px\" class=\"\" id=\"\"]\r\n[li_item icon=\"\"]Guests are liable for the tariff of the full period booked.[/li_item]\r\n[li_item icon=\"\"]No refunds will be given for early departures / late arrivals, or due to weather conditions / power outages<span style=\"text-align: justify;\">.</span>[/li_item]\r\n[li_item icon=\"\"]<span style=\"text-align: justify;\">Cancellation of any booking must be done via email.</span>[/li_item]\r\n[li_item icon=\"\"]<span style=\"text-align: justify;\">If you cancel your reservation 15 days and more, </span><span style=\"text-align: justify;\">before your arrival date, your deposit will be </span><span style=\"text-align: justify;\">r</span><span style=\"text-align: justify;\">efund</span><span style=\"text-align: justify;\">ed</span><span style=\"text-align: justify;\"> less an administration fee of </span>15%.[/li_item]\r\n[li_item icon=\"\"]<span style=\"text-align: justify;\">If you cancel your reservation 14 days and less, before your arrival date, your deposit will become </span>non-refundable.[/li_item]\r\n[li_item icon=\"\"]<span style=\"text-align: justify;\">Payments are not refundable for reservations not cancelled and not taken up.</span>[/li_item]\r\n[/checklist]</span></p>\r\n[/fusion_text][/two_third][one_sixth last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][/one_sixth][one_sixth last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][/one_sixth][two_third last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][fusion_text]\r\n<h3><span style=\"font-size: 12pt;\">General Terms</span></h3>\r\n<span style=\"font-size: 12pt;\">[checklist icon=\"fa-star-o\" iconcolor=\"\" circle=\"\" circlecolor=\"\" size=\"13px\" class=\"\" id=\"\"]\r\n[li_item icon=\"\"]A reservation may not be transferred.[/li_item]\r\n[li_item icon=\"\"]Bookings are for holiday purposes only and cannot give rise to a tenancy.[/li_item]\r\n[li_item icon=\"\"]Persons occupying the lodge may not exceed the number of persons indicated upon booking.[/li_item]\r\n[li_item icon=\"\"]During nights the all doors must be locked. Please remember to lock the door behind you and to remove the key.[/li_item]\r\n[li_item icon=\"\"]Please leave the Lodge reasonable tidy and clean after use.[/li_item]\r\n[li_item icon=\"\"]Out of respect for all guests, and the fact that we are in a conservancy, noise must be kept down to a comfortable level and we request that there be silence in the Lodge between 22h00 and 08h00.[/li_item]\r\n[li_item icon=\"\"]Please keep furniture, fixtures and fittings in the same state of repair and condition as at the beginning of your stay. In the event of any damage to furniture, fixtures or fittings, you may be held liable for the replacement value or repair costs. This includes damage to the pool area.[/li_item]\r\n[li_item icon=\"\"]The use of open fires and the burning of any unprotected candles or fuel burning lanterns, in or around the Lodge, will not be permitted.[/li_item]\r\n[li_item icon=\"\"]We operate a non-smoking policy throughout the Lodge. You are welcome to smoke outside the house, where ashtrays and/or bins will be provided.[/li_item]\r\n[li_item icon=\"\"]No pets or animals, with the exception of guide dogs, are allowed on the premises.[/li_item]\r\n[li_item icon=\"\"]The use or sale of any illegal substance in the Lodge or on surrounding property is not permissible.[/li_item]\r\n[li_item icon=\"\"]<span style=\"text-align: justify;\">Right of admission is reserved.</span>[/li_item]\r\n[li_item icon=\"\"]We reserve the right to eject a guest/guests from the Lodge if they are not conducting themselves in an appropriate and/or acceptable manner to the building and/or other residents or staff.[/li_item]\r\n[li_item icon=\"\"]Swimming Pool - The premises contains an unsupervised, open pool which may be used at the guests\' own risk.[/li_item]</span>\r\n<span style=\"font-size: 12pt;\"> [/checklist]</span>[/fusion_text][/two_third][one_sixth last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][/one_sixth]', 'T&Cs', '', 'inherit', 'closed', 'closed', '', '984-revision-v1', '', '', '2016-10-13 10:42:39', '2016-10-13 08:42:39', '', 984, 'http://msla.co.za/lodge/984-revision-v1/', 0, 'revision', '', 0),
(1265, 1, '2016-10-13 10:47:21', '2016-10-13 08:47:21', '[fullwidth background_color=\"\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding_top=\"20\" padding_bottom=\"20\" padding_left=\"0\" padding_right=\"0\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][title size=\"1\" content_align=\"right\" style_type=\"default\" sep_color=\"\" class=\"\" id=\"\"]Terms &amp; Conditions[/title][/fullwidth][one_sixth last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][/one_sixth][two_third last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][fusion_text]\r\n<h3 style=\"text-align: justify;\">Check-in Times</h3>\r\n<span style=\"font-size: 12pt;\">[checklist icon=\"fa-star-o\" iconcolor=\"\" circle=\"\" circlecolor=\"\" size=\"13px\" class=\"\" id=\"\"]\r\n[li_item icon=\"\"]Check-in Time is from 14h00 to 18h00 (Late arrivals must be arranged before hand).[/li_item]\r\n[li_item icon=\"\"]Check-out Time is before 10h00.[/li_item]\r\n[/checklist]</span>[/fusion_text][/two_third][one_sixth last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][/one_sixth][one_sixth last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][/one_sixth][two_third last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][fusion_text]\r\n<h3 style=\"text-align: justify;\">Payment Terms</h3>\r\n<p style=\"text-align: justify;\"><span style=\"font-size: 12pt;\">[checklist icon=\"fa-star-o\" iconcolor=\"\" circle=\"\" circlecolor=\"\" size=\"13px\" class=\"\" id=\"\"]\r\n[li_item icon=\"\"]Rates are inclusive of <strong>14%</strong> VAT.[/li_item]\r\n[li_item icon=\"\"]Payment must be made via <strong>Bank Transfer</strong>, alternatively, <strong>Cash</strong> may be accepted by prior arrangement.[/li_item]\r\n[li_item icon=\"\"]We no longer accept Cheques.[/li_item]\r\n[li_item icon=\"\"]All accommodation must be settled either before or on arrival.[/li_item]\r\n[li_item icon=\"\"]No bookings are guaranteed until your reservation is confirmed, having paid at least a <strong>50% deposit</strong>.[/li_item]\r\n[/checklist]</span></p>\r\n[/fusion_text][/two_third][one_sixth last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][/one_sixth][one_sixth last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][/one_sixth][two_third last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][fusion_text]\r\n<h3 style=\"text-align: justify;\">Refunds &amp; Cancelation Terms</h3>\r\n<p style=\"text-align: justify;\"><span style=\"font-size: 12pt;\">[checklist icon=\"fa-star-o\" iconcolor=\"\" circle=\"\" circlecolor=\"\" size=\"13px\" class=\"\" id=\"\"]\r\n[li_item icon=\"\"]Guests are liable for the tariff of the full period booked.[/li_item]\r\n[li_item icon=\"\"]No refunds will be given for early departures / late arrivals, or due to weather conditions / power outages<span style=\"text-align: justify;\">.</span>[/li_item]\r\n[li_item icon=\"\"]<span style=\"text-align: justify;\">Cancellation of any booking must be done via email.</span>[/li_item]\r\n[li_item icon=\"\"]<span style=\"text-align: justify;\">If you cancel your reservation 15 days and more, </span><span style=\"text-align: justify;\">before your arrival date, your deposit will be </span><span style=\"text-align: justify;\">r</span><span style=\"text-align: justify;\">efund</span><span style=\"text-align: justify;\">ed</span><span style=\"text-align: justify;\"> less an administration fee of </span>15%.[/li_item]\r\n[li_item icon=\"\"]<span style=\"text-align: justify;\">If you cancel your reservation 14 days and less, before your arrival date, your deposit will become </span>non-refundable.[/li_item]\r\n[li_item icon=\"\"]<span style=\"text-align: justify;\">Payments are not refundable for reservations not cancelled and not taken up.</span>[/li_item]\r\n[/checklist]</span></p>\r\n[/fusion_text][/two_third][one_sixth last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][/one_sixth][one_sixth last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][/one_sixth][two_third last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][fusion_text]\r\n<h3><span style=\"font-size: 12pt;\">General Terms</span></h3>\r\n<span style=\"font-size: 12pt;\">[checklist icon=\"fa-star-o\" iconcolor=\"\" circle=\"\" circlecolor=\"\" size=\"13px\" class=\"\" id=\"\"]\r\n[li_item icon=\"\"]A reservation may not be transferred.[/li_item]\r\n[li_item icon=\"\"]Bookings are for holiday purposes only and cannot give rise to a tenancy.[/li_item]\r\n[li_item icon=\"\"]Persons occupying the lodge may not exceed the number of persons indicated upon booking.[/li_item]\r\n[li_item icon=\"\"]During nights the all doors must be locked. Please remember to lock the door behind you and to remove the key.[/li_item]\r\n[li_item icon=\"\"]Please leave the Lodge reasonable tidy and clean after use.[/li_item]\r\n[li_item icon=\"\"]Out of respect for all guests, and the fact that we are in a conservancy, noise must be kept down to a comfortable level especially between the hours 22h00 to 08h00.[/li_item]\r\n[li_item icon=\"\"]Please keep furniture, fixtures and fittings in the same state of repair and condition as at the beginning of your stay. In the event of any damage to furniture, fixtures or fittings, you may be held liable for the replacement value or repair costs. This includes damage to the pool area.[/li_item]\r\n[li_item icon=\"\"]The use of open fires and the burning of any unprotected candles or fuel burning lanterns, in or around the Lodge, will not be permitted.[/li_item]\r\n[li_item icon=\"\"]We operate a non-smoking policy throughout the Lodge. You are welcome to smoke outside the house, where ashtrays are provided.[/li_item]\r\n[li_item icon=\"\"]No pets / animals are allowed on the premises.[/li_item]\r\n[li_item icon=\"\"]The use or sale of any illegal substance in the Lodge or on surrounding property is not permissible.[/li_item]\r\n[li_item icon=\"\"]<span style=\"text-align: justify;\">Right of admission is reserved.</span>[/li_item]\r\n[li_item icon=\"\"]We reserve the right to eject a guest/guests from the Lodge if they are not conducting themselves in an appropriate and/or acceptable manner to the building and/or other residents or staff.[/li_item]\r\n[li_item icon=\"\"]Swimming Pool - The premises contains an unsupervised, open pool which may be used at the guests\' own risk.[/li_item]</span>\r\n<span style=\"font-size: 12pt;\"> [/checklist]</span>[/fusion_text][/two_third][one_sixth last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][/one_sixth]', 'T&Cs', '', 'inherit', 'closed', 'closed', '', '984-revision-v1', '', '', '2016-10-13 10:47:21', '2016-10-13 08:47:21', '', 984, 'http://msla.co.za/lodge/984-revision-v1/', 0, 'revision', '', 0),
(1266, 1, '2016-10-13 11:10:30', '2016-10-13 09:10:30', '[fullwidth background_color=\"\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding_top=\"20\" padding_bottom=\"20\" padding_left=\"0\" padding_right=\"0\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][title size=\"1\" content_align=\"left\" style_type=\"default\" sep_color=\"\" class=\"\" id=\"\"]2016 Rates[/title][/fullwidth][fusion_text]\r\n<table style=\"width: 100%;\" cellspacing=\"10\" cellpadding=\"5\">\r\n<tbody>\r\n<tr>\r\n<td colspan=\"2\"><span style=\"font-size: 10pt;\">ALL PRICES INCLUDE VAT<strong> </strong></span></td>\r\n</tr>\r\n<tr>\r\n<td colspan=\"2\"><span style=\"font-size: 12pt;\"><strong>Self-Catering / Self-Servicing Accommodation</strong></span></td>\r\n</tr>\r\n<tr>\r\n<td><span style=\"font-size: 12pt;\">Accommodation 1-5 persons (first 5)</span></td>\r\n<td><span style=\"font-size: 12pt;\"><strong>*R 580</strong> per person per night</span></td>\r\n</tr>\r\n<tr>\r\n<td><span style=\"font-size: 12pt;\">Accommodation 6-10 persons </span></td>\r\n<td><span style=\"font-size: 12pt;\"><strong>*R 440</strong> per person per night</span></td>\r\n</tr>\r\n<tr>\r\n<td><span style=\"font-size: 12pt;\">To qualify for a 15% discount on accommodation</span></td>\r\n<td><span style=\"font-size: 12pt;\">a) Book directly through this site </span></td>\r\n</tr>\r\n<tr>\r\n<td><span style=\"font-size: 12pt;\"> </span></td>\r\n<td><span style=\"font-size: 12pt;\">b) Pay 100% deposit</span></td>\r\n</tr>\r\n<tr>\r\n<td><strong><span style=\"font-size: 12pt;\">Servicing Options</span></strong></td>\r\n<td><span style=\"font-size: 12pt;\"><strong> </strong></span></td>\r\n</tr>\r\n<tr>\r\n<td><span style=\"font-size: 12pt;\">Lodge Only Servicing (Optional) </span></td>\r\n<td><span style=\"font-size: 12pt;\"><strong>R25</strong> per person per day - Max <span style=\"font-size: 12pt;\"><strong>R 150 </strong>per day</span></span></td>\r\n</tr>\r\n<tr>\r\n<td><span style=\"font-size: 12pt;\">Lodge &amp; Room Servicing (Optional) </span></td>\r\n<td><span style=\"font-size: 12pt;\"><strong>R45</strong> per person per day - Max <span style=\"font-size: 12pt;\"><strong>R 270 </strong>per day</span></span></td>\r\n</tr>\r\n<tr>\r\n<td><span style=\"font-size: 12pt;\"> </span></td>\r\n<td><span style=\"font-size: 12pt;\"><strong> </strong></span></td>\r\n</tr>\r\n<tr>\r\n<td colspan=\"2\"><span style=\"font-size: 12pt;\"><span style=\"font-size: 12pt;\"><strong>Catering Options</strong></span> </span><span style=\"font-size: 12pt;\"><strong> </strong></span></td>\r\n</tr>\r\n<tr>\r\n<td><span style=\"font-size: 12pt;\"> <span style=\"font-size: 12pt;\">Breakfast (Muesli/Cereal, Yogurt &amp; Toast)</span></span></td>\r\n<td><span style=\"font-size: 12pt;\"><strong> </strong><span style=\"font-size: 12pt;\"><strong>R  55</strong> per person</span></span></td>\r\n</tr>\r\n<tr>\r\n<td><span style=\"font-size: 12pt;\"> <span style=\"font-size: 12pt;\">Breakfast (Full Hot English &amp; Toast)</span></span></td>\r\n<td><span style=\"font-size: 12pt;\"><strong> </strong><span style=\"font-size: 12pt;\"><strong>R  75</strong> per person</span></span></td>\r\n</tr>\r\n<tr>\r\n<td><span style=\"font-size: 12pt;\"> <span style=\"font-size: 12pt;\">Light Lunch</span></span></td>\r\n<td><span style=\"font-size: 12pt;\">From <span style=\"font-size: 12pt;\"><strong>R120 </strong>per person</span></span></td>\r\n</tr>\r\n<tr>\r\n<td><span style=\"font-size: 12pt;\"> <span style=\"font-size: 12pt;\">Dinners</span></span></td>\r\n<td><span style=\"font-size: 12pt;\">From <span style=\"font-size: 12pt;\"><strong>R 180 </strong>per person</span></span></td>\r\n</tr>\r\n<tr>\r\n<td><span style=\"font-size: 12pt;\"> </span></td>\r\n<td><span style=\"font-size: 12pt;\"><strong> </strong></span></td>\r\n</tr>\r\n<tr>\r\n<td><strong><span style=\"font-size: 12pt;\">Others</span></strong></td>\r\n<td><span style=\"font-size: 12pt;\"><strong> </strong></span></td>\r\n</tr>\r\n<tr>\r\n<td><span style=\"font-size: 12pt;\">Gate Remote</span></td>\r\n<td><span style=\"font-size: 12pt;\"><strong>R 200 </strong>deposit</span></td>\r\n</tr>\r\n<tr>\r\n<td><span style=\"font-size: 12pt;\">Gas Braai</span></td>\r\n<td><span style=\"font-size: 12pt;\"><strong>R 120 </strong>per day</span></td>\r\n</tr>\r\n<tr>\r\n<td><span style=\"font-size: 12pt;\">Day Visitors / Guests</span></td>\r\n<td><span style=\"font-size: 12pt;\"><strong>R 50 </strong>per person per day</span></td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n\r\n<hr />\r\n\r\n[/fusion_text][modal name=\"rates\" title=\"Rates &amp; Tariffs\" size=\"large\" background=\"\" border_color=\"\" show_footer=\"yes\" class=\"\" id=\"\"]\r\n<table style=\"width: 100%;\" cellspacing=\"10\" cellpadding=\"5\">\r\n<tbody>\r\n<tr>\r\n<td colspan=\"2\"><span style=\"font-size: 10pt;\">ALL PRICES INCLUDE VAT </span></td>\r\n</tr>\r\n<tr>\r\n<td colspan=\"2\"><span style=\"font-size: 12pt;\"><strong>Self-Catering / Self-Servicing Accommodation</strong></span></td>\r\n</tr>\r\n<tr>\r\n<td><span style=\"font-size: 12pt;\">Full House - Max 10 persons per lodge</span></td>\r\n<td><span style=\"font-size: 12pt;\"><strong>R3250</strong> per night (R325 per person)</span></td>\r\n</tr>\r\n<tr>\r\n<td><span style=\"font-size: 12pt;\">Single - Max 1 person per room</span></td>\r\n<td><span style=\"font-size: 12pt;\"><strong>R 650</strong> per person per night</span></td>\r\n</tr>\r\n<tr>\r\n<td><span style=\"font-size: 12pt;\">Sharing - Max 2 persons per room</span></td>\r\n<td><span style=\"font-size: 12pt;\"><strong>R 495</strong> per person per night</span></td>\r\n</tr>\r\n<tr>\r\n<td></td>\r\n<td></td>\r\n</tr>\r\n<tr>\r\n<td><strong><span style=\"font-size: 12pt;\">Servicing Options</span></strong></td>\r\n<td></td>\r\n</tr>\r\n<tr>\r\n<td><span style=\"font-size: 12pt;\">Lodge Only Servicing (Optional) </span></td>\r\n<td><span style=\"font-size: 12pt;\"><strong>R30</strong> per person per day - Max <span style=\"font-size: 12pt;\"><strong>R 150 </strong>per day</span></span></td>\r\n</tr>\r\n<tr>\r\n<td><span style=\"font-size: 12pt;\">Lodge &amp; Room Servicing (Optional) </span></td>\r\n<td><span style=\"font-size: 12pt;\"><strong>R50</strong> per person per day - Max <span style=\"font-size: 12pt;\"><strong>R 250 </strong>per day</span></span></td>\r\n</tr>\r\n<tr>\r\n<td></td>\r\n<td></td>\r\n</tr>\r\n<tr>\r\n<td colspan=\"2\"><span style=\"font-size: 12pt;\"><span style=\"font-size: 12pt;\"><strong>Catering Options</strong></span> </span></td>\r\n</tr>\r\n<tr>\r\n<td><span style=\"font-size: 12pt;\"> <span style=\"font-size: 12pt;\">Breakfast (Continental)</span></span></td>\r\n<td><span style=\"font-size: 12pt;\"> <span style=\"font-size: 12pt;\"><strong>R 55</strong> per person</span></span></td>\r\n</tr>\r\n<tr>\r\n<td><span style=\"font-size: 12pt;\"> <span style=\"font-size: 12pt;\">Breakfast (Full English)</span></span></td>\r\n<td><span style=\"font-size: 12pt;\"> <span style=\"font-size: 12pt;\"><strong>R 95</strong> per person</span></span></td>\r\n</tr>\r\n<tr>\r\n<td><span style=\"font-size: 12pt;\"> <span style=\"font-size: 12pt;\">Light Lunch</span></span></td>\r\n<td><span style=\"font-size: 12pt;\">From <span style=\"font-size: 12pt;\"><strong>R 95 </strong>per person</span></span></td>\r\n</tr>\r\n<tr>\r\n<td><span style=\"font-size: 12pt;\"> <span style=\"font-size: 12pt;\">Dinners</span></span></td>\r\n<td><span style=\"font-size: 12pt;\">From <span style=\"font-size: 12pt;\"><strong>R 150 </strong>per person</span></span></td>\r\n</tr>\r\n<tr>\r\n<td></td>\r\n<td></td>\r\n</tr>\r\n<tr>\r\n<td><strong><span style=\"font-size: 12pt;\">Others</span></strong></td>\r\n<td></td>\r\n</tr>\r\n<tr>\r\n<td><span style=\"font-size: 12pt;\">Gate Remote</span></td>\r\n<td><span style=\"font-size: 12pt;\"><strong>R 200 </strong>deposit</span></td>\r\n</tr>\r\n<tr>\r\n<td><span style=\"font-size: 12pt;\">Gas Braai</span></td>\r\n<td><span style=\"font-size: 12pt;\"><strong>R 120 </strong>per day</span></td>\r\n</tr>\r\n<tr>\r\n<td><span style=\"font-size: 12pt;\">Day Visitors / Guests</span></td>\r\n<td><span style=\"font-size: 12pt;\"><strong>R 35 </strong>per person per day</span></td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n\r\n<hr />\r\n\r\n[/modal][button link=\"\" color=\"default\" size=\"\"  type=\"\" shape=\"\" target=\"_self\" title=\"\" gradient_colors=\"|\" gradient_hover_colors=\"|\" accent_color=\"\" accent_hover_color=\"\" bevel_color=\"\" border_width=\"1px\" icon=\"\" icon_position=\"left\" icon_divider=\"no\" modal=\"rates\" animation_type=\"0\" animation_direction=\"left\" animation_speed=\"1\" alignment=\"\" class=\"\" id=\"\"]Click here![/button]', 'Rates', '', 'inherit', 'closed', 'closed', '', '1121-revision-v1', '', '', '2016-10-13 11:10:30', '2016-10-13 09:10:30', '', 1121, 'http://msla.co.za/lodge/1121-revision-v1/', 0, 'revision', '', 0),
(1267, 1, '2016-10-13 11:11:50', '2016-10-13 09:11:50', '[fullwidth background_color=\"\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding_top=\"20\" padding_bottom=\"20\" padding_left=\"0\" padding_right=\"0\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][title size=\"1\" content_align=\"right\" style_type=\"default\" sep_color=\"\" class=\"\" id=\"\"]Rates & Tariffs[/title][/fullwidth][fusion_text]\r\n<table style=\"width: 100%;\" cellspacing=\"10\" cellpadding=\"5\">\r\n<tbody>\r\n<tr>\r\n<td colspan=\"2\"><span style=\"font-size: 10pt;\">ALL PRICES INCLUDE VAT<strong> </strong></span></td>\r\n</tr>\r\n<tr>\r\n<td colspan=\"2\"><span style=\"font-size: 12pt;\"><strong>Self-Catering / Self-Servicing Accommodation</strong></span></td>\r\n</tr>\r\n<tr>\r\n<td><span style=\"font-size: 12pt;\">Accommodation 1-5 persons (first 5)</span></td>\r\n<td><span style=\"font-size: 12pt;\"><strong>*R 580</strong> per person per night</span></td>\r\n</tr>\r\n<tr>\r\n<td><span style=\"font-size: 12pt;\">Accommodation 6-10 persons </span></td>\r\n<td><span style=\"font-size: 12pt;\"><strong>*R 440</strong> per person per night</span></td>\r\n</tr>\r\n<tr>\r\n<td><span style=\"font-size: 12pt;\">To qualify for a 15% discount on accommodation</span></td>\r\n<td><span style=\"font-size: 12pt;\">a) Book directly through this site </span></td>\r\n</tr>\r\n<tr>\r\n<td><span style=\"font-size: 12pt;\"> </span></td>\r\n<td><span style=\"font-size: 12pt;\">b) Pay 100% deposit</span></td>\r\n</tr>\r\n<tr>\r\n<td><strong><span style=\"font-size: 12pt;\">Servicing Options</span></strong></td>\r\n<td><span style=\"font-size: 12pt;\"><strong> </strong></span></td>\r\n</tr>\r\n<tr>\r\n<td><span style=\"font-size: 12pt;\">Lodge Only Servicing (Optional) </span></td>\r\n<td><span style=\"font-size: 12pt;\"><strong>R25</strong> per person per day - Max <span style=\"font-size: 12pt;\"><strong>R 150 </strong>per day</span></span></td>\r\n</tr>\r\n<tr>\r\n<td><span style=\"font-size: 12pt;\">Lodge &amp; Room Servicing (Optional) </span></td>\r\n<td><span style=\"font-size: 12pt;\"><strong>R45</strong> per person per day - Max <span style=\"font-size: 12pt;\"><strong>R 270 </strong>per day</span></span></td>\r\n</tr>\r\n<tr>\r\n<td><span style=\"font-size: 12pt;\"> </span></td>\r\n<td><span style=\"font-size: 12pt;\"><strong> </strong></span></td>\r\n</tr>\r\n<tr>\r\n<td colspan=\"2\"><span style=\"font-size: 12pt;\"><span style=\"font-size: 12pt;\"><strong>Catering Options</strong></span> </span><span style=\"font-size: 12pt;\"><strong> </strong></span></td>\r\n</tr>\r\n<tr>\r\n<td><span style=\"font-size: 12pt;\"> <span style=\"font-size: 12pt;\">Breakfast (Muesli/Cereal, Yogurt &amp; Toast)</span></span></td>\r\n<td><span style=\"font-size: 12pt;\"><strong> </strong><span style=\"font-size: 12pt;\"><strong>R  55</strong> per person</span></span></td>\r\n</tr>\r\n<tr>\r\n<td><span style=\"font-size: 12pt;\"> <span style=\"font-size: 12pt;\">Breakfast (Full Hot English &amp; Toast)</span></span></td>\r\n<td><span style=\"font-size: 12pt;\"><strong> </strong><span style=\"font-size: 12pt;\"><strong>R  75</strong> per person</span></span></td>\r\n</tr>\r\n<tr>\r\n<td><span style=\"font-size: 12pt;\"> <span style=\"font-size: 12pt;\">Light Lunch</span></span></td>\r\n<td><span style=\"font-size: 12pt;\">From <span style=\"font-size: 12pt;\"><strong>R120 </strong>per person</span></span></td>\r\n</tr>\r\n<tr>\r\n<td><span style=\"font-size: 12pt;\"> <span style=\"font-size: 12pt;\">Dinners</span></span></td>\r\n<td><span style=\"font-size: 12pt;\">From <span style=\"font-size: 12pt;\"><strong>R 180 </strong>per person</span></span></td>\r\n</tr>\r\n<tr>\r\n<td><span style=\"font-size: 12pt;\"> </span></td>\r\n<td><span style=\"font-size: 12pt;\"><strong> </strong></span></td>\r\n</tr>\r\n<tr>\r\n<td><strong><span style=\"font-size: 12pt;\">Others</span></strong></td>\r\n<td><span style=\"font-size: 12pt;\"><strong> </strong></span></td>\r\n</tr>\r\n<tr>\r\n<td><span style=\"font-size: 12pt;\">Gate Remote</span></td>\r\n<td><span style=\"font-size: 12pt;\"><strong>R 200 </strong>deposit</span></td>\r\n</tr>\r\n<tr>\r\n<td><span style=\"font-size: 12pt;\">Gas Braai</span></td>\r\n<td><span style=\"font-size: 12pt;\"><strong>R 120 </strong>per day</span></td>\r\n</tr>\r\n<tr>\r\n<td><span style=\"font-size: 12pt;\">Day Visitors / Guests</span></td>\r\n<td><span style=\"font-size: 12pt;\"><strong>R 50 </strong>per person per day</span></td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n\r\n<hr />\r\n\r\n[/fusion_text]', 'Rates', '', 'inherit', 'closed', 'closed', '', '1121-revision-v1', '', '', '2016-10-13 11:11:50', '2016-10-13 09:11:50', '', 1121, 'http://msla.co.za/lodge/1121-revision-v1/', 0, 'revision', '', 0);
INSERT INTO `wp_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(1268, 1, '2016-10-13 11:16:01', '2016-10-13 09:16:01', '[fullwidth background_color=\"\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding_top=\"20\" padding_bottom=\"20\" padding_left=\"0\" padding_right=\"0\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][title size=\"1\" content_align=\"right\" style_type=\"default\" sep_color=\"\" class=\"\" id=\"\"]Lodge Facilities &amp; Amenities[/title][/fullwidth][one_sixth last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][/one_sixth][two_third last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][fusion_text]\r\n<h3><span style=\"text-align: justify; line-height: 1.5em; font-family: verdana, geneva; font-size: 18px;\">Rooms</span></h3>\r\n<span style=\"font-size: 12pt;\">[checklist icon=\"fa-star-o\" iconcolor=\"\" circle=\"\" circlecolor=\"\" size=\"13px\" class=\"\" id=\"\"]</span>\r\n<span style=\"font-size: 12pt;\"> [li_item icon=\"\"]All Rooms are en-suite i.e. Hand Basin, Toilet, Shower.[/li_item]\r\n[li_item icon=\"\"]Wall to Wall Carpeting[/li_item]\r\n</span><span style=\"font-size: 12pt;\">[li_item icon=\"\"]Ceiling Fan.[/li_item]\r\n</span><span style=\"font-size: 12pt;\">[li_item icon=\"\"]Wall Heater.[/li_item]\r\n</span><span style=\"font-size: 12pt;\">[li_item icon=\"\"]Electrical Plug Sockets.[/li_item]\r\n</span><span style=\"font-size: 12pt;\">[li_item icon=\"\"]Bedside Lamps.[/li_item]\r\n</span><span style=\"font-size: 12pt;\">[li_item icon=\"\"]Waste Bin[/li_item]</span>\r\n<span style=\"font-size: 12pt;\">[/checklist]</span>[/fusion_text][fusion_text]\r\n<h3><span style=\"text-align: justify; line-height: 1.5em; font-family: verdana, geneva; font-size: 18px;\">Beds</span></h3>\r\n<span style=\"font-size: 12pt;\">[checklist icon=\"fa-star-o\" iconcolor=\"\" circle=\"\" circlecolor=\"\" size=\"13px\" class=\"\" id=\"\"]</span>\r\n<span style=\"font-size: 12pt;\">[li_item icon=\"\"]King or Queen Bed &amp; Mattress Protector.[/li_item]\r\n</span><span style=\"font-size: 12pt;\">[li_item icon=\"\"]Electric Blankets.[/li_item]\r\n[li_item icon=\"\"]100% Cotton Percale Fitted Sheet.[/li_item]\r\n</span><span style=\"font-size: 12pt;\">[li_item icon=\"\"]100% Cotton Percale Flat Sheet.[/li_item]\r\n</span><span style=\"font-size: 12pt;\">[li_item icon=\"\"]2x King Microfibre Pillows, Pillow Protectors &amp; 100% Cotton Percale Pillow Cases.[/li_item]\r\n[li_item icon=\"\"]2x Standard Microfibre Pillows, Pillow Protectors &amp; 100% Cotton Percale Pillow Cases.[/li_item]\r\n</span><span style=\"font-size: 12pt;\">[li_item icon=\"\"]Microfibre Duvet Inner.[/li_item]\r\n</span><span style=\"font-size: 12pt;\">[li_item icon=\"\"]Duvet Cover.[/li_item]\r\n</span><span style=\"font-size: 12pt;\">[li_item icon=\"\"]A Bed Blanket.[/li_item]\r\n</span><span style=\"font-size: 12pt;\">[/checklist]</span>[/fusion_text][fusion_text]\r\n<h3><span style=\"text-align: justify; line-height: 1.5em; font-family: verdana, geneva; font-size: 18px;\">Kitchen</span></h3>\r\n<span style=\"font-size: 12pt;\">[checklist icon=\"fa-star-o\" iconcolor=\"\" circle=\"\" circlecolor=\"\" size=\"13px\" class=\"\" id=\"\"]</span>\r\n<span style=\"font-size: 12pt;\"> [li_item icon=\"\"]Fridge &amp; Freezer Unit.[/li_item]\r\n</span><span style=\"font-size: 12pt;\">[li_item icon=\"\"]Microwave.[/li_item]\r\n</span><span style=\"font-size: 12pt;\">[li_item icon=\"\"]...[/li_item]\r\n</span><span style=\"font-size: 12pt;\">[li_item icon=\"\"]Toaster.[/li_item]\r\n</span><span style=\"font-size: 12pt;\">[li_item icon=\"\"]Iron &amp; Ironing Board.[/li_item]\r\n</span><span style=\"font-size: 12pt;\">[li_item icon=\"\"]Kettle &amp; Urn.[/li_item]\r\n</span><span style=\"font-size: 12pt;\">[li_item icon=\"\"]Gas Stove &amp; Oven.[/li_item]\r\n</span><span style=\"font-size: 12pt;\">[li_item icon=\"\"]Coffee Peculator.[/li_item]\r\n</span><span style=\"font-size: 12pt;\">[li_item icon=\"\"]Glasses.[/li_item]\r\n</span><span style=\"font-size: 12pt;\">[li_item icon=\"\"]Pot &amp; Pans.[/li_item]\r\n</span><span style=\"font-size: 12pt;\">[li_item icon=\"\"]Crockery &amp; Cutlery.[/li_item]\r\n</span><span style=\"font-size: 12pt;\">[li_item icon=\"\"]Large Gardens.[/li_item]\r\n</span><span style=\"font-size: 12pt;\">[li_item icon=\"\"]...[/li_item]</span>\r\n<span style=\"font-size: 12pt;\"> [/checklist]</span>[/fusion_text][/two_third][one_sixth last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][/one_sixth][one_sixth last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][/one_sixth][two_third last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][fusion_text]<h3><span style=\"line-height: 1.5em; font-family: verdana, geneva; font-size: 18px;\">PLEASE NOTE!</span></h3>\r\n<span style=\"font-size: 12pt;\">[checklist icon=\"fa-star-o\" iconcolor=\"\" circle=\"\" circlecolor=\"\" size=\"13px\" class=\"\" id=\"\"]</span>\r\n<span style=\"font-size: 12pt;\">[li_item icon=\"\"]When you book into the lodge it is exclusively yours. i.e. We don\'t book out the other rooms unless we have cleared it with you.[/li_item]\r\n</span><span style=\"font-size: 12pt;\">[li_item icon=\"\"]The lodge and rooms are not serviced. Lodge and/or room Cleaning Services are available as optional extras.[/li_item]\r\n</span><span style=\"font-size: 12pt;\">[li_item icon=\"\"]No Laundry Service.[/li_item]\r\n</span><span style=\"font-size: 12pt;\">[li_item icon=\"\"]No Pets.[/li_item]\r\n</span><span style=\"font-size: 12pt;\">[li_item icon=\"\"]No functions, parties or extra guests allowed unless by prior arrangement and will be at the owners discretion due to conservancy rules &amp; noise restrictions.[/li_item]</span>\r\n<span style=\"font-size: 12pt;\">[/checklist]</span>[/fusion_text][/two_third][one_sixth last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][/one_sixth]', 'Facilities', '', 'inherit', 'closed', 'closed', '', '998-revision-v1', '', '', '2016-10-13 11:16:01', '2016-10-13 09:16:01', '', 998, 'http://msla.co.za/lodge/998-revision-v1/', 0, 'revision', '', 0),
(1269, 1, '2016-10-13 11:19:46', '2016-10-13 09:19:46', '[fullwidth background_color=\"\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding_top=\"20\" padding_bottom=\"20\" padding_left=\"0\" padding_right=\"0\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][title size=\"1\" content_align=\"right\" style_type=\"default\" sep_color=\"\" class=\"\" id=\"\"]Lodge Facilities &amp; Amenities[/title][/fullwidth][one_sixth last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][/one_sixth][two_third last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][fusion_text]\r\n<h3><span style=\"text-align: justify; line-height: 1.5em; font-family: verdana, geneva; font-size: 18px;\">Rooms</span></h3>\r\n<span style=\"font-size: 12pt;\">[checklist icon=\"fa-star-o\" iconcolor=\"\" circle=\"\" circlecolor=\"\" size=\"13px\" class=\"\" id=\"\"]</span>\r\n<span style=\"font-size: 12pt;\"> [li_item icon=\"\"]All Rooms are en-suite i.e. Hand Basin, Toilet, Shower.[/li_item]\r\n[li_item icon=\"\"]Wall to Wall Carpeting[/li_item]\r\n</span><span style=\"font-size: 12pt;\">[li_item icon=\"\"]Ceiling Fan.[/li_item]\r\n</span><span style=\"font-size: 12pt;\">[li_item icon=\"\"]Wall Heater.[/li_item]\r\n</span><span style=\"font-size: 12pt;\">[li_item icon=\"\"]Electrical Plug Sockets.[/li_item]\r\n</span><span style=\"font-size: 12pt;\">[li_item icon=\"\"]Bedside Lamps.[/li_item]\r\n</span><span style=\"font-size: 12pt;\">[li_item icon=\"\"]Waste Bin[/li_item]</span>\r\n<span style=\"font-size: 12pt;\">[/checklist]</span>[/fusion_text][fusion_text]\r\n<h3><span style=\"text-align: justify; line-height: 1.5em; font-family: verdana, geneva; font-size: 18px;\">Beds</span></h3>\r\n<span style=\"font-size: 12pt;\">[checklist icon=\"fa-star-o\" iconcolor=\"\" circle=\"\" circlecolor=\"\" size=\"13px\" class=\"\" id=\"\"]</span>\r\n<span style=\"font-size: 12pt;\">[li_item icon=\"\"]King or Queen Bed &amp; Mattress Protector.[/li_item]\r\n</span><span style=\"font-size: 12pt;\">[li_item icon=\"\"]Electric Blankets.[/li_item]\r\n[li_item icon=\"\"]100% Cotton Percale Fitted Sheet.[/li_item]\r\n</span><span style=\"font-size: 12pt;\">[li_item icon=\"\"]100% Cotton Percale Flat Sheet.[/li_item]\r\n</span><span style=\"font-size: 12pt;\">[li_item icon=\"\"]2x King Microfibre Pillows, Pillow Protectors &amp; 100% Cotton Percale Pillow Cases.[/li_item]\r\n[li_item icon=\"\"]2x Standard Microfibre Pillows, Pillow Protectors &amp; 100% Cotton Percale Pillow Cases.[/li_item]\r\n</span><span style=\"font-size: 12pt;\">[li_item icon=\"\"]Microfibre Duvet Inner.[/li_item]\r\n</span><span style=\"font-size: 12pt;\">[li_item icon=\"\"]Duvet Cover.[/li_item]\r\n</span><span style=\"font-size: 12pt;\">[li_item icon=\"\"]A Bed Blanket.[/li_item]\r\n</span><span style=\"font-size: 12pt;\">[/checklist]</span>[/fusion_text][fusion_text]\r\n<h3><span style=\"text-align: justify; line-height: 1.5em; font-family: verdana, geneva; font-size: 18px;\">Kitchen</span></h3>\r\n<span style=\"font-size: 12pt;\">[checklist icon=\"fa-star-o\" iconcolor=\"\" circle=\"\" circlecolor=\"\" size=\"13px\" class=\"\" id=\"\"]</span>\r\n<span style=\"font-size: 12pt;\"> [li_item icon=\"\"]Fridge &amp; Freezer Unit.[/li_item]\r\n</span><span style=\"font-size: 12pt;\">[li_item icon=\"\"]Microwave.[/li_item]\r\n</span><span style=\"font-size: 12pt;\">[li_item icon=\"\"]...[/li_item]\r\n</span><span style=\"font-size: 12pt;\">[li_item icon=\"\"]Toaster.[/li_item]\r\n</span><span style=\"font-size: 12pt;\">[li_item icon=\"\"]Iron &amp; Ironing Board.[/li_item]\r\n</span><span style=\"font-size: 12pt;\">[li_item icon=\"\"]Kettle &amp; Urn.[/li_item]\r\n</span><span style=\"font-size: 12pt;\">[li_item icon=\"\"]Gas Stove &amp; Oven.[/li_item]\r\n</span><span style=\"font-size: 12pt;\">[li_item icon=\"\"]Coffee Peculator.[/li_item]\r\n</span><span style=\"font-size: 12pt;\">[li_item icon=\"\"]Glasses.[/li_item]\r\n</span><span style=\"font-size: 12pt;\">[li_item icon=\"\"]Pot &amp; Pans.[/li_item]\r\n</span><span style=\"font-size: 12pt;\">[li_item icon=\"\"]Crockery &amp; Cutlery.[/li_item]\r\n</span><span style=\"font-size: 12pt;\">[li_item icon=\"\"]Large Gardens.[/li_item]\r\n</span><span style=\"font-size: 12pt;\">[li_item icon=\"\"]...[/li_item]</span>\r\n<span style=\"font-size: 12pt;\"> [/checklist]</span>[/fusion_text][/two_third][one_sixth last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][/one_sixth][one_sixth last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][/one_sixth][two_third last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][fusion_text]\r\n<h3><span style=\"line-height: 1.5em; font-family: verdana, geneva; font-size: 18px;\">PLEASE NOTE!</span></h3>\r\n<span style=\"font-size: 12pt;\">[checklist icon=\"fa-star-o\" iconcolor=\"\" circle=\"\" circlecolor=\"\" size=\"13px\" class=\"\" id=\"\"]</span>\r\n<span style=\"font-size: 12pt;\">[li_item icon=\"\"]When you book into the lodge it is exclusively yours. i.e. We don\'t book out the other rooms unless we have cleared it with you.[/li_item]\r\n</span><span style=\"font-size: 12pt;\">[li_item icon=\"\"]The lodge and bedrooms are not serviced. Cleaning Services are available as optional extras.[/li_item]\r\n</span><span style=\"font-size: 12pt;\">[li_item icon=\"\"]No Laundry Service.[/li_item]\r\n</span><span style=\"font-size: 12pt;\">[li_item icon=\"\"]No Pets.[/li_item]\r\n</span><span style=\"font-size: 12pt;\">[li_item icon=\"\"]No functions, parties or extra guests allowed unless by prior arrangement and will be at the owners discretion due to conservancy rules &amp; noise restrictions.[/li_item]</span>\r\n<span style=\"font-size: 12pt;\">[/checklist]</span>[/fusion_text][/two_third][one_sixth last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][/one_sixth]', 'Facilities', '', 'inherit', 'closed', 'closed', '', '998-revision-v1', '', '', '2016-10-13 11:19:46', '2016-10-13 09:19:46', '', 998, 'http://msla.co.za/lodge/998-revision-v1/', 0, 'revision', '', 0),
(1270, 1, '2016-10-13 12:07:20', '2016-10-13 10:07:20', '[fullwidth background_color=\"\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding_top=\"20\" padding_bottom=\"20\" padding_left=\"0\" padding_right=\"0\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][title size=\"1\" content_align=\"right\" style_type=\"default\" sep_color=\"\" class=\"\" id=\"\"]Rates & Tariffs[/title][/fullwidth][fusion_text]<table style=\"width: 100%;\" cellspacing=\"10\" cellpadding=\"5\">\r\n<tbody>\r\n<tr>\r\n<td colspan=\"2\"><span style=\"font-size: 10pt;\">ALL PRICES INCLUDE VAT<strong> </strong></span></td>\r\n</tr>\r\n<tr>\r\n<td colspan=\"2\"><span style=\"font-size: 12pt;\"><strong>Self-Catering / Self-Servicing Accommodation</strong></span></td>\r\n</tr>\r\n<tr>\r\n<td><span style=\"font-size: 12pt;\">Accommodation 1-5 persons (first 5)</span></td>\r\n<td><span style=\"font-size: 12pt;\"><strong>*R 580</strong> per person per night</span></td>\r\n</tr>\r\n<tr>\r\n<td><span style=\"font-size: 12pt;\">Accommodation 6-10 persons </span></td>\r\n<td><span style=\"font-size: 12pt;\"><strong>*R 440</strong> per person per night</span></td>\r\n</tr>\r\n<tr>\r\n<td><span style=\"font-size: 12pt;\">To qualify for a 15% discount on accommodation</span></td>\r\n<td><span style=\"font-size: 12pt;\">a) Book directly through this site </span></td>\r\n</tr>\r\n<tr>\r\n<td><span style=\"font-size: 12pt;\"> </span></td>\r\n<td><span style=\"font-size: 12pt;\">b) Pay 100% deposit</span></td>\r\n</tr>\r\n<tr>\r\n<td><strong><span style=\"font-size: 12pt;\">Servicing Options</span></strong></td>\r\n<td><span style=\"font-size: 12pt;\"><strong> </strong></span></td>\r\n</tr>\r\n<tr>\r\n<td><span style=\"font-size: 12pt;\">Lodge Only Servicing (Optional) </span></td>\r\n<td><span style=\"font-size: 12pt;\"><strong>R25</strong> per person per day - Max <span style=\"font-size: 12pt;\"><strong>R 150 </strong>per day</span></span></td>\r\n</tr>\r\n<tr>\r\n<td><span style=\"font-size: 12pt;\">Lodge &amp; Room Servicing (Optional) </span></td>\r\n<td><span style=\"font-size: 12pt;\"><strong>R45</strong> per person per day - Max <span style=\"font-size: 12pt;\"><strong>R 270 </strong>per day</span></span></td>\r\n</tr>\r\n<tr>\r\n<td><span style=\"font-size: 12pt;\"> </span></td>\r\n<td><span style=\"font-size: 12pt;\"><strong> </strong></span></td>\r\n</tr>\r\n<tr>\r\n<td colspan=\"2\"><span style=\"font-size: 12pt;\"><span style=\"font-size: 12pt;\"><strong>Catering Options</strong></span> </span><span style=\"font-size: 12pt;\"><strong> </strong></span></td>\r\n</tr>\r\n<tr>\r\n<td><span style=\"font-size: 12pt;\"> <span style=\"font-size: 12pt;\">Breakfast (Muesli/Cereal, Yogurt &amp; Toast)</span></span></td>\r\n<td><span style=\"font-size: 12pt;\"><strong> </strong><span style=\"font-size: 12pt;\"><strong>R  55</strong> per person</span></span></td>\r\n</tr>\r\n<tr>\r\n<td><span style=\"font-size: 12pt;\"> <span style=\"font-size: 12pt;\">Breakfast (Full Hot English &amp; Toast)</span></span></td>\r\n<td><span style=\"font-size: 12pt;\"><strong> </strong><span style=\"font-size: 12pt;\"><strong>R  75</strong> per person</span></span></td>\r\n</tr>\r\n<tr>\r\n<td><span style=\"font-size: 12pt;\"> <span style=\"font-size: 12pt;\">Light Lunch</span></span></td>\r\n<td><span style=\"font-size: 12pt;\">From <span style=\"font-size: 12pt;\"><strong>R120 </strong>per person</span></span></td>\r\n</tr>\r\n<tr>\r\n<td><span style=\"font-size: 12pt;\"> <span style=\"font-size: 12pt;\">Dinners</span></span></td>\r\n<td><span style=\"font-size: 12pt;\">From <span style=\"font-size: 12pt;\"><strong>R 180 </strong>per person</span></span></td>\r\n</tr>\r\n<tr>\r\n<td><span style=\"font-size: 12pt;\"> </span></td>\r\n<td><span style=\"font-size: 12pt;\"><strong> </strong></span></td>\r\n</tr>\r\n<tr>\r\n<td><strong><span style=\"font-size: 12pt;\">Others</span></strong></td>\r\n<td><span style=\"font-size: 12pt;\"><strong> </strong></span></td>\r\n</tr>\r\n<tr>\r\n<td><span style=\"font-size: 12pt;\">Gate Remote</span></td>\r\n<td><span style=\"font-size: 12pt;\"><strong>R 200 </strong>deposit</span></td>\r\n</tr>\r\n<tr>\r\n<td><span style=\"font-size: 12pt;\">Gas Braai</span></td>\r\n<td><span style=\"font-size: 12pt;\"><strong>R 120 </strong>per day</span></td>\r\n</tr>\r\n<tr>\r\n<td><span style=\"font-size: 12pt;\">Day Visitors / Guests</span></td>\r\n<td><span style=\"font-size: 12pt;\"><strong>R 50 </strong>per person per day</span></td>\r\n</tr>\r\n</tbody>\r\n</table>[/fusion_text]', 'Rates', '', 'inherit', 'closed', 'closed', '', '1121-revision-v1', '', '', '2016-10-13 12:07:20', '2016-10-13 10:07:20', '', 1121, 'http://msla.co.za/lodge/1121-revision-v1/', 0, 'revision', '', 0),
(1271, 1, '2016-10-13 12:35:30', '2016-10-13 10:35:30', '<div>\r\n<table class=\" alignleft\" style=\"width: 100%;\" cellspacing=\"0\" cellpadding=\"0\">\r\n<tbody>\r\n<tr style=\"height: 40px;\">\r\n<td style=\"width: 25%; height: 30px; text-align: left; vertical-align: middle;\"><span style=\"color: #99ccff; font-family: arial,helvetica,sans-serif; font-size: 12pt;\"><strong>RESERVATION DETAILS</strong></span></td>\r\n<td style=\"width: 25%; height: 30px; text-align: left; vertical-align: middle;\"><span style=\"color: #99ccff; font-family: arial,helvetica,sans-serif; font-size: 8pt;\"><span style=\"background-color: #0191c8;\">[error error_title=\"Errors found in the form\" error_message=\"There is a problem.\"]</span></span></td>\r\n<td style=\"width: 25%; height: 30px; text-align: left; vertical-align: middle;\"><span style=\"color: #99ccff; font-family: arial,helvetica,sans-serif; font-size: 12pt;\"> <span style=\"font-family: arial,helvetica,sans-serif;\">[[show_price before=\"ESTIMATED PRICE INCL VAT: \"]</span></span></td>\r\n<td style=\"width: 25%; height: 30px; text-align: right; vertical-align: middle;\"><span style=\"color: #99ccff; font-family: arial,helvetica,sans-serif; font-size: 12pt;\"><strong><span style=\"font-family: Arial;\">[hidden resource 854]</span> </strong></span></td>\r\n</tr>\r\n<tr style=\"height: 40px;\">\r\n<td style=\"width: 25%; height: 30px; text-align: left; vertical-align: middle;\"><span style=\"color: #99ccff; font-family: arial,helvetica,sans-serif; font-size: 10pt;\">Arrival Date</span></td>\r\n<td style=\"width: 25%; height: 30px; text-align: left; vertical-align: middle;\"><span style=\"color: #99ccff; font-family: arial,helvetica,sans-serif; font-size: 10pt;\">[date-from value=\"+1\"]</span></td>\r\n<td style=\"width: 25%; height: 30px; text-align: left; vertical-align: middle;\"><span style=\"color: #99ccff; font-family: arial,helvetica,sans-serif; font-size: 10pt;\">Departure Date</span></td>\r\n<td style=\"width: 25%; height: 30px; text-align: left; vertical-align: middle;\"><span style=\"color: #99ccff; font-family: arial,helvetica,sans-serif; font-size: 10pt;\">[date-to value=\"+2\"]</span></td>\r\n</tr>\r\n<tr style=\"height: 40px;\">\r\n<td style=\"width: 25%; height: 30px; text-align: left; vertical-align: middle;\"><span style=\"color: #99ccff; font-family: arial,helvetica,sans-serif; font-size: 10pt;\">Number Of Guests</span></td>\r\n<td style=\"width: 25%; height: 30px; text-align: left; vertical-align: middle;\"><span style=\"color: #99ccff; font-family: arial,helvetica,sans-serif; font-size: 10pt;\">[adults 1 10 value=\"1\"]</span></td>\r\n<td style=\"width: 25%; height: 30px; text-align: left; vertical-align: middle;\"><span style=\"color: #99ccff; font-family: arial,helvetica,sans-serif; font-size: 10pt;\">Children Under 2yrs (Own Bedding)</span></td>\r\n<td style=\"width: 25%; height: 30px; text-align: left; vertical-align: middle;\"><span style=\"color: #99ccff; font-family: arial,helvetica,sans-serif; font-size: 10pt;\">...Stay Free</span></td>\r\n</tr>\r\n<tr style=\"height: 40px;\">\r\n<td style=\"width: 25%; height: 30px; text-align: left; vertical-align: middle;\"><span style=\"color: #99ccff;\"> </span></td>\r\n<td style=\"width: 25%; height: 30px; text-align: left; vertical-align: middle;\"><span style=\"color: #99ccff;\"> </span></td>\r\n<td style=\"width: 25%; height: 30px; text-align: left; vertical-align: middle;\"><span style=\"color: #99ccff;\"> </span></td>\r\n<td style=\"width: 25%; height: 30px; text-align: left; vertical-align: middle;\"><span style=\"color: #99ccff;\"> </span></td>\r\n</tr>\r\n<tr style=\"height: 40px;\">\r\n<td style=\"width: 25%; height: 30px; text-align: left; vertical-align: middle;\"><span style=\"color: #99ccff; font-family: arial,helvetica,sans-serif; font-size: 10pt;\"><span style=\"font-family: arial,helvetica,sans-serif; font-size: 12pt;\"><strong>MEAL OPTIONS</strong></span></span></td>\r\n<td style=\"width: 25%; height: 30px; text-align: left; vertical-align: middle;\"><span style=\"color: #99ccff;\"> </span></td>\r\n<td style=\"width: 25%; height: 30px; text-align: left; vertical-align: middle;\"><span style=\"color: #99ccff; font-family: arial,helvetica,sans-serif; font-size: 10pt;\"> <span style=\"font-family: arial,helvetica,sans-serif; font-size: 12pt;\"><strong>SERVICE OPTIONS</strong></span></span></td>\r\n<td style=\"width: 25%; height: 30px; text-align: left; vertical-align: middle;\"><span style=\"color: #99ccff;\"> </span></td>\r\n</tr>\r\n<tr style=\"height: 40px;\">\r\n<td style=\"width: 25%; height: 30px; text-align: left; vertical-align: middle;\"><span style=\"color: #99ccff; font-family: arial,helvetica,sans-serif; font-size: 10pt;\">Include Morning Breakfast</span></td>\r\n<td style=\"width: 25%; height: 30px; text-align: left; vertical-align: middle;\"><span style=\"color: #99ccff; font-family: arial,helvetica,sans-serif; font-size: 10pt;\">[custom id=\"2\"]</span></td>\r\n<td style=\"width: 25%; height: 30px; text-align: left; vertical-align: middle;\"><span style=\"color: #99ccff; font-family: arial,helvetica,sans-serif; font-size: 10pt;\">Include Cleaning Services for Lodge (excluding room/s)</span></td>\r\n<td style=\"width: 25%; height: 30px; text-align: left; vertical-align: middle;\"><span style=\"color: #99ccff; font-family: arial,helvetica,sans-serif; font-size: 10pt;\">[custom id=\"6\"]</span></td>\r\n</tr>\r\n<tr style=\"height: 40px;\">\r\n<td style=\"width: 25%; height: 30px; text-align: left; vertical-align: middle;\"><span style=\"color: #99ccff; font-family: arial,helvetica,sans-serif; font-size: 12pt;\"><span style=\"font-family: arial,helvetica,sans-serif; font-size: 10pt;\">Include Midday Lunch</span></span></td>\r\n<td style=\"width: 25%; height: 30px; text-align: left; vertical-align: middle;\"><span style=\"color: #99ccff; font-family: arial,helvetica,sans-serif; font-size: 12pt;\"><span style=\"font-family: arial,helvetica,sans-serif; font-size: 10pt;\">[custom id=\"4\"]</span></span></td>\r\n<td style=\"width: 25%; height: 30px; text-align: left; vertical-align: middle;\"><span style=\"color: #99ccff;\"><span style=\"color: #99ccff; font-family: arial,helvetica,sans-serif; font-size: 10pt;\">Include Cleaning Services for Rooms</span></span></td>\r\n<td style=\"width: 25%; height: 30px; text-align: left; vertical-align: middle;\"><span style=\"color: #99ccff;\"><span style=\"color: #99ccff; font-family: arial,helvetica,sans-serif; font-size: 10pt;\">[custom id=\"7\"]</span></span></td>\r\n</tr>\r\n<tr style=\"height: 40px;\">\r\n<td style=\"width: 25%; height: 30px; text-align: left; vertical-align: middle;\"><span style=\"color: #99ccff; font-family: arial,helvetica,sans-serif; font-size: 12pt;\"><span style=\"font-family: arial,helvetica,sans-serif; font-size: 10pt;\">Include Evening Dinner</span></span></td>\r\n<td style=\"width: 25%; height: 30px; text-align: left; vertical-align: middle;\"><span style=\"color: #99ccff; font-family: arial,helvetica,sans-serif; font-size: 12pt;\"><strong><span style=\"font-family: arial,helvetica,sans-serif; font-size: 10pt;\">[custom id=\"5\"]</span></strong></span></td>\r\n<td style=\"width: 25%; height: 30px; text-align: left; vertical-align: middle;\"><span style=\"color: #99ccff;\"> </span></td>\r\n<td style=\"width: 25%; height: 30px; text-align: left; vertical-align: middle;\"><span style=\"color: #99ccff;\"> </span></td>\r\n</tr>\r\n<tr style=\"height: 40px;\">\r\n<td style=\"width: 25%; height: 30px; text-align: left; vertical-align: middle;\" colspan=\"4\"><span style=\"color: #99ccff;\"> </span></td>\r\n</tr>\r\n<tr style=\"height: 40px;\">\r\n<td style=\"width: 25%; height: 30px; text-align: left; vertical-align: middle;\" colspan=\"4\"><span style=\"color: #99ccff; font-family: arial,helvetica,sans-serif; font-size: 12pt;\"><strong>PERSONAL DETAILS</strong></span></td>\r\n</tr>\r\n<tr style=\"height: 40px;\">\r\n<td style=\"width: 25%; height: 30px; text-align: left; vertical-align: middle;\"><span style=\"color: #99ccff; font-family: arial,helvetica,sans-serif; font-size: 10pt;\">First Name</span></td>\r\n<td style=\"width: 25%; height: 30px; text-align: left; vertical-align: middle;\"><span style=\"color: #99ccff; font-family: arial,helvetica,sans-serif; font-size: 10pt;\">[thename]</span></td>\r\n<td style=\"width: 25%; height: 30px; text-align: left; vertical-align: middle;\"><span style=\"color: #99ccff; font-family: arial,helvetica,sans-serif; font-size: 10pt;\">Email Address</span></td>\r\n<td style=\"width: 25%; height: 30px; text-align: left; vertical-align: middle;\"><span style=\"color: #99ccff; font-family: arial,helvetica,sans-serif; font-size: 10pt;\">[email]</span></td>\r\n</tr>\r\n<tr style=\"height: 40px;\">\r\n<td style=\"width: 25%; height: 30px; text-align: left; vertical-align: middle;\"><span style=\"color: #99ccff; font-family: arial,helvetica,sans-serif; font-size: 10pt;\">Surname</span></td>\r\n<td style=\"width: 25%; height: 30px; text-align: left; vertical-align: middle;\"><span style=\"color: #99ccff; font-family: arial,helvetica,sans-serif; font-size: 10pt;\">[thename]</span></td>\r\n<td style=\"width: 25%; height: 30px; text-align: left; vertical-align: middle;\"><span style=\"color: #99ccff; font-family: arial,helvetica,sans-serif; font-size: 10pt;\">Contact Phone</span></td>\r\n<td style=\"width: 25%; height: 30px; text-align: left; vertical-align: middle;\"><span style=\"color: #99ccff; font-family: arial,helvetica,sans-serif; font-size: 10pt;\">[custom text Phone *]</span></td>\r\n</tr>\r\n<tr style=\"height: 40px;\">\r\n<td style=\"width: 25%; height: 30px; text-align: left; vertical-align: middle;\"><span style=\"color: #99ccff; font-family: arial,helvetica,sans-serif; font-size: 10pt;\">Country</span></td>\r\n<td style=\"width: 25%; height: 30px; text-align: left; vertical-align: middle;\"><span style=\"color: #99ccff; font-family: arial,helvetica,sans-serif; font-size: 10pt;\">[country value=\"ZA\"]</span></td>\r\n<td style=\"width: 25%; height: 30px; text-align: left; vertical-align: middle;\"><span style=\"color: #99ccff;\"> </span></td>\r\n<td style=\"width: 25%; height: 30px; text-align: left; vertical-align: middle;\"><span style=\"color: #99ccff;\"> </span></td>\r\n</tr>\r\n<tr style=\"height: 40px;\">\r\n<td style=\"width: 25%; height: 30px; text-align: left; vertical-align: middle;\" rowspan=\"3\"><span style=\"color: #99ccff; font-family: arial,helvetica,sans-serif; font-size: 10pt;\">Comments or Questions!</span></td>\r\n<td style=\"width: 25%; height: 30px; text-align: left; vertical-align: middle;\" rowspan=\"3\"><span style=\"color: #99ccff; font-family: arial,helvetica,sans-serif; font-size: 10pt;\">[custom textarea Message]</span></td>\r\n<td style=\"width: 25%; height: 30px; text-align: left; vertical-align: middle;\"><span style=\"color: #99ccff; font-family: arial,helvetica,sans-serif; font-size: 10pt;\">I accept <span style=\"text-decoration: underline;\"><strong> <a style=\"color: #99ccff; text-decoration: underline;\" href=\"http://msla.co.za/lodge/tcs/\">Terms &amp; Conditions</a></strong></span></span></td>\r\n<td style=\"width: 25%; height: 30px; text-align: left; vertical-align: middle;\"><span style=\"color: #99ccff; font-family: arial,helvetica,sans-serif; font-size: 10pt;\">[custom id=\"1\" title=\"Terms &amp; Conditions\"]</span></td>\r\n</tr>\r\n<tr style=\"height: 40px;\">\r\n<td style=\"width: 25%; height: 30px; text-align: left; vertical-align: middle;\"><span style=\"color: #99ccff; font-family: arial,helvetica,sans-serif; font-size: 10pt;\">Enter Security Code</span></td>\r\n<td style=\"width: 25%; height: 30px; text-align: left; vertical-align: middle;\"><span style=\"color: #99ccff; font-family: arial,helvetica,sans-serif; font-size: 16pt;\">[captcha]</span></td>\r\n</tr>\r\n<tr style=\"height: 40px;\">\r\n<td style=\"width: 240px; text-align: left; vertical-align: middle;\"><span style=\"color: #99ccff;\"> </span></td>\r\n<td style=\"width: 240px; text-align: left; vertical-align: middle;\"><span style=\"color: #99ccff; font-family: arial,helvetica,sans-serif; font-size: 10pt;\">[submit value=\"Submit\"]</span></td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n</div>', 'Form Templet', '', 'inherit', 'closed', 'closed', '', '1072-revision-v1', '', '', '2016-10-13 12:35:30', '2016-10-13 10:35:30', '', 1072, 'http://msla.co.za/lodge/1072-revision-v1/', 0, 'revision', '', 0),
(1272, 1, '2016-10-13 12:46:24', '2016-10-13 10:46:24', '<div>\r\n<table class=\" alignleft\" style=\"width: 100%;\" cellspacing=\"0\" cellpadding=\"0\">\r\n<tbody>\r\n<tr style=\"height: 40px;\">\r\n<td style=\"width: 25%; height: 30px; text-align: left; vertical-align: middle;\"><span style=\"color: #99ccff; font-family: arial,helvetica,sans-serif; font-size: 12pt;\"><strong>RESERVATION DETAILS</strong></span></td>\r\n<td style=\"width: 25%; height: 30px; text-align: left; vertical-align: middle;\"><span style=\"color: #99ccff; font-family: arial,helvetica,sans-serif; font-size: 8pt;\"><span style=\"background-color: #0191c8;\">[error error_title=\"Errors found in the form\" error_message=\"There is a problem.\"]</span></span></td>\r\n<td style=\"width: 25%; height: 30px; text-align: left; vertical-align: middle;\"><span style=\"color: #99ccff; font-family: arial,helvetica,sans-serif; font-size: 12pt;\"> <span style=\"font-family: arial,helvetica,sans-serif;\">[[show_price before=\"ESTIMATED PRICE INCL VAT: \"]</span></span></td>\r\n<td style=\"width: 25%; height: 30px; text-align: right; vertical-align: middle;\"><span style=\"color: #99ccff; font-family: arial,helvetica,sans-serif; font-size: 12pt;\"><strong><span style=\"font-family: Arial;\">[hidden resource 854]</span> </strong></span></td>\r\n</tr>\r\n<tr style=\"height: 40px;\">\r\n<td style=\"width: 25%; height: 30px; text-align: left; vertical-align: middle;\"><span style=\"color: #99ccff; font-family: arial,helvetica,sans-serif; font-size: 10pt;\">Arrival Date</span></td>\r\n<td style=\"width: 25%; height: 30px; text-align: left; vertical-align: middle;\"><span style=\"color: #99ccff; font-family: arial,helvetica,sans-serif; font-size: 10pt;\">[date-from value=\"+1\"]</span></td>\r\n<td style=\"width: 25%; height: 30px; text-align: left; vertical-align: middle;\"><span style=\"color: #99ccff; font-family: arial,helvetica,sans-serif; font-size: 10pt;\">Departure Date</span></td>\r\n<td style=\"width: 25%; height: 30px; text-align: left; vertical-align: middle;\"><span style=\"color: #99ccff; font-family: arial,helvetica,sans-serif; font-size: 10pt;\">[date-to value=\"+2\"]</span></td>\r\n</tr>\r\n<tr style=\"height: 40px;\">\r\n<td style=\"width: 25%; height: 30px; text-align: left; vertical-align: middle;\"><span style=\"color: #99ccff; font-family: arial,helvetica,sans-serif; font-size: 10pt;\">Number Of Guests (excl children under 2yrs</span></td>\r\n<td style=\"width: 25%; height: 30px; text-align: left; vertical-align: middle;\"><span style=\"color: #99ccff; font-family: arial,helvetica,sans-serif; font-size: 10pt;\">[adults 1 10 value=\"1\"]</span></td>\r\n<td style=\"width: 25%; height: 30px; text-align: left; vertical-align: middle;\"><span style=\"color: #99ccff; font-family: arial,helvetica,sans-serif; font-size: 10pt;\">Children Under 2yrs (Own Bedding)</span></td>\r\n<td style=\"width: 25%; height: 30px; text-align: left; vertical-align: middle;\"><span style=\"color: #99ccff; font-family: arial,helvetica,sans-serif; font-size: 10pt;\">...Stay Free</span></td>\r\n</tr>\r\n<tr style=\"height: 40px;\">\r\n<td style=\"width: 25%; height: 30px; text-align: left; vertical-align: middle;\"><span style=\"color: #99ccff;\"> </span></td>\r\n<td style=\"width: 25%; height: 30px; text-align: left; vertical-align: middle;\"><span style=\"color: #99ccff;\"> </span></td>\r\n<td style=\"width: 25%; height: 30px; text-align: left; vertical-align: middle;\"><span style=\"color: #99ccff;\"> </span></td>\r\n<td style=\"width: 25%; height: 30px; text-align: left; vertical-align: middle;\"><span style=\"color: #99ccff;\"> </span></td>\r\n</tr>\r\n<tr style=\"height: 40px;\">\r\n<td style=\"width: 25%; height: 30px; text-align: left; vertical-align: middle;\"><span style=\"color: #99ccff; font-family: arial,helvetica,sans-serif; font-size: 10pt;\"><span style=\"font-family: arial,helvetica,sans-serif; font-size: 12pt;\"><strong>MEAL OPTIONS</strong></span></span></td>\r\n<td style=\"width: 25%; height: 30px; text-align: left; vertical-align: middle;\"><span style=\"color: #99ccff;\"> </span></td>\r\n<td style=\"width: 25%; height: 30px; text-align: left; vertical-align: middle;\"><span style=\"color: #99ccff; font-family: arial,helvetica,sans-serif; font-size: 10pt;\"><span style=\"font-family: arial,helvetica,sans-serif; font-size: 12pt;\"><strong>CLEANING SERVICE OPTIONS</strong></span></span></td>\r\n<td style=\"width: 25%; height: 30px; text-align: left; vertical-align: middle;\"><span style=\"color: #99ccff;\"> </span></td>\r\n</tr>\r\n<tr style=\"height: 40px;\">\r\n<td style=\"width: 25%; height: 30px; text-align: left; vertical-align: middle;\"><span style=\"color: #99ccff; font-family: arial,helvetica,sans-serif; font-size: 10pt;\">Include Morning Breakfast</span></td>\r\n<td style=\"width: 25%; height: 30px; text-align: left; vertical-align: middle;\"><span style=\"color: #99ccff; font-family: arial,helvetica,sans-serif; font-size: 10pt;\">[custom id=\"8\"]</span></td>\r\n<td style=\"width: 25%; height: 30px; text-align: left; vertical-align: middle;\"><span style=\"color: #99ccff; font-family: arial,helvetica,sans-serif; font-size: 10pt;\">Include Services for Lodge (excluding room/s)</span></td>\r\n<td style=\"width: 25%; height: 30px; text-align: left; vertical-align: middle;\"><span style=\"color: #99ccff; font-family: arial,helvetica,sans-serif; font-size: 10pt;\">[custom id=\"6\"]</span></td>\r\n</tr>\r\n<tr style=\"height: 40px;\">\r\n<td style=\"width: 25%; height: 30px; text-align: left; vertical-align: middle;\"><span style=\"color: #99ccff; font-family: arial,helvetica,sans-serif; font-size: 12pt;\"><span style=\"font-family: arial,helvetica,sans-serif; font-size: 10pt;\">Include Evening Dinner</span></span></td>\r\n<td style=\"width: 25%; height: 30px; text-align: left; vertical-align: middle;\"><span style=\"color: #99ccff; font-family: arial,helvetica,sans-serif; font-size: 12pt;\"><span style=\"font-family: arial,helvetica,sans-serif; font-size: 10pt;\">[custom id=\"9\"]</span></span></td>\r\n<td style=\"width: 25%; height: 30px; text-align: left; vertical-align: middle;\"><span style=\"color: #99ccff;\"><span style=\"color: #99ccff; font-family: arial,helvetica,sans-serif; font-size: 10pt;\">Include Services for Rooms</span></span></td>\r\n<td style=\"width: 25%; height: 30px; text-align: left; vertical-align: middle;\"><span style=\"color: #99ccff;\"><span style=\"color: #99ccff; font-family: arial,helvetica,sans-serif; font-size: 10pt;\">[custom id=\"7\"]</span></span></td>\r\n</tr>\r\n<tr style=\"height: 40px;\">\r\n<td style=\"width: 25%; height: 30px; text-align: left; vertical-align: middle;\" colspan=\"4\"><span style=\"color: #99ccff;\"> </span></td>\r\n</tr>\r\n<tr style=\"height: 40px;\">\r\n<td style=\"width: 25%; height: 30px; text-align: left; vertical-align: middle;\" colspan=\"4\"><span style=\"color: #99ccff; font-family: arial,helvetica,sans-serif; font-size: 12pt;\"><strong>PERSONAL DETAILS</strong></span></td>\r\n</tr>\r\n<tr style=\"height: 40px;\">\r\n<td style=\"width: 25%; height: 30px; text-align: left; vertical-align: middle;\"><span style=\"color: #99ccff; font-family: arial,helvetica,sans-serif; font-size: 10pt;\">First Name</span></td>\r\n<td style=\"width: 25%; height: 30px; text-align: left; vertical-align: middle;\"><span style=\"color: #99ccff; font-family: arial,helvetica,sans-serif; font-size: 10pt;\">[thename]</span></td>\r\n<td style=\"width: 25%; height: 30px; text-align: left; vertical-align: middle;\"><span style=\"color: #99ccff; font-family: arial,helvetica,sans-serif; font-size: 10pt;\">Email Address</span></td>\r\n<td style=\"width: 25%; height: 30px; text-align: left; vertical-align: middle;\"><span style=\"color: #99ccff; font-family: arial,helvetica,sans-serif; font-size: 10pt;\">[email]</span></td>\r\n</tr>\r\n<tr style=\"height: 40px;\">\r\n<td style=\"width: 25%; height: 30px; text-align: left; vertical-align: middle;\"><span style=\"color: #99ccff; font-family: arial,helvetica,sans-serif; font-size: 10pt;\">Surname</span></td>\r\n<td style=\"width: 25%; height: 30px; text-align: left; vertical-align: middle;\"><span style=\"color: #99ccff; font-family: arial,helvetica,sans-serif; font-size: 10pt;\">[thename]</span></td>\r\n<td style=\"width: 25%; height: 30px; text-align: left; vertical-align: middle;\"><span style=\"color: #99ccff; font-family: arial,helvetica,sans-serif; font-size: 10pt;\">Contact Phone</span></td>\r\n<td style=\"width: 25%; height: 30px; text-align: left; vertical-align: middle;\"><span style=\"color: #99ccff; font-family: arial,helvetica,sans-serif; font-size: 10pt;\">[custom text Phone *]</span></td>\r\n</tr>\r\n<tr style=\"height: 40px;\">\r\n<td style=\"width: 25%; height: 30px; text-align: left; vertical-align: middle;\"><span style=\"color: #99ccff; font-family: arial,helvetica,sans-serif; font-size: 10pt;\">Country</span></td>\r\n<td style=\"width: 25%; height: 30px; text-align: left; vertical-align: middle;\"><span style=\"color: #99ccff; font-family: arial,helvetica,sans-serif; font-size: 10pt;\">[country value=\"ZA\"]</span></td>\r\n<td style=\"width: 25%; height: 30px; text-align: left; vertical-align: middle;\"><span style=\"color: #99ccff;\"> </span></td>\r\n<td style=\"width: 25%; height: 30px; text-align: left; vertical-align: middle;\"><span style=\"color: #99ccff;\"> </span></td>\r\n</tr>\r\n<tr style=\"height: 40px;\">\r\n<td style=\"width: 25%; height: 30px; text-align: left; vertical-align: middle;\" rowspan=\"3\"><span style=\"color: #99ccff; font-family: arial,helvetica,sans-serif; font-size: 10pt;\">Comments or Questions!</span></td>\r\n<td style=\"width: 25%; height: 30px; text-align: left; vertical-align: middle;\" rowspan=\"3\"><span style=\"color: #99ccff; font-family: arial,helvetica,sans-serif; font-size: 10pt;\">[custom textarea Message]</span></td>\r\n<td style=\"width: 25%; height: 30px; text-align: left; vertical-align: middle;\"><span style=\"color: #99ccff; font-family: arial,helvetica,sans-serif; font-size: 10pt;\">I accept <span style=\"text-decoration: underline;\"><strong> <a style=\"color: #99ccff; text-decoration: underline;\" href=\"http://msla.co.za/lodge/tcs/\">Terms &amp; Conditions</a></strong></span></span></td>\r\n<td style=\"width: 25%; height: 30px; text-align: left; vertical-align: middle;\"><span style=\"color: #99ccff; font-family: arial,helvetica,sans-serif; font-size: 10pt;\">[custom id=\"1\" title=\"Terms &amp; Conditions\"]</span></td>\r\n</tr>\r\n<tr style=\"height: 40px;\">\r\n<td style=\"width: 25%; height: 30px; text-align: left; vertical-align: middle;\"><span style=\"color: #99ccff; font-family: arial,helvetica,sans-serif; font-size: 10pt;\">Enter Security Code</span></td>\r\n<td style=\"width: 25%; height: 30px; text-align: left; vertical-align: middle;\"><span style=\"color: #99ccff; font-family: arial,helvetica,sans-serif; font-size: 16pt;\">[captcha]</span></td>\r\n</tr>\r\n<tr style=\"height: 40px;\">\r\n<td style=\"width: 240px; text-align: left; vertical-align: middle;\"><span style=\"color: #99ccff;\"> </span></td>\r\n<td style=\"width: 240px; text-align: left; vertical-align: middle;\"><span style=\"color: #99ccff; font-family: arial,helvetica,sans-serif; font-size: 10pt;\">[submit value=\"Submit\"]</span></td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n</div>', 'Form Templet', '', 'inherit', 'closed', 'closed', '', '1072-revision-v1', '', '', '2016-10-13 12:46:24', '2016-10-13 10:46:24', '', 1072, 'http://msla.co.za/lodge/1072-revision-v1/', 0, 'revision', '', 0);
INSERT INTO `wp_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(1274, 1, '2016-10-13 23:53:09', '2016-10-13 21:53:09', '<div>\r\n<table class=\" aligncenter\" style=\"width: 75%;\" cellspacing=\"0\" cellpadding=\"0\">\r\n<tbody>\r\n<tr style=\"height: 40px;\">\r\n<td style=\"width: 25%; height: 30px; text-align: left; vertical-align: middle;\"><span style=\"color: #99ccff; font-family: arial,helvetica,sans-serif; font-size: 12pt;\"><strong>RESERVATION DETAILS</strong></span></td>\r\n<td style=\"width: 25%; height: 30px; text-align: left; vertical-align: middle;\"><span style=\"color: #99ccff; font-family: arial,helvetica,sans-serif; font-size: 8pt;\"><span style=\"background-color: #0191c8;\">[error error_title=\"Errors found in the form\" error_message=\"There is a problem.\"]</span></span></td>\r\n<td style=\"width: 25%; height: 30px; text-align: left; vertical-align: middle;\"><span style=\"color: #99ccff; font-family: arial,helvetica,sans-serif; font-size: 12pt;\"> <strong><span style=\"color: #99ccff; font-family: Arial;\">ESTIMATED PRICE INCL VAT</span></strong></span></td>\r\n<td style=\"width: 25%; height: 30px; vertical-align: middle;\"><span style=\"color: #99ccff; font-family: arial,helvetica,sans-serif; font-size: 12pt;\"><span style=\"font-family: arial,helvetica,sans-serif;\">[show_price]</span><strong> </strong></span></td>\r\n</tr>\r\n<tr style=\"height: 40px;\">\r\n<td style=\"width: 25%; height: 30px; text-align: left; vertical-align: middle;\"><span style=\"color: #99ccff; font-family: arial,helvetica,sans-serif; font-size: 10pt;\"> </span></td>\r\n<td style=\"width: 25%; height: 30px; text-align: left; vertical-align: middle;\"><span style=\"color: #99ccff; font-family: arial,helvetica,sans-serif; font-size: 10pt;\"> </span></td>\r\n<td style=\"width: 25%; height: 30px; text-align: left; vertical-align: middle;\"><span style=\"color: #99ccff; font-family: arial,helvetica,sans-serif; font-size: 10pt;\"> </span></td>\r\n<td style=\"width: 25%; height: 30px; text-align: left; vertical-align: middle;\"><span style=\"color: #99ccff; font-family: arial,helvetica,sans-serif; font-size: 10pt;\"> <span style=\"color: #99ccff; font-family: arial,helvetica,sans-serif; font-size: 12pt;\"><strong><span style=\"font-family: Arial;\">[hidden resource 854]</span></strong></span></span></td>\r\n</tr>\r\n<tr style=\"height: 40px;\">\r\n<td style=\"width: 25%; height: 30px; text-align: left; vertical-align: middle;\"><span style=\"color: #99ccff; font-family: arial,helvetica,sans-serif; font-size: 10pt;\">Arrival Date</span></td>\r\n<td style=\"width: 25%; height: 30px; text-align: left; vertical-align: middle;\"><span style=\"color: #99ccff; font-family: arial,helvetica,sans-serif; font-size: 10pt;\">[date-from value=\"+1\"]</span></td>\r\n<td style=\"width: 25%; height: 30px; text-align: left; vertical-align: middle;\"><span style=\"color: #99ccff; font-family: arial,helvetica,sans-serif; font-size: 10pt;\">Departure Date</span></td>\r\n<td style=\"width: 25%; height: 30px; text-align: left; vertical-align: middle;\"><span style=\"color: #99ccff; font-family: arial,helvetica,sans-serif; font-size: 10pt;\">[date-to value=\"+2\"]</span></td>\r\n</tr>\r\n<tr style=\"height: 40px;\">\r\n<td style=\"width: 25%; height: 30px; text-align: left; vertical-align: middle;\"><span style=\"color: #99ccff; font-family: arial,helvetica,sans-serif; font-size: 10pt;\">Number Of Guests (excluding children under 2yrs)</span></td>\r\n<td style=\"width: 25%; height: 30px; text-align: left; vertical-align: middle;\"><span style=\"color: #99ccff; font-family: arial,helvetica,sans-serif; font-size: 10pt;\">[adults 1 10 value=\"1\"]</span></td>\r\n<td style=\"width: 25%; height: 30px; text-align: left; vertical-align: middle;\"><span style=\"color: #99ccff; font-family: arial,helvetica,sans-serif; font-size: 10pt;\">Children Under 2yrs (Own Bedding)</span></td>\r\n<td style=\"width: 25%; height: 30px; text-align: left; vertical-align: middle;\"><span style=\"color: #99ccff; font-family: arial,helvetica,sans-serif; font-size: 10pt;\">...Stay Free</span></td>\r\n</tr>\r\n<tr style=\"height: 40px;\">\r\n<td style=\"width: 25%; height: 30px; text-align: left; vertical-align: middle;\"><span style=\"color: #99ccff;\"> </span></td>\r\n<td style=\"width: 25%; height: 30px; text-align: left; vertical-align: middle;\"><span style=\"color: #99ccff;\"> </span></td>\r\n<td style=\"width: 25%; height: 30px; text-align: left; vertical-align: middle;\"><span style=\"color: #99ccff;\"> </span></td>\r\n<td style=\"width: 25%; height: 30px; text-align: left; vertical-align: middle;\"><span style=\"color: #99ccff;\"> </span></td>\r\n</tr>\r\n<tr style=\"height: 40px;\">\r\n<td style=\"width: 25%; height: 30px; text-align: left; vertical-align: middle;\"><span style=\"color: #99ccff; font-family: arial,helvetica,sans-serif; font-size: 10pt;\"><span style=\"font-family: arial,helvetica,sans-serif; font-size: 12pt;\"><strong>MEAL OPTIONS</strong></span></span></td>\r\n<td style=\"width: 25%; height: 30px; text-align: left; vertical-align: middle;\"><span style=\"color: #99ccff;\"> </span></td>\r\n<td style=\"width: 25%; height: 30px; text-align: left; vertical-align: middle;\"><span style=\"color: #99ccff; font-family: arial,helvetica,sans-serif; font-size: 10pt;\"><span style=\"font-family: arial,helvetica,sans-serif; font-size: 12pt;\"><strong>CLEANING SERVICE OPTIONS</strong></span></span></td>\r\n<td style=\"width: 25%; height: 30px; text-align: left; vertical-align: middle;\"><span style=\"color: #99ccff;\"> </span></td>\r\n</tr>\r\n<tr style=\"height: 40px;\">\r\n<td style=\"width: 25%; height: 30px; text-align: left; vertical-align: middle;\"><span style=\"color: #99ccff; font-family: arial,helvetica,sans-serif; font-size: 10pt;\">Include Morning Breakfast</span></td>\r\n<td style=\"width: 25%; height: 30px; text-align: left; vertical-align: middle;\"><span style=\"color: #99ccff; font-family: arial,helvetica,sans-serif; font-size: 10pt;\">[custom id=\"8\"]</span></td>\r\n<td style=\"width: 25%; height: 30px; text-align: left; vertical-align: middle;\"><span style=\"color: #99ccff; font-family: arial,helvetica,sans-serif; font-size: 10pt;\">Include Services for Lodge (excluding room/s)</span></td>\r\n<td style=\"width: 25%; height: 30px; text-align: left; vertical-align: middle;\"><span style=\"color: #99ccff; font-family: arial,helvetica,sans-serif; font-size: 10pt;\">[custom id=\"6\"]</span></td>\r\n</tr>\r\n<tr style=\"height: 40px;\">\r\n<td style=\"width: 25%; height: 30px; text-align: left; vertical-align: middle;\"><span style=\"color: #99ccff; font-family: arial,helvetica,sans-serif; font-size: 12pt;\"><span style=\"font-family: arial,helvetica,sans-serif; font-size: 10pt;\">Include Evening Dinner</span></span></td>\r\n<td style=\"width: 25%; height: 30px; text-align: left; vertical-align: middle;\"><span style=\"color: #99ccff; font-family: arial,helvetica,sans-serif; font-size: 12pt;\"><span style=\"font-family: arial,helvetica,sans-serif; font-size: 10pt;\">[custom id=\"9\"]</span></span></td>\r\n<td style=\"width: 25%; height: 30px; text-align: left; vertical-align: middle;\"><span style=\"color: #99ccff;\"><span style=\"color: #99ccff; font-family: arial,helvetica,sans-serif; font-size: 10pt;\">Include Services for Rooms</span></span></td>\r\n<td style=\"width: 25%; height: 30px; text-align: left; vertical-align: middle;\"><span style=\"color: #99ccff;\"><span style=\"color: #99ccff; font-family: arial,helvetica,sans-serif; font-size: 10pt;\">[custom id=\"7\"]</span></span></td>\r\n</tr>\r\n<tr style=\"height: 40px;\">\r\n<td style=\"width: 25%; height: 30px; text-align: left; vertical-align: middle;\" colspan=\"4\"><span style=\"color: #99ccff;\"> </span></td>\r\n</tr>\r\n<tr style=\"height: 40px;\">\r\n<td style=\"width: 25%; height: 30px; text-align: left; vertical-align: middle;\" colspan=\"4\"><span style=\"color: #99ccff; font-family: arial,helvetica,sans-serif; font-size: 12pt;\"><strong>PERSONAL DETAILS</strong></span></td>\r\n</tr>\r\n<tr style=\"height: 40px;\">\r\n<td style=\"width: 25%; height: 30px; text-align: left; vertical-align: middle;\"><span style=\"color: #99ccff; font-family: arial,helvetica,sans-serif; font-size: 10pt;\">First Name</span></td>\r\n<td style=\"width: 25%; height: 30px; text-align: left; vertical-align: middle;\"><span style=\"color: #99ccff; font-family: arial,helvetica,sans-serif; font-size: 10pt;\">[thename]</span></td>\r\n<td style=\"width: 25%; height: 30px; text-align: left; vertical-align: middle;\"><span style=\"color: #99ccff; font-family: arial,helvetica,sans-serif; font-size: 10pt;\">Email Address</span></td>\r\n<td style=\"width: 25%; height: 30px; text-align: left; vertical-align: middle;\"><span style=\"color: #99ccff; font-family: arial,helvetica,sans-serif; font-size: 10pt;\">[email]</span></td>\r\n</tr>\r\n<tr style=\"height: 40px;\">\r\n<td style=\"width: 25%; height: 30px; text-align: left; vertical-align: middle;\"><span style=\"color: #99ccff; font-family: arial,helvetica,sans-serif; font-size: 10pt;\">Surname</span></td>\r\n<td style=\"width: 25%; height: 30px; text-align: left; vertical-align: middle;\"><span style=\"color: #99ccff; font-family: arial,helvetica,sans-serif; font-size: 10pt;\">[thename]</span></td>\r\n<td style=\"width: 25%; height: 30px; text-align: left; vertical-align: middle;\"><span style=\"color: #99ccff; font-family: arial,helvetica,sans-serif; font-size: 10pt;\">Contact Phone</span></td>\r\n<td style=\"width: 25%; height: 30px; text-align: left; vertical-align: middle;\"><span style=\"color: #99ccff; font-family: arial,helvetica,sans-serif; font-size: 10pt;\">[custom text Phone *]</span></td>\r\n</tr>\r\n<tr style=\"height: 40px;\">\r\n<td style=\"width: 25%; height: 30px; text-align: left; vertical-align: middle;\"><span style=\"color: #99ccff; font-family: arial,helvetica,sans-serif; font-size: 10pt;\">Country</span></td>\r\n<td style=\"width: 25%; height: 30px; text-align: left; vertical-align: middle;\"><span style=\"color: #99ccff; font-family: arial,helvetica,sans-serif; font-size: 10pt;\">[country value=\"ZA\"]</span></td>\r\n<td style=\"width: 25%; height: 30px; text-align: left; vertical-align: middle;\"><span style=\"color: #99ccff;\"> </span></td>\r\n<td style=\"width: 25%; height: 30px; text-align: left; vertical-align: middle;\"><span style=\"color: #99ccff;\"> </span></td>\r\n</tr>\r\n<tr style=\"height: 40px;\">\r\n<td style=\"width: 25%; height: 30px; text-align: left; vertical-align: middle;\" rowspan=\"3\"><span style=\"color: #99ccff; font-family: arial,helvetica,sans-serif; font-size: 10pt;\">Comments or Questions!</span></td>\r\n<td style=\"width: 25%; height: 30px; text-align: left; vertical-align: middle;\" rowspan=\"3\"><span style=\"color: #99ccff; font-family: arial,helvetica,sans-serif; font-size: 10pt;\">[custom textarea Message]</span></td>\r\n<td style=\"width: 25%; height: 30px; text-align: left; vertical-align: middle;\"><span style=\"color: #99ccff; font-family: arial,helvetica,sans-serif; font-size: 10pt;\">I accept <span style=\"text-decoration: underline;\"><strong> <a style=\"color: #99ccff; text-decoration: underline;\" href=\"http://msla.co.za/lodge/tcs/\">Terms &amp; Conditions</a></strong></span></span></td>\r\n<td style=\"width: 25%; height: 30px; text-align: left; vertical-align: middle;\"><span style=\"color: #99ccff; font-family: arial,helvetica,sans-serif; font-size: 10pt;\">[custom id=\"1\" title=\"Terms &amp; Conditions\"]</span></td>\r\n</tr>\r\n<tr style=\"height: 40px;\">\r\n<td style=\"width: 25%; height: 30px; text-align: left; vertical-align: middle;\"><span style=\"color: #99ccff; font-family: arial,helvetica,sans-serif; font-size: 10pt;\">Enter Security Code</span></td>\r\n<td style=\"width: 25%; height: 30px; text-align: left; vertical-align: middle;\"><span style=\"color: #99ccff; font-family: arial,helvetica,sans-serif; font-size: 16pt;\">[captcha]</span></td>\r\n</tr>\r\n<tr style=\"height: 40px;\">\r\n<td style=\"width: 240px; text-align: left; vertical-align: middle;\"><span style=\"color: #99ccff;\"> </span></td>\r\n<td style=\"width: 240px; text-align: left; vertical-align: middle;\"><span style=\"color: #99ccff; font-family: arial,helvetica,sans-serif; font-size: 10pt;\">[submit value=\"Submit\"]</span></td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n</div>', 'Form Templet', '', 'inherit', 'closed', 'closed', '', '1072-revision-v1', '', '', '2016-10-13 23:53:09', '2016-10-13 21:53:09', '', 1072, 'http://msla.co.za/lodge/1072-revision-v1/', 0, 'revision', '', 0),
(1276, 1, '2016-10-17 10:59:45', '2016-10-17 08:59:45', '<div class=\"clearfix\">\r\n    <div id=\"left\">\r\n        First name [text firstname] <br/>\r\n        Last Name [text lastname] <br/>\r\n    </div>\r\n    <div id=\"right\">\r\n        Email [email* your-email] <br/>\r\n        Phone [text your-phone] <br/>\r\n        Include Breakfast [checkbox checkbox-941 exclusive \"YES\"] <br/>\r\n        Include Service [checkbox checkbox-857 exclusive \"YES\"] <br/>\r\n        Arrival [date date-372 id:Arrival date-format:mm/dd/yy inline] Departure [date date-410 id:Departure date-format:mm/dd/yy inline]<br>\r\n    </div>\r\n \r\nSubject [text* your-subject] <br/>\r\nMessage [textarea* your-message] <br/>\r\n[submit \"Send\"]\n1\nAssagay Forest Lodge\n[your-name] <assagaylodge@msla.co.za>\nassagaylodge@msla.co.za\nFrom: [your-name] <[your-email]>\r\nSubject: Assagay Forest Lodge\r\n\r\nMessage Body:\r\n[your-message]\r\n\r\n--\r\nThis e-mail was sent from a contact form on Assagay Forest Lodge (http://msla.co.za/lodge)\nReply-To: [your-email]\n\n\n\n\nAssagay Forest Lodge \"[your-subject]\"\nAssagay Forest Lodge <assagaylodge@msla.co.za>\n[your-email]\nMessage Body:\r\n[your-message]\r\n\r\n--\r\nThis e-mail was sent from a contact form on Assagay Forest Lodge (http://msla.co.za/lodge)\nReply-To: assagaylodge@msla.co.za\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.', 'Lodge Enquiry', '', 'publish', 'closed', 'closed', '', 'lodge-enquiry', '', '', '2017-12-13 05:50:35', '2017-12-13 03:50:35', '', 0, 'http://msla.co.za/lodge/?post_type=wpcf7_contact_form&#038;p=1276', 0, 'wpcf7_contact_form', '', 0),
(1277, 1, '2016-10-17 11:08:28', '2016-10-17 09:08:28', '[fullwidth background_color=\"\" background_image=\"http://msla.co.za/lodge/wp-content/uploads/2015/01/about-parallax11.jpg\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"center center\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"20\" padding_bottom=\"20\" padding_left=\"0\" padding_right=\"0\" hundred_percent=\"yes\" equal_height_columns=\"yes\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][one_sixth last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][/one_sixth][two_third last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][fusion_text][easy_form booknow style=\"none\" submit=\"Reservation successfully sent\" subsubmit=\"Please continue.\" credit=\"Reservation complete\" subcredit=\"You\'ll receive an email with the reservations details\" resourcename=\"Room\" pers=\"1\" resource=\"854\"][/fusion_text][/two_third][one_sixth last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][/one_sixth][/fullwidth][fullwidth background_color=\"\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding_top=\"20\" padding_bottom=\"20\" padding_left=\"0\" padding_right=\"0\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][one_sixth last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][/one_sixth][two_third last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][fusion_text][contact-form-7 id=\"1276\" title=\"Lodge Enquiry\"][/fusion_text][/two_third][one_sixth last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][/one_sixth][/fullwidth]', 'Book Now', '', 'inherit', 'closed', 'closed', '', '855-revision-v1', '', '', '2016-10-17 11:08:28', '2016-10-17 09:08:28', '', 855, 'http://msla.co.za/lodge/855-revision-v1/', 0, 'revision', '', 0),
(1278, 1, '2016-10-17 11:13:05', '2016-10-17 09:13:05', '[fullwidth background_color=\"\" background_image=\"http://msla.co.za/lodge/wp-content/uploads/2015/01/about-parallax11.jpg\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"center center\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"20\" padding_bottom=\"20\" padding_left=\"0\" padding_right=\"0\" hundred_percent=\"yes\" equal_height_columns=\"yes\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][one_sixth last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][/one_sixth][two_third last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][fusion_text][easy_form booknow style=\"none\" submit=\"Reservation successfully sent\" subsubmit=\"Please continue.\" credit=\"Reservation complete\" subcredit=\"You\'ll receive an email with the reservations details\" resourcename=\"Room\" pers=\"1\" resource=\"854\"][/fusion_text][/two_third][one_sixth last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][/one_sixth][/fullwidth]', 'Book Now', '', 'inherit', 'closed', 'closed', '', '855-revision-v1', '', '', '2016-10-17 11:13:05', '2016-10-17 09:13:05', '', 855, 'http://msla.co.za/lodge/855-revision-v1/', 0, 'revision', '', 0),
(1279, 1, '2016-10-17 11:16:16', '2016-10-17 09:16:16', '[fullwidth background_color=\"\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding_top=\"20\" padding_bottom=\"20\" padding_left=\"0\" padding_right=\"0\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][one_sixth last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][/one_sixth][two_third last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][fusion_text][contact-form-7 id=\"1276\" title=\"Lodge Enquiry\"][/fusion_text][/two_third][one_sixth last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][/one_sixth][/fullwidth]', 'Booking Form', '', 'inherit', 'closed', 'closed', '', '851-revision-v1', '', '', '2016-10-17 11:16:16', '2016-10-17 09:16:16', '', 851, 'http://msla.co.za/lodge/851-revision-v1/', 0, 'revision', '', 0),
(1280, 1, '2016-10-17 12:20:16', '2016-10-17 10:20:16', '[fullwidth background_color=\"\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding_top=\"20\" padding_bottom=\"20\" padding_left=\"0\" padding_right=\"0\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][fusion_text][contact-form-7 id=\"1276\" title=\"Lodge Enquiry\"][/fusion_text][/fullwidth]', 'Booking Form', '', 'inherit', 'closed', 'closed', '', '851-revision-v1', '', '', '2016-10-17 12:20:16', '2016-10-17 10:20:16', '', 851, 'http://msla.co.za/lodge/851-revision-v1/', 0, 'revision', '', 0),
(1282, 1, '2016-10-17 12:51:03', '2016-10-17 10:51:03', '', '', '', 'inherit', 'open', 'closed', '', '1282', '', '', '2016-10-17 12:51:03', '2016-10-17 10:51:03', '', 0, 'http://msla.co.za/lodge/wp-content/uploads/2016/10/SMALL-LOGO.png', 0, 'attachment', 'image/png', 0),
(1283, 1, '2016-10-17 12:51:04', '2016-10-17 10:51:04', '', '', '', 'inherit', 'open', 'closed', '', '1283', '', '', '2016-10-17 12:51:04', '2016-10-17 10:51:04', '', 0, 'http://msla.co.za/lodge/wp-content/uploads/2016/10/SMALL-LOGO-1.png', 0, 'attachment', 'image/png', 0),
(1284, 1, '2016-10-17 13:15:05', '2016-10-17 11:15:05', '[fullwidth background_color=\"\" background_image=\"http://msla.co.za/lodge/wp-content/uploads/2015/01/about-parallax11.jpg\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"center center\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"20\" padding_bottom=\"20\" padding_left=\"0\" padding_right=\"0\" hundred_percent=\"yes\" equal_height_columns=\"yes\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][one_sixth last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][/one_sixth][two_third last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][fusion_text][easy_form booknow style=\"none\" submit=\"Reservation successfully sent\" subsubmit=\"Please continue.\" credit=\"Reservation complete\" subcredit=\"You\'ll receive an email with the reservations details\" resourcename=\"Room\" pers=\"1\" resource=\"854\"][/fusion_text][/two_third][one_sixth last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][/one_sixth][/fullwidth]', 'Book Now', '', 'inherit', 'closed', 'closed', '', '855-revision-v1', '', '', '2016-10-17 13:15:05', '2016-10-17 11:15:05', '', 855, 'http://msla.co.za/lodge/855-revision-v1/', 0, 'revision', '', 0),
(1285, 1, '2016-10-17 13:23:43', '2016-10-17 11:23:43', '[fullwidth background_color=\"\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding_top=\"20\" padding_bottom=\"20\" padding_left=\"\" padding_right=\"\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][one_sixth last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][/one_sixth][two_third last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][fusion_text][contact-form-7 id=\"1276\" title=\"Lodge Enquiry\"][/fusion_text][/two_third][one_sixth last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][/one_sixth][/fullwidth]', 'Booking Form', '', 'inherit', 'closed', 'closed', '', '851-revision-v1', '', '', '2016-10-17 13:23:43', '2016-10-17 11:23:43', '', 851, 'http://msla.co.za/lodge/851-revision-v1/', 0, 'revision', '', 0),
(1286, 1, '2016-10-17 13:29:43', '2016-10-17 11:29:43', '[fullwidth background_color=\"\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding_top=\"20\" padding_bottom=\"20\" padding_left=\"\" padding_right=\"\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][title size=\"1\" content_align=\"right\" style_type=\"default\" sep_color=\"\" margin_top=\"\" margin_bottom=\"\" class=\"\" id=\"\"]Send Us Your Booking Enquiry[/title][/fullwidth][fullwidth background_color=\"\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding_top=\"20\" padding_bottom=\"20\" padding_left=\"\" padding_right=\"\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][one_sixth last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][/one_sixth][two_third last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][fusion_text][contact-form-7 id=\"1276\" title=\"Lodge Enquiry\"][/fusion_text][/two_third][one_sixth last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][/one_sixth][/fullwidth]', 'Booking Form', '', 'inherit', 'closed', 'closed', '', '851-revision-v1', '', '', '2016-10-17 13:29:43', '2016-10-17 11:29:43', '', 851, 'http://msla.co.za/lodge/851-revision-v1/', 0, 'revision', '', 0),
(1287, 1, '2016-10-17 16:02:38', '2016-10-17 14:02:38', '<div>\r\n<table style=\"width: 100%;\" cellspacing=\"0\" cellpadding=\"0\">\r\n<tbody>\r\n<tr style=\"height: 30px;\">\r\n<td style=\"width: 25%; height: 25px; text-align: left; vertical-align: middle;\"><span style=\"color: #99ccff; font-family: arial,helvetica,sans-serif; font-size: 12pt;\"><strong>RESERVATION DETAILS</strong></span></td>\r\n<td style=\"width: 20%; height: 25px; text-align: left; vertical-align: middle;\"><span style=\"color: #99ccff; font-family: arial,helvetica,sans-serif; font-size: 8pt;\"><span style=\"background-color: #0191c8;\">[error error_title=\"Errors found in the form\" error_message=\"There is a problem.\"]</span></span></td>\r\n<td style=\"width: 20%; height: 25px; text-align: left; vertical-align: middle;\"><span style=\"color: #99ccff; font-family: arial,helvetica,sans-serif; font-size: 12pt;\"> <strong><span style=\"color: #99ccff; font-family: Arial;\">ESTIMATED PRICE INCL VAT</span></strong></span></td>\r\n<td style=\"width: 20%; height: 25px; vertical-align: middle;\"><span style=\"color: #99ccff; font-family: arial,helvetica,sans-serif; font-size: 12pt;\"><span style=\"font-family: arial,helvetica,sans-serif;\">[show_price]</span><strong> </strong></span></td>\r\n</tr>\r\n<tr style=\"height: 30px;\">\r\n<td style=\"width: 30%; height: 25px; text-align: left; vertical-align: middle;\"><span style=\"color: #99ccff; font-family: arial,helvetica,sans-serif; font-size: 10pt;\"> </span></td>\r\n<td style=\"width: 30%; height: 25px; text-align: left; vertical-align: middle;\"><span style=\"color: #99ccff; font-family: arial,helvetica,sans-serif; font-size: 10pt;\"> </span></td>\r\n<td style=\"width: 30%; height: 25px; text-align: left; vertical-align: middle;\"><span style=\"color: #99ccff; font-family: arial,helvetica,sans-serif; font-size: 10pt;\"> </span></td>\r\n<td style=\"width: 30%; height: 25px; text-align: left; vertical-align: middle;\"><span style=\"color: #99ccff; font-family: arial,helvetica,sans-serif; font-size: 10pt;\"> <span style=\"color: #99ccff; font-family: arial,helvetica,sans-serif; font-size: 12pt;\"><strong><span style=\"font-family: Arial;\">[hidden resource 854]</span></strong></span></span></td>\r\n</tr>\r\n<tr style=\"height: 30px;\">\r\n<td style=\"width: 20%; height: 30px; text-align: left; vertical-align: middle;\"><span style=\"color: #99ccff; font-family: arial,helvetica,sans-serif; font-size: 10pt;\">Arrival Date</span></td>\r\n<td style=\"width: 20%; height: 30px; text-align: left; vertical-align: middle;\"><span style=\"color: #99ccff; font-family: arial,helvetica,sans-serif; font-size: 10pt;\">[date-from value=\"+1\"]</span></td>\r\n<td style=\"width: 20%; height: 30px; text-align: left; vertical-align: middle;\"><span style=\"color: #99ccff; font-family: arial,helvetica,sans-serif; font-size: 10pt;\">Departure Date</span></td>\r\n<td style=\"width: 20%; height: 30px; text-align: left; vertical-align: middle;\"><span style=\"color: #99ccff; font-family: arial,helvetica,sans-serif; font-size: 10pt;\">[date-to value=\"+2\"]</span></td>\r\n</tr>\r\n<tr style=\"height: 30px;\">\r\n<td style=\"width: 25%; height: 30px; text-align: left; vertical-align: middle;\"><span style=\"color: #99ccff; font-family: arial,helvetica,sans-serif; font-size: 10pt;\">Number Of Guests (excluding children under 2yrs)</span></td>\r\n<td style=\"width: 25%; height: 30px; text-align: left; vertical-align: middle;\"><span style=\"color: #99ccff; font-family: arial,helvetica,sans-serif; font-size: 10pt;\">[adults 1 10 value=\"1\"]</span></td>\r\n<td style=\"width: 25%; height: 30px; text-align: left; vertical-align: middle;\"><span style=\"color: #99ccff; font-family: arial,helvetica,sans-serif; font-size: 10pt;\">Children Under 2yrs (Own Bedding)</span></td>\r\n<td style=\"width: 25%; height: 30px; text-align: left; vertical-align: middle;\"><span style=\"color: #99ccff; font-family: arial,helvetica,sans-serif; font-size: 10pt;\">...Stay Free</span></td>\r\n</tr>\r\n<tr style=\"height: 30px;\">\r\n<td style=\"width: 30%; height: 30px; text-align: left; vertical-align: middle;\"><span style=\"color: #99ccff;\"> </span></td>\r\n<td style=\"width: 30%; height: 30px; text-align: left; vertical-align: middle;\"><span style=\"color: #99ccff;\"> </span></td>\r\n<td style=\"width: 30%; height: 30px; text-align: left; vertical-align: middle;\"><span style=\"color: #99ccff;\"> </span></td>\r\n<td style=\"width: 30%; height: 30px; text-align: left; vertical-align: middle;\"><span style=\"color: #99ccff;\"> </span></td>\r\n</tr>\r\n<tr style=\"height: 30px;\">\r\n<td style=\"width: 25%; height: 30px; text-align: left; vertical-align: middle;\"><span style=\"color: #99ccff; font-family: arial,helvetica,sans-serif; font-size: 10pt;\"><span style=\"font-family: arial,helvetica,sans-serif; font-size: 12pt;\"><strong>MEAL OPTIONS</strong></span></span></td>\r\n<td style=\"width: 25%; height: 30px; text-align: left; vertical-align: middle;\"><span style=\"color: #99ccff;\"> </span></td>\r\n<td style=\"width: 25%; height: 30px; text-align: left; vertical-align: middle;\"><span style=\"color: #99ccff; font-family: arial,helvetica,sans-serif; font-size: 10pt;\"><span style=\"font-family: arial,helvetica,sans-serif; font-size: 12pt;\"><strong>CLEANING SERVICE OPTIONS</strong></span></span></td>\r\n<td style=\"width: 25%; height: 30px; text-align: left; vertical-align: middle;\"><span style=\"color: #99ccff;\"> </span></td>\r\n</tr>\r\n<tr style=\"height: 30px;\">\r\n<td style=\"width: 25%; height: 30px; text-align: left; vertical-align: middle;\"><span style=\"color: #99ccff; font-family: arial,helvetica,sans-serif; font-size: 10pt;\">Include Morning Breakfast</span></td>\r\n<td style=\"width: 25%; height: 30px; text-align: left; vertical-align: middle;\"><span style=\"color: #99ccff; font-family: arial,helvetica,sans-serif; font-size: 10pt;\">[custom id=\"8\"]</span></td>\r\n<td style=\"width: 25%; height: 30px; text-align: left; vertical-align: middle;\"><span style=\"color: #99ccff; font-family: arial,helvetica,sans-serif; font-size: 10pt;\">Include Services for Lodge (excluding room/s)</span></td>\r\n<td style=\"width: 25%; height: 30px; text-align: left; vertical-align: middle;\"><span style=\"color: #99ccff; font-family: arial,helvetica,sans-serif; font-size: 10pt;\">[custom id=\"6\"]</span></td>\r\n</tr>\r\n<tr style=\"height: 30px;\">\r\n<td style=\"width: 25%; height: 30px; text-align: left; vertical-align: middle;\"><span style=\"color: #99ccff; font-family: arial,helvetica,sans-serif; font-size: 12pt;\"><span style=\"font-family: arial,helvetica,sans-serif; font-size: 10pt;\">Include Evening Dinner</span></span></td>\r\n<td style=\"width: 25%; height: 30px; text-align: left; vertical-align: middle;\"><span style=\"color: #99ccff; font-family: arial,helvetica,sans-serif; font-size: 12pt;\"><span style=\"font-family: arial,helvetica,sans-serif; font-size: 10pt;\">[custom id=\"9\"]</span></span></td>\r\n<td style=\"width: 25%; height: 30px; text-align: left; vertical-align: middle;\"><span style=\"color: #99ccff;\"><span style=\"color: #99ccff; font-family: arial,helvetica,sans-serif; font-size: 10pt;\">Include Services for Rooms</span></span></td>\r\n<td style=\"width: 25%; height: 30px; text-align: left; vertical-align: middle;\"><span style=\"color: #99ccff;\"><span style=\"color: #99ccff; font-family: arial,helvetica,sans-serif; font-size: 10pt;\">[custom id=\"7\"]</span></span></td>\r\n</tr>\r\n<tr style=\"height: 40px;\">\r\n<td style=\"width: 25%; height: 30px; text-align: left; vertical-align: middle;\" colspan=\"4\"><span style=\"color: #99ccff;\"> </span></td>\r\n</tr>\r\n<tr style=\"height: 30px;\">\r\n<td style=\"width: 25%; height: 25px; text-align: left; vertical-align: middle;\" colspan=\"4\"><span style=\"color: #99ccff; font-family: arial,helvetica,sans-serif; font-size: 12pt;\"><strong>PERSONAL DETAILS</strong></span></td>\r\n</tr>\r\n<tr style=\"height: 30px;\">\r\n<td style=\"width: 25%; height: 25px; text-align: left; vertical-align: middle;\"><span style=\"color: #99ccff; font-family: arial,helvetica,sans-serif; font-size: 10pt;\">First Name</span></td>\r\n<td style=\"width: 25%; height: 25px; text-align: left; vertical-align: middle;\"><span style=\"color: #99ccff; font-family: arial,helvetica,sans-serif; font-size: 10pt;\">[thename]</span></td>\r\n<td style=\"width: 25%; height: 25px; text-align: left; vertical-align: middle;\"><span style=\"color: #99ccff; font-family: arial,helvetica,sans-serif; font-size: 10pt;\">Email Address</span></td>\r\n<td style=\"width: 25%; height: 25px; text-align: left; vertical-align: middle;\"><span style=\"color: #99ccff; font-family: arial,helvetica,sans-serif; font-size: 10pt;\">[email]</span></td>\r\n</tr>\r\n<tr style=\"height: 30px;\">\r\n<td style=\"width: 25%; height: 25px; text-align: left; vertical-align: middle;\"><span style=\"color: #99ccff; font-family: arial,helvetica,sans-serif; font-size: 10pt;\">Surname</span></td>\r\n<td style=\"width: 25%; height: 25px; text-align: left; vertical-align: middle;\"><span style=\"color: #99ccff; font-family: arial,helvetica,sans-serif; font-size: 10pt;\">[thename]</span></td>\r\n<td style=\"width: 25%; height: 25px; text-align: left; vertical-align: middle;\"><span style=\"color: #99ccff; font-family: arial,helvetica,sans-serif; font-size: 10pt;\">Contact Phone</span></td>\r\n<td style=\"width: 25%; height: 25px; text-align: left; vertical-align: middle;\"><span style=\"color: #99ccff; font-family: arial,helvetica,sans-serif; font-size: 10pt;\">[custom text Phone *]</span></td>\r\n</tr>\r\n<tr style=\"height: 30px;\">\r\n<td style=\"width: 25%; height: 25px; text-align: left; vertical-align: middle;\"><span style=\"color: #99ccff; font-family: arial,helvetica,sans-serif; font-size: 10pt;\">Country</span></td>\r\n<td style=\"width: 25%; height: 25px; text-align: left; vertical-align: middle;\"><span style=\"color: #99ccff; font-family: arial,helvetica,sans-serif; font-size: 10pt;\">[country value=\"ZA\"]</span></td>\r\n<td style=\"width: 25%; height: 25px; text-align: left; vertical-align: middle;\"><span style=\"color: #99ccff;\"> </span></td>\r\n<td style=\"width: 25%; height: 25px; text-align: left; vertical-align: middle;\"><span style=\"color: #99ccff;\"> </span></td>\r\n</tr>\r\n<tr style=\"height: 30px;\">\r\n<td style=\"width: 25%; height: 25px; text-align: left; vertical-align: middle;\" rowspan=\"3\"><span style=\"color: #99ccff; font-family: arial,helvetica,sans-serif; font-size: 10pt;\">Comments or Questions!</span></td>\r\n<td style=\"width: 25%; height: 25px; text-align: left; vertical-align: middle;\" rowspan=\"3\"><span style=\"color: #99ccff; font-family: arial,helvetica,sans-serif; font-size: 10pt;\">[custom textarea Message]</span></td>\r\n<td style=\"width: 25%; height: 25px; text-align: left; vertical-align: middle;\"><span style=\"color: #99ccff; font-family: arial,helvetica,sans-serif; font-size: 10pt;\">I accept <span style=\"text-decoration: underline;\"><strong> <a style=\"color: #99ccff; text-decoration: underline;\" href=\"http://msla.co.za/lodge/tcs/\">Terms &amp; Conditions</a></strong></span></span></td>\r\n<td style=\"width: 25%; height: 25px; text-align: left; vertical-align: middle;\"><span style=\"color: #99ccff; font-family: arial,helvetica,sans-serif; font-size: 10pt;\">[custom id=\"1\" title=\"Terms &amp; Conditions\"]</span></td>\r\n</tr>\r\n<tr style=\"height: 30px;\">\r\n<td style=\"width: 25%; height: 25px; text-align: left; vertical-align: middle;\"><span style=\"color: #99ccff; font-family: arial,helvetica,sans-serif; font-size: 10pt;\">Enter Security Code</span></td>\r\n<td style=\"width: 25%; height: 25px; text-align: left; vertical-align: middle;\"><span style=\"color: #99ccff; font-family: arial,helvetica,sans-serif; font-size: 16pt;\">[captcha]</span></td>\r\n</tr>\r\n<tr style=\"height: 30px;\">\r\n<td style=\"width: 25%; height: 25px; text-align: left; vertical-align: middle;\"><span style=\"color: #99ccff;\"> </span></td>\r\n<td style=\"width: 25%; height: 25px; text-align: left; vertical-align: middle;\"><span style=\"color: #99ccff; font-family: arial,helvetica,sans-serif; font-size: 10pt;\">[submit value=\"Submit\"]</span></td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n</div>', 'Form Templet', '', 'inherit', 'closed', 'closed', '', '1072-revision-v1', '', '', '2016-10-17 16:02:38', '2016-10-17 14:02:38', '', 1072, 'http://msla.co.za/lodge/1072-revision-v1/', 0, 'revision', '', 0);
INSERT INTO `wp_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(1288, 1, '2016-10-17 16:07:58', '2016-10-17 14:07:58', '<div>\r\n<table style=\"width: 100%;\" cellspacing=\"0\" cellpadding=\"0\">\r\n<tbody>\r\n<tr style=\"height: 25px;\">\r\n<td style=\"width: 25%; height: 25px; text-align: left; vertical-align: middle;\"><span style=\"color: #99ccff; font-family: arial,helvetica,sans-serif; font-size: 12pt;\"><strong>RESERVATION DETAILS</strong></span></td>\r\n<td style=\"width: 25%; height: 25px; text-align: left; vertical-align: middle;\"><span style=\"color: #99ccff; font-family: arial,helvetica,sans-serif; font-size: 8pt;\"><span style=\"background-color: #0191c8;\">[error error_title=\"Errors found in the form\" error_message=\"There is a problem.\"]</span></span></td>\r\n<td style=\"width: 25%; height: 25px; text-align: left; vertical-align: middle;\"><span style=\"color: #99ccff; font-family: arial,helvetica,sans-serif; font-size: 12pt;\"> <strong><span style=\"color: #99ccff; font-family: Arial;\">ESTIMATED PRICE INCL VAT</span></strong></span></td>\r\n<td style=\"width: 25%; height: 25px; vertical-align: middle;\"><span style=\"color: #99ccff; font-family: arial,helvetica,sans-serif; font-size: 12pt;\"><span style=\"font-family: arial,helvetica,sans-serif;\">[show_price]</span><strong> </strong></span></td>\r\n</tr>\r\n<tr style=\"height: 25px;\">\r\n<td style=\"width: 25%; height: 25px; text-align: left; vertical-align: middle;\"><span style=\"color: #99ccff; font-family: arial,helvetica,sans-serif; font-size: 10pt;\"> </span></td>\r\n<td style=\"width: 25%; height: 25px; text-align: left; vertical-align: middle;\"><span style=\"color: #99ccff; font-family: arial,helvetica,sans-serif; font-size: 10pt;\"> </span></td>\r\n<td style=\"width: 25%; height: 25px; text-align: left; vertical-align: middle;\"><span style=\"color: #99ccff; font-family: arial,helvetica,sans-serif; font-size: 10pt;\"> </span></td>\r\n<td style=\"width: 25%; height: 25px; text-align: left; vertical-align: middle;\"><span style=\"color: #99ccff; font-family: arial,helvetica,sans-serif; font-size: 10pt;\"> <span style=\"color: #99ccff; font-family: arial,helvetica,sans-serif; font-size: 12pt;\"><strong><span style=\"font-family: Arial;\">[hidden resource 854]</span></strong></span></span></td>\r\n</tr>\r\n<tr style=\"height: 25px;\">\r\n<td style=\"width: 25%; height: 25px; text-align: left; vertical-align: middle;\"><span style=\"color: #99ccff; font-family: arial,helvetica,sans-serif; font-size: 10pt;\">Arrival Date</span></td>\r\n<td style=\"width: 25%; height: 25px; text-align: left; vertical-align: middle;\"><span style=\"color: #99ccff; font-family: arial,helvetica,sans-serif; font-size: 10pt;\">[date-from value=\"+1\"]</span></td>\r\n<td style=\"width: 25%; height: 25px; text-align: left; vertical-align: middle;\"><span style=\"color: #99ccff; font-family: arial,helvetica,sans-serif; font-size: 10pt;\">Departure Date</span></td>\r\n<td style=\"width: 20%; height: 25px; text-align: left; vertical-align: middle;\"><span style=\"color: #99ccff; font-family: arial,helvetica,sans-serif; font-size: 10pt;\">[date-to value=\"+2\"]</span></td>\r\n</tr>\r\n<tr style=\"height: 25px;\">\r\n<td style=\"width: 25%; height: 25px; text-align: left; vertical-align: middle;\"><span style=\"color: #99ccff; font-family: arial,helvetica,sans-serif; font-size: 10pt;\">Number Of Guests (excluding children under 2yrs)</span></td>\r\n<td style=\"width: 25%; height: 25px; text-align: left; vertical-align: middle;\"><span style=\"color: #99ccff; font-family: arial,helvetica,sans-serif; font-size: 10pt;\">[adults 1 10 value=\"1\"]</span></td>\r\n<td style=\"width: 25%; height: 25px; text-align: left; vertical-align: middle;\"><span style=\"color: #99ccff; font-family: arial,helvetica,sans-serif; font-size: 10pt;\">Children Under 2yrs (Own Bedding)</span></td>\r\n<td style=\"width: 25%; height: 25px; text-align: left; vertical-align: middle;\"><span style=\"color: #99ccff; font-family: arial,helvetica,sans-serif; font-size: 10pt;\">...Stay Free</span></td>\r\n</tr>\r\n<tr style=\"height: 25px;\">\r\n<td style=\"width: 25%; height: 25px; text-align: left; vertical-align: middle;\"><span style=\"color: #99ccff;\"> </span></td>\r\n<td style=\"width: 25%; height: 25px; text-align: left; vertical-align: middle;\"><span style=\"color: #99ccff;\"> </span></td>\r\n<td style=\"width: 25%; height: 25px; text-align: left; vertical-align: middle;\"><span style=\"color: #99ccff;\"> </span></td>\r\n<td style=\"width: 25%; height: 25px; text-align: left; vertical-align: middle;\"><span style=\"color: #99ccff;\"> </span></td>\r\n</tr>\r\n<tr style=\"height: 25px;\">\r\n<td style=\"width: 25%; height: 25px; text-align: left; vertical-align: middle;\"><span style=\"color: #99ccff; font-family: arial,helvetica,sans-serif; font-size: 10pt;\"><span style=\"font-family: arial,helvetica,sans-serif; font-size: 12pt;\"><strong>MEAL OPTIONS</strong></span></span></td>\r\n<td style=\"width: 25%; height: 25px; text-align: left; vertical-align: middle;\"><span style=\"color: #99ccff;\"> </span></td>\r\n<td style=\"width: 25%; height: 25px; text-align: left; vertical-align: middle;\"><span style=\"color: #99ccff; font-family: arial,helvetica,sans-serif; font-size: 10pt;\"><span style=\"font-family: arial,helvetica,sans-serif; font-size: 12pt;\"><strong>CLEANING SERVICE OPTIONS</strong></span></span></td>\r\n<td style=\"width: 25%; height: 25px; text-align: left; vertical-align: middle;\"><span style=\"color: #99ccff;\"> </span></td>\r\n</tr>\r\n<tr style=\"height: 25px;\">\r\n<td style=\"width: 25%; height: 25px; text-align: left; vertical-align: middle;\"><span style=\"color: #99ccff; font-family: arial,helvetica,sans-serif; font-size: 10pt;\">Include Morning Breakfast</span></td>\r\n<td style=\"width: 25%; height: 25px; text-align: left; vertical-align: middle;\"><span style=\"color: #99ccff; font-family: arial,helvetica,sans-serif; font-size: 10pt;\">[custom id=\"8\"]</span></td>\r\n<td style=\"width: 25%; height: 25px; text-align: left; vertical-align: middle;\"><span style=\"color: #99ccff; font-family: arial,helvetica,sans-serif; font-size: 10pt;\">Include Services for Lodge (excluding room/s)</span></td>\r\n<td style=\"width: 25%; height: 25px; text-align: left; vertical-align: middle;\"><span style=\"color: #99ccff; font-family: arial,helvetica,sans-serif; font-size: 10pt;\">[custom id=\"6\"]</span></td>\r\n</tr>\r\n<tr style=\"height: 25px;\">\r\n<td style=\"width: 25%; height: 25px; text-align: left; vertical-align: middle;\"><span style=\"color: #99ccff; font-family: arial,helvetica,sans-serif; font-size: 12pt;\"><span style=\"font-family: arial,helvetica,sans-serif; font-size: 10pt;\">Include Evening Dinner</span></span></td>\r\n<td style=\"width: 25%; height: 25px; text-align: left; vertical-align: middle;\"><span style=\"color: #99ccff; font-family: arial,helvetica,sans-serif; font-size: 12pt;\"><span style=\"font-family: arial,helvetica,sans-serif; font-size: 10pt;\">[custom id=\"9\"]</span></span></td>\r\n<td style=\"width: 25%; height: 25px; text-align: left; vertical-align: middle;\"><span style=\"color: #99ccff;\"><span style=\"color: #99ccff; font-family: arial,helvetica,sans-serif; font-size: 10pt;\">Include Services for Rooms</span></span></td>\r\n<td style=\"width: 25%; height: 25px; text-align: left; vertical-align: middle;\"><span style=\"color: #99ccff;\"><span style=\"color: #99ccff; font-family: arial,helvetica,sans-serif; font-size: 10pt;\">[custom id=\"7\"]</span></span></td>\r\n</tr>\r\n<tr style=\"height: 25px;\">\r\n<td style=\"width: 25%; height: 25px; text-align: left; vertical-align: middle;\" colspan=\"4\"><span style=\"color: #99ccff;\"> </span></td>\r\n</tr>\r\n<tr style=\"height: 25px;\">\r\n<td style=\"width: 25%; height: 25px; text-align: left; vertical-align: middle;\" colspan=\"4\"><span style=\"color: #99ccff; font-family: arial,helvetica,sans-serif; font-size: 12pt;\"><strong>PERSONAL DETAILS</strong></span></td>\r\n</tr>\r\n<tr style=\"height: 25px;\">\r\n<td style=\"width: 25%; height: 25px; text-align: left; vertical-align: middle;\"><span style=\"color: #99ccff; font-family: arial,helvetica,sans-serif; font-size: 10pt;\">First Name</span></td>\r\n<td style=\"width: 25%; height: 25px; text-align: left; vertical-align: middle;\"><span style=\"color: #99ccff; font-family: arial,helvetica,sans-serif; font-size: 10pt;\">[thename]</span></td>\r\n<td style=\"width: 25%; height: 25px; text-align: left; vertical-align: middle;\"><span style=\"color: #99ccff; font-family: arial,helvetica,sans-serif; font-size: 10pt;\">Email Address</span></td>\r\n<td style=\"width: 25%; height: 25px; text-align: left; vertical-align: middle;\"><span style=\"color: #99ccff; font-family: arial,helvetica,sans-serif; font-size: 10pt;\">[email]</span></td>\r\n</tr>\r\n<tr style=\"height: 25px;\">\r\n<td style=\"width: 25%; height: 25px; text-align: left; vertical-align: middle;\"><span style=\"color: #99ccff; font-family: arial,helvetica,sans-serif; font-size: 10pt;\">Surname</span></td>\r\n<td style=\"width: 25%; height: 25px; text-align: left; vertical-align: middle;\"><span style=\"color: #99ccff; font-family: arial,helvetica,sans-serif; font-size: 10pt;\">[thename]</span></td>\r\n<td style=\"width: 25%; height: 25px; text-align: left; vertical-align: middle;\"><span style=\"color: #99ccff; font-family: arial,helvetica,sans-serif; font-size: 10pt;\">Contact Phone</span></td>\r\n<td style=\"width: 25%; height: 25px; text-align: left; vertical-align: middle;\"><span style=\"color: #99ccff; font-family: arial,helvetica,sans-serif; font-size: 10pt;\">[custom text Phone *]</span></td>\r\n</tr>\r\n<tr style=\"height: 25px;\">\r\n<td style=\"width: 25%; height: 25px; text-align: left; vertical-align: middle;\"><span style=\"color: #99ccff; font-family: arial,helvetica,sans-serif; font-size: 10pt;\">Country</span></td>\r\n<td style=\"width: 25%; height: 25px; text-align: left; vertical-align: middle;\"><span style=\"color: #99ccff; font-family: arial,helvetica,sans-serif; font-size: 10pt;\">[country value=\"ZA\"]</span></td>\r\n<td style=\"width: 25%; height: 25px; text-align: left; vertical-align: middle;\"><span style=\"color: #99ccff;\"> </span></td>\r\n<td style=\"width: 25%; height: 25px; text-align: left; vertical-align: middle;\"><span style=\"color: #99ccff;\"> </span></td>\r\n</tr>\r\n<tr style=\"height: 25px;\">\r\n<td style=\"width: 25%; height: 25px; text-align: left; vertical-align: middle;\" rowspan=\"3\"><span style=\"color: #99ccff; font-family: arial,helvetica,sans-serif; font-size: 10pt;\">Comments or Questions!</span></td>\r\n<td style=\"width: 25%; height: 25px; text-align: left; vertical-align: middle;\" rowspan=\"3\"><span style=\"color: #99ccff; font-family: arial,helvetica,sans-serif; font-size: 10pt;\">[custom textarea Message]</span></td>\r\n<td style=\"width: 25%; height: 25px; text-align: left; vertical-align: middle;\"><span style=\"color: #99ccff; font-family: arial,helvetica,sans-serif; font-size: 10pt;\">I accept <span style=\"text-decoration: underline;\"><strong> <a style=\"color: #99ccff; text-decoration: underline;\" href=\"http://msla.co.za/lodge/tcs/\">Terms &amp; Conditions</a></strong></span></span></td>\r\n<td style=\"width: 25%; height: 25px; text-align: left; vertical-align: middle;\"><span style=\"color: #99ccff; font-family: arial,helvetica,sans-serif; font-size: 10pt;\">[custom id=\"1\" title=\"Terms &amp; Conditions\"]</span></td>\r\n</tr>\r\n<tr style=\"height: 25px;\">\r\n<td style=\"width: 25%; height: 25px; text-align: left; vertical-align: middle;\"><span style=\"color: #99ccff; font-family: arial,helvetica,sans-serif; font-size: 10pt;\">Enter Security Code</span></td>\r\n<td style=\"width: 25%; height: 25px; text-align: left; vertical-align: middle;\"><span style=\"color: #99ccff; font-family: arial,helvetica,sans-serif; font-size: 16pt;\">[captcha]</span></td>\r\n</tr>\r\n<tr style=\"height: 25px;\">\r\n<td style=\"width: 25%; height: 25px; text-align: left; vertical-align: middle;\"><span style=\"color: #99ccff;\"> </span></td>\r\n<td style=\"width: 25%; height: 25px; text-align: left; vertical-align: middle;\"><span style=\"color: #99ccff; font-family: arial,helvetica,sans-serif; font-size: 10pt;\">[submit value=\"Submit\"]</span></td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n</div>', 'Form Templet', '', 'inherit', 'closed', 'closed', '', '1072-revision-v1', '', '', '2016-10-17 16:07:58', '2016-10-17 14:07:58', '', 1072, 'http://msla.co.za/lodge/1072-revision-v1/', 0, 'revision', '', 0),
(1289, 1, '2016-10-18 10:49:06', '2016-10-18 08:49:06', '<div>\r\n<table class=\" alignleft\" style=\"width: 100%;\" cellspacing=\"0\" cellpadding=\"0\">\r\n<tbody>\r\n<tr style=\"height: 25px;\">\r\n<td style=\"width: 25%; height: 25px; text-align: left; vertical-align: middle;\"><span style=\"color: #99ccff; font-family: arial,helvetica,sans-serif; font-size: 12pt;\"><strong>RESERVATION DETAILS</strong></span></td>\r\n<td style=\"width: 25%; height: 25px; text-align: left; vertical-align: middle;\"><span style=\"color: #99ccff; font-family: arial,helvetica,sans-serif; font-size: 8pt;\"><span style=\"background-color: #0191c8;\">[error error_title=\"Errors found in the form\" error_message=\"There is a problem.\"]</span></span></td>\r\n<td style=\"width: 25%; height: 25px; text-align: left; vertical-align: middle;\"><span style=\"color: #99ccff; font-family: arial,helvetica,sans-serif; font-size: 12pt;\"> <strong><span style=\"color: #99ccff; font-family: Arial;\">ESTIMATED PRICE INCL VAT</span></strong></span></td>\r\n<td style=\"width: 25%; height: 25px; vertical-align: middle;\"><span style=\"color: #99ccff; font-family: arial,helvetica,sans-serif; font-size: 12pt;\"><span style=\"font-family: arial,helvetica,sans-serif;\">[show_price]</span><strong> </strong></span></td>\r\n</tr>\r\n<tr style=\"height: 25px;\">\r\n<td style=\"width: 25%; height: 25px; text-align: left; vertical-align: middle;\"><span style=\"color: #99ccff; font-family: arial,helvetica,sans-serif; font-size: 10pt;\"> </span></td>\r\n<td style=\"width: 25%; height: 25px; text-align: left; vertical-align: middle;\"><span style=\"color: #99ccff; font-family: arial,helvetica,sans-serif; font-size: 10pt;\"> </span></td>\r\n<td style=\"width: 25%; height: 25px; text-align: left; vertical-align: middle;\"><span style=\"color: #99ccff; font-family: arial,helvetica,sans-serif; font-size: 10pt;\"> </span></td>\r\n<td style=\"width: 25%; height: 25px; text-align: left; vertical-align: middle;\"><span style=\"color: #99ccff; font-family: arial,helvetica,sans-serif; font-size: 10pt;\"> <span style=\"color: #99ccff; font-family: arial,helvetica,sans-serif; font-size: 12pt;\"><strong><span style=\"font-family: Arial;\">[hidden resource 854]</span></strong></span></span></td>\r\n</tr>\r\n<tr style=\"height: 25px;\">\r\n<td style=\"width: 25%; height: 25px; text-align: left; vertical-align: middle;\"><span style=\"color: #99ccff; font-family: arial,helvetica,sans-serif; font-size: 10pt;\">Arrival Date</span></td>\r\n<td style=\"width: 25%; height: 25px; text-align: left; vertical-align: middle;\"><span style=\"color: #99ccff; font-family: arial,helvetica,sans-serif; font-size: 10pt;\">[date-from value=\"+1\"]</span></td>\r\n<td style=\"width: 25%; height: 25px; text-align: left; vertical-align: middle;\"><span style=\"color: #99ccff; font-family: arial,helvetica,sans-serif; font-size: 10pt;\">Departure Date</span></td>\r\n<td style=\"width: 20%; height: 25px; text-align: left; vertical-align: middle;\"><span style=\"color: #99ccff; font-family: arial,helvetica,sans-serif; font-size: 10pt;\">[date-to value=\"+2\"]</span></td>\r\n</tr>\r\n<tr style=\"height: 25px;\">\r\n<td style=\"width: 25%; height: 25px; text-align: left; vertical-align: middle;\"><span style=\"color: #99ccff; font-family: arial,helvetica,sans-serif; font-size: 10pt;\">Number Of Guests (excluding children under 2yrs)</span></td>\r\n<td style=\"width: 25%; height: 25px; text-align: left; vertical-align: middle;\"><span style=\"color: #99ccff; font-family: arial,helvetica,sans-serif; font-size: 10pt;\">[adults 1 10 value=\"1\"]</span></td>\r\n<td style=\"width: 25%; height: 25px; text-align: left; vertical-align: middle;\"><span style=\"color: #99ccff; font-family: arial,helvetica,sans-serif; font-size: 10pt;\">Children Under 2yrs (Own Bedding)</span></td>\r\n<td style=\"width: 25%; height: 25px; text-align: left; vertical-align: middle;\"><span style=\"color: #99ccff; font-family: arial,helvetica,sans-serif; font-size: 10pt;\">...Stay Free</span></td>\r\n</tr>\r\n<tr style=\"height: 25px;\">\r\n<td style=\"width: 25%; height: 25px; text-align: left; vertical-align: middle;\"><span style=\"color: #99ccff;\"> </span></td>\r\n<td style=\"width: 25%; height: 25px; text-align: left; vertical-align: middle;\"><span style=\"color: #99ccff;\"> </span></td>\r\n<td style=\"width: 25%; height: 25px; text-align: left; vertical-align: middle;\"><span style=\"color: #99ccff;\"> </span></td>\r\n<td style=\"width: 25%; height: 25px; text-align: left; vertical-align: middle;\"><span style=\"color: #99ccff;\"> </span></td>\r\n</tr>\r\n<tr style=\"height: 25px;\">\r\n<td style=\"width: 25%; height: 25px; text-align: left; vertical-align: middle;\"><span style=\"color: #99ccff; font-family: arial,helvetica,sans-serif; font-size: 10pt;\"><span style=\"font-family: arial,helvetica,sans-serif; font-size: 12pt;\"><strong>MEAL OPTIONS</strong></span></span></td>\r\n<td style=\"width: 25%; height: 25px; text-align: left; vertical-align: middle;\"><span style=\"color: #99ccff;\"> </span></td>\r\n<td style=\"width: 25%; height: 25px; text-align: left; vertical-align: middle;\"><span style=\"color: #99ccff; font-family: arial,helvetica,sans-serif; font-size: 10pt;\"><span style=\"font-family: arial,helvetica,sans-serif; font-size: 12pt;\"><strong>CLEANING SERVICE OPTIONS</strong></span></span></td>\r\n<td style=\"width: 25%; height: 25px; text-align: left; vertical-align: middle;\"><span style=\"color: #99ccff;\"> </span></td>\r\n</tr>\r\n<tr style=\"height: 25px;\">\r\n<td style=\"width: 25%; height: 25px; text-align: left; vertical-align: middle;\"><span style=\"color: #99ccff; font-family: arial,helvetica,sans-serif; font-size: 10pt;\">Include Morning Breakfast</span></td>\r\n<td style=\"width: 25%; height: 25px; text-align: left; vertical-align: middle;\"><span style=\"color: #99ccff; font-family: arial,helvetica,sans-serif; font-size: 10pt;\">[custom id=\"8\"]</span></td>\r\n<td style=\"width: 25%; height: 25px; text-align: left; vertical-align: middle;\"><span style=\"color: #99ccff; font-family: arial,helvetica,sans-serif; font-size: 10pt;\">Include Services for Lodge (excluding room/s)</span></td>\r\n<td style=\"width: 25%; height: 25px; text-align: left; vertical-align: middle;\"><span style=\"color: #99ccff; font-family: arial,helvetica,sans-serif; font-size: 10pt;\">[custom id=\"6\"]</span></td>\r\n</tr>\r\n<tr style=\"height: 25px;\">\r\n<td style=\"width: 25%; height: 25px; text-align: left; vertical-align: middle;\"><span style=\"color: #99ccff; font-family: arial,helvetica,sans-serif; font-size: 12pt;\"><span style=\"font-family: arial,helvetica,sans-serif; font-size: 10pt;\">Include Evening Dinner</span></span></td>\r\n<td style=\"width: 25%; height: 25px; text-align: left; vertical-align: middle;\"><span style=\"color: #99ccff; font-family: arial,helvetica,sans-serif; font-size: 12pt;\"><span style=\"font-family: arial,helvetica,sans-serif; font-size: 10pt;\">[custom id=\"9\"]</span></span></td>\r\n<td style=\"width: 25%; height: 25px; text-align: left; vertical-align: middle;\"><span style=\"color: #99ccff;\"><span style=\"color: #99ccff; font-family: arial,helvetica,sans-serif; font-size: 10pt;\">Include Services for Rooms</span></span></td>\r\n<td style=\"width: 25%; height: 25px; text-align: left; vertical-align: middle;\"><span style=\"color: #99ccff;\"><span style=\"color: #99ccff; font-family: arial,helvetica,sans-serif; font-size: 10pt;\">[custom id=\"7\"]</span></span></td>\r\n</tr>\r\n<tr style=\"height: 25px;\">\r\n<td style=\"width: 25%; height: 25px; text-align: left; vertical-align: middle;\" colspan=\"4\"><span style=\"color: #99ccff;\"> </span></td>\r\n</tr>\r\n<tr style=\"height: 25px;\">\r\n<td style=\"width: 25%; height: 25px; text-align: left; vertical-align: middle;\" colspan=\"4\"><span style=\"color: #99ccff; font-family: arial,helvetica,sans-serif; font-size: 12pt;\"><strong>PERSONAL DETAILS</strong></span></td>\r\n</tr>\r\n<tr style=\"height: 25px;\">\r\n<td style=\"width: 25%; height: 25px; text-align: left; vertical-align: middle;\"><span style=\"color: #99ccff; font-family: arial,helvetica,sans-serif; font-size: 10pt;\">Name &amp; Surname</span></td>\r\n<td style=\"width: 25%; height: 25px; text-align: left; vertical-align: middle;\"><span style=\"color: #99ccff; font-family: arial,helvetica,sans-serif; font-size: 10pt;\">[thename]</span></td>\r\n<td style=\"width: 25%; height: 25px; text-align: left; vertical-align: middle;\"><span style=\"color: #99ccff; font-family: arial,helvetica,sans-serif; font-size: 10pt;\">Email Address</span></td>\r\n<td style=\"width: 25%; height: 25px; text-align: left; vertical-align: middle;\"><span style=\"color: #99ccff; font-family: arial,helvetica,sans-serif; font-size: 10pt;\">[email]</span></td>\r\n</tr>\r\n<tr style=\"height: 25px;\">\r\n<td style=\"width: 25%; height: 25px; text-align: left; vertical-align: middle;\"><span style=\"color: #99ccff; font-family: arial,helvetica,sans-serif; font-size: 10pt;\">Country</span></td>\r\n<td style=\"width: 25%; height: 25px; text-align: left; vertical-align: middle;\"><span style=\"color: #99ccff; font-family: arial,helvetica,sans-serif; font-size: 10pt;\">[country value=\"ZA\"]</span></td>\r\n<td style=\"width: 25%; height: 25px; text-align: left; vertical-align: middle;\"><span style=\"color: #99ccff; font-family: arial,helvetica,sans-serif; font-size: 10pt;\">Contact Phone</span></td>\r\n<td style=\"width: 25%; height: 25px; text-align: left; vertical-align: middle;\"><span style=\"color: #99ccff; font-family: arial,helvetica,sans-serif; font-size: 10pt;\">[custom text Phone *]</span></td>\r\n</tr>\r\n<tr style=\"height: 25px;\">\r\n<td style=\"width: 25%; height: 25px; text-align: left; vertical-align: middle;\"><span style=\"color: #99ccff; font-family: arial,helvetica,sans-serif; font-size: 10pt;\"> </span></td>\r\n<td style=\"width: 25%; height: 25px; text-align: left; vertical-align: middle;\"><span style=\"color: #99ccff; font-family: arial,helvetica,sans-serif; font-size: 10pt;\"> </span></td>\r\n<td style=\"width: 25%; height: 25px; text-align: left; vertical-align: middle;\"><span style=\"color: #99ccff;\"> </span></td>\r\n<td style=\"width: 25%; height: 25px; text-align: left; vertical-align: middle;\"><span style=\"color: #99ccff;\"> </span></td>\r\n</tr>\r\n<tr style=\"height: 25px;\">\r\n<td style=\"width: 25%; height: 25px; text-align: left; vertical-align: top;\" colspan=\"2\" rowspan=\"3\"><span style=\"color: #99ccff; font-family: arial,helvetica,sans-serif; font-size: 10pt;\">custom id=\"10\" title=\"Comments\"]</span><span style=\"color: #99ccff; font-family: arial,helvetica,sans-serif; font-size: 10pt;\"> </span><span style=\"color: #99ccff; font-family: arial,helvetica,sans-serif; font-size: 10pt;\"> </span><span style=\"color: #99ccff;\"> </span><span style=\"color: #99ccff;\"> </span></td>\r\n<td style=\"width: 25%; height: 25px; text-align: left; vertical-align: middle;\"><span style=\"color: #99ccff; font-family: arial,helvetica,sans-serif; font-size: 10pt;\">I accept <span style=\"text-decoration: underline;\"><strong> <a style=\"color: #99ccff; text-decoration: underline;\" href=\"http://msla.co.za/lodge/tcs/\">Terms &amp; Conditions</a></strong></span></span></td>\r\n<td style=\"width: 25%; height: 25px; text-align: left; vertical-align: middle;\"><span style=\"color: #99ccff; font-family: arial,helvetica,sans-serif; font-size: 10pt;\">[custom id=\"1\" title=\"Terms &amp; Conditions\"]</span></td>\r\n</tr>\r\n<tr style=\"height: 25px;\">\r\n<td style=\"width: 25%; height: 25px; text-align: left; vertical-align: middle;\"><span style=\"color: #99ccff; font-family: arial,helvetica,sans-serif; font-size: 10pt;\">Enter Security Code</span></td>\r\n<td style=\"width: 25%; height: 25px; text-align: left; vertical-align: middle;\"><span style=\"color: #99ccff; font-family: arial,helvetica,sans-serif; font-size: 16pt;\">[captcha]</span></td>\r\n</tr>\r\n<tr style=\"height: 25px;\">\r\n<td style=\"width: 25%; height: 25px; text-align: left; vertical-align: middle;\"><span style=\"color: #99ccff;\"> </span></td>\r\n<td style=\"width: 25%; height: 25px; text-align: left; vertical-align: middle;\"><span style=\"color: #99ccff; font-family: arial,helvetica,sans-serif; font-size: 10pt;\">[submit value=\"Submit\"]</span></td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n</div>', 'Form Templet', '', 'inherit', 'closed', 'closed', '', '1072-revision-v1', '', '', '2016-10-18 10:49:06', '2016-10-18 08:49:06', '', 1072, 'http://msla.co.za/lodge/1072-revision-v1/', 0, 'revision', '', 0),
(1293, 1, '2016-10-18 14:24:34', '2016-10-18 12:24:34', '[fullwidth background_color=\"\" background_image=\"http://msla.co.za/lodge/wp-content/uploads/2015/01/about-parallax11.jpg\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"center center\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"20\" padding_bottom=\"20\" padding_left=\"0\" padding_right=\"0\" hundred_percent=\"yes\" equal_height_columns=\"yes\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][one_sixth last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][/one_sixth][two_third last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][fusion_text][easy_form booknow style=\"none\" submit=\"Reservation successfully sent\" subsubmit=\"Please continue.\" credit=\"Reservation complete\" subcredit=\"You\'ll receive an email with the reservations details\" resourcename=\"Room\" pers=\"1\" resource=\"854\"]\r\n\r\n[dopbsp id=\"1\" lang=\"en\"][/fusion_text][/two_third][one_sixth last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][/one_sixth][/fullwidth]', 'Book Now', '', 'inherit', 'closed', 'closed', '', '855-revision-v1', '', '', '2016-10-18 14:24:34', '2016-10-18 12:24:34', '', 855, 'http://msla.co.za/lodge/855-revision-v1/', 0, 'revision', '', 0),
(1294, 1, '2016-10-18 18:05:06', '2016-10-18 16:05:06', '[fullwidth background_color=\"\" background_image=\"http://msla.co.za/lodge/wp-content/uploads/2015/01/about-parallax11.jpg\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"center center\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"20\" padding_bottom=\"20\" padding_left=\"0\" padding_right=\"0\" hundred_percent=\"yes\" equal_height_columns=\"yes\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][one_sixth last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][/one_sixth][two_third last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][fusion_text][easy_form booknow style=\"none\" submit=\"Reservation successfully sent\" subsubmit=\"Please continue.\" credit=\"Reservation complete\" subcredit=\"You\'ll receive an email with the reservations details\" resourcename=\"Room\" pers=\"1\" resource=\"854\"[/fusion_text][/two_third][one_sixth last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][/one_sixth][/fullwidth]', 'Book Now', '', 'inherit', 'closed', 'closed', '', '855-revision-v1', '', '', '2016-10-18 18:05:06', '2016-10-18 16:05:06', '', 855, 'http://msla.co.za/lodge/855-revision-v1/', 0, 'revision', '', 0),
(1295, 1, '2016-10-18 18:08:58', '2016-10-18 16:08:58', '[fullwidth background_color=\"\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding_top=\"20\" padding_bottom=\"20\" padding_left=\"\" padding_right=\"\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][one_sixth last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][/one_sixth][two_third last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][fusion_text][dopbsp id=\"1\" lang=\"en\"][/fusion_text][/two_third][one_sixth last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][/one_sixth][/fullwidth]', 'Reservations', '', 'inherit', 'closed', 'closed', '', '1182-revision-v1', '', '', '2016-10-18 18:08:58', '2016-10-18 16:08:58', '', 1182, 'http://msla.co.za/lodge/1182-revision-v1/', 0, 'revision', '', 0),
(1296, 1, '2016-10-18 18:10:38', '2016-10-18 16:10:38', '[fullwidth background_color=\"\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding_top=\"20\" padding_bottom=\"20\" padding_left=\"\" padding_right=\"\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][one_full last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][fusion_text][dopbsp id=\"1\" lang=\"en\"][/fusion_text][/one_full][/fullwidth]', 'Reservations', '', 'inherit', 'closed', 'closed', '', '1182-revision-v1', '', '', '2016-10-18 18:10:38', '2016-10-18 16:10:38', '', 1182, 'http://msla.co.za/lodge/1182-revision-v1/', 0, 'revision', '', 0),
(1297, 1, '2016-10-23 14:08:08', '2016-10-23 12:08:08', '<h3>I am please to inform you that we do have availability at the lodge for the period requested.</h3>\r\nPlease indicate if you would like to proceed with the booking, and you will receive an invoice via email.\r\n\r\nOnce invoiced we will hold your booking for a 24 hours period pending payment, as set out below.\r\n<ul>\r\n 	<li>A 50% deposit will be required to secure this booking, the balance is due on or before arrival.</li>\r\n 	<li>However, if date of booking is less than 2 weeks from the arrival date, the deposit becomes full payment.</li>\r\n 	<li>Please send through proof of payment to; fax: 0867673011 or email: info@msla.co.za</li>\r\n 	<li>For \'Cancelation &amp; refund policies\', &amp; \'Terms &amp; Conditions\' please visit http://msla.co.za/lodge/tcs/</li>\r\n</ul>\r\nPlease feel free to contact either Sharyn or Lance at 0317656046 if you have any questions.\r\n\r\nRegards, Lance\r\n\r\n___\r\n\r\n|Details|', 'Pinpoint Approval Draft', '', 'publish', 'closed', 'closed', '', 'pinpoint-approval-draft', '', '', '2016-10-23 14:08:08', '2016-10-23 12:08:08', '', 0, 'http://msla.co.za/lodge/?page_id=1297', 0, 'page', '', 0),
(1298, 1, '2016-10-20 19:44:52', '2016-10-20 17:44:52', '<h3>Congratulations! Your booking request has been approved and will be held for 24 hours pending payment.</h3>\r\nBanking Details\r\n<ul>\r\n 	<li>Nedbank</li>\r\n 	<li>Branch Code: 164826 [Coastal &amp; Inland Business Unit] or 198765</li>\r\n 	<li>Account Number: 1648098916</li>\r\n 	<li>Type of Account: CHEQUE.</li>\r\n</ul>\r\n<p style=\"padding-left: 30px;\">____________________</p>\r\n\r\n<ul>\r\n 	<li>A 50% deposit is required to secure this booking, the balance is due on or before arrival.</li>\r\n 	<li>However, if date of booking is less than 2 weeks from the arrival date, the deposit becomes full payment.</li>\r\n 	<li>Please email proof of payment.</li>\r\n</ul>\r\nCheck-in Times\r\n<ul>\r\n 	<li>Check-in time from 14h00 to 16h00 (Please advise if we must prepare for a late arrival)</li>\r\n 	<li>Check-out before 10h00</li>\r\n</ul>\r\nUnfortunately we do not;\r\n<ul>\r\n 	<li>Provide Laundry Service</li>\r\n 	<li>Allow Pets</li>\r\n 	<li>Allow functions, parties or extra guests unless by prior arrangement and at owners discretion.</li>\r\n</ul>\r\nBooking Details\r\n\r\n|FORM|\r\n\r\n|DETAILS|\r\n\r\n|EXTRAS|\r\n\r\n|DISCOUNT|\r\n\r\n|FEES|\r\n\r\n&nbsp;', 'test', '', 'inherit', 'closed', 'closed', '', '1297-revision-v1', '', '', '2016-10-20 19:44:52', '2016-10-20 17:44:52', '', 1297, 'http://msla.co.za/lodge/1297-revision-v1/', 0, 'revision', '', 0),
(1299, 1, '2016-10-22 12:23:21', '2016-10-22 10:23:21', '<h3>Congratulations! Your booking request has been approved and will be held for 24 hours pending payment.</h3>\r\nBanking Details\r\n<ul>\r\n 	<li>Nedbank</li>\r\n 	<li>Branch Code: 164826 [Coastal &amp; Inland Business Unit] or 198765</li>\r\n 	<li>Account Number: 1648098916</li>\r\n 	<li>Type of Account: CHEQUE.</li>\r\n</ul>\r\n<p style=\"padding-left: 30px;\">____________________</p>\r\n\r\n<ul>\r\n 	<li>A 50% deposit is required to secure this booking, the balance is due on or before arrival.</li>\r\n 	<li>However, if date of booking is less than 2 weeks from the arrival date, the deposit becomes full payment.</li>\r\n 	<li>Please email proof of payment.</li>\r\n</ul>\r\nCheck-in Times\r\n<ul>\r\n 	<li>Check-in time from 14h00 to 16h00 (Please advise if we must prepare for a late arrival)</li>\r\n 	<li>Check-out before 10h00</li>\r\n</ul>\r\nUnfortunately we do not;\r\n<ul>\r\n 	<li>Provide Laundry Service</li>\r\n 	<li>Allow Pets</li>\r\n 	<li>Allow functions, parties or extra guests unless by prior arrangement and at owners discretion.</li>\r\n</ul>\r\nBooking Details\r\n\r\n|FORM|\r\n\r\n|DETAILS|\r\n\r\n|EXTRAS|\r\n\r\n|DISCOUNT|\r\n\r\n|FEES|\r\n\r\n&nbsp;', 'Pinpoint Approval Draft', '', 'inherit', 'closed', 'closed', '', '1297-revision-v1', '', '', '2016-10-22 12:23:21', '2016-10-22 10:23:21', '', 1297, 'http://msla.co.za/lodge/1297-revision-v1/', 0, 'revision', '', 0),
(1300, 1, '2016-10-22 17:15:49', '0000-00-00 00:00:00', '<h3>Thank you for your booking request.</h3>\r\nI just want to check that we are not overbooking as we subscribe to other booking agents. I will get back you as soon as possible.\r\n\r\nIf you need any more information please don\'t hesitate to contact one of us on 0317656046 or 0828297304.\r\n\r\nKind Regards,\r\n\r\nLance &amp; Sharyn', 'Pinpoint Enquiry Draft', '', 'draft', 'closed', 'closed', '', '', '', '', '2016-10-22 17:15:49', '2016-10-22 15:15:49', '', 0, 'http://msla.co.za/lodge/?page_id=1300', 0, 'page', '', 0),
(1301, 1, '2016-10-22 17:15:49', '2016-10-22 15:15:49', '<h3>Thank you for your booking request.</h3>\r\nI just want to check that we are not overbooking as we subscribe to other booking agents. I will get back you as soon as possible.\r\n\r\nIf you need any more information please don\'t hesitate to contact one of us on 0317656046 or 0828297304.\r\n\r\nKind Regards,\r\n\r\nLance &amp; Sharyn', 'Pinpoint Enquiry Draft', '', 'inherit', 'closed', 'closed', '', '1300-revision-v1', '', '', '2016-10-22 17:15:49', '2016-10-22 15:15:49', '', 1300, 'http://msla.co.za/lodge/1300-revision-v1/', 0, 'revision', '', 0),
(1302, 1, '2016-10-23 13:53:08', '2016-10-23 11:53:08', '<h3>I am please to inform you that we do have availability at the lodge for the period requested.</h3>\r\nPlease indicate if you would like to proceed with the booking, and you will receive an invoice via email.\r\n\r\nOnce invoiced we will hold your booking for a 24 hours period pending payment, as set out below.\r\n<ul>\r\n 	<li>A 50% deposit will be required to secure this booking, the balance is due on or before arrival.</li>\r\n 	<li>However, if date of booking is less than 2 weeks from the arrival date, the deposit becomes full payment.</li>\r\n 	<li>Please fax: 0867673011 or email: info@msla.co.za proof of payment</li>\r\n 	<li>For \'Cancelation &amp; refund policies\', &amp; \'Terms &amp; Conditions\' please visit http://msla.co.za/lodge/tcs/</li>\r\n</ul>\r\nPlease feel free to contact either Sharyn or Lance at 0317656046 if you have any questions.\r\n\r\nRegards, Lance\r\n\r\n___\r\n\r\n|Details|', 'Pinpoint Approval Draft', '', 'inherit', 'closed', 'closed', '', '1297-revision-v1', '', '', '2016-10-23 13:53:08', '2016-10-23 11:53:08', '', 1297, 'http://msla.co.za/lodge/1297-revision-v1/', 0, 'revision', '', 0),
(1303, 1, '2016-10-23 14:08:08', '2016-10-23 12:08:08', '<h3>I am please to inform you that we do have availability at the lodge for the period requested.</h3>\r\nPlease indicate if you would like to proceed with the booking, and you will receive an invoice via email.\r\n\r\nOnce invoiced we will hold your booking for a 24 hours period pending payment, as set out below.\r\n<ul>\r\n 	<li>A 50% deposit will be required to secure this booking, the balance is due on or before arrival.</li>\r\n 	<li>However, if date of booking is less than 2 weeks from the arrival date, the deposit becomes full payment.</li>\r\n 	<li>Please send through proof of payment to; fax: 0867673011 or email: info@msla.co.za</li>\r\n 	<li>For \'Cancelation &amp; refund policies\', &amp; \'Terms &amp; Conditions\' please visit http://msla.co.za/lodge/tcs/</li>\r\n</ul>\r\nPlease feel free to contact either Sharyn or Lance at 0317656046 if you have any questions.\r\n\r\nRegards, Lance\r\n\r\n___\r\n\r\n|Details|', 'Pinpoint Approval Draft', '', 'inherit', 'closed', 'closed', '', '1297-revision-v1', '', '', '2016-10-23 14:08:08', '2016-10-23 12:08:08', '', 1297, 'http://msla.co.za/lodge/1297-revision-v1/', 0, 'revision', '', 0);
INSERT INTO `wp_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(1304, 1, '2016-10-23 14:18:40', '2016-10-23 12:18:40', '[fullwidth background_color=\"#f0f0ed\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"20\" padding_bottom=\"20\" padding_left=\"0px\" padding_right=\"0px\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][one_half last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][separator style_type=\"single\" top_margin=\"0\" bottom_margin=\"30\" sep_color=\"#000000\" border_size=\"\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"170px\" alignment=\"center\" class=\"separator-left\" id=\"\"][fusion_text]\r\n<h1 style=\"text-align: center;\">No Fancy Star Grading\r\nNo Room Service\r\nNo Bed Turn-downs\r\nNo Rose Petals in the Bath water</h1>\r\n<h1 style=\"text-align: center;\">... just old fashioned homely comforts</h1>\r\n[/fusion_text][/one_half][one_half last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][fusion_text]\r\n<h1 style=\"text-align: justify;\">5 BEDROOM FAMILY LODGE</h1>\r\n<h3 style=\"text-align: justify;\">We are a four season lodge, because there’s always something to celebrate… We offer comfort, relaxation and privacy right in the heart of 1000 Hills. The Forest, the Gardens, the Atmosphere all speak to  Rest  &amp; Relaxation.</h3>\r\n[/fusion_text][separator style_type=\"single\" top_margin=\"0\" bottom_margin=\"30\" sep_color=\"#000000\" border_size=\"\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"170px\" alignment=\"left\" class=\"separator-left\" id=\"\"][checklist icon=\"fa-check\" iconcolor=\"\" circle=\"yes\" circlecolor=\"\" size=\"13px\" class=\"\" id=\"\"][li_item icon=\"\"]15% Discount on Accommodation - <a href=\"http://msla.co.za/lodge/reservations/\">Book Now!</a>[/li_item][li_item icon=\"\"]25% Discount on Accommodation - Stay 3 days or more[/li_item][li_item icon=\"\"][/li_item][/checklist][/one_half][/fullwidth][fullwidth background_color=\"#f0f0ed\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"20\" padding_bottom=\"20\" padding_left=\"0px\" padding_right=\"0px\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][one_half last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][fusion_text]\r\n<h3 style=\"text-align: justify;\">Set in the rolling peaks and valleys of a thousand hills surrounded by a canopy of indigenous trees, you will find that horses still have right of way, we certainly offer the best of both worlds, farm and charm coupled with modern amenities that will have you feeling relaxed and rejuvenated.</h3>\r\n<h3 style=\"text-align: justify;\">We know that sometimes you are searching for a romantic getaway or maybe a few days away with old friends. Other times you are searching for a place to host a weekend, family reunion or a business retreat. In addition to nightly room rentals, our lodge is also available for meetings, retreats  and makes the perfect place for a wedding party to stay together and get ready for the big day. Regardless, with our five comfortable and cozy guest bedrooms, multiple garden spaces and hideaways, and a  large private deck  where you can take a nap or read a book we definitely have the room for you!</h3>\r\n<h3 style=\"text-align: justify;\">Evenings are quiet and peaceful taking you far away from the business of city life. This is a unique and memorable country experience. We look forward to having you as a guest!</h3>\r\n[/fusion_text][/one_half][one_half last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][fusion_text]\r\n<h3 style=\"text-align: justify;\">Our lodge has been in our family for years and has recently been beautifully renovated. Five rooms all with en-suite showers lead off your own large central lounge, featuring a 36 foot high vaulted ceiling, offering spacious living, dining, and a bar/conversational lounge area which includes a fitted kitchenette, all adding to a sense of homely comfort. Sumptuous meals can be provided on request and served on the bottom deck at the swimming pool.</h3>\r\n<h3 style=\"text-align: justify;\">Be lulled to sleep by the sound of the waterfall and tinkling stream just outside your window, waking from a peaceful night\'s sleep in a pillow-top bed dressed in luxurious linens to coddle you in ultimate comfort.</h3>\r\n<h3 style=\"text-align: justify;\">Our property boasts many different species of birds and animals. We have a resident otter, a family of wild bush pigs,  a family of rock rabbits, porcupine, little blue duikers, a variety of different frogs and an abundance of bird life, including the occasional snakes that pass through!</h3>\r\n[/fusion_text][/one_half][/fullwidth][fullwidth background_color=\"#f0f0ed\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"20\" padding_bottom=\"20\" padding_left=\"0px\" padding_right=\"0px\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][fusion_text]\r\n<h1 style=\"text-align: center;\">Gallery</h1>\r\n[/fusion_text][separator style_type=\"single\" top_margin=\"\" bottom_margin=\"40\" sep_color=\"#000000\" border_size=\"\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"170px\" alignment=\"\" class=\"\" id=\"\"][one_sixth last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][/one_sixth][two_third last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][fusion_text]\r\n<h3 style=\"text-align: justify;\">The Lodge is open, spacious, comfortable and homely. During hot summer days, sit and bask in the sun on the deck  with one of our  picnic specials. In winter, snuggle up with a good book or challenge one another to a friendly board game in the glassed nook area .</h3>\r\n[/fusion_text][/two_third][one_sixth last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][/one_sixth][/fullwidth][fullwidth background_color=\"#f0f0ed\" background_image=\"http://localhost/assagaylodge/wp-content/uploads/2015/01/Wood_Texture.jpg\" background_parallax=\"fixed\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"30\" padding_bottom=\"10\" padding_left=\"0\" padding_right=\"0\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][recent_works layout=\"grid\" picture_size=\"auto\" boxed_text=\"unboxed\" filters=\"no\" columns=\"3\" column_spacing=\"12\" cat_slug=\"the-lodge\" exclude_cats=\"\" number_posts=\"9\" offset=\"\" excerpt_length=\"35\" strip_html=\"yes\" carousel_layout=\"title_on_rollover\" scroll_items=\"\" autoplay=\"no\" show_nav=\"yes\" mouse_scroll=\"no\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][/recent_works][/fullwidth][fullwidth background_color=\"#f0f0ed\" background_image=\"\" background_parallax=\"fixed\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"20\" padding_bottom=\"20\" padding_left=\"0px\" padding_right=\"0px\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][fusion_text]\r\n<h1 style=\"text-align: center;\">BEDROOMS</h1>\r\n[/fusion_text][separator style_type=\"single\" top_margin=\"\" bottom_margin=\"20\" sep_color=\"#000000\" border_size=\"\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"170px\" alignment=\"\" class=\"\" id=\"\"][one_sixth last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][/one_sixth][two_third last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][fusion_text]\r\n<h3 style=\"text-align: justify;\">When it comes to our bedrooms we’re proud to say we offer something a little more special. One of five  lovingly and tastefully decorated guest rooms. Soft gray decor soothes the senses providing a peaceful, blissfully comfortable rest from your travels and hectic lives.</h3>\r\n<h3 style=\"text-align: justify;\">Our  bedrooms are spacious, clean, comfortable all en-suite, equipped with either king size or queen size beds. Each room sleeps two guests. The rooms have high ceilings, wall heaters &amp; ceiling fans. Beds all have electric blankets in Winter, 100% cotton percale sheets and thick hyper allergenic microfiber duvets and pillows. All guest rooms are cleaned with organic and green products. Amenities include hairdryers in each room. Three rooms feature King-sized beds  of which two can be  split into two single beds. Two  rooms can therefore be changed into a twin room upon request. Two rooms feature a Queen-sized double bed. These beds cannot be split into twin beds.</h3>\r\n[/fusion_text][/two_third][one_sixth last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][/one_sixth][/fullwidth][fullwidth background_color=\"\" background_image=\"http://localhost/assagaylodge/wp-content/uploads/2015/01/DSC01516-1148-x-764.jpg\" background_parallax=\"fixed\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"center center\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"20\" padding_bottom=\"20\" padding_left=\"0\" padding_right=\"0\" hundred_percent=\"no\" equal_height_columns=\"yes\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][recent_works layout=\"grid\" picture_size=\"auto\" boxed_text=\"unboxed\" filters=\"no\" columns=\"3\" column_spacing=\"12\" cat_slug=\"bedrooms\" exclude_cats=\"\" number_posts=\"6\" offset=\"\" excerpt_length=\"35\" strip_html=\"yes\" carousel_layout=\"title_on_rollover\" scroll_items=\"\" autoplay=\"no\" show_nav=\"yes\" mouse_scroll=\"no\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][/recent_works][/fullwidth][fullwidth background_color=\"#f0f0ed\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"20\" padding_bottom=\"20\" padding_left=\"0\" padding_right=\"0\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][fusion_text]\r\n<h1 style=\"text-align: center;\">GARDENS</h1>\r\n[/fusion_text][separator style_type=\"single\" top_margin=\"\" bottom_margin=\"20\" sep_color=\"#000000\" border_size=\"\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"170px\" alignment=\"\" class=\"\" id=\"\"][one_sixth last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][/one_sixth][two_third last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][fusion_text]\r\n<h3 style=\"text-align: justify;\">The garden is large and offers many secluded spots to lose yourself in a book with a glass of wine underneath the shade of a tree, listening to the sounds of the birds and smelling the beautiful flowers.</h3>\r\n[/fusion_text][/two_third][one_sixth last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][/one_sixth][recent_works layout=\"grid\" picture_size=\"auto\" boxed_text=\"boxed\" filters=\"no\" columns=\"3\" column_spacing=\"12\" cat_slug=\"gardens\" exclude_cats=\"\" number_posts=\"9\" offset=\"\" excerpt_length=\"35\" strip_html=\"yes\" carousel_layout=\"title_on_rollover\" scroll_items=\"\" autoplay=\"no\" show_nav=\"yes\" mouse_scroll=\"no\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][/recent_works][/fullwidth][fullwidth background_color=\"#ffffff\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"65px\" padding_bottom=\"65px\" padding_left=\"0px\" padding_right=\"0px\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][button link=\"http://localhost/assagaylodge/book-now/\" color=\"default\" size=\"xlarge\" stretch=\"default\" type=\"3d\" shape=\"round\" target=\"_self\" title=\"\" gradient_colors=\"#f0f0ed|#f0f0ed\" gradient_hover_colors=\"#6666a4|#6666a4\" accent_color=\"#ffffff\" accent_hover_color=\"#ffffff\" bevel_color=\"\" border_width=\"0px\" icon=\"\" icon_position=\"left\" icon_divider=\"no\" modal=\"\" animation_type=\"0\" animation_direction=\"left\" animation_speed=\"1\" animation_offset=\"\" alignment=\"center\" class=\"\" id=\"\"]Make A Reservation Enquiry[/button][/fullwidth]', 'Home', '', 'inherit', 'closed', 'closed', '', '7-revision-v1', '', '', '2016-10-23 14:18:40', '2016-10-23 12:18:40', '', 7, 'http://msla.co.za/lodge/7-revision-v1/', 0, 'revision', '', 0),
(1305, 1, '2016-10-23 14:25:58', '2016-10-23 12:25:58', '[fullwidth background_color=\"#f0f0ed\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"20\" padding_bottom=\"20\" padding_left=\"0px\" padding_right=\"0px\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][one_half last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][separator style_type=\"single\" top_margin=\"0\" bottom_margin=\"30\" sep_color=\"#000000\" border_size=\"\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"170px\" alignment=\"center\" class=\"separator-left\" id=\"\"][fusion_text]\r\n<h1 style=\"text-align: center;\">No Fancy Star Grading\r\nNo Room Service\r\nNo Bed Turn-downs\r\nNo Rose Petals in the Bath water</h1>\r\n<h1 style=\"text-align: center;\">... just old fashioned homely comforts</h1>\r\n[/fusion_text][/one_half][one_half last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][fusion_text]\r\n<h1 style=\"text-align: justify;\">5 BEDROOM FAMILY LODGE</h1>\r\n<h3 style=\"text-align: justify;\">We are a four season lodge, because there’s always something to celebrate… We offer comfort, relaxation and privacy right in the heart of 1000 Hills. The Forest, the Gardens, the Atmosphere all speak to  Rest  &amp; Relaxation.</h3>\r\n[/fusion_text][separator style_type=\"single\" top_margin=\"0\" bottom_margin=\"30\" sep_color=\"#000000\" border_size=\"\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"170px\" alignment=\"left\" class=\"separator-left\" id=\"\"][checklist icon=\"fa-align-justify\" iconcolor=\"\" circle=\"yes\" circlecolor=\"\" size=\"13px\" class=\"\" id=\"\"][li_item icon=\"\"]\r\n<h3>Soon: 15% OFF on Accommodation - <a href=\"http://msla.co.za/lodge/reservations/\">Book Now!</a></h3>\r\n[/li_item][li_item icon=\"\"]\r\n<h3>Soon: 25% OFF on Accommodation - Stay 3 days or more - <a href=\"http://msla.co.za/lodge/reservations/\">Book Now!</a></h3>\r\n[/li_item][/checklist][/one_half][/fullwidth][fullwidth background_color=\"#f0f0ed\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"20\" padding_bottom=\"20\" padding_left=\"0px\" padding_right=\"0px\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][one_half last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][fusion_text]\r\n<h3 style=\"text-align: justify;\">Set in the rolling peaks and valleys of a thousand hills surrounded by a canopy of indigenous trees, you will find that horses still have right of way, we certainly offer the best of both worlds, farm and charm coupled with modern amenities that will have you feeling relaxed and rejuvenated.</h3>\r\n<h3 style=\"text-align: justify;\">We know that sometimes you are searching for a romantic getaway or maybe a few days away with old friends. Other times you are searching for a place to host a weekend, family reunion or a business retreat. In addition to nightly room rentals, our lodge is also available for meetings, retreats  and makes the perfect place for a wedding party to stay together and get ready for the big day. Regardless, with our five comfortable and cozy guest bedrooms, multiple garden spaces and hideaways, and a  large private deck  where you can take a nap or read a book we definitely have the room for you!</h3>\r\n<h3 style=\"text-align: justify;\">Evenings are quiet and peaceful taking you far away from the business of city life. This is a unique and memorable country experience. We look forward to having you as a guest!</h3>\r\n[/fusion_text][/one_half][one_half last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][fusion_text]\r\n<h3 style=\"text-align: justify;\">Our lodge has been in our family for years and has recently been beautifully renovated. Five rooms all with en-suite showers lead off your own large central lounge, featuring a 36 foot high vaulted ceiling, offering spacious living, dining, and a bar/conversational lounge area which includes a fitted kitchenette, all adding to a sense of homely comfort. Sumptuous meals can be provided on request and served on the bottom deck at the swimming pool.</h3>\r\n<h3 style=\"text-align: justify;\">Be lulled to sleep by the sound of the waterfall and tinkling stream just outside your window, waking from a peaceful night\'s sleep in a pillow-top bed dressed in luxurious linens to coddle you in ultimate comfort.</h3>\r\n<h3 style=\"text-align: justify;\">Our property boasts many different species of birds and animals. We have a resident otter, a family of wild bush pigs,  a family of rock rabbits, porcupine, little blue duikers, a variety of different frogs and an abundance of bird life, including the occasional snakes that pass through!</h3>\r\n[/fusion_text][/one_half][/fullwidth][fullwidth background_color=\"#f0f0ed\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"20\" padding_bottom=\"20\" padding_left=\"0px\" padding_right=\"0px\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][fusion_text]\r\n<h1 style=\"text-align: center;\">Gallery</h1>\r\n[/fusion_text][separator style_type=\"single\" top_margin=\"\" bottom_margin=\"40\" sep_color=\"#000000\" border_size=\"\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"170px\" alignment=\"\" class=\"\" id=\"\"][one_sixth last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][/one_sixth][two_third last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][fusion_text]\r\n<h3 style=\"text-align: justify;\">The Lodge is open, spacious, comfortable and homely. During hot summer days, sit and bask in the sun on the deck  with one of our  picnic specials. In winter, snuggle up with a good book or challenge one another to a friendly board game in the glassed nook area .</h3>\r\n[/fusion_text][/two_third][one_sixth last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][/one_sixth][/fullwidth][fullwidth background_color=\"#f0f0ed\" background_image=\"http://localhost/assagaylodge/wp-content/uploads/2015/01/Wood_Texture.jpg\" background_parallax=\"fixed\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"30\" padding_bottom=\"10\" padding_left=\"0\" padding_right=\"0\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][recent_works layout=\"grid\" picture_size=\"auto\" boxed_text=\"unboxed\" filters=\"no\" columns=\"3\" column_spacing=\"12\" cat_slug=\"the-lodge\" exclude_cats=\"\" number_posts=\"9\" offset=\"\" excerpt_length=\"35\" strip_html=\"yes\" carousel_layout=\"title_on_rollover\" scroll_items=\"\" autoplay=\"no\" show_nav=\"yes\" mouse_scroll=\"no\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][/recent_works][/fullwidth][fullwidth background_color=\"#f0f0ed\" background_image=\"\" background_parallax=\"fixed\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"20\" padding_bottom=\"20\" padding_left=\"0px\" padding_right=\"0px\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][fusion_text]\r\n<h1 style=\"text-align: center;\">BEDROOMS</h1>\r\n[/fusion_text][separator style_type=\"single\" top_margin=\"\" bottom_margin=\"20\" sep_color=\"#000000\" border_size=\"\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"170px\" alignment=\"\" class=\"\" id=\"\"][one_sixth last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][/one_sixth][two_third last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][fusion_text]\r\n<h3 style=\"text-align: justify;\">When it comes to our bedrooms we’re proud to say we offer something a little more special. One of five  lovingly and tastefully decorated guest rooms. Soft gray decor soothes the senses providing a peaceful, blissfully comfortable rest from your travels and hectic lives.</h3>\r\n<h3 style=\"text-align: justify;\">Our  bedrooms are spacious, clean, comfortable all en-suite, equipped with either king size or queen size beds. Each room sleeps two guests. The rooms have high ceilings, wall heaters &amp; ceiling fans. Beds all have electric blankets in Winter, 100% cotton percale sheets and thick hyper allergenic microfiber duvets and pillows. All guest rooms are cleaned with organic and green products. Amenities include hairdryers in each room. Three rooms feature King-sized beds  of which two can be  split into two single beds. Two  rooms can therefore be changed into a twin room upon request. Two rooms feature a Queen-sized double bed. These beds cannot be split into twin beds.</h3>\r\n[/fusion_text][/two_third][one_sixth last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][/one_sixth][/fullwidth][fullwidth background_color=\"\" background_image=\"http://localhost/assagaylodge/wp-content/uploads/2015/01/DSC01516-1148-x-764.jpg\" background_parallax=\"fixed\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"center center\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"20\" padding_bottom=\"20\" padding_left=\"0\" padding_right=\"0\" hundred_percent=\"no\" equal_height_columns=\"yes\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][recent_works layout=\"grid\" picture_size=\"auto\" boxed_text=\"unboxed\" filters=\"no\" columns=\"3\" column_spacing=\"12\" cat_slug=\"bedrooms\" exclude_cats=\"\" number_posts=\"6\" offset=\"\" excerpt_length=\"35\" strip_html=\"yes\" carousel_layout=\"title_on_rollover\" scroll_items=\"\" autoplay=\"no\" show_nav=\"yes\" mouse_scroll=\"no\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][/recent_works][/fullwidth][fullwidth background_color=\"#f0f0ed\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"20\" padding_bottom=\"20\" padding_left=\"0\" padding_right=\"0\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][fusion_text]\r\n<h1 style=\"text-align: center;\">GARDENS</h1>\r\n[/fusion_text][separator style_type=\"single\" top_margin=\"\" bottom_margin=\"20\" sep_color=\"#000000\" border_size=\"\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"170px\" alignment=\"\" class=\"\" id=\"\"][one_sixth last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][/one_sixth][two_third last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][fusion_text]\r\n<h3 style=\"text-align: justify;\">The garden is large and offers many secluded spots to lose yourself in a book with a glass of wine underneath the shade of a tree, listening to the sounds of the birds and smelling the beautiful flowers.</h3>\r\n[/fusion_text][/two_third][one_sixth last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][/one_sixth][recent_works layout=\"grid\" picture_size=\"auto\" boxed_text=\"boxed\" filters=\"no\" columns=\"3\" column_spacing=\"12\" cat_slug=\"gardens\" exclude_cats=\"\" number_posts=\"9\" offset=\"\" excerpt_length=\"35\" strip_html=\"yes\" carousel_layout=\"title_on_rollover\" scroll_items=\"\" autoplay=\"no\" show_nav=\"yes\" mouse_scroll=\"no\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][/recent_works][/fullwidth][fullwidth background_color=\"#ffffff\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"65px\" padding_bottom=\"65px\" padding_left=\"0px\" padding_right=\"0px\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][button link=\"http://localhost/assagaylodge/book-now/\" color=\"default\" size=\"xlarge\" stretch=\"default\" type=\"3d\" shape=\"round\" target=\"_self\" title=\"\" gradient_colors=\"#f0f0ed|#f0f0ed\" gradient_hover_colors=\"#6666a4|#6666a4\" accent_color=\"#ffffff\" accent_hover_color=\"#ffffff\" bevel_color=\"\" border_width=\"0px\" icon=\"\" icon_position=\"left\" icon_divider=\"no\" modal=\"\" animation_type=\"0\" animation_direction=\"left\" animation_speed=\"1\" animation_offset=\"\" alignment=\"center\" class=\"\" id=\"\"]Make A Reservation Enquiry[/button][/fullwidth]', 'Home', '', 'inherit', 'closed', 'closed', '', '7-revision-v1', '', '', '2016-10-23 14:25:58', '2016-10-23 12:25:58', '', 7, 'http://msla.co.za/lodge/7-revision-v1/', 0, 'revision', '', 0);
INSERT INTO `wp_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(1306, 1, '2016-10-23 14:28:29', '2016-10-23 12:28:29', '[fullwidth background_color=\"#f0f0ed\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"20\" padding_bottom=\"20\" padding_left=\"0px\" padding_right=\"0px\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][one_half last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][separator style_type=\"single\" top_margin=\"0\" bottom_margin=\"30\" sep_color=\"#000000\" border_size=\"\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"170px\" alignment=\"center\" class=\"separator-left\" id=\"\"][fusion_text]\r\n<h1 style=\"text-align: center;\">No Fancy Star Grading\r\nNo Room Service\r\nNo Bed Turn-downs\r\nNo Rose Petals in the Bath water</h1>\r\n<h1 style=\"text-align: center;\">... just old fashioned homely comforts</h1>\r\n[/fusion_text][/one_half][one_half last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][fusion_text]\r\n<h1 style=\"text-align: justify;\">5 BEDROOM FAMILY LODGE</h1>\r\n<h3 style=\"text-align: justify;\">We are a four season lodge, because there’s always something to celebrate… We offer comfort, relaxation and privacy right in the heart of 1000 Hills. The Forest, the Gardens, the Atmosphere all speak to  Rest  &amp; Relaxation.</h3>\r\n[/fusion_text][separator style_type=\"single\" top_margin=\"0\" bottom_margin=\"30\" sep_color=\"#000000\" border_size=\"\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"170px\" alignment=\"left\" class=\"separator-left\" id=\"\"][title size=\"1\" content_align=\"left\" style_type=\"default\" sep_color=\"\" margin_top=\"\" margin_bottom=\"\" class=\"\" id=\"\"]\r\n<h2 style=\"text-align: center;\">Specials</h2>\r\n[/title][checklist icon=\"fa-align-justify\" iconcolor=\"\" circle=\"yes\" circlecolor=\"\" size=\"13px\" class=\"\" id=\"\"][li_item icon=\"\"]\r\n<h3>Soon: 15% OFF on Accommodation - <a href=\"http://msla.co.za/lodge/reservations/\">Book Now!</a></h3>\r\n[/li_item][li_item icon=\"\"]\r\n<h3>Soon: 25% OFF on Accommodation - Stay 3 days or more - <a href=\"http://msla.co.za/lodge/reservations/\">Book Now!</a></h3>\r\n[/li_item][/checklist][/one_half][/fullwidth][fullwidth background_color=\"#f0f0ed\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"20\" padding_bottom=\"20\" padding_left=\"0px\" padding_right=\"0px\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][one_half last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][fusion_text]\r\n<h3 style=\"text-align: justify;\">Set in the rolling peaks and valleys of a thousand hills surrounded by a canopy of indigenous trees, you will find that horses still have right of way, we certainly offer the best of both worlds, farm and charm coupled with modern amenities that will have you feeling relaxed and rejuvenated.</h3>\r\n<h3 style=\"text-align: justify;\">We know that sometimes you are searching for a romantic getaway or maybe a few days away with old friends. Other times you are searching for a place to host a weekend, family reunion or a business retreat. In addition to nightly room rentals, our lodge is also available for meetings, retreats  and makes the perfect place for a wedding party to stay together and get ready for the big day. Regardless, with our five comfortable and cozy guest bedrooms, multiple garden spaces and hideaways, and a  large private deck  where you can take a nap or read a book we definitely have the room for you!</h3>\r\n<h3 style=\"text-align: justify;\">Evenings are quiet and peaceful taking you far away from the business of city life. This is a unique and memorable country experience. We look forward to having you as a guest!</h3>\r\n[/fusion_text][/one_half][one_half last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][fusion_text]\r\n<h3 style=\"text-align: justify;\">Our lodge has been in our family for years and has recently been beautifully renovated. Five rooms all with en-suite showers lead off your own large central lounge, featuring a 36 foot high vaulted ceiling, offering spacious living, dining, and a bar/conversational lounge area which includes a fitted kitchenette, all adding to a sense of homely comfort. Sumptuous meals can be provided on request and served on the bottom deck at the swimming pool.</h3>\r\n<h3 style=\"text-align: justify;\">Be lulled to sleep by the sound of the waterfall and tinkling stream just outside your window, waking from a peaceful night\'s sleep in a pillow-top bed dressed in luxurious linens to coddle you in ultimate comfort.</h3>\r\n<h3 style=\"text-align: justify;\">Our property boasts many different species of birds and animals. We have a resident otter, a family of wild bush pigs,  a family of rock rabbits, porcupine, little blue duikers, a variety of different frogs and an abundance of bird life, including the occasional snakes that pass through!</h3>\r\n[/fusion_text][/one_half][/fullwidth][fullwidth background_color=\"#f0f0ed\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"20\" padding_bottom=\"20\" padding_left=\"0px\" padding_right=\"0px\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][fusion_text]\r\n<h1 style=\"text-align: center;\">Gallery</h1>\r\n[/fusion_text][separator style_type=\"single\" top_margin=\"\" bottom_margin=\"40\" sep_color=\"#000000\" border_size=\"\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"170px\" alignment=\"\" class=\"\" id=\"\"][one_sixth last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][/one_sixth][two_third last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][fusion_text]\r\n<h3 style=\"text-align: justify;\">The Lodge is open, spacious, comfortable and homely. During hot summer days, sit and bask in the sun on the deck  with one of our  picnic specials. In winter, snuggle up with a good book or challenge one another to a friendly board game in the glassed nook area .</h3>\r\n[/fusion_text][/two_third][one_sixth last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][/one_sixth][/fullwidth][fullwidth background_color=\"#f0f0ed\" background_image=\"http://localhost/assagaylodge/wp-content/uploads/2015/01/Wood_Texture.jpg\" background_parallax=\"fixed\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"30\" padding_bottom=\"10\" padding_left=\"0\" padding_right=\"0\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][recent_works layout=\"grid\" picture_size=\"auto\" boxed_text=\"unboxed\" filters=\"no\" columns=\"3\" column_spacing=\"12\" cat_slug=\"the-lodge\" exclude_cats=\"\" number_posts=\"9\" offset=\"\" excerpt_length=\"35\" strip_html=\"yes\" carousel_layout=\"title_on_rollover\" scroll_items=\"\" autoplay=\"no\" show_nav=\"yes\" mouse_scroll=\"no\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][/recent_works][/fullwidth][fullwidth background_color=\"#f0f0ed\" background_image=\"\" background_parallax=\"fixed\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"20\" padding_bottom=\"20\" padding_left=\"0px\" padding_right=\"0px\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][fusion_text]\r\n<h1 style=\"text-align: center;\">BEDROOMS</h1>\r\n[/fusion_text][separator style_type=\"single\" top_margin=\"\" bottom_margin=\"20\" sep_color=\"#000000\" border_size=\"\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"170px\" alignment=\"\" class=\"\" id=\"\"][one_sixth last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][/one_sixth][two_third last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][fusion_text]\r\n<h3 style=\"text-align: justify;\">When it comes to our bedrooms we’re proud to say we offer something a little more special. One of five  lovingly and tastefully decorated guest rooms. Soft gray decor soothes the senses providing a peaceful, blissfully comfortable rest from your travels and hectic lives.</h3>\r\n<h3 style=\"text-align: justify;\">Our  bedrooms are spacious, clean, comfortable all en-suite, equipped with either king size or queen size beds. Each room sleeps two guests. The rooms have high ceilings, wall heaters &amp; ceiling fans. Beds all have electric blankets in Winter, 100% cotton percale sheets and thick hyper allergenic microfiber duvets and pillows. All guest rooms are cleaned with organic and green products. Amenities include hairdryers in each room. Three rooms feature King-sized beds  of which two can be  split into two single beds. Two  rooms can therefore be changed into a twin room upon request. Two rooms feature a Queen-sized double bed. These beds cannot be split into twin beds.</h3>\r\n[/fusion_text][/two_third][one_sixth last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][/one_sixth][/fullwidth][fullwidth background_color=\"\" background_image=\"http://localhost/assagaylodge/wp-content/uploads/2015/01/DSC01516-1148-x-764.jpg\" background_parallax=\"fixed\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"center center\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"20\" padding_bottom=\"20\" padding_left=\"0\" padding_right=\"0\" hundred_percent=\"no\" equal_height_columns=\"yes\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][recent_works layout=\"grid\" picture_size=\"auto\" boxed_text=\"unboxed\" filters=\"no\" columns=\"3\" column_spacing=\"12\" cat_slug=\"bedrooms\" exclude_cats=\"\" number_posts=\"6\" offset=\"\" excerpt_length=\"35\" strip_html=\"yes\" carousel_layout=\"title_on_rollover\" scroll_items=\"\" autoplay=\"no\" show_nav=\"yes\" mouse_scroll=\"no\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][/recent_works][/fullwidth][fullwidth background_color=\"#f0f0ed\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"20\" padding_bottom=\"20\" padding_left=\"0\" padding_right=\"0\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][fusion_text]\r\n<h1 style=\"text-align: center;\">GARDENS</h1>\r\n[/fusion_text][separator style_type=\"single\" top_margin=\"\" bottom_margin=\"20\" sep_color=\"#000000\" border_size=\"\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"170px\" alignment=\"\" class=\"\" id=\"\"][one_sixth last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][/one_sixth][two_third last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][fusion_text]\r\n<h3 style=\"text-align: justify;\">The garden is large and offers many secluded spots to lose yourself in a book with a glass of wine underneath the shade of a tree, listening to the sounds of the birds and smelling the beautiful flowers.</h3>\r\n[/fusion_text][/two_third][one_sixth last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][/one_sixth][recent_works layout=\"grid\" picture_size=\"auto\" boxed_text=\"boxed\" filters=\"no\" columns=\"3\" column_spacing=\"12\" cat_slug=\"gardens\" exclude_cats=\"\" number_posts=\"9\" offset=\"\" excerpt_length=\"35\" strip_html=\"yes\" carousel_layout=\"title_on_rollover\" scroll_items=\"\" autoplay=\"no\" show_nav=\"yes\" mouse_scroll=\"no\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][/recent_works][/fullwidth][fullwidth background_color=\"#ffffff\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"65px\" padding_bottom=\"65px\" padding_left=\"0px\" padding_right=\"0px\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][button link=\"http://localhost/assagaylodge/book-now/\" color=\"default\" size=\"xlarge\" stretch=\"default\" type=\"3d\" shape=\"round\" target=\"_self\" title=\"\" gradient_colors=\"#f0f0ed|#f0f0ed\" gradient_hover_colors=\"#6666a4|#6666a4\" accent_color=\"#ffffff\" accent_hover_color=\"#ffffff\" bevel_color=\"\" border_width=\"0px\" icon=\"\" icon_position=\"left\" icon_divider=\"no\" modal=\"\" animation_type=\"0\" animation_direction=\"left\" animation_speed=\"1\" animation_offset=\"\" alignment=\"center\" class=\"\" id=\"\"]Make A Reservation Enquiry[/button][/fullwidth]', 'Home', '', 'inherit', 'closed', 'closed', '', '7-revision-v1', '', '', '2016-10-23 14:28:29', '2016-10-23 12:28:29', '', 7, 'http://msla.co.za/lodge/7-revision-v1/', 0, 'revision', '', 0),
(1307, 1, '2016-10-23 14:39:33', '2016-10-23 12:39:33', '[fullwidth background_color=\"\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding_top=\"20\" padding_bottom=\"20\" padding_left=\"0\" padding_right=\"0\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][title size=\"1\" content_align=\"right\" style_type=\"default\" sep_color=\"\" margin_top=\"\" margin_bottom=\"\" class=\"\" id=\"\"]Rates &amp; Tariffs[/title][/fullwidth][fusion_text]\r\n<table style=\"width: 100%;\" cellspacing=\"10\" cellpadding=\"5\">\r\n<tbody>\r\n<tr>\r\n<td colspan=\"2\"><span style=\"font-size: 10pt;\"><span style=\"font-size: 12pt;\"><strong>R25</strong> per person per day</span>ALL PRICES INCLUDE VAT<strong> </strong></span></td>\r\n</tr>\r\n<tr>\r\n<td colspan=\"2\"><span style=\"font-size: 12pt;\"><strong>Self-Catering / Self-Servicing Accommodation</strong></span></td>\r\n</tr>\r\n<tr>\r\n<td><span style=\"font-size: 12pt;\">Accommodation </span></td>\r\n<td><span style=\"font-size: 12pt;\"><strong>*R 580</strong> per person per night</span></td>\r\n</tr>\r\n<tr>\r\n<td>* Specials</td>\r\n<td><span style=\"font-size: 12pt;\"><strong>15% OFF</strong> accommodation</span></td>\r\n</tr>\r\n<tr>\r\n<td><span style=\"font-size: 12pt;\"> </span></td>\r\n<td><span style=\"font-size: 12pt;\"><strong>25% OFF</strong> - long stays (3 days &amp; more)</span></td>\r\n</tr>\r\n<tr>\r\n<td><strong><span style=\"font-size: 12pt;\">Servicing Options</span></strong></td>\r\n<td><span style=\"font-size: 12pt;\"><strong> </strong></span></td>\r\n</tr>\r\n<tr>\r\n<td><span style=\"font-size: 12pt;\">Lodge Only Servicing (Optional) </span></td>\r\n<td><span style=\"font-size: 12pt;\"><strong>R25</strong> per person per day</span></td>\r\n</tr>\r\n<tr>\r\n<td><span style=\"font-size: 12pt;\">Room Only Servicing (Optional) </span></td>\r\n<td><span style=\"font-size: 12pt;\"><strong>R25</strong> per person per day</span></td>\r\n</tr>\r\n<tr>\r\n<td><span style=\"font-size: 12pt;\"> </span></td>\r\n<td><span style=\"font-size: 12pt;\"><strong> </strong></span></td>\r\n</tr>\r\n<tr>\r\n<td colspan=\"2\"><span style=\"font-size: 12pt;\"><span style=\"font-size: 12pt;\"><strong>Catering Options</strong></span> </span><span style=\"font-size: 12pt;\"><strong> </strong></span></td>\r\n</tr>\r\n<tr>\r\n<td><span style=\"font-size: 12pt;\"> <span style=\"font-size: 12pt;\">Breakfast </span></span></td>\r\n<td><span style=\"font-size: 12pt;\"><strong> </strong><span style=\"font-size: 12pt;\"><strong>R  75</strong> per person</span></span></td>\r\n</tr>\r\n<tr>\r\n<td><span style=\"font-size: 12pt;\"> <span style=\"font-size: 12pt;\">Dinners</span></span></td>\r\n<td><span style=\"font-size: 12pt;\"><span style=\"font-size: 12pt;\"><strong>R 180 </strong>per person</span></span></td>\r\n</tr>\r\n<tr>\r\n<td><span style=\"font-size: 12pt;\"> </span></td>\r\n<td><span style=\"font-size: 12pt;\"><strong> </strong></span></td>\r\n</tr>\r\n<tr>\r\n<td><strong><span style=\"font-size: 12pt;\">Others</span></strong></td>\r\n<td><span style=\"font-size: 12pt;\"><strong> </strong></span></td>\r\n</tr>\r\n<tr>\r\n<td><span style=\"font-size: 12pt;\">Gate Remote</span></td>\r\n<td><span style=\"font-size: 12pt;\"><strong>R 200 </strong>deposit (may be requested)</span></td>\r\n</tr>\r\n<tr>\r\n<td><span style=\"font-size: 12pt;\">Gas Braai</span></td>\r\n<td><span style=\"font-size: 12pt;\"><strong>R25</strong> per person per day</span></td>\r\n</tr>\r\n<tr>\r\n<td><span style=\"font-size: 12pt;\">Day Visitors / Guests</span></td>\r\n<td><span style=\"font-size: 12pt;\"><strong>R 50 </strong>per person per day</span></td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n[/fusion_text]', 'Rates', '', 'inherit', 'closed', 'closed', '', '1121-revision-v1', '', '', '2016-10-23 14:39:33', '2016-10-23 12:39:33', '', 1121, 'http://msla.co.za/lodge/1121-revision-v1/', 0, 'revision', '', 0),
(1308, 1, '2016-10-23 14:54:01', '2016-10-23 12:54:01', '[fullwidth background_color=\"#f0f0ed\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"20\" padding_bottom=\"20\" padding_left=\"0px\" padding_right=\"0px\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][one_half last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][separator style_type=\"single\" top_margin=\"0\" bottom_margin=\"30\" sep_color=\"#000000\" border_size=\"\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"170px\" alignment=\"center\" class=\"separator-left\" id=\"\"][fusion_text]\r\n<h1 style=\"text-align: center;\">No Fancy Star Grading\r\nNo Room Service\r\nNo Bed Turn-downs\r\nNo Rose Petals in the Bath water</h1>\r\n<h1 style=\"text-align: center;\">... just old fashioned homely comforts</h1>\r\n[/fusion_text][/one_half][one_half last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][fusion_text]\r\n<h1 style=\"text-align: justify;\">5 BEDROOM FAMILY LODGE</h1>\r\n<h3 style=\"text-align: justify;\">We are a four season lodge, because there’s always something to celebrate… We offer comfort, relaxation and privacy right in the heart of 1000 Hills. The Forest, the Gardens, the Atmosphere all speak to  Rest  &amp; Relaxation.</h3>\r\n[/fusion_text][separator style_type=\"single\" top_margin=\"0\" bottom_margin=\"30\" sep_color=\"#000000\" border_size=\"\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"170px\" alignment=\"left\" class=\"separator-left\" id=\"\"][title size=\"1\" content_align=\"left\" style_type=\"default\" sep_color=\"\" margin_top=\"\" margin_bottom=\"\" class=\"\" id=\"\"]\r\n<h2 style=\"text-align: center;\">Specials</h2>\r\n[/title][checklist icon=\"fa-sort-amount-desc\" iconcolor=\"\" circle=\"yes\" circlecolor=\"\" size=\"13px\" class=\"\" id=\"\"][li_item icon=\"\"]\r\n<h3>Soon: 15% OFF on Accommodation - <a href=\"http://msla.co.za/lodge/reservations/\">Book Now!</a></h3>\r\n[/li_item][li_item icon=\"\"]\r\n<h3>Soon: 25% OFF on Accommodation - Stay 3 days or more - <a href=\"http://msla.co.za/lodge/reservations/\">Book Now!</a></h3>\r\n[/li_item][/checklist][/one_half][/fullwidth][fullwidth background_color=\"#f0f0ed\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"20\" padding_bottom=\"20\" padding_left=\"0px\" padding_right=\"0px\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][one_half last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][fusion_text]\r\n<h3 style=\"text-align: justify;\">Set in the rolling peaks and valleys of a thousand hills surrounded by a canopy of indigenous trees, you will find that horses still have right of way, we certainly offer the best of both worlds, farm and charm coupled with modern amenities that will have you feeling relaxed and rejuvenated.</h3>\r\n<h3 style=\"text-align: justify;\">We know that sometimes you are searching for a romantic getaway or maybe a few days away with old friends. Other times you are searching for a place to host a weekend, family reunion or a business retreat. In addition to nightly room rentals, our lodge is also available for meetings, retreats  and makes the perfect place for a wedding party to stay together and get ready for the big day. Regardless, with our five comfortable and cozy guest bedrooms, multiple garden spaces and hideaways, and a  large private deck  where you can take a nap or read a book we definitely have the room for you!</h3>\r\n<h3 style=\"text-align: justify;\">Evenings are quiet and peaceful taking you far away from the business of city life. This is a unique and memorable country experience. We look forward to having you as a guest!</h3>\r\n[/fusion_text][/one_half][one_half last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][fusion_text]\r\n<h3 style=\"text-align: justify;\">Our lodge has been in our family for years and has recently been beautifully renovated. Five rooms all with en-suite showers lead off your own large central lounge, featuring a 36 foot high vaulted ceiling, offering spacious living, dining, and a bar/conversational lounge area which includes a fitted kitchenette, all adding to a sense of homely comfort. Sumptuous meals can be provided on request and served on the bottom deck at the swimming pool.</h3>\r\n<h3 style=\"text-align: justify;\">Be lulled to sleep by the sound of the waterfall and tinkling stream just outside your window, waking from a peaceful night\'s sleep in a pillow-top bed dressed in luxurious linens to coddle you in ultimate comfort.</h3>\r\n<h3 style=\"text-align: justify;\">Our property boasts many different species of birds and animals. We have a resident otter, a family of wild bush pigs,  a family of rock rabbits, porcupine, little blue duikers, a variety of different frogs and an abundance of bird life, including the occasional snakes that pass through!</h3>\r\n[/fusion_text][/one_half][/fullwidth][fullwidth background_color=\"#f0f0ed\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"20\" padding_bottom=\"20\" padding_left=\"0px\" padding_right=\"0px\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][fusion_text]\r\n<h1 style=\"text-align: center;\">Gallery</h1>\r\n[/fusion_text][separator style_type=\"single\" top_margin=\"\" bottom_margin=\"40\" sep_color=\"#000000\" border_size=\"\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"170px\" alignment=\"\" class=\"\" id=\"\"][one_sixth last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][/one_sixth][two_third last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][fusion_text]\r\n<h3 style=\"text-align: justify;\">The Lodge is open, spacious, comfortable and homely. During hot summer days, sit and bask in the sun on the deck  with one of our  picnic specials. In winter, snuggle up with a good book or challenge one another to a friendly board game in the glassed nook area .</h3>\r\n[/fusion_text][/two_third][one_sixth last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][/one_sixth][/fullwidth][fullwidth background_color=\"#f0f0ed\" background_image=\"http://localhost/assagaylodge/wp-content/uploads/2015/01/Wood_Texture.jpg\" background_parallax=\"fixed\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"30\" padding_bottom=\"10\" padding_left=\"0\" padding_right=\"0\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][recent_works layout=\"grid\" picture_size=\"auto\" boxed_text=\"unboxed\" filters=\"no\" columns=\"3\" column_spacing=\"12\" cat_slug=\"the-lodge\" exclude_cats=\"\" number_posts=\"9\" offset=\"\" excerpt_length=\"35\" strip_html=\"yes\" carousel_layout=\"title_on_rollover\" scroll_items=\"\" autoplay=\"no\" show_nav=\"yes\" mouse_scroll=\"no\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][/recent_works][/fullwidth][fullwidth background_color=\"#f0f0ed\" background_image=\"\" background_parallax=\"fixed\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"20\" padding_bottom=\"20\" padding_left=\"0px\" padding_right=\"0px\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][fusion_text]\r\n<h1 style=\"text-align: center;\">BEDROOMS</h1>\r\n[/fusion_text][separator style_type=\"single\" top_margin=\"\" bottom_margin=\"20\" sep_color=\"#000000\" border_size=\"\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"170px\" alignment=\"\" class=\"\" id=\"\"][one_sixth last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][/one_sixth][two_third last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][fusion_text]\r\n<h3 style=\"text-align: justify;\">When it comes to our bedrooms we’re proud to say we offer something a little more special. One of five  lovingly and tastefully decorated guest rooms. Soft gray decor soothes the senses providing a peaceful, blissfully comfortable rest from your travels and hectic lives.</h3>\r\n<h3 style=\"text-align: justify;\">Our  bedrooms are spacious, clean, comfortable all en-suite, equipped with either king size or queen size beds. Each room sleeps two guests. The rooms have high ceilings, wall heaters &amp; ceiling fans. Beds all have electric blankets in Winter, 100% cotton percale sheets and thick hyper allergenic microfiber duvets and pillows. All guest rooms are cleaned with organic and green products. Amenities include hairdryers in each room. Three rooms feature King-sized beds  of which two can be  split into two single beds. Two  rooms can therefore be changed into a twin room upon request. Two rooms feature a Queen-sized double bed. These beds cannot be split into twin beds.</h3>\r\n[/fusion_text][/two_third][one_sixth last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][/one_sixth][/fullwidth][fullwidth background_color=\"\" background_image=\"http://localhost/assagaylodge/wp-content/uploads/2015/01/DSC01516-1148-x-764.jpg\" background_parallax=\"fixed\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"center center\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"20\" padding_bottom=\"20\" padding_left=\"0\" padding_right=\"0\" hundred_percent=\"no\" equal_height_columns=\"yes\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][recent_works layout=\"grid\" picture_size=\"auto\" boxed_text=\"unboxed\" filters=\"no\" columns=\"3\" column_spacing=\"12\" cat_slug=\"bedrooms\" exclude_cats=\"\" number_posts=\"6\" offset=\"\" excerpt_length=\"35\" strip_html=\"yes\" carousel_layout=\"title_on_rollover\" scroll_items=\"\" autoplay=\"no\" show_nav=\"yes\" mouse_scroll=\"no\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][/recent_works][/fullwidth][fullwidth background_color=\"#f0f0ed\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"20\" padding_bottom=\"20\" padding_left=\"0\" padding_right=\"0\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][fusion_text]\r\n<h1 style=\"text-align: center;\">GARDENS</h1>\r\n[/fusion_text][separator style_type=\"single\" top_margin=\"\" bottom_margin=\"20\" sep_color=\"#000000\" border_size=\"\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"170px\" alignment=\"\" class=\"\" id=\"\"][one_sixth last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][/one_sixth][two_third last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][fusion_text]\r\n<h3 style=\"text-align: justify;\">The garden is large and offers many secluded spots to lose yourself in a book with a glass of wine underneath the shade of a tree, listening to the sounds of the birds and smelling the beautiful flowers.</h3>\r\n[/fusion_text][/two_third][one_sixth last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][/one_sixth][recent_works layout=\"grid\" picture_size=\"auto\" boxed_text=\"boxed\" filters=\"no\" columns=\"3\" column_spacing=\"12\" cat_slug=\"gardens\" exclude_cats=\"\" number_posts=\"9\" offset=\"\" excerpt_length=\"35\" strip_html=\"yes\" carousel_layout=\"title_on_rollover\" scroll_items=\"\" autoplay=\"no\" show_nav=\"yes\" mouse_scroll=\"no\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][/recent_works][/fullwidth][fullwidth background_color=\"#ffffff\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"65px\" padding_bottom=\"65px\" padding_left=\"0px\" padding_right=\"0px\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][button link=\"http://localhost/assagaylodge/book-now/\" color=\"default\" size=\"xlarge\" stretch=\"default\" type=\"3d\" shape=\"round\" target=\"_self\" title=\"\" gradient_colors=\"#f0f0ed|#f0f0ed\" gradient_hover_colors=\"#6666a4|#6666a4\" accent_color=\"#ffffff\" accent_hover_color=\"#ffffff\" bevel_color=\"\" border_width=\"0px\" icon=\"\" icon_position=\"left\" icon_divider=\"no\" modal=\"\" animation_type=\"0\" animation_direction=\"left\" animation_speed=\"1\" animation_offset=\"\" alignment=\"center\" class=\"\" id=\"\"]Make A Reservation Enquiry[/button][/fullwidth]', 'Home', '', 'inherit', 'closed', 'closed', '', '7-revision-v1', '', '', '2016-10-23 14:54:01', '2016-10-23 12:54:01', '', 7, 'http://msla.co.za/lodge/7-revision-v1/', 0, 'revision', '', 0);
INSERT INTO `wp_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(1309, 1, '2016-10-23 14:55:32', '2016-10-23 12:55:32', '[fullwidth background_color=\"#f0f0ed\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"20\" padding_bottom=\"20\" padding_left=\"0px\" padding_right=\"0px\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][one_half last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][separator style_type=\"single\" top_margin=\"0\" bottom_margin=\"30\" sep_color=\"#000000\" border_size=\"\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"170px\" alignment=\"center\" class=\"separator-left\" id=\"\"][fusion_text]\r\n<h1 style=\"text-align: center;\">No Fancy Star Grading\r\nNo Room Service\r\nNo Bed Turn-downs\r\nNo Rose Petals in the Bath water</h1>\r\n<h1 style=\"text-align: center;\">... just old fashioned homely comforts</h1>\r\n[/fusion_text][/one_half][one_half last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][fusion_text]\r\n<h1 style=\"text-align: justify;\">5 BEDROOM FAMILY LODGE</h1>\r\n<h3 style=\"text-align: justify;\">We are a four season lodge, because there’s always something to celebrate… We offer comfort, relaxation and privacy right in the heart of 1000 Hills. The Forest, the Gardens, the Atmosphere all speak to  Rest  &amp; Relaxation.</h3>\r\n[/fusion_text][separator style_type=\"single\" top_margin=\"0\" bottom_margin=\"30\" sep_color=\"#000000\" border_size=\"\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"170px\" alignment=\"left\" class=\"separator-left\" id=\"\"][title size=\"1\" content_align=\"left\" style_type=\"default\" sep_color=\"\" margin_top=\"\" margin_bottom=\"\" class=\"\" id=\"\"]\r\n<h2 style=\"text-align: center;\">Specials</h2>\r\n[/title][checklist icon=\"fa-sort-amount-desc\" iconcolor=\"\" circle=\"yes\" circlecolor=\"\" size=\"13px\" class=\"\" id=\"\"][li_item icon=\"\"]\r\n<h3>15% OFF on Accommodation - <a href=\"http://msla.co.za/lodge/reservations/\">Book Now!</a></h3>\r\n[/li_item][li_item icon=\"\"]\r\n<h3>25% OFF on Accommodation - Stay 3 days or more - <a href=\"http://msla.co.za/lodge/reservations/\">Book Now!</a></h3>\r\n[/li_item][/checklist][/one_half][/fullwidth][fullwidth background_color=\"#f0f0ed\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"20\" padding_bottom=\"20\" padding_left=\"0px\" padding_right=\"0px\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][one_half last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][fusion_text]\r\n<h3 style=\"text-align: justify;\">Set in the rolling peaks and valleys of a thousand hills surrounded by a canopy of indigenous trees, you will find that horses still have right of way, we certainly offer the best of both worlds, farm and charm coupled with modern amenities that will have you feeling relaxed and rejuvenated.</h3>\r\n<h3 style=\"text-align: justify;\">We know that sometimes you are searching for a romantic getaway or maybe a few days away with old friends. Other times you are searching for a place to host a weekend, family reunion or a business retreat. In addition to nightly room rentals, our lodge is also available for meetings, retreats  and makes the perfect place for a wedding party to stay together and get ready for the big day. Regardless, with our five comfortable and cozy guest bedrooms, multiple garden spaces and hideaways, and a  large private deck  where you can take a nap or read a book we definitely have the room for you!</h3>\r\n<h3 style=\"text-align: justify;\">Evenings are quiet and peaceful taking you far away from the business of city life. This is a unique and memorable country experience. We look forward to having you as a guest!</h3>\r\n[/fusion_text][/one_half][one_half last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][fusion_text]\r\n<h3 style=\"text-align: justify;\">Our lodge has been in our family for years and has recently been beautifully renovated. Five rooms all with en-suite showers lead off your own large central lounge, featuring a 36 foot high vaulted ceiling, offering spacious living, dining, and a bar/conversational lounge area which includes a fitted kitchenette, all adding to a sense of homely comfort. Sumptuous meals can be provided on request and served on the bottom deck at the swimming pool.</h3>\r\n<h3 style=\"text-align: justify;\">Be lulled to sleep by the sound of the waterfall and tinkling stream just outside your window, waking from a peaceful night\'s sleep in a pillow-top bed dressed in luxurious linens to coddle you in ultimate comfort.</h3>\r\n<h3 style=\"text-align: justify;\">Our property boasts many different species of birds and animals. We have a resident otter, a family of wild bush pigs,  a family of rock rabbits, porcupine, little blue duikers, a variety of different frogs and an abundance of bird life, including the occasional snakes that pass through!</h3>\r\n[/fusion_text][/one_half][/fullwidth][fullwidth background_color=\"#f0f0ed\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"20\" padding_bottom=\"20\" padding_left=\"0px\" padding_right=\"0px\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][fusion_text]\r\n<h1 style=\"text-align: center;\">Gallery</h1>\r\n[/fusion_text][separator style_type=\"single\" top_margin=\"\" bottom_margin=\"40\" sep_color=\"#000000\" border_size=\"\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"170px\" alignment=\"\" class=\"\" id=\"\"][one_sixth last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][/one_sixth][two_third last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][fusion_text]\r\n<h3 style=\"text-align: justify;\">The Lodge is open, spacious, comfortable and homely. During hot summer days, sit and bask in the sun on the deck  with one of our  picnic specials. In winter, snuggle up with a good book or challenge one another to a friendly board game in the glassed nook area .</h3>\r\n[/fusion_text][/two_third][one_sixth last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][/one_sixth][/fullwidth][fullwidth background_color=\"#f0f0ed\" background_image=\"http://localhost/assagaylodge/wp-content/uploads/2015/01/Wood_Texture.jpg\" background_parallax=\"fixed\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"30\" padding_bottom=\"10\" padding_left=\"0\" padding_right=\"0\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][recent_works layout=\"grid\" picture_size=\"auto\" boxed_text=\"unboxed\" filters=\"no\" columns=\"3\" column_spacing=\"12\" cat_slug=\"the-lodge\" exclude_cats=\"\" number_posts=\"9\" offset=\"\" excerpt_length=\"35\" strip_html=\"yes\" carousel_layout=\"title_on_rollover\" scroll_items=\"\" autoplay=\"no\" show_nav=\"yes\" mouse_scroll=\"no\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][/recent_works][/fullwidth][fullwidth background_color=\"#f0f0ed\" background_image=\"\" background_parallax=\"fixed\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"20\" padding_bottom=\"20\" padding_left=\"0px\" padding_right=\"0px\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][fusion_text]\r\n<h1 style=\"text-align: center;\">BEDROOMS</h1>\r\n[/fusion_text][separator style_type=\"single\" top_margin=\"\" bottom_margin=\"20\" sep_color=\"#000000\" border_size=\"\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"170px\" alignment=\"\" class=\"\" id=\"\"][one_sixth last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][/one_sixth][two_third last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][fusion_text]\r\n<h3 style=\"text-align: justify;\">When it comes to our bedrooms we’re proud to say we offer something a little more special. One of five  lovingly and tastefully decorated guest rooms. Soft gray decor soothes the senses providing a peaceful, blissfully comfortable rest from your travels and hectic lives.</h3>\r\n<h3 style=\"text-align: justify;\">Our  bedrooms are spacious, clean, comfortable all en-suite, equipped with either king size or queen size beds. Each room sleeps two guests. The rooms have high ceilings, wall heaters &amp; ceiling fans. Beds all have electric blankets in Winter, 100% cotton percale sheets and thick hyper allergenic microfiber duvets and pillows. All guest rooms are cleaned with organic and green products. Amenities include hairdryers in each room. Three rooms feature King-sized beds  of which two can be  split into two single beds. Two  rooms can therefore be changed into a twin room upon request. Two rooms feature a Queen-sized double bed. These beds cannot be split into twin beds.</h3>\r\n[/fusion_text][/two_third][one_sixth last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][/one_sixth][/fullwidth][fullwidth background_color=\"\" background_image=\"http://localhost/assagaylodge/wp-content/uploads/2015/01/DSC01516-1148-x-764.jpg\" background_parallax=\"fixed\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"center center\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"20\" padding_bottom=\"20\" padding_left=\"0\" padding_right=\"0\" hundred_percent=\"no\" equal_height_columns=\"yes\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][recent_works layout=\"grid\" picture_size=\"auto\" boxed_text=\"unboxed\" filters=\"no\" columns=\"3\" column_spacing=\"12\" cat_slug=\"bedrooms\" exclude_cats=\"\" number_posts=\"6\" offset=\"\" excerpt_length=\"35\" strip_html=\"yes\" carousel_layout=\"title_on_rollover\" scroll_items=\"\" autoplay=\"no\" show_nav=\"yes\" mouse_scroll=\"no\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][/recent_works][/fullwidth][fullwidth background_color=\"#f0f0ed\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"20\" padding_bottom=\"20\" padding_left=\"0\" padding_right=\"0\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][fusion_text]\r\n<h1 style=\"text-align: center;\">GARDENS</h1>\r\n[/fusion_text][separator style_type=\"single\" top_margin=\"\" bottom_margin=\"20\" sep_color=\"#000000\" border_size=\"\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"170px\" alignment=\"\" class=\"\" id=\"\"][one_sixth last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][/one_sixth][two_third last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][fusion_text]\r\n<h3 style=\"text-align: justify;\">The garden is large and offers many secluded spots to lose yourself in a book with a glass of wine underneath the shade of a tree, listening to the sounds of the birds and smelling the beautiful flowers.</h3>\r\n[/fusion_text][/two_third][one_sixth last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][/one_sixth][recent_works layout=\"grid\" picture_size=\"auto\" boxed_text=\"boxed\" filters=\"no\" columns=\"3\" column_spacing=\"12\" cat_slug=\"gardens\" exclude_cats=\"\" number_posts=\"9\" offset=\"\" excerpt_length=\"35\" strip_html=\"yes\" carousel_layout=\"title_on_rollover\" scroll_items=\"\" autoplay=\"no\" show_nav=\"yes\" mouse_scroll=\"no\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][/recent_works][/fullwidth][fullwidth background_color=\"#ffffff\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"65px\" padding_bottom=\"65px\" padding_left=\"0px\" padding_right=\"0px\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][button link=\"http://localhost/assagaylodge/book-now/\" color=\"default\" size=\"xlarge\" stretch=\"default\" type=\"3d\" shape=\"round\" target=\"_self\" title=\"\" gradient_colors=\"#f0f0ed|#f0f0ed\" gradient_hover_colors=\"#6666a4|#6666a4\" accent_color=\"#ffffff\" accent_hover_color=\"#ffffff\" bevel_color=\"\" border_width=\"0px\" icon=\"\" icon_position=\"left\" icon_divider=\"no\" modal=\"\" animation_type=\"0\" animation_direction=\"left\" animation_speed=\"1\" animation_offset=\"\" alignment=\"center\" class=\"\" id=\"\"]Make A Reservation Enquiry[/button][/fullwidth]', 'Home', '', 'inherit', 'closed', 'closed', '', '7-revision-v1', '', '', '2016-10-23 14:55:32', '2016-10-23 12:55:32', '', 7, 'http://msla.co.za/lodge/7-revision-v1/', 0, 'revision', '', 0),
(1310, 1, '2016-10-23 16:32:43', '2016-10-23 14:32:43', '[fullwidth background_color=\"\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding_top=\"20\" padding_bottom=\"20\" padding_left=\"0\" padding_right=\"0\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][title size=\"1\" content_align=\"right\" style_type=\"default\" sep_color=\"\" margin_top=\"\" margin_bottom=\"\" class=\"\" id=\"\"]Rates &amp; Tariffs[/title][/fullwidth][fusion_text]\r\n<table style=\"width: 100%;\" cellspacing=\"10\" cellpadding=\"5\">\r\n<tbody>\r\n<tr>\r\n<td colspan=\"2\"><span style=\"font-size: 10pt;\"><span style=\"font-size: 12pt;\"><strong>R25</strong> per person per day</span>ALL PRICES INCLUDE VAT<strong> </strong></span></td>\r\n</tr>\r\n<tr>\r\n<td colspan=\"2\"><span style=\"font-size: 12pt;\"><strong>Self-Catering / Self-Servicing Accommodation</strong></span></td>\r\n</tr>\r\n<tr>\r\n<td><span style=\"font-size: 12pt;\">Accommodation </span></td>\r\n<td><span style=\"font-size: 12pt;\"><strong>*R 580</strong> per person per night</span></td>\r\n</tr>\r\n<tr>\r\n<td></td>\r\n<td><span style=\"font-size: 12pt;\"><strong> </strong></span></td>\r\n</tr>\r\n<tr>\r\n<td>* Specials</td>\r\n<td><span style=\"font-size: 12pt;\"><strong>15% OFF</strong> Accommodation (1 - 2 days)</span></td>\r\n</tr>\r\n<tr>\r\n<td><span style=\"font-size: 12pt;\"> </span></td>\r\n<td><span style=\"font-size: 12pt;\"><strong>25% OFF</strong> Accommodation - Long stays (3 days &amp; more)</span></td>\r\n</tr>\r\n<tr>\r\n<td><strong><span style=\"font-size: 12pt;\">Servicing Options</span></strong></td>\r\n<td><span style=\"font-size: 12pt;\"><strong> </strong></span></td>\r\n</tr>\r\n<tr>\r\n<td><strong><span style=\"font-size: 12pt;\"> </span></strong></td>\r\n<td><span style=\"font-size: 12pt;\"><strong> </strong></span></td>\r\n</tr>\r\n<tr>\r\n<td><span style=\"font-size: 12pt;\">Lodge Only Servicing (Optional) </span></td>\r\n<td><span style=\"font-size: 12pt;\"><strong>R25</strong> per person per day</span></td>\r\n</tr>\r\n<tr>\r\n<td><span style=\"font-size: 12pt;\">Room Only Servicing (Optional) </span></td>\r\n<td><span style=\"font-size: 12pt;\"><strong>R25</strong> per person per day</span></td>\r\n</tr>\r\n<tr>\r\n<td><span style=\"font-size: 12pt;\"> </span></td>\r\n<td><span style=\"font-size: 12pt;\"><strong> </strong></span></td>\r\n</tr>\r\n<tr>\r\n<td colspan=\"2\"><span style=\"font-size: 12pt;\"><span style=\"font-size: 12pt;\"><strong>Catering Options</strong></span> </span><span style=\"font-size: 12pt;\"><strong> </strong></span></td>\r\n</tr>\r\n<tr>\r\n<td><span style=\"font-size: 12pt;\"> <span style=\"font-size: 12pt;\">Breakfast </span></span></td>\r\n<td><span style=\"font-size: 12pt;\"><strong> </strong><span style=\"font-size: 12pt;\"><strong>R  75</strong> per person</span></span></td>\r\n</tr>\r\n<tr>\r\n<td><span style=\"font-size: 12pt;\"> <span style=\"font-size: 12pt;\">Dinners</span></span></td>\r\n<td><span style=\"font-size: 12pt;\"><span style=\"font-size: 12pt;\"><strong>R 180 </strong>per person</span></span></td>\r\n</tr>\r\n<tr>\r\n<td><span style=\"font-size: 12pt;\"> </span></td>\r\n<td><span style=\"font-size: 12pt;\"><strong> </strong></span></td>\r\n</tr>\r\n<tr>\r\n<td><strong><span style=\"font-size: 12pt;\">Others</span></strong></td>\r\n<td><span style=\"font-size: 12pt;\"><strong> </strong></span></td>\r\n</tr>\r\n<tr>\r\n<td><span style=\"font-size: 12pt;\">Gate Remote</span></td>\r\n<td><span style=\"font-size: 12pt;\"><strong>R 200 </strong>deposit (may be requested)</span></td>\r\n</tr>\r\n<tr>\r\n<td><span style=\"font-size: 12pt;\">Gas Braai</span></td>\r\n<td><span style=\"font-size: 12pt;\"><strong>R25</strong> per person per day</span></td>\r\n</tr>\r\n<tr>\r\n<td><span style=\"font-size: 12pt;\">Day Visitors / Guests</span></td>\r\n<td><span style=\"font-size: 12pt;\"><strong>R 50 </strong>per person per day</span></td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n[/fusion_text]', 'Rates', '', 'inherit', 'closed', 'closed', '', '1121-revision-v1', '', '', '2016-10-23 16:32:43', '2016-10-23 14:32:43', '', 1121, 'http://msla.co.za/lodge/1121-revision-v1/', 0, 'revision', '', 0),
(1311, 1, '2016-10-23 16:34:32', '2016-10-23 14:34:32', '[fullwidth background_color=\"\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding_top=\"20\" padding_bottom=\"20\" padding_left=\"0\" padding_right=\"0\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][title size=\"1\" content_align=\"right\" style_type=\"default\" sep_color=\"\" margin_top=\"\" margin_bottom=\"\" class=\"\" id=\"\"]Rates &amp; Tariffs[/title][/fullwidth][fusion_text]\r\n<table style=\"width: 100%;\" cellspacing=\"10\" cellpadding=\"5\">\r\n<tbody>\r\n<tr>\r\n<td colspan=\"2\"><span style=\"font-size: 10pt;\"><span style=\"font-size: 12pt;\"><strong>R25</strong> per person per day</span>ALL PRICES INCLUDE VAT<strong> </strong></span></td>\r\n</tr>\r\n<tr>\r\n<td colspan=\"2\"><span style=\"font-size: 12pt;\"><strong>Self-Catering / Self-Servicing Accommodation</strong></span></td>\r\n</tr>\r\n<tr>\r\n<td><span style=\"font-size: 12pt;\"><strong>Accommodation</strong> </span></td>\r\n<td><span style=\"font-size: 12pt;\"><strong>*R 580</strong> per person per night</span></td>\r\n</tr>\r\n<tr>\r\n<td></td>\r\n<td><span style=\"font-size: 12pt;\"><strong> </strong></span></td>\r\n</tr>\r\n<tr>\r\n<td>* <strong>Specials</strong></td>\r\n<td><span style=\"font-size: 12pt;\"><strong>15% OFF</strong> Accommodation (1 - 2 days)</span></td>\r\n</tr>\r\n<tr>\r\n<td><span style=\"font-size: 12pt;\"> </span></td>\r\n<td><span style=\"font-size: 12pt;\"><strong>25% OFF</strong> Accommodation - Long stays (3 days &amp; more)</span></td>\r\n</tr>\r\n<tr>\r\n<td><strong><span style=\"font-size: 12pt;\">Servicing Options</span></strong></td>\r\n<td><span style=\"font-size: 12pt;\"><strong> </strong></span></td>\r\n</tr>\r\n<tr>\r\n<td><strong><span style=\"font-size: 12pt;\"> </span></strong></td>\r\n<td><span style=\"font-size: 12pt;\"><strong> </strong></span></td>\r\n</tr>\r\n<tr>\r\n<td><span style=\"font-size: 12pt;\">Lodge Only Servicing (Optional) </span></td>\r\n<td><span style=\"font-size: 12pt;\"><strong>R25</strong> per person per day</span></td>\r\n</tr>\r\n<tr>\r\n<td><span style=\"font-size: 12pt;\">Room Only Servicing (Optional) </span></td>\r\n<td><span style=\"font-size: 12pt;\"><strong>R25</strong> per person per day</span></td>\r\n</tr>\r\n<tr>\r\n<td><span style=\"font-size: 12pt;\"> </span></td>\r\n<td><span style=\"font-size: 12pt;\"><strong> </strong></span></td>\r\n</tr>\r\n<tr>\r\n<td colspan=\"2\"><span style=\"font-size: 12pt;\"><span style=\"font-size: 12pt;\"><strong>Catering Options</strong></span> </span><span style=\"font-size: 12pt;\"><strong> </strong></span></td>\r\n</tr>\r\n<tr>\r\n<td><span style=\"font-size: 12pt;\"> <span style=\"font-size: 12pt;\">Breakfast </span></span></td>\r\n<td><span style=\"font-size: 12pt;\"><strong> </strong><span style=\"font-size: 12pt;\"><strong>R  75</strong> per person</span></span></td>\r\n</tr>\r\n<tr>\r\n<td><span style=\"font-size: 12pt;\"> <span style=\"font-size: 12pt;\">Dinners</span></span></td>\r\n<td><span style=\"font-size: 12pt;\"><span style=\"font-size: 12pt;\"><strong>R 180 </strong>per person</span></span></td>\r\n</tr>\r\n<tr>\r\n<td><span style=\"font-size: 12pt;\"> </span></td>\r\n<td><span style=\"font-size: 12pt;\"><strong> </strong></span></td>\r\n</tr>\r\n<tr>\r\n<td><strong><span style=\"font-size: 12pt;\">Others</span></strong></td>\r\n<td><span style=\"font-size: 12pt;\"><strong> </strong></span></td>\r\n</tr>\r\n<tr>\r\n<td><span style=\"font-size: 12pt;\">Gate Remote</span></td>\r\n<td><span style=\"font-size: 12pt;\"><strong>R 200 </strong>deposit (may be requested)</span></td>\r\n</tr>\r\n<tr>\r\n<td><span style=\"font-size: 12pt;\">Gas Braai</span></td>\r\n<td><span style=\"font-size: 12pt;\"><strong>R25</strong> per person per day</span></td>\r\n</tr>\r\n<tr>\r\n<td><span style=\"font-size: 12pt;\">Day Visitors / Guests</span></td>\r\n<td><span style=\"font-size: 12pt;\"><strong>R 50 </strong>per person per day</span></td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n[/fusion_text]', 'Rates', '', 'inherit', 'closed', 'closed', '', '1121-revision-v1', '', '', '2016-10-23 16:34:32', '2016-10-23 14:34:32', '', 1121, 'http://msla.co.za/lodge/1121-revision-v1/', 0, 'revision', '', 0),
(1312, 1, '2016-10-23 16:35:49', '2016-10-23 14:35:49', '[fullwidth background_color=\"\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding_top=\"20\" padding_bottom=\"20\" padding_left=\"0\" padding_right=\"0\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][title size=\"1\" content_align=\"right\" style_type=\"default\" sep_color=\"\" margin_top=\"\" margin_bottom=\"\" class=\"\" id=\"\"]Rates &amp; Tariffs[/title][/fullwidth][fusion_text]\r\n<table style=\"width: 100%;\" cellspacing=\"10\" cellpadding=\"5\">\r\n<tbody>\r\n<tr>\r\n<td colspan=\"2\"><span style=\"font-size: 10pt;\"><span style=\"font-size: 12pt;\"><strong>R25</strong> per person per day</span>ALL PRICES INCLUDE VAT<strong> </strong></span></td>\r\n</tr>\r\n<tr>\r\n<td colspan=\"2\"><span style=\"font-size: 12pt;\"><strong>Self-Catering / Self-Servicing Accommodation</strong></span></td>\r\n</tr>\r\n<tr>\r\n<td><span style=\"font-size: 12pt;\"><strong>Accommodation</strong> </span></td>\r\n<td><span style=\"font-size: 12pt;\"><strong>*R 580</strong> per person per night</span></td>\r\n</tr>\r\n<tr>\r\n<td></td>\r\n<td><span style=\"font-size: 12pt;\"><strong> </strong></span></td>\r\n</tr>\r\n<tr>\r\n<td><span style=\"font-size: 12pt;\">* <strong>Specials</strong></span></td>\r\n<td><span style=\"font-size: 12pt;\"><strong>15% OFF</strong> Accommodation (1 - 2 days)</span></td>\r\n</tr>\r\n<tr>\r\n<td><span style=\"font-size: 12pt;\"> </span></td>\r\n<td><span style=\"font-size: 12pt;\"><strong>25% OFF</strong> Accommodation - Long stays (3 days &amp; more)</span></td>\r\n</tr>\r\n<tr>\r\n<td><strong><span style=\"font-size: 12pt;\">Servicing Options</span></strong></td>\r\n<td><span style=\"font-size: 12pt;\"><strong> </strong></span></td>\r\n</tr>\r\n<tr>\r\n<td><strong><span style=\"font-size: 12pt;\"> </span></strong></td>\r\n<td><span style=\"font-size: 12pt;\"><strong> </strong></span></td>\r\n</tr>\r\n<tr>\r\n<td><span style=\"font-size: 12pt;\">Lodge Only Servicing (Optional) </span></td>\r\n<td><span style=\"font-size: 12pt;\"><strong>R25</strong> per person per day</span></td>\r\n</tr>\r\n<tr>\r\n<td><span style=\"font-size: 12pt;\">Room Only Servicing (Optional) </span></td>\r\n<td><span style=\"font-size: 12pt;\"><strong>R25</strong> per person per day</span></td>\r\n</tr>\r\n<tr>\r\n<td><span style=\"font-size: 12pt;\"> </span></td>\r\n<td><span style=\"font-size: 12pt;\"><strong> </strong></span></td>\r\n</tr>\r\n<tr>\r\n<td colspan=\"2\"><span style=\"font-size: 12pt;\"><span style=\"font-size: 12pt;\"><strong>Catering Options</strong></span> </span><span style=\"font-size: 12pt;\"><strong> </strong></span></td>\r\n</tr>\r\n<tr>\r\n<td><span style=\"font-size: 12pt;\"> <span style=\"font-size: 12pt;\">Breakfast </span></span></td>\r\n<td><span style=\"font-size: 12pt;\"><strong> </strong><span style=\"font-size: 12pt;\"><strong>R  75</strong> per person</span></span></td>\r\n</tr>\r\n<tr>\r\n<td><span style=\"font-size: 12pt;\"> <span style=\"font-size: 12pt;\">Dinners</span></span></td>\r\n<td><span style=\"font-size: 12pt;\"><span style=\"font-size: 12pt;\"><strong>R 180 </strong>per person</span></span></td>\r\n</tr>\r\n<tr>\r\n<td><span style=\"font-size: 12pt;\"> </span></td>\r\n<td><span style=\"font-size: 12pt;\"><strong> </strong></span></td>\r\n</tr>\r\n<tr>\r\n<td><strong><span style=\"font-size: 12pt;\">Others</span></strong></td>\r\n<td><span style=\"font-size: 12pt;\"><strong> </strong></span></td>\r\n</tr>\r\n<tr>\r\n<td><span style=\"font-size: 12pt;\">Gate Remote</span></td>\r\n<td><span style=\"font-size: 12pt;\"><strong>R 200 </strong>deposit (may be requested)</span></td>\r\n</tr>\r\n<tr>\r\n<td><span style=\"font-size: 12pt;\">Gas Braai</span></td>\r\n<td><span style=\"font-size: 12pt;\"><strong>R25</strong> per person per day</span></td>\r\n</tr>\r\n<tr>\r\n<td><span style=\"font-size: 12pt;\">Day Visitors / Guests</span></td>\r\n<td><span style=\"font-size: 12pt;\"><strong>R 50 </strong>per person per day</span></td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n[/fusion_text]', 'Rates', '', 'inherit', 'closed', 'closed', '', '1121-revision-v1', '', '', '2016-10-23 16:35:49', '2016-10-23 14:35:49', '', 1121, 'http://msla.co.za/lodge/1121-revision-v1/', 0, 'revision', '', 0),
(1313, 1, '2016-10-23 16:40:04', '2016-10-23 14:40:04', '[fullwidth background_color=\"\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding_top=\"20\" padding_bottom=\"20\" padding_left=\"0\" padding_right=\"0\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][title size=\"1\" content_align=\"right\" style_type=\"default\" sep_color=\"\" margin_top=\"\" margin_bottom=\"\" class=\"\" id=\"\"]Rates &amp; Tariffs[/title][/fullwidth][fusion_text]\r\n<table style=\"width: 100%;\" cellspacing=\"10\" cellpadding=\"5\">\r\n<tbody>\r\n<tr>\r\n<td style=\"text-align: right;\" colspan=\"2\"><span style=\"font-size: 10pt;\">ALL PRICES INCLUDE VAT<strong> </strong></span></td>\r\n</tr>\r\n<tr>\r\n<td colspan=\"2\"><span style=\"font-size: 10pt;\"> </span></td>\r\n</tr>\r\n<tr>\r\n<td colspan=\"2\"><span style=\"font-size: 12pt;\"><strong>Self-Catering / Self-Servicing Accommodation</strong></span></td>\r\n</tr>\r\n<tr>\r\n<td colspan=\"2\"><span style=\"font-size: 12pt;\"><strong> </strong></span></td>\r\n</tr>\r\n<tr>\r\n<td><span style=\"font-size: 12pt;\"><strong>Accommodation</strong> </span></td>\r\n<td><span style=\"font-size: 12pt;\"><strong>*R 580</strong> per person per night</span></td>\r\n</tr>\r\n<tr>\r\n<td></td>\r\n<td><span style=\"font-size: 12pt;\"><strong> </strong></span></td>\r\n</tr>\r\n<tr>\r\n<td><span style=\"font-size: 12pt;\">* <strong>Specials</strong></span></td>\r\n<td><span style=\"font-size: 12pt;\"><strong>15% OFF</strong> Accommodation (1 - 2 days)</span></td>\r\n</tr>\r\n<tr>\r\n<td><span style=\"font-size: 12pt;\"> </span></td>\r\n<td><span style=\"font-size: 12pt;\"><strong>25% OFF</strong> Accommodation - Long stays (3 days &amp; more)</span></td>\r\n</tr>\r\n<tr>\r\n<td><strong><span style=\"font-size: 12pt;\"> </span></strong></td>\r\n<td><span style=\"font-size: 12pt;\"><strong> </strong></span></td>\r\n</tr>\r\n<tr>\r\n<td><strong><span style=\"font-size: 12pt;\">Servicing Options</span></strong></td>\r\n<td><span style=\"font-size: 12pt;\"><strong> </strong></span></td>\r\n</tr>\r\n<tr>\r\n<td><strong><span style=\"font-size: 12pt;\"> </span></strong></td>\r\n<td><span style=\"font-size: 12pt;\"><strong> </strong></span></td>\r\n</tr>\r\n<tr>\r\n<td><span style=\"font-size: 12pt;\">Lodge Only Servicing (Optional) </span></td>\r\n<td><span style=\"font-size: 12pt;\"><strong>R25</strong> per person per day</span></td>\r\n</tr>\r\n<tr>\r\n<td><span style=\"font-size: 12pt;\">Room Only Servicing (Optional) </span></td>\r\n<td><span style=\"font-size: 12pt;\"><strong>R25</strong> per person per day</span></td>\r\n</tr>\r\n<tr>\r\n<td><span style=\"font-size: 12pt;\"> </span></td>\r\n<td><span style=\"font-size: 12pt;\"><strong> </strong></span></td>\r\n</tr>\r\n<tr>\r\n<td colspan=\"2\"><span style=\"font-size: 12pt;\"><span style=\"font-size: 12pt;\"><strong>Catering Options</strong></span> </span><span style=\"font-size: 12pt;\"><strong> </strong></span></td>\r\n</tr>\r\n<tr>\r\n<td colspan=\"2\"><span style=\"font-size: 12pt;\"><span style=\"font-size: 12pt;\"><strong> </strong></span></span></td>\r\n</tr>\r\n<tr>\r\n<td><span style=\"font-size: 12pt;\"> <span style=\"font-size: 12pt;\">Breakfast </span></span></td>\r\n<td><span style=\"font-size: 12pt;\"><strong> </strong><span style=\"font-size: 12pt;\"><strong>R  75</strong> per person</span></span></td>\r\n</tr>\r\n<tr>\r\n<td><span style=\"font-size: 12pt;\"> <span style=\"font-size: 12pt;\">Dinners</span></span></td>\r\n<td><span style=\"font-size: 12pt;\"><span style=\"font-size: 12pt;\"><strong>R 180 </strong>per person</span></span></td>\r\n</tr>\r\n<tr>\r\n<td><span style=\"font-size: 12pt;\"> </span></td>\r\n<td><span style=\"font-size: 12pt;\"><strong> </strong></span></td>\r\n</tr>\r\n<tr>\r\n<td><strong><span style=\"font-size: 12pt;\">Others</span></strong></td>\r\n<td><span style=\"font-size: 12pt;\"><strong> </strong></span></td>\r\n</tr>\r\n<tr>\r\n<td><strong><span style=\"font-size: 12pt;\"> </span></strong></td>\r\n<td><span style=\"font-size: 12pt;\"><strong> </strong></span></td>\r\n</tr>\r\n<tr>\r\n<td><span style=\"font-size: 12pt;\">Gate Remote</span></td>\r\n<td><span style=\"font-size: 12pt;\"><strong>R 200 </strong>deposit (may be requested)</span></td>\r\n</tr>\r\n<tr>\r\n<td><span style=\"font-size: 12pt;\">Gas Braai</span></td>\r\n<td><span style=\"font-size: 12pt;\"><strong>R25</strong> per person per day</span></td>\r\n</tr>\r\n<tr>\r\n<td><span style=\"font-size: 12pt;\">Day Visitors / Guests</span></td>\r\n<td><span style=\"font-size: 12pt;\"><strong>R 50 </strong>per person per day</span></td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n[/fusion_text]', 'Rates', '', 'inherit', 'closed', 'closed', '', '1121-revision-v1', '', '', '2016-10-23 16:40:04', '2016-10-23 14:40:04', '', 1121, 'http://msla.co.za/lodge/1121-revision-v1/', 0, 'revision', '', 0),
(1314, 1, '2016-10-23 16:41:25', '2016-10-23 14:41:25', '[fullwidth background_color=\"\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding_top=\"20\" padding_bottom=\"20\" padding_left=\"0\" padding_right=\"0\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][title size=\"1\" content_align=\"right\" style_type=\"default\" sep_color=\"\" margin_top=\"\" margin_bottom=\"\" class=\"\" id=\"\"]Rates &amp; Tariffs[/title][/fullwidth][fusion_text]\r\n<table style=\"width: 100%;\" cellspacing=\"10\" cellpadding=\"5\">\r\n<tbody>\r\n<tr>\r\n<td style=\"text-align: right;\" colspan=\"2\"><span style=\"font-size: 10pt;\">ALL PRICES INCLUDE VAT<strong> </strong></span></td>\r\n</tr>\r\n<tr>\r\n<td colspan=\"2\"><span style=\"font-size: 10pt;\"> </span></td>\r\n</tr>\r\n<tr>\r\n<td colspan=\"2\"><span style=\"font-size: 12pt;\"><strong>Self-Catering / Self-Servicing Accommodation</strong></span></td>\r\n</tr>\r\n<tr>\r\n<td colspan=\"2\"><span style=\"font-size: 12pt;\"><strong> </strong></span></td>\r\n</tr>\r\n<tr>\r\n<td><span style=\"font-size: 12pt;\"><strong>Accommodation</strong> </span></td>\r\n<td><span style=\"font-size: 12pt;\"><strong>*R 580</strong> per person per night</span></td>\r\n</tr>\r\n<tr>\r\n<td></td>\r\n<td><span style=\"font-size: 12pt;\"><strong> </strong></span></td>\r\n</tr>\r\n<tr>\r\n<td><span style=\"font-size: 12pt;\">* <strong>Specials</strong></span></td>\r\n<td><span style=\"font-size: 12pt;\"><strong>15% OFF</strong> Accommodation (1 - 2 days)</span></td>\r\n</tr>\r\n<tr>\r\n<td><span style=\"font-size: 12pt;\"> </span></td>\r\n<td><span style=\"font-size: 12pt;\"><strong>25% OFF</strong> Accommodation - Long stays (3 days &amp; more)</span></td>\r\n</tr>\r\n<tr>\r\n<td><strong><span style=\"font-size: 12pt;\"> </span></strong></td>\r\n<td><span style=\"font-size: 12pt;\"><strong> </strong></span></td>\r\n</tr>\r\n<tr>\r\n<td><strong><span style=\"font-size: 12pt;\">Servicing Options</span></strong></td>\r\n<td><span style=\"font-size: 12pt;\"><strong> </strong></span></td>\r\n</tr>\r\n<tr>\r\n<td><strong><span style=\"font-size: 12pt;\"> </span></strong></td>\r\n<td><span style=\"font-size: 12pt;\"><strong> </strong></span></td>\r\n</tr>\r\n<tr>\r\n<td><span style=\"font-size: 12pt;\">Lodge Only Servicing (Optional) </span></td>\r\n<td><span style=\"font-size: 12pt;\"><strong>R  25</strong> per person per day</span></td>\r\n</tr>\r\n<tr>\r\n<td><span style=\"font-size: 12pt;\">Room Only Servicing (Optional) </span></td>\r\n<td><span style=\"font-size: 12pt;\"><strong>R  25</strong> per person per day</span></td>\r\n</tr>\r\n<tr>\r\n<td><span style=\"font-size: 12pt;\"> </span></td>\r\n<td><span style=\"font-size: 12pt;\"><strong> </strong></span></td>\r\n</tr>\r\n<tr>\r\n<td colspan=\"2\"><span style=\"font-size: 12pt;\"><span style=\"font-size: 12pt;\"><strong>Catering Options</strong></span> </span><span style=\"font-size: 12pt;\"><strong> </strong></span></td>\r\n</tr>\r\n<tr>\r\n<td colspan=\"2\"><span style=\"font-size: 12pt;\"><span style=\"font-size: 12pt;\"><strong> </strong></span></span></td>\r\n</tr>\r\n<tr>\r\n<td><span style=\"font-size: 12pt;\"> <span style=\"font-size: 12pt;\">Breakfast </span></span></td>\r\n<td><span style=\"font-size: 12pt;\"><strong> </strong><span style=\"font-size: 12pt;\"><strong>R  75</strong> per person</span></span></td>\r\n</tr>\r\n<tr>\r\n<td><span style=\"font-size: 12pt;\"> <span style=\"font-size: 12pt;\">Dinners</span></span></td>\r\n<td><span style=\"font-size: 12pt;\"><span style=\"font-size: 12pt;\"><strong>R 180 </strong>per person</span></span></td>\r\n</tr>\r\n<tr>\r\n<td><span style=\"font-size: 12pt;\"> </span></td>\r\n<td><span style=\"font-size: 12pt;\"><strong> </strong></span></td>\r\n</tr>\r\n<tr>\r\n<td><strong><span style=\"font-size: 12pt;\">Others</span></strong></td>\r\n<td><span style=\"font-size: 12pt;\"><strong> </strong></span></td>\r\n</tr>\r\n<tr>\r\n<td><strong><span style=\"font-size: 12pt;\"> </span></strong></td>\r\n<td><span style=\"font-size: 12pt;\"><strong> </strong></span></td>\r\n</tr>\r\n<tr>\r\n<td><span style=\"font-size: 12pt;\">Gate Remote</span></td>\r\n<td><span style=\"font-size: 12pt;\"><strong>R 200 </strong>deposit (may be requested)</span></td>\r\n</tr>\r\n<tr>\r\n<td><span style=\"font-size: 12pt;\">Gas Braai</span></td>\r\n<td><span style=\"font-size: 12pt;\"><strong>R  25</strong> per person per day</span></td>\r\n</tr>\r\n<tr>\r\n<td><span style=\"font-size: 12pt;\">Day Visitors / Guests</span></td>\r\n<td><span style=\"font-size: 12pt;\"><strong>R  50 </strong>per person per day</span></td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n[/fusion_text]', 'Rates', '', 'inherit', 'closed', 'closed', '', '1121-revision-v1', '', '', '2016-10-23 16:41:25', '2016-10-23 14:41:25', '', 1121, 'http://msla.co.za/lodge/1121-revision-v1/', 0, 'revision', '', 0);
INSERT INTO `wp_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(1315, 1, '2016-10-23 16:44:47', '2016-10-23 14:44:47', '[fullwidth background_color=\"#f0f0ed\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"20\" padding_bottom=\"20\" padding_left=\"0px\" padding_right=\"0px\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][one_half last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][separator style_type=\"single\" top_margin=\"0\" bottom_margin=\"30\" sep_color=\"#000000\" border_size=\"\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"170px\" alignment=\"center\" class=\"separator-left\" id=\"\"][fusion_text]\r\n<h1 style=\"text-align: center;\">No Fancy Star Grading\r\nNo Room Service\r\nNo Bed Turn-downs\r\nNo Rose Petals in the Bath water</h1>\r\n<h1 style=\"text-align: center;\">... just old fashioned homely comforts</h1>\r\n[/fusion_text][/one_half][one_half last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][fusion_text]\r\n<h1 style=\"text-align: justify;\">5 BEDROOM FAMILY LODGE</h1>\r\n<h3 style=\"text-align: justify;\">We are a four season lodge, because there’s always something to celebrate… We offer comfort, relaxation and privacy right in the heart of 1000 Hills. The Forest, the Gardens, the Atmosphere all speak to  Rest  &amp; Relaxation.</h3>\r\n[/fusion_text][separator style_type=\"single\" top_margin=\"0\" bottom_margin=\"30\" sep_color=\"#000000\" border_size=\"\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"170px\" alignment=\"left\" class=\"separator-left\" id=\"\"][title size=\"3\" content_align=\"left\" style_type=\"default\" sep_color=\"\" margin_top=\"\" margin_bottom=\"\" class=\"\" id=\"\"]\r\n<h2 style=\"text-align: center;\">Specials</h2>\r\n[/title][checklist icon=\"fa-sort-amount-desc\" iconcolor=\"\" circle=\"yes\" circlecolor=\"\" size=\"13px\" class=\"\" id=\"\"][li_item icon=\"\"]\r\n<h3>15% OFF on Accommodation</h3>\r\n[/li_item][li_item icon=\"\"]\r\n<h3>25% OFF on Accommodation - Stay 3 days or more</h3>\r\n[/li_item][/checklist][/one_half][/fullwidth][fullwidth background_color=\"#f0f0ed\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"20\" padding_bottom=\"20\" padding_left=\"0px\" padding_right=\"0px\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][one_half last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][fusion_text]\r\n<h3 style=\"text-align: justify;\">Set in the rolling peaks and valleys of a thousand hills surrounded by a canopy of indigenous trees, you will find that horses still have right of way, we certainly offer the best of both worlds, farm and charm coupled with modern amenities that will have you feeling relaxed and rejuvenated.</h3>\r\n<h3 style=\"text-align: justify;\">We know that sometimes you are searching for a romantic getaway or maybe a few days away with old friends. Other times you are searching for a place to host a weekend, family reunion or a business retreat. In addition to nightly room rentals, our lodge is also available for meetings, retreats  and makes the perfect place for a wedding party to stay together and get ready for the big day. Regardless, with our five comfortable and cozy guest bedrooms, multiple garden spaces and hideaways, and a  large private deck  where you can take a nap or read a book we definitely have the room for you!</h3>\r\n<h3 style=\"text-align: justify;\">Evenings are quiet and peaceful taking you far away from the business of city life. This is a unique and memorable country experience. We look forward to having you as a guest!</h3>\r\n[/fusion_text][/one_half][one_half last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][fusion_text]\r\n<h3 style=\"text-align: justify;\">Our lodge has been in our family for years and has recently been beautifully renovated. Five rooms all with en-suite showers lead off your own large central lounge, featuring a 36 foot high vaulted ceiling, offering spacious living, dining, and a bar/conversational lounge area which includes a fitted kitchenette, all adding to a sense of homely comfort. Sumptuous meals can be provided on request and served on the bottom deck at the swimming pool.</h3>\r\n<h3 style=\"text-align: justify;\">Be lulled to sleep by the sound of the waterfall and tinkling stream just outside your window, waking from a peaceful night\'s sleep in a pillow-top bed dressed in luxurious linens to coddle you in ultimate comfort.</h3>\r\n<h3 style=\"text-align: justify;\">Our property boasts many different species of birds and animals. We have a resident otter, a family of wild bush pigs,  a family of rock rabbits, porcupine, little blue duikers, a variety of different frogs and an abundance of bird life, including the occasional snakes that pass through!</h3>\r\n[/fusion_text][/one_half][/fullwidth][fullwidth background_color=\"#f0f0ed\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"20\" padding_bottom=\"20\" padding_left=\"0px\" padding_right=\"0px\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][fusion_text]\r\n<h1 style=\"text-align: center;\">Gallery</h1>\r\n[/fusion_text][separator style_type=\"single\" top_margin=\"\" bottom_margin=\"40\" sep_color=\"#000000\" border_size=\"\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"170px\" alignment=\"\" class=\"\" id=\"\"][one_sixth last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][/one_sixth][two_third last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][fusion_text]\r\n<h3 style=\"text-align: justify;\">The Lodge is open, spacious, comfortable and homely. During hot summer days, sit and bask in the sun on the deck  with one of our  picnic specials. In winter, snuggle up with a good book or challenge one another to a friendly board game in the glassed nook area .</h3>\r\n[/fusion_text][/two_third][one_sixth last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][/one_sixth][/fullwidth][fullwidth background_color=\"#f0f0ed\" background_image=\"http://localhost/assagaylodge/wp-content/uploads/2015/01/Wood_Texture.jpg\" background_parallax=\"fixed\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"30\" padding_bottom=\"10\" padding_left=\"0\" padding_right=\"0\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][recent_works layout=\"grid\" picture_size=\"auto\" boxed_text=\"unboxed\" filters=\"no\" columns=\"3\" column_spacing=\"12\" cat_slug=\"the-lodge\" exclude_cats=\"\" number_posts=\"9\" offset=\"\" excerpt_length=\"35\" strip_html=\"yes\" carousel_layout=\"title_on_rollover\" scroll_items=\"\" autoplay=\"no\" show_nav=\"yes\" mouse_scroll=\"no\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][/recent_works][/fullwidth][fullwidth background_color=\"#f0f0ed\" background_image=\"\" background_parallax=\"fixed\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"20\" padding_bottom=\"20\" padding_left=\"0px\" padding_right=\"0px\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][fusion_text]\r\n<h1 style=\"text-align: center;\">BEDROOMS</h1>\r\n[/fusion_text][separator style_type=\"single\" top_margin=\"\" bottom_margin=\"20\" sep_color=\"#000000\" border_size=\"\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"170px\" alignment=\"\" class=\"\" id=\"\"][one_sixth last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][/one_sixth][two_third last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][fusion_text]\r\n<h3 style=\"text-align: justify;\">When it comes to our bedrooms we’re proud to say we offer something a little more special. One of five  lovingly and tastefully decorated guest rooms. Soft gray decor soothes the senses providing a peaceful, blissfully comfortable rest from your travels and hectic lives.</h3>\r\n<h3 style=\"text-align: justify;\">Our  bedrooms are spacious, clean, comfortable all en-suite, equipped with either king size or queen size beds. Each room sleeps two guests. The rooms have high ceilings, wall heaters &amp; ceiling fans. Beds all have electric blankets in Winter, 100% cotton percale sheets and thick hyper allergenic microfiber duvets and pillows. All guest rooms are cleaned with organic and green products. Amenities include hairdryers in each room. Three rooms feature King-sized beds  of which two can be  split into two single beds. Two  rooms can therefore be changed into a twin room upon request. Two rooms feature a Queen-sized double bed. These beds cannot be split into twin beds.</h3>\r\n[/fusion_text][/two_third][one_sixth last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][/one_sixth][/fullwidth][fullwidth background_color=\"\" background_image=\"http://localhost/assagaylodge/wp-content/uploads/2015/01/DSC01516-1148-x-764.jpg\" background_parallax=\"fixed\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"center center\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"20\" padding_bottom=\"20\" padding_left=\"0\" padding_right=\"0\" hundred_percent=\"no\" equal_height_columns=\"yes\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][recent_works layout=\"grid\" picture_size=\"auto\" boxed_text=\"unboxed\" filters=\"no\" columns=\"3\" column_spacing=\"12\" cat_slug=\"bedrooms\" exclude_cats=\"\" number_posts=\"6\" offset=\"\" excerpt_length=\"35\" strip_html=\"yes\" carousel_layout=\"title_on_rollover\" scroll_items=\"\" autoplay=\"no\" show_nav=\"yes\" mouse_scroll=\"no\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][/recent_works][/fullwidth][fullwidth background_color=\"#f0f0ed\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"20\" padding_bottom=\"20\" padding_left=\"0\" padding_right=\"0\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][fusion_text]\r\n<h1 style=\"text-align: center;\">GARDENS</h1>\r\n[/fusion_text][separator style_type=\"single\" top_margin=\"\" bottom_margin=\"20\" sep_color=\"#000000\" border_size=\"\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"170px\" alignment=\"\" class=\"\" id=\"\"][one_sixth last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][/one_sixth][two_third last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][fusion_text]\r\n<h3 style=\"text-align: justify;\">The garden is large and offers many secluded spots to lose yourself in a book with a glass of wine underneath the shade of a tree, listening to the sounds of the birds and smelling the beautiful flowers.</h3>\r\n[/fusion_text][/two_third][one_sixth last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][/one_sixth][recent_works layout=\"grid\" picture_size=\"auto\" boxed_text=\"boxed\" filters=\"no\" columns=\"3\" column_spacing=\"12\" cat_slug=\"gardens\" exclude_cats=\"\" number_posts=\"9\" offset=\"\" excerpt_length=\"35\" strip_html=\"yes\" carousel_layout=\"title_on_rollover\" scroll_items=\"\" autoplay=\"no\" show_nav=\"yes\" mouse_scroll=\"no\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][/recent_works][/fullwidth][fullwidth background_color=\"#ffffff\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"65px\" padding_bottom=\"65px\" padding_left=\"0px\" padding_right=\"0px\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][button link=\"http://localhost/assagaylodge/book-now/\" color=\"default\" size=\"xlarge\" stretch=\"default\" type=\"3d\" shape=\"round\" target=\"_self\" title=\"\" gradient_colors=\"#f0f0ed|#f0f0ed\" gradient_hover_colors=\"#6666a4|#6666a4\" accent_color=\"#ffffff\" accent_hover_color=\"#ffffff\" bevel_color=\"\" border_width=\"0px\" icon=\"\" icon_position=\"left\" icon_divider=\"no\" modal=\"\" animation_type=\"0\" animation_direction=\"left\" animation_speed=\"1\" animation_offset=\"\" alignment=\"center\" class=\"\" id=\"\"]Make A Reservation Enquiry[/button][/fullwidth]', 'Home', '', 'inherit', 'closed', 'closed', '', '7-revision-v1', '', '', '2016-10-23 16:44:47', '2016-10-23 14:44:47', '', 7, 'http://msla.co.za/lodge/7-revision-v1/', 0, 'revision', '', 0),
(1316, 1, '2016-10-23 16:50:11', '2016-10-23 14:50:11', '[fullwidth background_color=\"#f0f0ed\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"20\" padding_bottom=\"20\" padding_left=\"0px\" padding_right=\"0px\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][one_half last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][separator style_type=\"single\" top_margin=\"0\" bottom_margin=\"30\" sep_color=\"#000000\" border_size=\"\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"170px\" alignment=\"center\" class=\"separator-left\" id=\"\"][fusion_text]\r\n<h1 style=\"text-align: center;\">No Fancy Star Grading\r\nNo Room Service\r\nNo Bed Turn-downs\r\nNo Rose Petals in the Bath water</h1>\r\n<h1 style=\"text-align: center;\">... just old fashioned homely comforts</h1>\r\n[/fusion_text][/one_half][one_half last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][fusion_text]\r\n<h1 style=\"text-align: justify;\">5 BEDROOM FAMILY LODGE</h1>\r\n<h3 style=\"text-align: justify;\">We are a four season lodge, because there’s always something to celebrate… We offer comfort, relaxation and privacy right in the heart of 1000 Hills. The Forest, the Gardens, the Atmosphere all speak to  Rest  &amp; Relaxation.</h3>\r\n[/fusion_text][separator style_type=\"single\" top_margin=\"0\" bottom_margin=\"30\" sep_color=\"#000000\" border_size=\"\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"170px\" alignment=\"left\" class=\"separator-left\" id=\"\"][title size=\"3\" content_align=\"left\" style_type=\"default\" sep_color=\"\" margin_top=\"\" margin_bottom=\"\" class=\"\" id=\"\"]\r\n<h2 style=\"text-align: center;\">Specials</h2>\r\n[/title][checklist icon=\"fa-sort-amount-desc\" iconcolor=\"\" circle=\"yes\" circlecolor=\"\" size=\"13px\" class=\"\" id=\"\"][li_item icon=\"\"]\r\n<h3><a href=\"http://msla.co.za/lodge/reservations/\">15% OFF on Accommodation</a></h3>\r\n[/li_item][li_item icon=\"\"]\r\n<h3><a href=\"http://msla.co.za/lodge/reservations/\">25% OFF on Accommodation - Stay 3 days or more</a></h3>\r\n[/li_item][/checklist][/one_half][/fullwidth][fullwidth background_color=\"#f0f0ed\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"20\" padding_bottom=\"20\" padding_left=\"0px\" padding_right=\"0px\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][one_half last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][fusion_text]\r\n<h3 style=\"text-align: justify;\">Set in the rolling peaks and valleys of a thousand hills surrounded by a canopy of indigenous trees, you will find that horses still have right of way, we certainly offer the best of both worlds, farm and charm coupled with modern amenities that will have you feeling relaxed and rejuvenated.</h3>\r\n<h3 style=\"text-align: justify;\">We know that sometimes you are searching for a romantic getaway or maybe a few days away with old friends. Other times you are searching for a place to host a weekend, family reunion or a business retreat. In addition to nightly room rentals, our lodge is also available for meetings, retreats  and makes the perfect place for a wedding party to stay together and get ready for the big day. Regardless, with our five comfortable and cozy guest bedrooms, multiple garden spaces and hideaways, and a  large private deck  where you can take a nap or read a book we definitely have the room for you!</h3>\r\n<h3 style=\"text-align: justify;\">Evenings are quiet and peaceful taking you far away from the business of city life. This is a unique and memorable country experience. We look forward to having you as a guest!</h3>\r\n[/fusion_text][/one_half][one_half last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][fusion_text]\r\n<h3 style=\"text-align: justify;\">Our lodge has been in our family for years and has recently been beautifully renovated. Five rooms all with en-suite showers lead off your own large central lounge, featuring a 36 foot high vaulted ceiling, offering spacious living, dining, and a bar/conversational lounge area which includes a fitted kitchenette, all adding to a sense of homely comfort. Sumptuous meals can be provided on request and served on the bottom deck at the swimming pool.</h3>\r\n<h3 style=\"text-align: justify;\">Be lulled to sleep by the sound of the waterfall and tinkling stream just outside your window, waking from a peaceful night\'s sleep in a pillow-top bed dressed in luxurious linens to coddle you in ultimate comfort.</h3>\r\n<h3 style=\"text-align: justify;\">Our property boasts many different species of birds and animals. We have a resident otter, a family of wild bush pigs,  a family of rock rabbits, porcupine, little blue duikers, a variety of different frogs and an abundance of bird life, including the occasional snakes that pass through!</h3>\r\n[/fusion_text][/one_half][/fullwidth][fullwidth background_color=\"#f0f0ed\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"20\" padding_bottom=\"20\" padding_left=\"0px\" padding_right=\"0px\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][fusion_text]\r\n<h1 style=\"text-align: center;\">Gallery</h1>\r\n[/fusion_text][separator style_type=\"single\" top_margin=\"\" bottom_margin=\"40\" sep_color=\"#000000\" border_size=\"\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"170px\" alignment=\"\" class=\"\" id=\"\"][one_sixth last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][/one_sixth][two_third last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][fusion_text]\r\n<h3 style=\"text-align: justify;\">The Lodge is open, spacious, comfortable and homely. During hot summer days, sit and bask in the sun on the deck  with one of our  picnic specials. In winter, snuggle up with a good book or challenge one another to a friendly board game in the glassed nook area .</h3>\r\n[/fusion_text][/two_third][one_sixth last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][/one_sixth][/fullwidth][fullwidth background_color=\"#f0f0ed\" background_image=\"http://localhost/assagaylodge/wp-content/uploads/2015/01/Wood_Texture.jpg\" background_parallax=\"fixed\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"30\" padding_bottom=\"10\" padding_left=\"0\" padding_right=\"0\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][recent_works layout=\"grid\" picture_size=\"auto\" boxed_text=\"unboxed\" filters=\"no\" columns=\"3\" column_spacing=\"12\" cat_slug=\"the-lodge\" exclude_cats=\"\" number_posts=\"9\" offset=\"\" excerpt_length=\"35\" strip_html=\"yes\" carousel_layout=\"title_on_rollover\" scroll_items=\"\" autoplay=\"no\" show_nav=\"yes\" mouse_scroll=\"no\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][/recent_works][/fullwidth][fullwidth background_color=\"#f0f0ed\" background_image=\"\" background_parallax=\"fixed\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"20\" padding_bottom=\"20\" padding_left=\"0px\" padding_right=\"0px\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][fusion_text]\r\n<h1 style=\"text-align: center;\">BEDROOMS</h1>\r\n[/fusion_text][separator style_type=\"single\" top_margin=\"\" bottom_margin=\"20\" sep_color=\"#000000\" border_size=\"\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"170px\" alignment=\"\" class=\"\" id=\"\"][one_sixth last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][/one_sixth][two_third last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][fusion_text]\r\n<h3 style=\"text-align: justify;\">When it comes to our bedrooms we’re proud to say we offer something a little more special. One of five  lovingly and tastefully decorated guest rooms. Soft gray decor soothes the senses providing a peaceful, blissfully comfortable rest from your travels and hectic lives.</h3>\r\n<h3 style=\"text-align: justify;\">Our  bedrooms are spacious, clean, comfortable all en-suite, equipped with either king size or queen size beds. Each room sleeps two guests. The rooms have high ceilings, wall heaters &amp; ceiling fans. Beds all have electric blankets in Winter, 100% cotton percale sheets and thick hyper allergenic microfiber duvets and pillows. All guest rooms are cleaned with organic and green products. Amenities include hairdryers in each room. Three rooms feature King-sized beds  of which two can be  split into two single beds. Two  rooms can therefore be changed into a twin room upon request. Two rooms feature a Queen-sized double bed. These beds cannot be split into twin beds.</h3>\r\n[/fusion_text][/two_third][one_sixth last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][/one_sixth][/fullwidth][fullwidth background_color=\"\" background_image=\"http://localhost/assagaylodge/wp-content/uploads/2015/01/DSC01516-1148-x-764.jpg\" background_parallax=\"fixed\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"center center\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"20\" padding_bottom=\"20\" padding_left=\"0\" padding_right=\"0\" hundred_percent=\"no\" equal_height_columns=\"yes\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][recent_works layout=\"grid\" picture_size=\"auto\" boxed_text=\"unboxed\" filters=\"no\" columns=\"3\" column_spacing=\"12\" cat_slug=\"bedrooms\" exclude_cats=\"\" number_posts=\"6\" offset=\"\" excerpt_length=\"35\" strip_html=\"yes\" carousel_layout=\"title_on_rollover\" scroll_items=\"\" autoplay=\"no\" show_nav=\"yes\" mouse_scroll=\"no\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][/recent_works][/fullwidth][fullwidth background_color=\"#f0f0ed\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"20\" padding_bottom=\"20\" padding_left=\"0\" padding_right=\"0\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][fusion_text]\r\n<h1 style=\"text-align: center;\">GARDENS</h1>\r\n[/fusion_text][separator style_type=\"single\" top_margin=\"\" bottom_margin=\"20\" sep_color=\"#000000\" border_size=\"\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"170px\" alignment=\"\" class=\"\" id=\"\"][one_sixth last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][/one_sixth][two_third last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][fusion_text]\r\n<h3 style=\"text-align: justify;\">The garden is large and offers many secluded spots to lose yourself in a book with a glass of wine underneath the shade of a tree, listening to the sounds of the birds and smelling the beautiful flowers.</h3>\r\n[/fusion_text][/two_third][one_sixth last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][/one_sixth][recent_works layout=\"grid\" picture_size=\"auto\" boxed_text=\"boxed\" filters=\"no\" columns=\"3\" column_spacing=\"12\" cat_slug=\"gardens\" exclude_cats=\"\" number_posts=\"9\" offset=\"\" excerpt_length=\"35\" strip_html=\"yes\" carousel_layout=\"title_on_rollover\" scroll_items=\"\" autoplay=\"no\" show_nav=\"yes\" mouse_scroll=\"no\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][/recent_works][/fullwidth][fullwidth background_color=\"#ffffff\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"65px\" padding_bottom=\"65px\" padding_left=\"0px\" padding_right=\"0px\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][button link=\"http://localhost/assagaylodge/book-now/\" color=\"default\" size=\"xlarge\" stretch=\"default\" type=\"3d\" shape=\"round\" target=\"_self\" title=\"\" gradient_colors=\"#f0f0ed|#f0f0ed\" gradient_hover_colors=\"#6666a4|#6666a4\" accent_color=\"#ffffff\" accent_hover_color=\"#ffffff\" bevel_color=\"\" border_width=\"0px\" icon=\"\" icon_position=\"left\" icon_divider=\"no\" modal=\"\" animation_type=\"0\" animation_direction=\"left\" animation_speed=\"1\" animation_offset=\"\" alignment=\"center\" class=\"\" id=\"\"]Make A Reservation Enquiry[/button][/fullwidth]', 'Home', '', 'inherit', 'closed', 'closed', '', '7-revision-v1', '', '', '2016-10-23 16:50:11', '2016-10-23 14:50:11', '', 7, 'http://msla.co.za/lodge/7-revision-v1/', 0, 'revision', '', 0),
(1317, 1, '2016-10-23 18:07:18', '2016-10-23 16:07:18', ' ', '', '', 'publish', 'closed', 'closed', '', 'reservation-enquiries', '', '', '2020-03-03 14:24:45', '2020-03-03 12:24:45', '', 0, 'http://msla.co.za/lodge/?p=1317', 2, 'nav_menu_item', '', 0);
INSERT INTO `wp_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(1318, 1, '2016-10-23 18:19:48', '2016-10-23 16:19:48', '[fullwidth background_color=\"#f0f0ed\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"20\" padding_bottom=\"20\" padding_left=\"0px\" padding_right=\"0px\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][one_half last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][separator style_type=\"single\" top_margin=\"0\" bottom_margin=\"30\" sep_color=\"#000000\" border_size=\"\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"170px\" alignment=\"center\" class=\"separator-left\" id=\"\"][fusion_text]\r\n<h1 style=\"text-align: center;\">No Fancy Star Grading\r\nNo Room Service\r\nNo Bed Turn-downs\r\nNo Rose Petals in the Bath water</h1>\r\n<h1 style=\"text-align: center;\">... just old fashioned homely comforts</h1>\r\n[/fusion_text][/one_half][one_half last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][fusion_text]\r\n<h1 style=\"text-align: justify;\">5 BEDROOM FAMILY LODGE</h1>\r\n<h3 style=\"text-align: justify;\">We are a four season lodge, because there’s always something to celebrate… We offer comfort, relaxation and privacy right in the heart of 1000 Hills. The Forest, the Gardens, the Atmosphere all speak to  Rest  &amp; Relaxation.</h3>\r\n[/fusion_text][separator style_type=\"single\" top_margin=\"0\" bottom_margin=\"30\" sep_color=\"#000000\" border_size=\"\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"170px\" alignment=\"left\" class=\"separator-left\" id=\"\"][title size=\"3\" content_align=\"left\" style_type=\"default\" sep_color=\"\" margin_top=\"\" margin_bottom=\"\" class=\"\" id=\"\"]\r\n<h2 style=\"text-align: center;\">Specials</h2>\r\n[/title][checklist icon=\"fa-sort-amount-desc\" iconcolor=\"\" circle=\"yes\" circlecolor=\"\" size=\"13px\" class=\"\" id=\"\"][li_item icon=\"\"]\r\n<h3><a href=\"http://msla.co.za/lodge/reservations/\">DISCOUNTS on Accommodation</a></h3>\r\n[/li_item][li_item icon=\"\"]\r\n<h3><a href=\"http://msla.co.za/lodge/reservations/\">DISCOUNTS - Stay 3 days or more</a></h3>\r\n[/li_item][/checklist][/one_half][/fullwidth][fullwidth background_color=\"#f0f0ed\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"20\" padding_bottom=\"20\" padding_left=\"0px\" padding_right=\"0px\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][one_half last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][fusion_text]\r\n<h3 style=\"text-align: justify;\">Set in the rolling peaks and valleys of a thousand hills surrounded by a canopy of indigenous trees, you will find that horses still have right of way, we certainly offer the best of both worlds, farm and charm coupled with modern amenities that will have you feeling relaxed and rejuvenated.</h3>\r\n<h3 style=\"text-align: justify;\">We know that sometimes you are searching for a romantic getaway or maybe a few days away with old friends. Other times you are searching for a place to host a weekend, family reunion or a business retreat. In addition to nightly room rentals, our lodge is also available for meetings, retreats  and makes the perfect place for a wedding party to stay together and get ready for the big day. Regardless, with our five comfortable and cozy guest bedrooms, multiple garden spaces and hideaways, and a  large private deck  where you can take a nap or read a book we definitely have the room for you!</h3>\r\n<h3 style=\"text-align: justify;\">Evenings are quiet and peaceful taking you far away from the business of city life. This is a unique and memorable country experience. We look forward to having you as a guest!</h3>\r\n[/fusion_text][/one_half][one_half last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][fusion_text]\r\n<h3 style=\"text-align: justify;\">Our lodge has been in our family for years and has recently been beautifully renovated. Five rooms all with en-suite showers lead off your own large central lounge, featuring a 36 foot high vaulted ceiling, offering spacious living, dining, and a bar/conversational lounge area which includes a fitted kitchenette, all adding to a sense of homely comfort. Sumptuous meals can be provided on request and served on the bottom deck at the swimming pool.</h3>\r\n<h3 style=\"text-align: justify;\">Be lulled to sleep by the sound of the waterfall and tinkling stream just outside your window, waking from a peaceful night\'s sleep in a pillow-top bed dressed in luxurious linens to coddle you in ultimate comfort.</h3>\r\n<h3 style=\"text-align: justify;\">Our property boasts many different species of birds and animals. We have a resident otter, a family of wild bush pigs,  a family of rock rabbits, porcupine, little blue duikers, a variety of different frogs and an abundance of bird life, including the occasional snakes that pass through!</h3>\r\n[/fusion_text][/one_half][/fullwidth][fullwidth background_color=\"#f0f0ed\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"20\" padding_bottom=\"20\" padding_left=\"0px\" padding_right=\"0px\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][fusion_text]\r\n<h1 style=\"text-align: center;\">Gallery</h1>\r\n[/fusion_text][separator style_type=\"single\" top_margin=\"\" bottom_margin=\"40\" sep_color=\"#000000\" border_size=\"\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"170px\" alignment=\"\" class=\"\" id=\"\"][one_sixth last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][/one_sixth][two_third last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][fusion_text]\r\n<h3 style=\"text-align: justify;\">The Lodge is open, spacious, comfortable and homely. During hot summer days, sit and bask in the sun on the deck  with one of our  picnic specials. In winter, snuggle up with a good book or challenge one another to a friendly board game in the glassed nook area .</h3>\r\n[/fusion_text][/two_third][one_sixth last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][/one_sixth][/fullwidth][fullwidth background_color=\"#f0f0ed\" background_image=\"http://localhost/assagaylodge/wp-content/uploads/2015/01/Wood_Texture.jpg\" background_parallax=\"fixed\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"30\" padding_bottom=\"10\" padding_left=\"0\" padding_right=\"0\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][recent_works layout=\"grid\" picture_size=\"auto\" boxed_text=\"unboxed\" filters=\"no\" columns=\"3\" column_spacing=\"12\" cat_slug=\"the-lodge\" exclude_cats=\"\" number_posts=\"9\" offset=\"\" excerpt_length=\"35\" strip_html=\"yes\" carousel_layout=\"title_on_rollover\" scroll_items=\"\" autoplay=\"no\" show_nav=\"yes\" mouse_scroll=\"no\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][/recent_works][/fullwidth][fullwidth background_color=\"#f0f0ed\" background_image=\"\" background_parallax=\"fixed\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"20\" padding_bottom=\"20\" padding_left=\"0px\" padding_right=\"0px\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][fusion_text]\r\n<h1 style=\"text-align: center;\">BEDROOMS</h1>\r\n[/fusion_text][separator style_type=\"single\" top_margin=\"\" bottom_margin=\"20\" sep_color=\"#000000\" border_size=\"\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"170px\" alignment=\"\" class=\"\" id=\"\"][one_sixth last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][/one_sixth][two_third last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][fusion_text]\r\n<h3 style=\"text-align: justify;\">When it comes to our bedrooms we’re proud to say we offer something a little more special. One of five  lovingly and tastefully decorated guest rooms. Soft gray decor soothes the senses providing a peaceful, blissfully comfortable rest from your travels and hectic lives.</h3>\r\n<h3 style=\"text-align: justify;\">Our  bedrooms are spacious, clean, comfortable all en-suite, equipped with either king size or queen size beds. Each room sleeps two guests. The rooms have high ceilings, wall heaters &amp; ceiling fans. Beds all have electric blankets in Winter, 100% cotton percale sheets and thick hyper allergenic microfiber duvets and pillows. All guest rooms are cleaned with organic and green products. Amenities include hairdryers in each room. Three rooms feature King-sized beds  of which two can be  split into two single beds. Two  rooms can therefore be changed into a twin room upon request. Two rooms feature a Queen-sized double bed. These beds cannot be split into twin beds.</h3>\r\n[/fusion_text][/two_third][one_sixth last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][/one_sixth][/fullwidth][fullwidth background_color=\"\" background_image=\"http://localhost/assagaylodge/wp-content/uploads/2015/01/DSC01516-1148-x-764.jpg\" background_parallax=\"fixed\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"center center\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"20\" padding_bottom=\"20\" padding_left=\"0\" padding_right=\"0\" hundred_percent=\"no\" equal_height_columns=\"yes\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][recent_works layout=\"grid\" picture_size=\"auto\" boxed_text=\"unboxed\" filters=\"no\" columns=\"3\" column_spacing=\"12\" cat_slug=\"bedrooms\" exclude_cats=\"\" number_posts=\"6\" offset=\"\" excerpt_length=\"35\" strip_html=\"yes\" carousel_layout=\"title_on_rollover\" scroll_items=\"\" autoplay=\"no\" show_nav=\"yes\" mouse_scroll=\"no\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][/recent_works][/fullwidth][fullwidth background_color=\"#f0f0ed\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"20\" padding_bottom=\"20\" padding_left=\"0\" padding_right=\"0\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][fusion_text]\r\n<h1 style=\"text-align: center;\">GARDENS</h1>\r\n[/fusion_text][separator style_type=\"single\" top_margin=\"\" bottom_margin=\"20\" sep_color=\"#000000\" border_size=\"\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"170px\" alignment=\"\" class=\"\" id=\"\"][one_sixth last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][/one_sixth][two_third last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][fusion_text]\r\n<h3 style=\"text-align: justify;\">The garden is large and offers many secluded spots to lose yourself in a book with a glass of wine underneath the shade of a tree, listening to the sounds of the birds and smelling the beautiful flowers.</h3>\r\n[/fusion_text][/two_third][one_sixth last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][/one_sixth][recent_works layout=\"grid\" picture_size=\"auto\" boxed_text=\"boxed\" filters=\"no\" columns=\"3\" column_spacing=\"12\" cat_slug=\"gardens\" exclude_cats=\"\" number_posts=\"9\" offset=\"\" excerpt_length=\"35\" strip_html=\"yes\" carousel_layout=\"title_on_rollover\" scroll_items=\"\" autoplay=\"no\" show_nav=\"yes\" mouse_scroll=\"no\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][/recent_works][/fullwidth][fullwidth background_color=\"#ffffff\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"65px\" padding_bottom=\"65px\" padding_left=\"0px\" padding_right=\"0px\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][button link=\"http://localhost/assagaylodge/book-now/\" color=\"default\" size=\"xlarge\" stretch=\"default\" type=\"3d\" shape=\"round\" target=\"_self\" title=\"\" gradient_colors=\"#f0f0ed|#f0f0ed\" gradient_hover_colors=\"#6666a4|#6666a4\" accent_color=\"#ffffff\" accent_hover_color=\"#ffffff\" bevel_color=\"\" border_width=\"0px\" icon=\"\" icon_position=\"left\" icon_divider=\"no\" modal=\"\" animation_type=\"0\" animation_direction=\"left\" animation_speed=\"1\" animation_offset=\"\" alignment=\"center\" class=\"\" id=\"\"]Make A Reservation Enquiry[/button][/fullwidth]', 'Home', '', 'inherit', 'closed', 'closed', '', '7-revision-v1', '', '', '2016-10-23 18:19:48', '2016-10-23 16:19:48', '', 7, 'http://msla.co.za/lodge/7-revision-v1/', 0, 'revision', '', 0),
(1319, 1, '2016-10-23 22:30:01', '2016-10-23 20:30:01', '[fullwidth background_color=\"#f0f0ed\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"20\" padding_bottom=\"20\" padding_left=\"0px\" padding_right=\"0px\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][one_half last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][separator style_type=\"single\" top_margin=\"0\" bottom_margin=\"30\" sep_color=\"#000000\" border_size=\"\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"170px\" alignment=\"center\" class=\"separator-left\" id=\"\"][fusion_text]\r\n<h1 style=\"text-align: center;\">No Fancy Star Grading\r\nNo Room Service\r\nNo Bed Turn-downs\r\nNo Rose Petals in the Bath water</h1>\r\n<h1 style=\"text-align: center;\">... just old fashioned homely comforts</h1>\r\n[/fusion_text][/one_half][one_half last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][fusion_text]\r\n<h1 style=\"text-align: justify;\">5 BEDROOM FAMILY LODGE</h1>\r\n<h3 style=\"text-align: justify;\">We are a four season lodge, because there’s always something to celebrate… We offer comfort, relaxation and privacy right in the heart of 1000 Hills. The Forest, the Gardens, the Atmosphere all speak to  Rest  &amp; Relaxation.</h3>\r\n[/fusion_text][separator style_type=\"single\" top_margin=\"0\" bottom_margin=\"30\" sep_color=\"#000000\" border_size=\"\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"170px\" alignment=\"left\" class=\"separator-left\" id=\"\"][title size=\"3\" content_align=\"left\" style_type=\"default\" sep_color=\"\" margin_top=\"\" margin_bottom=\"\" class=\"\" id=\"\"]\r\n<h2 style=\"text-align: center;\">Specials</h2>\r\n[/title][checklist icon=\"fa-sort-amount-desc\" iconcolor=\"\" circle=\"yes\" circlecolor=\"\" size=\"13px\" class=\"\" id=\"\"][li_item icon=\"\"]\r\n<h3>Book on-line - get 15% OFF your <a href=\"http://msla.co.za/lodge/reservations/\"> Accommodation</a></h3>\r\n[/li_item][li_item icon=\"\"]\r\n<h3> <a href=\"http://msla.co.za/lodge/reservations/\">Stay 3 days or more</a> - get 25% OFF your Accommodation</h3>\r\n[/li_item][/checklist][/one_half][/fullwidth][fullwidth background_color=\"#f0f0ed\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"20\" padding_bottom=\"20\" padding_left=\"0px\" padding_right=\"0px\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][one_half last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][fusion_text]\r\n<h3 style=\"text-align: justify;\">Set in the rolling peaks and valleys of a thousand hills surrounded by a canopy of indigenous trees, you will find that horses still have right of way, we certainly offer the best of both worlds, farm and charm coupled with modern amenities that will have you feeling relaxed and rejuvenated.</h3>\r\n<h3 style=\"text-align: justify;\">We know that sometimes you are searching for a romantic getaway or maybe a few days away with old friends. Other times you are searching for a place to host a weekend, family reunion or a business retreat. In addition to nightly room rentals, our lodge is also available for meetings, retreats  and makes the perfect place for a wedding party to stay together and get ready for the big day. Regardless, with our five comfortable and cozy guest bedrooms, multiple garden spaces and hideaways, and a  large private deck  where you can take a nap or read a book we definitely have the room for you!</h3>\r\n<h3 style=\"text-align: justify;\">Evenings are quiet and peaceful taking you far away from the business of city life. This is a unique and memorable country experience. We look forward to having you as a guest!</h3>\r\n[/fusion_text][/one_half][one_half last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][fusion_text]\r\n<h3 style=\"text-align: justify;\">Our lodge has been in our family for years and has recently been beautifully renovated. Five rooms all with en-suite showers lead off your own large central lounge, featuring a 36 foot high vaulted ceiling, offering spacious living, dining, and a bar/conversational lounge area which includes a fitted kitchenette, all adding to a sense of homely comfort. Sumptuous meals can be provided on request and served on the bottom deck at the swimming pool.</h3>\r\n<h3 style=\"text-align: justify;\">Be lulled to sleep by the sound of the waterfall and tinkling stream just outside your window, waking from a peaceful night\'s sleep in a pillow-top bed dressed in luxurious linens to coddle you in ultimate comfort.</h3>\r\n<h3 style=\"text-align: justify;\">Our property boasts many different species of birds and animals. We have a resident otter, a family of wild bush pigs,  a family of rock rabbits, porcupine, little blue duikers, a variety of different frogs and an abundance of bird life, including the occasional snakes that pass through!</h3>\r\n[/fusion_text][/one_half][/fullwidth][fullwidth background_color=\"#f0f0ed\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"20\" padding_bottom=\"20\" padding_left=\"0px\" padding_right=\"0px\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][fusion_text]\r\n<h1 style=\"text-align: center;\">Gallery</h1>\r\n[/fusion_text][separator style_type=\"single\" top_margin=\"\" bottom_margin=\"40\" sep_color=\"#000000\" border_size=\"\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"170px\" alignment=\"\" class=\"\" id=\"\"][one_sixth last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][/one_sixth][two_third last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][fusion_text]\r\n<h3 style=\"text-align: justify;\">The Lodge is open, spacious, comfortable and homely. During hot summer days, sit and bask in the sun on the deck  with one of our  picnic specials. In winter, snuggle up with a good book or challenge one another to a friendly board game in the glassed nook area .</h3>\r\n[/fusion_text][/two_third][one_sixth last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][/one_sixth][/fullwidth][fullwidth background_color=\"#f0f0ed\" background_image=\"http://localhost/assagaylodge/wp-content/uploads/2015/01/Wood_Texture.jpg\" background_parallax=\"fixed\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"30\" padding_bottom=\"10\" padding_left=\"0\" padding_right=\"0\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][recent_works layout=\"grid\" picture_size=\"auto\" boxed_text=\"unboxed\" filters=\"no\" columns=\"3\" column_spacing=\"12\" cat_slug=\"the-lodge\" exclude_cats=\"\" number_posts=\"9\" offset=\"\" excerpt_length=\"35\" strip_html=\"yes\" carousel_layout=\"title_on_rollover\" scroll_items=\"\" autoplay=\"no\" show_nav=\"yes\" mouse_scroll=\"no\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][/recent_works][/fullwidth][fullwidth background_color=\"#f0f0ed\" background_image=\"\" background_parallax=\"fixed\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"20\" padding_bottom=\"20\" padding_left=\"0px\" padding_right=\"0px\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][fusion_text]\r\n<h1 style=\"text-align: center;\">BEDROOMS</h1>\r\n[/fusion_text][separator style_type=\"single\" top_margin=\"\" bottom_margin=\"20\" sep_color=\"#000000\" border_size=\"\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"170px\" alignment=\"\" class=\"\" id=\"\"][one_sixth last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][/one_sixth][two_third last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][fusion_text]\r\n<h3 style=\"text-align: justify;\">When it comes to our bedrooms we’re proud to say we offer something a little more special. One of five  lovingly and tastefully decorated guest rooms. Soft gray decor soothes the senses providing a peaceful, blissfully comfortable rest from your travels and hectic lives.</h3>\r\n<h3 style=\"text-align: justify;\">Our  bedrooms are spacious, clean, comfortable all en-suite, equipped with either king size or queen size beds. Each room sleeps two guests. The rooms have high ceilings, wall heaters &amp; ceiling fans. Beds all have electric blankets in Winter, 100% cotton percale sheets and thick hyper allergenic microfiber duvets and pillows. All guest rooms are cleaned with organic and green products. Amenities include hairdryers in each room. Three rooms feature King-sized beds  of which two can be  split into two single beds. Two  rooms can therefore be changed into a twin room upon request. Two rooms feature a Queen-sized double bed. These beds cannot be split into twin beds.</h3>\r\n[/fusion_text][/two_third][one_sixth last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][/one_sixth][/fullwidth][fullwidth background_color=\"\" background_image=\"http://localhost/assagaylodge/wp-content/uploads/2015/01/DSC01516-1148-x-764.jpg\" background_parallax=\"fixed\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"center center\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"20\" padding_bottom=\"20\" padding_left=\"0\" padding_right=\"0\" hundred_percent=\"no\" equal_height_columns=\"yes\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][recent_works layout=\"grid\" picture_size=\"auto\" boxed_text=\"unboxed\" filters=\"no\" columns=\"3\" column_spacing=\"12\" cat_slug=\"bedrooms\" exclude_cats=\"\" number_posts=\"6\" offset=\"\" excerpt_length=\"35\" strip_html=\"yes\" carousel_layout=\"title_on_rollover\" scroll_items=\"\" autoplay=\"no\" show_nav=\"yes\" mouse_scroll=\"no\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][/recent_works][/fullwidth][fullwidth background_color=\"#f0f0ed\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"20\" padding_bottom=\"20\" padding_left=\"0\" padding_right=\"0\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][fusion_text]\r\n<h1 style=\"text-align: center;\">GARDENS</h1>\r\n[/fusion_text][separator style_type=\"single\" top_margin=\"\" bottom_margin=\"20\" sep_color=\"#000000\" border_size=\"\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"170px\" alignment=\"\" class=\"\" id=\"\"][one_sixth last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][/one_sixth][two_third last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][fusion_text]\r\n<h3 style=\"text-align: justify;\">The garden is large and offers many secluded spots to lose yourself in a book with a glass of wine underneath the shade of a tree, listening to the sounds of the birds and smelling the beautiful flowers.</h3>\r\n[/fusion_text][/two_third][one_sixth last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][/one_sixth][recent_works layout=\"grid\" picture_size=\"auto\" boxed_text=\"boxed\" filters=\"no\" columns=\"3\" column_spacing=\"12\" cat_slug=\"gardens\" exclude_cats=\"\" number_posts=\"9\" offset=\"\" excerpt_length=\"35\" strip_html=\"yes\" carousel_layout=\"title_on_rollover\" scroll_items=\"\" autoplay=\"no\" show_nav=\"yes\" mouse_scroll=\"no\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][/recent_works][/fullwidth][fullwidth background_color=\"#ffffff\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"65px\" padding_bottom=\"65px\" padding_left=\"0px\" padding_right=\"0px\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][button link=\"http://localhost/assagaylodge/book-now/\" color=\"default\" size=\"xlarge\" stretch=\"default\" type=\"3d\" shape=\"round\" target=\"_self\" title=\"\" gradient_colors=\"#f0f0ed|#f0f0ed\" gradient_hover_colors=\"#6666a4|#6666a4\" accent_color=\"#ffffff\" accent_hover_color=\"#ffffff\" bevel_color=\"\" border_width=\"0px\" icon=\"\" icon_position=\"left\" icon_divider=\"no\" modal=\"\" animation_type=\"0\" animation_direction=\"left\" animation_speed=\"1\" animation_offset=\"\" alignment=\"center\" class=\"\" id=\"\"]Make A Reservation Enquiry[/button][/fullwidth]', 'Home', '', 'inherit', 'closed', 'closed', '', '7-revision-v1', '', '', '2016-10-23 22:30:01', '2016-10-23 20:30:01', '', 7, 'http://msla.co.za/lodge/7-revision-v1/', 0, 'revision', '', 0);
INSERT INTO `wp_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(1320, 1, '2016-10-23 22:31:39', '2016-10-23 20:31:39', '[fullwidth background_color=\"#f0f0ed\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"20\" padding_bottom=\"20\" padding_left=\"0px\" padding_right=\"0px\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][one_half last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][separator style_type=\"single\" top_margin=\"0\" bottom_margin=\"30\" sep_color=\"#000000\" border_size=\"\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"170px\" alignment=\"center\" class=\"separator-left\" id=\"\"][fusion_text]\r\n<h1 style=\"text-align: center;\">No Fancy Star Grading\r\nNo Room Service\r\nNo Bed Turn-downs\r\nNo Rose Petals in the Bath water</h1>\r\n<h1 style=\"text-align: center;\">... just old fashioned homely comforts</h1>\r\n[/fusion_text][/one_half][one_half last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][fusion_text]\r\n<h1 style=\"text-align: justify;\">5 BEDROOM FAMILY LODGE</h1>\r\n<h3 style=\"text-align: justify;\">We are a four season lodge, because there’s always something to celebrate… We offer comfort, relaxation and privacy right in the heart of 1000 Hills. The Forest, the Gardens, the Atmosphere all speak to  Rest  &amp; Relaxation.</h3>\r\n[/fusion_text][separator style_type=\"single\" top_margin=\"0\" bottom_margin=\"30\" sep_color=\"#000000\" border_size=\"\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"170px\" alignment=\"left\" class=\"separator-left\" id=\"\"][title size=\"1\" content_align=\"left\" style_type=\"default\" sep_color=\"\" margin_top=\"\" margin_bottom=\"\" class=\"\" id=\"\"]\r\n<h1 style=\"text-align: center;\">Current Specials!</h1>\r\n[/title][checklist icon=\"fa-sort-amount-desc\" iconcolor=\"\" circle=\"yes\" circlecolor=\"\" size=\"13px\" class=\"\" id=\"\"][li_item icon=\"\"]\r\n<h3>Book on-line - get 15% OFF your <a href=\"http://msla.co.za/lodge/reservations/\"> Accommodation</a></h3>\r\n[/li_item][li_item icon=\"\"]\r\n<h3> <a href=\"http://msla.co.za/lodge/reservations/\">Stay 3 days or more</a> - get 25% OFF your Accommodation</h3>\r\n[/li_item][/checklist][/one_half][/fullwidth][fullwidth background_color=\"#f0f0ed\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"20\" padding_bottom=\"20\" padding_left=\"0px\" padding_right=\"0px\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][one_half last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][fusion_text]\r\n<h3 style=\"text-align: justify;\">Set in the rolling peaks and valleys of a thousand hills surrounded by a canopy of indigenous trees, you will find that horses still have right of way, we certainly offer the best of both worlds, farm and charm coupled with modern amenities that will have you feeling relaxed and rejuvenated.</h3>\r\n<h3 style=\"text-align: justify;\">We know that sometimes you are searching for a romantic getaway or maybe a few days away with old friends. Other times you are searching for a place to host a weekend, family reunion or a business retreat. In addition to nightly room rentals, our lodge is also available for meetings, retreats  and makes the perfect place for a wedding party to stay together and get ready for the big day. Regardless, with our five comfortable and cozy guest bedrooms, multiple garden spaces and hideaways, and a  large private deck  where you can take a nap or read a book we definitely have the room for you!</h3>\r\n<h3 style=\"text-align: justify;\">Evenings are quiet and peaceful taking you far away from the business of city life. This is a unique and memorable country experience. We look forward to having you as a guest!</h3>\r\n[/fusion_text][/one_half][one_half last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][fusion_text]\r\n<h3 style=\"text-align: justify;\">Our lodge has been in our family for years and has recently been beautifully renovated. Five rooms all with en-suite showers lead off your own large central lounge, featuring a 36 foot high vaulted ceiling, offering spacious living, dining, and a bar/conversational lounge area which includes a fitted kitchenette, all adding to a sense of homely comfort. Sumptuous meals can be provided on request and served on the bottom deck at the swimming pool.</h3>\r\n<h3 style=\"text-align: justify;\">Be lulled to sleep by the sound of the waterfall and tinkling stream just outside your window, waking from a peaceful night\'s sleep in a pillow-top bed dressed in luxurious linens to coddle you in ultimate comfort.</h3>\r\n<h3 style=\"text-align: justify;\">Our property boasts many different species of birds and animals. We have a resident otter, a family of wild bush pigs,  a family of rock rabbits, porcupine, little blue duikers, a variety of different frogs and an abundance of bird life, including the occasional snakes that pass through!</h3>\r\n[/fusion_text][/one_half][/fullwidth][fullwidth background_color=\"#f0f0ed\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"20\" padding_bottom=\"20\" padding_left=\"0px\" padding_right=\"0px\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][fusion_text]\r\n<h1 style=\"text-align: center;\">Gallery</h1>\r\n[/fusion_text][separator style_type=\"single\" top_margin=\"\" bottom_margin=\"40\" sep_color=\"#000000\" border_size=\"\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"170px\" alignment=\"\" class=\"\" id=\"\"][one_sixth last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][/one_sixth][two_third last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][fusion_text]\r\n<h3 style=\"text-align: justify;\">The Lodge is open, spacious, comfortable and homely. During hot summer days, sit and bask in the sun on the deck  with one of our  picnic specials. In winter, snuggle up with a good book or challenge one another to a friendly board game in the glassed nook area .</h3>\r\n[/fusion_text][/two_third][one_sixth last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][/one_sixth][/fullwidth][fullwidth background_color=\"#f0f0ed\" background_image=\"http://localhost/assagaylodge/wp-content/uploads/2015/01/Wood_Texture.jpg\" background_parallax=\"fixed\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"30\" padding_bottom=\"10\" padding_left=\"0\" padding_right=\"0\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][recent_works layout=\"grid\" picture_size=\"auto\" boxed_text=\"unboxed\" filters=\"no\" columns=\"3\" column_spacing=\"12\" cat_slug=\"the-lodge\" exclude_cats=\"\" number_posts=\"9\" offset=\"\" excerpt_length=\"35\" strip_html=\"yes\" carousel_layout=\"title_on_rollover\" scroll_items=\"\" autoplay=\"no\" show_nav=\"yes\" mouse_scroll=\"no\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][/recent_works][/fullwidth][fullwidth background_color=\"#f0f0ed\" background_image=\"\" background_parallax=\"fixed\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"20\" padding_bottom=\"20\" padding_left=\"0px\" padding_right=\"0px\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][fusion_text]\r\n<h1 style=\"text-align: center;\">BEDROOMS</h1>\r\n[/fusion_text][separator style_type=\"single\" top_margin=\"\" bottom_margin=\"20\" sep_color=\"#000000\" border_size=\"\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"170px\" alignment=\"\" class=\"\" id=\"\"][one_sixth last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][/one_sixth][two_third last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][fusion_text]\r\n<h3 style=\"text-align: justify;\">When it comes to our bedrooms we’re proud to say we offer something a little more special. One of five  lovingly and tastefully decorated guest rooms. Soft gray decor soothes the senses providing a peaceful, blissfully comfortable rest from your travels and hectic lives.</h3>\r\n<h3 style=\"text-align: justify;\">Our  bedrooms are spacious, clean, comfortable all en-suite, equipped with either king size or queen size beds. Each room sleeps two guests. The rooms have high ceilings, wall heaters &amp; ceiling fans. Beds all have electric blankets in Winter, 100% cotton percale sheets and thick hyper allergenic microfiber duvets and pillows. All guest rooms are cleaned with organic and green products. Amenities include hairdryers in each room. Three rooms feature King-sized beds  of which two can be  split into two single beds. Two  rooms can therefore be changed into a twin room upon request. Two rooms feature a Queen-sized double bed. These beds cannot be split into twin beds.</h3>\r\n[/fusion_text][/two_third][one_sixth last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][/one_sixth][/fullwidth][fullwidth background_color=\"\" background_image=\"http://localhost/assagaylodge/wp-content/uploads/2015/01/DSC01516-1148-x-764.jpg\" background_parallax=\"fixed\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"center center\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"20\" padding_bottom=\"20\" padding_left=\"0\" padding_right=\"0\" hundred_percent=\"no\" equal_height_columns=\"yes\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][recent_works layout=\"grid\" picture_size=\"auto\" boxed_text=\"unboxed\" filters=\"no\" columns=\"3\" column_spacing=\"12\" cat_slug=\"bedrooms\" exclude_cats=\"\" number_posts=\"6\" offset=\"\" excerpt_length=\"35\" strip_html=\"yes\" carousel_layout=\"title_on_rollover\" scroll_items=\"\" autoplay=\"no\" show_nav=\"yes\" mouse_scroll=\"no\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][/recent_works][/fullwidth][fullwidth background_color=\"#f0f0ed\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"20\" padding_bottom=\"20\" padding_left=\"0\" padding_right=\"0\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][fusion_text]\r\n<h1 style=\"text-align: center;\">GARDENS</h1>\r\n[/fusion_text][separator style_type=\"single\" top_margin=\"\" bottom_margin=\"20\" sep_color=\"#000000\" border_size=\"\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"170px\" alignment=\"\" class=\"\" id=\"\"][one_sixth last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][/one_sixth][two_third last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][fusion_text]\r\n<h3 style=\"text-align: justify;\">The garden is large and offers many secluded spots to lose yourself in a book with a glass of wine underneath the shade of a tree, listening to the sounds of the birds and smelling the beautiful flowers.</h3>\r\n[/fusion_text][/two_third][one_sixth last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][/one_sixth][recent_works layout=\"grid\" picture_size=\"auto\" boxed_text=\"boxed\" filters=\"no\" columns=\"3\" column_spacing=\"12\" cat_slug=\"gardens\" exclude_cats=\"\" number_posts=\"9\" offset=\"\" excerpt_length=\"35\" strip_html=\"yes\" carousel_layout=\"title_on_rollover\" scroll_items=\"\" autoplay=\"no\" show_nav=\"yes\" mouse_scroll=\"no\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][/recent_works][/fullwidth][fullwidth background_color=\"#ffffff\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"65px\" padding_bottom=\"65px\" padding_left=\"0px\" padding_right=\"0px\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][button link=\"http://localhost/assagaylodge/book-now/\" color=\"default\" size=\"xlarge\" stretch=\"default\" type=\"3d\" shape=\"round\" target=\"_self\" title=\"\" gradient_colors=\"#f0f0ed|#f0f0ed\" gradient_hover_colors=\"#6666a4|#6666a4\" accent_color=\"#ffffff\" accent_hover_color=\"#ffffff\" bevel_color=\"\" border_width=\"0px\" icon=\"\" icon_position=\"left\" icon_divider=\"no\" modal=\"\" animation_type=\"0\" animation_direction=\"left\" animation_speed=\"1\" animation_offset=\"\" alignment=\"center\" class=\"\" id=\"\"]Make A Reservation Enquiry[/button][/fullwidth]', 'Home', '', 'inherit', 'closed', 'closed', '', '7-revision-v1', '', '', '2016-10-23 22:31:39', '2016-10-23 20:31:39', '', 7, 'http://msla.co.za/lodge/7-revision-v1/', 0, 'revision', '', 0),
(1321, 1, '2016-10-23 22:33:34', '2016-10-23 20:33:34', '[fullwidth background_color=\"#f0f0ed\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"20\" padding_bottom=\"20\" padding_left=\"0px\" padding_right=\"0px\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][one_half last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][separator style_type=\"single\" top_margin=\"0\" bottom_margin=\"30\" sep_color=\"#000000\" border_size=\"\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"170px\" alignment=\"center\" class=\"separator-left\" id=\"\"][fusion_text]\r\n<h1 style=\"text-align: center;\">No Fancy Star Grading\r\nNo Room Service\r\nNo Bed Turn-downs\r\nNo Rose Petals in the Bath water</h1>\r\n<h1 style=\"text-align: center;\">... just old fashioned homely comforts</h1>\r\n[/fusion_text][/one_half][one_half last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][fusion_text]\r\n<h1 style=\"text-align: justify;\">5 BEDROOM FAMILY LODGE</h1>\r\n<h3 style=\"text-align: justify;\">We are a four season lodge, because there’s always something to celebrate… We offer comfort, relaxation and privacy right in the heart of 1000 Hills. The Forest, the Gardens, the Atmosphere all speak to  Rest  &amp; Relaxation.</h3>\r\n[/fusion_text][separator style_type=\"single\" top_margin=\"0\" bottom_margin=\"30\" sep_color=\"#000000\" border_size=\"\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"170px\" alignment=\"left\" class=\"separator-left\" id=\"\"][title size=\"1\" content_align=\"left\" style_type=\"default\" sep_color=\"\" margin_top=\"\" margin_bottom=\"\" class=\"\" id=\"\"]\r\n<h1 style=\"text-align: center;\">Current Specials!</h1>\r\n[/title][checklist icon=\"fa-sort-amount-desc\" iconcolor=\"\" circle=\"yes\" circlecolor=\"\" size=\"13px\" class=\"\" id=\"\"][li_item icon=\"\"]\r\n<h3>Book on-line - get 15% OFF your <a href=\"http://msla.co.za/lodge/reservations/\"> Accommodation</a> or...</h3>\r\n[/li_item][li_item icon=\"\"]\r\n<h3> <a href=\"http://msla.co.za/lodge/reservations/\">Stay 3 days or more</a> - get 25% OFF your Accommodation</h3>\r\n[/li_item][/checklist][/one_half][/fullwidth][fullwidth background_color=\"#f0f0ed\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"20\" padding_bottom=\"20\" padding_left=\"0px\" padding_right=\"0px\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][one_half last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][fusion_text]\r\n<h3 style=\"text-align: justify;\">Set in the rolling peaks and valleys of a thousand hills surrounded by a canopy of indigenous trees, you will find that horses still have right of way, we certainly offer the best of both worlds, farm and charm coupled with modern amenities that will have you feeling relaxed and rejuvenated.</h3>\r\n<h3 style=\"text-align: justify;\">We know that sometimes you are searching for a romantic getaway or maybe a few days away with old friends. Other times you are searching for a place to host a weekend, family reunion or a business retreat. In addition to nightly room rentals, our lodge is also available for meetings, retreats  and makes the perfect place for a wedding party to stay together and get ready for the big day. Regardless, with our five comfortable and cozy guest bedrooms, multiple garden spaces and hideaways, and a  large private deck  where you can take a nap or read a book we definitely have the room for you!</h3>\r\n<h3 style=\"text-align: justify;\">Evenings are quiet and peaceful taking you far away from the business of city life. This is a unique and memorable country experience. We look forward to having you as a guest!</h3>\r\n[/fusion_text][/one_half][one_half last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][fusion_text]\r\n<h3 style=\"text-align: justify;\">Our lodge has been in our family for years and has recently been beautifully renovated. Five rooms all with en-suite showers lead off your own large central lounge, featuring a 36 foot high vaulted ceiling, offering spacious living, dining, and a bar/conversational lounge area which includes a fitted kitchenette, all adding to a sense of homely comfort. Sumptuous meals can be provided on request and served on the bottom deck at the swimming pool.</h3>\r\n<h3 style=\"text-align: justify;\">Be lulled to sleep by the sound of the waterfall and tinkling stream just outside your window, waking from a peaceful night\'s sleep in a pillow-top bed dressed in luxurious linens to coddle you in ultimate comfort.</h3>\r\n<h3 style=\"text-align: justify;\">Our property boasts many different species of birds and animals. We have a resident otter, a family of wild bush pigs,  a family of rock rabbits, porcupine, little blue duikers, a variety of different frogs and an abundance of bird life, including the occasional snakes that pass through!</h3>\r\n[/fusion_text][/one_half][/fullwidth][fullwidth background_color=\"#f0f0ed\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"20\" padding_bottom=\"20\" padding_left=\"0px\" padding_right=\"0px\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][fusion_text]\r\n<h1 style=\"text-align: center;\">Gallery</h1>\r\n[/fusion_text][separator style_type=\"single\" top_margin=\"\" bottom_margin=\"40\" sep_color=\"#000000\" border_size=\"\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"170px\" alignment=\"\" class=\"\" id=\"\"][one_sixth last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][/one_sixth][two_third last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][fusion_text]\r\n<h3 style=\"text-align: justify;\">The Lodge is open, spacious, comfortable and homely. During hot summer days, sit and bask in the sun on the deck  with one of our  picnic specials. In winter, snuggle up with a good book or challenge one another to a friendly board game in the glassed nook area .</h3>\r\n[/fusion_text][/two_third][one_sixth last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][/one_sixth][/fullwidth][fullwidth background_color=\"#f0f0ed\" background_image=\"http://localhost/assagaylodge/wp-content/uploads/2015/01/Wood_Texture.jpg\" background_parallax=\"fixed\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"30\" padding_bottom=\"10\" padding_left=\"0\" padding_right=\"0\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][recent_works layout=\"grid\" picture_size=\"auto\" boxed_text=\"unboxed\" filters=\"no\" columns=\"3\" column_spacing=\"12\" cat_slug=\"the-lodge\" exclude_cats=\"\" number_posts=\"9\" offset=\"\" excerpt_length=\"35\" strip_html=\"yes\" carousel_layout=\"title_on_rollover\" scroll_items=\"\" autoplay=\"no\" show_nav=\"yes\" mouse_scroll=\"no\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][/recent_works][/fullwidth][fullwidth background_color=\"#f0f0ed\" background_image=\"\" background_parallax=\"fixed\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"20\" padding_bottom=\"20\" padding_left=\"0px\" padding_right=\"0px\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][fusion_text]\r\n<h1 style=\"text-align: center;\">BEDROOMS</h1>\r\n[/fusion_text][separator style_type=\"single\" top_margin=\"\" bottom_margin=\"20\" sep_color=\"#000000\" border_size=\"\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"170px\" alignment=\"\" class=\"\" id=\"\"][one_sixth last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][/one_sixth][two_third last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][fusion_text]\r\n<h3 style=\"text-align: justify;\">When it comes to our bedrooms we’re proud to say we offer something a little more special. One of five  lovingly and tastefully decorated guest rooms. Soft gray decor soothes the senses providing a peaceful, blissfully comfortable rest from your travels and hectic lives.</h3>\r\n<h3 style=\"text-align: justify;\">Our  bedrooms are spacious, clean, comfortable all en-suite, equipped with either king size or queen size beds. Each room sleeps two guests. The rooms have high ceilings, wall heaters &amp; ceiling fans. Beds all have electric blankets in Winter, 100% cotton percale sheets and thick hyper allergenic microfiber duvets and pillows. All guest rooms are cleaned with organic and green products. Amenities include hairdryers in each room. Three rooms feature King-sized beds  of which two can be  split into two single beds. Two  rooms can therefore be changed into a twin room upon request. Two rooms feature a Queen-sized double bed. These beds cannot be split into twin beds.</h3>\r\n[/fusion_text][/two_third][one_sixth last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][/one_sixth][/fullwidth][fullwidth background_color=\"\" background_image=\"http://localhost/assagaylodge/wp-content/uploads/2015/01/DSC01516-1148-x-764.jpg\" background_parallax=\"fixed\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"center center\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"20\" padding_bottom=\"20\" padding_left=\"0\" padding_right=\"0\" hundred_percent=\"no\" equal_height_columns=\"yes\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][recent_works layout=\"grid\" picture_size=\"auto\" boxed_text=\"unboxed\" filters=\"no\" columns=\"3\" column_spacing=\"12\" cat_slug=\"bedrooms\" exclude_cats=\"\" number_posts=\"6\" offset=\"\" excerpt_length=\"35\" strip_html=\"yes\" carousel_layout=\"title_on_rollover\" scroll_items=\"\" autoplay=\"no\" show_nav=\"yes\" mouse_scroll=\"no\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][/recent_works][/fullwidth][fullwidth background_color=\"#f0f0ed\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"20\" padding_bottom=\"20\" padding_left=\"0\" padding_right=\"0\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][fusion_text]\r\n<h1 style=\"text-align: center;\">GARDENS</h1>\r\n[/fusion_text][separator style_type=\"single\" top_margin=\"\" bottom_margin=\"20\" sep_color=\"#000000\" border_size=\"\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"170px\" alignment=\"\" class=\"\" id=\"\"][one_sixth last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][/one_sixth][two_third last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][fusion_text]\r\n<h3 style=\"text-align: justify;\">The garden is large and offers many secluded spots to lose yourself in a book with a glass of wine underneath the shade of a tree, listening to the sounds of the birds and smelling the beautiful flowers.</h3>\r\n[/fusion_text][/two_third][one_sixth last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][/one_sixth][recent_works layout=\"grid\" picture_size=\"auto\" boxed_text=\"boxed\" filters=\"no\" columns=\"3\" column_spacing=\"12\" cat_slug=\"gardens\" exclude_cats=\"\" number_posts=\"9\" offset=\"\" excerpt_length=\"35\" strip_html=\"yes\" carousel_layout=\"title_on_rollover\" scroll_items=\"\" autoplay=\"no\" show_nav=\"yes\" mouse_scroll=\"no\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][/recent_works][/fullwidth][fullwidth background_color=\"#ffffff\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"65px\" padding_bottom=\"65px\" padding_left=\"0px\" padding_right=\"0px\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][button link=\"http://localhost/assagaylodge/book-now/\" color=\"default\" size=\"xlarge\" stretch=\"default\" type=\"3d\" shape=\"round\" target=\"_self\" title=\"\" gradient_colors=\"#f0f0ed|#f0f0ed\" gradient_hover_colors=\"#6666a4|#6666a4\" accent_color=\"#ffffff\" accent_hover_color=\"#ffffff\" bevel_color=\"\" border_width=\"0px\" icon=\"\" icon_position=\"left\" icon_divider=\"no\" modal=\"\" animation_type=\"0\" animation_direction=\"left\" animation_speed=\"1\" animation_offset=\"\" alignment=\"center\" class=\"\" id=\"\"]Make A Reservation Enquiry[/button][/fullwidth]', 'Home', '', 'inherit', 'closed', 'closed', '', '7-revision-v1', '', '', '2016-10-23 22:33:34', '2016-10-23 20:33:34', '', 7, 'http://msla.co.za/lodge/7-revision-v1/', 0, 'revision', '', 0);
INSERT INTO `wp_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(1322, 1, '2016-10-23 22:34:44', '2016-10-23 20:34:44', '[fullwidth background_color=\"#f0f0ed\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"20\" padding_bottom=\"20\" padding_left=\"0px\" padding_right=\"0px\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][one_half last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][separator style_type=\"single\" top_margin=\"0\" bottom_margin=\"30\" sep_color=\"#000000\" border_size=\"\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"170px\" alignment=\"center\" class=\"separator-left\" id=\"\"][fusion_text]\r\n<h1 style=\"text-align: center;\">No Fancy Star Grading\r\nNo Room Service\r\nNo Bed Turn-downs\r\nNo Rose Petals in the Bath water</h1>\r\n<h1 style=\"text-align: center;\">... just old fashioned homely comforts</h1>\r\n[/fusion_text][/one_half][one_half last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][fusion_text]\r\n<h1 style=\"text-align: justify;\">5 BEDROOM FAMILY LODGE</h1>\r\n<h3 style=\"text-align: justify;\">We are a four season lodge, because there’s always something to celebrate… We offer comfort, relaxation and privacy right in the heart of 1000 Hills. The Forest, the Gardens, the Atmosphere all speak to  Rest  &amp; Relaxation.</h3>\r\n[/fusion_text][separator style_type=\"single\" top_margin=\"0\" bottom_margin=\"30\" sep_color=\"#000000\" border_size=\"\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"170px\" alignment=\"left\" class=\"separator-left\" id=\"\"][title size=\"1\" content_align=\"left\" style_type=\"default\" sep_color=\"\" margin_top=\"\" margin_bottom=\"\" class=\"\" id=\"\"]\r\n<h1 style=\"text-align: center;\">Current Specials!</h1>\r\n[/title][checklist icon=\"fa-sort-amount-desc\" iconcolor=\"\" circle=\"yes\" circlecolor=\"\" size=\"13px\" class=\"\" id=\"\"][li_item icon=\"\"]\r\n<h3>Book on-line - get 15% OFF your <a href=\"http://msla.co.za/lodge/reservations/\"> Accommodation</a> or...</h3>\r\n[/li_item][li_item icon=\"\"]\r\n<h3><a href=\"http://msla.co.za/lodge/reservations/\">Stay 3 days or more</a> - get 25% OFF your Accommodation</h3>\r\n[/li_item][/checklist][/one_half][/fullwidth][fullwidth background_color=\"#f0f0ed\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"20\" padding_bottom=\"20\" padding_left=\"0px\" padding_right=\"0px\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][one_half last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][fusion_text]\r\n<h3 style=\"text-align: justify;\">Set in the rolling peaks and valleys of a thousand hills surrounded by a canopy of indigenous trees, you will find that horses still have right of way, we certainly offer the best of both worlds, farm and charm coupled with modern amenities that will have you feeling relaxed and rejuvenated.</h3>\r\n<h3 style=\"text-align: justify;\">We know that sometimes you are searching for a romantic getaway or maybe a few days away with old friends. Other times you are searching for a place to host a weekend, family reunion or a business retreat. In addition to nightly room rentals, our lodge is also available for meetings, retreats  and makes the perfect place for a wedding party to stay together and get ready for the big day. Regardless, with our five comfortable and cozy guest bedrooms, multiple garden spaces and hideaways, and a  large private deck  where you can take a nap or read a book we definitely have the room for you!</h3>\r\n<h3 style=\"text-align: justify;\">Evenings are quiet and peaceful taking you far away from the business of city life. This is a unique and memorable country experience. We look forward to having you as a guest!</h3>\r\n[/fusion_text][/one_half][one_half last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][fusion_text]\r\n<h3 style=\"text-align: justify;\">Our lodge has been in our family for years and has recently been beautifully renovated. Five rooms all with en-suite showers lead off your own large central lounge, featuring a 36 foot high vaulted ceiling, offering spacious living, dining, and a bar/conversational lounge area which includes a fitted kitchenette, all adding to a sense of homely comfort. Sumptuous meals can be provided on request and served on the bottom deck at the swimming pool.</h3>\r\n<h3 style=\"text-align: justify;\">Be lulled to sleep by the sound of the waterfall and tinkling stream just outside your window, waking from a peaceful night\'s sleep in a pillow-top bed dressed in luxurious linens to coddle you in ultimate comfort.</h3>\r\n<h3 style=\"text-align: justify;\">Our property boasts many different species of birds and animals. We have a resident otter, a family of wild bush pigs,  a family of rock rabbits, porcupine, little blue duikers, a variety of different frogs and an abundance of bird life, including the occasional snakes that pass through!</h3>\r\n[/fusion_text][/one_half][/fullwidth][fullwidth background_color=\"#f0f0ed\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"20\" padding_bottom=\"20\" padding_left=\"0px\" padding_right=\"0px\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][fusion_text]\r\n<h1 style=\"text-align: center;\">Gallery</h1>\r\n[/fusion_text][separator style_type=\"single\" top_margin=\"\" bottom_margin=\"40\" sep_color=\"#000000\" border_size=\"\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"170px\" alignment=\"\" class=\"\" id=\"\"][one_sixth last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][/one_sixth][two_third last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][fusion_text]\r\n<h3 style=\"text-align: justify;\">The Lodge is open, spacious, comfortable and homely. During hot summer days, sit and bask in the sun on the deck  with one of our  picnic specials. In winter, snuggle up with a good book or challenge one another to a friendly board game in the glassed nook area .</h3>\r\n[/fusion_text][/two_third][one_sixth last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][/one_sixth][/fullwidth][fullwidth background_color=\"#f0f0ed\" background_image=\"http://localhost/assagaylodge/wp-content/uploads/2015/01/Wood_Texture.jpg\" background_parallax=\"fixed\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"30\" padding_bottom=\"10\" padding_left=\"0\" padding_right=\"0\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][recent_works layout=\"grid\" picture_size=\"auto\" boxed_text=\"unboxed\" filters=\"no\" columns=\"3\" column_spacing=\"12\" cat_slug=\"the-lodge\" exclude_cats=\"\" number_posts=\"9\" offset=\"\" excerpt_length=\"35\" strip_html=\"yes\" carousel_layout=\"title_on_rollover\" scroll_items=\"\" autoplay=\"no\" show_nav=\"yes\" mouse_scroll=\"no\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][/recent_works][/fullwidth][fullwidth background_color=\"#f0f0ed\" background_image=\"\" background_parallax=\"fixed\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"20\" padding_bottom=\"20\" padding_left=\"0px\" padding_right=\"0px\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][fusion_text]\r\n<h1 style=\"text-align: center;\">BEDROOMS</h1>\r\n[/fusion_text][separator style_type=\"single\" top_margin=\"\" bottom_margin=\"20\" sep_color=\"#000000\" border_size=\"\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"170px\" alignment=\"\" class=\"\" id=\"\"][one_sixth last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][/one_sixth][two_third last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][fusion_text]\r\n<h3 style=\"text-align: justify;\">When it comes to our bedrooms we’re proud to say we offer something a little more special. One of five  lovingly and tastefully decorated guest rooms. Soft gray decor soothes the senses providing a peaceful, blissfully comfortable rest from your travels and hectic lives.</h3>\r\n<h3 style=\"text-align: justify;\">Our  bedrooms are spacious, clean, comfortable all en-suite, equipped with either king size or queen size beds. Each room sleeps two guests. The rooms have high ceilings, wall heaters &amp; ceiling fans. Beds all have electric blankets in Winter, 100% cotton percale sheets and thick hyper allergenic microfiber duvets and pillows. All guest rooms are cleaned with organic and green products. Amenities include hairdryers in each room. Three rooms feature King-sized beds  of which two can be  split into two single beds. Two  rooms can therefore be changed into a twin room upon request. Two rooms feature a Queen-sized double bed. These beds cannot be split into twin beds.</h3>\r\n[/fusion_text][/two_third][one_sixth last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][/one_sixth][/fullwidth][fullwidth background_color=\"\" background_image=\"http://localhost/assagaylodge/wp-content/uploads/2015/01/DSC01516-1148-x-764.jpg\" background_parallax=\"fixed\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"center center\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"20\" padding_bottom=\"20\" padding_left=\"0\" padding_right=\"0\" hundred_percent=\"no\" equal_height_columns=\"yes\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][recent_works layout=\"grid\" picture_size=\"auto\" boxed_text=\"unboxed\" filters=\"no\" columns=\"3\" column_spacing=\"12\" cat_slug=\"bedrooms\" exclude_cats=\"\" number_posts=\"6\" offset=\"\" excerpt_length=\"35\" strip_html=\"yes\" carousel_layout=\"title_on_rollover\" scroll_items=\"\" autoplay=\"no\" show_nav=\"yes\" mouse_scroll=\"no\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][/recent_works][/fullwidth][fullwidth background_color=\"#f0f0ed\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"20\" padding_bottom=\"20\" padding_left=\"0\" padding_right=\"0\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][fusion_text]\r\n<h1 style=\"text-align: center;\">GARDENS</h1>\r\n[/fusion_text][separator style_type=\"single\" top_margin=\"\" bottom_margin=\"20\" sep_color=\"#000000\" border_size=\"\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"170px\" alignment=\"\" class=\"\" id=\"\"][one_sixth last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][/one_sixth][two_third last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][fusion_text]\r\n<h3 style=\"text-align: justify;\">The garden is large and offers many secluded spots to lose yourself in a book with a glass of wine underneath the shade of a tree, listening to the sounds of the birds and smelling the beautiful flowers.</h3>\r\n[/fusion_text][/two_third][one_sixth last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][/one_sixth][recent_works layout=\"grid\" picture_size=\"auto\" boxed_text=\"boxed\" filters=\"no\" columns=\"3\" column_spacing=\"12\" cat_slug=\"gardens\" exclude_cats=\"\" number_posts=\"9\" offset=\"\" excerpt_length=\"35\" strip_html=\"yes\" carousel_layout=\"title_on_rollover\" scroll_items=\"\" autoplay=\"no\" show_nav=\"yes\" mouse_scroll=\"no\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][/recent_works][/fullwidth][fullwidth background_color=\"#ffffff\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"65px\" padding_bottom=\"65px\" padding_left=\"0px\" padding_right=\"0px\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][button link=\"http://localhost/assagaylodge/book-now/\" color=\"default\" size=\"xlarge\" stretch=\"default\" type=\"3d\" shape=\"round\" target=\"_self\" title=\"\" gradient_colors=\"#f0f0ed|#f0f0ed\" gradient_hover_colors=\"#6666a4|#6666a4\" accent_color=\"#ffffff\" accent_hover_color=\"#ffffff\" bevel_color=\"\" border_width=\"0px\" icon=\"\" icon_position=\"left\" icon_divider=\"no\" modal=\"\" animation_type=\"0\" animation_direction=\"left\" animation_speed=\"1\" animation_offset=\"\" alignment=\"center\" class=\"\" id=\"\"]Make A Reservation Enquiry[/button][/fullwidth]', 'Home', '', 'inherit', 'closed', 'closed', '', '7-revision-v1', '', '', '2016-10-23 22:34:44', '2016-10-23 20:34:44', '', 7, 'http://msla.co.za/lodge/7-revision-v1/', 0, 'revision', '', 0),
(1323, 1, '2016-10-23 22:36:10', '2016-10-23 20:36:10', '[fullwidth background_color=\"#f0f0ed\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"20\" padding_bottom=\"20\" padding_left=\"0px\" padding_right=\"0px\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][one_half last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][separator style_type=\"single\" top_margin=\"0\" bottom_margin=\"30\" sep_color=\"#000000\" border_size=\"\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"170px\" alignment=\"center\" class=\"separator-left\" id=\"\"][fusion_text]\r\n<h1 style=\"text-align: center;\">No Fancy Star Grading\r\nNo Room Service\r\nNo Bed Turn-downs\r\nNo Rose Petals in the Bath water</h1>\r\n<h1 style=\"text-align: center;\">... just old fashioned homely comforts</h1>\r\n[/fusion_text][/one_half][one_half last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][fusion_text]\r\n<h1 style=\"text-align: justify;\">5 BEDROOM FAMILY LODGE</h1>\r\n<h3 style=\"text-align: justify;\">We are a four season lodge, because there’s always something to celebrate… We offer comfort, relaxation and privacy right in the heart of 1000 Hills. The Forest, the Gardens, the Atmosphere all speak to  Rest  &amp; Relaxation.</h3>\r\n[/fusion_text][separator style_type=\"single\" top_margin=\"0\" bottom_margin=\"30\" sep_color=\"#000000\" border_size=\"\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"170px\" alignment=\"left\" class=\"separator-left\" id=\"\"][title size=\"1\" content_align=\"right\" style_type=\"default\" sep_color=\"\" margin_top=\"\" margin_bottom=\"\" class=\"\" id=\"\"]\r\n<h1 style=\"text-align: center;\">Current Specials!</h1>\r\n[/title][checklist icon=\"fa-sort-amount-desc\" iconcolor=\"\" circle=\"yes\" circlecolor=\"\" size=\"13px\" class=\"\" id=\"\"][li_item icon=\"\"]\r\n<h3>Book on-line - get 15% OFF your <a href=\"http://msla.co.za/lodge/reservations/\"> Accommodation</a> or...</h3>\r\n[/li_item][li_item icon=\"\"]\r\n<h3><a href=\"http://msla.co.za/lodge/reservations/\">Stay 3 days or more</a> - get 25% OFF your Accommodation</h3>\r\n[/li_item][/checklist][/one_half][/fullwidth][fullwidth background_color=\"#f0f0ed\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"20\" padding_bottom=\"20\" padding_left=\"0px\" padding_right=\"0px\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][one_half last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][fusion_text]\r\n<h3 style=\"text-align: justify;\">Set in the rolling peaks and valleys of a thousand hills surrounded by a canopy of indigenous trees, you will find that horses still have right of way, we certainly offer the best of both worlds, farm and charm coupled with modern amenities that will have you feeling relaxed and rejuvenated.</h3>\r\n<h3 style=\"text-align: justify;\">We know that sometimes you are searching for a romantic getaway or maybe a few days away with old friends. Other times you are searching for a place to host a weekend, family reunion or a business retreat. In addition to nightly room rentals, our lodge is also available for meetings, retreats  and makes the perfect place for a wedding party to stay together and get ready for the big day. Regardless, with our five comfortable and cozy guest bedrooms, multiple garden spaces and hideaways, and a  large private deck  where you can take a nap or read a book we definitely have the room for you!</h3>\r\n<h3 style=\"text-align: justify;\">Evenings are quiet and peaceful taking you far away from the business of city life. This is a unique and memorable country experience. We look forward to having you as a guest!</h3>\r\n[/fusion_text][/one_half][one_half last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][fusion_text]\r\n<h3 style=\"text-align: justify;\">Our lodge has been in our family for years and has recently been beautifully renovated. Five rooms all with en-suite showers lead off your own large central lounge, featuring a 36 foot high vaulted ceiling, offering spacious living, dining, and a bar/conversational lounge area which includes a fitted kitchenette, all adding to a sense of homely comfort. Sumptuous meals can be provided on request and served on the bottom deck at the swimming pool.</h3>\r\n<h3 style=\"text-align: justify;\">Be lulled to sleep by the sound of the waterfall and tinkling stream just outside your window, waking from a peaceful night\'s sleep in a pillow-top bed dressed in luxurious linens to coddle you in ultimate comfort.</h3>\r\n<h3 style=\"text-align: justify;\">Our property boasts many different species of birds and animals. We have a resident otter, a family of wild bush pigs,  a family of rock rabbits, porcupine, little blue duikers, a variety of different frogs and an abundance of bird life, including the occasional snakes that pass through!</h3>\r\n[/fusion_text][/one_half][/fullwidth][fullwidth background_color=\"#f0f0ed\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"20\" padding_bottom=\"20\" padding_left=\"0px\" padding_right=\"0px\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][fusion_text]\r\n<h1 style=\"text-align: center;\">Gallery</h1>\r\n[/fusion_text][separator style_type=\"single\" top_margin=\"\" bottom_margin=\"40\" sep_color=\"#000000\" border_size=\"\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"170px\" alignment=\"\" class=\"\" id=\"\"][one_sixth last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][/one_sixth][two_third last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][fusion_text]\r\n<h3 style=\"text-align: justify;\">The Lodge is open, spacious, comfortable and homely. During hot summer days, sit and bask in the sun on the deck  with one of our  picnic specials. In winter, snuggle up with a good book or challenge one another to a friendly board game in the glassed nook area .</h3>\r\n[/fusion_text][/two_third][one_sixth last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][/one_sixth][/fullwidth][fullwidth background_color=\"#f0f0ed\" background_image=\"http://localhost/assagaylodge/wp-content/uploads/2015/01/Wood_Texture.jpg\" background_parallax=\"fixed\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"30\" padding_bottom=\"10\" padding_left=\"0\" padding_right=\"0\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][recent_works layout=\"grid\" picture_size=\"auto\" boxed_text=\"unboxed\" filters=\"no\" columns=\"3\" column_spacing=\"12\" cat_slug=\"the-lodge\" exclude_cats=\"\" number_posts=\"9\" offset=\"\" excerpt_length=\"35\" strip_html=\"yes\" carousel_layout=\"title_on_rollover\" scroll_items=\"\" autoplay=\"no\" show_nav=\"yes\" mouse_scroll=\"no\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][/recent_works][/fullwidth][fullwidth background_color=\"#f0f0ed\" background_image=\"\" background_parallax=\"fixed\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"20\" padding_bottom=\"20\" padding_left=\"0px\" padding_right=\"0px\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][fusion_text]\r\n<h1 style=\"text-align: center;\">BEDROOMS</h1>\r\n[/fusion_text][separator style_type=\"single\" top_margin=\"\" bottom_margin=\"20\" sep_color=\"#000000\" border_size=\"\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"170px\" alignment=\"\" class=\"\" id=\"\"][one_sixth last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][/one_sixth][two_third last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][fusion_text]\r\n<h3 style=\"text-align: justify;\">When it comes to our bedrooms we’re proud to say we offer something a little more special. One of five  lovingly and tastefully decorated guest rooms. Soft gray decor soothes the senses providing a peaceful, blissfully comfortable rest from your travels and hectic lives.</h3>\r\n<h3 style=\"text-align: justify;\">Our  bedrooms are spacious, clean, comfortable all en-suite, equipped with either king size or queen size beds. Each room sleeps two guests. The rooms have high ceilings, wall heaters &amp; ceiling fans. Beds all have electric blankets in Winter, 100% cotton percale sheets and thick hyper allergenic microfiber duvets and pillows. All guest rooms are cleaned with organic and green products. Amenities include hairdryers in each room. Three rooms feature King-sized beds  of which two can be  split into two single beds. Two  rooms can therefore be changed into a twin room upon request. Two rooms feature a Queen-sized double bed. These beds cannot be split into twin beds.</h3>\r\n[/fusion_text][/two_third][one_sixth last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][/one_sixth][/fullwidth][fullwidth background_color=\"\" background_image=\"http://localhost/assagaylodge/wp-content/uploads/2015/01/DSC01516-1148-x-764.jpg\" background_parallax=\"fixed\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"center center\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"20\" padding_bottom=\"20\" padding_left=\"0\" padding_right=\"0\" hundred_percent=\"no\" equal_height_columns=\"yes\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][recent_works layout=\"grid\" picture_size=\"auto\" boxed_text=\"unboxed\" filters=\"no\" columns=\"3\" column_spacing=\"12\" cat_slug=\"bedrooms\" exclude_cats=\"\" number_posts=\"6\" offset=\"\" excerpt_length=\"35\" strip_html=\"yes\" carousel_layout=\"title_on_rollover\" scroll_items=\"\" autoplay=\"no\" show_nav=\"yes\" mouse_scroll=\"no\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][/recent_works][/fullwidth][fullwidth background_color=\"#f0f0ed\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"20\" padding_bottom=\"20\" padding_left=\"0\" padding_right=\"0\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][fusion_text]\r\n<h1 style=\"text-align: center;\">GARDENS</h1>\r\n[/fusion_text][separator style_type=\"single\" top_margin=\"\" bottom_margin=\"20\" sep_color=\"#000000\" border_size=\"\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"170px\" alignment=\"\" class=\"\" id=\"\"][one_sixth last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][/one_sixth][two_third last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][fusion_text]\r\n<h3 style=\"text-align: justify;\">The garden is large and offers many secluded spots to lose yourself in a book with a glass of wine underneath the shade of a tree, listening to the sounds of the birds and smelling the beautiful flowers.</h3>\r\n[/fusion_text][/two_third][one_sixth last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][/one_sixth][recent_works layout=\"grid\" picture_size=\"auto\" boxed_text=\"boxed\" filters=\"no\" columns=\"3\" column_spacing=\"12\" cat_slug=\"gardens\" exclude_cats=\"\" number_posts=\"9\" offset=\"\" excerpt_length=\"35\" strip_html=\"yes\" carousel_layout=\"title_on_rollover\" scroll_items=\"\" autoplay=\"no\" show_nav=\"yes\" mouse_scroll=\"no\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][/recent_works][/fullwidth][fullwidth background_color=\"#ffffff\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"65px\" padding_bottom=\"65px\" padding_left=\"0px\" padding_right=\"0px\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][button link=\"http://localhost/assagaylodge/book-now/\" color=\"default\" size=\"xlarge\" stretch=\"default\" type=\"3d\" shape=\"round\" target=\"_self\" title=\"\" gradient_colors=\"#f0f0ed|#f0f0ed\" gradient_hover_colors=\"#6666a4|#6666a4\" accent_color=\"#ffffff\" accent_hover_color=\"#ffffff\" bevel_color=\"\" border_width=\"0px\" icon=\"\" icon_position=\"left\" icon_divider=\"no\" modal=\"\" animation_type=\"0\" animation_direction=\"left\" animation_speed=\"1\" animation_offset=\"\" alignment=\"center\" class=\"\" id=\"\"]Make A Reservation Enquiry[/button][/fullwidth]', 'Home', '', 'inherit', 'closed', 'closed', '', '7-revision-v1', '', '', '2016-10-23 22:36:10', '2016-10-23 20:36:10', '', 7, 'http://msla.co.za/lodge/7-revision-v1/', 0, 'revision', '', 0);
INSERT INTO `wp_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(1325, 1, '2016-10-28 10:24:08', '2016-10-28 08:24:08', '[fullwidth background_color=\"#f0f0ed\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"20\" padding_bottom=\"20\" padding_left=\"0px\" padding_right=\"0px\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][one_half last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][separator style_type=\"single\" top_margin=\"0\" bottom_margin=\"30\" sep_color=\"#000000\" border_size=\"\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"170px\" alignment=\"center\" class=\"separator-left\" id=\"\"][fusion_text]\r\n<h1 style=\"text-align: center;\">No Fancy Star Grading\r\nNo Room Service\r\nNo Bed Turn-downs\r\nNo Rose Petals in the Bath water</h1>\r\n<h1 style=\"text-align: center;\">... just old fashioned homely comforts</h1>\r\n[/fusion_text][/one_half][one_half last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][fusion_text]\r\n<h1 style=\"text-align: justify;\">5 BEDROOM FAMILY LODGE</h1>\r\n<h3 style=\"text-align: justify;\">We are a four season lodge, because there’s always something to celebrate… We offer comfort, relaxation and privacy right in the heart of 1000 Hills. The Forest, the Gardens, the Atmosphere all speak to  Rest  &amp; Relaxation.</h3>\r\n[/fusion_text][separator style_type=\"single\" top_margin=\"0\" bottom_margin=\"30\" sep_color=\"#000000\" border_size=\"\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"170px\" alignment=\"left\" class=\"separator-left\" id=\"\"][title size=\"1\" content_align=\"right\" style_type=\"default\" sep_color=\"\" margin_top=\"\" margin_bottom=\"\" class=\"\" id=\"\"]\r\n<h1 style=\"text-align: center;\">Current Offers!</h1>\r\n[/title][checklist icon=\"fa-sort-amount-desc\" iconcolor=\"\" circle=\"yes\" circlecolor=\"\" size=\"13px\" class=\"\" id=\"\"][li_item icon=\"\"]\r\n<h3>Book on-line - get 15% OFF your <a href=\"http://msla.co.za/lodge/reservations/\"> Accommodation</a> or...</h3>\r\n[/li_item][li_item icon=\"\"]\r\n<h3><a href=\"http://msla.co.za/lodge/reservations/\">Stay 3 days or more</a> - get 25% OFF your Accommodation</h3>\r\n[/li_item][/checklist][/one_half][/fullwidth][fullwidth background_color=\"#f0f0ed\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"20\" padding_bottom=\"20\" padding_left=\"0px\" padding_right=\"0px\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][one_half last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][fusion_text]\r\n<h3 style=\"text-align: justify;\">Set in the rolling peaks and valleys of a thousand hills surrounded by a canopy of indigenous trees, you will find that horses still have right of way, we certainly offer the best of both worlds, farm and charm coupled with modern amenities that will have you feeling relaxed and rejuvenated.</h3>\r\n<h3 style=\"text-align: justify;\">We know that sometimes you are searching for a romantic getaway or maybe a few days away with old friends. Other times you are searching for a place to host a weekend, family reunion or a business retreat. In addition to nightly room rentals, our lodge is also available for meetings, retreats  and makes the perfect place for a wedding party to stay together and get ready for the big day. Regardless, with our five comfortable and cozy guest bedrooms, multiple garden spaces and hideaways, and a  large private deck  where you can take a nap or read a book we definitely have the room for you!</h3>\r\n<h3 style=\"text-align: justify;\">Evenings are quiet and peaceful taking you far away from the business of city life. This is a unique and memorable country experience. We look forward to having you as a guest!</h3>\r\n[/fusion_text][/one_half][one_half last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][fusion_text]\r\n<h3 style=\"text-align: justify;\">Our lodge has been in our family for years and has recently been beautifully renovated. Five rooms all with en-suite showers lead off your own large central lounge, featuring a 36 foot high vaulted ceiling, offering spacious living, dining, and a bar/conversational lounge area which includes a fitted kitchenette, all adding to a sense of homely comfort. Sumptuous meals can be provided on request and served on the bottom deck at the swimming pool.</h3>\r\n<h3 style=\"text-align: justify;\">Be lulled to sleep by the sound of the waterfall and tinkling stream just outside your window, waking from a peaceful night\'s sleep in a pillow-top bed dressed in luxurious linens to coddle you in ultimate comfort.</h3>\r\n<h3 style=\"text-align: justify;\">Our property boasts many different species of birds and animals. We have a resident otter, a family of wild bush pigs,  a family of rock rabbits, porcupine, little blue duikers, a variety of different frogs and an abundance of bird life, including the occasional snakes that pass through!</h3>\r\n[/fusion_text][/one_half][/fullwidth][fullwidth background_color=\"#f0f0ed\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"20\" padding_bottom=\"20\" padding_left=\"0px\" padding_right=\"0px\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][fusion_text]\r\n<h1 style=\"text-align: center;\">Gallery</h1>\r\n[/fusion_text][separator style_type=\"single\" top_margin=\"\" bottom_margin=\"40\" sep_color=\"#000000\" border_size=\"\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"170px\" alignment=\"\" class=\"\" id=\"\"][one_sixth last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][/one_sixth][two_third last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][fusion_text]\r\n<h3 style=\"text-align: justify;\">The Lodge is open, spacious, comfortable and homely. During hot summer days, sit and bask in the sun on the deck  with one of our  picnic specials. In winter, snuggle up with a good book or challenge one another to a friendly board game in the glassed nook area .</h3>\r\n[/fusion_text][/two_third][one_sixth last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][/one_sixth][/fullwidth][fullwidth background_color=\"#f0f0ed\" background_image=\"http://localhost/assagaylodge/wp-content/uploads/2015/01/Wood_Texture.jpg\" background_parallax=\"fixed\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"30\" padding_bottom=\"10\" padding_left=\"0\" padding_right=\"0\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][recent_works layout=\"grid\" picture_size=\"auto\" boxed_text=\"unboxed\" filters=\"no\" columns=\"3\" column_spacing=\"12\" cat_slug=\"the-lodge\" exclude_cats=\"\" number_posts=\"9\" offset=\"\" excerpt_length=\"35\" strip_html=\"yes\" carousel_layout=\"title_on_rollover\" scroll_items=\"\" autoplay=\"no\" show_nav=\"yes\" mouse_scroll=\"no\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][/recent_works][/fullwidth][fullwidth background_color=\"#f0f0ed\" background_image=\"\" background_parallax=\"fixed\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"20\" padding_bottom=\"20\" padding_left=\"0px\" padding_right=\"0px\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][fusion_text]\r\n<h1 style=\"text-align: center;\">BEDROOMS</h1>\r\n[/fusion_text][separator style_type=\"single\" top_margin=\"\" bottom_margin=\"20\" sep_color=\"#000000\" border_size=\"\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"170px\" alignment=\"\" class=\"\" id=\"\"][one_sixth last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][/one_sixth][two_third last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][fusion_text]\r\n<h3 style=\"text-align: justify;\">When it comes to our bedrooms we’re proud to say we offer something a little more special. One of five  lovingly and tastefully decorated guest rooms. Soft gray decor soothes the senses providing a peaceful, blissfully comfortable rest from your travels and hectic lives.</h3>\r\n<h3 style=\"text-align: justify;\">Our  bedrooms are spacious, clean, comfortable all en-suite, equipped with either king size or queen size beds. Each room sleeps two guests. The rooms have high ceilings, wall heaters &amp; ceiling fans. Beds all have electric blankets in Winter, 100% cotton percale sheets and thick hyper allergenic microfiber duvets and pillows. All guest rooms are cleaned with organic and green products. Amenities include hairdryers in each room. Three rooms feature King-sized beds  of which two can be  split into two single beds. Two  rooms can therefore be changed into a twin room upon request. Two rooms feature a Queen-sized double bed. These beds cannot be split into twin beds.</h3>\r\n[/fusion_text][/two_third][one_sixth last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][/one_sixth][/fullwidth][fullwidth background_color=\"\" background_image=\"http://localhost/assagaylodge/wp-content/uploads/2015/01/DSC01516-1148-x-764.jpg\" background_parallax=\"fixed\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"center center\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"20\" padding_bottom=\"20\" padding_left=\"0\" padding_right=\"0\" hundred_percent=\"no\" equal_height_columns=\"yes\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][recent_works layout=\"grid\" picture_size=\"auto\" boxed_text=\"unboxed\" filters=\"no\" columns=\"3\" column_spacing=\"12\" cat_slug=\"bedrooms\" exclude_cats=\"\" number_posts=\"6\" offset=\"\" excerpt_length=\"35\" strip_html=\"yes\" carousel_layout=\"title_on_rollover\" scroll_items=\"\" autoplay=\"no\" show_nav=\"yes\" mouse_scroll=\"no\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][/recent_works][/fullwidth][fullwidth background_color=\"#f0f0ed\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"20\" padding_bottom=\"20\" padding_left=\"0\" padding_right=\"0\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][fusion_text]\r\n<h1 style=\"text-align: center;\">GARDENS</h1>\r\n[/fusion_text][separator style_type=\"single\" top_margin=\"\" bottom_margin=\"20\" sep_color=\"#000000\" border_size=\"\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"170px\" alignment=\"\" class=\"\" id=\"\"][one_sixth last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][/one_sixth][two_third last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][fusion_text]\r\n<h3 style=\"text-align: justify;\">The garden is large and offers many secluded spots to lose yourself in a book with a glass of wine underneath the shade of a tree, listening to the sounds of the birds and smelling the beautiful flowers.</h3>\r\n[/fusion_text][/two_third][one_sixth last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][/one_sixth][recent_works layout=\"grid\" picture_size=\"auto\" boxed_text=\"boxed\" filters=\"no\" columns=\"3\" column_spacing=\"12\" cat_slug=\"gardens\" exclude_cats=\"\" number_posts=\"9\" offset=\"\" excerpt_length=\"35\" strip_html=\"yes\" carousel_layout=\"title_on_rollover\" scroll_items=\"\" autoplay=\"no\" show_nav=\"yes\" mouse_scroll=\"no\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][/recent_works][/fullwidth][fullwidth background_color=\"#ffffff\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"65px\" padding_bottom=\"65px\" padding_left=\"0px\" padding_right=\"0px\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][button link=\"http://localhost/assagaylodge/book-now/\" color=\"default\" size=\"xlarge\" stretch=\"default\" type=\"3d\" shape=\"round\" target=\"_self\" title=\"\" gradient_colors=\"#f0f0ed|#f0f0ed\" gradient_hover_colors=\"#6666a4|#6666a4\" accent_color=\"#ffffff\" accent_hover_color=\"#ffffff\" bevel_color=\"\" border_width=\"0px\" icon=\"\" icon_position=\"left\" icon_divider=\"no\" modal=\"\" animation_type=\"0\" animation_direction=\"left\" animation_speed=\"1\" animation_offset=\"\" alignment=\"center\" class=\"\" id=\"\"]Make A Reservation Enquiry[/button][/fullwidth]', 'Home', '', 'inherit', 'closed', 'closed', '', '7-revision-v1', '', '', '2016-10-28 10:24:08', '2016-10-28 08:24:08', '', 7, 'http://msla.co.za/lodge/7-revision-v1/', 0, 'revision', '', 0),
(1326, 1, '2016-10-28 10:28:04', '0000-00-00 00:00:00', '', 'Thank', '', 'draft', 'closed', 'closed', '', '', '', '', '2016-10-28 10:28:04', '2016-10-28 08:28:04', '', 0, 'http://msla.co.za/lodge/?page_id=1326', 0, 'page', '', 0),
(1327, 1, '2016-10-28 10:45:27', '2016-10-28 08:45:27', '[fusion_builder_container background_color=\"\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"70px\" padding_bottom=\"75px\" padding_left=\"\"    padding_right=\"\"    hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][fusion_builder_row][fusion_builder_column type=\"1_1\" background_position=\"left top\" background_color=\"\" border_size=\"\" border_color=\"\" border_style=\"solid\" spacing=\"yes\" background_image=\"\" background_repeat=\"no-repeat\" padding=\"\" margin_top=\"0px\" margin_bottom=\"0px\" class=\"\" id=\"\" animation_type=\"\" animation_speed=\"0.3\" animation_direction=\"left\" hide_on_mobile=\"no\" center_content=\"no\" min_height=\"none\"][fusion_text]\r\n<h3>Thank you for your booking enquiry.</h3>\r\n<h3>We will get back to you as soon as possible and let you know if we can definitely confirm availability for the date/s requested.</h3>\r\n[/fusion_text][/fusion_builder_column][fusion_builder_column type=\"1_2\" last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][fusion_text]\r\n<h1>Contact Us</h1>\r\n<h2>Send us a message.</h2>\r\n[/fusion_text][fusion_text][contact-form-7 id=\"246\" title=\"Contact form 1\"][/fusion_text][/fusion_builder_column][fusion_builder_column type=\"1_2\" last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][fusion_text]\r\n<h1>Where are we?</h1>\r\n<h2>4 Williams Road\r\nAssagay, Hillcrest\r\nKwaZulu Natal</h2>\r\n<h1>Contact</h1>\r\n<h2>0317656046 or 0317655961</h2>\r\n[/fusion_text][fusion_separator style_type=\"none\" top_margin=\"\" bottom_margin=\"20\" sep_color=\"\" border_size=\"\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"\" alignment=\"\" class=\"\" id=\"\"/][fusion_accordion divider_line=\"\" class=\"\" id=\"\"][fusion_toggle title=\"GPS Location\" open=\"no\"]\r\n\r\n<strong>GPS: Latitude (South) -29.771865, Longitude (East) 30.736892</strong>\r\n\r\n[/fusion_toggle][fusion_toggle title=\"Directions from King Shaka Airport / Durban\" open=\"no\"]\r\n\r\nFrom King Shaka Airport take the N2 South bound towards Durban, at the 3 level interchange be sure to take the N3 turn off towards Pietermaritzburg. Proceed through the Marionhill toll plaza and take the first off ramp marked Shongweni / Assagay / Hillcrest. Turn right towards Hillcrest into Kassier Road which will take you over the N3 and M13, keep on this road, pass the Hillcrest Private Hospital and Alverstone turn off. Remain on Kassier Road, for about 2-3km and turn into Assagay Road, which is just after Assagay Crescent.\r\n\r\nTake the left turn into Assagay Road. Head up the rise. Turn left into Castle Road, carry down the dip for about 500m and cross a small water-bridge. Turn first right into Lello Road, just after the bridge. Continue on Lello Road, the road dips and briefly climbs, the valley falling away to your right. Finally, turn left into Williams Road (it’s essentially the first left turn on Lello Road), Continue down Williams Road for about 800m. On your right you will come to the entrance of the farm called `Fourever` No 4 Williams Road. There’s a 1000 Hills Tourism Sign outside. A wooden fence and silver gate. Welcome to Assagay Forest Lodge.\r\n\r\n[/fusion_toggle][fusion_toggle title=\"Directions from Pietermaritzburg\" open=\"no\"]\r\n\r\nFrom Pietermaritzburg take the N3 towards Durban. After the Drummond turnoff the N3 makes a steep climb. Don\'t take the Alternative route but stay on the N3. Take the next off ramp marked Shongweni / Assagay / Hillcrest. Turn left towards Hillcrest into Kassier Road which will take you passed the Polo fields on your left and a Petrol Station on your right and over then over the M13, keep on this road, pass the Hillcrest Private Hospital and Alverstone turn off. Remain on Kassier Road, for about 2-3km and turn into Assagay Road, which is just after Assagay Crescent.\r\n\r\nTake the left turn into Assagay Road. Head up the rise. Turn left into Castle Road, carry down the dip for about 500m and cross a small water-bridge. Turn first right into Lello Road, just after the bridge. Continue on Lello Road, the road dips and briefly climbs, the valley falling away to your right. Finally, turn left into Williams Road (it’s essentially the first left turn on Lello Road), Continue down Williams Road for about 800m. On your right you will come to the entrance of the farm called `Fourever` No 4 Williams Road. There’s a 1000 Hills Tourism Sign outside. A wooden fence and silver gate. Welcome to Assagay Lodge.\r\n\r\n[/fusion_toggle][fusion_toggle title=\"Things to do\" open=\"no\"]\r\n\r\nThere is plenty to do.\r\n\r\nDurban Sea Side - 25kms\r\nGame reserve - 15 kms\r\nAnimal Farm - 2kms\r\nBrewery - 4kms\r\nShongweni Market - 6kms\r\nShongweni Dam - 8kms\r\nValley 1000 Hills , Zulu dancing and Croc farm - 4kms\r\nDrakensberg Mountains - 3 hours\r\nHillcrest Shopping Centre - 3 kms\r\nWaterfall Shopping Centre - 8kms\r\nPavilion Shopping Centre - 20 kms\r\nGateway Shopping Centre - 40kms\r\n\r\n[/fusion_toggle][/fusion_accordion][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container background_color=\"\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"0px\" padding_bottom=\"0px\" padding_left=\"0px\" padding_right=\"0px\" hundred_percent=\"yes\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][fusion_builder_row][fusion_builder_column type=\"1_1\" background_position=\"left top\" background_color=\"\" border_size=\"\" border_color=\"\" border_style=\"solid\" spacing=\"yes\" background_image=\"\" background_repeat=\"no-repeat\" padding=\"\" margin_top=\"0px\" margin_bottom=\"0px\" class=\"\" id=\"\" animation_type=\"\" animation_speed=\"0.3\" animation_direction=\"left\" hide_on_mobile=\"no\" center_content=\"no\" min_height=\"none\"][fusion_map address=\"Assagay Forest Lodge\" type=\"roadmap\" map_style=\"default\" overlay_color=\"#6666a4\" infobox=\"default\" infobox_background_color=\"rgba(102,102,164,.8)\" infobox_text_color=\"#ffffff\" infobox_content=\"\" icon=\"http://theme-fusion.com/avada_demos_xml/travel/wp-content/uploads/2015/01/map.png\" width=\"100%\" height=\"700px\" zoom=\"15\" scrollwheel=\"yes\" scale=\"no\" zoom_pancontrol=\"yes\" animation=\"no\" popup=\"no\" class=\"\" id=\"\"][/fusion_map][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container]', 'Thank You', '', 'publish', 'closed', 'open', '', 'thank-you', '', '', '2019-11-13 14:13:46', '2019-11-13 12:13:46', '', 0, 'http://msla.co.za/lodge/?page_id=1327', 0, 'page', '', 0),
(1328, 1, '2016-10-28 10:45:27', '2016-10-28 08:45:27', '[fullwidth background_color=\"\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"70px\" padding_bottom=\"75px\" padding_left=\"0px\" padding_right=\"0px\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][fusion_text]\r\n<h3>Thank you for your booking request.</h3>\r\nI just want to check that we are not overbooking as we subscribe to other booking agents. I will get back you as soon as possible whether we can confirm you booking.[/fusion_text][one_half last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][fusion_text]\r\n<h1>Contact Us</h1>\r\n<h2>Send us a message.</h2>\r\n[/fusion_text][fusion_text][contact-form-7 id=\"246\" title=\"Contact form 1\"][/fusion_text][/one_half][one_half last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][fusion_text]\r\n<h1>Where are we?</h1>\r\n<h2>4 Williams Road\r\nAssagay, Hillcrest\r\nKwaZulu Natal</h2>\r\n<h1>Contact</h1>\r\n<h2>0317656046 or 0317655961</h2>\r\n[/fusion_text][separator style_type=\"none\" top_margin=\"\" bottom_margin=\"20\" sep_color=\"\" border_size=\"\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"\" alignment=\"\" class=\"\" id=\"\"][accordian divider_line=\"\" class=\"\" id=\"\"][toggle title=\"GPS Location\" open=\"no\"]\r\n\r\n<strong>GPS: Latitude (South) -29.771865, Longitude (East) 30.736892</strong>\r\n\r\n[/toggle][toggle title=\"Directions from King Shaka Airport / Durban\" open=\"no\"]\r\n\r\nFrom King Shaka Airport take the N2 South bound towards Durban, at the 3 level interchange be sure to take the N3 turn off towards Pietermaritzburg. Proceed through the Marionhill toll plaza and take the first off ramp marked Shongweni / Assagay / Hillcrest. Turn right towards Hillcrest into Kassier Road which will take you over the N3 and M13, keep on this road, pass the Hillcrest Private Hospital and Alverstone turn off. Remain on Kassier Road, for about 2-3km and turn into Assagay Road, which is just after Assagay Crescent.\r\n\r\nTake the left turn into Assagay Road. Head up the rise. Turn left into Castle Road, carry down the dip for about 500m and cross a small water-bridge. Turn first right into Lello Road, just after the bridge. Continue on Lello Road, the road dips and briefly climbs, the valley falling away to your right. Finally, turn left into Williams Road (it’s essentially the first left turn on Lello Road), Continue down Williams Road for about 800m. On your right you will come to the entrance of the farm called `Fourever` No 4 Williams Road. There’s a 1000 Hills Tourism Sign outside. A wooden fence and silver gate. Welcome to Assagay Forest Lodge.\r\n\r\n[/toggle][toggle title=\"Directions from Pietermaritzburg\" open=\"no\"]\r\n\r\nFrom Pietermaritzburg take the N3 towards Durban. After the Drummond turnoff the N3 makes a steep climb. Don\'t take the Alternative route but stay on the N3. Take the next off ramp marked Shongweni / Assagay / Hillcrest. Turn left towards Hillcrest into Kassier Road which will take you passed the Polo fields on your left and a Petrol Station on your right and over then over the M13, keep on this road, pass the Hillcrest Private Hospital and Alverstone turn off. Remain on Kassier Road, for about 2-3km and turn into Assagay Road, which is just after Assagay Crescent.\r\n\r\nTake the left turn into Assagay Road. Head up the rise. Turn left into Castle Road, carry down the dip for about 500m and cross a small water-bridge. Turn first right into Lello Road, just after the bridge. Continue on Lello Road, the road dips and briefly climbs, the valley falling away to your right. Finally, turn left into Williams Road (it’s essentially the first left turn on Lello Road), Continue down Williams Road for about 800m. On your right you will come to the entrance of the farm called `Fourever` No 4 Williams Road. There’s a 1000 Hills Tourism Sign outside. A wooden fence and silver gate. Welcome to Assagay Lodge.\r\n\r\n[/toggle][toggle title=\"Things to do\" open=\"no\"]\r\n\r\nThere is plenty to do.\r\n\r\nDurban Sea Side - 25kms\r\nGame reserve - 15 kms\r\nAnimal Farm - 2kms\r\nBrewery - 4kms\r\nShongweni Market - 6kms\r\nShongweni Dam - 8kms\r\nValley 1000 Hills , Zulu dancing and Croc farm - 4kms\r\nDrakensberg Mountains - 3 hours\r\nHillcrest Shopping Centre - 3 kms\r\nWaterfall Shopping Centre - 8kms\r\nPavilion Shopping Centre - 20 kms\r\nGateway Shopping Centre - 40kms\r\n\r\n[/toggle][/accordian][/one_half][/fullwidth][fullwidth background_color=\"\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"0px\" padding_bottom=\"0px\" padding_left=\"0px\" padding_right=\"0px\" hundred_percent=\"yes\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][map address=\"Assagay Forest Lodge\" type=\"roadmap\" map_style=\"default\" overlay_color=\"#6666a4\" infobox=\"default\" infobox_background_color=\"rgba(102,102,164,.8)\" infobox_text_color=\"#ffffff\" infobox_content=\"\" icon=\"http://theme-fusion.com/avada_demos_xml/travel/wp-content/uploads/2015/01/map.png\" width=\"100%\" height=\"700px\" zoom=\"15\" scrollwheel=\"yes\" scale=\"no\" zoom_pancontrol=\"yes\" animation=\"no\" popup=\"no\" class=\"\" id=\"\"][/map][/fullwidth]', 'Thank You', '', 'inherit', 'closed', 'closed', '', '1327-revision-v1', '', '', '2016-10-28 10:45:27', '2016-10-28 08:45:27', '', 1327, 'http://msla.co.za/lodge/1327-revision-v1/', 0, 'revision', '', 0),
(1329, 1, '2016-10-28 14:52:13', '2016-10-28 12:52:13', '[fullwidth background_color=\"\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"70px\" padding_bottom=\"75px\" padding_left=\"0px\" padding_right=\"0px\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][fusion_text]\r\n<h3>Thank you for your booking request.</h3>\r\n<h3>I just want to check that we are not overbooking as we subscribe to other booking agents. I will get back you as soon as possible whether we can confirm you booking.</h3>\r\n[/fusion_text][one_half last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][fusion_text]\r\n<h1>Contact Us</h1>\r\n<h2>Send us a message.</h2>\r\n[/fusion_text][fusion_text][contact-form-7 id=\"246\" title=\"Contact form 1\"][/fusion_text][/one_half][one_half last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][fusion_text]\r\n<h1>Where are we?</h1>\r\n<h2>4 Williams Road\r\nAssagay, Hillcrest\r\nKwaZulu Natal</h2>\r\n<h1>Contact</h1>\r\n<h2>0317656046 or 0317655961</h2>\r\n[/fusion_text][separator style_type=\"none\" top_margin=\"\" bottom_margin=\"20\" sep_color=\"\" border_size=\"\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"\" alignment=\"\" class=\"\" id=\"\"][accordian divider_line=\"\" class=\"\" id=\"\"][toggle title=\"GPS Location\" open=\"no\"]\r\n\r\n<strong>GPS: Latitude (South) -29.771865, Longitude (East) 30.736892</strong>\r\n\r\n[/toggle][toggle title=\"Directions from King Shaka Airport / Durban\" open=\"no\"]\r\n\r\nFrom King Shaka Airport take the N2 South bound towards Durban, at the 3 level interchange be sure to take the N3 turn off towards Pietermaritzburg. Proceed through the Marionhill toll plaza and take the first off ramp marked Shongweni / Assagay / Hillcrest. Turn right towards Hillcrest into Kassier Road which will take you over the N3 and M13, keep on this road, pass the Hillcrest Private Hospital and Alverstone turn off. Remain on Kassier Road, for about 2-3km and turn into Assagay Road, which is just after Assagay Crescent.\r\n\r\nTake the left turn into Assagay Road. Head up the rise. Turn left into Castle Road, carry down the dip for about 500m and cross a small water-bridge. Turn first right into Lello Road, just after the bridge. Continue on Lello Road, the road dips and briefly climbs, the valley falling away to your right. Finally, turn left into Williams Road (it’s essentially the first left turn on Lello Road), Continue down Williams Road for about 800m. On your right you will come to the entrance of the farm called `Fourever` No 4 Williams Road. There’s a 1000 Hills Tourism Sign outside. A wooden fence and silver gate. Welcome to Assagay Forest Lodge.\r\n\r\n[/toggle][toggle title=\"Directions from Pietermaritzburg\" open=\"no\"]\r\n\r\nFrom Pietermaritzburg take the N3 towards Durban. After the Drummond turnoff the N3 makes a steep climb. Don\'t take the Alternative route but stay on the N3. Take the next off ramp marked Shongweni / Assagay / Hillcrest. Turn left towards Hillcrest into Kassier Road which will take you passed the Polo fields on your left and a Petrol Station on your right and over then over the M13, keep on this road, pass the Hillcrest Private Hospital and Alverstone turn off. Remain on Kassier Road, for about 2-3km and turn into Assagay Road, which is just after Assagay Crescent.\r\n\r\nTake the left turn into Assagay Road. Head up the rise. Turn left into Castle Road, carry down the dip for about 500m and cross a small water-bridge. Turn first right into Lello Road, just after the bridge. Continue on Lello Road, the road dips and briefly climbs, the valley falling away to your right. Finally, turn left into Williams Road (it’s essentially the first left turn on Lello Road), Continue down Williams Road for about 800m. On your right you will come to the entrance of the farm called `Fourever` No 4 Williams Road. There’s a 1000 Hills Tourism Sign outside. A wooden fence and silver gate. Welcome to Assagay Lodge.\r\n\r\n[/toggle][toggle title=\"Things to do\" open=\"no\"]\r\n\r\nThere is plenty to do.\r\n\r\nDurban Sea Side - 25kms\r\nGame reserve - 15 kms\r\nAnimal Farm - 2kms\r\nBrewery - 4kms\r\nShongweni Market - 6kms\r\nShongweni Dam - 8kms\r\nValley 1000 Hills , Zulu dancing and Croc farm - 4kms\r\nDrakensberg Mountains - 3 hours\r\nHillcrest Shopping Centre - 3 kms\r\nWaterfall Shopping Centre - 8kms\r\nPavilion Shopping Centre - 20 kms\r\nGateway Shopping Centre - 40kms\r\n\r\n[/toggle][/accordian][/one_half][/fullwidth][fullwidth background_color=\"\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"0px\" padding_bottom=\"0px\" padding_left=\"0px\" padding_right=\"0px\" hundred_percent=\"yes\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][map address=\"Assagay Forest Lodge\" type=\"roadmap\" map_style=\"default\" overlay_color=\"#6666a4\" infobox=\"default\" infobox_background_color=\"rgba(102,102,164,.8)\" infobox_text_color=\"#ffffff\" infobox_content=\"\" icon=\"http://theme-fusion.com/avada_demos_xml/travel/wp-content/uploads/2015/01/map.png\" width=\"100%\" height=\"700px\" zoom=\"15\" scrollwheel=\"yes\" scale=\"no\" zoom_pancontrol=\"yes\" animation=\"no\" popup=\"no\" class=\"\" id=\"\"][/map][/fullwidth]', 'Thank You', '', 'inherit', 'closed', 'closed', '', '1327-revision-v1', '', '', '2016-10-28 14:52:13', '2016-10-28 12:52:13', '', 1327, 'http://msla.co.za/lodge/1327-revision-v1/', 0, 'revision', '', 0);
INSERT INTO `wp_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(1330, 1, '2016-10-28 14:57:26', '2016-10-28 12:57:26', '[fullwidth background_color=\"\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"70px\" padding_bottom=\"75px\" padding_left=\"0px\" padding_right=\"0px\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][fusion_text]<h3>Thank you for your booking enquiry.</h3>\r\n<h3>I will get back to you as soon as possible and let you know if we can definitely confirm availability for the date/s requested.</h3>[/fusion_text][one_half last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][fusion_text]\r\n<h1>Contact Us</h1>\r\n<h2>Send us a message.</h2>\r\n[/fusion_text][fusion_text][contact-form-7 id=\"246\" title=\"Contact form 1\"][/fusion_text][/one_half][one_half last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][fusion_text]\r\n<h1>Where are we?</h1>\r\n<h2>4 Williams Road\r\nAssagay, Hillcrest\r\nKwaZulu Natal</h2>\r\n<h1>Contact</h1>\r\n<h2>0317656046 or 0317655961</h2>\r\n[/fusion_text][separator style_type=\"none\" top_margin=\"\" bottom_margin=\"20\" sep_color=\"\" border_size=\"\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"\" alignment=\"\" class=\"\" id=\"\"][accordian divider_line=\"\" class=\"\" id=\"\"][toggle title=\"GPS Location\" open=\"no\"]\r\n\r\n<strong>GPS: Latitude (South) -29.771865, Longitude (East) 30.736892</strong>\r\n\r\n[/toggle][toggle title=\"Directions from King Shaka Airport / Durban\" open=\"no\"]\r\n\r\nFrom King Shaka Airport take the N2 South bound towards Durban, at the 3 level interchange be sure to take the N3 turn off towards Pietermaritzburg. Proceed through the Marionhill toll plaza and take the first off ramp marked Shongweni / Assagay / Hillcrest. Turn right towards Hillcrest into Kassier Road which will take you over the N3 and M13, keep on this road, pass the Hillcrest Private Hospital and Alverstone turn off. Remain on Kassier Road, for about 2-3km and turn into Assagay Road, which is just after Assagay Crescent.\r\n\r\nTake the left turn into Assagay Road. Head up the rise. Turn left into Castle Road, carry down the dip for about 500m and cross a small water-bridge. Turn first right into Lello Road, just after the bridge. Continue on Lello Road, the road dips and briefly climbs, the valley falling away to your right. Finally, turn left into Williams Road (it’s essentially the first left turn on Lello Road), Continue down Williams Road for about 800m. On your right you will come to the entrance of the farm called `Fourever` No 4 Williams Road. There’s a 1000 Hills Tourism Sign outside. A wooden fence and silver gate. Welcome to Assagay Forest Lodge.\r\n\r\n[/toggle][toggle title=\"Directions from Pietermaritzburg\" open=\"no\"]\r\n\r\nFrom Pietermaritzburg take the N3 towards Durban. After the Drummond turnoff the N3 makes a steep climb. Don\'t take the Alternative route but stay on the N3. Take the next off ramp marked Shongweni / Assagay / Hillcrest. Turn left towards Hillcrest into Kassier Road which will take you passed the Polo fields on your left and a Petrol Station on your right and over then over the M13, keep on this road, pass the Hillcrest Private Hospital and Alverstone turn off. Remain on Kassier Road, for about 2-3km and turn into Assagay Road, which is just after Assagay Crescent.\r\n\r\nTake the left turn into Assagay Road. Head up the rise. Turn left into Castle Road, carry down the dip for about 500m and cross a small water-bridge. Turn first right into Lello Road, just after the bridge. Continue on Lello Road, the road dips and briefly climbs, the valley falling away to your right. Finally, turn left into Williams Road (it’s essentially the first left turn on Lello Road), Continue down Williams Road for about 800m. On your right you will come to the entrance of the farm called `Fourever` No 4 Williams Road. There’s a 1000 Hills Tourism Sign outside. A wooden fence and silver gate. Welcome to Assagay Lodge.\r\n\r\n[/toggle][toggle title=\"Things to do\" open=\"no\"]\r\n\r\nThere is plenty to do.\r\n\r\nDurban Sea Side - 25kms\r\nGame reserve - 15 kms\r\nAnimal Farm - 2kms\r\nBrewery - 4kms\r\nShongweni Market - 6kms\r\nShongweni Dam - 8kms\r\nValley 1000 Hills , Zulu dancing and Croc farm - 4kms\r\nDrakensberg Mountains - 3 hours\r\nHillcrest Shopping Centre - 3 kms\r\nWaterfall Shopping Centre - 8kms\r\nPavilion Shopping Centre - 20 kms\r\nGateway Shopping Centre - 40kms\r\n\r\n[/toggle][/accordian][/one_half][/fullwidth][fullwidth background_color=\"\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"0px\" padding_bottom=\"0px\" padding_left=\"0px\" padding_right=\"0px\" hundred_percent=\"yes\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][map address=\"Assagay Forest Lodge\" type=\"roadmap\" map_style=\"default\" overlay_color=\"#6666a4\" infobox=\"default\" infobox_background_color=\"rgba(102,102,164,.8)\" infobox_text_color=\"#ffffff\" infobox_content=\"\" icon=\"http://theme-fusion.com/avada_demos_xml/travel/wp-content/uploads/2015/01/map.png\" width=\"100%\" height=\"700px\" zoom=\"15\" scrollwheel=\"yes\" scale=\"no\" zoom_pancontrol=\"yes\" animation=\"no\" popup=\"no\" class=\"\" id=\"\"][/map][/fullwidth]', 'Thank You', '', 'inherit', 'closed', 'closed', '', '1327-revision-v1', '', '', '2016-10-28 14:57:26', '2016-10-28 12:57:26', '', 1327, 'http://msla.co.za/lodge/1327-revision-v1/', 0, 'revision', '', 0),
(1331, 1, '2016-10-28 14:59:03', '2016-10-28 12:59:03', '[fullwidth background_color=\"\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"70px\" padding_bottom=\"75px\" padding_left=\"0px\" padding_right=\"0px\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][fusion_text]\r\n<h3>Thank you for your booking enquiry.</h3>\r\n<h3>We will get back to you as soon as possible and let you know if we can definitely confirm availability for the date/s requested.</h3>\r\n[/fusion_text][one_half last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][fusion_text]\r\n<h1>Contact Us</h1>\r\n<h2>Send us a message.</h2>\r\n[/fusion_text][fusion_text][contact-form-7 id=\"246\" title=\"Contact form 1\"][/fusion_text][/one_half][one_half last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][fusion_text]\r\n<h1>Where are we?</h1>\r\n<h2>4 Williams Road\r\nAssagay, Hillcrest\r\nKwaZulu Natal</h2>\r\n<h1>Contact</h1>\r\n<h2>0317656046 or 0317655961</h2>\r\n[/fusion_text][separator style_type=\"none\" top_margin=\"\" bottom_margin=\"20\" sep_color=\"\" border_size=\"\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"\" alignment=\"\" class=\"\" id=\"\"][accordian divider_line=\"\" class=\"\" id=\"\"][toggle title=\"GPS Location\" open=\"no\"]\r\n\r\n<strong>GPS: Latitude (South) -29.771865, Longitude (East) 30.736892</strong>\r\n\r\n[/toggle][toggle title=\"Directions from King Shaka Airport / Durban\" open=\"no\"]\r\n\r\nFrom King Shaka Airport take the N2 South bound towards Durban, at the 3 level interchange be sure to take the N3 turn off towards Pietermaritzburg. Proceed through the Marionhill toll plaza and take the first off ramp marked Shongweni / Assagay / Hillcrest. Turn right towards Hillcrest into Kassier Road which will take you over the N3 and M13, keep on this road, pass the Hillcrest Private Hospital and Alverstone turn off. Remain on Kassier Road, for about 2-3km and turn into Assagay Road, which is just after Assagay Crescent.\r\n\r\nTake the left turn into Assagay Road. Head up the rise. Turn left into Castle Road, carry down the dip for about 500m and cross a small water-bridge. Turn first right into Lello Road, just after the bridge. Continue on Lello Road, the road dips and briefly climbs, the valley falling away to your right. Finally, turn left into Williams Road (it’s essentially the first left turn on Lello Road), Continue down Williams Road for about 800m. On your right you will come to the entrance of the farm called `Fourever` No 4 Williams Road. There’s a 1000 Hills Tourism Sign outside. A wooden fence and silver gate. Welcome to Assagay Forest Lodge.\r\n\r\n[/toggle][toggle title=\"Directions from Pietermaritzburg\" open=\"no\"]\r\n\r\nFrom Pietermaritzburg take the N3 towards Durban. After the Drummond turnoff the N3 makes a steep climb. Don\'t take the Alternative route but stay on the N3. Take the next off ramp marked Shongweni / Assagay / Hillcrest. Turn left towards Hillcrest into Kassier Road which will take you passed the Polo fields on your left and a Petrol Station on your right and over then over the M13, keep on this road, pass the Hillcrest Private Hospital and Alverstone turn off. Remain on Kassier Road, for about 2-3km and turn into Assagay Road, which is just after Assagay Crescent.\r\n\r\nTake the left turn into Assagay Road. Head up the rise. Turn left into Castle Road, carry down the dip for about 500m and cross a small water-bridge. Turn first right into Lello Road, just after the bridge. Continue on Lello Road, the road dips and briefly climbs, the valley falling away to your right. Finally, turn left into Williams Road (it’s essentially the first left turn on Lello Road), Continue down Williams Road for about 800m. On your right you will come to the entrance of the farm called `Fourever` No 4 Williams Road. There’s a 1000 Hills Tourism Sign outside. A wooden fence and silver gate. Welcome to Assagay Lodge.\r\n\r\n[/toggle][toggle title=\"Things to do\" open=\"no\"]\r\n\r\nThere is plenty to do.\r\n\r\nDurban Sea Side - 25kms\r\nGame reserve - 15 kms\r\nAnimal Farm - 2kms\r\nBrewery - 4kms\r\nShongweni Market - 6kms\r\nShongweni Dam - 8kms\r\nValley 1000 Hills , Zulu dancing and Croc farm - 4kms\r\nDrakensberg Mountains - 3 hours\r\nHillcrest Shopping Centre - 3 kms\r\nWaterfall Shopping Centre - 8kms\r\nPavilion Shopping Centre - 20 kms\r\nGateway Shopping Centre - 40kms\r\n\r\n[/toggle][/accordian][/one_half][/fullwidth][fullwidth background_color=\"\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"0px\" padding_bottom=\"0px\" padding_left=\"0px\" padding_right=\"0px\" hundred_percent=\"yes\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][map address=\"Assagay Forest Lodge\" type=\"roadmap\" map_style=\"default\" overlay_color=\"#6666a4\" infobox=\"default\" infobox_background_color=\"rgba(102,102,164,.8)\" infobox_text_color=\"#ffffff\" infobox_content=\"\" icon=\"http://theme-fusion.com/avada_demos_xml/travel/wp-content/uploads/2015/01/map.png\" width=\"100%\" height=\"700px\" zoom=\"15\" scrollwheel=\"yes\" scale=\"no\" zoom_pancontrol=\"yes\" animation=\"no\" popup=\"no\" class=\"\" id=\"\"][/map][/fullwidth]', 'Thank You', '', 'inherit', 'closed', 'closed', '', '1327-revision-v1', '', '', '2016-10-28 14:59:03', '2016-10-28 12:59:03', '', 1327, 'http://msla.co.za/lodge/1327-revision-v1/', 0, 'revision', '', 0),
(1332, 1, '2016-10-28 15:08:38', '2016-10-28 13:08:38', '[fullwidth background_color=\"\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding_top=\"20\" padding_bottom=\"20\" padding_left=\"0\" padding_right=\"0\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][title size=\"1\" content_align=\"right\" style_type=\"default\" sep_color=\"\" margin_top=\"\" margin_bottom=\"\" class=\"\" id=\"\"]Lodge Facilities &amp; Amenities[/title][/fullwidth][one_sixth last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][/one_sixth][two_third last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][fusion_text]\r\n<h3><span style=\"text-align: justify; line-height: 1.5em; font-family: verdana, geneva; font-size: 18px;\">Rooms</span></h3>\r\n<span style=\"font-size: 12pt;\">[checklist icon=\"fa-star-o\" iconcolor=\"\" circle=\"\" circlecolor=\"\" size=\"13px\" class=\"\" id=\"\"]</span>\r\n<span style=\"font-size: 12pt;\"> [li_item icon=\"\"]All Rooms are en-suite i.e. Hand Basin, Toilet, Shower.[/li_item]\r\n[li_item icon=\"\"]Wall to Wall Carpeting[/li_item]\r\n</span><span style=\"font-size: 12pt;\">[li_item icon=\"\"]Ceiling Fan.[/li_item]\r\n</span><span style=\"font-size: 12pt;\">[li_item icon=\"\"]Wall Heater.[/li_item]\r\n</span><span style=\"font-size: 12pt;\">[li_item icon=\"\"]Electrical Plug Sockets.[/li_item]\r\n</span><span style=\"font-size: 12pt;\">[li_item icon=\"\"]Bedside Lamps.[/li_item]\r\n</span><span style=\"font-size: 12pt;\">[li_item icon=\"\"]Waste Bin[/li_item]</span>\r\n<span style=\"font-size: 12pt;\">[/checklist]</span>[/fusion_text][fusion_text]\r\n<h3><span style=\"text-align: justify; line-height: 1.5em; font-family: verdana, geneva; font-size: 18px;\">Beds</span></h3>\r\n<span style=\"font-size: 12pt;\">[checklist icon=\"fa-star-o\" iconcolor=\"\" circle=\"\" circlecolor=\"\" size=\"13px\" class=\"\" id=\"\"]</span>\r\n<span style=\"font-size: 12pt;\">[li_item icon=\"\"]King or Queen Bed &amp; Mattress Protector.[/li_item]\r\n</span><span style=\"font-size: 12pt;\">[li_item icon=\"\"]Electric Blankets.[/li_item]\r\n[li_item icon=\"\"]100% Cotton Percale Fitted Sheet.[/li_item]\r\n</span><span style=\"font-size: 12pt;\">[li_item icon=\"\"]100% Cotton Percale Flat Sheet.[/li_item]\r\n</span><span style=\"font-size: 12pt;\">[li_item icon=\"\"]2x King Microfibre Pillows, Pillow Protectors &amp; 100% Cotton Percale Pillow Cases.[/li_item]\r\n[li_item icon=\"\"]2x Standard Microfibre Pillows, Pillow Protectors &amp; 100% Cotton Percale Pillow Cases.[/li_item]\r\n</span><span style=\"font-size: 12pt;\">[li_item icon=\"\"]Microfibre Duvet Inner.[/li_item]\r\n</span><span style=\"font-size: 12pt;\">[li_item icon=\"\"]Duvet Cover.[/li_item]\r\n</span><span style=\"font-size: 12pt;\">[li_item icon=\"\"]A Bed Blanket.[/li_item]\r\n</span><span style=\"font-size: 12pt;\">[/checklist]</span>[/fusion_text][fusion_text]\r\n<h3><span style=\"text-align: justify; line-height: 1.5em; font-family: verdana, geneva; font-size: 18px;\">Kitchen</span></h3>\r\n<span style=\"font-size: 12pt;\">[checklist icon=\"fa-star-o\" iconcolor=\"\" circle=\"\" circlecolor=\"\" size=\"13px\" class=\"\" id=\"\"]</span>\r\n<span style=\"font-size: 12pt;\"> [li_item icon=\"\"]Fridge &amp; Freezer Unit.[/li_item]\r\n</span><span style=\"font-size: 12pt;\">[li_item icon=\"\"]Microwave.[/li_item]\r\n</span><span style=\"font-size: 12pt;\">[li_item icon=\"\"]...[/li_item]\r\n</span><span style=\"font-size: 12pt;\">[li_item icon=\"\"]Toaster.[/li_item]\r\n</span><span style=\"font-size: 12pt;\">[li_item icon=\"\"]Iron &amp; Ironing Board.[/li_item]\r\n</span><span style=\"font-size: 12pt;\">[li_item icon=\"\"]Kettle &amp; Urn.[/li_item]\r\n</span><span style=\"font-size: 12pt;\">[li_item icon=\"\"]Gas Stove &amp; Oven.[/li_item]\r\n</span><span style=\"font-size: 12pt;\">[li_item icon=\"\"]Coffee Peculator.[/li_item]\r\n</span><span style=\"font-size: 12pt;\">[li_item icon=\"\"]Glasses.[/li_item]\r\n</span><span style=\"font-size: 12pt;\">[li_item icon=\"\"]Pot &amp; Pans.[/li_item]\r\n</span><span style=\"font-size: 12pt;\">[li_item icon=\"\"]Crockery &amp; Cutlery.[/li_item]</span>\r\n\r\n<span style=\"font-size: 12pt;\">[/checklist]</span>[/fusion_text][/two_third][one_sixth last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][/one_sixth]', 'Facilities', '', 'inherit', 'closed', 'closed', '', '998-revision-v1', '', '', '2016-10-28 15:08:38', '2016-10-28 13:08:38', '', 998, 'http://msla.co.za/lodge/998-revision-v1/', 0, 'revision', '', 0),
(1333, 1, '2016-10-28 15:13:46', '2016-10-28 13:13:46', '[fullwidth background_color=\"\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding_top=\"20\" padding_bottom=\"20\" padding_left=\"0\" padding_right=\"0\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][title size=\"1\" content_align=\"right\" style_type=\"default\" sep_color=\"\" margin_top=\"\" margin_bottom=\"\" class=\"\" id=\"\"]Terms &amp; Conditions[/title][/fullwidth][one_sixth last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][/one_sixth][two_third last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][fusion_text]\r\n<h3 style=\"text-align: justify;\">Check-in Times</h3>\r\n<span style=\"font-size: 12pt;\">[checklist icon=\"fa-star-o\" iconcolor=\"\" circle=\"\" circlecolor=\"\" size=\"13px\" class=\"\" id=\"\"]\r\n[li_item icon=\"\"]Check-in Time is from 14h00 to 18h00 (Late arrivals must be arranged before hand).[/li_item]\r\n[li_item icon=\"\"]Check-out Time is before 10h00.[/li_item]\r\n[/checklist]</span>[/fusion_text][/two_third][one_sixth last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][/one_sixth][one_sixth last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][/one_sixth][two_third last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][fusion_text]\r\n<h3 style=\"text-align: justify;\">Payment Terms</h3>\r\n<p style=\"text-align: justify;\"><span style=\"font-size: 12pt;\">[checklist icon=\"fa-star-o\" iconcolor=\"\" circle=\"\" circlecolor=\"\" size=\"13px\" class=\"\" id=\"\"]\r\n[li_item icon=\"\"]Rates are inclusive of <strong>14%</strong> VAT.[/li_item]\r\n[li_item icon=\"\"]Payment must be made via <strong>Bank Transfer</strong>, alternatively, <strong>Cash</strong> may be accepted by prior arrangement.[/li_item]\r\n[li_item icon=\"\"]We no longer accept Cheques.[/li_item]\r\n[li_item icon=\"\"]All accommodation must be settled either before or on arrival.[/li_item]\r\n[li_item icon=\"\"]No bookings are guaranteed until your reservation is confirmed, having paid at least a <strong>50% deposit</strong>.[/li_item]\r\n[/checklist]</span></p>\r\n[/fusion_text][/two_third][one_sixth last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][/one_sixth][one_sixth last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][/one_sixth][two_third last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][fusion_text]\r\n<h3 style=\"text-align: justify;\">Refunds &amp; Cancelation Terms</h3>\r\n<p style=\"text-align: justify;\"><span style=\"font-size: 12pt;\">[checklist icon=\"fa-star-o\" iconcolor=\"\" circle=\"\" circlecolor=\"\" size=\"13px\" class=\"\" id=\"\"]\r\n[li_item icon=\"\"]Guests are liable for the tariff of the full period booked.[/li_item]\r\n[li_item icon=\"\"]No refunds will be given for early departures / late arrivals, or due to weather conditions / power outages<span style=\"text-align: justify;\">.</span>[/li_item]\r\n[li_item icon=\"\"]<span style=\"text-align: justify;\">Cancellation of any booking must be done via email.</span>[/li_item]\r\n[li_item icon=\"\"]<span style=\"text-align: justify;\">If you cancel your reservation 15 days and more, </span><span style=\"text-align: justify;\">before your arrival date, your deposit will be </span><span style=\"text-align: justify;\">r</span><span style=\"text-align: justify;\">efund</span><span style=\"text-align: justify;\">ed</span><span style=\"text-align: justify;\"> less an administration fee of </span>15%.[/li_item]\r\n[li_item icon=\"\"]<span style=\"text-align: justify;\">If you cancel your reservation 14 days and less, before your arrival date, your deposit will become </span>non-refundable.[/li_item]\r\n[li_item icon=\"\"]<span style=\"text-align: justify;\">Payments are not refundable for reservations not cancelled and not taken up.</span>[/li_item]\r\n[/checklist]</span></p>\r\n[/fusion_text][/two_third][one_sixth last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][/one_sixth][one_sixth last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][/one_sixth][two_third last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][fusion_text]<h3><span style=\"font-size: 12pt;\">General Terms</span></h3>\r\n<span style=\"font-size: 12pt;\">[checklist icon=\"fa-star-o\" iconcolor=\"\" circle=\"\" circlecolor=\"\" size=\"13px\" class=\"\" id=\"\"]\r\n[li_item icon=\"\"]A reservation may not be transferred.[/li_item]\r\n[li_item icon=\"\"]Bookings are for holiday purposes only and cannot give rise to a tenancy.[/li_item]\r\n[li_item icon=\"\"]Persons occupying the lodge may not exceed the number of persons indicated upon booking.[/li_item]\r\n[li_item icon=\"\"]During nights the all doors must be locked. Please remember to lock the door behind you and to remove the key.[/li_item]\r\n[li_item icon=\"\"]Please leave the Lodge reasonable tidy and clean after use.[/li_item]\r\n[li_item icon=\"\"]Out of respect for all guests, and the fact that we are in a conservancy, noise must be kept down to a comfortable level especially between the hours 22h00 to 08h00.[/li_item]\r\n[li_item icon=\"\"]Please keep furniture, fixtures and fittings in the same state of repair and condition as at the beginning of your stay. In the event of any damage to furniture, fixtures or fittings, you may be held liable for the replacement value or repair costs. This includes damage to the pool area.[/li_item]\r\n[li_item icon=\"\"]The use of open fires and the burning of any unprotected candles or fuel burning lanterns, in or around the Lodge, will not be permitted.[/li_item]\r\n[li_item icon=\"\"]We operate a non-smoking policy throughout the Lodge. You are welcome to smoke outside the house, where ashtrays are provided.[/li_item]\r\n[li_item icon=\"\"]No pets / animals are allowed on the premises.[/li_item]\r\n[li_item icon=\"\"]The use or sale of any illegal substance in the Lodge or on surrounding property is not permissible.[/li_item]\r\n[li_item icon=\"\"]<span style=\"text-align: justify;\">Right of admission is reserved.</span>[/li_item]\r\n[li_item icon=\"\"]We reserve the right to eject a guest/guests from the Lodge if they are not conducting themselves in an appropriate and/or acceptable manner to the building and/or other residents or staff.[/li_item]\r\n[li_item icon=\"\"]Swimming Pool - The premises contains an unsupervised, open pool which may be used at the guests\' own risk.[/li_item]</span>\r\n<span style=\"font-size: 12pt;\"> [/checklist]</span>\r\n\r\n&nbsp;\r\n\r\n&lt;h3&gt;&lt;span style=\"line-height: 1.5em; font-family: verdana, geneva; font-size: 18px;\"&gt;PLEASE NOTE!&lt;/span&gt;&lt;/h3&gt;\r\n&lt;span style=\"font-size: 12pt;\"&gt;[checklist icon=\"fa-star-o\" iconcolor=\"\" circle=\"\" circlecolor=\"\" size=\"13px\" class=\"\" id=\"\"]&lt;/span&gt;\r\n&lt;span style=\"font-size: 12pt;\"&gt;[li_item icon=\"\"]When you book into the lodge it is exclusively yours. i.e. We don\'t book out the other rooms unless we have cleared it with you.[/li_item]\r\n&lt;/span&gt;&lt;span style=\"font-size: 12pt;\"&gt;[li_item icon=\"\"]The lodge and bedrooms are not serviced. Cleaning Services are available as optional extras.[/li_item]\r\n&lt;/span&gt;&lt;span style=\"font-size: 12pt;\"&gt;[li_item icon=\"\"]No Laundry Service.[/li_item]\r\n&lt;/span&gt;&lt;span style=\"font-size: 12pt;\"&gt;[li_item icon=\"\"]No Pets.[/li_item]\r\n&lt;/span&gt;&lt;span style=\"font-size: 12pt;\"&gt;[li_item icon=\"\"]No functions, parties or extra guests allowed unless by prior arrangement and will be at the owners discretion due to conservancy rules &amp;amp; noise restrictions.[/li_item]&lt;/span&gt;\r\n&lt;span style=\"font-size: 12pt;\"&gt;[/checklist]&lt;/span&gt;[/fusion_text][/two_third][one_sixth last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][/one_sixth]', 'T&Cs', '', 'inherit', 'closed', 'closed', '', '984-revision-v1', '', '', '2016-10-28 15:13:46', '2016-10-28 13:13:46', '', 984, 'http://msla.co.za/lodge/984-revision-v1/', 0, 'revision', '', 0),
(1334, 1, '2016-10-28 15:16:31', '2016-10-28 13:16:31', '[fullwidth background_color=\"\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding_top=\"20\" padding_bottom=\"20\" padding_left=\"0\" padding_right=\"0\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][title size=\"1\" content_align=\"right\" style_type=\"default\" sep_color=\"\" margin_top=\"\" margin_bottom=\"\" class=\"\" id=\"\"]Terms &amp; Conditions[/title][/fullwidth][one_sixth last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][/one_sixth][two_third last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][fusion_text]\r\n<h3 style=\"text-align: justify;\">Check-in Times</h3>\r\n<span style=\"font-size: 12pt;\">[checklist icon=\"fa-star-o\" iconcolor=\"\" circle=\"\" circlecolor=\"\" size=\"13px\" class=\"\" id=\"\"]\r\n[li_item icon=\"\"]Check-in Time is from 14h00 to 18h00 (Late arrivals must be arranged before hand).[/li_item]\r\n[li_item icon=\"\"]Check-out Time is before 10h00.[/li_item]\r\n[/checklist]</span>[/fusion_text][/two_third][one_sixth last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][/one_sixth][one_sixth last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][/one_sixth][two_third last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][fusion_text]\r\n<h3 style=\"text-align: justify;\">Payment Terms</h3>\r\n<p style=\"text-align: justify;\"><span style=\"font-size: 12pt;\">[checklist icon=\"fa-star-o\" iconcolor=\"\" circle=\"\" circlecolor=\"\" size=\"13px\" class=\"\" id=\"\"]\r\n[li_item icon=\"\"]Rates are inclusive of <strong>14%</strong> VAT.[/li_item]\r\n[li_item icon=\"\"]Payment must be made via <strong>Bank Transfer</strong>, alternatively, <strong>Cash</strong> may be accepted by prior arrangement.[/li_item]\r\n[li_item icon=\"\"]We no longer accept Cheques.[/li_item]\r\n[li_item icon=\"\"]All accommodation must be settled either before or on arrival.[/li_item]\r\n[li_item icon=\"\"]No bookings are guaranteed until your reservation is confirmed, having paid at least a <strong>50% deposit</strong>.[/li_item]\r\n[/checklist]</span></p>\r\n[/fusion_text][/two_third][one_sixth last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][/one_sixth][one_sixth last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][/one_sixth][two_third last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][fusion_text]\r\n<h3 style=\"text-align: justify;\">Refunds &amp; Cancelation Terms</h3>\r\n<p style=\"text-align: justify;\"><span style=\"font-size: 12pt;\">[checklist icon=\"fa-star-o\" iconcolor=\"\" circle=\"\" circlecolor=\"\" size=\"13px\" class=\"\" id=\"\"]\r\n[li_item icon=\"\"]Guests are liable for the tariff of the full period booked.[/li_item]\r\n[li_item icon=\"\"]No refunds will be given for early departures / late arrivals, or due to weather conditions / power outages<span style=\"text-align: justify;\">.</span>[/li_item]\r\n[li_item icon=\"\"]<span style=\"text-align: justify;\">Cancellation of any booking must be done via email.</span>[/li_item]\r\n[li_item icon=\"\"]<span style=\"text-align: justify;\">If you cancel your reservation 15 days and more, </span><span style=\"text-align: justify;\">before your arrival date, your deposit will be </span><span style=\"text-align: justify;\">r</span><span style=\"text-align: justify;\">efund</span><span style=\"text-align: justify;\">ed</span><span style=\"text-align: justify;\"> less an administration fee of </span>15%.[/li_item]\r\n[li_item icon=\"\"]<span style=\"text-align: justify;\">If you cancel your reservation 14 days and less, before your arrival date, your deposit will become </span>non-refundable.[/li_item]\r\n[li_item icon=\"\"]<span style=\"text-align: justify;\">Payments are not refundable for reservations not cancelled and not taken up.</span>[/li_item]\r\n[/checklist]</span></p>\r\n[/fusion_text][/two_third][one_sixth last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][/one_sixth][one_sixth last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][/one_sixth][two_third last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][fusion_text]\r\n<h3><span style=\"font-size: 12pt;\">General Terms</span></h3>\r\n<span style=\"font-size: 12pt;\">[checklist icon=\"fa-star-o\" iconcolor=\"\" circle=\"\" circlecolor=\"\" size=\"13px\" class=\"\" id=\"\"]\r\n[li_item icon=\"\"]A reservation may not be transferred.[/li_item]\r\n[li_item icon=\"\"]Bookings are for holiday purposes only and cannot give rise to a tenancy.[/li_item]\r\n[li_item icon=\"\"]Persons occupying the lodge may not exceed the number of persons indicated upon booking.[/li_item]\r\n[li_item icon=\"\"]During nights the all doors must be locked. Please remember to lock the door behind you and to remove the key.[/li_item]\r\n[li_item icon=\"\"]Please leave the Lodge reasonable tidy and clean after use.[/li_item]\r\n[li_item icon=\"\"]Out of respect for all guests, and the fact that we are in a conservancy, noise must be kept down to a comfortable level especially between the hours 22h00 to 08h00.[/li_item]\r\n[li_item icon=\"\"]Please keep furniture, fixtures and fittings in the same state of repair and condition as at the beginning of your stay. In the event of any damage to furniture, fixtures or fittings, you may be held liable for the replacement value or repair costs. This includes damage to the pool area.[/li_item]\r\n[li_item icon=\"\"]The use of open fires and the burning of any unprotected candles or fuel burning lanterns, in or around the Lodge, will not be permitted.[/li_item]\r\n[li_item icon=\"\"]We operate a non-smoking policy throughout the Lodge. You are welcome to smoke outside the house, where ashtrays are provided.[/li_item]\r\n[li_item icon=\"\"]No pets / animals are allowed on the premises.[/li_item]\r\n[li_item icon=\"\"]The use or sale of any illegal substance in the Lodge or on surrounding property is not permissible.[/li_item]\r\n[li_item icon=\"\"]<span style=\"text-align: justify;\">Right of admission is reserved.</span>[/li_item]\r\n[li_item icon=\"\"]We reserve the right to eject a guest/guests from the Lodge if they are not conducting themselves in an appropriate and/or acceptable manner to the building and/or other residents or staff.[/li_item]\r\n[li_item icon=\"\"]Swimming Pool - The premises contains an unsupervised, open pool which may be used at the guests\' own risk.[/li_item]</span>\r\n<span style=\"font-size: 12pt;\"> [/checklist]</span>\r\n\r\n&nbsp;\r\n<h3><span style=\"line-height: 1.5em; font-family: verdana, geneva; font-size: 18px;\">PLEASE NOTE!</span></h3>\r\n<span style=\"font-size: 12pt;\">[checklist icon=\"fa-star-o\" iconcolor=\"\" circle=\"\" circlecolor=\"\" size=\"13px\" class=\"\" id=\"\"]</span>\r\n<span style=\"font-size: 12pt;\">[li_item icon=\"\"]When you book into the lodge it is exclusively yours. i.e. We don\'t book out the other rooms unless we have cleared it with you.[/li_item]\r\n</span><span style=\"font-size: 12pt;\">[li_item icon=\"\"]The lodge and bedrooms are not serviced. Cleaning Services are available as optional extras.[/li_item]\r\n</span><span style=\"font-size: 12pt;\">[li_item icon=\"\"]No Laundry Service.[/li_item]\r\n</span><span style=\"font-size: 12pt;\">[li_item icon=\"\"]No Pets.[/li_item]\r\n</span><span style=\"font-size: 12pt;\">[li_item icon=\"\"]No functions, parties or extra guests allowed unless by prior arrangement and will be at the owners discretion due to conservancy rules &amp; noise restrictions.[/li_item]</span>\r\n<span style=\"font-size: 12pt;\">[/checklist]</span>[/fusion_text][/two_third][one_sixth last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][/one_sixth]', 'T&Cs', '', 'inherit', 'closed', 'closed', '', '984-revision-v1', '', '', '2016-10-28 15:16:31', '2016-10-28 13:16:31', '', 984, 'http://msla.co.za/lodge/984-revision-v1/', 0, 'revision', '', 0);
INSERT INTO `wp_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(1335, 1, '2016-10-28 15:26:39', '2016-10-28 13:26:39', '[fullwidth background_color=\"\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding_top=\"20\" padding_bottom=\"20\" padding_left=\"0\" padding_right=\"0\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][title size=\"1\" content_align=\"right\" style_type=\"default\" sep_color=\"\" margin_top=\"\" margin_bottom=\"\" class=\"\" id=\"\"]Terms &amp; Conditions[/title][/fullwidth][one_sixth last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][/one_sixth][two_third last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][fusion_text]\r\n<h3><span style=\"font-size: 12pt;\">General Terms</span></h3>\r\n<span style=\"font-size: 12pt;\">[checklist icon=\"fa-star-o\" iconcolor=\"\" circle=\"\" circlecolor=\"\" size=\"13px\" class=\"\" id=\"\"]\r\n[li_item icon=\"\"]When you book into the lodge it is exclusively yours. i.e. We don\'t book out the other rooms unless we have cleared it with you.[/li_item]\r\n[li_item icon=\"\"]The lodge and bedrooms are not serviced. Cleaning Services are available as optional extras.[/li_item]\r\n[li_item icon=\"\"]We do not have a Laundry Service.[/li_item]\r\n</span><span style=\"font-size: 12pt;\">[li_item icon=\"\"]Please don\'t bring your own Pets[/li_item]\r\n[li_item icon=\"\"]No functions, parties or extra guests allowed unless by prior arrangement and will be at the owners discretion due to conservancy rules &amp; noise restrictions[/li_item]\r\n</span><span style=\"font-size: 12pt;\">[/checklist]</span>[/fusion_text][/two_third][one_sixth last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][/one_sixth][one_sixth last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][/one_sixth][two_third last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][fusion_text]\r\n<h3 style=\"text-align: justify;\">Check-in Times</h3>\r\n<span style=\"font-size: 12pt;\">[checklist icon=\"fa-star-o\" iconcolor=\"\" circle=\"\" circlecolor=\"\" size=\"13px\" class=\"\" id=\"\"]\r\n[li_item icon=\"\"]Check-in Time is from 14h00 to 18h00 (Late arrivals must be arranged before hand).[/li_item]\r\n[li_item icon=\"\"]Check-out Time is before 10h00.[/li_item]\r\n[/checklist]</span>[/fusion_text][/two_third][one_sixth last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][/one_sixth][one_sixth last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][/one_sixth][two_third last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][fusion_text]\r\n<h3 style=\"text-align: justify;\">Payment Terms</h3>\r\n<p style=\"text-align: justify;\"><span style=\"font-size: 12pt;\">[checklist icon=\"fa-star-o\" iconcolor=\"\" circle=\"\" circlecolor=\"\" size=\"13px\" class=\"\" id=\"\"]\r\n[li_item icon=\"\"]Rates are inclusive of <strong>14%</strong> VAT.[/li_item]\r\n[li_item icon=\"\"]Payment must be made via <strong>Bank Transfer</strong>, alternatively, <strong>Cash</strong> may be accepted by prior arrangement.[/li_item]\r\n[li_item icon=\"\"]We no longer accept Cheques.[/li_item]\r\n[li_item icon=\"\"]All accommodation must be settled either before or on arrival.[/li_item]\r\n[li_item icon=\"\"]No bookings are guaranteed until your reservation is confirmed, having paid at least a <strong>50% deposit</strong>.[/li_item]\r\n[/checklist]</span></p>\r\n[/fusion_text][/two_third][one_sixth last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][/one_sixth][one_sixth last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][/one_sixth][two_third last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][fusion_text]\r\n<h3 style=\"text-align: justify;\">Refunds &amp; Cancelation Terms</h3>\r\n<p style=\"text-align: justify;\"><span style=\"font-size: 12pt;\">[checklist icon=\"fa-star-o\" iconcolor=\"\" circle=\"\" circlecolor=\"\" size=\"13px\" class=\"\" id=\"\"]\r\n[li_item icon=\"\"]Guests are liable for the tariff of the full period booked.[/li_item]\r\n[li_item icon=\"\"]No refunds will be given for early departures / late arrivals, or due to weather conditions / power outages<span style=\"text-align: justify;\">.</span>[/li_item]\r\n[li_item icon=\"\"]<span style=\"text-align: justify;\">Cancellation of any booking must be done via email.</span>[/li_item]\r\n[li_item icon=\"\"]<span style=\"text-align: justify;\">If you cancel your reservation 15 days and more, </span><span style=\"text-align: justify;\">before your arrival date, your deposit will be </span><span style=\"text-align: justify;\">r</span><span style=\"text-align: justify;\">efund</span><span style=\"text-align: justify;\">ed</span><span style=\"text-align: justify;\"> less an administration fee of </span>15%.[/li_item]\r\n[li_item icon=\"\"]<span style=\"text-align: justify;\">If you cancel your reservation 14 days and less, before your arrival date, your deposit will become </span>non-refundable.[/li_item]\r\n[li_item icon=\"\"]<span style=\"text-align: justify;\">Payments are not refundable for reservations not cancelled and not taken up.</span>[/li_item]\r\n[/checklist]</span></p>\r\n[/fusion_text][/two_third][one_sixth last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][/one_sixth][one_sixth last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][/one_sixth][two_third last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][fusion_text]\r\n<h3><span style=\"font-size: 12pt;\">General Terms</span></h3>\r\n<span style=\"font-size: 12pt;\">[checklist icon=\"fa-star-o\" iconcolor=\"\" circle=\"\" circlecolor=\"\" size=\"13px\" class=\"\" id=\"\"]\r\n[li_item icon=\"\"]A reservation may not be transferred.[/li_item]\r\n[li_item icon=\"\"]Bookings are for holiday purposes only and cannot give rise to a tenancy.[/li_item]\r\n[li_item icon=\"\"]Persons occupying the lodge may not exceed the number of persons indicated upon booking.[/li_item]\r\n[li_item icon=\"\"]During nights the all doors must be locked. Please remember to lock the door behind you and to remove the key.[/li_item]\r\n[li_item icon=\"\"]Please leave the Lodge reasonable tidy and clean after use.[/li_item]\r\n[li_item icon=\"\"]Out of respect for all guests, and the fact that we are in a conservancy, noise must be kept down to a comfortable level especially between the hours 22h00 to 08h00.[/li_item]\r\n[li_item icon=\"\"]Please keep furniture, fixtures and fittings in the same state of repair and condition as at the beginning of your stay. In the event of any damage to furniture, fixtures or fittings, you may be held liable for the replacement value or repair costs. This includes damage to the pool area.[/li_item]\r\n[li_item icon=\"\"]The use of open fires and the burning of any unprotected candles or fuel burning lanterns, in or around the Lodge, will not be permitted.[/li_item]\r\n[li_item icon=\"\"]We operate a non-smoking policy throughout the Lodge. You are welcome to smoke outside the house, where ashtrays are provided.[/li_item]\r\n[li_item icon=\"\"]No pets / animals are allowed on the premises.[/li_item]\r\n[li_item icon=\"\"]The use or sale of any illegal substance in the Lodge or on surrounding property is not permissible.[/li_item]\r\n[li_item icon=\"\"]<span style=\"text-align: justify;\">Right of admission is reserved.</span>[/li_item]\r\n[li_item icon=\"\"]We reserve the right to eject a guest/guests from the Lodge if they are not conducting themselves in an appropriate and/or acceptable manner to the building and/or other residents or staff.[/li_item]\r\n[li_item icon=\"\"]Swimming Pool - The premises contains an unsupervised, open pool which may be used at the guests\' own risk.[/li_item]</span>\r\n<span style=\"font-size: 12pt;\"> [/checklist]</span>\r\n\r\n&nbsp;\r\n<h3><span style=\"line-height: 1.5em; font-family: verdana, geneva; font-size: 18px;\">PLEASE NOTE!</span></h3>\r\n<span style=\"font-size: 12pt;\">[checklist icon=\"fa-star-o\" iconcolor=\"\" circle=\"\" circlecolor=\"\" size=\"13px\" class=\"\" id=\"\"]</span>\r\n<span style=\"font-size: 12pt;\">[li_item icon=\"\"]When you book into the lodge it is exclusively yours. i.e. We don\'t book out the other rooms unless we have cleared it with you.[/li_item]\r\n</span><span style=\"font-size: 12pt;\">[li_item icon=\"\"]The lodge and bedrooms are not serviced. Cleaning Services are available as optional extras.[/li_item]\r\n</span><span style=\"font-size: 12pt;\">[li_item icon=\"\"]No Laundry Service.[/li_item]\r\n</span><span style=\"font-size: 12pt;\">[li_item icon=\"\"]No Pets.[/li_item]\r\n</span><span style=\"font-size: 12pt;\">[li_item icon=\"\"]No functions, parties or extra guests allowed unless by prior arrangement and will be at the owners discretion due to conservancy rules &amp; noise restrictions.[/li_item]</span>\r\n<span style=\"font-size: 12pt;\">[/checklist]</span>[/fusion_text][/two_third][one_sixth last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][/one_sixth]', 'T&Cs', '', 'inherit', 'closed', 'closed', '', '984-revision-v1', '', '', '2016-10-28 15:26:39', '2016-10-28 13:26:39', '', 984, 'http://msla.co.za/lodge/984-revision-v1/', 0, 'revision', '', 0),
(1336, 1, '2016-10-28 15:28:38', '2016-10-28 13:28:38', '[fullwidth background_color=\"\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding_top=\"20\" padding_bottom=\"20\" padding_left=\"0\" padding_right=\"0\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][title size=\"1\" content_align=\"right\" style_type=\"default\" sep_color=\"\" margin_top=\"\" margin_bottom=\"\" class=\"\" id=\"\"]Terms &amp; Conditions[/title][/fullwidth][one_sixth last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][/one_sixth][two_third last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][fusion_text]\r\n<h3><span style=\"font-size: 12pt;\">General Terms</span></h3>\r\n<span style=\"font-size: 12pt;\">[checklist icon=\"fa-star-o\" iconcolor=\"\" circle=\"\" circlecolor=\"\" size=\"13px\" class=\"\" id=\"\"]\r\n[li_item icon=\"\"]When you book into the lodge it is exclusively yours. i.e. We don\'t book out the other rooms unless we have cleared it with you.[/li_item]\r\n[li_item icon=\"\"]The lodge and bedrooms are not serviced. Cleaning Services are available as optional extras.[/li_item]\r\n[li_item icon=\"\"]We do not have a Laundry Service.[/li_item]\r\n[li_item icon=\"\"]Please don\'t bring your own Pets[/li_item]\r\n[li_item icon=\"\"]No functions, parties or extra guests allowed unless by prior arrangement and will be at the owners discretion due to conservancy rules &amp; noise restrictions[/li_item]\r\n[/checklist]</span>[/fusion_text][/two_third][one_sixth last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][/one_sixth][one_sixth last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][/one_sixth][two_third last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][fusion_text]\r\n<h3 style=\"text-align: justify;\">Check-in Times</h3>\r\n<span style=\"font-size: 12pt;\">[checklist icon=\"fa-star-o\" iconcolor=\"\" circle=\"\" circlecolor=\"\" size=\"13px\" class=\"\" id=\"\"]\r\n[li_item icon=\"\"]Check-in Time is from 14h00 to 18h00 (Late arrivals must be arranged before hand).[/li_item]\r\n[li_item icon=\"\"]Check-out Time is before 10h00.[/li_item]\r\n[/checklist]</span>[/fusion_text][/two_third][one_sixth last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][/one_sixth][one_sixth last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][/one_sixth][two_third last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][fusion_text]\r\n<h3 style=\"text-align: justify;\">Payment Terms</h3>\r\n<p style=\"text-align: justify;\"><span style=\"font-size: 12pt;\">[checklist icon=\"fa-star-o\" iconcolor=\"\" circle=\"\" circlecolor=\"\" size=\"13px\" class=\"\" id=\"\"]\r\n[li_item icon=\"\"]Rates are inclusive of <strong>14%</strong> VAT.[/li_item]\r\n[li_item icon=\"\"]Payment must be made via <strong>Bank Transfer</strong>, alternatively, <strong>Cash</strong> may be accepted by prior arrangement.[/li_item]\r\n[li_item icon=\"\"]We no longer accept Cheques.[/li_item]\r\n[li_item icon=\"\"]All accommodation must be settled either before or on arrival.[/li_item]\r\n[li_item icon=\"\"]No bookings are guaranteed until your reservation is confirmed, having paid at least a <strong>50% deposit</strong>.[/li_item]\r\n[/checklist]</span></p>\r\n[/fusion_text][/two_third][one_sixth last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][/one_sixth][one_sixth last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][/one_sixth][two_third last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][fusion_text]\r\n<h3 style=\"text-align: justify;\">Refunds &amp; Cancelation Terms</h3>\r\n<p style=\"text-align: justify;\"><span style=\"font-size: 12pt;\">[checklist icon=\"fa-star-o\" iconcolor=\"\" circle=\"\" circlecolor=\"\" size=\"13px\" class=\"\" id=\"\"]\r\n[li_item icon=\"\"]Guests are liable for the tariff of the full period booked.[/li_item]\r\n[li_item icon=\"\"]No refunds will be given for early departures / late arrivals, or due to weather conditions / power outages<span style=\"text-align: justify;\">.</span>[/li_item]\r\n[li_item icon=\"\"]<span style=\"text-align: justify;\">Cancellation of any booking must be done via email.</span>[/li_item]\r\n[li_item icon=\"\"]<span style=\"text-align: justify;\">If you cancel your reservation 15 days and more, </span><span style=\"text-align: justify;\">before your arrival date, your deposit will be </span><span style=\"text-align: justify;\">r</span><span style=\"text-align: justify;\">efund</span><span style=\"text-align: justify;\">ed</span><span style=\"text-align: justify;\"> less an administration fee of </span>15%.[/li_item]\r\n[li_item icon=\"\"]<span style=\"text-align: justify;\">If you cancel your reservation 14 days and less, before your arrival date, your deposit will become </span>non-refundable.[/li_item]\r\n[li_item icon=\"\"]<span style=\"text-align: justify;\">Payments are not refundable for reservations not cancelled and not taken up.</span>[/li_item]\r\n[/checklist]</span></p>\r\n[/fusion_text][/two_third][one_sixth last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][/one_sixth][one_sixth last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][/one_sixth][two_third last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][fusion_text]\r\n<h3><span style=\"font-size: 12pt;\">General Terms</span></h3>\r\n<span style=\"font-size: 12pt;\">[checklist icon=\"fa-star-o\" iconcolor=\"\" circle=\"\" circlecolor=\"\" size=\"13px\" class=\"\" id=\"\"]\r\n[li_item icon=\"\"]A reservation may not be transferred.[/li_item]\r\n[li_item icon=\"\"]Bookings are for holiday purposes only and cannot give rise to a tenancy.[/li_item]\r\n[li_item icon=\"\"]Persons occupying the lodge may not exceed the number of persons indicated upon booking.[/li_item]\r\n[li_item icon=\"\"]During nights the all doors must be locked. Please remember to lock the door behind you and to remove the key.[/li_item]\r\n[li_item icon=\"\"]Please leave the Lodge reasonable tidy and clean after use.[/li_item]\r\n[li_item icon=\"\"]Out of respect for all guests, and the fact that we are in a conservancy, noise must be kept down to a comfortable level especially between the hours 22h00 to 08h00.[/li_item]\r\n[li_item icon=\"\"]Please keep furniture, fixtures and fittings in the same state of repair and condition as at the beginning of your stay. In the event of any damage to furniture, fixtures or fittings, you may be held liable for the replacement value or repair costs. This includes damage to the pool area.[/li_item]\r\n[li_item icon=\"\"]The use of open fires and the burning of any unprotected candles or fuel burning lanterns, in or around the Lodge, will not be permitted.[/li_item]\r\n[li_item icon=\"\"]We operate a non-smoking policy throughout the Lodge. You are welcome to smoke outside the house, where ashtrays are provided.[/li_item]\r\n[li_item icon=\"\"]No pets / animals are allowed on the premises.[/li_item]\r\n[li_item icon=\"\"]The use or sale of any illegal substance in the Lodge or on surrounding property is not permissible.[/li_item]\r\n[li_item icon=\"\"]<span style=\"text-align: justify;\">Right of admission is reserved.</span>[/li_item]\r\n[li_item icon=\"\"]We reserve the right to eject a guest/guests from the Lodge if they are not conducting themselves in an appropriate and/or acceptable manner to the building and/or other residents or staff.[/li_item]\r\n[li_item icon=\"\"]Swimming Pool - The premises contains an unsupervised, open pool which may be used at the guests\' own risk.[/li_item]</span>\r\n<span style=\"font-size: 12pt;\"> [/checklist]</span>\r\n\r\n&nbsp;\r\n<h3><span style=\"line-height: 1.5em; font-family: verdana, geneva; font-size: 18px;\">PLEASE NOTE!</span></h3>\r\n<span style=\"font-size: 12pt;\">[checklist icon=\"fa-star-o\" iconcolor=\"\" circle=\"\" circlecolor=\"\" size=\"13px\" class=\"\" id=\"\"]</span>\r\n<span style=\"font-size: 12pt;\">[li_item icon=\"\"]When you book into the lodge it is exclusively yours. i.e. We don\'t book out the other rooms unless we have cleared it with you.[/li_item]\r\n</span><span style=\"font-size: 12pt;\">[li_item icon=\"\"]The lodge and bedrooms are not serviced. Cleaning Services are available as optional extras.[/li_item]\r\n</span><span style=\"font-size: 12pt;\">[li_item icon=\"\"]No Laundry Service.[/li_item]\r\n</span><span style=\"font-size: 12pt;\">[li_item icon=\"\"]No Pets.[/li_item]\r\n</span><span style=\"font-size: 12pt;\">[li_item icon=\"\"]No functions, parties or extra guests allowed unless by prior arrangement and will be at the owners discretion due to conservancy rules &amp; noise restrictions.[/li_item]</span>\r\n<span style=\"font-size: 12pt;\">[/checklist]</span>[/fusion_text][/two_third][one_sixth last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][/one_sixth]', 'T&Cs', '', 'inherit', 'closed', 'closed', '', '984-revision-v1', '', '', '2016-10-28 15:28:38', '2016-10-28 13:28:38', '', 984, 'http://msla.co.za/lodge/984-revision-v1/', 0, 'revision', '', 0),
(1339, 1, '2017-07-31 15:22:20', '2017-07-31 13:22:20', '[fullwidth background_color=\"\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding_top=\"20\" padding_bottom=\"20\" padding_left=\"0\" padding_right=\"0\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][title size=\"1\" content_align=\"right\" style_type=\"default\" sep_color=\"\" margin_top=\"\" margin_bottom=\"\" class=\"\" id=\"\"]Terms &amp; Conditions[/title][/fullwidth][one_sixth last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][/one_sixth][two_third last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][fusion_text]\r\n<h3><span style=\"font-size: 12pt;\">General Terms</span></h3>\r\n<span style=\"font-size: 12pt;\">[checklist icon=\"fa-star-o\" iconcolor=\"\" circle=\"\" circlecolor=\"\" size=\"13px\" class=\"\" id=\"\"]\r\n[li_item icon=\"\"]When you book into the lodge it is exclusively yours. i.e. We don\'t book out the other rooms unless we have cleared it with you.[/li_item]\r\n[li_item icon=\"\"]The lodge and bedrooms are not serviced. Cleaning Services are available as optional extras.[/li_item]\r\n[li_item icon=\"\"]We do not have a Laundry Service.[/li_item]\r\n[li_item icon=\"\"]Please don\'t bring your own Pets[/li_item]\r\n[li_item icon=\"\"]The lodge is strictly a private guest accommodation B&amp;B and not an events venue for functions, parties, etc.[/li_item]</span>\r\n\r\n<span style=\"font-size: 12pt;\">[li_item icon=\"\"]Any invited day visitors must be pre-arranged with management (right of admission does apply) and will be required to sign in before entering the property. A <a href=\"http://msla.co.za/lodge/rates/\">cover charge</a> will be levied against your account. Your visitor which ends up overnighting on the property will be invoiced for the full B&amp;B rate ,for your account.[/li_item]\r\n</span><span style=\"font-size: 12pt;\">\r\n[/checklist]</span>[/fusion_text][/two_third][one_sixth last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][/one_sixth][one_sixth last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][/one_sixth][two_third last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][fusion_text]\r\n<h3 style=\"text-align: justify;\">Check-in Times</h3>\r\n<span style=\"font-size: 12pt;\">[checklist icon=\"fa-star-o\" iconcolor=\"\" circle=\"\" circlecolor=\"\" size=\"13px\" class=\"\" id=\"\"]\r\n[li_item icon=\"\"]Check-in Time is from 14h00 to 18h00 (Late arrivals must be arranged before hand).[/li_item]\r\n[li_item icon=\"\"]Check-out Time is before 10h00.[/li_item]\r\n[/checklist]</span>[/fusion_text][/two_third][one_sixth last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][/one_sixth][one_sixth last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][/one_sixth][two_third last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][fusion_text]\r\n<h3 style=\"text-align: justify;\">Payment Terms</h3>\r\n<p style=\"text-align: justify;\"><span style=\"font-size: 12pt;\">[checklist icon=\"fa-star-o\" iconcolor=\"\" circle=\"\" circlecolor=\"\" size=\"13px\" class=\"\" id=\"\"]\r\n[li_item icon=\"\"]Rates are inclusive of <strong>14%</strong> VAT.[/li_item]\r\n[li_item icon=\"\"]Payment must be made via <strong>Bank Transfer</strong>, alternatively, <strong>Cash</strong> may be accepted by prior arrangement.[/li_item]\r\n[li_item icon=\"\"]We no longer accept Cheques.[/li_item]\r\n[li_item icon=\"\"]All accommodation must be settled either before or on arrival.[/li_item]\r\n[li_item icon=\"\"]No bookings are guaranteed until your reservation is confirmed, having paid at least a <strong>50% deposit</strong>.[/li_item]\r\n[/checklist]</span></p>\r\n[/fusion_text][/two_third][one_sixth last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][/one_sixth][one_sixth last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][/one_sixth][two_third last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][fusion_text]\r\n<h3 style=\"text-align: justify;\">Refunds &amp; Cancelation Terms</h3>\r\n<p style=\"text-align: justify;\"><span style=\"font-size: 12pt;\">[checklist icon=\"fa-star-o\" iconcolor=\"\" circle=\"\" circlecolor=\"\" size=\"13px\" class=\"\" id=\"\"]\r\n[li_item icon=\"\"]Guests are liable for the tariff of the full period booked.[/li_item]\r\n[li_item icon=\"\"]No refunds will be given for early departures / late arrivals, or due to weather conditions / power outages<span style=\"text-align: justify;\">.</span>[/li_item]\r\n[li_item icon=\"\"]<span style=\"text-align: justify;\">Cancellation of any booking must be done via email.</span>[/li_item]\r\n[li_item icon=\"\"]<span style=\"text-align: justify;\">If you cancel your reservation 15 days and more, </span><span style=\"text-align: justify;\">before your arrival date, your deposit will be </span><span style=\"text-align: justify;\">r</span><span style=\"text-align: justify;\">efund</span><span style=\"text-align: justify;\">ed</span><span style=\"text-align: justify;\"> less an administration fee of </span>15%.[/li_item]\r\n[li_item icon=\"\"]<span style=\"text-align: justify;\">If you cancel your reservation 14 days and less, before your arrival date, your deposit will become </span>non-refundable.[/li_item]\r\n[li_item icon=\"\"]<span style=\"text-align: justify;\">Payments are not refundable for reservations not cancelled and not taken up.</span>[/li_item]\r\n[/checklist]</span></p>\r\n[/fusion_text][/two_third][one_sixth last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][/one_sixth][one_sixth last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][/one_sixth][two_third last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][fusion_text]\r\n<h3><span style=\"font-size: 12pt;\">General Terms</span></h3>\r\n<span style=\"font-size: 12pt;\">[checklist icon=\"fa-star-o\" iconcolor=\"\" circle=\"\" circlecolor=\"\" size=\"13px\" class=\"\" id=\"\"]\r\n[li_item icon=\"\"]A reservation may not be transferred.[/li_item]\r\n[li_item icon=\"\"]Bookings are for holiday purposes only and cannot give rise to a tenancy.[/li_item]\r\n[li_item icon=\"\"]Persons occupying the lodge may not exceed the number of persons indicated upon booking.[/li_item]\r\n[li_item icon=\"\"]During nights the all doors must be locked. Please remember to lock the door behind you and to remove the key.[/li_item]\r\n[li_item icon=\"\"]Please leave the Lodge reasonable tidy and clean after use.[/li_item]\r\n[li_item icon=\"\"]Out of respect for all guests, and the fact that we are in a conservancy, noise must be kept down to a comfortable level especially between the hours 22h00 to 08h00.[/li_item]\r\n[li_item icon=\"\"]Please keep furniture, fixtures and fittings in the same state of repair and condition as at the beginning of your stay. In the event of any damage to furniture, fixtures or fittings, you may be held liable for the replacement value or repair costs. This includes damage to the pool area.[/li_item]\r\n[li_item icon=\"\"]The use of open fires and the burning of any unprotected candles or fuel burning lanterns, in or around the Lodge, will not be permitted.[/li_item]\r\n[li_item icon=\"\"]We operate a non-smoking policy throughout the Lodge. You are welcome to smoke outside the house, where ashtrays are provided.[/li_item]\r\n[li_item icon=\"\"]No pets / animals are allowed on the premises.[/li_item]\r\n[li_item icon=\"\"]The use or sale of any illegal substance in the Lodge or on surrounding property is not permissible.[/li_item]\r\n[li_item icon=\"\"]<span style=\"text-align: justify;\">Right of admission is reserved.</span>[/li_item]\r\n[li_item icon=\"\"]We reserve the right to eject a guest/guests from the Lodge if they are not conducting themselves in an appropriate and/or acceptable manner to the building and/or other residents or staff.[/li_item]\r\n[li_item icon=\"\"]Swimming Pool - The premises contains an unsupervised, open pool which may be used at the guests\' own risk.[/li_item]</span>\r\n<span style=\"font-size: 12pt;\"> [/checklist]</span>[/fusion_text][/two_third][one_sixth last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][/one_sixth]', 'T&Cs', '', 'inherit', 'closed', 'closed', '', '984-revision-v1', '', '', '2017-07-31 15:22:20', '2017-07-31 13:22:20', '', 984, 'http://msla.co.za/lodge/984-revision-v1/', 0, 'revision', '', 0);
INSERT INTO `wp_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(1340, 1, '2017-07-31 15:31:16', '2017-07-31 13:31:16', '[fullwidth background_color=\"\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding_top=\"20\" padding_bottom=\"20\" padding_left=\"0\" padding_right=\"0\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][title size=\"1\" content_align=\"right\" style_type=\"default\" sep_color=\"\" margin_top=\"\" margin_bottom=\"\" class=\"\" id=\"\"]Terms &amp; Conditions[/title][/fullwidth][one_sixth last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][/one_sixth][two_third last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][fusion_text]\r\n<h3><span style=\"font-size: 12pt;\">Conditions you need to know before booking.</span></h3>\r\n<span style=\"font-size: 12pt;\">[checklist icon=\"fa-star-o\" iconcolor=\"\" circle=\"\" circlecolor=\"\" size=\"13px\" class=\"\" id=\"\"]\r\n[li_item icon=\"\"]When you book into the lodge it is exclusively yours. i.e. We don\'t book out the other rooms unless we have cleared it with you.[/li_item]\r\n[li_item icon=\"\"]The lodge and bedrooms are not serviced. Cleaning Services are available as optional extras.[/li_item]\r\n[li_item icon=\"\"]We do not have a Laundry Service.[/li_item]\r\n[li_item icon=\"\"]Please don\'t bring your own Pets[/li_item]\r\n[li_item icon=\"\"]The lodge is strictly a private guest accommodation B&amp;B and not an events venue for functions, parties, etc.[/li_item]\r\n</span><span style=\"font-size: 12pt;\">[li_item icon=\"\"]Any day visitor/s you invite must first be pre-arranged with management (right of admission does apply) and will be required to sign in before entering upon the property. A <a href=\"http://msla.co.za/lodge/rates/\">cover charge</a> will be levied against your account. Should for whatever reason your visitor ending up overnighting on the property, you will be invoiced for the full B&amp;B rate, as well.[/li_item] </span><span style=\"font-size: 12pt;\">\r\n[/checklist]</span>[/fusion_text][/two_third][one_sixth last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][/one_sixth][one_sixth last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][/one_sixth][two_third last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][fusion_text]\r\n<h3 style=\"text-align: justify;\">Check-in Times</h3>\r\n<span style=\"font-size: 12pt;\">[checklist icon=\"fa-star-o\" iconcolor=\"\" circle=\"\" circlecolor=\"\" size=\"13px\" class=\"\" id=\"\"]\r\n[li_item icon=\"\"]Check-in Time is from 14h00 to 18h00 (Late arrivals must be arranged before hand).[/li_item]\r\n[li_item icon=\"\"]Check-out Time is before 10h00.[/li_item]\r\n[/checklist]</span>[/fusion_text][/two_third][one_sixth last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][/one_sixth][one_sixth last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][/one_sixth][two_third last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][fusion_text]\r\n<h3 style=\"text-align: justify;\">Payment Terms</h3>\r\n<p style=\"text-align: justify;\"><span style=\"font-size: 12pt;\">[checklist icon=\"fa-star-o\" iconcolor=\"\" circle=\"\" circlecolor=\"\" size=\"13px\" class=\"\" id=\"\"]\r\n[li_item icon=\"\"]Rates are inclusive of <strong>14%</strong> VAT.[/li_item]\r\n[li_item icon=\"\"]Payment must be made via <strong>Bank Transfer</strong>, alternatively, <strong>Cash</strong> may be accepted by prior arrangement.[/li_item]\r\n[li_item icon=\"\"]We no longer accept Cheques.[/li_item]\r\n[li_item icon=\"\"]All accommodation must be settled either before or on arrival.[/li_item]\r\n[li_item icon=\"\"]No bookings are guaranteed until your reservation is confirmed, having paid at least a <strong>50% deposit</strong>.[/li_item]\r\n[/checklist]</span></p>\r\n[/fusion_text][/two_third][one_sixth last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][/one_sixth][one_sixth last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][/one_sixth][two_third last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][fusion_text]\r\n<h3 style=\"text-align: justify;\">Refunds &amp; Cancelation Terms</h3>\r\n<p style=\"text-align: justify;\"><span style=\"font-size: 12pt;\">[checklist icon=\"fa-star-o\" iconcolor=\"\" circle=\"\" circlecolor=\"\" size=\"13px\" class=\"\" id=\"\"]\r\n[li_item icon=\"\"]Guests are liable for the tariff of the full period booked.[/li_item]\r\n[li_item icon=\"\"]No refunds will be given for early departures / late arrivals, or due to weather conditions / power outages<span style=\"text-align: justify;\">.</span>[/li_item]\r\n[li_item icon=\"\"]<span style=\"text-align: justify;\">Cancellation of any booking must be done via email.</span>[/li_item]\r\n[li_item icon=\"\"]<span style=\"text-align: justify;\">If you cancel your reservation 15 days and more, </span><span style=\"text-align: justify;\">before your arrival date, your deposit will be </span><span style=\"text-align: justify;\">r</span><span style=\"text-align: justify;\">efund</span><span style=\"text-align: justify;\">ed</span><span style=\"text-align: justify;\"> less an administration fee of </span>15%.[/li_item]\r\n[li_item icon=\"\"]<span style=\"text-align: justify;\">If you cancel your reservation 14 days and less, before your arrival date, your deposit will become </span>non-refundable.[/li_item]\r\n[li_item icon=\"\"]<span style=\"text-align: justify;\">Payments are not refundable for reservations not cancelled and not taken up.</span>[/li_item]\r\n[/checklist]</span></p>\r\n[/fusion_text][/two_third][one_sixth last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][/one_sixth][one_sixth last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][/one_sixth][two_third last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][fusion_text]\r\n<h3><span style=\"font-size: 12pt;\">General Terms</span></h3>\r\n<span style=\"font-size: 12pt;\">[checklist icon=\"fa-star-o\" iconcolor=\"\" circle=\"\" circlecolor=\"\" size=\"13px\" class=\"\" id=\"\"]\r\n[li_item icon=\"\"]A reservation may not be transferred.[/li_item]\r\n[li_item icon=\"\"]Bookings are for holiday purposes only and cannot give rise to a tenancy.[/li_item]\r\n[li_item icon=\"\"]Persons occupying the lodge may not exceed the number of persons indicated upon booking.[/li_item]\r\n[li_item icon=\"\"]During nights the all doors must be locked. Please remember to lock the door behind you and to remove the key.[/li_item]\r\n[li_item icon=\"\"]Please leave the Lodge reasonable tidy and clean after use.[/li_item]\r\n[li_item icon=\"\"]Out of respect for all guests, and the fact that we are in a conservancy, noise must be kept down to a comfortable level especially between the hours 22h00 to 08h00.[/li_item]\r\n[li_item icon=\"\"]Please keep furniture, fixtures and fittings in the same state of repair and condition as at the beginning of your stay. In the event of any damage to furniture, fixtures or fittings, you may be held liable for the replacement value or repair costs. This includes damage to the pool area.[/li_item]\r\n[li_item icon=\"\"]The use of open fires and the burning of any unprotected candles or fuel burning lanterns, in or around the Lodge, will not be permitted.[/li_item]\r\n[li_item icon=\"\"]We operate a non-smoking policy throughout the Lodge. You are welcome to smoke outside the house, where ashtrays are provided.[/li_item]\r\n[li_item icon=\"\"]No pets / animals are allowed on the premises.[/li_item]\r\n[li_item icon=\"\"]The use or sale of any illegal substance in the Lodge or on surrounding property is not permissible.[/li_item]\r\n[li_item icon=\"\"]<span style=\"text-align: justify;\">Right of admission is reserved.</span>[/li_item]\r\n[li_item icon=\"\"]We reserve the right to eject a guest/guests from the Lodge if they are not conducting themselves in an appropriate and/or acceptable manner to the building and/or other residents or staff.[/li_item]\r\n[li_item icon=\"\"]Swimming Pool - The premises contains an unsupervised, open pool which may be used at the guests\' own risk.[/li_item]</span>\r\n<span style=\"font-size: 12pt;\"> [/checklist]</span>[/fusion_text][/two_third][one_sixth last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][/one_sixth]', 'T&Cs', '', 'inherit', 'closed', 'closed', '', '984-revision-v1', '', '', '2017-07-31 15:31:16', '2017-07-31 13:31:16', '', 984, 'http://msla.co.za/lodge/984-revision-v1/', 0, 'revision', '', 0),
(1341, 1, '2017-07-31 15:51:08', '2017-07-31 13:51:08', '[fullwidth background_color=\"\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding_top=\"20\" padding_bottom=\"20\" padding_left=\"0\" padding_right=\"0\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][title size=\"1\" content_align=\"right\" style_type=\"default\" sep_color=\"\" margin_top=\"\" margin_bottom=\"\" class=\"\" id=\"\"]Terms &amp; Conditions[/title][/fullwidth][one_sixth last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][/one_sixth][two_third last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][fusion_text]\r\n<h3><span style=\"font-size: 12pt;\">Conditions you need to know before booking.</span></h3>\r\n<span style=\"font-size: 12pt;\">[checklist icon=\"fa-star-o\" iconcolor=\"\" circle=\"\" circlecolor=\"\" size=\"13px\" class=\"\" id=\"\"]\r\n[li_item icon=\"\"]When you book into the lodge it is exclusively yours. i.e. We don\'t book out the other rooms unless we have cleared it with you.[/li_item]\r\n[li_item icon=\"\"]The lodge and bedrooms are not serviced. Cleaning Services are available as optional extras.[/li_item]\r\n[li_item icon=\"\"]We do not have a Laundry Service.[/li_item]\r\n[li_item icon=\"\"]Please don\'t bring your own Pets[/li_item]\r\n[li_item icon=\"\"]The lodge is strictly a private guest accommodation B&amp;B and not an events venue for functions, parties, etc.[/li_item]\r\n</span>[li_item icon=\"\"]Any day visitor/s you invite must first be pre-arranged with management (right of admission does apply) and will be required to sign in before entering upon the property. A <a href=\"http://msla.co.za/lodge/rates/\">cover charge</a> will be levied against your account. Should for whatever reason your visitor ending up overnighting on the property, you will be invoiced for the full B&amp;B rate, as well.[/li_item][/checklist][/fusion_text][/two_third][one_sixth last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][/one_sixth][one_sixth last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][/one_sixth][two_third last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][fusion_text]\r\n<h3 style=\"text-align: justify;\">Check-in Times</h3>\r\n<span style=\"font-size: 12pt;\">[checklist icon=\"fa-star-o\" iconcolor=\"\" circle=\"\" circlecolor=\"\" size=\"13px\" class=\"\" id=\"\"]\r\n[li_item icon=\"\"]Check-in Time is from 14h00 to 18h00 (Late arrivals must be arranged before hand).[/li_item]\r\n[li_item icon=\"\"]Check-out Time is before 10h00.[/li_item]\r\n[/checklist]</span>[/fusion_text][/two_third][one_sixth last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][/one_sixth][one_sixth last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][/one_sixth][two_third last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][fusion_text]\r\n<h3 style=\"text-align: justify;\">Payment Terms</h3>\r\n<p style=\"text-align: justify;\"><span style=\"font-size: 12pt;\">[checklist icon=\"fa-star-o\" iconcolor=\"\" circle=\"\" circlecolor=\"\" size=\"13px\" class=\"\" id=\"\"]\r\n[li_item icon=\"\"]Rates are inclusive of <strong>14%</strong> VAT.[/li_item]\r\n[li_item icon=\"\"]Payment must be made via <strong>Bank Transfer</strong>, alternatively, <strong>Cash</strong> may be accepted by prior arrangement.[/li_item]\r\n[li_item icon=\"\"]We no longer accept Cheques.[/li_item]\r\n[li_item icon=\"\"]All accommodation must be settled either before or on arrival.[/li_item]\r\n[li_item icon=\"\"]No bookings are guaranteed until your reservation is confirmed, having paid at least a <strong>50% deposit</strong>.[/li_item]\r\n[/checklist]</span></p>\r\n[/fusion_text][/two_third][one_sixth last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][/one_sixth][one_sixth last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][/one_sixth][two_third last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][fusion_text]\r\n<h3 style=\"text-align: justify;\">Refunds &amp; Cancelation Terms</h3>\r\n<p style=\"text-align: justify;\"><span style=\"font-size: 12pt;\">[checklist icon=\"fa-star-o\" iconcolor=\"\" circle=\"\" circlecolor=\"\" size=\"13px\" class=\"\" id=\"\"]\r\n[li_item icon=\"\"]Guests are liable for the tariff of the full period booked.[/li_item]\r\n[li_item icon=\"\"]No refunds will be given for early departures / late arrivals, or due to weather conditions / power outages<span style=\"text-align: justify;\">.</span>[/li_item]\r\n[li_item icon=\"\"]<span style=\"text-align: justify;\">Cancellation of any booking must be done via email.</span>[/li_item]\r\n[li_item icon=\"\"]<span style=\"text-align: justify;\">If you cancel your reservation 15 days and more, </span><span style=\"text-align: justify;\">before your arrival date, your deposit will be </span><span style=\"text-align: justify;\">r</span><span style=\"text-align: justify;\">efund</span><span style=\"text-align: justify;\">ed</span><span style=\"text-align: justify;\"> less an administration fee of </span>15%.[/li_item]\r\n[li_item icon=\"\"]<span style=\"text-align: justify;\">If you cancel your reservation 14 days and less, before your arrival date, your deposit will become </span>non-refundable.[/li_item]\r\n[li_item icon=\"\"]<span style=\"text-align: justify;\">Payments are not refundable for reservations not cancelled and not taken up.</span>[/li_item]\r\n[/checklist]</span></p>\r\n[/fusion_text][/two_third][one_sixth last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][/one_sixth][one_sixth last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][/one_sixth][two_third last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][fusion_text]\r\n<h3><span style=\"font-size: 12pt;\">General Terms</span></h3>\r\n<span style=\"font-size: 12pt;\">[checklist icon=\"fa-star-o\" iconcolor=\"\" circle=\"\" circlecolor=\"\" size=\"13px\" class=\"\" id=\"\"]\r\n[li_item icon=\"\"]A reservation may not be transferred.[/li_item]\r\n[li_item icon=\"\"]Bookings are for holiday purposes only and cannot give rise to a tenancy.[/li_item]\r\n[li_item icon=\"\"]Persons occupying the lodge may not exceed the number of persons indicated upon booking.[/li_item]\r\n[li_item icon=\"\"]During nights the all doors must be locked. Please remember to lock the door behind you and to remove the key.[/li_item]\r\n[li_item icon=\"\"]Please leave the Lodge reasonable tidy and clean after use.[/li_item]\r\n[li_item icon=\"\"]Out of respect for all guests, and the fact that we are in a conservancy, noise must be kept down to a comfortable level especially between the hours 22h00 to 08h00.[/li_item]\r\n[li_item icon=\"\"]Please keep furniture, fixtures and fittings in the same state of repair and condition as at the beginning of your stay. In the event of any damage to furniture, fixtures or fittings, you may be held liable for the replacement value or repair costs. This includes damage to the pool area.[/li_item]\r\n[li_item icon=\"\"]The use of open fires and the burning of any unprotected candles or fuel burning lanterns, in or around the Lodge, will not be permitted.[/li_item]\r\n[li_item icon=\"\"]We operate a non-smoking policy throughout the Lodge. You are welcome to smoke outside the house, where ashtrays are provided.[/li_item]\r\n[li_item icon=\"\"]No pets / animals are allowed on the premises.[/li_item]\r\n[li_item icon=\"\"]The use or sale of any illegal substance in the Lodge or on surrounding property is not permissible.[/li_item]\r\n[li_item icon=\"\"]<span style=\"text-align: justify;\">Right of admission is reserved.</span>[/li_item]\r\n[li_item icon=\"\"]We reserve the right to eject a guest/guests from the Lodge if they are not conducting themselves in an appropriate and/or acceptable manner to the building and/or other residents or staff.[/li_item]\r\n[li_item icon=\"\"]Swimming Pool - The premises contains an unsupervised, open pool which may be used at the guests\' own risk.[/li_item]</span>\r\n<span style=\"font-size: 12pt;\"> [/checklist]</span>[/fusion_text][/two_third][one_sixth last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][/one_sixth]', 'T&Cs', '', 'inherit', 'closed', 'closed', '', '984-revision-v1', '', '', '2017-07-31 15:51:08', '2017-07-31 13:51:08', '', 984, 'http://msla.co.za/lodge/984-revision-v1/', 0, 'revision', '', 0),
(1342, 1, '2017-07-31 15:57:24', '2017-07-31 13:57:24', '[fullwidth background_color=\"\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding_top=\"20\" padding_bottom=\"20\" padding_left=\"0\" padding_right=\"0\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][title size=\"1\" content_align=\"right\" style_type=\"default\" sep_color=\"\" margin_top=\"\" margin_bottom=\"\" class=\"\" id=\"\"]Terms &amp; Conditions[/title][/fullwidth][one_sixth last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][/one_sixth][two_third last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][fusion_text]\r\n<h3><span style=\"font-size: 12pt;\">Conditions you need to know before booking.</span></h3>\r\n<span style=\"font-size: 12pt;\">[checklist icon=\"fa-star-o\" iconcolor=\"\" circle=\"\" circlecolor=\"\" size=\"13px\" class=\"\" id=\"\"]\r\n[li_item icon=\"\"]When you book into the lodge it is exclusively yours. i.e. We don\'t book out the other rooms unless we have cleared it with you.[/li_item]\r\n[li_item icon=\"\"]The lodge and bedrooms are not serviced. Cleaning Services are available as optional extras.[/li_item]\r\n[li_item icon=\"\"]We do not have a Laundry Service.[/li_item]\r\n[li_item icon=\"\"]Please don\'t bring your own Pets[/li_item]\r\n[li_item icon=\"\"]The lodge is strictly a private guest accommodation B&amp;B and not an events venue for functions, parties, etc.[/li_item]</span>[/checklist][/fusion_text][/two_third][one_sixth last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][/one_sixth][one_sixth last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][/one_sixth][two_third last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][fusion_text]\r\n<h3><span style=\"font-size: 12pt;\">Day Visitors</span></h3>\r\n<span style=\"font-size: 12pt;\">[/checklist][li_item icon=\"\"]The lodge is strictly a private guest accommodation B&amp;B and not an events venue for functions, parties, etc.[/li_item]\r\n</span>[li_item icon=\"\"]Any day visitor/s you invite must first be pre-arranged with management (right of admission does apply) and will be required to sign in before entering upon the property. A <a href=\"http://msla.co.za/lodge/rates/\">cover charge</a> will be levied against your account. Should for whatever reason your visitor ending up overnighting on the property, you will be invoiced for the full B&amp;B rate, as well.[/li_item][/checklist][/fusion_text][/two_third][one_sixth last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][/one_sixth][one_sixth last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][/one_sixth][two_third last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][fusion_text]\r\n<h3 style=\"text-align: justify;\">Check-in Times</h3>\r\n<span style=\"font-size: 12pt;\">[checklist icon=\"fa-star-o\" iconcolor=\"\" circle=\"\" circlecolor=\"\" size=\"13px\" class=\"\" id=\"\"]\r\n[li_item icon=\"\"]Check-in Time is from 14h00 to 18h00 (Late arrivals must be arranged before hand).[/li_item]\r\n[li_item icon=\"\"]Check-out Time is before 10h00.[/li_item]\r\n[/checklist]</span>[/fusion_text][/two_third][one_sixth last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][/one_sixth][one_sixth last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][/one_sixth][two_third last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][fusion_text]\r\n<h3 style=\"text-align: justify;\">Payment Terms</h3>\r\n<p style=\"text-align: justify;\"><span style=\"font-size: 12pt;\">[checklist icon=\"fa-star-o\" iconcolor=\"\" circle=\"\" circlecolor=\"\" size=\"13px\" class=\"\" id=\"\"]\r\n[li_item icon=\"\"]Rates are inclusive of <strong>14%</strong> VAT.[/li_item]\r\n[li_item icon=\"\"]Payment must be made via <strong>Bank Transfer</strong>, alternatively, <strong>Cash</strong> may be accepted by prior arrangement.[/li_item]\r\n[li_item icon=\"\"]We no longer accept Cheques.[/li_item]\r\n[li_item icon=\"\"]All accommodation must be settled either before or on arrival.[/li_item]\r\n[li_item icon=\"\"]No bookings are guaranteed until your reservation is confirmed, having paid at least a <strong>50% deposit</strong>.[/li_item]\r\n[/checklist]</span></p>\r\n[/fusion_text][/two_third][one_sixth last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][/one_sixth][one_sixth last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][/one_sixth][two_third last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][fusion_text]\r\n<h3 style=\"text-align: justify;\">Refunds &amp; Cancelation Terms</h3>\r\n<p style=\"text-align: justify;\"><span style=\"font-size: 12pt;\">[checklist icon=\"fa-star-o\" iconcolor=\"\" circle=\"\" circlecolor=\"\" size=\"13px\" class=\"\" id=\"\"]\r\n[li_item icon=\"\"]Guests are liable for the tariff of the full period booked.[/li_item]\r\n[li_item icon=\"\"]No refunds will be given for early departures / late arrivals, or due to weather conditions / power outages<span style=\"text-align: justify;\">.</span>[/li_item]\r\n[li_item icon=\"\"]<span style=\"text-align: justify;\">Cancellation of any booking must be done via email.</span>[/li_item]\r\n[li_item icon=\"\"]<span style=\"text-align: justify;\">If you cancel your reservation 15 days and more, </span><span style=\"text-align: justify;\">before your arrival date, your deposit will be </span><span style=\"text-align: justify;\">r</span><span style=\"text-align: justify;\">efund</span><span style=\"text-align: justify;\">ed</span><span style=\"text-align: justify;\"> less an administration fee of </span>15%.[/li_item]\r\n[li_item icon=\"\"]<span style=\"text-align: justify;\">If you cancel your reservation 14 days and less, before your arrival date, your deposit will become </span>non-refundable.[/li_item]\r\n[li_item icon=\"\"]<span style=\"text-align: justify;\">Payments are not refundable for reservations not cancelled and not taken up.</span>[/li_item]\r\n[/checklist]</span></p>\r\n[/fusion_text][/two_third][one_sixth last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][/one_sixth][one_sixth last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][/one_sixth][two_third last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][fusion_text]\r\n<h3><span style=\"font-size: 12pt;\">General Terms</span></h3>\r\n<span style=\"font-size: 12pt;\">[checklist icon=\"fa-star-o\" iconcolor=\"\" circle=\"\" circlecolor=\"\" size=\"13px\" class=\"\" id=\"\"]\r\n[li_item icon=\"\"]A reservation may not be transferred.[/li_item]\r\n[li_item icon=\"\"]Bookings are for holiday purposes only and cannot give rise to a tenancy.[/li_item]\r\n[li_item icon=\"\"]Persons occupying the lodge may not exceed the number of persons indicated upon booking.[/li_item]\r\n[li_item icon=\"\"]During nights the all doors must be locked. Please remember to lock the door behind you and to remove the key.[/li_item]\r\n[li_item icon=\"\"]Please leave the Lodge reasonable tidy and clean after use.[/li_item]\r\n[li_item icon=\"\"]Out of respect for all guests, and the fact that we are in a conservancy, noise must be kept down to a comfortable level especially between the hours 22h00 to 08h00.[/li_item]\r\n[li_item icon=\"\"]Please keep furniture, fixtures and fittings in the same state of repair and condition as at the beginning of your stay. In the event of any damage to furniture, fixtures or fittings, you may be held liable for the replacement value or repair costs. This includes damage to the pool area.[/li_item]\r\n[li_item icon=\"\"]The use of open fires and the burning of any unprotected candles or fuel burning lanterns, in or around the Lodge, will not be permitted.[/li_item]\r\n[li_item icon=\"\"]We operate a non-smoking policy throughout the Lodge. You are welcome to smoke outside the house, where ashtrays are provided.[/li_item]\r\n[li_item icon=\"\"]No pets / animals are allowed on the premises.[/li_item]\r\n[li_item icon=\"\"]The use or sale of any illegal substance in the Lodge or on surrounding property is not permissible.[/li_item]\r\n[li_item icon=\"\"]<span style=\"text-align: justify;\">Right of admission is reserved.</span>[/li_item]\r\n[li_item icon=\"\"]We reserve the right to eject a guest/guests from the Lodge if they are not conducting themselves in an appropriate and/or acceptable manner to the building and/or other residents or staff.[/li_item]\r\n[li_item icon=\"\"]Swimming Pool - The premises contains an unsupervised, open pool which may be used at the guests\' own risk.[/li_item]</span>\r\n<span style=\"font-size: 12pt;\"> [/checklist]</span>[/fusion_text][/two_third][one_sixth last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][/one_sixth]', 'T&Cs', '', 'inherit', 'closed', 'closed', '', '984-revision-v1', '', '', '2017-07-31 15:57:24', '2017-07-31 13:57:24', '', 984, 'http://msla.co.za/lodge/984-revision-v1/', 0, 'revision', '', 0);
INSERT INTO `wp_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(1343, 1, '2017-07-31 16:00:46', '2017-07-31 14:00:46', '[fullwidth background_color=\"\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding_top=\"20\" padding_bottom=\"20\" padding_left=\"0\" padding_right=\"0\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][title size=\"1\" content_align=\"right\" style_type=\"default\" sep_color=\"\" margin_top=\"\" margin_bottom=\"\" class=\"\" id=\"\"]Terms &amp; Conditions[/title][/fullwidth][one_sixth last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][/one_sixth][two_third last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][fusion_text]\r\n<h3><span style=\"font-size: 12pt;\">Conditions you need to know before booking.</span></h3>\r\n<span style=\"font-size: 12pt;\">[checklist icon=\"fa-star-o\" iconcolor=\"\" circle=\"\" circlecolor=\"\" size=\"13px\" class=\"\" id=\"\"]\r\n[li_item icon=\"\"]When you book into the lodge it is exclusively yours. i.e. We don\'t book out the other rooms unless we have cleared it with you.[/li_item]\r\n[li_item icon=\"\"]The lodge and bedrooms are not serviced. Cleaning Services are available as optional extras.[/li_item]\r\n[li_item icon=\"\"]We do not have a Laundry Service.[/li_item]\r\n[li_item icon=\"\"]Please don\'t bring your own Pets[/li_item]\r\n[li_item icon=\"\"]The lodge is strictly a private guest accommodation B&amp;B and not an events venue for functions, parties, etc.[/li_item]</span>[/checklist][/fusion_text][/two_third][one_sixth last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][/one_sixth][one_sixth last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][/one_sixth][two_third last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][fusion_text]<h3><span style=\"font-size: 12pt;\">Day Visitors</span></h3>\r\n<span style=\"font-size: 12pt;\">[checklist icon=\"fa-star-o\" iconcolor=\"\" circle=\"\" circlecolor=\"\" size=\"13px\" class=\"\" id=\"\"]\r\n[li_item icon=\"\"]The lodge is strictly a private guest accommodation B&amp;B and not an events venue for functions, parties, etc.[/li_item]\r\n</span>[li_item icon=\"\"]Any day visitor/s you invite must first be pre-arranged with management (right of admission does apply) and will be required to sign in before entering upon the property. A <a href=\"http://msla.co.za/lodge/rates/\">cover charge</a> will be levied against your account. Should for whatever reason your visitor ending up overnighting on the property, you will be invoiced for the full B&amp;B rate, as well.[/li_item][/checklist][/fusion_text][/two_third][one_sixth last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][/one_sixth][one_sixth last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][/one_sixth][two_third last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][fusion_text]\r\n<h3 style=\"text-align: justify;\">Check-in Times</h3>\r\n<span style=\"font-size: 12pt;\">[checklist icon=\"fa-star-o\" iconcolor=\"\" circle=\"\" circlecolor=\"\" size=\"13px\" class=\"\" id=\"\"]\r\n[li_item icon=\"\"]Check-in Time is from 14h00 to 18h00 (Late arrivals must be arranged before hand).[/li_item]\r\n[li_item icon=\"\"]Check-out Time is before 10h00.[/li_item]\r\n[/checklist]</span>[/fusion_text][/two_third][one_sixth last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][/one_sixth][one_sixth last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][/one_sixth][two_third last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][fusion_text]\r\n<h3 style=\"text-align: justify;\">Payment Terms</h3>\r\n<p style=\"text-align: justify;\"><span style=\"font-size: 12pt;\">[checklist icon=\"fa-star-o\" iconcolor=\"\" circle=\"\" circlecolor=\"\" size=\"13px\" class=\"\" id=\"\"]\r\n[li_item icon=\"\"]Rates are inclusive of <strong>14%</strong> VAT.[/li_item]\r\n[li_item icon=\"\"]Payment must be made via <strong>Bank Transfer</strong>, alternatively, <strong>Cash</strong> may be accepted by prior arrangement.[/li_item]\r\n[li_item icon=\"\"]We no longer accept Cheques.[/li_item]\r\n[li_item icon=\"\"]All accommodation must be settled either before or on arrival.[/li_item]\r\n[li_item icon=\"\"]No bookings are guaranteed until your reservation is confirmed, having paid at least a <strong>50% deposit</strong>.[/li_item]\r\n[/checklist]</span></p>\r\n[/fusion_text][/two_third][one_sixth last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][/one_sixth][one_sixth last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][/one_sixth][two_third last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][fusion_text]\r\n<h3 style=\"text-align: justify;\">Refunds &amp; Cancelation Terms</h3>\r\n<p style=\"text-align: justify;\"><span style=\"font-size: 12pt;\">[checklist icon=\"fa-star-o\" iconcolor=\"\" circle=\"\" circlecolor=\"\" size=\"13px\" class=\"\" id=\"\"]\r\n[li_item icon=\"\"]Guests are liable for the tariff of the full period booked.[/li_item]\r\n[li_item icon=\"\"]No refunds will be given for early departures / late arrivals, or due to weather conditions / power outages<span style=\"text-align: justify;\">.</span>[/li_item]\r\n[li_item icon=\"\"]<span style=\"text-align: justify;\">Cancellation of any booking must be done via email.</span>[/li_item]\r\n[li_item icon=\"\"]<span style=\"text-align: justify;\">If you cancel your reservation 15 days and more, </span><span style=\"text-align: justify;\">before your arrival date, your deposit will be </span><span style=\"text-align: justify;\">r</span><span style=\"text-align: justify;\">efund</span><span style=\"text-align: justify;\">ed</span><span style=\"text-align: justify;\"> less an administration fee of </span>15%.[/li_item]\r\n[li_item icon=\"\"]<span style=\"text-align: justify;\">If you cancel your reservation 14 days and less, before your arrival date, your deposit will become </span>non-refundable.[/li_item]\r\n[li_item icon=\"\"]<span style=\"text-align: justify;\">Payments are not refundable for reservations not cancelled and not taken up.</span>[/li_item]\r\n[/checklist]</span></p>\r\n[/fusion_text][/two_third][one_sixth last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][/one_sixth][one_sixth last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][/one_sixth][two_third last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][fusion_text]\r\n<h3><span style=\"font-size: 12pt;\">General Terms</span></h3>\r\n<span style=\"font-size: 12pt;\">[checklist icon=\"fa-star-o\" iconcolor=\"\" circle=\"\" circlecolor=\"\" size=\"13px\" class=\"\" id=\"\"]\r\n[li_item icon=\"\"]A reservation may not be transferred.[/li_item]\r\n[li_item icon=\"\"]Bookings are for holiday purposes only and cannot give rise to a tenancy.[/li_item]\r\n[li_item icon=\"\"]Persons occupying the lodge may not exceed the number of persons indicated upon booking.[/li_item]\r\n[li_item icon=\"\"]During nights the all doors must be locked. Please remember to lock the door behind you and to remove the key.[/li_item]\r\n[li_item icon=\"\"]Please leave the Lodge reasonable tidy and clean after use.[/li_item]\r\n[li_item icon=\"\"]Out of respect for all guests, and the fact that we are in a conservancy, noise must be kept down to a comfortable level especially between the hours 22h00 to 08h00.[/li_item]\r\n[li_item icon=\"\"]Please keep furniture, fixtures and fittings in the same state of repair and condition as at the beginning of your stay. In the event of any damage to furniture, fixtures or fittings, you may be held liable for the replacement value or repair costs. This includes damage to the pool area.[/li_item]\r\n[li_item icon=\"\"]The use of open fires and the burning of any unprotected candles or fuel burning lanterns, in or around the Lodge, will not be permitted.[/li_item]\r\n[li_item icon=\"\"]We operate a non-smoking policy throughout the Lodge. You are welcome to smoke outside the house, where ashtrays are provided.[/li_item]\r\n[li_item icon=\"\"]No pets / animals are allowed on the premises.[/li_item]\r\n[li_item icon=\"\"]The use or sale of any illegal substance in the Lodge or on surrounding property is not permissible.[/li_item]\r\n[li_item icon=\"\"]<span style=\"text-align: justify;\">Right of admission is reserved.</span>[/li_item]\r\n[li_item icon=\"\"]We reserve the right to eject a guest/guests from the Lodge if they are not conducting themselves in an appropriate and/or acceptable manner to the building and/or other residents or staff.[/li_item]\r\n[li_item icon=\"\"]Swimming Pool - The premises contains an unsupervised, open pool which may be used at the guests\' own risk.[/li_item]</span>\r\n<span style=\"font-size: 12pt;\"> [/checklist]</span>[/fusion_text][/two_third][one_sixth last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][/one_sixth]', 'T&Cs', '', 'inherit', 'closed', 'closed', '', '984-revision-v1', '', '', '2017-07-31 16:00:46', '2017-07-31 14:00:46', '', 984, 'http://msla.co.za/lodge/984-revision-v1/', 0, 'revision', '', 0),
(1344, 1, '2017-07-31 16:10:17', '2017-07-31 14:10:17', '[fullwidth background_color=\"\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding_top=\"20\" padding_bottom=\"20\" padding_left=\"0\" padding_right=\"0\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][title size=\"1\" content_align=\"right\" style_type=\"default\" sep_color=\"\" margin_top=\"\" margin_bottom=\"\" class=\"\" id=\"\"]Terms &amp; Conditions[/title][/fullwidth][one_sixth last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][/one_sixth][two_third last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][fusion_text]<h3><span style=\"font-size: 12pt;\">Conditions you need to know before booking.</span></h3>\r\n<span style=\"font-size: 12pt;\">[checklist icon=\"fa-star-o\" iconcolor=\"\" circle=\"\" circlecolor=\"\" size=\"13px\" class=\"\" id=\"\"]\r\n[li_item icon=\"\"]When you book into the lodge it is exclusively yours. i.e. We don\'t book out the other rooms unless we have cleared it with you.[/li_item]\r\n[li_item icon=\"\"]The lodge and bedrooms are not serviced. (<a href=\"http://msla.co.za/lodge/rates/\">Cleaning Services</a> are available as optional extras.)[/li_item]\r\n[li_item icon=\"\"]We do not have a Laundry Service.[/li_item]\r\n</span>[li_item icon=\"\"]The lodge is a strictly private guest lodge, for accommodation purposes and not an events venue for functions, parties, etc.[/li_item]\r\n[/checklist][/fusion_text][/two_third][one_sixth last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][/one_sixth][one_sixth last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][/one_sixth][two_third last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][fusion_text]<h3><span style=\"font-size: 12pt;\">Day Visitors</span></h3>\r\n<span style=\"font-size: 12pt;\">[checklist icon=\"fa-star-o\" iconcolor=\"\" circle=\"\" circlecolor=\"\" size=\"13px\" class=\"\" id=\"\"]\r\n[li_item icon=\"\"]The lodge is a strictly private guest lodge, for accommodation purposes and not an events venue for functions, parties, etc.[/li_item]\r\n</span>[li_item icon=\"\"]Any day visitor/s you invite must first be pre-arranged with management (right of admission does apply) and will be required to sign in before entering upon the property. A <a href=\"http://msla.co.za/lodge/rates/\">cover charge</a> will be levied against your account. Should for whatever reason your visitor ending up overnighting on the property, you will be invoiced for the full B&amp;B rate, as well.[/li_item][/checklist][/fusion_text][/two_third][one_sixth last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][/one_sixth][one_sixth last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][/one_sixth][two_third last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][fusion_text]<h3 style=\"text-align: justify;\">Check-in Times</h3>\r\n<span style=\"font-size: 12pt;\">[checklist icon=\"fa-star-o\" iconcolor=\"\" circle=\"\" circlecolor=\"\" size=\"13px\" class=\"\" id=\"\"]\r\n[li_item icon=\"\"]Check-in Time is from 12h00 to 18h00 (Late arrivals must be arranged before hand).[/li_item]\r\n[li_item icon=\"\"]Check-out Time is before 10h00.[/li_item]\r\n[/checklist]</span>[/fusion_text][/two_third][one_sixth last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][/one_sixth][one_sixth last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][/one_sixth][two_third last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][fusion_text]\r\n<h3 style=\"text-align: justify;\">Payment Terms</h3>\r\n<p style=\"text-align: justify;\"><span style=\"font-size: 12pt;\">[checklist icon=\"fa-star-o\" iconcolor=\"\" circle=\"\" circlecolor=\"\" size=\"13px\" class=\"\" id=\"\"]\r\n[li_item icon=\"\"]Rates are inclusive of <strong>14%</strong> VAT.[/li_item]\r\n[li_item icon=\"\"]Payment must be made via <strong>Bank Transfer</strong>, alternatively, <strong>Cash</strong> may be accepted by prior arrangement.[/li_item]\r\n[li_item icon=\"\"]We no longer accept Cheques.[/li_item]\r\n[li_item icon=\"\"]All accommodation must be settled either before or on arrival.[/li_item]\r\n[li_item icon=\"\"]No bookings are guaranteed until your reservation is confirmed, having paid at least a <strong>50% deposit</strong>.[/li_item]\r\n[/checklist]</span></p>\r\n[/fusion_text][/two_third][one_sixth last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][/one_sixth][one_sixth last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][/one_sixth][two_third last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][fusion_text]\r\n<h3 style=\"text-align: justify;\">Refunds &amp; Cancelation Terms</h3>\r\n<p style=\"text-align: justify;\"><span style=\"font-size: 12pt;\">[checklist icon=\"fa-star-o\" iconcolor=\"\" circle=\"\" circlecolor=\"\" size=\"13px\" class=\"\" id=\"\"]\r\n[li_item icon=\"\"]Guests are liable for the tariff of the full period booked.[/li_item]\r\n[li_item icon=\"\"]No refunds will be given for early departures / late arrivals, or due to weather conditions / power outages<span style=\"text-align: justify;\">.</span>[/li_item]\r\n[li_item icon=\"\"]<span style=\"text-align: justify;\">Cancellation of any booking must be done via email.</span>[/li_item]\r\n[li_item icon=\"\"]<span style=\"text-align: justify;\">If you cancel your reservation 15 days and more, </span><span style=\"text-align: justify;\">before your arrival date, your deposit will be </span><span style=\"text-align: justify;\">r</span><span style=\"text-align: justify;\">efund</span><span style=\"text-align: justify;\">ed</span><span style=\"text-align: justify;\"> less an administration fee of </span>15%.[/li_item]\r\n[li_item icon=\"\"]<span style=\"text-align: justify;\">If you cancel your reservation 14 days and less, before your arrival date, your deposit will become </span>non-refundable.[/li_item]\r\n[li_item icon=\"\"]<span style=\"text-align: justify;\">Payments are not refundable for reservations not cancelled and not taken up.</span>[/li_item]\r\n[/checklist]</span></p>\r\n[/fusion_text][/two_third][one_sixth last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][/one_sixth][one_sixth last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][/one_sixth][two_third last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][fusion_text]<h3><span style=\"font-size: 12pt;\">General Terms</span></h3>\r\n<span style=\"font-size: 12pt;\">[checklist icon=\"fa-star-o\" iconcolor=\"\" circle=\"\" circlecolor=\"\" size=\"13px\" class=\"\" id=\"\"]\r\n[li_item icon=\"\"]A reservation may not be transferred.[/li_item]\r\n[li_item icon=\"\"]Bookings are for holiday purposes only and cannot give rise to a tenancy.[/li_item]\r\n[li_item icon=\"\"]Persons occupying the lodge may not exceed the number of persons indicated upon booking.[/li_item]\r\n[li_item icon=\"\"]During nights the all doors must be locked. Please remember to lock the door behind you and to remove the key.[/li_item]\r\n[li_item icon=\"\"]Please leave the Lodge reasonable tidy and clean after use.[/li_item]\r\n[li_item icon=\"\"]Out of respect for all guests, and the fact that we are in a conservancy, noise must be kept down to a comfortable level especially between the hours 22h00 to 08h00.[/li_item]\r\n[li_item icon=\"\"]Please keep furniture, fixtures and fittings in the same state of repair and condition as at the beginning of your stay. In the event of any damage to furniture, fixtures or fittings, you may be held liable for the replacement value or repair costs. This includes damage to the pool area.[/li_item]\r\n[li_item icon=\"\"]The use of open fires and the burning of any unprotected candles or fuel burning lanterns, in or around the Lodge, will not be permitted.[/li_item]\r\n[li_item icon=\"\"]We operate a non-smoking policy throughout the Lodge. You are welcome to smoke outside the house, where ashtrays are provided.[/li_item]\r\n[li_item icon=\"\"]Guests may not bring </span><span style=\"font-size: 12pt;\">pets or other animals onto the premises.[/li_item]\r\n[li_item icon=\"\"]The use or sale of any illegal substance in the Lodge or on surrounding property is not permissible.[/li_item]\r\n[li_item icon=\"\"]<span style=\"text-align: justify;\">Right of admission is reserved.</span>[/li_item]\r\n[li_item icon=\"\"]We reserve the right to eject a guest/guests from the Lodge if they are not conducting themselves in an appropriate and/or acceptable manner to the building and/or other residents or staff.[/li_item]\r\n[li_item icon=\"\"]Swimming Pool - The premises contains an unsupervised, open pool which may be used at the guests\' own risk.[/li_item]</span>\r\n<span style=\"font-size: 12pt;\"> [/checklist]</span>[/fusion_text][/two_third][one_sixth last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][/one_sixth]', 'T&Cs', '', 'inherit', 'closed', 'closed', '', '984-revision-v1', '', '', '2017-07-31 16:10:17', '2017-07-31 14:10:17', '', 984, 'http://msla.co.za/lodge/984-revision-v1/', 0, 'revision', '', 0),
(1345, 1, '2017-07-31 16:11:57', '2017-07-31 14:11:57', '[fullwidth background_color=\"\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding_top=\"20\" padding_bottom=\"20\" padding_left=\"0\" padding_right=\"0\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][title size=\"1\" content_align=\"right\" style_type=\"default\" sep_color=\"\" margin_top=\"\" margin_bottom=\"\" class=\"\" id=\"\"]Terms &amp; Conditions[/title][/fullwidth][one_sixth last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][/one_sixth][two_third last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][fusion_text]\r\n<h3><span style=\"font-size: 12pt;\">Conditions you need to know before booking.</span></h3>\r\n<span style=\"font-size: 12pt;\">[checklist icon=\"fa-star-o\" iconcolor=\"\" circle=\"\" circlecolor=\"\" size=\"13px\" class=\"\" id=\"\"]\r\n[li_item icon=\"\"]When you book into the lodge it is exclusively yours. i.e. We don\'t book out the other rooms unless we have cleared it with you.[/li_item]\r\n[li_item icon=\"\"]The lodge and bedrooms are not serviced. (<a href=\"http://msla.co.za/lodge/rates/\">Cleaning Services</a> are available as optional extras.)[/li_item]\r\n[li_item icon=\"\"]We do not have a Laundry Service.[/li_item]\r\n</span>[li_item icon=\"\"]The lodge is a strictly private guest lodge, for accommodation purposes and not an events venue for functions, parties, etc.[/li_item]\r\n[/checklist][/fusion_text][/two_third][one_sixth last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][/one_sixth][one_sixth last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][/one_sixth][two_third last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][fusion_text]\r\n<h3><span style=\"font-size: 12pt;\">Day Visitors</span></h3>\r\n<span style=\"font-size: 12pt;\">[checklist icon=\"fa-star-o\" iconcolor=\"\" circle=\"\" circlecolor=\"\" size=\"13px\" class=\"\" id=\"\"]\r\n[li_item icon=\"\"]The lodge is a strictly private guest lodge, for accommodation purposes and not an events venue for functions, parties, etc.[/li_item]\r\n</span>[li_item icon=\"\"]Any day visitor/s you invite must first be pre-arranged with management (right of admission does apply) and will be required to sign in before entering upon the property. A <a href=\"http://msla.co.za/lodge/rates/\">Cover Charge</a> will be levied against your account. Should for whatever reason your visitor ending up overnighting on the property, you will be invoiced for the full B&amp;B rate, as well.[/li_item][/checklist][/fusion_text][/two_third][one_sixth last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][/one_sixth][one_sixth last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][/one_sixth][two_third last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][fusion_text]\r\n<h3 style=\"text-align: justify;\">Check-in Times</h3>\r\n<span style=\"font-size: 12pt;\">[checklist icon=\"fa-star-o\" iconcolor=\"\" circle=\"\" circlecolor=\"\" size=\"13px\" class=\"\" id=\"\"]\r\n[li_item icon=\"\"]Check-in Time is from 12h00 to 18h00 (Late arrivals must be arranged before hand).[/li_item]\r\n[li_item icon=\"\"]Check-out Time is before 10h00.[/li_item]\r\n[/checklist]</span>[/fusion_text][/two_third][one_sixth last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][/one_sixth][one_sixth last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][/one_sixth][two_third last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][fusion_text]\r\n<h3 style=\"text-align: justify;\">Payment Terms</h3>\r\n<p style=\"text-align: justify;\"><span style=\"font-size: 12pt;\">[checklist icon=\"fa-star-o\" iconcolor=\"\" circle=\"\" circlecolor=\"\" size=\"13px\" class=\"\" id=\"\"]\r\n[li_item icon=\"\"]Rates are inclusive of <strong>14%</strong> VAT.[/li_item]\r\n[li_item icon=\"\"]Payment must be made via <strong>Bank Transfer</strong>, alternatively, <strong>Cash</strong> may be accepted by prior arrangement.[/li_item]\r\n[li_item icon=\"\"]We no longer accept Cheques.[/li_item]\r\n[li_item icon=\"\"]All accommodation must be settled either before or on arrival.[/li_item]\r\n[li_item icon=\"\"]No bookings are guaranteed until your reservation is confirmed, having paid at least a <strong>50% deposit</strong>.[/li_item]\r\n[/checklist]</span></p>\r\n[/fusion_text][/two_third][one_sixth last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][/one_sixth][one_sixth last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][/one_sixth][two_third last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][fusion_text]\r\n<h3 style=\"text-align: justify;\">Refunds &amp; Cancelation Terms</h3>\r\n<p style=\"text-align: justify;\"><span style=\"font-size: 12pt;\">[checklist icon=\"fa-star-o\" iconcolor=\"\" circle=\"\" circlecolor=\"\" size=\"13px\" class=\"\" id=\"\"]\r\n[li_item icon=\"\"]Guests are liable for the tariff of the full period booked.[/li_item]\r\n[li_item icon=\"\"]No refunds will be given for early departures / late arrivals, or due to weather conditions / power outages<span style=\"text-align: justify;\">.</span>[/li_item]\r\n[li_item icon=\"\"]<span style=\"text-align: justify;\">Cancellation of any booking must be done via email.</span>[/li_item]\r\n[li_item icon=\"\"]<span style=\"text-align: justify;\">If you cancel your reservation 15 days and more, </span><span style=\"text-align: justify;\">before your arrival date, your deposit will be </span><span style=\"text-align: justify;\">r</span><span style=\"text-align: justify;\">efund</span><span style=\"text-align: justify;\">ed</span><span style=\"text-align: justify;\"> less an administration fee of </span>15%.[/li_item]\r\n[li_item icon=\"\"]<span style=\"text-align: justify;\">If you cancel your reservation 14 days and less, before your arrival date, your deposit will become </span>non-refundable.[/li_item]\r\n[li_item icon=\"\"]<span style=\"text-align: justify;\">Payments are not refundable for reservations not cancelled and not taken up.</span>[/li_item]\r\n[/checklist]</span></p>\r\n[/fusion_text][/two_third][one_sixth last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][/one_sixth][one_sixth last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][/one_sixth][two_third last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][fusion_text]\r\n<h3><span style=\"font-size: 12pt;\">General Terms</span></h3>\r\n<span style=\"font-size: 12pt;\">[checklist icon=\"fa-star-o\" iconcolor=\"\" circle=\"\" circlecolor=\"\" size=\"13px\" class=\"\" id=\"\"]\r\n[li_item icon=\"\"]A reservation may not be transferred.[/li_item]\r\n[li_item icon=\"\"]Bookings are for holiday purposes only and cannot give rise to a tenancy.[/li_item]\r\n[li_item icon=\"\"]Persons occupying the lodge may not exceed the number of persons indicated upon booking.[/li_item]\r\n[li_item icon=\"\"]During nights the all doors must be locked. Please remember to lock the door behind you and to remove the key.[/li_item]\r\n[li_item icon=\"\"]Please leave the Lodge reasonable tidy and clean after use.[/li_item]\r\n[li_item icon=\"\"]Out of respect for all guests, and the fact that we are in a conservancy, noise must be kept down to a comfortable level especially between the hours 22h00 to 08h00.[/li_item]\r\n[li_item icon=\"\"]Please keep furniture, fixtures and fittings in the same state of repair and condition as at the beginning of your stay. In the event of any damage to furniture, fixtures or fittings, you may be held liable for the replacement value or repair costs. This includes damage to the pool area.[/li_item]\r\n[li_item icon=\"\"]The use of open fires and the burning of any unprotected candles or fuel burning lanterns, in or around the Lodge, will not be permitted.[/li_item]\r\n[li_item icon=\"\"]We operate a non-smoking policy throughout the Lodge. You are welcome to smoke outside the house, where ashtrays are provided.[/li_item]\r\n[li_item icon=\"\"]Guests may not bring </span><span style=\"font-size: 12pt;\">pets or other animals onto the premises.[/li_item]\r\n[li_item icon=\"\"]The use or sale of any illegal substance in the Lodge or on surrounding property is not permissible.[/li_item]\r\n[li_item icon=\"\"]<span style=\"text-align: justify;\">Right of admission is reserved.</span>[/li_item]\r\n[li_item icon=\"\"]We reserve the right to eject a guest/guests from the Lodge if they are not conducting themselves in an appropriate and/or acceptable manner to the building and/or other residents or staff.[/li_item]\r\n[li_item icon=\"\"]Swimming Pool - The premises contains an unsupervised, open pool which may be used at the guests\' own risk.[/li_item]</span>\r\n<span style=\"font-size: 12pt;\"> [/checklist]</span>[/fusion_text][/two_third][one_sixth last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][/one_sixth]', 'T&Cs', '', 'inherit', 'closed', 'closed', '', '984-revision-v1', '', '', '2017-07-31 16:11:57', '2017-07-31 14:11:57', '', 984, 'http://msla.co.za/lodge/984-revision-v1/', 0, 'revision', '', 0);
INSERT INTO `wp_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(1346, 1, '2017-07-31 19:59:02', '2017-07-31 17:59:02', '[fullwidth background_color=\"\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding_top=\"20\" padding_bottom=\"20\" padding_left=\"0\" padding_right=\"0\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][title size=\"1\" content_align=\"right\" style_type=\"default\" sep_color=\"\" margin_top=\"\" margin_bottom=\"\" class=\"\" id=\"\"]Terms &amp; Conditions[/title][/fullwidth][one_sixth last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][/one_sixth][two_third last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][fusion_text]<h3><span style=\"font-size: 12pt;\">Conditions you need to know before booking.</span></h3>\r\n<span style=\"font-size: 12pt;\">[checklist icon=\"fa-star-o\" iconcolor=\"\" circle=\"\" circlecolor=\"\" size=\"13px\" class=\"\" id=\"\"]\r\n[li_item icon=\"\"]By default, the lodge and bedrooms are not serviced, however <a href=\"http://msla.co.za/lodge/rates/\">Cleaning Services</a> are available as an optional extra.[/li_item]\r\n</span><span style=\"font-size: 12pt;\">[li_item icon=\"\"]When you book into the lodge it is exclusively yours. i.e. We don\'t book out the other rooms unless we have cleared it with you.[/li_item]\r\n</span>[li_item icon=\"\"]The lodge is strictly a private guest lodge, for the purposes of accommodation and relaxation for paying guests, and not an events venue for functions, parties, etc.[/li_item]\r\n[/checklist][/fusion_text][/two_third][one_sixth last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][/one_sixth][one_sixth last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][/one_sixth][two_third last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][fusion_text]<h3><span style=\"font-size: 12pt;\">Day Visitors</span></h3>\r\n<span style=\"font-size: 12pt;\">[checklist icon=\"fa-star-o\" iconcolor=\"\" circle=\"\" circlecolor=\"\" size=\"13px\" class=\"\" id=\"\"]\r\n</span>[li_item icon=\"\"]Any day visitor/s you invite must first be pre-arranged with management (right of admission does apply) and will be required to sign in before entering upon the property. A <a href=\"http://msla.co.za/lodge/rates/\">Cover Charge</a> will be levied against your account. Should for whatever reason your visitor ending up overnighting on the property, you will be invoiced for the full B&amp;B rate, as well.[/li_item][/checklist][/fusion_text][/two_third][one_sixth last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][/one_sixth][one_sixth last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][/one_sixth][two_third last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][fusion_text]\r\n<h3 style=\"text-align: justify;\">Check-in Times</h3>\r\n<span style=\"font-size: 12pt;\">[checklist icon=\"fa-star-o\" iconcolor=\"\" circle=\"\" circlecolor=\"\" size=\"13px\" class=\"\" id=\"\"]\r\n[li_item icon=\"\"]Check-in Time is from 12h00 to 18h00 (Late arrivals must be arranged before hand).[/li_item]\r\n[li_item icon=\"\"]Check-out Time is before 10h00.[/li_item]\r\n[/checklist]</span>[/fusion_text][/two_third][one_sixth last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][/one_sixth][one_sixth last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][/one_sixth][two_third last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][fusion_text]\r\n<h3 style=\"text-align: justify;\">Payment Terms</h3>\r\n<p style=\"text-align: justify;\"><span style=\"font-size: 12pt;\">[checklist icon=\"fa-star-o\" iconcolor=\"\" circle=\"\" circlecolor=\"\" size=\"13px\" class=\"\" id=\"\"]\r\n[li_item icon=\"\"]Rates are inclusive of <strong>14%</strong> VAT.[/li_item]\r\n[li_item icon=\"\"]Payment must be made via <strong>Bank Transfer</strong>, alternatively, <strong>Cash</strong> may be accepted by prior arrangement.[/li_item]\r\n[li_item icon=\"\"]We no longer accept Cheques.[/li_item]\r\n[li_item icon=\"\"]All accommodation must be settled either before or on arrival.[/li_item]\r\n[li_item icon=\"\"]No bookings are guaranteed until your reservation is confirmed, having paid at least a <strong>50% deposit</strong>.[/li_item]\r\n[/checklist]</span></p>\r\n[/fusion_text][/two_third][one_sixth last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][/one_sixth][one_sixth last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][/one_sixth][two_third last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][fusion_text]\r\n<h3 style=\"text-align: justify;\">Refunds &amp; Cancelation Terms</h3>\r\n<p style=\"text-align: justify;\"><span style=\"font-size: 12pt;\">[checklist icon=\"fa-star-o\" iconcolor=\"\" circle=\"\" circlecolor=\"\" size=\"13px\" class=\"\" id=\"\"]\r\n[li_item icon=\"\"]Guests are liable for the tariff of the full period booked.[/li_item]\r\n[li_item icon=\"\"]No refunds will be given for early departures / late arrivals, or due to weather conditions / power outages<span style=\"text-align: justify;\">.</span>[/li_item]\r\n[li_item icon=\"\"]<span style=\"text-align: justify;\">Cancellation of any booking must be done via email.</span>[/li_item]\r\n[li_item icon=\"\"]<span style=\"text-align: justify;\">If you cancel your reservation 15 days and more, </span><span style=\"text-align: justify;\">before your arrival date, your deposit will be </span><span style=\"text-align: justify;\">r</span><span style=\"text-align: justify;\">efund</span><span style=\"text-align: justify;\">ed</span><span style=\"text-align: justify;\"> less an administration fee of </span>15%.[/li_item]\r\n[li_item icon=\"\"]<span style=\"text-align: justify;\">If you cancel your reservation 14 days and less, before your arrival date, your deposit will become </span>non-refundable.[/li_item]\r\n[li_item icon=\"\"]<span style=\"text-align: justify;\">Payments are not refundable for reservations not cancelled and not taken up.</span>[/li_item]\r\n[/checklist]</span></p>\r\n[/fusion_text][/two_third][one_sixth last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][/one_sixth][one_sixth last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][/one_sixth][two_third last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][fusion_text]<h3><span style=\"font-size: 12pt;\">General Terms</span></h3>\r\n<span style=\"font-size: 12pt;\">[checklist icon=\"fa-star-o\" iconcolor=\"\" circle=\"\" circlecolor=\"\" size=\"13px\" class=\"\" id=\"\"]\r\n[li_item icon=\"\"]A reservation may not be transferred.[/li_item]\r\n[li_item icon=\"\"]Bookings are for holiday purposes only and cannot give rise to a tenancy.[/li_item]\r\n[li_item icon=\"\"]Persons occupying the lodge may not exceed the number of persons indicated upon booking.[/li_item]\r\n[li_item icon=\"\"]During nights the all doors must be locked. Please remember to lock the door behind you and to remove the key.[/li_item]\r\n[li_item icon=\"\"]Please leave the Lodge reasonable tidy and clean after use.[/li_item]\r\n[li_item icon=\"\"]We do not have a Laundry Service.[/li_item]</span><span style=\"font-size: 12pt;\">\r\n[li_item icon=\"\"]Out of respect for all guests, and the fact that we are in a conservancy, noise must be kept down to a comfortable level especially between the hours 22h00 to 08h00.[/li_item]\r\n[li_item icon=\"\"]Please keep furniture, fixtures and fittings in the same state of repair and condition as at the beginning of your stay. In the event of any damage to furniture, fixtures or fittings, you may be held liable for the replacement value or repair costs. This includes damage to the pool area.[/li_item]\r\n[li_item icon=\"\"]The use of open fires and the burning of any unprotected candles or fuel burning lanterns, in or around the Lodge, will not be permitted.[/li_item]\r\n[li_item icon=\"\"]We operate a non-smoking policy throughout the Lodge. You are welcome to smoke outside the house, where ashtrays are provided.[/li_item]\r\n[li_item icon=\"\"]Guests may not bring </span><span style=\"font-size: 12pt;\">pets or other animals onto the premises.[/li_item]\r\n[li_item icon=\"\"]The use or sale of any illegal substance in the Lodge or on surrounding property is not permissible.[/li_item]\r\n[li_item icon=\"\"]<span style=\"text-align: justify;\">Right of admission is reserved.</span>[/li_item]\r\n[li_item icon=\"\"]We reserve the right to eject a guest/guests from the Lodge if they are not conducting themselves in an appropriate and/or acceptable manner to the building and/or other residents or staff.[/li_item]\r\n[li_item icon=\"\"]Swimming Pool - The premises contains an unsupervised, open pool which may be used at the guests\' own risk.[/li_item]</span>\r\n<span style=\"font-size: 12pt;\"> [/checklist]</span>[/fusion_text][/two_third][one_sixth last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][/one_sixth]', 'T&Cs', '', 'inherit', 'closed', 'closed', '', '984-revision-v1', '', '', '2017-07-31 19:59:02', '2017-07-31 17:59:02', '', 984, 'http://msla.co.za/lodge/984-revision-v1/', 0, 'revision', '', 0),
(1347, 1, '2017-07-31 20:01:08', '2017-07-31 18:01:08', '[fullwidth background_color=\"\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding_top=\"20\" padding_bottom=\"20\" padding_left=\"0\" padding_right=\"0\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][title size=\"1\" content_align=\"right\" style_type=\"default\" sep_color=\"\" margin_top=\"\" margin_bottom=\"\" class=\"\" id=\"\"]Terms &amp; Conditions[/title][/fullwidth][one_sixth last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][/one_sixth][two_third last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][fusion_text]\r\n<h3><span style=\"font-size: 12pt;\">Conditions you need to know before booking.</span></h3>\r\n<span style=\"font-size: 12pt;\">[checklist icon=\"fa-star-o\" iconcolor=\"\" circle=\"\" circlecolor=\"\" size=\"13px\" class=\"\" id=\"\"]\r\n[li_item icon=\"\"]By default, the lodge and bedrooms are not serviced, however <a href=\"http://msla.co.za/lodge/rates/\">Cleaning Services</a> are available as an optional extra.[/li_item]\r\n</span>[li_item icon=\"\"]When you book into the lodge it is exclusively yours. i.e. We don\'t book out the other rooms unless we have cleared it with you.[/li_item]\r\n[li_item icon=\"\"]The lodge is strictly a private guest lodge, for the purposes of accommodation and relaxation for paying guests, and not an events venue for functions, parties, etc.[/li_item]\r\n[/checklist][/fusion_text][/two_third][one_sixth last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][/one_sixth][one_sixth last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][/one_sixth][two_third last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][fusion_text]\r\n<h3><span style=\"font-size: 12pt;\">Day Visitors</span></h3>\r\n<span style=\"font-size: 12pt;\">[checklist icon=\"fa-star-o\" iconcolor=\"\" circle=\"\" circlecolor=\"\" size=\"13px\" class=\"\" id=\"\"]\r\n</span>[li_item icon=\"\"]Any day visitor/s you invite must first be pre-arranged with management (right of admission does apply) and will be required to sign in before entering upon the property. A <a href=\"http://msla.co.za/lodge/rates/\">Cover Charge</a> will be levied against your account. Should for whatever reason your visitor ending up overnighting on the property, you will be invoiced for the full B&amp;B rate, as well.[/li_item][/checklist][/fusion_text][/two_third][one_sixth last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][/one_sixth][one_sixth last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][/one_sixth][two_third last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][fusion_text]\r\n<h3 style=\"text-align: justify;\">Check-in Times</h3>\r\n<span style=\"font-size: 12pt;\">[checklist icon=\"fa-star-o\" iconcolor=\"\" circle=\"\" circlecolor=\"\" size=\"13px\" class=\"\" id=\"\"]\r\n[li_item icon=\"\"]Check-in Time is from 12h00 to 18h00 (Late arrivals must be arranged before hand).[/li_item]\r\n[li_item icon=\"\"]Check-out Time is before 10h00.[/li_item]\r\n[/checklist]</span>[/fusion_text][/two_third][one_sixth last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][/one_sixth][one_sixth last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][/one_sixth][two_third last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][fusion_text]\r\n<h3 style=\"text-align: justify;\">Payment Terms</h3>\r\n<p style=\"text-align: justify;\"><span style=\"font-size: 12pt;\">[checklist icon=\"fa-star-o\" iconcolor=\"\" circle=\"\" circlecolor=\"\" size=\"13px\" class=\"\" id=\"\"]\r\n[li_item icon=\"\"]Rates are inclusive of <strong>14%</strong> VAT.[/li_item]\r\n[li_item icon=\"\"]Payment must be made via <strong>Bank Transfer</strong>, alternatively, <strong>Cash</strong> may be accepted by prior arrangement.[/li_item]\r\n[li_item icon=\"\"]We no longer accept Cheques.[/li_item]\r\n[li_item icon=\"\"]All accommodation must be settled either before or on arrival.[/li_item]\r\n[li_item icon=\"\"]No bookings are guaranteed until your reservation is confirmed, having paid at least a <strong>50% deposit</strong>.[/li_item]\r\n[/checklist]</span></p>\r\n[/fusion_text][/two_third][one_sixth last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][/one_sixth][one_sixth last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][/one_sixth][two_third last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][fusion_text]\r\n<h3 style=\"text-align: justify;\">Refunds &amp; Cancelation Terms</h3>\r\n<p style=\"text-align: justify;\"><span style=\"font-size: 12pt;\">[checklist icon=\"fa-star-o\" iconcolor=\"\" circle=\"\" circlecolor=\"\" size=\"13px\" class=\"\" id=\"\"]\r\n[li_item icon=\"\"]Guests are liable for the tariff of the full period booked.[/li_item]\r\n[li_item icon=\"\"]No refunds will be given for early departures / late arrivals, or due to weather conditions / power outages<span style=\"text-align: justify;\">.</span>[/li_item]\r\n[li_item icon=\"\"]<span style=\"text-align: justify;\">Cancellation of any booking must be done via email.</span>[/li_item]\r\n[li_item icon=\"\"]<span style=\"text-align: justify;\">If you cancel your reservation 15 days and more, </span><span style=\"text-align: justify;\">before your arrival date, your deposit will be </span><span style=\"text-align: justify;\">r</span><span style=\"text-align: justify;\">efund</span><span style=\"text-align: justify;\">ed</span><span style=\"text-align: justify;\"> less an administration fee of </span>15%.[/li_item]\r\n[li_item icon=\"\"]<span style=\"text-align: justify;\">If you cancel your reservation 14 days and less, before your arrival date, your deposit will become </span>non-refundable.[/li_item]\r\n[li_item icon=\"\"]<span style=\"text-align: justify;\">Payments are not refundable for reservations not cancelled and not taken up.</span>[/li_item]\r\n[/checklist]</span></p>\r\n[/fusion_text][/two_third][one_sixth last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][/one_sixth][one_sixth last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][/one_sixth][two_third last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][fusion_text]\r\n<h3><span style=\"font-size: 12pt;\">General Terms</span></h3>\r\n<span style=\"font-size: 12pt;\">[checklist icon=\"fa-star-o\" iconcolor=\"\" circle=\"\" circlecolor=\"\" size=\"13px\" class=\"\" id=\"\"]\r\n[li_item icon=\"\"]A reservation may not be transferred.[/li_item]\r\n[li_item icon=\"\"]Bookings are for holiday purposes only and cannot give rise to a tenancy.[/li_item]\r\n[li_item icon=\"\"]Persons occupying the lodge may not exceed the number of persons indicated upon booking.[/li_item]\r\n[li_item icon=\"\"]During nights the all doors must be locked. Please remember to lock the door behind you and to remove the key.[/li_item]\r\n[li_item icon=\"\"]Please leave the Lodge reasonable tidy and clean after use.[/li_item]\r\n[li_item icon=\"\"]We do not have a Laundry Service.[/li_item]</span><span style=\"font-size: 12pt;\">\r\n[li_item icon=\"\"]Out of respect for all guests, and the fact that we are in a conservancy, noise must be kept down to a comfortable level especially between the hours 22h00 to 08h00.[/li_item]\r\n[li_item icon=\"\"]Please keep furniture, fixtures and fittings in the same state of repair and condition as at the beginning of your stay. In the event of any damage to furniture, fixtures or fittings, you may be held liable for the replacement value or repair costs. This includes damage to the pool area.[/li_item]\r\n[li_item icon=\"\"]The use of open fires and the burning of any unprotected candles or fuel burning lanterns, in or around the Lodge, will not be permitted.[/li_item]\r\n[li_item icon=\"\"]We operate a non-smoking policy throughout the Lodge. You are welcome to smoke outside the house, where ashtrays are provided.[/li_item]\r\n[li_item icon=\"\"]Guests may not bring </span><span style=\"font-size: 12pt;\">pets or other animals onto the premises.[/li_item]\r\n[li_item icon=\"\"]The use or sale of any illegal substance in the Lodge or on surrounding property is not permissible.[/li_item]\r\n[li_item icon=\"\"]<span style=\"text-align: justify;\">Right of admission is reserved.</span>[/li_item]\r\n[li_item icon=\"\"]We reserve the right to eject a guest/guests from the Lodge if they are not conducting themselves in an appropriate and/or acceptable manner to the building and/or other residents or staff.[/li_item]\r\n[li_item icon=\"\"]Swimming Pool - The premises contains an unsupervised, open pool which may be used at the guests\' own risk.[/li_item]</span>\r\n<span style=\"font-size: 12pt;\"> [/checklist]</span>[/fusion_text][/two_third][one_sixth last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][/one_sixth]', 'T&Cs', '', 'inherit', 'closed', 'closed', '', '984-revision-v1', '', '', '2017-07-31 20:01:08', '2017-07-31 18:01:08', '', 984, 'http://msla.co.za/lodge/984-revision-v1/', 0, 'revision', '', 0),
(1348, 1, '2017-07-31 23:47:13', '2017-07-31 21:47:13', '[fullwidth background_color=\"\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding_top=\"20\" padding_bottom=\"20\" padding_left=\"0\" padding_right=\"0\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][title size=\"1\" content_align=\"right\" style_type=\"default\" sep_color=\"\" margin_top=\"\" margin_bottom=\"\" class=\"\" id=\"\"]Terms &amp; Conditions[/title][/fullwidth][one_sixth last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][/one_sixth][two_third last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][fusion_text]\r\n<h3><span style=\"font-size: 12pt;\">Conditions you need to know before booking.</span></h3>\r\n<span style=\"font-size: 12pt;\">[checklist icon=\"fa-star-o\" iconcolor=\"\" circle=\"\" circlecolor=\"\" size=\"13px\" class=\"\" id=\"\"]\r\n[li_item icon=\"\"]By default, the lodge and bedrooms are not serviced, however <a href=\"http://msla.co.za/lodge/rates/\">Cleaning Services</a> are available as an optional extra.[/li_item]\r\n</span>[li_item icon=\"\"]When you book into the lodge it is exclusively yours. i.e. We don\'t book out the other rooms unless we have cleared it with you.[/li_item]\r\n[li_item icon=\"\"]The lodge is strictly a private guest lodge, for the purposes of accommodation and relaxation for paying guests, and not an events venue for functions, parties, etc.[/li_item]\r\n[/checklist][/fusion_text][/two_third][one_sixth last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][/one_sixth][one_sixth last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][/one_sixth][two_third last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][fusion_text]\r\n<h3><span style=\"font-size: 12pt;\">Day Visitors</span></h3>\r\n<span style=\"font-size: 12pt;\">[checklist icon=\"fa-star-o\" iconcolor=\"\" circle=\"\" circlecolor=\"\" size=\"13px\" class=\"\" id=\"\"]\r\n</span>[li_item icon=\"\"]Any day visitor/s you invite must first be pre-arranged with management (right of admission does apply) and will be required to sign in before entering upon the property. A <a href=\"http://msla.co.za/lodge/rates/\">Cover Charge</a> will be levied against your account. Should for whatever reason your visitor ending up overnighting on the property, you will be invoiced for the full B&amp;B rate, as well.[/li_item][/checklist][/fusion_text][/two_third][one_sixth last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][/one_sixth][one_sixth last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][/one_sixth][two_third last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][fusion_text]\r\n<h3 style=\"text-align: justify;\">Check-in Times</h3>\r\n<span style=\"font-size: 12pt;\">[checklist icon=\"fa-star-o\" iconcolor=\"\" circle=\"\" circlecolor=\"\" size=\"13px\" class=\"\" id=\"\"]\r\n[li_item icon=\"\"]Check-in Time is from 12h00 to 18h00 (Late arrivals must be arranged before hand).[/li_item]\r\n[li_item icon=\"\"]Check-out Time is before 10h00.[/li_item]\r\n[/checklist]</span>[/fusion_text][/two_third][one_sixth last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][/one_sixth][one_sixth last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][/one_sixth][two_third last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][fusion_text]\r\n<h3 style=\"text-align: justify;\">Payment Terms</h3>\r\n<p style=\"text-align: justify;\"><span style=\"font-size: 12pt;\">[checklist icon=\"fa-star-o\" iconcolor=\"\" circle=\"\" circlecolor=\"\" size=\"13px\" class=\"\" id=\"\"]\r\n[li_item icon=\"\"]Rates are inclusive of <strong>14%</strong> VAT.[/li_item]\r\n[li_item icon=\"\"]Payment must be made via <strong>Bank Transfer</strong>, alternatively, <strong>Cash</strong> may be accepted by prior arrangement.[/li_item]\r\n[li_item icon=\"\"]We no longer accept Cheques.[/li_item]\r\n[li_item icon=\"\"]All accommodation must be settled either before or on arrival.[/li_item]\r\n[li_item icon=\"\"]No bookings are guaranteed until your reservation is confirmed, having paid at least a <strong>50% deposit</strong>.[/li_item]\r\n[/checklist]</span></p>\r\n[/fusion_text][/two_third][one_sixth last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][/one_sixth][one_sixth last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][/one_sixth][two_third last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][fusion_text]\r\n<h3 style=\"text-align: justify;\">Refunds &amp; Cancelation Terms</h3>\r\n<p style=\"text-align: justify;\"><span style=\"font-size: 12pt;\">[checklist icon=\"fa-star-o\" iconcolor=\"\" circle=\"\" circlecolor=\"\" size=\"13px\" class=\"\" id=\"\"]\r\n[li_item icon=\"\"]Guests are liable for the tariff of the full period booked.[/li_item]\r\n[li_item icon=\"\"]No refunds will be given for early departures / late arrivals, or due to weather conditions / power outages<span style=\"text-align: justify;\">.</span>[/li_item]\r\n[li_item icon=\"\"]<span style=\"text-align: justify;\">Cancellation of any booking must be done via email.</span>[/li_item]\r\n[li_item icon=\"\"]<span style=\"text-align: justify;\">If you cancel your reservation 15 days and more, </span><span style=\"text-align: justify;\">before your arrival date, your deposit will be </span><span style=\"text-align: justify;\">r</span><span style=\"text-align: justify;\">efund</span><span style=\"text-align: justify;\">ed</span><span style=\"text-align: justify;\"> less an administration fee of </span>15%.[/li_item]\r\n[li_item icon=\"\"]<span style=\"text-align: justify;\">If you cancel your reservation 14 days and less, before your arrival date, your deposit will become </span>non-refundable.[/li_item]\r\n[li_item icon=\"\"]<span style=\"text-align: justify;\">Payments are not refundable for reservations not cancelled and not taken up.</span>[/li_item]\r\n[/checklist]</span></p>\r\n[/fusion_text][/two_third][one_sixth last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][/one_sixth][one_sixth last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][/one_sixth][two_third last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][fusion_text]\r\n<h3><span style=\"font-size: 12pt;\">General Terms</span></h3>\r\n[checklist icon=\"fa-star-o\" iconcolor=\"\" circle=\"\" circlecolor=\"\" size=\"13px\" class=\"\" id=\"\"]\r\n[li_item icon=\"\"]A reservation may not be transferred.[/li_item]\r\n[li_item icon=\"\"]Bookings are for holiday purposes only and cannot give rise to a tenancy.[/li_item]\r\n[li_item icon=\"\"]Persons occupying the lodge may not exceed the number of persons indicated upon booking.[/li_item]\r\n[li_item icon=\"\"]During nights the all doors must be locked. Please remember to lock the door behind you and to remove the key.[/li_item]\r\n[li_item icon=\"\"]Please leave the Lodge reasonable tidy and clean after use.[/li_item]\r\n[li_item icon=\"\"]We do not have a Laundry Service.[/li_item]\r\n[li_item icon=\"\"]Out of respect for all guests, and the fact that we are in a conservancy, noise must be kept down to a comfortable level especially between the hours 22h00 to 08h00.[/li_item]\r\n[li_item icon=\"\"]Please keep furniture, fixtures and fittings in the same state of repair and condition as at the beginning of your stay. In the event of any damage to furniture, fixtures or fittings, you may be held liable for the replacement value or repair costs. This includes damage to the pool area.[/li_item]\r\n[li_item icon=\"\"]The use of open fires and the burning of any unprotected candles or fuel burning lanterns, in or around the Lodge, will not be permitted.[/li_item]\r\n[li_item icon=\"\"]We operate a non-smoking policy throughout the Lodge. You are welcome to smoke outside the house, where ashtrays are provided.[/li_item]\r\n[li_item icon=\"\"]Guests may not bring pets or other animals onto the premises.[/li_item]\r\n[li_item icon=\"\"]The use or sale of any illegal substance in the Lodge or on surrounding property is not permissible.[/li_item]\r\n[li_item icon=\"\"]Right of admission is reserved.[/li_item]\r\n[li_item icon=\"\"]We reserve the right to eject a guest/guests from the Lodge if they are not conducting themselves in an appropriate and/or acceptable manner to the building and/or other residents or staff.[/li_item]\r\n[li_item icon=\"\"]Swimming Pool - The premises contains an unsupervised, open pool which may be used at the guests\' own risk.[/li_item]\r\n[/checklist][/fusion_text][/two_third][one_sixth last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][/one_sixth]', 'T&Cs', '', 'inherit', 'closed', 'closed', '', '984-revision-v1', '', '', '2017-07-31 23:47:13', '2017-07-31 21:47:13', '', 984, 'http://msla.co.za/lodge/984-revision-v1/', 0, 'revision', '', 0);
INSERT INTO `wp_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(1350, 1, '2017-09-18 10:55:49', '2017-09-18 08:55:49', '[fullwidth background_color=\"\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding_top=\"20\" padding_bottom=\"20\" padding_left=\"0\" padding_right=\"0\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][title size=\"1\" content_align=\"right\" style_type=\"default\" sep_color=\"\" margin_top=\"\" margin_bottom=\"\" class=\"\" id=\"\"]Terms &amp; Conditions[/title][/fullwidth][one_sixth last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][/one_sixth][two_third last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][fusion_text]\r\n<h3><span style=\"font-size: 12pt;\">Conditions you need to know before booking.</span></h3>\r\n<span style=\"font-size: 12pt;\">[checklist icon=\"fa-star-o\" iconcolor=\"\" circle=\"\" circlecolor=\"\" size=\"13px\" class=\"\" id=\"\"]\r\n[li_item icon=\"\"]By default, the lodge and bedrooms are not serviced, however <a href=\"http://msla.co.za/lodge/rates/\">Cleaning Services</a> are available as an optional extra.[/li_item]\r\n</span>[li_item icon=\"\"]When you book into the lodge it is exclusively yours. i.e. We don\'t book out the other rooms unless we have cleared it with you.[/li_item]\r\n[li_item icon=\"\"]The lodge is strictly a private guest lodge, for the purposes of accommodation and relaxation for paying guests, and not an events venue for functions, parties, etc.[/li_item]\r\n[/checklist][/fusion_text][/two_third][one_sixth last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][/one_sixth][one_sixth last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][/one_sixth][two_third last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][fusion_text]\r\n<h3><span style=\"font-size: 12pt;\">Day Visitors</span></h3>\r\n<span style=\"font-size: 12pt;\">[checklist icon=\"fa-star-o\" iconcolor=\"\" circle=\"\" circlecolor=\"\" size=\"13px\" class=\"\" id=\"\"]\r\n</span>[li_item icon=\"\"]Any day visitor/s you invite must first be pre-arranged with management (right of admission does apply) and will be required to sign in before entering upon the property. A <a href=\"http://msla.co.za/lodge/rates/\">Cover Charge</a> will be levied against your account. Should for whatever reason your visitor ending up overnighting on the property, you will be invoiced for the full B&amp;B rate, as well.[/li_item][/checklist][/fusion_text][/two_third][one_sixth last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][/one_sixth][one_sixth last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][/one_sixth][two_third last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][fusion_text]\r\n<h3 style=\"text-align: justify;\">Check-in Times</h3>\r\n<span style=\"font-size: 12pt;\">[checklist icon=\"fa-star-o\" iconcolor=\"\" circle=\"\" circlecolor=\"\" size=\"13px\" class=\"\" id=\"\"]\r\n[li_item icon=\"\"]Check-in Time is from 12h00 to 18h00 (Late arrivals must be arranged before hand).[/li_item]\r\n[li_item icon=\"\"]Check-out Time is before 10h00.[/li_item]\r\n[/checklist]</span>[/fusion_text][/two_third][one_sixth last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][/one_sixth][one_sixth last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][/one_sixth][two_third last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][fusion_text]\r\n<h3 style=\"text-align: justify;\">Payment Terms</h3>\r\n<p style=\"text-align: justify;\"><span style=\"font-size: 12pt;\">[checklist icon=\"fa-star-o\" iconcolor=\"\" circle=\"\" circlecolor=\"\" size=\"13px\" class=\"\" id=\"\"]\r\n[li_item icon=\"\"]Rates are inclusive of <strong>14%</strong> VAT.[/li_item]\r\n[li_item icon=\"\"]Payment must be made via <strong>Bank Transfer</strong>, alternatively, <strong>Cash</strong> may be accepted by prior arrangement.[/li_item]\r\n[li_item icon=\"\"]We no longer accept Cheques.[/li_item]\r\n</span>[li_item icon=\"\"]We do not have Credit Card facilities on site.[/li_item]<span style=\"font-size: 12pt;\">\r\n[li_item icon=\"\"]All accommodation must be settled either before or on arrival.[/li_item]\r\n[li_item icon=\"\"]No bookings are guaranteed until your reservation is confirmed, having paid at least a <strong>50% deposit</strong>.[/li_item]\r\n[/checklist]</span></p>\r\n[/fusion_text][/two_third][one_sixth last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][/one_sixth][one_sixth last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][/one_sixth][two_third last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][fusion_text]\r\n<h3 style=\"text-align: justify;\">Refunds &amp; Cancelation Terms</h3>\r\n<p style=\"text-align: justify;\"><span style=\"font-size: 12pt;\">[checklist icon=\"fa-star-o\" iconcolor=\"\" circle=\"\" circlecolor=\"\" size=\"13px\" class=\"\" id=\"\"]\r\n[li_item icon=\"\"]Guests are liable for the tariff of the full period booked.[/li_item]\r\n[li_item icon=\"\"]No refunds will be given for early departures / late arrivals, or due to weather conditions / power outages<span style=\"text-align: justify;\">.</span>[/li_item]\r\n[li_item icon=\"\"]<span style=\"text-align: justify;\">Cancellation of any booking must be done via email.</span>[/li_item]\r\n[li_item icon=\"\"]<span style=\"text-align: justify;\">If you cancel your reservation 15 days and more, </span><span style=\"text-align: justify;\">before your arrival date, your deposit will be </span><span style=\"text-align: justify;\">r</span><span style=\"text-align: justify;\">efund</span><span style=\"text-align: justify;\">ed</span><span style=\"text-align: justify;\"> less an administration fee of </span>15%.[/li_item]\r\n[li_item icon=\"\"]<span style=\"text-align: justify;\">If you cancel your reservation 14 days and less, before your arrival date, your deposit will become </span>non-refundable.[/li_item]\r\n[li_item icon=\"\"]<span style=\"text-align: justify;\">Payments are not refundable for reservations not cancelled and not taken up.</span>[/li_item]\r\n[/checklist]</span></p>\r\n[/fusion_text][/two_third][one_sixth last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][/one_sixth][one_sixth last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][/one_sixth][two_third last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][fusion_text]\r\n<h3><span style=\"font-size: 12pt;\">General Terms</span></h3>\r\n[checklist icon=\"fa-star-o\" iconcolor=\"\" circle=\"\" circlecolor=\"\" size=\"13px\" class=\"\" id=\"\"]\r\n[li_item icon=\"\"]A reservation may not be transferred.[/li_item]\r\n[li_item icon=\"\"]Bookings are for holiday purposes only and cannot give rise to a tenancy.[/li_item]\r\n[li_item icon=\"\"]Persons occupying the lodge may not exceed the number of persons indicated upon booking.[/li_item]\r\n[li_item icon=\"\"]During nights the all doors must be locked. Please remember to lock the door behind you and to remove the key.[/li_item]\r\n[li_item icon=\"\"]Please leave the Lodge reasonable tidy and clean after use.[/li_item]\r\n[li_item icon=\"\"]We do not have a Laundry Service.[/li_item]\r\n[li_item icon=\"\"]Out of respect for all guests, and the fact that we are in a conservancy, noise must be kept down to a comfortable level especially between the hours 22h00 to 08h00.[/li_item]\r\n[li_item icon=\"\"]Please keep furniture, fixtures and fittings in the same state of repair and condition as at the beginning of your stay. In the event of any damage to furniture, fixtures or fittings, you may be held liable for the replacement value or repair costs. This includes damage to the pool area.[/li_item]\r\n[li_item icon=\"\"]The use of open fires and the burning of any unprotected candles or fuel burning lanterns, in or around the Lodge, will not be permitted.[/li_item]\r\n[li_item icon=\"\"]We operate a non-smoking policy throughout the Lodge. You are welcome to smoke outside the house, where ashtrays are provided.[/li_item]\r\n[li_item icon=\"\"]Guests may not bring pets or other animals onto the premises.[/li_item]\r\n[li_item icon=\"\"]The use or sale of any illegal substance in the Lodge or on surrounding property is not permissible.[/li_item]\r\n[li_item icon=\"\"]Right of admission is reserved.[/li_item]\r\n[li_item icon=\"\"]We reserve the right to eject a guest/guests from the Lodge if they are not conducting themselves in an appropriate and/or acceptable manner to the building and/or other residents or staff.[/li_item]\r\n[li_item icon=\"\"]Swimming Pool - The premises contains an unsupervised, open pool which may be used at the guests\' own risk.[/li_item]\r\n[/checklist][/fusion_text][/two_third][one_sixth last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][/one_sixth]', 'T&Cs', '', 'inherit', 'closed', 'closed', '', '984-revision-v1', '', '', '2017-09-18 10:55:49', '2017-09-18 08:55:49', '', 984, 'http://msla.co.za/lodge/984-revision-v1/', 0, 'revision', '', 0),
(1351, 1, '2017-09-18 11:03:52', '2017-09-18 09:03:52', '[fullwidth background_color=\"\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding_top=\"20\" padding_bottom=\"20\" padding_left=\"0\" padding_right=\"0\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][title size=\"1\" content_align=\"right\" style_type=\"default\" sep_color=\"\" margin_top=\"\" margin_bottom=\"\" class=\"\" id=\"\"]Terms &amp; Conditions[/title][/fullwidth][one_sixth last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][/one_sixth][two_third last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][fusion_text]\r\n<h3><span style=\"font-size: 12pt;\">Conditions you need to know before booking.</span></h3>\r\n<span style=\"font-size: 12pt;\">[checklist icon=\"fa-star-o\" iconcolor=\"\" circle=\"\" circlecolor=\"\" size=\"13px\" class=\"\" id=\"\"]\r\n[li_item icon=\"\"]By default, the lodge and bedrooms are not serviced, however <a href=\"http://msla.co.za/lodge/rates/\">Cleaning Services</a> are available as an optional extra.[/li_item]\r\n[li_item icon=\"\"]When you book into the lodge it is exclusively yours. i.e. We don\'t book out the other rooms unless we have cleared it with you.[/li_item]\r\n[li_item icon=\"\"]Please don’t bring your own Pets.[/li_item]\r\n[li_item icon=\"\"]The lodge is strictly a private guest lodge, for the purposes of accommodation and relaxation for paying guests, and not an events venue for functions, parties, etc.[/li_item]\r\n[/checklist]</span>[/fusion_text][/two_third][one_sixth last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][/one_sixth][one_sixth last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][/one_sixth][two_third last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][fusion_text]\r\n<h3><span style=\"font-size: 12pt;\">Day Visitors</span></h3>\r\n<span style=\"font-size: 12pt;\">[checklist icon=\"fa-star-o\" iconcolor=\"\" circle=\"\" circlecolor=\"\" size=\"13px\" class=\"\" id=\"\"]\r\n</span>[li_item icon=\"\"]Any day visitor/s you invite must first be pre-arranged with management (right of admission does apply) and will be required to sign in before entering upon the property. A <a href=\"http://msla.co.za/lodge/rates/\">Cover Charge</a> will be levied against your account. Should for whatever reason your visitor ending up overnighting on the property, you will be invoiced for the full B&amp;B rate, as well.[/li_item][/checklist][/fusion_text][/two_third][one_sixth last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][/one_sixth][one_sixth last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][/one_sixth][two_third last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][fusion_text]\r\n<h3 style=\"text-align: justify;\">Check-in Times</h3>\r\n<span style=\"font-size: 12pt;\">[checklist icon=\"fa-star-o\" iconcolor=\"\" circle=\"\" circlecolor=\"\" size=\"13px\" class=\"\" id=\"\"]\r\n[li_item icon=\"\"]Check-in Time is from 12h00 to 18h00 (Late arrivals must be arranged before hand).[/li_item]\r\n[li_item icon=\"\"]Check-out Time is before 10h00.[/li_item]\r\n[/checklist]</span>[/fusion_text][/two_third][one_sixth last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][/one_sixth][one_sixth last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][/one_sixth][two_third last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][fusion_text]\r\n<h3 style=\"text-align: justify;\">Payment Terms</h3>\r\n<p style=\"text-align: justify;\"><span style=\"font-size: 12pt;\">[checklist icon=\"fa-star-o\" iconcolor=\"\" circle=\"\" circlecolor=\"\" size=\"13px\" class=\"\" id=\"\"]\r\n[li_item icon=\"\"]Rates are inclusive of <strong>14%</strong> VAT.[/li_item]\r\n[li_item icon=\"\"]Payment must be made via <strong>Bank Transfer</strong>, alternatively, <strong>Cash</strong> may be accepted by prior arrangement.[/li_item]\r\n[li_item icon=\"\"]We no longer accept Cheques.[/li_item]\r\n</span>[li_item icon=\"\"]We do not have Credit Card facilities on site.[/li_item]<span style=\"font-size: 12pt;\">\r\n[li_item icon=\"\"]All accommodation must be settled either before or on arrival.[/li_item]\r\n[li_item icon=\"\"]No bookings are guaranteed until your reservation is confirmed, having paid at least a <strong>50% deposit</strong>.[/li_item]\r\n[/checklist]</span></p>\r\n[/fusion_text][/two_third][one_sixth last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][/one_sixth][one_sixth last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][/one_sixth][two_third last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][fusion_text]\r\n<h3 style=\"text-align: justify;\">Refunds &amp; Cancelation Terms</h3>\r\n<p style=\"text-align: justify;\"><span style=\"font-size: 12pt;\">[checklist icon=\"fa-star-o\" iconcolor=\"\" circle=\"\" circlecolor=\"\" size=\"13px\" class=\"\" id=\"\"]\r\n[li_item icon=\"\"]Guests are liable for the tariff of the full period booked.[/li_item]\r\n[li_item icon=\"\"]No refunds will be given for early departures / late arrivals, or due to weather conditions / power outages<span style=\"text-align: justify;\">.</span>[/li_item]\r\n[li_item icon=\"\"]<span style=\"text-align: justify;\">Cancellation of any booking must be done via email.</span>[/li_item]\r\n[li_item icon=\"\"]<span style=\"text-align: justify;\">If you cancel your reservation 15 days and more, </span><span style=\"text-align: justify;\">before your arrival date, your deposit will be </span><span style=\"text-align: justify;\">r</span><span style=\"text-align: justify;\">efund</span><span style=\"text-align: justify;\">ed</span><span style=\"text-align: justify;\"> less an administration fee of </span>15%.[/li_item]\r\n[li_item icon=\"\"]<span style=\"text-align: justify;\">If you cancel your reservation 14 days and less, before your arrival date, your deposit will become </span>non-refundable.[/li_item]\r\n[li_item icon=\"\"]<span style=\"text-align: justify;\">Payments are not refundable for reservations not cancelled and not taken up.</span>[/li_item]\r\n[/checklist]</span></p>\r\n[/fusion_text][/two_third][one_sixth last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][/one_sixth][one_sixth last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][/one_sixth][two_third last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][fusion_text]\r\n<h3><span style=\"font-size: 12pt;\">General Terms</span></h3>\r\n[checklist icon=\"fa-star-o\" iconcolor=\"\" circle=\"\" circlecolor=\"\" size=\"13px\" class=\"\" id=\"\"]\r\n[li_item icon=\"\"]A reservation may not be transferred.[/li_item]\r\n[li_item icon=\"\"]Bookings are for holiday purposes only and cannot give rise to a tenancy.[/li_item]\r\n[li_item icon=\"\"]Persons occupying the lodge may not exceed the number of persons indicated upon booking.[/li_item]\r\n[li_item icon=\"\"]During nights the all doors must be locked. Please remember to lock the door behind you and to remove the key.[/li_item]\r\n[li_item icon=\"\"]Please leave the Lodge reasonable tidy and clean after use.[/li_item]\r\n[li_item icon=\"\"]We do not have a Laundry Service.[/li_item]\r\n[li_item icon=\"\"]Out of respect for all guests, and the fact that we are in a conservancy, noise must be kept down to a comfortable level especially between the hours 22h00 to 08h00.[/li_item]\r\n[li_item icon=\"\"]Please keep furniture, fixtures and fittings in the same state of repair and condition as at the beginning of your stay. In the event of any damage to furniture, fixtures or fittings, you may be held liable for the replacement value or repair costs. This includes damage to the pool area.[/li_item]\r\n[li_item icon=\"\"]The use of open fires and the burning of any unprotected candles or fuel burning lanterns, in or around the Lodge, will not be permitted.[/li_item]\r\n[li_item icon=\"\"]We operate a non-smoking policy throughout the Lodge. You are welcome to smoke outside the house, where ashtrays are provided.[/li_item]\r\n[li_item icon=\"\"]Guests may not bring pets or other animals onto the premises.[/li_item]\r\n[li_item icon=\"\"]The use or sale of any illegal substance in the Lodge or on surrounding property is not permissible.[/li_item]\r\n[li_item icon=\"\"]Right of admission is reserved.[/li_item]\r\n[li_item icon=\"\"]We reserve the right to eject a guest/guests from the Lodge if they are not conducting themselves in an appropriate and/or acceptable manner to the building and/or other residents or staff.[/li_item]\r\n[li_item icon=\"\"]Swimming Pool - The premises contains an unsupervised, open pool which may be used at the guests\' own risk.[/li_item]\r\n[/checklist][/fusion_text][/two_third][one_sixth last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][/one_sixth]', 'T&Cs', '', 'inherit', 'closed', 'closed', '', '984-revision-v1', '', '', '2017-09-18 11:03:52', '2017-09-18 09:03:52', '', 984, 'http://msla.co.za/lodge/984-revision-v1/', 0, 'revision', '', 0),
(1352, 1, '2017-09-18 11:07:20', '2017-09-18 09:07:20', '[fullwidth background_color=\"\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding_top=\"20\" padding_bottom=\"20\" padding_left=\"0\" padding_right=\"0\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][title size=\"1\" content_align=\"right\" style_type=\"default\" sep_color=\"\" margin_top=\"\" margin_bottom=\"\" class=\"\" id=\"\"]Terms &amp; Conditions[/title][/fullwidth][one_sixth last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][/one_sixth][two_third last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][fusion_text]\r\n<h3><span style=\"font-size: 12pt;\">Conditions you need to know before booking.</span></h3>\r\n<span style=\"font-size: 12pt;\">[checklist icon=\"fa-star-o\" iconcolor=\"\" circle=\"\" circlecolor=\"\" size=\"13px\" class=\"\" id=\"\"]\r\n[li_item icon=\"\"]By default, the lodge and bedrooms are not serviced, however <a href=\"http://msla.co.za/lodge/rates/\">Cleaning Services</a> are available as an optional extra.[/li_item]\r\n[li_item icon=\"\"]When you book into the lodge it is exclusively yours. i.e. We don\'t book out the other rooms unless we have cleared it with you.[/li_item]\r\n[li_item icon=\"\"]Please don’t bring your own Pets.[/li_item]\r\n[li_item icon=\"\"]The lodge is strictly a private guest lodge, for the purposes of accommodation and relaxation for paying guests, and not an events venue for functions, parties, etc.[/li_item]\r\n[/checklist]</span>[/fusion_text][/two_third][one_sixth last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][/one_sixth][one_sixth last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][/one_sixth][two_third last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][fusion_text]\r\n<h3><span style=\"font-size: 12pt;\">Day Visitors</span></h3>\r\n<span style=\"font-size: 12pt;\">[checklist icon=\"fa-star-o\" iconcolor=\"\" circle=\"\" circlecolor=\"\" size=\"13px\" class=\"\" id=\"\"]\r\n</span>[li_item icon=\"\"]Any day visitor/s you invite must first be pre-arranged with management (right of admission does apply) and will be required to sign in before entering upon the property. A <a href=\"http://msla.co.za/lodge/rates/\">Cover Charge</a> will be levied against your account. Should for whatever reason your visitor ending up overnighting on the property, you will be invoiced for the full B&amp;B rate, as well.[/li_item][/checklist][/fusion_text][/two_third][one_sixth last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][/one_sixth][one_sixth last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][/one_sixth][two_third last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][fusion_text]\r\n<h3 style=\"text-align: justify;\">Check-in Times</h3>\r\n<span style=\"font-size: 12pt;\">[checklist icon=\"fa-star-o\" iconcolor=\"\" circle=\"\" circlecolor=\"\" size=\"13px\" class=\"\" id=\"\"]\r\n[li_item icon=\"\"]Check-in Time is from 12h00 to 18h00 (Late arrivals must be arranged before hand).[/li_item]\r\n[li_item icon=\"\"]Check-out Time is before 10h00.[/li_item]\r\n[/checklist]</span>[/fusion_text][/two_third][one_sixth last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][/one_sixth][one_sixth last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][/one_sixth][two_third last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][fusion_text]\r\n<h3 style=\"text-align: justify;\">Payment Terms</h3>\r\n<p style=\"text-align: justify;\"><span style=\"font-size: 12pt;\">[checklist icon=\"fa-star-o\" iconcolor=\"\" circle=\"\" circlecolor=\"\" size=\"13px\" class=\"\" id=\"\"]\r\n[li_item icon=\"\"]Rates are inclusive of <strong>14%</strong> VAT.[/li_item]\r\n[li_item icon=\"\"]Payment must be made via <strong>Bank Transfer</strong>, alternatively, <strong>Cash</strong> may be accepted by prior arrangement.[/li_item]\r\n[li_item icon=\"\"]We no longer accept Cheques.[/li_item]\r\n[li_item icon=\"\"]We do not have Credit Card facilities on site.[/li_item]<span style=\"font-size: 12pt;\">\r\n[li_item icon=\"\"]All accommodation must be settled either before or on arrival.[/li_item]\r\n[li_item icon=\"\"]No bookings are guaranteed until your reservation is confirmed, having paid at least a <strong>50% deposit</strong>.[/li_item]\r\n[/checklist]</span></span></p>\r\n[/fusion_text][/two_third][one_sixth last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][/one_sixth][one_sixth last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][/one_sixth][two_third last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][fusion_text]\r\n<h3 style=\"text-align: justify;\">Refunds &amp; Cancelation Terms</h3>\r\n<p style=\"text-align: justify;\"><span style=\"font-size: 12pt;\">[checklist icon=\"fa-star-o\" iconcolor=\"\" circle=\"\" circlecolor=\"\" size=\"13px\" class=\"\" id=\"\"]\r\n[li_item icon=\"\"]Guests are liable for the tariff of the full period booked.[/li_item]\r\n[li_item icon=\"\"]No refunds will be given for early departures / late arrivals, or due to weather conditions / power outages<span style=\"text-align: justify;\">.</span>[/li_item]\r\n[li_item icon=\"\"]<span style=\"text-align: justify;\">Cancellation of any booking must be done via email.</span>[/li_item]\r\n[li_item icon=\"\"]<span style=\"text-align: justify;\">If you cancel your reservation 15 days and more, </span><span style=\"text-align: justify;\">before your arrival date, your deposit will be </span><span style=\"text-align: justify;\">r</span><span style=\"text-align: justify;\">efund</span><span style=\"text-align: justify;\">ed</span><span style=\"text-align: justify;\"> less an administration fee of </span>15%.[/li_item]\r\n[li_item icon=\"\"]<span style=\"text-align: justify;\">If you cancel your reservation 14 days and less, before your arrival date, your deposit will become </span>non-refundable.[/li_item]\r\n[li_item icon=\"\"]<span style=\"text-align: justify;\">Payments are not refundable for reservations not cancelled and not taken up.</span>[/li_item]\r\n[/checklist]</span></p>\r\n[/fusion_text][/two_third][one_sixth last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][/one_sixth][one_sixth last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][/one_sixth][two_third last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][fusion_text]\r\n<h3><span style=\"font-size: 12pt;\">General Terms</span></h3>\r\n[checklist icon=\"fa-star-o\" iconcolor=\"\" circle=\"\" circlecolor=\"\" size=\"13px\" class=\"\" id=\"\"]\r\n[li_item icon=\"\"]A reservation may not be transferred.[/li_item]\r\n[li_item icon=\"\"]Bookings are for holiday purposes only and cannot give rise to a tenancy.[/li_item]\r\n[li_item icon=\"\"]Persons occupying the lodge may not exceed the number of persons indicated upon booking.[/li_item]\r\n[li_item icon=\"\"]During nights the all doors must be locked. Please remember to lock the door behind you and to remove the key.[/li_item]\r\n[li_item icon=\"\"]Please leave the Lodge reasonable tidy and clean after use.[/li_item]\r\n[li_item icon=\"\"]We do not have a Laundry Service.[/li_item]\r\n[li_item icon=\"\"]Out of respect for all guests, and the fact that we are in a conservancy, noise must be kept down to a comfortable level especially between the hours 22h00 to 08h00.[/li_item]\r\n[li_item icon=\"\"]Please keep furniture, fixtures and fittings in the same state of repair and condition as at the beginning of your stay. In the event of any damage to furniture, fixtures or fittings, you may be held liable for the replacement value or repair costs. This includes damage to the pool area.[/li_item]\r\n[li_item icon=\"\"]The use of open fires and the burning of any unprotected candles or fuel burning lanterns, in or around the Lodge, will not be permitted.[/li_item]\r\n[li_item icon=\"\"]We operate a non-smoking policy throughout the Lodge. You are welcome to smoke outside the house, where ashtrays are provided.[/li_item]\r\n[li_item icon=\"\"]Guests may not bring pets or other animals onto the premises.[/li_item]\r\n[li_item icon=\"\"]The use or sale of any illegal substance in the Lodge or on surrounding property is not permissible.[/li_item]\r\n[li_item icon=\"\"]Right of admission is reserved.[/li_item]\r\n[li_item icon=\"\"]We reserve the right to eject a guest/guests from the Lodge if they are not conducting themselves in an appropriate and/or acceptable manner to the building and/or other residents or staff.[/li_item]\r\n[li_item icon=\"\"]Swimming Pool - The premises contains an unsupervised, open pool which may be used at the guests\' own risk.[/li_item]\r\n[/checklist][/fusion_text][/two_third][one_sixth last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][/one_sixth]', 'T&Cs', '', 'inherit', 'closed', 'closed', '', '984-revision-v1', '', '', '2017-09-18 11:07:20', '2017-09-18 09:07:20', '', 984, 'http://msla.co.za/lodge/984-revision-v1/', 0, 'revision', '', 0);
INSERT INTO `wp_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(1353, 1, '2017-09-18 11:09:56', '2017-09-18 09:09:56', '[fullwidth background_color=\"\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding_top=\"20\" padding_bottom=\"20\" padding_left=\"0\" padding_right=\"0\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][title size=\"1\" content_align=\"right\" style_type=\"default\" sep_color=\"\" margin_top=\"\" margin_bottom=\"\" class=\"\" id=\"\"]Terms &amp; Conditions[/title][/fullwidth][one_sixth last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][/one_sixth][two_third last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][fusion_text]\r\n<h3><span style=\"font-size: 12pt;\">Conditions you need to know before booking.</span></h3>\r\n<span style=\"font-size: 12pt;\">[checklist icon=\"fa-star-o\" iconcolor=\"\" circle=\"\" circlecolor=\"\" size=\"13px\" class=\"\" id=\"\"]\r\n[li_item icon=\"\"]By default, the lodge and bedrooms are not serviced, however <a href=\"http://msla.co.za/lodge/rates/\">Cleaning Services</a> are available as an optional extra.[/li_item]\r\n[li_item icon=\"\"]When you book into the lodge it is exclusively yours. i.e. We don\'t book out the other rooms unless we have cleared it with you.[/li_item]\r\n[li_item icon=\"\"]Please don’t bring your own Pets.[/li_item]\r\n[li_item icon=\"\"]The lodge is strictly a private guest lodge, for the purposes of accommodation and relaxation for paying guests, and not an events venue for functions, parties, etc.[/li_item]\r\n[/checklist]</span>[/fusion_text][/two_third][one_sixth last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][/one_sixth][one_sixth last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][/one_sixth][two_third last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][fusion_text]\r\n<h3><span style=\"font-size: 12pt;\">Day Visitors</span></h3>\r\n<span style=\"font-size: 12pt;\">[checklist icon=\"fa-star-o\" iconcolor=\"\" circle=\"\" circlecolor=\"\" size=\"13px\" class=\"\" id=\"\"]\r\n</span>[li_item icon=\"\"]Any day visitor/s you invite must first be pre-arranged with management (right of admission does apply) and will be required to sign in before entering upon the property. A <a href=\"http://msla.co.za/lodge/rates/\">Cover Charge</a> will be levied against your account. Should for whatever reason your visitor ending up overnighting on the property, you will be invoiced for the full B&amp;B rate, as well.[/li_item][/checklist][/fusion_text][/two_third][one_sixth last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][/one_sixth][one_sixth last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][/one_sixth][two_third last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][fusion_text]\r\n<h3 style=\"text-align: justify;\">Check-in Times</h3>\r\n<span style=\"font-size: 12pt;\">[checklist icon=\"fa-star-o\" iconcolor=\"\" circle=\"\" circlecolor=\"\" size=\"13px\" class=\"\" id=\"\"]\r\n[li_item icon=\"\"]Check-in Time is from 12h00 to 18h00 (Late arrivals must be arranged before hand).[/li_item]\r\n[li_item icon=\"\"]Check-out Time is before 10h00.[/li_item]\r\n[/checklist]</span>[/fusion_text][/two_third][one_sixth last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][/one_sixth][one_sixth last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][/one_sixth][two_third last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][fusion_text]<h3 style=\"text-align: justify;\">Payment Terms</h3>\r\n<p style=\"text-align: justify;\"><span style=\"font-size: 12pt;\">[checklist icon=\"fa-star-o\" iconcolor=\"\" circle=\"\" circlecolor=\"\" size=\"13px\" class=\"\" id=\"\"]\r\n[li_item icon=\"\"]Rates are inclusive of <strong>14%</strong> VAT.[/li_item]\r\n[li_item icon=\"\"]Payment must be made via <strong>Bank Transfer</strong>, alternatively, <strong>Cash</strong> may be accepted by prior arrangement.[/li_item]\r\n[li_item icon=\"\"]We no longer accept Cheques.[/li_item]\r\n[li_item icon=\"\"]We do not have Credit Card facilities on site.[/li_item]\r\n[li_item icon=\"\"]All accommodation must be settled either before or on arrival.[/li_item]\r\n[li_item icon=\"\"]No bookings are guaranteed until your reservation is confirmed, having paid at least a <strong>50% deposit</strong>.[/li_item]\r\n[/checklist]</span></p>[/fusion_text][/two_third][one_sixth last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][/one_sixth][one_sixth last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][/one_sixth][two_third last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][fusion_text]\r\n<h3 style=\"text-align: justify;\">Refunds &amp; Cancelation Terms</h3>\r\n<p style=\"text-align: justify;\"><span style=\"font-size: 12pt;\">[checklist icon=\"fa-star-o\" iconcolor=\"\" circle=\"\" circlecolor=\"\" size=\"13px\" class=\"\" id=\"\"]\r\n[li_item icon=\"\"]Guests are liable for the tariff of the full period booked.[/li_item]\r\n[li_item icon=\"\"]No refunds will be given for early departures / late arrivals, or due to weather conditions / power outages<span style=\"text-align: justify;\">.</span>[/li_item]\r\n[li_item icon=\"\"]<span style=\"text-align: justify;\">Cancellation of any booking must be done via email.</span>[/li_item]\r\n[li_item icon=\"\"]<span style=\"text-align: justify;\">If you cancel your reservation 15 days and more, </span><span style=\"text-align: justify;\">before your arrival date, your deposit will be </span><span style=\"text-align: justify;\">r</span><span style=\"text-align: justify;\">efund</span><span style=\"text-align: justify;\">ed</span><span style=\"text-align: justify;\"> less an administration fee of </span>15%.[/li_item]\r\n[li_item icon=\"\"]<span style=\"text-align: justify;\">If you cancel your reservation 14 days and less, before your arrival date, your deposit will become </span>non-refundable.[/li_item]\r\n[li_item icon=\"\"]<span style=\"text-align: justify;\">Payments are not refundable for reservations not cancelled and not taken up.</span>[/li_item]\r\n[/checklist]</span></p>\r\n[/fusion_text][/two_third][one_sixth last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][/one_sixth][one_sixth last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][/one_sixth][two_third last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][fusion_text]\r\n<h3><span style=\"font-size: 12pt;\">General Terms</span></h3>\r\n[checklist icon=\"fa-star-o\" iconcolor=\"\" circle=\"\" circlecolor=\"\" size=\"13px\" class=\"\" id=\"\"]\r\n[li_item icon=\"\"]A reservation may not be transferred.[/li_item]\r\n[li_item icon=\"\"]Bookings are for holiday purposes only and cannot give rise to a tenancy.[/li_item]\r\n[li_item icon=\"\"]Persons occupying the lodge may not exceed the number of persons indicated upon booking.[/li_item]\r\n[li_item icon=\"\"]During nights the all doors must be locked. Please remember to lock the door behind you and to remove the key.[/li_item]\r\n[li_item icon=\"\"]Please leave the Lodge reasonable tidy and clean after use.[/li_item]\r\n[li_item icon=\"\"]We do not have a Laundry Service.[/li_item]\r\n[li_item icon=\"\"]Out of respect for all guests, and the fact that we are in a conservancy, noise must be kept down to a comfortable level especially between the hours 22h00 to 08h00.[/li_item]\r\n[li_item icon=\"\"]Please keep furniture, fixtures and fittings in the same state of repair and condition as at the beginning of your stay. In the event of any damage to furniture, fixtures or fittings, you may be held liable for the replacement value or repair costs. This includes damage to the pool area.[/li_item]\r\n[li_item icon=\"\"]The use of open fires and the burning of any unprotected candles or fuel burning lanterns, in or around the Lodge, will not be permitted.[/li_item]\r\n[li_item icon=\"\"]We operate a non-smoking policy throughout the Lodge. You are welcome to smoke outside the house, where ashtrays are provided.[/li_item]\r\n[li_item icon=\"\"]Guests may not bring pets or other animals onto the premises.[/li_item]\r\n[li_item icon=\"\"]The use or sale of any illegal substance in the Lodge or on surrounding property is not permissible.[/li_item]\r\n[li_item icon=\"\"]Right of admission is reserved.[/li_item]\r\n[li_item icon=\"\"]We reserve the right to eject a guest/guests from the Lodge if they are not conducting themselves in an appropriate and/or acceptable manner to the building and/or other residents or staff.[/li_item]\r\n[li_item icon=\"\"]Swimming Pool - The premises contains an unsupervised, open pool which may be used at the guests\' own risk.[/li_item]\r\n[/checklist][/fusion_text][/two_third][one_sixth last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][/one_sixth]', 'T&Cs', '', 'inherit', 'closed', 'closed', '', '984-revision-v1', '', '', '2017-09-18 11:09:56', '2017-09-18 09:09:56', '', 984, 'http://msla.co.za/lodge/984-revision-v1/', 0, 'revision', '', 0),
(1356, 1, '2019-10-15 00:00:10', '2019-10-14 22:00:10', '[fullwidth background_color=\"#f0f0ed\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"20\" padding_bottom=\"20\" padding_left=\"0px\" padding_right=\"0px\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][one_half last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][separator style_type=\"single\" top_margin=\"0\" bottom_margin=\"30\" sep_color=\"#000000\" border_size=\"\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"170px\" alignment=\"center\" class=\"separator-left\" id=\"\"][fusion_text]\n<h1 style=\"text-align: center;\">No Fancy Star Grading\nNo Room Service\nNo Bed Turn-downs\nNo Rose Petals in the Bath water</h1>\n<h1 style=\"text-align: center;\">... just old fashioned homely comforts</h1>\n[/fusion_text][/one_half][one_half last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][fusion_text]\n<h1 style=\"text-align: justify;\">5 BEDROOM FAMILY LODGE</h1>\n<h3 style=\"text-align: justify;\">We are a four season lodge, because there’s always something to celebrate… We offer comfort, relaxation and privacy right in the heart of 1000 Hills. The Forest, the Gardens, the Atmosphere all speak to  Rest  &amp; Relaxation.</h3>\n[/fusion_text][separator style_type=\"single\" top_margin=\"0\" bottom_margin=\"30\" sep_color=\"#000000\" border_size=\"\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"170px\" alignment=\"left\" class=\"separator-left\" id=\"\"][title size=\"1\" content_align=\"right\" style_type=\"default\" sep_color=\"\" margin_top=\"\" margin_bottom=\"\" class=\"\" id=\"\"]\n<h1 style=\"text-align: center;\">Current Offers!</h1>\n[/title][checklist icon=\"fa-sort-amount-desc\" iconcolor=\"\" circle=\"yes\" circlecolor=\"\" size=\"13px\" class=\"\" id=\"\"][li_item icon=\"\"]\n<h3>Book on-line - get 15% OFF your <a href=\"http://msla.co.za/lodge/reservations/\"> Accommodation</a> or...</h3>\n[/li_item][li_item icon=\"\"]\n<h3><a href=\"http://msla.co.za/lodge/reservations/\">Stay 3 days or more</a> - get 25% OFF your Accommodation</h3>\n[/li_item][/checklist][/one_half][/fullwidth][fullwidth background_color=\"#f0f0ed\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"20\" padding_bottom=\"20\" padding_left=\"0px\" padding_right=\"0px\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][one_half last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][fusion_text]\n<h3 style=\"text-align: justify;\">Set in the rolling peaks and valleys of a thousand hills surrounded by a canopy of indigenous trees, you will find that horses still have right of way, we certainly offer the best of both worlds, farm and charm coupled with modern amenities that will have you feeling relaxed and rejuvenated.</h3>\n<h3 style=\"text-align: justify;\">We know that sometimes you are searching for a romantic getaway or maybe a few days away with old friends. Other times you are searching for a place to host a weekend, family reunion or a business retreat. In addition to nightly room rentals, our lodge is also available for meetings, retreats  and makes the perfect place for a wedding party to stay together and get ready for the big day. Regardless, with our five comfortable and cozy guest bedrooms, multiple garden spaces and hideaways, and a  large private deck  where you can take a nap or read a book we definitely have the room for you!</h3>\n<h3 style=\"text-align: justify;\">Evenings are quiet and peaceful taking you far away from the business of city life. This is a unique and memorable country experience. We look forward to having you as a guest!</h3>\n[/fusion_text][/one_half][one_half last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][fusion_text]\n<h3 style=\"text-align: justify;\">Our lodge has been in our family for years and has recently been beautifully renovated. Five rooms all with en-suite showers lead off your own large central lounge, featuring a 36 foot high vaulted ceiling, offering spacious living, dining, and a bar/conversational lounge area which includes a fitted kitchenette, all adding to a sense of homely comfort. Sumptuous meals can be provided on request and served on the bottom deck at the swimming pool.</h3>\n<h3 style=\"text-align: justify;\">Be lulled to sleep by the sound of the waterfall and tinkling stream just outside your window, waking from a peaceful night\'s sleep in a pillow-top bed dressed in luxurious linens to coddle you in ultimate comfort.</h3>\n<h3 style=\"text-align: justify;\">Our property boasts many different species of birds and animals. We have a resident otter, a family of wild bush pigs,  a family of rock rabbits, porcupine, little blue duikers, a variety of different frogs and an abundance of bird life, including the occasional snakes that pass through!</h3>\n[/fusion_text][/one_half][/fullwidth][fullwidth background_color=\"#f0f0ed\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"20\" padding_bottom=\"20\" padding_left=\"0px\" padding_right=\"0px\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][fusion_text]\n<h1 style=\"text-align: center;\">Gallery</h1>\n[/fusion_text][separator style_type=\"single\" top_margin=\"\" bottom_margin=\"40\" sep_color=\"#000000\" border_size=\"\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"170px\" alignment=\"\" class=\"\" id=\"\"][one_sixth last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][/one_sixth][two_third last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][fusion_text]\n<h3 style=\"text-align: justify;\">The Lodge is open, spacious, comfortable and homely. During hot summer days, sit and bask in the sun on the deck  with one of our  picnic specials. In winter, snuggle up with a good book or challenge one another to a friendly board game in the glassed nook area .</h3>\n[/fusion_text][/two_third][one_sixth last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][/one_sixth][/fullwidth][fullwidth background_color=\"#f0f0ed\" background_image=\"http://localhost/assagaylodge/wp-content/uploads/2015/01/Wood_Texture.jpg\" background_parallax=\"fixed\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"30\" padding_bottom=\"10\" padding_left=\"0\" padding_right=\"0\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][recent_works layout=\"grid\" picture_size=\"auto\" boxed_text=\"unboxed\" filters=\"no\" columns=\"3\" column_spacing=\"12\" cat_slug=\"the-lodge\" exclude_cats=\"\" number_posts=\"9\" offset=\"\" excerpt_length=\"35\" strip_html=\"yes\" carousel_layout=\"title_on_rollover\" scroll_items=\"\" autoplay=\"no\" show_nav=\"yes\" mouse_scroll=\"no\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][/recent_works][/fullwidth][fullwidth background_color=\"#f0f0ed\" background_image=\"\" background_parallax=\"fixed\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"20\" padding_bottom=\"20\" padding_left=\"0px\" padding_right=\"0px\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][fusion_text]\n<h1 style=\"text-align: center;\">BEDROOMS</h1>\n[/fusion_text][separator style_type=\"single\" top_margin=\"\" bottom_margin=\"20\" sep_color=\"#000000\" border_size=\"\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"170px\" alignment=\"\" class=\"\" id=\"\"][one_sixth last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][/one_sixth][two_third last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][fusion_text]\n<h3 style=\"text-align: justify;\">When it comes to our bedrooms we’re proud to say we offer something a little more special. One of five  lovingly and tastefully decorated guest rooms. Soft gray decor soothes the senses providing a peaceful, blissfully comfortable rest from your travels and hectic lives.</h3>\n<h3 style=\"text-align: justify;\">Our  bedrooms are spacious, clean, comfortable all en-suite, equipped with either king size or queen size beds. Each room sleeps two guests. The rooms have high ceilings, wall heaters &amp; ceiling fans. Beds all have electric blankets in Winter, 100% cotton percale sheets and thick hyper allergenic microfiber duvets and pillows. All guest rooms are cleaned with organic and green products. Amenities include hairdryers in each room. Three rooms feature King-sized beds  of which two can be  split into two single beds. Two  rooms can therefore be changed into a twin room upon request. Two rooms feature a Queen-sized double bed. These beds cannot be split into twin beds.</h3>\n[/fusion_text][/two_third][one_sixth last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][/one_sixth][/fullwidth][fullwidth background_color=\"\" background_image=\"http://localhost/assagaylodge/wp-content/uploads/2015/01/DSC01516-1148-x-764.jpg\" background_parallax=\"fixed\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"center center\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"20\" padding_bottom=\"20\" padding_left=\"0\" padding_right=\"0\" hundred_percent=\"no\" equal_height_columns=\"yes\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][recent_works layout=\"grid\" picture_size=\"auto\" boxed_text=\"unboxed\" filters=\"no\" columns=\"3\" column_spacing=\"12\" cat_slug=\"bedrooms\" exclude_cats=\"\" number_posts=\"6\" offset=\"\" excerpt_length=\"35\" strip_html=\"yes\" carousel_layout=\"title_on_rollover\" scroll_items=\"\" autoplay=\"no\" show_nav=\"yes\" mouse_scroll=\"no\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][/recent_works][/fullwidth][fullwidth background_color=\"#f0f0ed\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"20\" padding_bottom=\"20\" padding_left=\"0\" padding_right=\"0\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][fusion_text]\n<h1 style=\"text-align: center;\">GARDENS</h1>\n[/fusion_text][separator style_type=\"single\" top_margin=\"\" bottom_margin=\"20\" sep_color=\"#000000\" border_size=\"\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"170px\" alignment=\"\" class=\"\" id=\"\"][one_sixth last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][/one_sixth][two_third last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][fusion_text]\n<h3 style=\"text-align: justify;\">The garden is large and offers many secluded spots to lose yourself in a book with a glass of wine underneath the shade of a tree, listening to the sounds of the birds and smelling the beautiful flowers.</h3>\n[/fusion_text][/two_third][one_sixth last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][/one_sixth][recent_works layout=\"grid\" picture_size=\"auto\" boxed_text=\"boxed\" filters=\"no\" columns=\"3\" column_spacing=\"12\" cat_slug=\"gardens\" exclude_cats=\"\" number_posts=\"9\" offset=\"\" excerpt_length=\"35\" strip_html=\"yes\" carousel_layout=\"title_on_rollover\" scroll_items=\"\" autoplay=\"no\" show_nav=\"yes\" mouse_scroll=\"no\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][/recent_works][/fullwidth][fullwidth background_color=\"#ffffff\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"65px\" padding_bottom=\"65px\" padding_left=\"0px\" padding_right=\"0px\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][button link=\"https://msla.co.za/lodge/reservations/\" color=\"default\" size=\"xlarge\" stretch=\"default\" type=\"3d\" shape=\"round\" target=\"_self\" title=\"\" gradient_colors=\"#f0f0ed|#f0f0ed\" gradient_hover_colors=\"#6666a4|#6666a4\" accent_color=\"#ffffff\" accent_hover_color=\"#ffffff\" bevel_color=\"\" border_width=\"0px\" icon=\"\" icon_position=\"left\" icon_divider=\"no\" modal=\"\" animation_type=\"0\" animation_direction=\"left\" animation_speed=\"1\" animation_offset=\"\" alignment=\"center\" class=\"\" id=\"\"]Make A Reservation Enquiry[/button][/fullwidth]', 'Home', '', 'inherit', 'closed', 'closed', '', '7-revision-v1', '', '', '2019-10-15 00:00:10', '2019-10-14 22:00:10', '', 7, 'https://msla.co.za/lodge/7-revision-v1/', 0, 'revision', '', 0),
(1358, 1, '2019-11-01 23:46:31', '2019-11-01 21:46:31', '', 'reservations', '', 'inherit', 'open', 'closed', '', 'homepage-background-01', '', '', '2019-11-13 14:24:09', '2019-11-13 12:24:09', '', 24, 'https://msla.co.za/lodge/wp-content/uploads/2019/11/homepage-background-01.jpg', 0, 'attachment', 'image/jpeg', 0),
(1361, 1, '2019-11-13 13:53:59', '2019-11-13 11:53:59', '[fusion_builder_container background_color=\"\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"70px\" padding_bottom=\"75px\" padding_left=\"\"    padding_right=\"\"    hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][fusion_builder_row][fusion_builder_column type=\"1_1\" background_position=\"left top\" background_color=\"\" border_size=\"\" border_color=\"\" border_style=\"solid\" spacing=\"yes\" background_image=\"\" background_repeat=\"no-repeat\" padding=\"\" margin_top=\"0px\" margin_bottom=\"0px\" class=\"\" id=\"\" animation_type=\"\" animation_speed=\"0.3\" animation_direction=\"left\" hide_on_mobile=\"no\" center_content=\"no\" min_height=\"none\"][fusion_text]\r\n<h3>Thank you for your booking enquiry.</h3>\r\n<h3>We will get back to you as soon as possible and let you know if we can definitely confirm availability for the date/s requested.</h3>\r\n[/fusion_text][/fusion_builder_column][fusion_builder_column type=\"1_2\" last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][fusion_text]\r\n<h1>Contact Us</h1>\r\n<h2>Send us a message.</h2>\r\n[/fusion_text][fusion_text][contact-form-7 id=\"246\" title=\"Contact form 1\"][/fusion_text][/fusion_builder_column][fusion_builder_column type=\"1_2\" last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][fusion_text]\r\n<h1>Where are we?</h1>\r\n<h2>4 Williams Road\r\nAssagay, Hillcrest\r\nKwaZulu Natal</h2>\r\n<h1>Contact</h1>\r\n<h2>0317656046 or 0317655961</h2>\r\n[/fusion_text][fusion_separator style_type=\"none\" top_margin=\"\" bottom_margin=\"20\" sep_color=\"\" border_size=\"\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"\" alignment=\"\" class=\"\" id=\"\"/][fusion_accordion divider_line=\"\" class=\"\" id=\"\"][fusion_toggle title=\"GPS Location\" open=\"no\"]\r\n\r\n<strong>GPS: Latitude (South) -29.771865, Longitude (East) 30.736892</strong>\r\n\r\n[/fusion_toggle][fusion_toggle title=\"Directions from King Shaka Airport / Durban\" open=\"no\"]\r\n\r\nFrom King Shaka Airport take the N2 South bound towards Durban, at the 3 level interchange be sure to take the N3 turn off towards Pietermaritzburg. Proceed through the Marionhill toll plaza and take the first off ramp marked Shongweni / Assagay / Hillcrest. Turn right towards Hillcrest into Kassier Road which will take you over the N3 and M13, keep on this road, pass the Hillcrest Private Hospital and Alverstone turn off. Remain on Kassier Road, for about 2-3km and turn into Assagay Road, which is just after Assagay Crescent.\r\n\r\nTake the left turn into Assagay Road. Head up the rise. Turn left into Castle Road, carry down the dip for about 500m and cross a small water-bridge. Turn first right into Lello Road, just after the bridge. Continue on Lello Road, the road dips and briefly climbs, the valley falling away to your right. Finally, turn left into Williams Road (it’s essentially the first left turn on Lello Road), Continue down Williams Road for about 800m. On your right you will come to the entrance of the farm called `Fourever` No 4 Williams Road. There’s a 1000 Hills Tourism Sign outside. A wooden fence and silver gate. Welcome to Assagay Forest Lodge.\r\n\r\n[/fusion_toggle][fusion_toggle title=\"Directions from Pietermaritzburg\" open=\"no\"]\r\n\r\nFrom Pietermaritzburg take the N3 towards Durban. After the Drummond turnoff the N3 makes a steep climb. Don\'t take the Alternative route but stay on the N3. Take the next off ramp marked Shongweni / Assagay / Hillcrest. Turn left towards Hillcrest into Kassier Road which will take you passed the Polo fields on your left and a Petrol Station on your right and over then over the M13, keep on this road, pass the Hillcrest Private Hospital and Alverstone turn off. Remain on Kassier Road, for about 2-3km and turn into Assagay Road, which is just after Assagay Crescent.\r\n\r\nTake the left turn into Assagay Road. Head up the rise. Turn left into Castle Road, carry down the dip for about 500m and cross a small water-bridge. Turn first right into Lello Road, just after the bridge. Continue on Lello Road, the road dips and briefly climbs, the valley falling away to your right. Finally, turn left into Williams Road (it’s essentially the first left turn on Lello Road), Continue down Williams Road for about 800m. On your right you will come to the entrance of the farm called `Fourever` No 4 Williams Road. There’s a 1000 Hills Tourism Sign outside. A wooden fence and silver gate. Welcome to Assagay Lodge.\r\n\r\n[/fusion_toggle][fusion_toggle title=\"Things to do\" open=\"no\"]\r\n\r\nThere is plenty to do.\r\n\r\nDurban Sea Side - 25kms\r\nGame reserve - 15 kms\r\nAnimal Farm - 2kms\r\nBrewery - 4kms\r\nShongweni Market - 6kms\r\nShongweni Dam - 8kms\r\nValley 1000 Hills , Zulu dancing and Croc farm - 4kms\r\nDrakensberg Mountains - 3 hours\r\nHillcrest Shopping Centre - 3 kms\r\nWaterfall Shopping Centre - 8kms\r\nPavilion Shopping Centre - 20 kms\r\nGateway Shopping Centre - 40kms\r\n\r\n[/fusion_toggle][/fusion_accordion][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container background_color=\"\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"0px\" padding_bottom=\"0px\" padding_left=\"0px\" padding_right=\"0px\" hundred_percent=\"yes\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][fusion_builder_row][fusion_builder_column type=\"1_1\" background_position=\"left top\" background_color=\"\" border_size=\"\" border_color=\"\" border_style=\"solid\" spacing=\"yes\" background_image=\"\" background_repeat=\"no-repeat\" padding=\"\" margin_top=\"0px\" margin_bottom=\"0px\" class=\"\" id=\"\" animation_type=\"\" animation_speed=\"0.3\" animation_direction=\"left\" hide_on_mobile=\"no\" center_content=\"no\" min_height=\"none\"][fusion_map address=\"Assagay Forest Lodge\" type=\"roadmap\" map_style=\"default\" overlay_color=\"#6666a4\" infobox=\"default\" infobox_background_color=\"rgba(102,102,164,.8)\" infobox_text_color=\"#ffffff\" infobox_content=\"\" icon=\"http://theme-fusion.com/avada_demos_xml/travel/wp-content/uploads/2015/01/map.png\" width=\"100%\" height=\"700px\" zoom=\"15\" scrollwheel=\"yes\" scale=\"no\" zoom_pancontrol=\"yes\" animation=\"no\" popup=\"no\" class=\"\" id=\"\"][/fusion_map][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container]', 'Thank You', '', 'inherit', 'closed', 'closed', '', '1327-revision-v1', '', '', '2019-11-13 13:53:59', '2019-11-13 11:53:59', '', 1327, 'https://msla.co.za/lodge/1327-revision-v1/', 0, 'revision', '', 0),
(1362, 1, '2019-11-13 13:53:59', '2019-11-13 11:53:59', '[fusion_builder_container background_color=\"\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding_top=\"20\" padding_bottom=\"20\" padding_left=\"\" padding_right=\"\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][fusion_builder_row][fusion_builder_column type=\"1_1\" last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][fusion_text][dopbsp id=\"1\" lang=\"en\"][/fusion_text][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container]', 'Reservations', '', 'inherit', 'closed', 'closed', '', '1182-revision-v1', '', '', '2019-11-13 13:53:59', '2019-11-13 11:53:59', '', 1182, 'https://msla.co.za/lodge/1182-revision-v1/', 0, 'revision', '', 0);
INSERT INTO `wp_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(1363, 1, '2019-11-13 13:53:59', '2019-11-13 11:53:59', '[fusion_builder_container background_color=\"\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding_top=\"20\" padding_bottom=\"20\" padding_left=\"0\" padding_right=\"0\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][fusion_builder_row][fusion_builder_column type=\"1_1\" background_position=\"left top\" background_color=\"\" border_size=\"\" border_color=\"\" border_style=\"solid\" spacing=\"yes\" background_image=\"\" background_repeat=\"no-repeat\" padding=\"\" margin_top=\"0px\" margin_bottom=\"0px\" class=\"\" id=\"\" animation_type=\"\" animation_speed=\"0.3\" animation_direction=\"left\" hide_on_mobile=\"no\" center_content=\"no\" min_height=\"none\"][fusion_title size=\"1\" content_align=\"right\" style_type=\"default\" sep_color=\"\" margin_top=\"\" margin_bottom=\"\" class=\"\" id=\"\"]Rates &amp; Tariffs[/fusion_title][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container hundred_percent=\"yes\" overflow=\"visible\"][fusion_builder_row][fusion_builder_column type=\"1_1\" background_position=\"left top\" background_color=\"\" border_size=\"\" border_color=\"\" border_style=\"solid\" spacing=\"yes\" background_image=\"\" background_repeat=\"no-repeat\" padding=\"\" margin_top=\"0px\" margin_bottom=\"0px\" class=\"\" id=\"\" animation_type=\"\" animation_speed=\"0.3\" animation_direction=\"left\" hide_on_mobile=\"no\" center_content=\"no\" min_height=\"none\"][fusion_text]\r\n<table style=\"width: 100%;\" cellspacing=\"10\" cellpadding=\"5\">\r\n<tbody>\r\n<tr>\r\n<td style=\"text-align: right;\" colspan=\"2\"><span style=\"font-size: 10pt;\">ALL PRICES INCLUDE VAT<strong> </strong></span></td>\r\n</tr>\r\n<tr>\r\n<td colspan=\"2\"><span style=\"font-size: 10pt;\"> </span></td>\r\n</tr>\r\n<tr>\r\n<td colspan=\"2\"><span style=\"font-size: 12pt;\"><strong>Self-Catering / Self-Servicing Accommodation</strong></span></td>\r\n</tr>\r\n<tr>\r\n<td colspan=\"2\"><span style=\"font-size: 12pt;\"><strong> </strong></span></td>\r\n</tr>\r\n<tr>\r\n<td><span style=\"font-size: 12pt;\"><strong>Accommodation</strong> </span></td>\r\n<td><span style=\"font-size: 12pt;\"><strong>*R 580</strong> per person per night</span></td>\r\n</tr>\r\n<tr>\r\n<td></td>\r\n<td><span style=\"font-size: 12pt;\"><strong> </strong></span></td>\r\n</tr>\r\n<tr>\r\n<td><span style=\"font-size: 12pt;\">* <strong>Specials</strong></span></td>\r\n<td><span style=\"font-size: 12pt;\"><strong>15% OFF</strong> Accommodation (1 - 2 days)</span></td>\r\n</tr>\r\n<tr>\r\n<td><span style=\"font-size: 12pt;\"> </span></td>\r\n<td><span style=\"font-size: 12pt;\"><strong>25% OFF</strong> Accommodation - Long stays (3 days &amp; more)</span></td>\r\n</tr>\r\n<tr>\r\n<td><strong><span style=\"font-size: 12pt;\"> </span></strong></td>\r\n<td><span style=\"font-size: 12pt;\"><strong> </strong></span></td>\r\n</tr>\r\n<tr>\r\n<td><strong><span style=\"font-size: 12pt;\">Servicing Options</span></strong></td>\r\n<td><span style=\"font-size: 12pt;\"><strong> </strong></span></td>\r\n</tr>\r\n<tr>\r\n<td><strong><span style=\"font-size: 12pt;\"> </span></strong></td>\r\n<td><span style=\"font-size: 12pt;\"><strong> </strong></span></td>\r\n</tr>\r\n<tr>\r\n<td><span style=\"font-size: 12pt;\">Lodge Only Servicing (Optional) </span></td>\r\n<td><span style=\"font-size: 12pt;\"><strong>R  25</strong> per person per day</span></td>\r\n</tr>\r\n<tr>\r\n<td><span style=\"font-size: 12pt;\">Room Only Servicing (Optional) </span></td>\r\n<td><span style=\"font-size: 12pt;\"><strong>R  25</strong> per person per day</span></td>\r\n</tr>\r\n<tr>\r\n<td><span style=\"font-size: 12pt;\"> </span></td>\r\n<td><span style=\"font-size: 12pt;\"><strong> </strong></span></td>\r\n</tr>\r\n<tr>\r\n<td colspan=\"2\"><span style=\"font-size: 12pt;\"><span style=\"font-size: 12pt;\"><strong>Catering Options</strong></span> </span><span style=\"font-size: 12pt;\"><strong> </strong></span></td>\r\n</tr>\r\n<tr>\r\n<td colspan=\"2\"><span style=\"font-size: 12pt;\"><span style=\"font-size: 12pt;\"><strong> </strong></span></span></td>\r\n</tr>\r\n<tr>\r\n<td><span style=\"font-size: 12pt;\"> <span style=\"font-size: 12pt;\">Breakfast </span></span></td>\r\n<td><span style=\"font-size: 12pt;\"><strong> </strong><span style=\"font-size: 12pt;\"><strong>R  75</strong> per person</span></span></td>\r\n</tr>\r\n<tr>\r\n<td><span style=\"font-size: 12pt;\"> <span style=\"font-size: 12pt;\">Dinners</span></span></td>\r\n<td><span style=\"font-size: 12pt;\"><span style=\"font-size: 12pt;\"><strong>R 180 </strong>per person</span></span></td>\r\n</tr>\r\n<tr>\r\n<td><span style=\"font-size: 12pt;\"> </span></td>\r\n<td><span style=\"font-size: 12pt;\"><strong> </strong></span></td>\r\n</tr>\r\n<tr>\r\n<td><strong><span style=\"font-size: 12pt;\">Others</span></strong></td>\r\n<td><span style=\"font-size: 12pt;\"><strong> </strong></span></td>\r\n</tr>\r\n<tr>\r\n<td><strong><span style=\"font-size: 12pt;\"> </span></strong></td>\r\n<td><span style=\"font-size: 12pt;\"><strong> </strong></span></td>\r\n</tr>\r\n<tr>\r\n<td><span style=\"font-size: 12pt;\">Gate Remote</span></td>\r\n<td><span style=\"font-size: 12pt;\"><strong>R 200 </strong>deposit (may be requested)</span></td>\r\n</tr>\r\n<tr>\r\n<td><span style=\"font-size: 12pt;\">Gas Braai</span></td>\r\n<td><span style=\"font-size: 12pt;\"><strong>R  25</strong> per person per day</span></td>\r\n</tr>\r\n<tr>\r\n<td><span style=\"font-size: 12pt;\">Day Visitors / Guests</span></td>\r\n<td><span style=\"font-size: 12pt;\"><strong>R  50 </strong>per person per day</span></td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n[/fusion_text][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container]', 'Rates', '', 'inherit', 'closed', 'closed', '', '1121-revision-v1', '', '', '2019-11-13 13:53:59', '2019-11-13 11:53:59', '', 1121, 'https://msla.co.za/lodge/1121-revision-v1/', 0, 'revision', '', 0),
(1364, 1, '2019-11-13 13:53:59', '2019-11-13 11:53:59', '[fusion_builder_container background_color=\"\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding_top=\"20\" padding_bottom=\"20\" padding_left=\"\" padding_right=\"\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][fusion_builder_row][fusion_builder_column type=\"1_1\" background_position=\"left top\" background_color=\"\" border_size=\"\" border_color=\"\" border_style=\"solid\" spacing=\"yes\" background_image=\"\" background_repeat=\"no-repeat\" padding=\"\" margin_top=\"0px\" margin_bottom=\"0px\" class=\"\" id=\"\" animation_type=\"\" animation_speed=\"0.3\" animation_direction=\"left\" hide_on_mobile=\"no\" center_content=\"no\" min_height=\"none\"][fusion_title size=\"1\" content_align=\"right\" style_type=\"default\" sep_color=\"\" margin_top=\"\" margin_bottom=\"\" class=\"\" id=\"\"]Send Us Your Booking Enquiry[/fusion_title][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container background_color=\"\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding_top=\"20\" padding_bottom=\"20\" padding_left=\"\" padding_right=\"\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][fusion_builder_row][fusion_builder_column type=\"1_6\" last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][/fusion_builder_column][fusion_builder_column type=\"2_3\" last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][fusion_text][contact-form-7 id=\"1276\" title=\"Lodge Enquiry\"][/fusion_text][/fusion_builder_column][fusion_builder_column type=\"1_6\" last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container]', 'Booking Form', '', 'inherit', 'closed', 'closed', '', '851-revision-v1', '', '', '2019-11-13 13:53:59', '2019-11-13 11:53:59', '', 851, 'https://msla.co.za/lodge/851-revision-v1/', 0, 'revision', '', 0),
(1365, 1, '2019-11-13 13:53:59', '2019-11-13 11:53:59', '<div>\r\n<table class=\" alignleft\" style=\"width: 100%;\" cellspacing=\"0\" cellpadding=\"0\">\r\n<tbody>\r\n<tr style=\"height: 25px;\">\r\n<td style=\"width: 25%; height: 25px; text-align: left; vertical-align: middle;\"><span style=\"color: #99ccff; font-family: arial,helvetica,sans-serif; font-size: 12pt;\"><strong>RESERVATION DETAILS</strong></span></td>\r\n<td style=\"width: 25%; height: 25px; text-align: left; vertical-align: middle;\"><span style=\"color: #99ccff; font-family: arial,helvetica,sans-serif; font-size: 8pt;\"><span style=\"background-color: #0191c8;\">[fusion_builder_container hundred_percent=\"yes\" overflow=\"visible\"][fusion_builder_row][fusion_builder_column type=\"1_1\" background_position=\"left top\" background_color=\"\" border_size=\"\" border_color=\"\" border_style=\"solid\" spacing=\"yes\" background_image=\"\" background_repeat=\"no-repeat\" padding=\"\" margin_top=\"0px\" margin_bottom=\"0px\" class=\"\" id=\"\" animation_type=\"\" animation_speed=\"0.3\" animation_direction=\"left\" hide_on_mobile=\"no\" center_content=\"no\" min_height=\"none\"][error error_title=\"Errors found in the form\" error_message=\"There is a problem.\"]</span></span></td>\r\n<td style=\"width: 25%; height: 25px; text-align: left; vertical-align: middle;\"><span style=\"color: #99ccff; font-family: arial,helvetica,sans-serif; font-size: 12pt;\"> <strong><span style=\"color: #99ccff; font-family: Arial;\">ESTIMATED PRICE INCL VAT</span></strong></span></td>\r\n<td style=\"width: 25%; height: 25px; vertical-align: middle;\"><span style=\"color: #99ccff; font-family: arial,helvetica,sans-serif; font-size: 12pt;\"><span style=\"font-family: arial,helvetica,sans-serif;\">[show_price]</span><strong> </strong></span></td>\r\n</tr>\r\n<tr style=\"height: 25px;\">\r\n<td style=\"width: 25%; height: 25px; text-align: left; vertical-align: middle;\"><span style=\"color: #99ccff; font-family: arial,helvetica,sans-serif; font-size: 10pt;\"> </span></td>\r\n<td style=\"width: 25%; height: 25px; text-align: left; vertical-align: middle;\"><span style=\"color: #99ccff; font-family: arial,helvetica,sans-serif; font-size: 10pt;\"> </span></td>\r\n<td style=\"width: 25%; height: 25px; text-align: left; vertical-align: middle;\"><span style=\"color: #99ccff; font-family: arial,helvetica,sans-serif; font-size: 10pt;\"> </span></td>\r\n<td style=\"width: 25%; height: 25px; text-align: left; vertical-align: middle;\"><span style=\"color: #99ccff; font-family: arial,helvetica,sans-serif; font-size: 10pt;\"> <span style=\"color: #99ccff; font-family: arial,helvetica,sans-serif; font-size: 12pt;\"><strong><span style=\"font-family: Arial;\">[hidden resource 854]</span></strong></span></span></td>\r\n</tr>\r\n<tr style=\"height: 25px;\">\r\n<td style=\"width: 25%; height: 25px; text-align: left; vertical-align: middle;\"><span style=\"color: #99ccff; font-family: arial,helvetica,sans-serif; font-size: 10pt;\">Arrival Date</span></td>\r\n<td style=\"width: 25%; height: 25px; text-align: left; vertical-align: middle;\"><span style=\"color: #99ccff; font-family: arial,helvetica,sans-serif; font-size: 10pt;\">[date-from value=\"+1\"]</span></td>\r\n<td style=\"width: 25%; height: 25px; text-align: left; vertical-align: middle;\"><span style=\"color: #99ccff; font-family: arial,helvetica,sans-serif; font-size: 10pt;\">Departure Date</span></td>\r\n<td style=\"width: 20%; height: 25px; text-align: left; vertical-align: middle;\"><span style=\"color: #99ccff; font-family: arial,helvetica,sans-serif; font-size: 10pt;\">[date-to value=\"+2\"]</span></td>\r\n</tr>\r\n<tr style=\"height: 25px;\">\r\n<td style=\"width: 25%; height: 25px; text-align: left; vertical-align: middle;\"><span style=\"color: #99ccff; font-family: arial,helvetica,sans-serif; font-size: 10pt;\">Number Of Guests (excluding children under 2yrs)</span></td>\r\n<td style=\"width: 25%; height: 25px; text-align: left; vertical-align: middle;\"><span style=\"color: #99ccff; font-family: arial,helvetica,sans-serif; font-size: 10pt;\">[adults 1 10 value=\"1\"]</span></td>\r\n<td style=\"width: 25%; height: 25px; text-align: left; vertical-align: middle;\"><span style=\"color: #99ccff; font-family: arial,helvetica,sans-serif; font-size: 10pt;\">Children Under 2yrs (Own Bedding)</span></td>\r\n<td style=\"width: 25%; height: 25px; text-align: left; vertical-align: middle;\"><span style=\"color: #99ccff; font-family: arial,helvetica,sans-serif; font-size: 10pt;\">...Stay Free</span></td>\r\n</tr>\r\n<tr style=\"height: 25px;\">\r\n<td style=\"width: 25%; height: 25px; text-align: left; vertical-align: middle;\"><span style=\"color: #99ccff;\"> </span></td>\r\n<td style=\"width: 25%; height: 25px; text-align: left; vertical-align: middle;\"><span style=\"color: #99ccff;\"> </span></td>\r\n<td style=\"width: 25%; height: 25px; text-align: left; vertical-align: middle;\"><span style=\"color: #99ccff;\"> </span></td>\r\n<td style=\"width: 25%; height: 25px; text-align: left; vertical-align: middle;\"><span style=\"color: #99ccff;\"> </span></td>\r\n</tr>\r\n<tr style=\"height: 25px;\">\r\n<td style=\"width: 25%; height: 25px; text-align: left; vertical-align: middle;\"><span style=\"color: #99ccff; font-family: arial,helvetica,sans-serif; font-size: 10pt;\"><span style=\"font-family: arial,helvetica,sans-serif; font-size: 12pt;\"><strong>MEAL OPTIONS</strong></span></span></td>\r\n<td style=\"width: 25%; height: 25px; text-align: left; vertical-align: middle;\"><span style=\"color: #99ccff;\"> </span></td>\r\n<td style=\"width: 25%; height: 25px; text-align: left; vertical-align: middle;\"><span style=\"color: #99ccff; font-family: arial,helvetica,sans-serif; font-size: 10pt;\"><span style=\"font-family: arial,helvetica,sans-serif; font-size: 12pt;\"><strong>CLEANING SERVICE OPTIONS</strong></span></span></td>\r\n<td style=\"width: 25%; height: 25px; text-align: left; vertical-align: middle;\"><span style=\"color: #99ccff;\"> </span></td>\r\n</tr>\r\n<tr style=\"height: 25px;\">\r\n<td style=\"width: 25%; height: 25px; text-align: left; vertical-align: middle;\"><span style=\"color: #99ccff; font-family: arial,helvetica,sans-serif; font-size: 10pt;\">Include Morning Breakfast</span></td>\r\n<td style=\"width: 25%; height: 25px; text-align: left; vertical-align: middle;\"><span style=\"color: #99ccff; font-family: arial,helvetica,sans-serif; font-size: 10pt;\">[custom id=\"8\"]</span></td>\r\n<td style=\"width: 25%; height: 25px; text-align: left; vertical-align: middle;\"><span style=\"color: #99ccff; font-family: arial,helvetica,sans-serif; font-size: 10pt;\">Include Services for Lodge (excluding room/s)</span></td>\r\n<td style=\"width: 25%; height: 25px; text-align: left; vertical-align: middle;\"><span style=\"color: #99ccff; font-family: arial,helvetica,sans-serif; font-size: 10pt;\">[custom id=\"6\"]</span></td>\r\n</tr>\r\n<tr style=\"height: 25px;\">\r\n<td style=\"width: 25%; height: 25px; text-align: left; vertical-align: middle;\"><span style=\"color: #99ccff; font-family: arial,helvetica,sans-serif; font-size: 12pt;\"><span style=\"font-family: arial,helvetica,sans-serif; font-size: 10pt;\">Include Evening Dinner</span></span></td>\r\n<td style=\"width: 25%; height: 25px; text-align: left; vertical-align: middle;\"><span style=\"color: #99ccff; font-family: arial,helvetica,sans-serif; font-size: 12pt;\"><span style=\"font-family: arial,helvetica,sans-serif; font-size: 10pt;\">[custom id=\"9\"]</span></span></td>\r\n<td style=\"width: 25%; height: 25px; text-align: left; vertical-align: middle;\"><span style=\"color: #99ccff;\"><span style=\"color: #99ccff; font-family: arial,helvetica,sans-serif; font-size: 10pt;\">Include Services for Rooms</span></span></td>\r\n<td style=\"width: 25%; height: 25px; text-align: left; vertical-align: middle;\"><span style=\"color: #99ccff;\"><span style=\"color: #99ccff; font-family: arial,helvetica,sans-serif; font-size: 10pt;\">[custom id=\"7\"]</span></span></td>\r\n</tr>\r\n<tr style=\"height: 25px;\">\r\n<td style=\"width: 25%; height: 25px; text-align: left; vertical-align: middle;\" colspan=\"4\"><span style=\"color: #99ccff;\"> </span></td>\r\n</tr>\r\n<tr style=\"height: 25px;\">\r\n<td style=\"width: 25%; height: 25px; text-align: left; vertical-align: middle;\" colspan=\"4\"><span style=\"color: #99ccff; font-family: arial,helvetica,sans-serif; font-size: 12pt;\"><strong>PERSONAL DETAILS</strong></span></td>\r\n</tr>\r\n<tr style=\"height: 25px;\">\r\n<td style=\"width: 25%; height: 25px; text-align: left; vertical-align: middle;\"><span style=\"color: #99ccff; font-family: arial,helvetica,sans-serif; font-size: 10pt;\">Name &amp; Surname</span></td>\r\n<td style=\"width: 25%; height: 25px; text-align: left; vertical-align: middle;\"><span style=\"color: #99ccff; font-family: arial,helvetica,sans-serif; font-size: 10pt;\">[thename]</span></td>\r\n<td style=\"width: 25%; height: 25px; text-align: left; vertical-align: middle;\"><span style=\"color: #99ccff; font-family: arial,helvetica,sans-serif; font-size: 10pt;\">Email Address</span></td>\r\n<td style=\"width: 25%; height: 25px; text-align: left; vertical-align: middle;\"><span style=\"color: #99ccff; font-family: arial,helvetica,sans-serif; font-size: 10pt;\">[email]</span></td>\r\n</tr>\r\n<tr style=\"height: 25px;\">\r\n<td style=\"width: 25%; height: 25px; text-align: left; vertical-align: middle;\"><span style=\"color: #99ccff; font-family: arial,helvetica,sans-serif; font-size: 10pt;\">Country</span></td>\r\n<td style=\"width: 25%; height: 25px; text-align: left; vertical-align: middle;\"><span style=\"color: #99ccff; font-family: arial,helvetica,sans-serif; font-size: 10pt;\">[country value=\"ZA\"]</span></td>\r\n<td style=\"width: 25%; height: 25px; text-align: left; vertical-align: middle;\"><span style=\"color: #99ccff; font-family: arial,helvetica,sans-serif; font-size: 10pt;\">Contact Phone</span></td>\r\n<td style=\"width: 25%; height: 25px; text-align: left; vertical-align: middle;\"><span style=\"color: #99ccff; font-family: arial,helvetica,sans-serif; font-size: 10pt;\">[custom text Phone *]</span></td>\r\n</tr>\r\n<tr style=\"height: 25px;\">\r\n<td style=\"width: 25%; height: 25px; text-align: left; vertical-align: middle;\"><span style=\"color: #99ccff; font-family: arial,helvetica,sans-serif; font-size: 10pt;\"> </span></td>\r\n<td style=\"width: 25%; height: 25px; text-align: left; vertical-align: middle;\"><span style=\"color: #99ccff; font-family: arial,helvetica,sans-serif; font-size: 10pt;\"> </span></td>\r\n<td style=\"width: 25%; height: 25px; text-align: left; vertical-align: middle;\"><span style=\"color: #99ccff;\"> </span></td>\r\n<td style=\"width: 25%; height: 25px; text-align: left; vertical-align: middle;\"><span style=\"color: #99ccff;\"> </span></td>\r\n</tr>\r\n<tr style=\"height: 25px;\">\r\n<td style=\"width: 25%; height: 25px; text-align: left; vertical-align: top;\" colspan=\"2\" rowspan=\"3\"><span style=\"color: #99ccff; font-family: arial,helvetica,sans-serif; font-size: 10pt;\">custom id=\"10\" title=\"Comments\"]</span><span style=\"color: #99ccff; font-family: arial,helvetica,sans-serif; font-size: 10pt;\"> </span><span style=\"color: #99ccff; font-family: arial,helvetica,sans-serif; font-size: 10pt;\"> </span><span style=\"color: #99ccff;\"> </span><span style=\"color: #99ccff;\"> </span></td>\r\n<td style=\"width: 25%; height: 25px; text-align: left; vertical-align: middle;\"><span style=\"color: #99ccff; font-family: arial,helvetica,sans-serif; font-size: 10pt;\">I accept <span style=\"text-decoration: underline;\"><strong> <a style=\"color: #99ccff; text-decoration: underline;\" href=\"http://msla.co.za/lodge/tcs/\">Terms &amp; Conditions</a></strong></span></span></td>\r\n<td style=\"width: 25%; height: 25px; text-align: left; vertical-align: middle;\"><span style=\"color: #99ccff; font-family: arial,helvetica,sans-serif; font-size: 10pt;\">[custom id=\"1\" title=\"Terms &amp; Conditions\"]</span></td>\r\n</tr>\r\n<tr style=\"height: 25px;\">\r\n<td style=\"width: 25%; height: 25px; text-align: left; vertical-align: middle;\"><span style=\"color: #99ccff; font-family: arial,helvetica,sans-serif; font-size: 10pt;\">Enter Security Code</span></td>\r\n<td style=\"width: 25%; height: 25px; text-align: left; vertical-align: middle;\"><span style=\"color: #99ccff; font-family: arial,helvetica,sans-serif; font-size: 16pt;\">[captcha]</span></td>\r\n</tr>\r\n<tr style=\"height: 25px;\">\r\n<td style=\"width: 25%; height: 25px; text-align: left; vertical-align: middle;\"><span style=\"color: #99ccff;\"> </span></td>\r\n<td style=\"width: 25%; height: 25px; text-align: left; vertical-align: middle;\"><span style=\"color: #99ccff; font-family: arial,helvetica,sans-serif; font-size: 10pt;\">[submit value=\"Submit\"]</span></td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n</div>[/fusion_builder_column][/fusion_builder_row][/fusion_builder_container]', 'Form Templet', '', 'inherit', 'closed', 'closed', '', '1072-revision-v1', '', '', '2019-11-13 13:53:59', '2019-11-13 11:53:59', '', 1072, 'https://msla.co.za/lodge/1072-revision-v1/', 0, 'revision', '', 0),
(1366, 1, '2019-11-13 13:53:59', '2019-11-13 11:53:59', '[fusion_builder_container background_color=\"\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding_top=\"20\" padding_bottom=\"20\" padding_left=\"0\" padding_right=\"0\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][fusion_builder_row][fusion_builder_column type=\"1_1\" background_position=\"left top\" background_color=\"\" border_size=\"\" border_color=\"\" border_style=\"solid\" spacing=\"yes\" background_image=\"\" background_repeat=\"no-repeat\" padding=\"\" margin_top=\"0px\" margin_bottom=\"0px\" class=\"\" id=\"\" animation_type=\"\" animation_speed=\"0.3\" animation_direction=\"left\" hide_on_mobile=\"no\" center_content=\"no\" min_height=\"none\"][fusion_title size=\"1\" content_align=\"right\" style_type=\"default\" sep_color=\"\" margin_top=\"\" margin_bottom=\"\" class=\"\" id=\"\"]Lodge Facilities &amp; Amenities[/fusion_title][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container hundred_percent=\"yes\" overflow=\"visible\"][fusion_builder_row][fusion_builder_column type=\"1_6\" last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][/fusion_builder_column][fusion_builder_column type=\"2_3\" last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][fusion_text]\r\n<h3><span style=\"text-align: justify; line-height: 1.5em; font-family: verdana, geneva; font-size: 18px;\">Rooms</span></h3>\r\n<span style=\"font-size: 12pt;\">[fusion_checklist icon=\"fa-star-o\" iconcolor=\"\" circle=\"\" circlecolor=\"\" size=\"13px\" class=\"\" id=\"\"]</span>\r\n<span style=\"font-size: 12pt;\"> [fusion_li_item icon=\"\"]All Rooms are en-suite i.e. Hand Basin, Toilet, Shower.[/fusion_li_item]\r\n[fusion_li_item icon=\"\"]Wall to Wall Carpeting[/fusion_li_item]\r\n</span><span style=\"font-size: 12pt;\">[fusion_li_item icon=\"\"]Ceiling Fan.[/fusion_li_item]\r\n</span><span style=\"font-size: 12pt;\">[fusion_li_item icon=\"\"]Wall Heater.[/fusion_li_item]\r\n</span><span style=\"font-size: 12pt;\">[fusion_li_item icon=\"\"]Electrical Plug Sockets.[/fusion_li_item]\r\n</span><span style=\"font-size: 12pt;\">[fusion_li_item icon=\"\"]Bedside Lamps.[/fusion_li_item]\r\n</span><span style=\"font-size: 12pt;\">[fusion_li_item icon=\"\"]Waste Bin[/fusion_li_item]</span>\r\n<span style=\"font-size: 12pt;\">[/fusion_checklist]</span>[/fusion_text][fusion_text]\r\n<h3><span style=\"text-align: justify; line-height: 1.5em; font-family: verdana, geneva; font-size: 18px;\">Beds</span></h3>\r\n<span style=\"font-size: 12pt;\">[fusion_checklist icon=\"fa-star-o\" iconcolor=\"\" circle=\"\" circlecolor=\"\" size=\"13px\" class=\"\" id=\"\"]</span>\r\n<span style=\"font-size: 12pt;\">[fusion_li_item icon=\"\"]King or Queen Bed &amp; Mattress Protector.[/fusion_li_item]\r\n</span><span style=\"font-size: 12pt;\">[fusion_li_item icon=\"\"]Electric Blankets.[/fusion_li_item]\r\n[fusion_li_item icon=\"\"]100% Cotton Percale Fitted Sheet.[/fusion_li_item]\r\n</span><span style=\"font-size: 12pt;\">[fusion_li_item icon=\"\"]100% Cotton Percale Flat Sheet.[/fusion_li_item]\r\n</span><span style=\"font-size: 12pt;\">[fusion_li_item icon=\"\"]2x King Microfibre Pillows, Pillow Protectors &amp; 100% Cotton Percale Pillow Cases.[/fusion_li_item]\r\n[fusion_li_item icon=\"\"]2x Standard Microfibre Pillows, Pillow Protectors &amp; 100% Cotton Percale Pillow Cases.[/fusion_li_item]\r\n</span><span style=\"font-size: 12pt;\">[fusion_li_item icon=\"\"]Microfibre Duvet Inner.[/fusion_li_item]\r\n</span><span style=\"font-size: 12pt;\">[fusion_li_item icon=\"\"]Duvet Cover.[/fusion_li_item]\r\n</span><span style=\"font-size: 12pt;\">[fusion_li_item icon=\"\"]A Bed Blanket.[/fusion_li_item]\r\n</span><span style=\"font-size: 12pt;\">[/fusion_checklist]</span>[/fusion_text][fusion_text]\r\n<h3><span style=\"text-align: justify; line-height: 1.5em; font-family: verdana, geneva; font-size: 18px;\">Kitchen</span></h3>\r\n<span style=\"font-size: 12pt;\">[fusion_checklist icon=\"fa-star-o\" iconcolor=\"\" circle=\"\" circlecolor=\"\" size=\"13px\" class=\"\" id=\"\"]</span>\r\n<span style=\"font-size: 12pt;\"> [fusion_li_item icon=\"\"]Fridge &amp; Freezer Unit.[/fusion_li_item]\r\n</span><span style=\"font-size: 12pt;\">[fusion_li_item icon=\"\"]Microwave.[/fusion_li_item]\r\n</span><span style=\"font-size: 12pt;\">[fusion_li_item icon=\"\"]...[/fusion_li_item]\r\n</span><span style=\"font-size: 12pt;\">[fusion_li_item icon=\"\"]Toaster.[/fusion_li_item]\r\n</span><span style=\"font-size: 12pt;\">[fusion_li_item icon=\"\"]Iron &amp; Ironing Board.[/fusion_li_item]\r\n</span><span style=\"font-size: 12pt;\">[fusion_li_item icon=\"\"]Kettle &amp; Urn.[/fusion_li_item]\r\n</span><span style=\"font-size: 12pt;\">[fusion_li_item icon=\"\"]Gas Stove &amp; Oven.[/fusion_li_item]\r\n</span><span style=\"font-size: 12pt;\">[fusion_li_item icon=\"\"]Coffee Peculator.[/fusion_li_item]\r\n</span><span style=\"font-size: 12pt;\">[fusion_li_item icon=\"\"]Glasses.[/fusion_li_item]\r\n</span><span style=\"font-size: 12pt;\">[fusion_li_item icon=\"\"]Pot &amp; Pans.[/fusion_li_item]\r\n</span><span style=\"font-size: 12pt;\">[fusion_li_item icon=\"\"]Crockery &amp; Cutlery.[/fusion_li_item]</span>\r\n\r\n<span style=\"font-size: 12pt;\">[/fusion_checklist]</span>[/fusion_text][/fusion_builder_column][fusion_builder_column type=\"1_6\" last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container]', 'Facilities', '', 'inherit', 'closed', 'closed', '', '998-revision-v1', '', '', '2019-11-13 13:53:59', '2019-11-13 11:53:59', '', 998, 'https://msla.co.za/lodge/998-revision-v1/', 0, 'revision', '', 0),
(1367, 1, '2019-11-13 13:53:59', '2019-11-13 11:53:59', '[fusion_builder_container background_color=\"\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding_top=\"20\" padding_bottom=\"20\" padding_left=\"0\" padding_right=\"0\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][fusion_builder_row][fusion_builder_column type=\"1_1\" background_position=\"left top\" background_color=\"\" border_size=\"\" border_color=\"\" border_style=\"solid\" spacing=\"yes\" background_image=\"\" background_repeat=\"no-repeat\" padding=\"\" margin_top=\"0px\" margin_bottom=\"0px\" class=\"\" id=\"\" animation_type=\"\" animation_speed=\"0.3\" animation_direction=\"left\" hide_on_mobile=\"no\" center_content=\"no\" min_height=\"none\"][fusion_title size=\"1\" content_align=\"right\" style_type=\"default\" sep_color=\"\" margin_top=\"\" margin_bottom=\"\" class=\"\" id=\"\"]Terms &amp; Conditions[/fusion_title][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container hundred_percent=\"yes\" overflow=\"visible\"][fusion_builder_row][fusion_builder_column type=\"1_6\" last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][/fusion_builder_column][fusion_builder_column type=\"2_3\" last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][fusion_text]\r\n<h3><span style=\"font-size: 12pt;\">Conditions you need to know before booking.</span></h3>\r\n<span style=\"font-size: 12pt;\">[fusion_checklist icon=\"fa-star-o\" iconcolor=\"\" circle=\"\" circlecolor=\"\" size=\"13px\" class=\"\" id=\"\"]\r\n[fusion_li_item icon=\"\"]By default, the lodge and bedrooms are not serviced, however <a href=\"http://msla.co.za/lodge/rates/\">Cleaning Services</a> are available as an optional extra.[/fusion_li_item]\r\n[fusion_li_item icon=\"\"]When you book into the lodge it is exclusively yours. i.e. We don\'t book out the other rooms unless we have cleared it with you.[/fusion_li_item]\r\n[fusion_li_item icon=\"\"]Please don’t bring your own Pets.[/fusion_li_item]\r\n[fusion_li_item icon=\"\"]The lodge is strictly a private guest lodge, for the purposes of accommodation and relaxation for paying guests, and not an events venue for functions, parties, etc.[/fusion_li_item]\r\n[/fusion_checklist]</span>[/fusion_text][/fusion_builder_column][fusion_builder_column type=\"1_6\" last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][/fusion_builder_column][fusion_builder_column type=\"1_6\" last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][/fusion_builder_column][fusion_builder_column type=\"2_3\" last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][fusion_text]\r\n<h3><span style=\"font-size: 12pt;\">Day Visitors</span></h3>\r\n<span style=\"font-size: 12pt;\">[fusion_checklist icon=\"fa-star-o\" iconcolor=\"\" circle=\"\" circlecolor=\"\" size=\"13px\" class=\"\" id=\"\"]\r\n</span>[fusion_li_item icon=\"\"]Any day visitor/s you invite must first be pre-arranged with management (right of admission does apply) and will be required to sign in before entering upon the property. A <a href=\"http://msla.co.za/lodge/rates/\">Cover Charge</a> will be levied against your account. Should for whatever reason your visitor ending up overnighting on the property, you will be invoiced for the full B&amp;B rate, as well.[/fusion_li_item][/fusion_checklist][/fusion_text][/fusion_builder_column][fusion_builder_column type=\"1_6\" last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][/fusion_builder_column][fusion_builder_column type=\"1_6\" last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][/fusion_builder_column][fusion_builder_column type=\"2_3\" last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][fusion_text]\r\n<h3 style=\"text-align: justify;\">Check-in Times</h3>\r\n<span style=\"font-size: 12pt;\">[fusion_checklist icon=\"fa-star-o\" iconcolor=\"\" circle=\"\" circlecolor=\"\" size=\"13px\" class=\"\" id=\"\"]\r\n[fusion_li_item icon=\"\"]Check-in Time is from 12h00 to 18h00 (Late arrivals must be arranged before hand).[/fusion_li_item]\r\n[fusion_li_item icon=\"\"]Check-out Time is before 10h00.[/fusion_li_item]\r\n[/fusion_checklist]</span>[/fusion_text][/fusion_builder_column][fusion_builder_column type=\"1_6\" last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][/fusion_builder_column][fusion_builder_column type=\"1_6\" last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][/fusion_builder_column][fusion_builder_column type=\"2_3\" last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][fusion_text]<h3 style=\"text-align: justify;\">Payment Terms</h3>\r\n<p style=\"text-align: justify;\"><span style=\"font-size: 12pt;\">[fusion_checklist icon=\"fa-star-o\" iconcolor=\"\" circle=\"\" circlecolor=\"\" size=\"13px\" class=\"\" id=\"\"]\r\n[fusion_li_item icon=\"\"]Rates are inclusive of <strong>14%</strong> VAT.[/fusion_li_item]\r\n[fusion_li_item icon=\"\"]Payment must be made via <strong>Bank Transfer</strong>, alternatively, <strong>Cash</strong> may be accepted by prior arrangement.[/fusion_li_item]\r\n[fusion_li_item icon=\"\"]We no longer accept Cheques.[/fusion_li_item]\r\n[fusion_li_item icon=\"\"]We do not have Credit Card facilities on site.[/fusion_li_item]\r\n[fusion_li_item icon=\"\"]All accommodation must be settled either before or on arrival.[/fusion_li_item]\r\n[fusion_li_item icon=\"\"]No bookings are guaranteed until your reservation is confirmed, having paid at least a <strong>50% deposit</strong>.[/fusion_li_item]\r\n[/fusion_checklist]</span></p>[/fusion_text][/fusion_builder_column][fusion_builder_column type=\"1_6\" last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][/fusion_builder_column][fusion_builder_column type=\"1_6\" last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][/fusion_builder_column][fusion_builder_column type=\"2_3\" last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][fusion_text]\r\n<h3 style=\"text-align: justify;\">Refunds &amp; Cancelation Terms</h3>\r\n<p style=\"text-align: justify;\"><span style=\"font-size: 12pt;\">[fusion_checklist icon=\"fa-star-o\" iconcolor=\"\" circle=\"\" circlecolor=\"\" size=\"13px\" class=\"\" id=\"\"]\r\n[fusion_li_item icon=\"\"]Guests are liable for the tariff of the full period booked.[/fusion_li_item]\r\n[fusion_li_item icon=\"\"]No refunds will be given for early departures / late arrivals, or due to weather conditions / power outages<span style=\"text-align: justify;\">.</span>[/fusion_li_item]\r\n[fusion_li_item icon=\"\"]<span style=\"text-align: justify;\">Cancellation of any booking must be done via email.</span>[/fusion_li_item]\r\n[fusion_li_item icon=\"\"]<span style=\"text-align: justify;\">If you cancel your reservation 15 days and more, </span><span style=\"text-align: justify;\">before your arrival date, your deposit will be </span><span style=\"text-align: justify;\">r</span><span style=\"text-align: justify;\">efund</span><span style=\"text-align: justify;\">ed</span><span style=\"text-align: justify;\"> less an administration fee of </span>15%.[/fusion_li_item]\r\n[fusion_li_item icon=\"\"]<span style=\"text-align: justify;\">If you cancel your reservation 14 days and less, before your arrival date, your deposit will become </span>non-refundable.[/fusion_li_item]\r\n[fusion_li_item icon=\"\"]<span style=\"text-align: justify;\">Payments are not refundable for reservations not cancelled and not taken up.</span>[/fusion_li_item]\r\n[/fusion_checklist]</span></p>\r\n[/fusion_text][/fusion_builder_column][fusion_builder_column type=\"1_6\" last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][/fusion_builder_column][fusion_builder_column type=\"1_6\" last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][/fusion_builder_column][fusion_builder_column type=\"2_3\" last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][fusion_text]\r\n<h3><span style=\"font-size: 12pt;\">General Terms</span></h3>\r\n[fusion_checklist icon=\"fa-star-o\" iconcolor=\"\" circle=\"\" circlecolor=\"\" size=\"13px\" class=\"\" id=\"\"]\r\n[fusion_li_item icon=\"\"]A reservation may not be transferred.[/fusion_li_item]\r\n[fusion_li_item icon=\"\"]Bookings are for holiday purposes only and cannot give rise to a tenancy.[/fusion_li_item]\r\n[fusion_li_item icon=\"\"]Persons occupying the lodge may not exceed the number of persons indicated upon booking.[/fusion_li_item]\r\n[fusion_li_item icon=\"\"]During nights the all doors must be locked. Please remember to lock the door behind you and to remove the key.[/fusion_li_item]\r\n[fusion_li_item icon=\"\"]Please leave the Lodge reasonable tidy and clean after use.[/fusion_li_item]\r\n[fusion_li_item icon=\"\"]We do not have a Laundry Service.[/fusion_li_item]\r\n[fusion_li_item icon=\"\"]Out of respect for all guests, and the fact that we are in a conservancy, noise must be kept down to a comfortable level especially between the hours 22h00 to 08h00.[/fusion_li_item]\r\n[fusion_li_item icon=\"\"]Please keep furniture, fixtures and fittings in the same state of repair and condition as at the beginning of your stay. In the event of any damage to furniture, fixtures or fittings, you may be held liable for the replacement value or repair costs. This includes damage to the pool area.[/fusion_li_item]\r\n[fusion_li_item icon=\"\"]The use of open fires and the burning of any unprotected candles or fuel burning lanterns, in or around the Lodge, will not be permitted.[/fusion_li_item]\r\n[fusion_li_item icon=\"\"]We operate a non-smoking policy throughout the Lodge. You are welcome to smoke outside the house, where ashtrays are provided.[/fusion_li_item]\r\n[fusion_li_item icon=\"\"]Guests may not bring pets or other animals onto the premises.[/fusion_li_item]\r\n[fusion_li_item icon=\"\"]The use or sale of any illegal substance in the Lodge or on surrounding property is not permissible.[/fusion_li_item]\r\n[fusion_li_item icon=\"\"]Right of admission is reserved.[/fusion_li_item]\r\n[fusion_li_item icon=\"\"]We reserve the right to eject a guest/guests from the Lodge if they are not conducting themselves in an appropriate and/or acceptable manner to the building and/or other residents or staff.[/fusion_li_item]\r\n[fusion_li_item icon=\"\"]Swimming Pool - The premises contains an unsupervised, open pool which may be used at the guests\' own risk.[/fusion_li_item]\r\n[/fusion_checklist][/fusion_text][/fusion_builder_column][fusion_builder_column type=\"1_6\" last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container]', 'T&Cs', '', 'inherit', 'closed', 'closed', '', '984-revision-v1', '', '', '2019-11-13 13:53:59', '2019-11-13 11:53:59', '', 984, 'https://msla.co.za/lodge/984-revision-v1/', 0, 'revision', '', 0);
INSERT INTO `wp_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(1368, 1, '2019-11-13 13:54:00', '2019-11-13 11:54:00', '[fusion_builder_container background_color=\"\" background_image=\"http://msla.co.za/lodge/wp-content/uploads/2015/01/about-parallax11.jpg\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"center center\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"20\" padding_bottom=\"20\" padding_left=\"0\" padding_right=\"0\" hundred_percent=\"yes\" equal_height_columns=\"yes\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][fusion_builder_row][fusion_builder_column type=\"1_6\" last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][/fusion_builder_column][fusion_builder_column type=\"2_3\" last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][fusion_text][easy_form booknow style=\"none\" submit=\"Reservation successfully sent\" subsubmit=\"Please continue.\" credit=\"Reservation complete\" subcredit=\"You\'ll receive an email with the reservations details\" resourcename=\"Room\" pers=\"1\" resource=\"854\"[/fusion_text][/fusion_builder_column][fusion_builder_column type=\"1_6\" last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container]', 'Book Now', '', 'inherit', 'closed', 'closed', '', '855-revision-v1', '', '', '2019-11-13 13:54:00', '2019-11-13 11:54:00', '', 855, 'https://msla.co.za/lodge/855-revision-v1/', 0, 'revision', '', 0),
(1369, 1, '2019-11-13 13:54:00', '2019-11-13 11:54:00', '[fusion_builder_container background_color=\"#f0f0ed\" background_image=\"\" background_parallax=\"none\" parallax_speed=\"0.3\" enable_mobile=\"no\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"110px\" padding_bottom=\"10px\" padding_left=\"\"    padding_right=\"\"    hundred_percent=\"no\" equal_height_columns=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][fusion_builder_row][fusion_builder_column type=\"2_3\" last=\"no\" spacing=\"yes\" center_content=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" class=\"\" id=\"\"][fusion_postslider layout=\"posts-with-excerpt\" excerpt=\"45\" category=\"general\" limit=\"3\" lightbox=\"yes\" class=\"\" id=\"\"][/fusion_postslider][fusion_separator style_type=\"none\" top_margin=\"\" bottom_margin=\"\" sep_color=\"\" border_size=\"\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"\" alignment=\"center\" class=\"\" id=\"\"/][/fusion_builder_column][fusion_builder_column type=\"1_3\" last=\"yes\" spacing=\"yes\" center_content=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][fusion_postslider layout=\"posts\" excerpt=\"15\" category=\"cold-countries\" limit=\"3\" lightbox=\"yes\" class=\"\" id=\"\"][/fusion_postslider][fusion_separator style_type=\"none\" top_margin=\"17\" bottom_margin=\"17\" sep_color=\"\" border_size=\"\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"\" alignment=\"center\" class=\"\" id=\"\"/][fusion_postslider layout=\"posts\" excerpt=\"15\" category=\"warm-countries\" limit=\"3\" lightbox=\"yes\" class=\"\" id=\"\"][/fusion_postslider][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container background_color=\"#f0f0ed\" background_image=\"\" background_parallax=\"none\" parallax_speed=\"0.3\" enable_mobile=\"no\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"0px\" padding_bottom=\"60px\" padding_left=\"\"    padding_right=\"\"    hundred_percent=\"no\" equal_height_columns=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][fusion_builder_row][fusion_builder_column type=\"1_1\" background_position=\"left top\" background_color=\"\" border_size=\"\" border_color=\"\" border_style=\"solid\" spacing=\"yes\" background_image=\"\" background_repeat=\"no-repeat\" padding=\"\" margin_top=\"0px\" margin_bottom=\"0px\" class=\"\" id=\"\" animation_type=\"\" animation_speed=\"0.3\" animation_direction=\"left\" hide_on_mobile=\"no\" center_content=\"no\" min_height=\"none\"][fusion_blog number_posts=\"3\" offset=\"\" cat_slug=\"\" exclude_cats=\"\" title=\"yes\" title_link=\"yes\" thumbnail=\"yes\" excerpt=\"yes\" excerpt_length=\"15\" meta_all=\"yes\" meta_author=\"no\" meta_categories=\"no\" meta_comments=\"no\" meta_date=\"no\" meta_link=\"yes\" meta_tags=\"no\" paging=\"no\" scrolling=\"load_more_button\" strip_html=\"yes\" blog_grid_columns=\"3\" blog_grid_column_spacing=\"40\" layout=\"grid\" class=\"\" id=\"\"][/fusion_blog][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container background_color=\"#6666a4\" background_image=\"http://theme-fusion.com/avada_demos_xml/travel/wp-content/uploads/2015/01/parallax-section1.jpg\" background_parallax=\"fixed\" parallax_speed=\"0.3\" enable_mobile=\"no\" background_repeat=\"no-repeat\" background_position=\"center center\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"200px\" padding_bottom=\"200px\" padding_left=\"\"    padding_right=\"\"    hundred_percent=\"no\" equal_height_columns=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][fusion_builder_row][fusion_builder_column type=\"1_1\" background_position=\"left top\" background_color=\"\" border_size=\"\" border_color=\"\" border_style=\"solid\" spacing=\"yes\" background_image=\"\" background_repeat=\"no-repeat\" padding=\"\" margin_top=\"0px\" margin_bottom=\"0px\" class=\"\" id=\"\" animation_type=\"\" animation_speed=\"0.3\" animation_direction=\"left\" hide_on_mobile=\"no\" center_content=\"no\" min_height=\"none\"][fusion_text]\n<h1 style=\"text-align: center; color: #fff;\">THE AVADA DIFFERENCE</h1>\n[/fusion_text][fusion_text]\n<h3 style=\"text-align: center; color: #fff;\">We believe no two getaways should be the same and a busy life deserves the very best. We take the time to get to know you so we can help you find your perfect escape.</h3>\n[/fusion_text][fusion_separator style_type=\"none\" top_margin=\"10\" bottom_margin=\"10\" sep_color=\"\" border_size=\"\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"\" alignment=\"center\" class=\"\" id=\"\"/][fusion_button link=\"/avada_demos/travel/make-a-reservation\" color=\"default\" size=\"\"  type=\"\" shape=\"\" target=\"_self\" title=\"\" gradient_colors=\"|\" gradient_hover_colors=\"|\" accent_color=\"\" accent_hover_color=\"\" bevel_color=\"\" border_width=\"0px\" icon=\"\" icon_position=\"left\" icon_divider=\"no\" modal=\"\" animation_type=\"0\" animation_direction=\"left\" animation_speed=\"1\" alignment=\"center\" class=\"\" id=\"\"]MAKE A RESERVATION[/fusion_button][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container]', 'Travel Blog', '', 'inherit', 'closed', 'closed', '', '16-revision-v1', '', '', '2019-11-13 13:54:00', '2019-11-13 11:54:00', '', 16, 'https://msla.co.za/lodge/16-revision-v1/', 0, 'revision', '', 0),
(1370, 1, '2019-11-13 13:54:00', '2019-11-13 11:54:00', '[fusion_builder_container background_color=\"#6666a4\" background_image=\"http://theme-fusion.com/avada_demos_xml/travel/wp-content/uploads/2015/01/destination-parallax21.jpg\" background_parallax=\"fixed\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"center center\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"220px\" padding_bottom=\"220px\" padding_left=\"\"    padding_right=\"\"    hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][fusion_builder_row][fusion_builder_column type=\"1_1\" background_position=\"left top\" background_color=\"\" border_size=\"\" border_color=\"\" border_style=\"solid\" spacing=\"yes\" background_image=\"\" background_repeat=\"no-repeat\" padding=\"\" margin_top=\"0px\" margin_bottom=\"0px\" class=\"\" id=\"\" animation_type=\"\" animation_speed=\"0.3\" animation_direction=\"left\" hide_on_mobile=\"no\" center_content=\"no\" min_height=\"none\"][fusion_text]\r\n<h1 style=\"text-align: center;\"><span style=\"color: #ccffcc; font-family: Calibri;\">NEARBY ATTRACTIONS</span></h1>\r\n[/fusion_text][fusion_text]\r\n<h3 style=\"text-align: justify;\"><span style=\"color: #ccffcc;\">We are situated on the 1000 Hills tourism route, on the edge of Hillcrest -a perfect place to adventure out  to any one of the many fantastic destinations and game reserves in KwaZulu Natal, i.e. the Majestic Drakensberg Mountain Range, Shongweni Nature Reserve, Nagle Dam, Durban &amp; Beach Front.</span></h3>\r\n<h3 style=\"text-align: justify;\"><span style=\"color: #ccffcc;\">We are also the doorstep of one of KZN’s major horse riding venues namely, the Shongweni Horse Riding Club &amp; the Summerveld Horse Riding Academy, making Assagay Forest Lodge a perfect home away from home for the equestrian lovers.</span></h3>\r\n<h3 style=\"text-align: justify;\"><span style=\"color: #ccffcc;\">Hiking , fishing and boating all add to the excitement found in this attractive area. Situated on the “Friendly N3″ running from Johannesburg  to Durban , Assagay Forest Lodge  is the ideal stop over, linking up with both the Wild Coast/transkei  route via Margate and the Dolphin Coast linking up with Mozambique and Swaziland</span>\r\n<span style=\"color: #ccffcc;\"> Surrounding areas have attractions ranging from the sun kissed Durban beaches to trout-filled streams in the Drakensberg , caves adorned with ancient rock art and canoeing on the Dusi River.</span></h3>\r\n<h3 style=\"text-align: justify;\"><span style=\"color: #ccffcc;\">Activities in the Area:</span>\r\n<span style=\"color: #ccffcc;\"> Private nature reserves</span>\r\n<span style=\"color: #ccffcc;\"> 4×4 off-road adventures</span>\r\n<span style=\"color: #ccffcc;\"> Fossil sites</span>\r\n<span style=\"color: #ccffcc;\"> Fishing / canoeing on the Dusi River</span>\r\n<span style=\"color: #ccffcc;\"> Historic Museums</span>\r\n<span style=\"color: #ccffcc;\"> Anglo Boer War Sites and Monuments</span>\r\n<span style=\"color: #ccffcc;\"> Hiking and horse trails in nearby mountain ranges</span>\r\n<span style=\"color: #ccffcc;\"> Birdwatching</span>\r\n<span style=\"color: #ccffcc;\"> Rock art</span></h3>\r\n[/fusion_text][/fusion_builder_column][fusion_builder_column type=\"1_3\" last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"0\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"no-margin\" id=\"\"][fusion_separator style_type=\"none\" top_margin=\"\" bottom_margin=\"\" sep_color=\"\" border_size=\"\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"\" alignment=\"\" class=\"\" id=\"\"/][/fusion_builder_column][fusion_builder_column type=\"1_3\" last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"0\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][fusion_button link=\"/avada_demos/travel/make-a-reservation/\" color=\"default\" size=\"\"  type=\"\" shape=\"\" target=\"_self\" title=\"\" gradient_colors=\"|\" gradient_hover_colors=\"|\" accent_color=\"\" accent_hover_color=\"\" bevel_color=\"\" border_width=\"0px\" icon=\"\" icon_position=\"left\" icon_divider=\"no\" modal=\"\" animation_type=\"0\" animation_direction=\"left\" animation_speed=\"1\" alignment=\"center\" class=\"\" id=\"\"]MAKE A RESERVATION[/fusion_button][/fusion_builder_column][fusion_builder_column type=\"1_3\" last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"0\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][fusion_separator style_type=\"none\" top_margin=\"\" bottom_margin=\"\" sep_color=\"\" border_size=\"\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"\" alignment=\"\" class=\"\" id=\"\"/][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container background_color=\"\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"0px\" padding_bottom=\"-30px\" padding_left=\"0px\" padding_right=\"0px\" hundred_percent=\"yes\" equal_height_columns=\"yes\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][fusion_builder_row][fusion_builder_column type=\"1_3\" last=\"no\" spacing=\"no\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"#6666a4\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"10%\" margin_top=\"\" margin_bottom=\"0px\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" class=\"\" id=\"\"][fusion_imageframe lightbox=\"no\" lightbox_image=\"http://localhost/assagaylodge/wp-content/uploads/2015/01/zulu.jpg\" style_type=\"none\" bordercolor=\"\" bordersize=\"0px\" borderradius=\"0\" stylecolor=\"\" align=\"none\" link=\"\" linktarget=\"_self\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" hide_on_mobile=\"no\" class=\"\" id=\"\"] <img alt=\"\" src=\"http://localhost/assagaylodge/wp-content/uploads/2015/01/zulu.jpg\" />[/fusion_imageframe][fusion_content_boxes layout=\"icon-with-title\" title_size=\"\" icon_circle=\"\" icon_size=\"\" icon_align=\"left\" columns=\"1\" margin_top=\"\" margin_bottom=\"0px\" class=\"\" id=\"\"][fusion_content_box title=\"Phezulu African Dancing\" icon=\"fa-phone\" backgroundcolor=\"\" iconcolor=\"#ffffff\" circlecolor=\"#6666a4\" circlebordercolor=\"#6666a4\" iconflip=\"\" iconrotate=\"\" iconspin=\"no\" image=\"\" image_width=\"35\" image_height=\"35\" link=\"\" linktext=\"\" linktarget=\"_self\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\"]        <span style=\"color: #ffffff;\">Please call one of our specialist or pop into one of our travel shops and meet with an advisor in person. Alternatively, email us any questions and we will reply as quickly as possible. We look forward to being a small part of your next big adventure.</span>[/fusion_content_box][/fusion_content_boxes][/fusion_builder_column][fusion_builder_column type=\"1_3\" last=\"no\" spacing=\"no\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"#7272b2\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"10%\" margin_top=\"\" margin_bottom=\"0px\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" class=\"\" id=\"\"][fusion_imageframe lightbox=\"no\" lightbox_image=\"http://localhost/assagaylodge/wp-content/uploads/2015/01/Shongweni-1.jpg\" style_type=\"none\" bordercolor=\"\" bordersize=\"0px\" borderradius=\"0\" stylecolor=\"\" align=\"none\" link=\"\" linktarget=\"_self\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" hide_on_mobile=\"no\" class=\"\" id=\"\"] <img alt=\"\" src=\"http://localhost/assagaylodge/wp-content/uploads/2015/01/Shongweni-1.jpg\" />[/fusion_imageframe][fusion_content_boxes layout=\"icon-with-title\" title_size=\"\" icon_circle=\"\" icon_size=\"\" icon_align=\"left\" columns=\"1\" margin_top=\"\" margin_bottom=\"0px\" class=\"\" id=\"\"][fusion_content_box title=\"Shongweni Equestrian Centre\" icon=\"fa-comments\" backgroundcolor=\"\" iconcolor=\"#ffffff\" circlecolor=\"#7272b2\" circlebordercolor=\"#7272b2\" iconflip=\"\" iconrotate=\"\" iconspin=\"no\" image=\"\" image_width=\"35\" image_height=\"35\" link=\"\" linktext=\"\" linktarget=\"_self\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\"]        <span style=\"color: #ffffff;\">Please call one of our specialist or pop into one of our travel shops and meet with an advisor in person. Alternatively, email us any questions and we will reply as quickly as possible. We look forward to being a small part of your next big adventure.</span>[/fusion_content_box][/fusion_content_boxes][/fusion_builder_column][fusion_builder_column type=\"1_3\" last=\"yes\" spacing=\"no\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"#6666a4\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"10%\" margin_top=\"\" margin_bottom=\"0px\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" class=\"\" id=\"\"][fusion_imageframe lightbox=\"no\" lightbox_image=\"http://localhost/assagaylodge/wp-content/uploads/2015/01/steam-train.png\" style_type=\"none\" bordercolor=\"\" bordersize=\"0px\" borderradius=\"0\" stylecolor=\"\" align=\"none\" link=\"\" linktarget=\"_self\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" hide_on_mobile=\"no\" class=\"\" id=\"\"] <img alt=\"\" src=\"http://localhost/assagaylodge/wp-content/uploads/2015/01/steam-train.png\" />[/fusion_imageframe][fusion_content_boxes layout=\"icon-with-title\" title_size=\"\" icon_circle=\"\" icon_size=\"\" icon_align=\"left\" columns=\"1\" margin_top=\"\" margin_bottom=\"0px\" class=\"\" id=\"\"][fusion_content_box title=\"Train Adventures\" icon=\"fa-phone\" backgroundcolor=\"\" iconcolor=\"#ffffff\" circlecolor=\"#6666a4\" circlebordercolor=\"#6666a4\" iconflip=\"\" iconrotate=\"\" iconspin=\"no\" image=\"\" image_width=\"35\" image_height=\"35\" link=\"\" linktext=\"\" linktarget=\"_self\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\"]        <span style=\"color: #ffffff;\">Please call one of our specialist or pop into one of our travel shops and meet with an advisor in person. Alternatively, email us any questions and we will reply as quickly as possible. We look forward to being a small part of your next big adventure.</span>[/fusion_content_box][/fusion_content_boxes][/fusion_builder_column][fusion_builder_column type=\"1_3\" last=\"no\" spacing=\"no\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"#6666a4\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"10%\" margin_top=\"\" margin_bottom=\"0px\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" class=\"\" id=\"\"][fusion_imageframe lightbox=\"no\" lightbox_image=\"http://localhost/assagaylodge/wp-content/uploads/2015/01/Karkloof-Canopy.jpg\" style_type=\"none\" bordercolor=\"\" bordersize=\"0px\" borderradius=\"0\" stylecolor=\"\" align=\"none\" link=\"\" linktarget=\"_self\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" hide_on_mobile=\"no\" class=\"\" id=\"\"] <img alt=\"\" src=\"http://localhost/assagaylodge/wp-content/uploads/2015/01/Karkloof-Canopy.jpg\" />[/fusion_imageframe][fusion_content_boxes layout=\"icon-with-title\" title_size=\"\" icon_circle=\"\" icon_size=\"\" icon_align=\"left\" columns=\"1\" margin_top=\"\" margin_bottom=\"0px\" class=\"\" id=\"\"][fusion_content_box title=\"Karkloof Canopy Tours\" icon=\"fa-phone\" backgroundcolor=\"\" iconcolor=\"#ffffff\" circlecolor=\"#6666a4\" circlebordercolor=\"#6666a4\" iconflip=\"\" iconrotate=\"\" iconspin=\"no\" image=\"\" image_width=\"35\" image_height=\"35\" link=\"\" linktext=\"\" linktarget=\"_self\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\"]        <span style=\"color: #ffffff;\">Please call one of our specialist or pop into one of our travel shops and meet with an advisor in person. Alternatively, email us any questions and we will reply as quickly as possible. We look forward to being a small part of your next big adventure.</span>[/fusion_content_box][/fusion_content_boxes][/fusion_builder_column][fusion_builder_column type=\"1_3\" last=\"no\" spacing=\"no\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"#6666a4\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"10%\" margin_top=\"\" margin_bottom=\"0px\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" class=\"\" id=\"\"][fusion_imageframe lightbox=\"no\" lightbox_image=\"http://localhost/assagaylodge/wp-content/uploads/2015/01/Tala.jpg\" style_type=\"none\" bordercolor=\"\" bordersize=\"0px\" borderradius=\"0\" stylecolor=\"\" align=\"none\" link=\"\" linktarget=\"_self\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" hide_on_mobile=\"no\" class=\"\" id=\"\"] <img alt=\"\" src=\"http://localhost/assagaylodge/wp-content/uploads/2015/01/Tala.jpg\" />[/fusion_imageframe][fusion_content_boxes layout=\"icon-with-title\" title_size=\"\" icon_circle=\"\" icon_size=\"\" icon_align=\"left\" columns=\"1\" margin_top=\"\" margin_bottom=\"0px\" class=\"\" id=\"\"][fusion_content_box title=\"Tala Game Reserve\" icon=\"fa-phone\" backgroundcolor=\"\" iconcolor=\"#ffffff\" circlecolor=\"#6666a4\" circlebordercolor=\"#6666a4\" iconflip=\"\" iconrotate=\"\" iconspin=\"no\" image=\"\" image_width=\"35\" image_height=\"35\" link=\"\" linktext=\"\" linktarget=\"_self\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\"]        <span style=\"color: #ffffff;\">Please call one of our specialist or pop into one of our travel shops and meet with an advisor in person. Alternatively, email us any questions and we will reply as quickly as possible. We look forward to being a small part of your next big adventure.</span>[/fusion_content_box][/fusion_content_boxes][/fusion_builder_column][fusion_builder_column type=\"1_3\" last=\"yes\" spacing=\"no\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"#6666a4\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"10%\" margin_top=\"\" margin_bottom=\"0px\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" class=\"\" id=\"\"][fusion_imageframe lightbox=\"no\" lightbox_image=\"http://localhost/assagaylodge/wp-content/uploads/2015/01/Shongweni-Dam.jpg\" style_type=\"none\" bordercolor=\"\" bordersize=\"0px\" borderradius=\"0\" stylecolor=\"\" align=\"none\" link=\"\" linktarget=\"_self\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" hide_on_mobile=\"no\" class=\"\" id=\"\"] <img alt=\"\" src=\"http://localhost/assagaylodge/wp-content/uploads/2015/01/Shongweni-Dam.jpg\" />[/fusion_imageframe][fusion_content_boxes layout=\"icon-with-title\" title_size=\"\" icon_circle=\"\" icon_size=\"\" icon_align=\"left\" columns=\"1\" margin_top=\"\" margin_bottom=\"0px\" class=\"\" id=\"\"][fusion_content_box title=\"Shongeweni Dam\" icon=\"fa-phone\" backgroundcolor=\"\" iconcolor=\"#ffffff\" circlecolor=\"#6666a4\" circlebordercolor=\"#6666a4\" iconflip=\"\" iconrotate=\"\" iconspin=\"no\" image=\"\" image_width=\"35\" image_height=\"35\" link=\"\" linktext=\"\" linktarget=\"_self\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\"]        <span style=\"color: #ffffff;\">Please call one of our specialist or pop into one of our travel shops and meet with an advisor in person. Alternatively, email us any questions and we will reply as quickly as possible. We look forward to being a small part of your next big adventure.</span>[/fusion_content_box][/fusion_content_boxes][/fusion_builder_column][fusion_builder_column type=\"1_3\" last=\"no\" spacing=\"no\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"#6666a4\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"10%\" margin_top=\"\" margin_bottom=\"0px\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" class=\"\" id=\"\"][fusion_imageframe lightbox=\"no\" lightbox_image=\"http://localhost/assagaylodge/wp-content/uploads/2015/01/Golf.jpg\" style_type=\"none\" bordercolor=\"\" bordersize=\"0px\" borderradius=\"0\" stylecolor=\"\" align=\"none\" link=\"\" linktarget=\"_self\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" hide_on_mobile=\"no\" class=\"\" id=\"\"] <img alt=\"\" src=\"http://localhost/assagaylodge/wp-content/uploads/2015/01/Golf.jpg\" />[/fusion_imageframe][fusion_content_boxes layout=\"icon-with-title\" title_size=\"\" icon_circle=\"\" icon_size=\"\" icon_align=\"left\" columns=\"1\" margin_top=\"\" margin_bottom=\"0px\" class=\"\" id=\"\"][fusion_content_box title=\"Golf Courses - Camelot / Kloof / Selborne\" icon=\"fa-phone\" backgroundcolor=\"\" iconcolor=\"#ffffff\" circlecolor=\"#6666a4\" circlebordercolor=\"#6666a4\" iconflip=\"\" iconrotate=\"\" iconspin=\"no\" image=\"\" image_width=\"35\" image_height=\"35\" link=\"\" linktext=\"\" linktarget=\"_self\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\"]        <span style=\"color: #ffffff;\">Please call one of our specialist or pop into one of our travel shops and meet with an advisor in person. Alternatively, email us any questions and we will reply as quickly as possible. We look forward to being a small part of your next big adventure.</span>[/fusion_content_box][/fusion_content_boxes][/fusion_builder_column][fusion_builder_column type=\"1_3\" last=\"no\" spacing=\"no\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"#6666a4\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"10%\" margin_top=\"\" margin_bottom=\"0px\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" class=\"\" id=\"\"][fusion_imageframe lightbox=\"no\" lightbox_image=\"http://localhost/assagaylodge/wp-content/uploads/2015/01/shongweni-dressarge.jpg\" style_type=\"none\" bordercolor=\"\" bordersize=\"0px\" borderradius=\"0\" stylecolor=\"\" align=\"none\" link=\"\" linktarget=\"_self\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" hide_on_mobile=\"no\" class=\"\" id=\"\"] <img alt=\"\" src=\"http://localhost/assagaylodge/wp-content/uploads/2015/01/shongweni-dressarge.jpg\" />[/fusion_imageframe][fusion_content_boxes layout=\"icon-with-title\" title_size=\"\" icon_circle=\"\" icon_size=\"\" icon_align=\"left\" columns=\"1\" margin_top=\"\" margin_bottom=\"0px\" class=\"\" id=\"\"][fusion_content_box title=\"Shongweni Equestrian Centre\" icon=\"fa-phone\" backgroundcolor=\"\" iconcolor=\"#ffffff\" circlecolor=\"#6666a4\" circlebordercolor=\"#6666a4\" iconflip=\"\" iconrotate=\"\" iconspin=\"no\" image=\"\" image_width=\"35\" image_height=\"35\" link=\"\" linktext=\"\" linktarget=\"_self\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\"]        <span style=\"color: #ffffff;\">Please call one of our specialist or pop into one of our travel shops and meet with an advisor in person. Alternatively, email us any questions and we will reply as quickly as possible. We look forward to being a small part of your next big adventure.</span>[/fusion_content_box][/fusion_content_boxes][/fusion_builder_column][fusion_builder_column type=\"1_3\" last=\"yes\" spacing=\"no\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"#6666a4\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"10%\" margin_top=\"\" margin_bottom=\"0px\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" class=\"\" id=\"\"][fusion_imageframe lightbox=\"no\" lightbox_image=\"http://localhost/assagaylodge/wp-content/uploads/2015/01/camelot.jpg\" style_type=\"none\" bordercolor=\"\" bordersize=\"0px\" borderradius=\"0\" stylecolor=\"\" align=\"none\" link=\"\" linktarget=\"_self\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" hide_on_mobile=\"no\" class=\"\" id=\"\"] <img alt=\"\" src=\"http://localhost/assagaylodge/wp-content/uploads/2015/01/camelot.jpg\" />[/fusion_imageframe][fusion_content_boxes layout=\"icon-with-title\" title_size=\"\" icon_circle=\"\" icon_size=\"\" icon_align=\"left\" columns=\"1\" margin_top=\"\" margin_bottom=\"0px\" class=\"\" id=\"\"][fusion_content_box title=\"Camelot Medieval Functions\" icon=\"fa-phone\" backgroundcolor=\"\" iconcolor=\"#ffffff\" circlecolor=\"#6666a4\" circlebordercolor=\"#6666a4\" iconflip=\"\" iconrotate=\"\" iconspin=\"no\" image=\"\" image_width=\"35\" image_height=\"35\" link=\"\" linktext=\"\" linktarget=\"_self\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\"]        <span style=\"color: #ffffff;\">Please call one of our specialist or pop into one of our travel shops and meet with an advisor in person. Alternatively, email us any questions and we will reply as quickly as possible. We look forward to being a small part of your next big adventure.</span>[/fusion_content_box][/fusion_content_boxes][/fusion_builder_column][fusion_builder_column type=\"1_3\" last=\"no\" spacing=\"no\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"#6666a4\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"10%\" margin_top=\"\" margin_bottom=\"0px\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" class=\"\" id=\"\"][fusion_imageframe lightbox=\"no\" lightbox_image=\"http://localhost/assagaylodge/wp-content/uploads/2015/01/meander-gallery.jpg\" style_type=\"none\" bordercolor=\"\" bordersize=\"0px\" borderradius=\"0\" stylecolor=\"\" align=\"none\" link=\"\" linktarget=\"_self\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" hide_on_mobile=\"no\" class=\"\" id=\"\"] <img alt=\"\" src=\"http://localhost/assagaylodge/wp-content/uploads/2015/01/meander-gallery.jpg\" />[/fusion_imageframe][fusion_content_boxes layout=\"icon-with-title\" title_size=\"\" icon_circle=\"\" icon_size=\"\" icon_align=\"left\" columns=\"1\" margin_top=\"\" margin_bottom=\"0px\" class=\"\" id=\"\"][fusion_content_box title=\"Midlands Meander\" icon=\"fa-phone\" backgroundcolor=\"\" iconcolor=\"#ffffff\" circlecolor=\"#6666a4\" circlebordercolor=\"#6666a4\" iconflip=\"\" iconrotate=\"\" iconspin=\"no\" image=\"\" image_width=\"35\" image_height=\"35\" link=\"\" linktext=\"\" linktarget=\"_self\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\"]        <span style=\"color: #ffffff;\">Please call one of our specialist or pop into one of our travel shops and meet with an advisor in person. Alternatively, email us any questions and we will reply as quickly as possible. We look forward to being a small part of your next big adventure.</span>[/fusion_content_box][/fusion_content_boxes][/fusion_builder_column][fusion_builder_column type=\"1_3\" last=\"no\" spacing=\"no\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"#7272b2\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"10%\" margin_top=\"\" margin_bottom=\"0px\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" class=\"\" id=\"\"][fusion_imageframe lightbox=\"yes\" lightbox_image=\"http://localhost/assagaylodge/wp-content/uploads/2015/01/Durban.jpg\" style_type=\"none\" bordercolor=\"\" bordersize=\"0px\" borderradius=\"0\" stylecolor=\"\" align=\"none\" link=\"\" linktarget=\"_self\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" hide_on_mobile=\"no\" class=\"\" id=\"\"] <img alt=\"\" src=\"http://localhost/assagaylodge/wp-content/uploads/2015/01/Durban.jpg\" />[/fusion_imageframe][fusion_content_boxes layout=\"icon-with-title\" title_size=\"\" icon_circle=\"\" icon_size=\"\" icon_align=\"left\" columns=\"1\" margin_top=\"\" margin_bottom=\"0px\" class=\"\" id=\"\"][fusion_content_box title=\"Durban & The Dolphin Coast\" icon=\"fa-comments\" backgroundcolor=\"\" iconcolor=\"#ffffff\" circlecolor=\"#7272b2\" circlebordercolor=\"#7272b2\" iconflip=\"\" iconrotate=\"\" iconspin=\"no\" image=\"\" image_width=\"35\" image_height=\"35\" link=\"\" linktext=\"\" linktarget=\"_self\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\"]        <span style=\"color: #ffffff;\">Please call one of our specialist or pop into one of our travel shops and meet with an advisor in person. Alternatively, email us any questions and we will reply as quickly as possible. We look forward to being a small part of your next big adventure.</span>[/fusion_content_box][/fusion_content_boxes][/fusion_builder_column][fusion_builder_column type=\"1_3\" last=\"yes\" spacing=\"no\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"#6666a4\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"10%\" margin_top=\"\" margin_bottom=\"0px\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" class=\"\" id=\"\"][fusion_imageframe lightbox=\"no\" lightbox_image=\"http://localhost/assagaylodge/wp-content/uploads/2015/01/Mountains.jpg\" style_type=\"none\" bordercolor=\"\" bordersize=\"0px\" borderradius=\"0\" stylecolor=\"\" align=\"none\" link=\"\" linktarget=\"_self\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" hide_on_mobile=\"no\" class=\"\" id=\"\"] <img alt=\"\" src=\"http://localhost/assagaylodge/wp-content/uploads/2015/01/Mountains.jpg\" />[/fusion_imageframe][fusion_content_boxes layout=\"icon-with-title\" title_size=\"\" icon_circle=\"\" icon_size=\"\" icon_align=\"left\" columns=\"1\" margin_top=\"\" margin_bottom=\"0px\" class=\"\" id=\"\"][fusion_content_box title=\"The Drakensberg\" icon=\"fa-phone\" backgroundcolor=\"\" iconcolor=\"#ffffff\" circlecolor=\"#6666a4\" circlebordercolor=\"#6666a4\" iconflip=\"\" iconrotate=\"\" iconspin=\"no\" image=\"\" image_width=\"35\" image_height=\"35\" link=\"\" linktext=\"\" linktarget=\"_self\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\"]        <span style=\"color: #ffffff;\">Please call one of our specialist or pop into one of our travel shops and meet with an advisor in person. Alternatively, email us any questions and we will reply as quickly as possible. We look forward to being a small part of your next big adventure.</span>[/fusion_content_box][/fusion_content_boxes][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container]', 'Our Destinations', '', 'inherit', 'closed', 'closed', '', '13-revision-v1', '', '', '2019-11-13 13:54:00', '2019-11-13 11:54:00', '', 13, 'https://msla.co.za/lodge/13-revision-v1/', 0, 'revision', '', 0),
(1371, 1, '2019-11-13 13:54:00', '2019-11-13 11:54:00', '[fusion_builder_container background_color=\"\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"70px\" padding_bottom=\"75px\" padding_left=\"\"    padding_right=\"\"    hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][fusion_builder_row][fusion_builder_column type=\"1_2\" last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][fusion_text]\r\n<h1>Contact Us</h1>\r\n<h2>Send us a message.</h2>\r\n[/fusion_text][fusion_text][contact-form-7 id=\"246\" title=\"Contact form 1\"][/fusion_text][/fusion_builder_column][fusion_builder_column type=\"1_2\" last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][fusion_text]\r\n<h1>Where are we?</h1>\r\n<h2>4 Williams Road\r\nAssagay, Hillcrest\r\nKwaZulu Natal</h2>\r\n<h1>Contact</h1>\r\n<h2>0317656046 or 0317655961</h2>\r\n[/fusion_text][fusion_separator style_type=\"none\" top_margin=\"\" bottom_margin=\"20\" sep_color=\"\" border_size=\"\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"\" alignment=\"\" class=\"\" id=\"\"/][fusion_accordion class=\"\" id=\"\"][fusion_toggle title=\"GPS Location\" open=\"no\"]<p>\r\n<strong>GPS: Latitude (South) -29.771865, Longitude (East) 30.736892</strong></p>\r\n[/fusion_toggle][fusion_toggle title=\"Directions from King Shaka Airport / Durban\" open=\"no\"]<p>\r\nFrom King Shaka Airport take the N2 South bound towards Durban, at the 3 level interchange be sure to take the N3 turn off towards Pietermaritzburg. Proceed through the Marionhill toll plaza and take the first off ramp marked Shongweni / Assagay / Hillcrest. Turn right towards Hillcrest into Kassier Road which will take you over the N3 and M13, keep on this road, pass the Hillcrest Private Hospital and Alverstone turn off. Remain on Kassier Road, for about 2-3km and turn into Assagay Road, which is just after Assagay Crescent.</p>\r\n<p>Take the left turn into Assagay Road. Head up the rise. Turn left into Castle Road, carry down the dip for about 500m and cross a small water-bridge. Turn first right into Lello Road, just after the bridge. Continue on Lello Road, the road dips and briefly climbs, the valley falling away to your right. Finally, turn left into Williams Road (it’s essentially the first left turn on Lello Road), Continue down Williams Road for about 800m. On your right you will come to the entrance of the farm called `Fourever` No 4 Williams Road. There’s a 1000 Hills Tourism Sign outside. A wooden fence and silver gate. Welcome to Assagay Forest Lodge.</p>\r\n[/fusion_toggle][fusion_toggle title=\"Directions from Pietermaritzburg\" open=\"no\"]<p>From Pietermaritzburg take the N3 towards Durban. After the Drummond turnoff the N3 makes a steep climb. Don\'t take the Alternative route but stay on the N3. Take the next off ramp marked Shongweni / Assagay / Hillcrest. Turn left towards Hillcrest into Kassier Road which will take you passed the Polo fields on your left and a Petrol Station on your right and over then over the M13, keep on this road, pass the Hillcrest Private Hospital and Alverstone turn off. Remain on Kassier Road, for about 2-3km and turn into Assagay Road, which is just after Assagay Crescent.</p>\r\n<p>Take the left turn into Assagay Road. Head up the rise. Turn left into Castle Road, carry down the dip for about 500m and cross a small water-bridge. Turn first right into Lello Road, just after the bridge. Continue on Lello Road, the road dips and briefly climbs, the valley falling away to your right. Finally, turn left into Williams Road (it’s essentially the first left turn on Lello Road), Continue down Williams Road for about 800m. On your right you will come to the entrance of the farm called `Fourever` No 4 Williams Road. There’s a 1000 Hills Tourism Sign outside. A wooden fence and silver gate. Welcome to Assagay Lodge.</p>\r\n[/fusion_toggle][fusion_toggle title=\"Things to do\" open=\"no\"]<p>There is plenty to do.</p>\r\n<p>Durban Sea Side - 25kms<br />Game reserve - 15 kms<br />Animal Farm - 2kms<br />Brewery - 4kms<br />Shongweni Market - 6kms<br />Shongweni Dam - 8kms<br />Valley 1000 Hills , Zulu dancing and Croc farm - 4kms<br />Drakensberg Mountains - 3 hours<br />Hillcrest Shopping Centre - 3 kms<br />Waterfall Shopping Centre - 8kms<br />Pavilion Shopping Centre - 20 kms<br />Gateway Shopping Centre - 40kms</p>\r\n[/fusion_toggle][/fusion_accordion][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container background_color=\"\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"0px\" padding_bottom=\"0px\" padding_left=\"0px\" padding_right=\"0px\" hundred_percent=\"yes\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][fusion_builder_row][fusion_builder_column type=\"1_1\" background_position=\"left top\" background_color=\"\" border_size=\"\" border_color=\"\" border_style=\"solid\" spacing=\"yes\" background_image=\"\" background_repeat=\"no-repeat\" padding=\"\" margin_top=\"0px\" margin_bottom=\"0px\" class=\"\" id=\"\" animation_type=\"\" animation_speed=\"0.3\" animation_direction=\"left\" hide_on_mobile=\"no\" center_content=\"no\" min_height=\"none\"][fusion_map address=\"Assagay Forest Lodge\" type=\"roadmap\" map_style=\"default\" overlay_color=\"#6666a4\" infobox=\"default\" infobox_background_color=\"rgba(102,102,164,.8)\" infobox_text_color=\"#ffffff\" infobox_content=\"\" icon=\"http://theme-fusion.com/avada_demos_xml/travel/wp-content/uploads/2015/01/map.png\" width=\"100%\" height=\"700px\" zoom=\"15\" scrollwheel=\"yes\" scale=\"no\" zoom_pancontrol=\"yes\" animation=\"no\" popup=\"no\" class=\"\" id=\"\"][/fusion_map][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container]', 'Contact & Directions', '', 'inherit', 'closed', 'closed', '', '11-revision-v1', '', '', '2019-11-13 13:54:00', '2019-11-13 11:54:00', '', 11, 'https://msla.co.za/lodge/11-revision-v1/', 0, 'revision', '', 0);
INSERT INTO `wp_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(1372, 1, '2019-11-13 13:54:00', '2019-11-13 11:54:00', '[fusion_builder_container background_color=\"\" background_image=\"\" background_parallax=\"none\" parallax_speed=\"0.3\" enable_mobile=\"no\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"90px\" padding_bottom=\"0px\" padding_left=\"0px\" padding_right=\"0px\" hundred_percent=\"yes\" equal_height_columns=\"yes\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][fusion_builder_row][fusion_builder_column type=\"1_2\" last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"30px\" margin_top=\"0px\" margin_bottom=\"\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" class=\"\" id=\"\"][fusion_text]\n<h1 style=\"text-align: right; margin-top: 0px;\">PURE LUXURY</h1>\n[/fusion_text][fusion_separator style_type=\"single solid\" top_margin=\"0\" bottom_margin=\"30\" sep_color=\"#000000\" border_size=\"\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"170px\" alignment=\"right\" class=\"separator-right\" id=\"\"/][fusion_text]\n<h3 style=\"text-align: right;\">Our mission is to offer travelers unrivaled\nsavings at a selection of hand-picked\nluxurious destinations.</h3>\n[/fusion_text][/fusion_builder_column][fusion_builder_column type=\"1_2\" last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"http://theme-fusion.com/avada_demos_xml/travel/wp-content/uploads/2015/01/about-us-top-image.jpg\" background_repeat=\"no-repeat\" background_position=\"center center\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" class=\"\" id=\"\"][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container background_color=\"\" background_image=\"\" background_parallax=\"none\" parallax_speed=\"0.3\" enable_mobile=\"no\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"20px\" padding_bottom=\"65px\" padding_left=\"\"    padding_right=\"\"    hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][fusion_builder_row][fusion_builder_column type=\"1_2\" last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][fusion_text]Lorem ipsum dolor sit amet, consectetur adipiscing elit. Aliquam rutrum elementum consectetur. Nulla pharetra tristique urna ut suscipit. Curabitur sit amet dolor quis arcu scelerisque viverra eu ut lorem. Sed luctus, tellus volutpat tempor elementum, nisl elit sodales mi, et hendrerit dui diam eu est. Proin commodo ante magna, at ultrices leo dignissim quis.\n\nVivamus et enim aliquam, mollis orci sit amet, pretium magna Vestibulum ut efficitur nibh. Integer rhoncus nunc eu massa dignissim molestie. Pellentesque blandit eros vel dolor finibus mattis. Nulla rhoncus hendrerit justo, a aliquam ex blandit quis. Nam odio nisl, scelerisque sed lobortis id, lobortis at ante. Aliquam varius et lacus vel varius. Vivamus efficitur nec massa a faucibus. Nam ut velit tortor. Suspendisse lacinia vehicula nisi, gravida purus porta.[/fusion_text][/fusion_builder_column][fusion_builder_column type=\"1_2\" last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][fusion_text]Lorem ipsum dolor sit amet, consectetur adipiscing elit. Aliquam rutrum elementum consectetur. Nulla pharetra tristique urna ut suscipit. Curabitur sit amet dolor quis arcu scelerisque viverra eu ut lorem.\n[/fusion_text][fusion_separator style_type=\"none\" top_margin=\"13\" bottom_margin=\"13\" sep_color=\"\" border_size=\"\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"\" alignment=\"\" class=\"\" id=\"\"/][fusion_checklist icon=\"fa-star-o\" iconcolor=\"#6666a4\" circle=\"no\" circlecolor=\"\" size=\"15px\" class=\"\" id=\"\"][fusion_li_item icon=\"\"]Lorem ipsum dolor sit amet, consectetur adipiscing elit.[/fusion_li_item][fusion_li_item icon=\"\"]Aliquam rutrum Elementum consectetur.[/fusion_li_item][fusion_li_item icon=\"\"]Nulla pharetra tristique urna ut suscipit.[/fusion_li_item][fusion_li_item icon=\"\"]CuraBitur sit amet dolor quis arcu scelerisque eu ut lorem.[/fusion_li_item][fusion_li_item icon=\"\"]VestibuLum ut efficitur nibh.[/fusion_li_item][fusion_li_item icon=\"\"]Integer rhoncus nunc eu massa dignissim mo[/fusion_li_item][/fusion_checklist][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container background_color=\"#f0f0ed\" background_image=\"\" background_parallax=\"none\" parallax_speed=\"0.3\" enable_mobile=\"no\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"60px\" padding_bottom=\"85px\" padding_left=\"\"    padding_right=\"\"    hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][fusion_builder_row][fusion_builder_column type=\"1_1\" background_position=\"left top\" background_color=\"\" border_size=\"\" border_color=\"\" border_style=\"solid\" spacing=\"yes\" background_image=\"\" background_repeat=\"no-repeat\" padding=\"\" margin_top=\"0px\" margin_bottom=\"0px\" class=\"\" id=\"\" animation_type=\"\" animation_speed=\"0.3\" animation_direction=\"left\" hide_on_mobile=\"no\" center_content=\"no\" min_height=\"none\"][fusion_text]\n<h1 style=\"text-align: center;\">MEET THE TEAM</h1>\n[/fusion_text][fusion_separator style_type=\"single solid\" top_margin=\"\" bottom_margin=\"40\" sep_color=\"#000000\" border_size=\"\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"170px\" alignment=\"\" class=\"\" id=\"\"/][/fusion_builder_column][fusion_builder_column type=\"1_6\" last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][/fusion_builder_column][fusion_builder_column type=\"2_3\" last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][fusion_text]\n<h3 style=\"text-align: center;\">Our specialists are at the heart of Avada Destinations. They have all travelled extensively and documented it perfectly so you can enjoy your adventures.</h3>\n[/fusion_text][/fusion_builder_column][fusion_builder_column type=\"1_6\" last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][/fusion_builder_column][fusion_builder_column type=\"1_1\" background_position=\"left top\" background_color=\"\" border_size=\"\" border_color=\"\" border_style=\"solid\" spacing=\"yes\" background_image=\"\" background_repeat=\"no-repeat\" padding=\"\" margin_top=\"0px\" margin_bottom=\"0px\" class=\"\" id=\"\" animation_type=\"\" animation_speed=\"0.3\" animation_direction=\"left\" hide_on_mobile=\"no\" center_content=\"no\" min_height=\"none\"][fusion_separator style_type=\"none\" top_margin=\"\" bottom_margin=\"40\" sep_color=\"#ffffff\" border_size=\"\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"170px\" alignment=\"\" class=\"\" id=\"\"/][/fusion_builder_column][fusion_builder_column type=\"1_3\" last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"rgba(255,255,255,.6)\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"30px\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][fusion_imageframe lightbox=\"no\" lightbox_image=\"\" style_type=\"none\" bordercolor=\"\" bordersize=\"0px\" borderradius=\"0\" stylecolor=\"\" align=\"center\" link=\"\" linktarget=\"_self\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" hide_on_mobile=\"no\" class=\"\" id=\"\"] <img alt=\"\" src=\"http://theme-fusion.com/avada_demos_xml/travel/wp-content/uploads/2015/01/person11.jpg\" />[/fusion_imageframe][fusion_separator style_type=\"none\" top_margin=\"10\" bottom_margin=\"10\" sep_color=\"rgba(255,255,255,.7)\" border_size=\"\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"150px\" alignment=\"\" class=\"\" id=\"\"/][fusion_text]\n<h2 style=\"text-align: center; color: #333333; margin-bottom: 0px;\">Michael Chabbi</h2>\n<h3 style=\"text-align: center; font-size: 15px; line-height: 15px; margin-top: 8px;\">President &amp; Founder</h3>\n[/fusion_text][fusion_text]\n<p style=\"text-align: center;\">Etiam rhoncus fermentum vehicula. Etiam sollicitudin eget sapien ac aliquet. Nullam tristique vitae sempers astridse facilisis.</p>\n[/fusion_text][fusion_social_links icons_boxed=\"\" icons_boxed_radius=\"\" icon_colors=\"\" box_colors=\"\" tooltip_placement=\"top\" rss=\"\" facebook=\"#\" twitter=\"#\" instagram=\"#\" dribbble=\"#\" google=\"\" linkedin=\"\" blogger=\"\" tumblr=\"\" reddit=\"\" yahoo=\"\" deviantart=\"\" vimeo=\"\" youtube=\"\" pinterest=\"\" digg=\"\" flickr=\"\" forrst=\"\" myspace=\"\" skype=\"\" paypal=\"\" dropbox=\"\" soundcloud=\"\" vk=\"\" email=\"\" show_custom=\"no\" alignment=\"center\" class=\"\" id=\"\"/][/fusion_builder_column][fusion_builder_column type=\"1_3\" last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"rgba(255,255,255,.6)\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"30px\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][fusion_imageframe lightbox=\"no\" lightbox_image=\"\" style_type=\"none\" bordercolor=\"\" bordersize=\"0px\" borderradius=\"0\" stylecolor=\"\" align=\"center\" link=\"\" linktarget=\"_self\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" hide_on_mobile=\"no\" class=\"\" id=\"\"] <img alt=\"\" src=\"http://theme-fusion.com/avada_demos_xml/travel/wp-content/uploads/2015/01/person21.jpg\" />[/fusion_imageframe][fusion_separator style_type=\"none\" top_margin=\"10\" bottom_margin=\"10\" sep_color=\"rgba(255,255,255,.7)\" border_size=\"\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"150px\" alignment=\"\" class=\"\" id=\"\"/][fusion_text]\n<h2 style=\"text-align: center; color: #333333; margin-bottom: 0px;\">Kelsie Maden</h2>\n<h3 style=\"text-align: center; font-size: 15px; line-height: 15px; margin-top: 8px;\">Account Director</h3>\n[/fusion_text][fusion_text]\n<p style=\"text-align: center;\">Etiam rhoncus fermentum vehicula. Etiam sollicitudin eget sapien ac aliquet. Nullam tristique vitae sempers astridse facilisis.</p>\n[/fusion_text][fusion_social_links icons_boxed=\"yes\" icons_boxed_radius=\"\" icon_colors=\"\" box_colors=\"\" tooltip_placement=\"top\" rss=\"\" facebook=\"#\" twitter=\"#\" instagram=\"#\" dribbble=\"#\" google=\"\" linkedin=\"\" blogger=\"\" tumblr=\"\" reddit=\"\" yahoo=\"\" deviantart=\"\" vimeo=\"\" youtube=\"\" pinterest=\"\" digg=\"\" flickr=\"\" forrst=\"\" myspace=\"\" skype=\"\" paypal=\"\" dropbox=\"\" soundcloud=\"\" vk=\"\" email=\"\" show_custom=\"no\" alignment=\"center\" class=\"\" id=\"\"/][/fusion_builder_column][fusion_builder_column type=\"1_3\" last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"rgba(255,255,255,.6)\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"30px\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][fusion_imageframe lightbox=\"no\" lightbox_image=\"\" style_type=\"none\" bordercolor=\"\" bordersize=\"0px\" borderradius=\"0\" stylecolor=\"\" align=\"center\" link=\"\" linktarget=\"_self\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" hide_on_mobile=\"no\" class=\"\" id=\"\"] <img alt=\"\" src=\"http://theme-fusion.com/avada_demos_xml/travel/wp-content/uploads/2015/01/person31.jpg\" />[/fusion_imageframe][fusion_separator style_type=\"none\" top_margin=\"10\" bottom_margin=\"10\" sep_color=\"rgba(255,255,255,.7)\" border_size=\"\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"150px\" alignment=\"\" class=\"\" id=\"\"/][fusion_text]\n<h2 style=\"text-align: center; color: #333333; margin-bottom: 0px;\">Greg Simkins</h2>\n<h3 style=\"text-align: center; font-size: 15px; line-height: 15px; margin-top: 8px;\">Marketing Director</h3>\n[/fusion_text][fusion_text]\n<p style=\"text-align: center;\">Etiam rhoncus fermentum vehicula. Etiam sollicitudin eget sapien ac aliquet. Nullam tristique vitae sempers astridse facilisis.</p>\n[/fusion_text][fusion_social_links icons_boxed=\"yes\" icons_boxed_radius=\"\" icon_colors=\"\" box_colors=\"\" tooltip_placement=\"top\" rss=\"\" facebook=\"#\" twitter=\"#\" instagram=\"#\" dribbble=\"#\" google=\"\" linkedin=\"\" blogger=\"\" tumblr=\"\" reddit=\"\" yahoo=\"\" deviantart=\"\" vimeo=\"\" youtube=\"\" pinterest=\"\" digg=\"\" flickr=\"\" forrst=\"\" myspace=\"\" skype=\"\" paypal=\"\" dropbox=\"\" soundcloud=\"\" vk=\"\" email=\"\" show_custom=\"no\" alignment=\"center\" class=\"\" id=\"\"/][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container background_color=\"#f0f0ed\" background_image=\"http://theme-fusion.com/avada_demos_xml/travel/wp-content/uploads/2015/01/about-parallax1.jpg\" background_parallax=\"fixed\" parallax_speed=\"0.3\" enable_mobile=\"no\" background_repeat=\"no-repeat\" background_position=\"center center\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"110px\" padding_bottom=\"110px\" padding_left=\"\"    padding_right=\"\"    hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][fusion_builder_row][fusion_builder_column type=\"1_1\" background_position=\"left top\" background_color=\"\" border_size=\"\" border_color=\"\" border_style=\"solid\" spacing=\"yes\" background_image=\"\" background_repeat=\"no-repeat\" padding=\"\" margin_top=\"0px\" margin_bottom=\"0px\" class=\"\" id=\"\" animation_type=\"\" animation_speed=\"0.3\" animation_direction=\"left\" hide_on_mobile=\"no\" center_content=\"no\" min_height=\"none\"][fusion_text]\n<h1 style=\"text-align: center;\"><span style=\"color: #ffffff;\">OUR PARTNERS</span></h1>\n[/fusion_text][fusion_separator style_type=\"single solid\" top_margin=\"\" bottom_margin=\"40\" sep_color=\"#ffffff\" border_size=\"\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"170px\" alignment=\"\" class=\"\" id=\"\"/][/fusion_builder_column][fusion_builder_column type=\"1_6\" last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][/fusion_builder_column][fusion_builder_column type=\"2_3\" last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][fusion_text]\n<h3 style=\"text-align: center;\"><span style=\"color: #ffffff;\">We work with the very best. We are proud of our partners, who work with us to deliver the best in bespoke travel</span></h3>\n[/fusion_text][/fusion_builder_column][fusion_builder_column type=\"1_6\" last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][/fusion_builder_column][fusion_builder_column type=\"1_1\" background_position=\"left top\" background_color=\"\" border_size=\"\" border_color=\"\" border_style=\"solid\" spacing=\"yes\" background_image=\"\" background_repeat=\"no-repeat\" padding=\"\" margin_top=\"0px\" margin_bottom=\"0px\" class=\"\" id=\"\" animation_type=\"\" animation_speed=\"0.3\" animation_direction=\"left\" hide_on_mobile=\"no\" center_content=\"no\" min_height=\"none\"][fusion_separator style_type=\"none\" top_margin=\"20\" bottom_margin=\"20\" sep_color=\"#ffffff\" border_size=\"\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"170px\" alignment=\"\" class=\"\" id=\"\"/][/fusion_builder_column][fusion_builder_column type=\"1_1\" background_position=\"left top\" background_color=\"\" border_size=\"\" border_color=\"\" border_style=\"solid\" spacing=\"yes\" background_image=\"\" background_repeat=\"no-repeat\" padding=\"\" margin_top=\"0px\" margin_bottom=\"0px\" class=\"\" id=\"\" animation_type=\"\" animation_speed=\"0.3\" animation_direction=\"left\" hide_on_mobile=\"no\" center_content=\"no\" min_height=\"none\"][fusion_images picture_size=\"auto\" autoplay=\"yes\" columns=\"5\" column_spacing=\"45\" scroll_items=\"1\" show_nav=\"no\" mouse_scroll=\"yes\" border=\"no\" lightbox=\"no\" class=\"\" id=\"\"][fusion_image link=\"\" linktarget=\"_self\" image=\"http://theme-fusion.com/avada_demos_xml/travel/wp-content/uploads/2015/01/logo41.png\" alt=\"\"/][fusion_image link=\"\" linktarget=\"_self\" image=\"http://theme-fusion.com/avada_demos_xml/travel/wp-content/uploads/2015/01/logo31.png\" alt=\"\"/][fusion_image link=\"\" linktarget=\"_self\" image=\"http://theme-fusion.com/avada_demos_xml/travel/wp-content/uploads/2015/01/logo21.png\" alt=\"\"/][fusion_image link=\"\" linktarget=\"_self\" image=\"http://theme-fusion.com/avada_demos_xml/travel/wp-content/uploads/2015/01/logo11.png\" alt=\"\"/][fusion_image link=\"\" linktarget=\"_self\" image=\"http://theme-fusion.com/avada_demos_xml/travel/wp-content/uploads/2015/01/logo52.png\" alt=\"\"/][fusion_image link=\"\" linktarget=\"_self\" image=\"http://theme-fusion.com/avada_demos_xml/travel/wp-content/uploads/2015/01/logo21.png\" alt=\"\"/][fusion_image link=\"\" linktarget=\"_self\" image=\"http://theme-fusion.com/avada_demos_xml/travel/wp-content/uploads/2015/01/logo11.png\" alt=\"\"/][fusion_image link=\"\" linktarget=\"_self\" image=\"http://theme-fusion.com/avada_demos_xml/travel/wp-content/uploads/2015/01/logo52.png\" alt=\"\"/][/fusion_images][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container background_color=\"#f0f0ed\" background_image=\"\" background_parallax=\"none\" parallax_speed=\"0.3\" enable_mobile=\"no\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"60px\" padding_bottom=\"110px\" padding_left=\"\"    padding_right=\"\"    hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][fusion_builder_row][fusion_builder_column type=\"1_1\" background_position=\"left top\" background_color=\"\" border_size=\"\" border_color=\"\" border_style=\"solid\" spacing=\"yes\" background_image=\"\" background_repeat=\"no-repeat\" padding=\"\" margin_top=\"0px\" margin_bottom=\"0px\" class=\"\" id=\"\" animation_type=\"\" animation_speed=\"0.3\" animation_direction=\"left\" hide_on_mobile=\"no\" center_content=\"no\" min_height=\"none\"][fusion_text]\n<h1 style=\"text-align: center;\">OUR PROMISE</h1>\n[/fusion_text][fusion_separator style_type=\"single solid\" top_margin=\"\" bottom_margin=\"40\" sep_color=\"#000000\" border_size=\"\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"170px\" alignment=\"\" class=\"\" id=\"\"/][/fusion_builder_column][fusion_builder_column type=\"1_6\" last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][/fusion_builder_column][fusion_builder_column type=\"2_3\" last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][fusion_text]\n<h3 style=\"text-align: center;\">No request is too big or too small for our team. If it matters to you, it matters to us. Let us make your escape perfect.</h3>\n[/fusion_text][/fusion_builder_column][fusion_builder_column type=\"1_6\" last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][/fusion_builder_column][fusion_builder_column type=\"1_1\" background_position=\"left top\" background_color=\"\" border_size=\"\" border_color=\"\" border_style=\"solid\" spacing=\"yes\" background_image=\"\" background_repeat=\"no-repeat\" padding=\"\" margin_top=\"0px\" margin_bottom=\"0px\" class=\"\" id=\"\" animation_type=\"\" animation_speed=\"0.3\" animation_direction=\"left\" hide_on_mobile=\"no\" center_content=\"no\" min_height=\"none\"][fusion_separator style_type=\"none\" top_margin=\"\" bottom_margin=\"40\" sep_color=\"#ffffff\" border_size=\"\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"170px\" alignment=\"\" class=\"\" id=\"\"/][/fusion_builder_column][fusion_builder_column type=\"1_1\" background_position=\"left top\" background_color=\"\" border_size=\"\" border_color=\"\" border_style=\"solid\" spacing=\"yes\" background_image=\"\" background_repeat=\"no-repeat\" padding=\"\" margin_top=\"0px\" margin_bottom=\"0px\" class=\"\" id=\"\" animation_type=\"\" animation_speed=\"0.3\" animation_direction=\"left\" hide_on_mobile=\"no\" center_content=\"no\" min_height=\"none\"][fusion_tabs design=\"clean\" layout=\"horizontal\" justified=\"no\" backgroundcolor=\"\" inactivecolor=\"\" bordercolor=\"\" class=\"\" id=\"\"][fusion_tab title=\"Who we are\" icon=\"fa-star-o\"][fusion_separator style_type=\"none\" top_margin=\"15\" bottom_margin=\"15\" sep_color=\"\" icon=\"\" width=\"\" class=\"\" id=\"\"/]\n\n[fusion_builder_row_inner][fusion_builder_column_inner type=\"1_2\" last=\"no\" spacing=\"yes\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" class=\"\" id=\"\"][fusion_imageframe lightbox=\"right\" style_type=\"none\" bordercolor=\"\" bordersize=\"0px\" borderradius=\"5px\" stylecolor=\"\" align=\"center\" link=\"\" linktarget=\"_self\" animation_type=\"fade\" animation_direction=\"left\" animation_speed=\"1\" class=\"\" id=\"\"] <img src=\"http://theme-fusion.com/avada_demos_xml/travel/wp-content/uploads/2015/02/tab2.jpg\" alt=\"\" />[/fusion_imageframe][/fusion_builder_column_inner]\n\n[fusion_builder_column_inner type=\"1_2\" last=\"yes\" spacing=\"yes\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" class=\"\" id=\"\"]\n\nLorem ipsum dolor sit amet, consectetur adipiscing elit. Morbi vel nulla sapien. Class aptent tacitiaptent taciti sociosqu ad lit himenaeos. Suspendisse massa urna luctus. Donec at commodo erat. Sed egestas consequat augue eu iaculis facilis [fusion_tooltip title=\"We Make Dream Vacations\" placement=\"top\" trigger=\"hover\" class=\"\" id=\"\"]sadips ipsums dolores[/fusion_tooltip]. Sed gravida, nisl ac lobortis pulvinar augue.\n\n<em>Tempus eget urna id, maximus commodo odio. Lorem ipsum dolor sit amet, consectetur elits sadips. Praesent alis lacus. Nunc at vulputate justo.</em>\n\n[fusion_separator style_type=\"none\" top_margin=\"5\" bottom_margin=\"5\" sep_color=\"\" icon=\"\" width=\"\" class=\"\" id=\"\"/]\n\n[fusion_button link=\"http://themeforest.net/item/avada-responsive-multipurpose-theme/2833226?ref=ThemeFusion\" color=\"default\" size=\"large\" type=\"3d\" shape=\"round\" target=\"_blank\" title=\"\" gradient_colors=\"transparent|\" gradient_hover_colors=\"#6797be|\" accent_color=\"#6797be\" accent_hover_color=\"#ffffff\" bevel_color=\"\" border_width=\"0px\" shadow=\"no\" icon=\"\" icon_position=\"left\" icon_divider=\"no\" modal=\"\" animation_type=\"0\" animation_direction=\"left\" animation_speed=\"1\" alignment=\"left\" class=\"\" id=\"\"]Learn More[/fusion_button]\n\n[fusion_button link=\"http://theme-fusion.com/avada_demos_xml/travel/make-a-reservation/\" color=\"default\" size=\"large\" type=\"3d\" shape=\"round\" target=\"_blank\" title=\"\" gradient_colors=\"transparent|\" gradient_hover_colors=\"#6797be|\" accent_color=\"#6797be\" accent_hover_color=\"#ffffff\" bevel_color=\"\" border_width=\"0px\" shadow=\"no\" icon=\"\" icon_position=\"left\" icon_divider=\"no\" modal=\"contact\" animation_type=\"0\" animation_direction=\"left\" animation_speed=\"1\" alignment=\"left\" class=\"\" id=\"\"]Make A Reservation[/fusion_button]\n\n[/fusion_builder_column_inner][/fusion_builder_row_inner][/fusion_tab][fusion_tab title=\"What we do\" icon=\"fa-plane\"][fusion_separator style_type=\"none\" top_margin=\"15\" bottom_margin=\"15\" sep_color=\"\" icon=\"\" width=\"\" class=\"\" id=\"\"/]\n\n[fusion_builder_row_inner][fusion_builder_column_inner type=\"1_2\" last=\"no\" spacing=\"yes\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" class=\"\" id=\"\"][fusion_imageframe lightbox=\"right\" style_type=\"none\" bordercolor=\"\" bordersize=\"0px\" borderradius=\"5px\" stylecolor=\"\" align=\"center\" link=\"\" linktarget=\"_self\" animation_type=\"fade\" animation_direction=\"left\" animation_speed=\"1\" class=\"\" id=\"\"] <img src=\"http://theme-fusion.com/avada_demos_xml/travel/wp-content/uploads/2015/02/tab2.jpg\" alt=\"\" />[/fusion_imageframe][/fusion_builder_column_inner]\n\n[fusion_builder_column_inner type=\"1_2\" last=\"yes\" spacing=\"yes\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" class=\"\" id=\"\"]\n\nLorem ipsum dolor sit amet, consectetur adipiscing elit. Morbi vel nulla sapien. Class aptent tacitiaptent taciti sociosqu ad lit himenaeos. Suspendisse massa urna luctus. Donec at commodo erat. Sed egestas consequat augue eu iaculis facilis [fusion_tooltip title=\"We Make Dream Vacations\" placement=\"top\" trigger=\"hover\" class=\"\" id=\"\"]sadips ipsums dolores[/fusion_tooltip]. Sed gravida, nisl ac lobortis pulvinar augue.\n\n<em>Tempus eget urna id, maximus commodo odio. Lorem ipsum dolor sit amet, consectetur elits sadips. Praesent alis lacus. Nunc at vulputate justo.</em>\n\n[fusion_separator style_type=\"none\" top_margin=\"5\" bottom_margin=\"5\" sep_color=\"\" icon=\"\" width=\"\" class=\"\" id=\"\"/]\n\n[fusion_button link=\"http://themeforest.net/item/avada-responsive-multipurpose-theme/2833226?ref=ThemeFusion\" color=\"default\" size=\"large\" type=\"3d\" shape=\"round\" target=\"_blank\" title=\"\" gradient_colors=\"transparent|\" gradient_hover_colors=\"#6797be|\" accent_color=\"#6797be\" accent_hover_color=\"#ffffff\" bevel_color=\"\" border_width=\"0px\" shadow=\"no\" icon=\"\" icon_position=\"left\" icon_divider=\"no\" modal=\"\" animation_type=\"0\" animation_direction=\"left\" animation_speed=\"1\" alignment=\"left\" class=\"\" id=\"\"]Learn More[/fusion_button]\n\n[fusion_button link=\"http://theme-fusion.com/avada_demos_xml/travel/make-a-reservation/\" color=\"default\" size=\"large\" type=\"3d\" shape=\"round\" target=\"_blank\" title=\"\" gradient_colors=\"transparent|\" gradient_hover_colors=\"#6797be|\" accent_color=\"#6797be\" accent_hover_color=\"#ffffff\" bevel_color=\"\" border_width=\"0px\" shadow=\"no\" icon=\"\" icon_position=\"left\" icon_divider=\"no\" modal=\"contact\" animation_type=\"0\" animation_direction=\"left\" animation_speed=\"1\" alignment=\"left\" class=\"\" id=\"\"]Make A Reservation[/fusion_button]\n\n[/fusion_builder_column_inner][/fusion_builder_row_inner][/fusion_tab][fusion_tab title=\"What we beleive\" icon=\"fa-trophy\"][fusion_separator style_type=\"none\" top_margin=\"15\" bottom_margin=\"15\" sep_color=\"\" icon=\"\" width=\"\" class=\"\" id=\"\"/]\n\n[fusion_builder_row_inner][fusion_builder_column_inner type=\"1_2\" last=\"no\" spacing=\"yes\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" class=\"\" id=\"\"][fusion_imageframe lightbox=\"right\" style_type=\"none\" bordercolor=\"\" bordersize=\"0px\" borderradius=\"5px\" stylecolor=\"\" align=\"center\" link=\"\" linktarget=\"_self\" animation_type=\"fade\" animation_direction=\"left\" animation_speed=\"1\" class=\"\" id=\"\"] <img src=\"http://theme-fusion.com/avada_demos_xml/travel/wp-content/uploads/2015/02/tab2.jpg\" alt=\"\" />[/fusion_imageframe][/fusion_builder_column_inner]\n\n[fusion_builder_column_inner type=\"1_2\" last=\"yes\" spacing=\"yes\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" class=\"\" id=\"\"]\n\nLorem ipsum dolor sit amet, consectetur adipiscing elit. Morbi vel nulla sapien. Class aptent tacitiaptent taciti sociosqu ad lit himenaeos. Suspendisse massa urna luctus. Donec at commodo erat. Sed egestas consequat augue eu iaculis facilis [fusion_tooltip title=\"We Make Dream Vacations\" placement=\"top\" trigger=\"hover\" class=\"\" id=\"\"]sadips ipsums dolores[/fusion_tooltip]. Sed gravida, nisl ac lobortis pulvinar augue.\n\n<em>Tempus eget urna id, maximus commodo odio. Lorem ipsum dolor sit amet, consectetur elits sadips. Praesent alis lacus. Nunc at vulputate justo.</em>\n\n[fusion_separator style_type=\"none\" top_margin=\"5\" bottom_margin=\"5\" sep_color=\"\" icon=\"\" width=\"\" class=\"\" id=\"\"/]\n\n[fusion_button link=\"http://themeforest.net/item/avada-responsive-multipurpose-theme/2833226?ref=ThemeFusion\" color=\"default\" size=\"large\" type=\"3d\" shape=\"round\" target=\"_blank\" title=\"\" gradient_colors=\"transparent|\" gradient_hover_colors=\"#6797be|\" accent_color=\"#6797be\" accent_hover_color=\"#ffffff\" bevel_color=\"\" border_width=\"0px\" shadow=\"no\" icon=\"\" icon_position=\"left\" icon_divider=\"no\" modal=\"\" animation_type=\"0\" animation_direction=\"left\" animation_speed=\"1\" alignment=\"left\" class=\"\" id=\"\"]Learn More[/fusion_button]\n\n[fusion_button link=\"http://theme-fusion.com/avada_demos_xml/travel/make-a-reservation/\" color=\"default\" size=\"large\" type=\"3d\" shape=\"round\" target=\"_blank\" title=\"\" gradient_colors=\"transparent|\" gradient_hover_colors=\"#6797be|\" accent_color=\"#6797be\" accent_hover_color=\"#ffffff\" bevel_color=\"\" border_width=\"0px\" shadow=\"no\" icon=\"\" icon_position=\"left\" icon_divider=\"no\" modal=\"contact\" animation_type=\"0\" animation_direction=\"left\" animation_speed=\"1\" alignment=\"left\" class=\"\" id=\"\"]Make A Reservation[/fusion_button]\n\n[/fusion_builder_column_inner][/fusion_builder_row_inner][/fusion_tab][/fusion_tabs][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container]', 'About Us', '', 'inherit', 'closed', 'closed', '', '9-revision-v1', '', '', '2019-11-13 13:54:00', '2019-11-13 11:54:00', '', 9, 'https://msla.co.za/lodge/9-revision-v1/', 0, 'revision', '', 0);
INSERT INTO `wp_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(1373, 1, '2019-11-13 13:54:00', '2019-11-13 11:54:00', '[fusion_builder_container background_color=\"#f0f0ed\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"20\" padding_bottom=\"20\" padding_left=\"\"    padding_right=\"\"    hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][fusion_builder_row][fusion_builder_column type=\"1_2\" last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][fusion_separator style_type=\"single solid\" top_margin=\"0\" bottom_margin=\"30\" sep_color=\"#000000\" border_size=\"\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"170px\" alignment=\"center\" class=\"separator-left\" id=\"\"/][fusion_text]\n<h1 style=\"text-align: center;\">No Fancy Star Grading\nNo Room Service\nNo Bed Turn-downs\nNo Rose Petals in the Bath water</h1>\n<h1 style=\"text-align: center;\">... just old fashioned homely comforts</h1>\n[/fusion_text][/fusion_builder_column][fusion_builder_column type=\"1_2\" last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][fusion_text]\n<h1 style=\"text-align: justify;\">5 BEDROOM FAMILY LODGE</h1>\n<h3 style=\"text-align: justify;\">We are a four season lodge, because there’s always something to celebrate… We offer comfort, relaxation and privacy right in the heart of 1000 Hills. The Forest, the Gardens, the Atmosphere all speak to  Rest  &amp; Relaxation.</h3>\n[/fusion_text][fusion_separator style_type=\"single solid\" top_margin=\"0\" bottom_margin=\"30\" sep_color=\"#000000\" border_size=\"\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"170px\" alignment=\"left\" class=\"separator-left\" id=\"\"/][fusion_title size=\"1\" content_align=\"right\" style_type=\"default\" sep_color=\"\" margin_top=\"\" margin_bottom=\"\" class=\"\" id=\"\"]\n<h1 style=\"text-align: center;\">Current Offers!</h1>\n[/fusion_title][fusion_checklist icon=\"fa-sort-amount-desc\" iconcolor=\"\" circle=\"yes\" circlecolor=\"\" size=\"13px\" class=\"\" id=\"\"][fusion_li_item icon=\"\"]\n<h3>Book on-line - get 15% OFF your <a href=\"http://msla.co.za/lodge/reservations/\"> Accommodation</a> or...</h3>\n[/fusion_li_item][fusion_li_item icon=\"\"]\n<h3><a href=\"http://msla.co.za/lodge/reservations/\">Stay 3 days or more</a> - get 25% OFF your Accommodation</h3>\n[/fusion_li_item][/fusion_checklist][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container background_color=\"#f0f0ed\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"20\" padding_bottom=\"20\" padding_left=\"\"    padding_right=\"\"    hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][fusion_builder_row][fusion_builder_column type=\"1_2\" last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][fusion_text]\n<h3 style=\"text-align: justify;\">Set in the rolling peaks and valleys of a thousand hills surrounded by a canopy of indigenous trees, you will find that horses still have right of way, we certainly offer the best of both worlds, farm and charm coupled with modern amenities that will have you feeling relaxed and rejuvenated.</h3>\n<h3 style=\"text-align: justify;\">We know that sometimes you are searching for a romantic getaway or maybe a few days away with old friends. Other times you are searching for a place to host a weekend, family reunion or a business retreat. In addition to nightly room rentals, our lodge is also available for meetings, retreats  and makes the perfect place for a wedding party to stay together and get ready for the big day. Regardless, with our five comfortable and cozy guest bedrooms, multiple garden spaces and hideaways, and a  large private deck  where you can take a nap or read a book we definitely have the room for you!</h3>\n<h3 style=\"text-align: justify;\">Evenings are quiet and peaceful taking you far away from the business of city life. This is a unique and memorable country experience. We look forward to having you as a guest!</h3>\n[/fusion_text][/fusion_builder_column][fusion_builder_column type=\"1_2\" last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][fusion_text]\n<h3 style=\"text-align: justify;\">Our lodge has been in our family for years and has recently been beautifully renovated. Five rooms all with en-suite showers lead off your own large central lounge, featuring a 36 foot high vaulted ceiling, offering spacious living, dining, and a bar/conversational lounge area which includes a fitted kitchenette, all adding to a sense of homely comfort. Sumptuous meals can be provided on request and served on the bottom deck at the swimming pool.</h3>\n<h3 style=\"text-align: justify;\">Be lulled to sleep by the sound of the waterfall and tinkling stream just outside your window, waking from a peaceful night\'s sleep in a pillow-top bed dressed in luxurious linens to coddle you in ultimate comfort.</h3>\n<h3 style=\"text-align: justify;\">Our property boasts many different species of birds and animals. We have a resident otter, a family of wild bush pigs,  a family of rock rabbits, porcupine, little blue duikers, a variety of different frogs and an abundance of bird life, including the occasional snakes that pass through!</h3>\n[/fusion_text][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container background_color=\"#f0f0ed\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"20\" padding_bottom=\"20\" padding_left=\"\"    padding_right=\"\"    hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][fusion_builder_row][fusion_builder_column type=\"1_1\" background_position=\"left top\" background_color=\"\" border_size=\"\" border_color=\"\" border_style=\"solid\" spacing=\"yes\" background_image=\"\" background_repeat=\"no-repeat\" padding=\"\" margin_top=\"0px\" margin_bottom=\"0px\" class=\"\" id=\"\" animation_type=\"\" animation_speed=\"0.3\" animation_direction=\"left\" hide_on_mobile=\"no\" center_content=\"no\" min_height=\"none\"][fusion_text]\n<h1 style=\"text-align: center;\">Gallery</h1>\n[/fusion_text][fusion_separator style_type=\"single solid\" top_margin=\"\" bottom_margin=\"40\" sep_color=\"#000000\" border_size=\"\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"170px\" alignment=\"\" class=\"\" id=\"\"/][/fusion_builder_column][fusion_builder_column type=\"1_6\" last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][/fusion_builder_column][fusion_builder_column type=\"2_3\" last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][fusion_text]\n<h3 style=\"text-align: justify;\">The Lodge is open, spacious, comfortable and homely. During hot summer days, sit and bask in the sun on the deck  with one of our  picnic specials. In winter, snuggle up with a good book or challenge one another to a friendly board game in the glassed nook area .</h3>\n[/fusion_text][/fusion_builder_column][fusion_builder_column type=\"1_6\" last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container background_color=\"#f0f0ed\" background_image=\"http://localhost/assagaylodge/wp-content/uploads/2015/01/Wood_Texture.jpg\" background_parallax=\"fixed\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"30\" padding_bottom=\"10\" padding_left=\"0\" padding_right=\"0\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][fusion_builder_row][fusion_builder_column type=\"1_1\" background_position=\"left top\" background_color=\"\" border_size=\"\" border_color=\"\" border_style=\"solid\" spacing=\"yes\" background_image=\"\" background_repeat=\"no-repeat\" padding=\"\" margin_top=\"0px\" margin_bottom=\"0px\" class=\"\" id=\"\" animation_type=\"\" animation_speed=\"0.3\" animation_direction=\"left\" hide_on_mobile=\"no\" center_content=\"no\" min_height=\"none\"][fusion_portfolio layout=\"grid\" picture_size=\"auto\" boxed_text=\"unboxed\" filters=\"no\" columns=\"3\" column_spacing=\"12\" cat_slug=\"the-lodge\" exclude_cats=\"\" number_posts=\"9\" offset=\"\" excerpt_length=\"35\" strip_html=\"yes\" carousel_layout=\"title_on_rollover\" scroll_items=\"\" autoplay=\"no\" show_nav=\"yes\" mouse_scroll=\"no\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][/fusion_portfolio][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container background_color=\"#f0f0ed\" background_image=\"\" background_parallax=\"fixed\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"20\" padding_bottom=\"20\" padding_left=\"\"    padding_right=\"\"    hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][fusion_builder_row][fusion_builder_column type=\"1_1\" background_position=\"left top\" background_color=\"\" border_size=\"\" border_color=\"\" border_style=\"solid\" spacing=\"yes\" background_image=\"\" background_repeat=\"no-repeat\" padding=\"\" margin_top=\"0px\" margin_bottom=\"0px\" class=\"\" id=\"\" animation_type=\"\" animation_speed=\"0.3\" animation_direction=\"left\" hide_on_mobile=\"no\" center_content=\"no\" min_height=\"none\"][fusion_text]\n<h1 style=\"text-align: center;\">BEDROOMS</h1>\n[/fusion_text][fusion_separator style_type=\"single solid\" top_margin=\"\" bottom_margin=\"20\" sep_color=\"#000000\" border_size=\"\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"170px\" alignment=\"\" class=\"\" id=\"\"/][/fusion_builder_column][fusion_builder_column type=\"1_6\" last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][/fusion_builder_column][fusion_builder_column type=\"2_3\" last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][fusion_text]\n<h3 style=\"text-align: justify;\">When it comes to our bedrooms we’re proud to say we offer something a little more special. One of five  lovingly and tastefully decorated guest rooms. Soft gray decor soothes the senses providing a peaceful, blissfully comfortable rest from your travels and hectic lives.</h3>\n<h3 style=\"text-align: justify;\">Our  bedrooms are spacious, clean, comfortable all en-suite, equipped with either king size or queen size beds. Each room sleeps two guests. The rooms have high ceilings, wall heaters &amp; ceiling fans. Beds all have electric blankets in Winter, 100% cotton percale sheets and thick hyper allergenic microfiber duvets and pillows. All guest rooms are cleaned with organic and green products. Amenities include hairdryers in each room. Three rooms feature King-sized beds  of which two can be  split into two single beds. Two  rooms can therefore be changed into a twin room upon request. Two rooms feature a Queen-sized double bed. These beds cannot be split into twin beds.</h3>\n[/fusion_text][/fusion_builder_column][fusion_builder_column type=\"1_6\" last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container background_color=\"\" background_image=\"http://localhost/assagaylodge/wp-content/uploads/2015/01/DSC01516-1148-x-764.jpg\" background_parallax=\"fixed\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"center center\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"20\" padding_bottom=\"20\" padding_left=\"0\" padding_right=\"0\" hundred_percent=\"no\" equal_height_columns=\"yes\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][fusion_builder_row][fusion_builder_column type=\"1_1\" background_position=\"left top\" background_color=\"\" border_size=\"\" border_color=\"\" border_style=\"solid\" spacing=\"yes\" background_image=\"\" background_repeat=\"no-repeat\" padding=\"\" margin_top=\"0px\" margin_bottom=\"0px\" class=\"\" id=\"\" animation_type=\"\" animation_speed=\"0.3\" animation_direction=\"left\" hide_on_mobile=\"no\" center_content=\"no\" min_height=\"none\"][fusion_portfolio layout=\"grid\" picture_size=\"auto\" boxed_text=\"unboxed\" filters=\"no\" columns=\"3\" column_spacing=\"12\" cat_slug=\"bedrooms\" exclude_cats=\"\" number_posts=\"6\" offset=\"\" excerpt_length=\"35\" strip_html=\"yes\" carousel_layout=\"title_on_rollover\" scroll_items=\"\" autoplay=\"no\" show_nav=\"yes\" mouse_scroll=\"no\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][/fusion_portfolio][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container background_color=\"#f0f0ed\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"20\" padding_bottom=\"20\" padding_left=\"0\" padding_right=\"0\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][fusion_builder_row][fusion_builder_column type=\"1_1\" background_position=\"left top\" background_color=\"\" border_size=\"\" border_color=\"\" border_style=\"solid\" spacing=\"yes\" background_image=\"\" background_repeat=\"no-repeat\" padding=\"\" margin_top=\"0px\" margin_bottom=\"0px\" class=\"\" id=\"\" animation_type=\"\" animation_speed=\"0.3\" animation_direction=\"left\" hide_on_mobile=\"no\" center_content=\"no\" min_height=\"none\"][fusion_text]\n<h1 style=\"text-align: center;\">GARDENS</h1>\n[/fusion_text][fusion_separator style_type=\"single solid\" top_margin=\"\" bottom_margin=\"20\" sep_color=\"#000000\" border_size=\"\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"170px\" alignment=\"\" class=\"\" id=\"\"/][/fusion_builder_column][fusion_builder_column type=\"1_6\" last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][/fusion_builder_column][fusion_builder_column type=\"2_3\" last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][fusion_text]\n<h3 style=\"text-align: justify;\">The garden is large and offers many secluded spots to lose yourself in a book with a glass of wine underneath the shade of a tree, listening to the sounds of the birds and smelling the beautiful flowers.</h3>\n[/fusion_text][/fusion_builder_column][fusion_builder_column type=\"1_6\" last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][/fusion_builder_column][fusion_builder_column type=\"1_1\" background_position=\"left top\" background_color=\"\" border_size=\"\" border_color=\"\" border_style=\"solid\" spacing=\"yes\" background_image=\"\" background_repeat=\"no-repeat\" padding=\"\" margin_top=\"0px\" margin_bottom=\"0px\" class=\"\" id=\"\" animation_type=\"\" animation_speed=\"0.3\" animation_direction=\"left\" hide_on_mobile=\"no\" center_content=\"no\" min_height=\"none\"][fusion_portfolio layout=\"grid\" picture_size=\"auto\" boxed_text=\"boxed\" filters=\"no\" columns=\"3\" column_spacing=\"12\" cat_slug=\"gardens\" exclude_cats=\"\" number_posts=\"9\" offset=\"\" excerpt_length=\"35\" strip_html=\"yes\" carousel_layout=\"title_on_rollover\" scroll_items=\"\" autoplay=\"no\" show_nav=\"yes\" mouse_scroll=\"no\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][/fusion_portfolio][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container background_color=\"#ffffff\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"65px\" padding_bottom=\"65px\" padding_left=\"\"    padding_right=\"\"    hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][fusion_builder_row][fusion_builder_column type=\"1_1\" background_position=\"left top\" background_color=\"\" border_size=\"\" border_color=\"\" border_style=\"solid\" spacing=\"yes\" background_image=\"\" background_repeat=\"no-repeat\" padding=\"\" margin_top=\"0px\" margin_bottom=\"0px\" class=\"\" id=\"\" animation_type=\"\" animation_speed=\"0.3\" animation_direction=\"left\" hide_on_mobile=\"no\" center_content=\"no\" min_height=\"none\"][fusion_button link=\"https://msla.co.za/lodge/reservations/\" color=\"default\" size=\"xlarge\" stretch=\"default\" type=\"3d\" shape=\"round\" target=\"_self\" title=\"\" gradient_colors=\"#f0f0ed|#f0f0ed\" gradient_hover_colors=\"#6666a4|#6666a4\" accent_color=\"#ffffff\" accent_hover_color=\"#ffffff\" bevel_color=\"\" border_width=\"0px\" icon=\"\" icon_position=\"left\" icon_divider=\"no\" modal=\"\" animation_type=\"0\" animation_direction=\"left\" animation_speed=\"1\" animation_offset=\"\" alignment=\"center\" class=\"\" id=\"\"]Make A Reservation Enquiry[/fusion_button][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container]', 'Home', '', 'inherit', 'closed', 'closed', '', '7-revision-v1', '', '', '2019-11-13 13:54:00', '2019-11-13 11:54:00', '', 7, 'https://msla.co.za/lodge/7-revision-v1/', 0, 'revision', '', 0),
(1374, 1, '2019-11-13 13:54:01', '2019-11-13 11:54:01', 'Welcome to WordPress. This is your first post. Edit or delete it, then start blogging!', 'Hello world!', '', 'inherit', 'closed', 'closed', '', '1-revision-v1', '', '', '2019-11-13 13:54:01', '2019-11-13 11:54:01', '', 1, 'https://msla.co.za/lodge/1-revision-v1/', 0, 'revision', '', 0);
INSERT INTO `wp_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(1376, 1, '2019-11-13 13:58:31', '2019-11-13 11:58:31', '[fusion_builder_container background_color=\"#f0f0ed\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"20\" padding_bottom=\"20\" padding_left=\"\" padding_right=\"\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][fusion_builder_row][fusion_builder_column type=\"1_2\" layout=\"1_2\" last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"\" padding_right=\"\" padding_bottom=\"\" padding_left=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\" min_height=\"\"][fusion_separator style_type=\"single solid\" top_margin=\"0\" bottom_margin=\"30\" sep_color=\"#000000\" border_size=\"\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"170px\" alignment=\"center\" class=\"separator-left\" id=\"\" /][fusion_text]\r\n<h1 style=\"text-align: center;\">No Fancy Star Grading\r\nNo Room Service\r\nNo Bed Turn-downs\r\nNo Rose Petals in the Bath water</h1>\r\n<h1 style=\"text-align: center;\">... just old fashioned homely comforts</h1>\r\n[/fusion_text][/fusion_builder_column][fusion_builder_column type=\"1_2\" layout=\"1_2\" last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"\" padding_right=\"\" padding_bottom=\"\" padding_left=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\" min_height=\"\"][fusion_text]\r\n<h1 style=\"text-align: justify;\">5 BEDROOM FAMILY LODGE</h1>\r\n<h3 style=\"text-align: justify;\">We are a four season lodge, because there’s always something to celebrate… We offer comfort, relaxation and privacy right in the heart of 1000 Hills. The Forest, the Gardens, the Atmosphere all speak to  Rest  &amp; Relaxation.</h3>\r\n[/fusion_text][fusion_separator style_type=\"single solid\" top_margin=\"0\" bottom_margin=\"30\" sep_color=\"#000000\" border_size=\"\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"170px\" alignment=\"left\" class=\"separator-left\" id=\"\" /][fusion_title size=\"1\" content_align=\"right\" style_type=\"default\" sep_color=\"\" margin_top=\"\" margin_bottom=\"\" class=\"\" id=\"\"]\r\n<h1 style=\"text-align: center;\">Current Offers!</h1>\r\n[/fusion_title][fusion_checklist icon=\"fa-sort-amount-desc\" iconcolor=\"\" circle=\"yes\" circlecolor=\"\" size=\"13px\" class=\"\" id=\"\"][fusion_li_item icon=\"\"]\r\n<h3>Book on-line - get 15% OFF your <a href=\"http://msla.co.za/lodge/reservations/\"> Accommodation</a> or...</h3>\r\n[/fusion_li_item][fusion_li_item icon=\"\"]\r\n<h3><a href=\"http://msla.co.za/lodge/reservations/\">Stay 3 days or more</a> - get 25% OFF your Accommodation</h3>\r\n[/fusion_li_item][/fusion_checklist][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container background_color=\"#f0f0ed\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"20\" padding_bottom=\"20\" padding_left=\"\" padding_right=\"\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][fusion_builder_row][fusion_builder_column type=\"1_2\" layout=\"1_2\" last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"\" padding_right=\"\" padding_bottom=\"\" padding_left=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\" min_height=\"\"][fusion_text]\r\n<h3 style=\"text-align: justify;\">Set in the rolling peaks and valleys of a thousand hills surrounded by a canopy of indigenous trees, you will find that horses still have right of way, we certainly offer the best of both worlds, farm and charm coupled with modern amenities that will have you feeling relaxed and rejuvenated.</h3>\r\n<h3 style=\"text-align: justify;\">We know that sometimes you are searching for a romantic getaway or maybe a few days away with old friends. Other times you are searching for a place to host a weekend, family reunion or a business retreat. In addition to nightly room rentals, our lodge is also available for meetings, retreats  and makes the perfect place for a wedding party to stay together and get ready for the big day. Regardless, with our five comfortable and cozy guest bedrooms, multiple garden spaces and hideaways, and a  large private deck  where you can take a nap or read a book we definitely have the room for you!</h3>\r\n<h3 style=\"text-align: justify;\">Evenings are quiet and peaceful taking you far away from the business of city life. This is a unique and memorable country experience. We look forward to having you as a guest!</h3>\r\n[/fusion_text][/fusion_builder_column][fusion_builder_column type=\"1_2\" layout=\"1_2\" last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"\" padding_right=\"\" padding_bottom=\"\" padding_left=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\" min_height=\"\"][fusion_text]\r\n<h3 style=\"text-align: justify;\">Our lodge has been in our family for years and has recently been beautifully renovated. Five rooms all with en-suite showers lead off your own large central lounge, featuring a 36 foot high vaulted ceiling, offering spacious living, dining, and a bar/conversational lounge area which includes a fitted kitchenette, all adding to a sense of homely comfort. Sumptuous meals can be provided on request and served on the bottom deck at the swimming pool.</h3>\r\n<h3 style=\"text-align: justify;\">Be lulled to sleep by the sound of the waterfall and tinkling stream just outside your window, waking from a peaceful night\'s sleep in a pillow-top bed dressed in luxurious linens to coddle you in ultimate comfort.</h3>\r\n<h3 style=\"text-align: justify;\">Our property boasts many different species of birds and animals. We have a resident otter, a family of wild bush pigs,  a family of rock rabbits, porcupine, little blue duikers, a variety of different frogs and an abundance of bird life, including the occasional snakes that pass through!</h3>\r\n[/fusion_text][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container background_color=\"#f0f0ed\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"20\" padding_bottom=\"20\" padding_left=\"\" padding_right=\"\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][fusion_builder_row][fusion_builder_column type=\"1_1\" layout=\"1_1\" background_position=\"left top\" background_color=\"\" border_size=\"\" border_color=\"\" border_style=\"solid\" spacing=\"yes\" background_image=\"\" background_repeat=\"no-repeat\" padding_top=\"\" padding_right=\"\" padding_bottom=\"\" padding_left=\"\" margin_top=\"0px\" margin_bottom=\"0px\" class=\"\" id=\"\" animation_type=\"\" animation_speed=\"0.3\" animation_direction=\"left\" hide_on_mobile=\"no\" center_content=\"no\" min_height=\"none\" last=\"no\" hover_type=\"none\" link=\"\" border_position=\"all\"][fusion_text]\r\n<h1 style=\"text-align: center;\">Gallery</h1>\r\n[/fusion_text][fusion_separator style_type=\"single solid\" top_margin=\"\" bottom_margin=\"40\" sep_color=\"#000000\" border_size=\"\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"170px\" alignment=\"\" class=\"\" id=\"\" /][/fusion_builder_column][fusion_builder_column type=\"1_6\" layout=\"1_6\" last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding_top=\"\" padding_right=\"\" padding_bottom=\"\" padding_left=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\" min_height=\"\"][/fusion_builder_column][fusion_builder_column type=\"2_3\" layout=\"2_3\" last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding_top=\"\" padding_right=\"\" padding_bottom=\"\" padding_left=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\" min_height=\"\"][fusion_text]\r\n<h3 style=\"text-align: justify;\">The Lodge is open, spacious, comfortable and homely. During hot summer days, sit and bask in the sun on the deck  with one of our  picnic specials. In winter, snuggle up with a good book or challenge one another to a friendly board game in the glassed nook area .</h3>\r\n[/fusion_text][/fusion_builder_column][fusion_builder_column type=\"1_6\" layout=\"1_6\" last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding_top=\"\" padding_right=\"\" padding_bottom=\"\" padding_left=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\" min_height=\"\"][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container background_color=\"#f0f0ed\" background_image=\"http://localhost/assagaylodge/wp-content/uploads/2015/01/Wood_Texture.jpg\" background_parallax=\"fixed\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"30\" padding_bottom=\"10\" padding_left=\"0\" padding_right=\"0\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][fusion_builder_row][fusion_builder_column type=\"1_1\" layout=\"1_1\" background_position=\"left top\" background_color=\"\" border_size=\"\" border_color=\"\" border_style=\"solid\" spacing=\"yes\" background_image=\"\" background_repeat=\"no-repeat\" padding_top=\"\" padding_right=\"\" padding_bottom=\"\" padding_left=\"\" margin_top=\"0px\" margin_bottom=\"0px\" class=\"\" id=\"\" animation_type=\"\" animation_speed=\"0.3\" animation_direction=\"left\" hide_on_mobile=\"no\" center_content=\"no\" min_height=\"none\" last=\"no\" hover_type=\"none\" link=\"\" border_position=\"all\"][fusion_portfolio layout=\"grid\" picture_size=\"auto\" text_layout=\"no_text\" filters=\"no\" columns=\"3\" column_spacing=\"12\" cat_slug=\"the-lodge\" exclude_cats=\"\" number_posts=\"9\" offset=\"\" excerpt_length=\"35\" strip_html=\"yes\" carousel_layout=\"title_on_rollover\" scroll_items=\"\" autoplay=\"no\" show_nav=\"yes\" mouse_scroll=\"no\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\" /][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container background_color=\"#f0f0ed\" background_image=\"\" background_parallax=\"fixed\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"20\" padding_bottom=\"20\" padding_left=\"\" padding_right=\"\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][fusion_builder_row][fusion_builder_column type=\"1_1\" layout=\"1_1\" background_position=\"left top\" background_color=\"\" border_size=\"\" border_color=\"\" border_style=\"solid\" spacing=\"yes\" background_image=\"\" background_repeat=\"no-repeat\" padding_top=\"\" padding_right=\"\" padding_bottom=\"\" padding_left=\"\" margin_top=\"0px\" margin_bottom=\"0px\" class=\"\" id=\"\" animation_type=\"\" animation_speed=\"0.3\" animation_direction=\"left\" hide_on_mobile=\"no\" center_content=\"no\" min_height=\"none\" last=\"no\" hover_type=\"none\" link=\"\" border_position=\"all\"][fusion_text]\r\n<h1 style=\"text-align: center;\">BEDROOMS</h1>\r\n[/fusion_text][fusion_separator style_type=\"single solid\" top_margin=\"\" bottom_margin=\"20\" sep_color=\"#000000\" border_size=\"\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"170px\" alignment=\"\" class=\"\" id=\"\" /][/fusion_builder_column][fusion_builder_column type=\"1_6\" layout=\"1_6\" last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding_top=\"\" padding_right=\"\" padding_bottom=\"\" padding_left=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\" min_height=\"\"][/fusion_builder_column][fusion_builder_column type=\"2_3\" layout=\"2_3\" last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding_top=\"\" padding_right=\"\" padding_bottom=\"\" padding_left=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\" min_height=\"\"][fusion_text]\r\n<h3 style=\"text-align: justify;\">When it comes to our bedrooms we’re proud to say we offer something a little more special. One of five  lovingly and tastefully decorated guest rooms. Soft gray decor soothes the senses providing a peaceful, blissfully comfortable rest from your travels and hectic lives.</h3>\r\n<h3 style=\"text-align: justify;\">Our  bedrooms are spacious, clean, comfortable all en-suite, equipped with either king size or queen size beds. Each room sleeps two guests. The rooms have high ceilings, wall heaters &amp; ceiling fans. Beds all have electric blankets in Winter, 100% cotton percale sheets and thick hyper allergenic microfiber duvets and pillows. All guest rooms are cleaned with organic and green products. Amenities include hairdryers in each room. Three rooms feature King-sized beds  of which two can be  split into two single beds. Two  rooms can therefore be changed into a twin room upon request. Two rooms feature a Queen-sized double bed. These beds cannot be split into twin beds.</h3>\r\n[/fusion_text][/fusion_builder_column][fusion_builder_column type=\"1_6\" layout=\"1_6\" last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding_top=\"\" padding_right=\"\" padding_bottom=\"\" padding_left=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\" min_height=\"\"][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container background_color=\"\" background_image=\"http://localhost/assagaylodge/wp-content/uploads/2015/01/DSC01516-1148-x-764.jpg\" background_parallax=\"fixed\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"center center\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"20\" padding_bottom=\"20\" padding_left=\"0\" padding_right=\"0\" hundred_percent=\"no\" equal_height_columns=\"yes\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][fusion_builder_row][fusion_builder_column type=\"1_1\" layout=\"1_1\" background_position=\"left top\" background_color=\"\" border_size=\"\" border_color=\"\" border_style=\"solid\" spacing=\"yes\" background_image=\"\" background_repeat=\"no-repeat\" padding_top=\"\" padding_right=\"\" padding_bottom=\"\" padding_left=\"\" margin_top=\"0px\" margin_bottom=\"0px\" class=\"\" id=\"\" animation_type=\"\" animation_speed=\"0.3\" animation_direction=\"left\" hide_on_mobile=\"no\" center_content=\"no\" min_height=\"none\" last=\"no\" hover_type=\"none\" link=\"\" border_position=\"all\"][fusion_portfolio layout=\"grid\" picture_size=\"auto\" text_layout=\"no_text\" filters=\"no\" columns=\"3\" column_spacing=\"12\" cat_slug=\"bedrooms\" exclude_cats=\"\" number_posts=\"6\" offset=\"\" excerpt_length=\"35\" strip_html=\"yes\" carousel_layout=\"title_on_rollover\" scroll_items=\"\" autoplay=\"no\" show_nav=\"yes\" mouse_scroll=\"no\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\" /][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container background_color=\"#f0f0ed\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"20\" padding_bottom=\"20\" padding_left=\"0\" padding_right=\"0\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][fusion_builder_row][fusion_builder_column type=\"1_1\" layout=\"1_1\" background_position=\"left top\" background_color=\"\" border_size=\"\" border_color=\"\" border_style=\"solid\" spacing=\"yes\" background_image=\"\" background_repeat=\"no-repeat\" padding_top=\"\" padding_right=\"\" padding_bottom=\"\" padding_left=\"\" margin_top=\"0px\" margin_bottom=\"0px\" class=\"\" id=\"\" animation_type=\"\" animation_speed=\"0.3\" animation_direction=\"left\" hide_on_mobile=\"no\" center_content=\"no\" min_height=\"none\" last=\"no\" hover_type=\"none\" link=\"\" border_position=\"all\"][fusion_text]\r\n<h1 style=\"text-align: center;\">GARDENS</h1>\r\n[/fusion_text][fusion_separator style_type=\"single solid\" top_margin=\"\" bottom_margin=\"20\" sep_color=\"#000000\" border_size=\"\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"170px\" alignment=\"\" class=\"\" id=\"\" /][/fusion_builder_column][fusion_builder_column type=\"1_6\" layout=\"1_6\" last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding_top=\"\" padding_right=\"\" padding_bottom=\"\" padding_left=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\" min_height=\"\"][/fusion_builder_column][fusion_builder_column type=\"2_3\" layout=\"2_3\" last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding_top=\"\" padding_right=\"\" padding_bottom=\"\" padding_left=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\" min_height=\"\"][fusion_text]\r\n<h3 style=\"text-align: justify;\">The garden is large and offers many secluded spots to lose yourself in a book with a glass of wine underneath the shade of a tree, listening to the sounds of the birds and smelling the beautiful flowers.</h3>\r\n[/fusion_text][/fusion_builder_column][fusion_builder_column type=\"1_6\" layout=\"1_6\" last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding_top=\"\" padding_right=\"\" padding_bottom=\"\" padding_left=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\" min_height=\"\"][/fusion_builder_column][fusion_builder_column type=\"1_1\" layout=\"1_1\" background_position=\"left top\" background_color=\"\" border_size=\"\" border_color=\"\" border_style=\"solid\" spacing=\"yes\" background_image=\"\" background_repeat=\"no-repeat\" padding_top=\"\" padding_right=\"\" padding_bottom=\"\" padding_left=\"\" margin_top=\"0px\" margin_bottom=\"0px\" class=\"\" id=\"\" animation_type=\"\" animation_speed=\"0.3\" animation_direction=\"left\" hide_on_mobile=\"no\" center_content=\"no\" min_height=\"none\" last=\"no\" hover_type=\"none\" link=\"\" border_position=\"all\"][fusion_portfolio layout=\"grid\" picture_size=\"auto\" text_layout=\"no_text\" filters=\"no\" columns=\"3\" column_spacing=\"12\" cat_slug=\"gardens\" exclude_cats=\"\" number_posts=\"9\" offset=\"\" excerpt_length=\"35\" strip_html=\"yes\" carousel_layout=\"title_on_rollover\" scroll_items=\"\" autoplay=\"no\" show_nav=\"yes\" mouse_scroll=\"no\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\" /][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container background_color=\"#ffffff\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"65px\" padding_bottom=\"65px\" padding_left=\"\" padding_right=\"\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][fusion_builder_row][fusion_builder_column type=\"1_1\" layout=\"1_1\" background_position=\"left top\" background_color=\"\" border_size=\"\" border_color=\"\" border_style=\"solid\" spacing=\"yes\" background_image=\"\" background_repeat=\"no-repeat\" padding_top=\"\" padding_right=\"\" padding_bottom=\"\" padding_left=\"\" margin_top=\"0px\" margin_bottom=\"0px\" class=\"\" id=\"\" animation_type=\"\" animation_speed=\"0.3\" animation_direction=\"left\" hide_on_mobile=\"no\" center_content=\"no\" min_height=\"none\" last=\"no\" hover_type=\"none\" link=\"\" border_position=\"all\"][fusion_button link=\"https://msla.co.za/lodge/reservations/\" color=\"default\" size=\"xlarge\" stretch=\"default\" type=\"3d\" shape=\"round\" target=\"_self\" title=\"\" button_gradient_top_color=\"#f0f0ed\" button_gradient_bottom_color=\"#f0f0ed\" button_gradient_top_color_hover=\"#6666a4\" button_gradient_bottom_color_hover=\"#6666a4\" accent_color=\"#ffffff\" accent_hover_color=\"#ffffff\" bevel_color=\"\" border_width=\"0px\" icon=\"\" icon_position=\"left\" icon_divider=\"no\" modal=\"\" animation_type=\"0\" animation_direction=\"left\" animation_speed=\"1\" animation_offset=\"\" alignment=\"center\" class=\"\" id=\"\"]Make A Reservation Enquiry[/fusion_button][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container]', 'Home', '', 'inherit', 'closed', 'closed', '', '7-revision-v1', '', '', '2019-11-13 13:58:31', '2019-11-13 11:58:31', '', 7, 'https://msla.co.za/lodge/7-revision-v1/', 0, 'revision', '', 0),
(1377, 1, '2019-11-13 14:00:23', '2019-11-13 12:00:23', '[fusion_builder_container background_color=\"\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding_top=\"20\" padding_bottom=\"20\" padding_left=\"\" padding_right=\"\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][fusion_builder_row][fusion_builder_column type=\"1_1\" layout=\"1_1\" last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding_top=\"\" padding_right=\"\" padding_bottom=\"\" padding_left=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\" min_height=\"\"][fusion_text][dopbsp id=\"1\" lang=\"en\"][/fusion_text][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container]', 'Reservations', '', 'inherit', 'closed', 'closed', '', '1182-autosave-v1', '', '', '2019-11-13 14:00:23', '2019-11-13 12:00:23', '', 1182, 'https://msla.co.za/lodge/1182-autosave-v1/', 0, 'revision', '', 0),
(1378, 1, '2019-11-13 14:06:28', '2019-11-13 12:06:28', '[fusion_builder_container background_color=\"\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding_top=\"20\" padding_bottom=\"20\" padding_left=\"\" padding_right=\"\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][fusion_builder_row][fusion_builder_column type=\"1_1\" layout=\"1_1\" last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding_top=\"\" padding_right=\"\" padding_bottom=\"\" padding_left=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\" min_height=\"\"][fusion_text][dopbsp id=\"1\" lang=\"en\"][/fusion_text][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container]', 'Reservations', '', 'inherit', 'closed', 'closed', '', '1182-revision-v1', '', '', '2019-11-13 14:06:28', '2019-11-13 12:06:28', '', 1182, 'https://msla.co.za/lodge/1182-revision-v1/', 0, 'revision', '', 0);
INSERT INTO `wp_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(1379, 1, '2019-11-13 15:23:37', '2019-11-13 13:23:37', '[fusion_builder_container background_color=\"#f0f0ed\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"20\" padding_bottom=\"20\" padding_left=\"\" padding_right=\"\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][fusion_builder_row][fusion_builder_column type=\"1_2\" layout=\"1_2\" last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"\" padding_right=\"\" padding_bottom=\"\" padding_left=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\" min_height=\"\"][fusion_separator style_type=\"single solid\" top_margin=\"0\" bottom_margin=\"30\" sep_color=\"#000000\" border_size=\"\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"170px\" alignment=\"center\" class=\"separator-left\" id=\"\" /][fusion_text]\r\n<h1 style=\"text-align: center;\">No Fancy Star Grading\r\nNo Room Service\r\nNo Bed Turn-downs\r\nNo Rose Petals in the Bath water</h1>\r\n<h1 style=\"text-align: center;\">... just old fashioned homely comforts</h1>\r\n[/fusion_text][/fusion_builder_column][fusion_builder_column type=\"1_2\" layout=\"1_2\" last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"\" padding_right=\"\" padding_bottom=\"\" padding_left=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\" min_height=\"\"][fusion_text]\r\n<h1 style=\"text-align: justify;\">5 BEDROOM FAMILY LODGE</h1>\r\n<h3 style=\"text-align: justify;\">We are a four season lodge, because there’s always something to celebrate… We offer comfort, relaxation and privacy right in the heart of 1000 Hills. The Forest, the Gardens, the Atmosphere all speak to  Rest  &amp; Relaxation.</h3>\r\n[/fusion_text][fusion_separator style_type=\"single solid\" top_margin=\"0\" bottom_margin=\"30\" sep_color=\"#000000\" border_size=\"\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"170px\" alignment=\"left\" class=\"separator-left\" id=\"\" /][fusion_title size=\"1\" content_align=\"right\" style_type=\"default\" sep_color=\"\" margin_top=\"\" margin_bottom=\"\" class=\"\" id=\"\"]\r\n<h1 style=\"text-align: center;\">Current Offers!</h1>\r\n[/fusion_title][fusion_checklist icon=\"fa-umbrella-beach fas\" iconcolor=\"\" circle=\"yes\" circlecolor=\"\" size=\"13px\" divider=\"\" divider_color=\"\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" class=\"\" id=\"\"][fusion_li_item icon=\"\"]\r\n<h3>Book on-line - get 15% OFF your <a href=\"http://msla.co.za/lodge/reservations/\"> Accommodation</a> or...</h3>\r\n[/fusion_li_item][fusion_li_item icon=\"\"]\r\n<h3><a href=\"http://msla.co.za/lodge/reservations/\">Stay 3 days or more</a> - get 25% OFF your Accommodation</h3>\r\n[/fusion_li_item][/fusion_checklist][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container background_color=\"#f0f0ed\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"20\" padding_bottom=\"20\" padding_left=\"\" padding_right=\"\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][fusion_builder_row][fusion_builder_column type=\"1_2\" layout=\"1_2\" last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"\" padding_right=\"\" padding_bottom=\"\" padding_left=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\" min_height=\"\"][fusion_text]\r\n<h3 style=\"text-align: justify;\">Set in the rolling peaks and valleys of a thousand hills surrounded by a canopy of indigenous trees, you will find that horses still have right of way, we certainly offer the best of both worlds, farm and charm coupled with modern amenities that will have you feeling relaxed and rejuvenated.</h3>\r\n<h3 style=\"text-align: justify;\">We know that sometimes you are searching for a romantic getaway or maybe a few days away with old friends. Other times you are searching for a place to host a weekend, family reunion or a business retreat. In addition to nightly room rentals, our lodge is also available for meetings, retreats  and makes the perfect place for a wedding party to stay together and get ready for the big day. Regardless, with our five comfortable and cozy guest bedrooms, multiple garden spaces and hideaways, and a  large private deck  where you can take a nap or read a book we definitely have the room for you!</h3>\r\n<h3 style=\"text-align: justify;\">Evenings are quiet and peaceful taking you far away from the business of city life. This is a unique and memorable country experience. We look forward to having you as a guest!</h3>\r\n[/fusion_text][/fusion_builder_column][fusion_builder_column type=\"1_2\" layout=\"1_2\" last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"\" padding_right=\"\" padding_bottom=\"\" padding_left=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\" min_height=\"\"][fusion_text]\r\n<h3 style=\"text-align: justify;\">Our lodge has been in our family for years and has recently been beautifully renovated. Five rooms all with en-suite showers lead off your own large central lounge, featuring a 36 foot high vaulted ceiling, offering spacious living, dining, and a bar/conversational lounge area which includes a fitted kitchenette, all adding to a sense of homely comfort. Sumptuous meals can be provided on request and served on the bottom deck at the swimming pool.</h3>\r\n<h3 style=\"text-align: justify;\">Be lulled to sleep by the sound of the waterfall and tinkling stream just outside your window, waking from a peaceful night\'s sleep in a pillow-top bed dressed in luxurious linens to coddle you in ultimate comfort.</h3>\r\n<h3 style=\"text-align: justify;\">Our property boasts many different species of birds and animals. We have a resident otter, a family of wild bush pigs,  a family of rock rabbits, porcupine, little blue duikers, a variety of different frogs and an abundance of bird life, including the occasional snakes that pass through!</h3>\r\n[/fusion_text][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container background_color=\"#f0f0ed\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"20\" padding_bottom=\"20\" padding_left=\"\" padding_right=\"\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][fusion_builder_row][fusion_builder_column type=\"1_1\" layout=\"1_1\" background_position=\"left top\" background_color=\"\" border_size=\"\" border_color=\"\" border_style=\"solid\" spacing=\"yes\" background_image=\"\" background_repeat=\"no-repeat\" padding_top=\"\" padding_right=\"\" padding_bottom=\"\" padding_left=\"\" margin_top=\"0px\" margin_bottom=\"0px\" class=\"\" id=\"\" animation_type=\"\" animation_speed=\"0.3\" animation_direction=\"left\" hide_on_mobile=\"no\" center_content=\"no\" min_height=\"none\" last=\"no\" hover_type=\"none\" link=\"\" border_position=\"all\"][fusion_text]\r\n<h1 style=\"text-align: center;\">Gallery</h1>\r\n[/fusion_text][fusion_separator style_type=\"single solid\" top_margin=\"\" bottom_margin=\"40\" sep_color=\"#000000\" border_size=\"\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"170px\" alignment=\"\" class=\"\" id=\"\" /][/fusion_builder_column][fusion_builder_column type=\"1_6\" layout=\"1_6\" last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding_top=\"\" padding_right=\"\" padding_bottom=\"\" padding_left=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\" min_height=\"\"][/fusion_builder_column][fusion_builder_column type=\"2_3\" layout=\"2_3\" last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding_top=\"\" padding_right=\"\" padding_bottom=\"\" padding_left=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\" min_height=\"\"][fusion_text]\r\n<h3 style=\"text-align: justify;\">The Lodge is open, spacious, comfortable and homely. During hot summer days, sit and bask in the sun on the deck  with one of our  picnic specials. In winter, snuggle up with a good book or challenge one another to a friendly board game in the glassed nook area .</h3>\r\n[/fusion_text][/fusion_builder_column][fusion_builder_column type=\"1_6\" layout=\"1_6\" last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding_top=\"\" padding_right=\"\" padding_bottom=\"\" padding_left=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\" min_height=\"\"][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container background_color=\"#f0f0ed\" background_image=\"http://localhost/assagaylodge/wp-content/uploads/2015/01/Wood_Texture.jpg\" background_parallax=\"fixed\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"30\" padding_bottom=\"10\" padding_left=\"0\" padding_right=\"0\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][fusion_builder_row][fusion_builder_column type=\"1_1\" layout=\"1_1\" background_position=\"left top\" background_color=\"\" border_size=\"\" border_color=\"\" border_style=\"solid\" spacing=\"yes\" background_image=\"\" background_repeat=\"no-repeat\" padding_top=\"\" padding_right=\"\" padding_bottom=\"\" padding_left=\"\" margin_top=\"0px\" margin_bottom=\"0px\" class=\"\" id=\"\" animation_type=\"\" animation_speed=\"0.3\" animation_direction=\"left\" hide_on_mobile=\"no\" center_content=\"no\" min_height=\"none\" last=\"no\" hover_type=\"none\" link=\"\" border_position=\"all\"][fusion_portfolio layout=\"grid\" picture_size=\"auto\" text_layout=\"no_text\" filters=\"no\" columns=\"3\" column_spacing=\"12\" cat_slug=\"the-lodge\" exclude_cats=\"\" number_posts=\"9\" offset=\"\" excerpt_length=\"35\" strip_html=\"yes\" carousel_layout=\"title_on_rollover\" scroll_items=\"\" autoplay=\"no\" show_nav=\"yes\" mouse_scroll=\"no\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\" /][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container background_color=\"#f0f0ed\" background_image=\"\" background_parallax=\"fixed\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"20\" padding_bottom=\"20\" padding_left=\"\" padding_right=\"\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][fusion_builder_row][fusion_builder_column type=\"1_1\" layout=\"1_1\" background_position=\"left top\" background_color=\"\" border_size=\"\" border_color=\"\" border_style=\"solid\" spacing=\"yes\" background_image=\"\" background_repeat=\"no-repeat\" padding_top=\"\" padding_right=\"\" padding_bottom=\"\" padding_left=\"\" margin_top=\"0px\" margin_bottom=\"0px\" class=\"\" id=\"\" animation_type=\"\" animation_speed=\"0.3\" animation_direction=\"left\" hide_on_mobile=\"no\" center_content=\"no\" min_height=\"none\" last=\"no\" hover_type=\"none\" link=\"\" border_position=\"all\"][fusion_text]\r\n<h1 style=\"text-align: center;\">BEDROOMS</h1>\r\n[/fusion_text][fusion_separator style_type=\"single solid\" top_margin=\"\" bottom_margin=\"20\" sep_color=\"#000000\" border_size=\"\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"170px\" alignment=\"\" class=\"\" id=\"\" /][/fusion_builder_column][fusion_builder_column type=\"1_6\" layout=\"1_6\" last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding_top=\"\" padding_right=\"\" padding_bottom=\"\" padding_left=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\" min_height=\"\"][/fusion_builder_column][fusion_builder_column type=\"2_3\" layout=\"2_3\" last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding_top=\"\" padding_right=\"\" padding_bottom=\"\" padding_left=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\" min_height=\"\"][fusion_text]\r\n<h3 style=\"text-align: justify;\">When it comes to our bedrooms we’re proud to say we offer something a little more special. One of five  lovingly and tastefully decorated guest rooms. Soft gray decor soothes the senses providing a peaceful, blissfully comfortable rest from your travels and hectic lives.</h3>\r\n<h3 style=\"text-align: justify;\">Our  bedrooms are spacious, clean, comfortable all en-suite, equipped with either king size or queen size beds. Each room sleeps two guests. The rooms have high ceilings, wall heaters &amp; ceiling fans. Beds all have electric blankets in Winter, 100% cotton percale sheets and thick hyper allergenic microfiber duvets and pillows. All guest rooms are cleaned with organic and green products. Amenities include hairdryers in each room. Three rooms feature King-sized beds  of which two can be  split into two single beds. Two  rooms can therefore be changed into a twin room upon request. Two rooms feature a Queen-sized double bed. These beds cannot be split into twin beds.</h3>\r\n[/fusion_text][/fusion_builder_column][fusion_builder_column type=\"1_6\" layout=\"1_6\" last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding_top=\"\" padding_right=\"\" padding_bottom=\"\" padding_left=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\" min_height=\"\"][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container background_color=\"\" background_image=\"http://localhost/assagaylodge/wp-content/uploads/2015/01/DSC01516-1148-x-764.jpg\" background_parallax=\"fixed\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"center center\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"20\" padding_bottom=\"20\" padding_left=\"0\" padding_right=\"0\" hundred_percent=\"no\" equal_height_columns=\"yes\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][fusion_builder_row][fusion_builder_column type=\"1_1\" layout=\"1_1\" background_position=\"left top\" background_color=\"\" border_size=\"\" border_color=\"\" border_style=\"solid\" spacing=\"yes\" background_image=\"\" background_repeat=\"no-repeat\" padding_top=\"\" padding_right=\"\" padding_bottom=\"\" padding_left=\"\" margin_top=\"0px\" margin_bottom=\"0px\" class=\"\" id=\"\" animation_type=\"\" animation_speed=\"0.3\" animation_direction=\"left\" hide_on_mobile=\"no\" center_content=\"no\" min_height=\"none\" last=\"no\" hover_type=\"none\" link=\"\" border_position=\"all\"][fusion_portfolio layout=\"grid\" picture_size=\"auto\" text_layout=\"no_text\" filters=\"no\" columns=\"3\" column_spacing=\"12\" cat_slug=\"bedrooms\" exclude_cats=\"\" number_posts=\"6\" offset=\"\" excerpt_length=\"35\" strip_html=\"yes\" carousel_layout=\"title_on_rollover\" scroll_items=\"\" autoplay=\"no\" show_nav=\"yes\" mouse_scroll=\"no\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\" /][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container background_color=\"#f0f0ed\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"20\" padding_bottom=\"20\" padding_left=\"0\" padding_right=\"0\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][fusion_builder_row][fusion_builder_column type=\"1_1\" layout=\"1_1\" background_position=\"left top\" background_color=\"\" border_size=\"\" border_color=\"\" border_style=\"solid\" spacing=\"yes\" background_image=\"\" background_repeat=\"no-repeat\" padding_top=\"\" padding_right=\"\" padding_bottom=\"\" padding_left=\"\" margin_top=\"0px\" margin_bottom=\"0px\" class=\"\" id=\"\" animation_type=\"\" animation_speed=\"0.3\" animation_direction=\"left\" hide_on_mobile=\"no\" center_content=\"no\" min_height=\"none\" last=\"no\" hover_type=\"none\" link=\"\" border_position=\"all\"][fusion_text]\r\n<h1 style=\"text-align: center;\">GARDENS</h1>\r\n[/fusion_text][fusion_separator style_type=\"single solid\" top_margin=\"\" bottom_margin=\"20\" sep_color=\"#000000\" border_size=\"\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"170px\" alignment=\"\" class=\"\" id=\"\" /][/fusion_builder_column][fusion_builder_column type=\"1_6\" layout=\"1_6\" last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding_top=\"\" padding_right=\"\" padding_bottom=\"\" padding_left=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\" min_height=\"\"][/fusion_builder_column][fusion_builder_column type=\"2_3\" layout=\"2_3\" last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding_top=\"\" padding_right=\"\" padding_bottom=\"\" padding_left=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\" min_height=\"\"][fusion_text]\r\n<h3 style=\"text-align: justify;\">The garden is large and offers many secluded spots to lose yourself in a book with a glass of wine underneath the shade of a tree, listening to the sounds of the birds and smelling the beautiful flowers.</h3>\r\n[/fusion_text][/fusion_builder_column][fusion_builder_column type=\"1_6\" layout=\"1_6\" last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding_top=\"\" padding_right=\"\" padding_bottom=\"\" padding_left=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\" min_height=\"\"][/fusion_builder_column][fusion_builder_column type=\"1_1\" layout=\"1_1\" background_position=\"left top\" background_color=\"\" border_size=\"\" border_color=\"\" border_style=\"solid\" spacing=\"yes\" background_image=\"\" background_repeat=\"no-repeat\" padding_top=\"\" padding_right=\"\" padding_bottom=\"\" padding_left=\"\" margin_top=\"0px\" margin_bottom=\"0px\" class=\"\" id=\"\" animation_type=\"\" animation_speed=\"0.3\" animation_direction=\"left\" hide_on_mobile=\"no\" center_content=\"no\" min_height=\"none\" last=\"no\" hover_type=\"none\" link=\"\" border_position=\"all\"][fusion_portfolio layout=\"grid\" picture_size=\"auto\" text_layout=\"no_text\" filters=\"no\" columns=\"3\" column_spacing=\"12\" cat_slug=\"gardens\" exclude_cats=\"\" number_posts=\"9\" offset=\"\" excerpt_length=\"35\" strip_html=\"yes\" carousel_layout=\"title_on_rollover\" scroll_items=\"\" autoplay=\"no\" show_nav=\"yes\" mouse_scroll=\"no\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\" /][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container background_color=\"#ffffff\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"65px\" padding_bottom=\"65px\" padding_left=\"\" padding_right=\"\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][fusion_builder_row][fusion_builder_column type=\"1_1\" layout=\"1_1\" background_position=\"left top\" background_color=\"\" border_size=\"\" border_color=\"\" border_style=\"solid\" spacing=\"yes\" background_image=\"\" background_repeat=\"no-repeat\" padding_top=\"\" padding_right=\"\" padding_bottom=\"\" padding_left=\"\" margin_top=\"0px\" margin_bottom=\"0px\" class=\"\" id=\"\" animation_type=\"\" animation_speed=\"0.3\" animation_direction=\"left\" hide_on_mobile=\"no\" center_content=\"no\" min_height=\"none\" last=\"no\" hover_type=\"none\" link=\"\" border_position=\"all\"][fusion_button link=\"https://msla.co.za/lodge/reservations/\" color=\"default\" size=\"xlarge\" stretch=\"default\" type=\"3d\" shape=\"round\" target=\"_self\" title=\"\" button_gradient_top_color=\"#f0f0ed\" button_gradient_bottom_color=\"#f0f0ed\" button_gradient_top_color_hover=\"#6666a4\" button_gradient_bottom_color_hover=\"#6666a4\" accent_color=\"#ffffff\" accent_hover_color=\"#ffffff\" bevel_color=\"\" border_width=\"0px\" icon=\"\" icon_position=\"left\" icon_divider=\"no\" modal=\"\" animation_type=\"0\" animation_direction=\"left\" animation_speed=\"1\" animation_offset=\"\" alignment=\"center\" class=\"\" id=\"\"]Make A Reservation Enquiry[/fusion_button][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container]', 'Home', '', 'inherit', 'closed', 'closed', '', '7-revision-v1', '', '', '2019-11-13 15:23:37', '2019-11-13 13:23:37', '', 7, 'https://msla.co.za/lodge/7-revision-v1/', 0, 'revision', '', 0);
INSERT INTO `wp_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(1380, 1, '2019-11-13 15:24:18', '2019-11-13 13:24:18', '[fusion_builder_container background_color=\"#f0f0ed\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"20\" padding_bottom=\"20\" padding_left=\"\" padding_right=\"\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][fusion_builder_row][fusion_builder_column type=\"1_2\" layout=\"1_2\" last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"\" padding_right=\"\" padding_bottom=\"\" padding_left=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\" min_height=\"\"][fusion_separator style_type=\"single solid\" top_margin=\"0\" bottom_margin=\"30\" sep_color=\"#000000\" border_size=\"\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"170px\" alignment=\"center\" class=\"separator-left\" id=\"\" /][fusion_text]\r\n<h1 style=\"text-align: center;\">No Fancy Star Grading\r\nNo Room Service\r\nNo Bed Turn-downs\r\nNo Rose Petals in the Bath water</h1>\r\n<h1 style=\"text-align: center;\">... just old fashioned homely comforts</h1>\r\n[/fusion_text][/fusion_builder_column][fusion_builder_column type=\"1_2\" layout=\"1_2\" last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"\" padding_right=\"\" padding_bottom=\"\" padding_left=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\" min_height=\"\"][fusion_text]\r\n<h1 style=\"text-align: justify;\">5 BEDROOM FAMILY LODGE</h1>\r\n<h3 style=\"text-align: justify;\">We are a four season lodge, because there’s always something to celebrate… We offer comfort, relaxation and privacy right in the heart of 1000 Hills. The Forest, the Gardens, the Atmosphere all speak to  Rest  &amp; Relaxation.</h3>\r\n[/fusion_text][fusion_separator style_type=\"single solid\" top_margin=\"0\" bottom_margin=\"30\" sep_color=\"#000000\" border_size=\"\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"170px\" alignment=\"left\" class=\"separator-left\" id=\"\" /][fusion_title size=\"1\" content_align=\"right\" style_type=\"default\" sep_color=\"\" margin_top=\"\" margin_bottom=\"\" class=\"\" id=\"\"]\r\n<h1 style=\"text-align: center;\">Current Offers!</h1>\r\n[/fusion_title][fusion_checklist icon=\"fa-umbrella-beach fas\" iconcolor=\"\" circle=\"yes\" circlecolor=\"\" size=\"16px\" divider=\"\" divider_color=\"\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" class=\"\" id=\"\"][fusion_li_item icon=\"\"]\r\n<h3>Book on-line - get 15% OFF your <a href=\"http://msla.co.za/lodge/reservations/\"> Accommodation</a> or...</h3>\r\n[/fusion_li_item][fusion_li_item icon=\"\"]\r\n<h3><a href=\"http://msla.co.za/lodge/reservations/\">Stay 3 days or more</a> - get 25% OFF your Accommodation</h3>\r\n[/fusion_li_item][/fusion_checklist][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container background_color=\"#f0f0ed\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"20\" padding_bottom=\"20\" padding_left=\"\" padding_right=\"\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][fusion_builder_row][fusion_builder_column type=\"1_2\" layout=\"1_2\" last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"\" padding_right=\"\" padding_bottom=\"\" padding_left=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\" min_height=\"\"][fusion_text]\r\n<h3 style=\"text-align: justify;\">Set in the rolling peaks and valleys of a thousand hills surrounded by a canopy of indigenous trees, you will find that horses still have right of way, we certainly offer the best of both worlds, farm and charm coupled with modern amenities that will have you feeling relaxed and rejuvenated.</h3>\r\n<h3 style=\"text-align: justify;\">We know that sometimes you are searching for a romantic getaway or maybe a few days away with old friends. Other times you are searching for a place to host a weekend, family reunion or a business retreat. In addition to nightly room rentals, our lodge is also available for meetings, retreats  and makes the perfect place for a wedding party to stay together and get ready for the big day. Regardless, with our five comfortable and cozy guest bedrooms, multiple garden spaces and hideaways, and a  large private deck  where you can take a nap or read a book we definitely have the room for you!</h3>\r\n<h3 style=\"text-align: justify;\">Evenings are quiet and peaceful taking you far away from the business of city life. This is a unique and memorable country experience. We look forward to having you as a guest!</h3>\r\n[/fusion_text][/fusion_builder_column][fusion_builder_column type=\"1_2\" layout=\"1_2\" last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"\" padding_right=\"\" padding_bottom=\"\" padding_left=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\" min_height=\"\"][fusion_text]\r\n<h3 style=\"text-align: justify;\">Our lodge has been in our family for years and has recently been beautifully renovated. Five rooms all with en-suite showers lead off your own large central lounge, featuring a 36 foot high vaulted ceiling, offering spacious living, dining, and a bar/conversational lounge area which includes a fitted kitchenette, all adding to a sense of homely comfort. Sumptuous meals can be provided on request and served on the bottom deck at the swimming pool.</h3>\r\n<h3 style=\"text-align: justify;\">Be lulled to sleep by the sound of the waterfall and tinkling stream just outside your window, waking from a peaceful night\'s sleep in a pillow-top bed dressed in luxurious linens to coddle you in ultimate comfort.</h3>\r\n<h3 style=\"text-align: justify;\">Our property boasts many different species of birds and animals. We have a resident otter, a family of wild bush pigs,  a family of rock rabbits, porcupine, little blue duikers, a variety of different frogs and an abundance of bird life, including the occasional snakes that pass through!</h3>\r\n[/fusion_text][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container background_color=\"#f0f0ed\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"20\" padding_bottom=\"20\" padding_left=\"\" padding_right=\"\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][fusion_builder_row][fusion_builder_column type=\"1_1\" layout=\"1_1\" background_position=\"left top\" background_color=\"\" border_size=\"\" border_color=\"\" border_style=\"solid\" spacing=\"yes\" background_image=\"\" background_repeat=\"no-repeat\" padding_top=\"\" padding_right=\"\" padding_bottom=\"\" padding_left=\"\" margin_top=\"0px\" margin_bottom=\"0px\" class=\"\" id=\"\" animation_type=\"\" animation_speed=\"0.3\" animation_direction=\"left\" hide_on_mobile=\"no\" center_content=\"no\" min_height=\"none\" last=\"no\" hover_type=\"none\" link=\"\" border_position=\"all\"][fusion_text]\r\n<h1 style=\"text-align: center;\">Gallery</h1>\r\n[/fusion_text][fusion_separator style_type=\"single solid\" top_margin=\"\" bottom_margin=\"40\" sep_color=\"#000000\" border_size=\"\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"170px\" alignment=\"\" class=\"\" id=\"\" /][/fusion_builder_column][fusion_builder_column type=\"1_6\" layout=\"1_6\" last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding_top=\"\" padding_right=\"\" padding_bottom=\"\" padding_left=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\" min_height=\"\"][/fusion_builder_column][fusion_builder_column type=\"2_3\" layout=\"2_3\" last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding_top=\"\" padding_right=\"\" padding_bottom=\"\" padding_left=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\" min_height=\"\"][fusion_text]\r\n<h3 style=\"text-align: justify;\">The Lodge is open, spacious, comfortable and homely. During hot summer days, sit and bask in the sun on the deck  with one of our  picnic specials. In winter, snuggle up with a good book or challenge one another to a friendly board game in the glassed nook area .</h3>\r\n[/fusion_text][/fusion_builder_column][fusion_builder_column type=\"1_6\" layout=\"1_6\" last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding_top=\"\" padding_right=\"\" padding_bottom=\"\" padding_left=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\" min_height=\"\"][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container background_color=\"#f0f0ed\" background_image=\"http://localhost/assagaylodge/wp-content/uploads/2015/01/Wood_Texture.jpg\" background_parallax=\"fixed\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"30\" padding_bottom=\"10\" padding_left=\"0\" padding_right=\"0\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][fusion_builder_row][fusion_builder_column type=\"1_1\" layout=\"1_1\" background_position=\"left top\" background_color=\"\" border_size=\"\" border_color=\"\" border_style=\"solid\" spacing=\"yes\" background_image=\"\" background_repeat=\"no-repeat\" padding_top=\"\" padding_right=\"\" padding_bottom=\"\" padding_left=\"\" margin_top=\"0px\" margin_bottom=\"0px\" class=\"\" id=\"\" animation_type=\"\" animation_speed=\"0.3\" animation_direction=\"left\" hide_on_mobile=\"no\" center_content=\"no\" min_height=\"none\" last=\"no\" hover_type=\"none\" link=\"\" border_position=\"all\"][fusion_portfolio layout=\"grid\" picture_size=\"auto\" text_layout=\"no_text\" filters=\"no\" columns=\"3\" column_spacing=\"12\" cat_slug=\"the-lodge\" exclude_cats=\"\" number_posts=\"9\" offset=\"\" excerpt_length=\"35\" strip_html=\"yes\" carousel_layout=\"title_on_rollover\" scroll_items=\"\" autoplay=\"no\" show_nav=\"yes\" mouse_scroll=\"no\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\" /][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container background_color=\"#f0f0ed\" background_image=\"\" background_parallax=\"fixed\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"20\" padding_bottom=\"20\" padding_left=\"\" padding_right=\"\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][fusion_builder_row][fusion_builder_column type=\"1_1\" layout=\"1_1\" background_position=\"left top\" background_color=\"\" border_size=\"\" border_color=\"\" border_style=\"solid\" spacing=\"yes\" background_image=\"\" background_repeat=\"no-repeat\" padding_top=\"\" padding_right=\"\" padding_bottom=\"\" padding_left=\"\" margin_top=\"0px\" margin_bottom=\"0px\" class=\"\" id=\"\" animation_type=\"\" animation_speed=\"0.3\" animation_direction=\"left\" hide_on_mobile=\"no\" center_content=\"no\" min_height=\"none\" last=\"no\" hover_type=\"none\" link=\"\" border_position=\"all\"][fusion_text]\r\n<h1 style=\"text-align: center;\">BEDROOMS</h1>\r\n[/fusion_text][fusion_separator style_type=\"single solid\" top_margin=\"\" bottom_margin=\"20\" sep_color=\"#000000\" border_size=\"\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"170px\" alignment=\"\" class=\"\" id=\"\" /][/fusion_builder_column][fusion_builder_column type=\"1_6\" layout=\"1_6\" last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding_top=\"\" padding_right=\"\" padding_bottom=\"\" padding_left=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\" min_height=\"\"][/fusion_builder_column][fusion_builder_column type=\"2_3\" layout=\"2_3\" last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding_top=\"\" padding_right=\"\" padding_bottom=\"\" padding_left=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\" min_height=\"\"][fusion_text]\r\n<h3 style=\"text-align: justify;\">When it comes to our bedrooms we’re proud to say we offer something a little more special. One of five  lovingly and tastefully decorated guest rooms. Soft gray decor soothes the senses providing a peaceful, blissfully comfortable rest from your travels and hectic lives.</h3>\r\n<h3 style=\"text-align: justify;\">Our  bedrooms are spacious, clean, comfortable all en-suite, equipped with either king size or queen size beds. Each room sleeps two guests. The rooms have high ceilings, wall heaters &amp; ceiling fans. Beds all have electric blankets in Winter, 100% cotton percale sheets and thick hyper allergenic microfiber duvets and pillows. All guest rooms are cleaned with organic and green products. Amenities include hairdryers in each room. Three rooms feature King-sized beds  of which two can be  split into two single beds. Two  rooms can therefore be changed into a twin room upon request. Two rooms feature a Queen-sized double bed. These beds cannot be split into twin beds.</h3>\r\n[/fusion_text][/fusion_builder_column][fusion_builder_column type=\"1_6\" layout=\"1_6\" last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding_top=\"\" padding_right=\"\" padding_bottom=\"\" padding_left=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\" min_height=\"\"][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container background_color=\"\" background_image=\"http://localhost/assagaylodge/wp-content/uploads/2015/01/DSC01516-1148-x-764.jpg\" background_parallax=\"fixed\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"center center\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"20\" padding_bottom=\"20\" padding_left=\"0\" padding_right=\"0\" hundred_percent=\"no\" equal_height_columns=\"yes\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][fusion_builder_row][fusion_builder_column type=\"1_1\" layout=\"1_1\" background_position=\"left top\" background_color=\"\" border_size=\"\" border_color=\"\" border_style=\"solid\" spacing=\"yes\" background_image=\"\" background_repeat=\"no-repeat\" padding_top=\"\" padding_right=\"\" padding_bottom=\"\" padding_left=\"\" margin_top=\"0px\" margin_bottom=\"0px\" class=\"\" id=\"\" animation_type=\"\" animation_speed=\"0.3\" animation_direction=\"left\" hide_on_mobile=\"no\" center_content=\"no\" min_height=\"none\" last=\"no\" hover_type=\"none\" link=\"\" border_position=\"all\"][fusion_portfolio layout=\"grid\" picture_size=\"auto\" text_layout=\"no_text\" filters=\"no\" columns=\"3\" column_spacing=\"12\" cat_slug=\"bedrooms\" exclude_cats=\"\" number_posts=\"6\" offset=\"\" excerpt_length=\"35\" strip_html=\"yes\" carousel_layout=\"title_on_rollover\" scroll_items=\"\" autoplay=\"no\" show_nav=\"yes\" mouse_scroll=\"no\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\" /][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container background_color=\"#f0f0ed\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"20\" padding_bottom=\"20\" padding_left=\"0\" padding_right=\"0\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][fusion_builder_row][fusion_builder_column type=\"1_1\" layout=\"1_1\" background_position=\"left top\" background_color=\"\" border_size=\"\" border_color=\"\" border_style=\"solid\" spacing=\"yes\" background_image=\"\" background_repeat=\"no-repeat\" padding_top=\"\" padding_right=\"\" padding_bottom=\"\" padding_left=\"\" margin_top=\"0px\" margin_bottom=\"0px\" class=\"\" id=\"\" animation_type=\"\" animation_speed=\"0.3\" animation_direction=\"left\" hide_on_mobile=\"no\" center_content=\"no\" min_height=\"none\" last=\"no\" hover_type=\"none\" link=\"\" border_position=\"all\"][fusion_text]\r\n<h1 style=\"text-align: center;\">GARDENS</h1>\r\n[/fusion_text][fusion_separator style_type=\"single solid\" top_margin=\"\" bottom_margin=\"20\" sep_color=\"#000000\" border_size=\"\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"170px\" alignment=\"\" class=\"\" id=\"\" /][/fusion_builder_column][fusion_builder_column type=\"1_6\" layout=\"1_6\" last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding_top=\"\" padding_right=\"\" padding_bottom=\"\" padding_left=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\" min_height=\"\"][/fusion_builder_column][fusion_builder_column type=\"2_3\" layout=\"2_3\" last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding_top=\"\" padding_right=\"\" padding_bottom=\"\" padding_left=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\" min_height=\"\"][fusion_text]\r\n<h3 style=\"text-align: justify;\">The garden is large and offers many secluded spots to lose yourself in a book with a glass of wine underneath the shade of a tree, listening to the sounds of the birds and smelling the beautiful flowers.</h3>\r\n[/fusion_text][/fusion_builder_column][fusion_builder_column type=\"1_6\" layout=\"1_6\" last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding_top=\"\" padding_right=\"\" padding_bottom=\"\" padding_left=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\" min_height=\"\"][/fusion_builder_column][fusion_builder_column type=\"1_1\" layout=\"1_1\" background_position=\"left top\" background_color=\"\" border_size=\"\" border_color=\"\" border_style=\"solid\" spacing=\"yes\" background_image=\"\" background_repeat=\"no-repeat\" padding_top=\"\" padding_right=\"\" padding_bottom=\"\" padding_left=\"\" margin_top=\"0px\" margin_bottom=\"0px\" class=\"\" id=\"\" animation_type=\"\" animation_speed=\"0.3\" animation_direction=\"left\" hide_on_mobile=\"no\" center_content=\"no\" min_height=\"none\" last=\"no\" hover_type=\"none\" link=\"\" border_position=\"all\"][fusion_portfolio layout=\"grid\" picture_size=\"auto\" text_layout=\"no_text\" filters=\"no\" columns=\"3\" column_spacing=\"12\" cat_slug=\"gardens\" exclude_cats=\"\" number_posts=\"9\" offset=\"\" excerpt_length=\"35\" strip_html=\"yes\" carousel_layout=\"title_on_rollover\" scroll_items=\"\" autoplay=\"no\" show_nav=\"yes\" mouse_scroll=\"no\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\" /][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container background_color=\"#ffffff\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"65px\" padding_bottom=\"65px\" padding_left=\"\" padding_right=\"\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][fusion_builder_row][fusion_builder_column type=\"1_1\" layout=\"1_1\" background_position=\"left top\" background_color=\"\" border_size=\"\" border_color=\"\" border_style=\"solid\" spacing=\"yes\" background_image=\"\" background_repeat=\"no-repeat\" padding_top=\"\" padding_right=\"\" padding_bottom=\"\" padding_left=\"\" margin_top=\"0px\" margin_bottom=\"0px\" class=\"\" id=\"\" animation_type=\"\" animation_speed=\"0.3\" animation_direction=\"left\" hide_on_mobile=\"no\" center_content=\"no\" min_height=\"none\" last=\"no\" hover_type=\"none\" link=\"\" border_position=\"all\"][fusion_button link=\"https://msla.co.za/lodge/reservations/\" color=\"default\" size=\"xlarge\" stretch=\"default\" type=\"3d\" shape=\"round\" target=\"_self\" title=\"\" button_gradient_top_color=\"#f0f0ed\" button_gradient_bottom_color=\"#f0f0ed\" button_gradient_top_color_hover=\"#6666a4\" button_gradient_bottom_color_hover=\"#6666a4\" accent_color=\"#ffffff\" accent_hover_color=\"#ffffff\" bevel_color=\"\" border_width=\"0px\" icon=\"\" icon_position=\"left\" icon_divider=\"no\" modal=\"\" animation_type=\"0\" animation_direction=\"left\" animation_speed=\"1\" animation_offset=\"\" alignment=\"center\" class=\"\" id=\"\"]Make A Reservation Enquiry[/fusion_button][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container]', 'Home', '', 'inherit', 'closed', 'closed', '', '7-revision-v1', '', '', '2019-11-13 15:24:18', '2019-11-13 13:24:18', '', 7, 'https://msla.co.za/lodge/7-revision-v1/', 0, 'revision', '', 0);
INSERT INTO `wp_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(1381, 1, '2019-11-13 15:26:44', '2019-11-13 13:26:44', '[fusion_builder_container background_color=\"#f0f0ed\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"20\" padding_bottom=\"20\" padding_left=\"\" padding_right=\"\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][fusion_builder_row][fusion_builder_column type=\"1_2\" layout=\"1_2\" last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"\" padding_right=\"\" padding_bottom=\"\" padding_left=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\" min_height=\"\"][fusion_separator style_type=\"single solid\" top_margin=\"0\" bottom_margin=\"30\" sep_color=\"#000000\" border_size=\"\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"170px\" alignment=\"center\" class=\"separator-left\" id=\"\" /][fusion_text]\r\n<h1 style=\"text-align: center;\">No Fancy Star Grading\r\nNo Room Service\r\nNo Bed Turn-downs\r\nNo Rose Petals in the Bath water</h1>\r\n<h1 style=\"text-align: center;\">... just old fashioned homely comforts</h1>\r\n[/fusion_text][/fusion_builder_column][fusion_builder_column type=\"1_2\" layout=\"1_2\" last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"\" padding_right=\"\" padding_bottom=\"\" padding_left=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\" min_height=\"\"][fusion_text]\r\n<h1 style=\"text-align: justify;\">5 BEDROOM FAMILY LODGE</h1>\r\n<h3 style=\"text-align: justify;\">We are a four season lodge, because there’s always something to celebrate… We offer comfort, relaxation and privacy right in the heart of 1000 Hills. The Forest, the Gardens, the Atmosphere all speak to  Rest  &amp; Relaxation.</h3>\r\n[/fusion_text][fusion_separator style_type=\"single solid\" top_margin=\"0\" bottom_margin=\"30\" sep_color=\"#000000\" border_size=\"\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"170px\" alignment=\"left\" class=\"separator-left\" id=\"\" /][fusion_title size=\"1\" content_align=\"right\" style_type=\"default\" sep_color=\"\" margin_top=\"\" margin_bottom=\"\" class=\"\" id=\"\"]\r\n<h1 style=\"text-align: center;\">Current Offers!</h1>\r\n[/fusion_title][fusion_checklist icon=\"fa-umbrella-beach fas\" iconcolor=\"\" circle=\"yes\" circlecolor=\"\" size=\"18px\" divider=\"\" divider_color=\"\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" class=\"\" id=\"\"][fusion_li_item icon=\"\"]\r\n<h3>Book on-line - get 15% OFF your <a href=\"http://msla.co.za/lodge/reservations/\"> Accommodation</a> or...</h3>\r\n[/fusion_li_item][fusion_li_item icon=\"\"]\r\n<h3><a href=\"http://msla.co.za/lodge/reservations/\">Stay 3 days or more</a> - get 25% OFF your Accommodation</h3>\r\n[/fusion_li_item][/fusion_checklist][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container background_color=\"#f0f0ed\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"20\" padding_bottom=\"20\" padding_left=\"\" padding_right=\"\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][fusion_builder_row][fusion_builder_column type=\"1_2\" layout=\"1_2\" last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"\" padding_right=\"\" padding_bottom=\"\" padding_left=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\" min_height=\"\"][fusion_text]\r\n<h3 style=\"text-align: justify;\">Set in the rolling peaks and valleys of a thousand hills surrounded by a canopy of indigenous trees, you will find that horses still have right of way, we certainly offer the best of both worlds, farm and charm coupled with modern amenities that will have you feeling relaxed and rejuvenated.</h3>\r\n<h3 style=\"text-align: justify;\">We know that sometimes you are searching for a romantic getaway or maybe a few days away with old friends. Other times you are searching for a place to host a weekend, family reunion or a business retreat. In addition to nightly room rentals, our lodge is also available for meetings, retreats  and makes the perfect place for a wedding party to stay together and get ready for the big day. Regardless, with our five comfortable and cozy guest bedrooms, multiple garden spaces and hideaways, and a  large private deck  where you can take a nap or read a book we definitely have the room for you!</h3>\r\n<h3 style=\"text-align: justify;\">Evenings are quiet and peaceful taking you far away from the business of city life. This is a unique and memorable country experience. We look forward to having you as a guest!</h3>\r\n[/fusion_text][/fusion_builder_column][fusion_builder_column type=\"1_2\" layout=\"1_2\" last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"\" padding_right=\"\" padding_bottom=\"\" padding_left=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\" min_height=\"\"][fusion_text]\r\n<h3 style=\"text-align: justify;\">Our lodge has been in our family for years and has recently been beautifully renovated. Five rooms all with en-suite showers lead off your own large central lounge, featuring a 36 foot high vaulted ceiling, offering spacious living, dining, and a bar/conversational lounge area which includes a fitted kitchenette, all adding to a sense of homely comfort. Sumptuous meals can be provided on request and served on the bottom deck at the swimming pool.</h3>\r\n<h3 style=\"text-align: justify;\">Be lulled to sleep by the sound of the waterfall and tinkling stream just outside your window, waking from a peaceful night\'s sleep in a pillow-top bed dressed in luxurious linens to coddle you in ultimate comfort.</h3>\r\n<h3 style=\"text-align: justify;\">Our property boasts many different species of birds and animals. We have a resident otter, a family of wild bush pigs,  a family of rock rabbits, porcupine, little blue duikers, a variety of different frogs and an abundance of bird life, including the occasional snakes that pass through!</h3>\r\n[/fusion_text][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container background_color=\"#f0f0ed\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"20\" padding_bottom=\"20\" padding_left=\"\" padding_right=\"\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][fusion_builder_row][fusion_builder_column type=\"1_1\" layout=\"1_1\" background_position=\"left top\" background_color=\"\" border_size=\"\" border_color=\"\" border_style=\"solid\" spacing=\"yes\" background_image=\"\" background_repeat=\"no-repeat\" padding_top=\"\" padding_right=\"\" padding_bottom=\"\" padding_left=\"\" margin_top=\"0px\" margin_bottom=\"0px\" class=\"\" id=\"\" animation_type=\"\" animation_speed=\"0.3\" animation_direction=\"left\" hide_on_mobile=\"no\" center_content=\"no\" min_height=\"none\" last=\"no\" hover_type=\"none\" link=\"\" border_position=\"all\"][fusion_text]\r\n<h1 style=\"text-align: center;\">Gallery</h1>\r\n[/fusion_text][fusion_separator style_type=\"single solid\" top_margin=\"\" bottom_margin=\"40\" sep_color=\"#000000\" border_size=\"\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"170px\" alignment=\"\" class=\"\" id=\"\" /][/fusion_builder_column][fusion_builder_column type=\"1_6\" layout=\"1_6\" last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding_top=\"\" padding_right=\"\" padding_bottom=\"\" padding_left=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\" min_height=\"\"][/fusion_builder_column][fusion_builder_column type=\"2_3\" layout=\"2_3\" last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding_top=\"\" padding_right=\"\" padding_bottom=\"\" padding_left=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\" min_height=\"\"][fusion_text]\r\n<h3 style=\"text-align: justify;\">The Lodge is open, spacious, comfortable and homely. During hot summer days, sit and bask in the sun on the deck  with one of our  picnic specials. In winter, snuggle up with a good book or challenge one another to a friendly board game in the glassed nook area .</h3>\r\n[/fusion_text][/fusion_builder_column][fusion_builder_column type=\"1_6\" layout=\"1_6\" last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding_top=\"\" padding_right=\"\" padding_bottom=\"\" padding_left=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\" min_height=\"\"][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container background_color=\"#f0f0ed\" background_image=\"http://localhost/assagaylodge/wp-content/uploads/2015/01/Wood_Texture.jpg\" background_parallax=\"fixed\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"30\" padding_bottom=\"10\" padding_left=\"0\" padding_right=\"0\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][fusion_builder_row][fusion_builder_column type=\"1_1\" layout=\"1_1\" background_position=\"left top\" background_color=\"\" border_size=\"\" border_color=\"\" border_style=\"solid\" spacing=\"yes\" background_image=\"\" background_repeat=\"no-repeat\" padding_top=\"\" padding_right=\"\" padding_bottom=\"\" padding_left=\"\" margin_top=\"0px\" margin_bottom=\"0px\" class=\"\" id=\"\" animation_type=\"\" animation_speed=\"0.3\" animation_direction=\"left\" hide_on_mobile=\"no\" center_content=\"no\" min_height=\"none\" last=\"no\" hover_type=\"none\" link=\"\" border_position=\"all\"][fusion_portfolio layout=\"grid\" picture_size=\"auto\" text_layout=\"no_text\" filters=\"no\" columns=\"3\" column_spacing=\"12\" cat_slug=\"the-lodge\" exclude_cats=\"\" number_posts=\"9\" offset=\"\" excerpt_length=\"35\" strip_html=\"yes\" carousel_layout=\"title_on_rollover\" scroll_items=\"\" autoplay=\"no\" show_nav=\"yes\" mouse_scroll=\"no\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\" /][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container background_color=\"#f0f0ed\" background_image=\"\" background_parallax=\"fixed\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"20\" padding_bottom=\"20\" padding_left=\"\" padding_right=\"\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][fusion_builder_row][fusion_builder_column type=\"1_1\" layout=\"1_1\" background_position=\"left top\" background_color=\"\" border_size=\"\" border_color=\"\" border_style=\"solid\" spacing=\"yes\" background_image=\"\" background_repeat=\"no-repeat\" padding_top=\"\" padding_right=\"\" padding_bottom=\"\" padding_left=\"\" margin_top=\"0px\" margin_bottom=\"0px\" class=\"\" id=\"\" animation_type=\"\" animation_speed=\"0.3\" animation_direction=\"left\" hide_on_mobile=\"no\" center_content=\"no\" min_height=\"none\" last=\"no\" hover_type=\"none\" link=\"\" border_position=\"all\"][fusion_text]\r\n<h1 style=\"text-align: center;\">BEDROOMS</h1>\r\n[/fusion_text][fusion_separator style_type=\"single solid\" top_margin=\"\" bottom_margin=\"20\" sep_color=\"#000000\" border_size=\"\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"170px\" alignment=\"\" class=\"\" id=\"\" /][/fusion_builder_column][fusion_builder_column type=\"1_6\" layout=\"1_6\" last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding_top=\"\" padding_right=\"\" padding_bottom=\"\" padding_left=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\" min_height=\"\"][/fusion_builder_column][fusion_builder_column type=\"2_3\" layout=\"2_3\" last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding_top=\"\" padding_right=\"\" padding_bottom=\"\" padding_left=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\" min_height=\"\"][fusion_text]\r\n<h3 style=\"text-align: justify;\">When it comes to our bedrooms we’re proud to say we offer something a little more special. One of five  lovingly and tastefully decorated guest rooms. Soft gray decor soothes the senses providing a peaceful, blissfully comfortable rest from your travels and hectic lives.</h3>\r\n<h3 style=\"text-align: justify;\">Our  bedrooms are spacious, clean, comfortable all en-suite, equipped with either king size or queen size beds. Each room sleeps two guests. The rooms have high ceilings, wall heaters &amp; ceiling fans. Beds all have electric blankets in Winter, 100% cotton percale sheets and thick hyper allergenic microfiber duvets and pillows. All guest rooms are cleaned with organic and green products. Amenities include hairdryers in each room. Three rooms feature King-sized beds  of which two can be  split into two single beds. Two  rooms can therefore be changed into a twin room upon request. Two rooms feature a Queen-sized double bed. These beds cannot be split into twin beds.</h3>\r\n[/fusion_text][/fusion_builder_column][fusion_builder_column type=\"1_6\" layout=\"1_6\" last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding_top=\"\" padding_right=\"\" padding_bottom=\"\" padding_left=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\" min_height=\"\"][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container background_color=\"\" background_image=\"http://localhost/assagaylodge/wp-content/uploads/2015/01/DSC01516-1148-x-764.jpg\" background_parallax=\"fixed\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"center center\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"20\" padding_bottom=\"20\" padding_left=\"0\" padding_right=\"0\" hundred_percent=\"no\" equal_height_columns=\"yes\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][fusion_builder_row][fusion_builder_column type=\"1_1\" layout=\"1_1\" background_position=\"left top\" background_color=\"\" border_size=\"\" border_color=\"\" border_style=\"solid\" spacing=\"yes\" background_image=\"\" background_repeat=\"no-repeat\" padding_top=\"\" padding_right=\"\" padding_bottom=\"\" padding_left=\"\" margin_top=\"0px\" margin_bottom=\"0px\" class=\"\" id=\"\" animation_type=\"\" animation_speed=\"0.3\" animation_direction=\"left\" hide_on_mobile=\"no\" center_content=\"no\" min_height=\"none\" last=\"no\" hover_type=\"none\" link=\"\" border_position=\"all\"][fusion_portfolio layout=\"grid\" picture_size=\"auto\" text_layout=\"no_text\" filters=\"no\" columns=\"3\" column_spacing=\"12\" cat_slug=\"bedrooms\" exclude_cats=\"\" number_posts=\"6\" offset=\"\" excerpt_length=\"35\" strip_html=\"yes\" carousel_layout=\"title_on_rollover\" scroll_items=\"\" autoplay=\"no\" show_nav=\"yes\" mouse_scroll=\"no\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\" /][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container background_color=\"#f0f0ed\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"20\" padding_bottom=\"20\" padding_left=\"0\" padding_right=\"0\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][fusion_builder_row][fusion_builder_column type=\"1_1\" layout=\"1_1\" background_position=\"left top\" background_color=\"\" border_size=\"\" border_color=\"\" border_style=\"solid\" spacing=\"yes\" background_image=\"\" background_repeat=\"no-repeat\" padding_top=\"\" padding_right=\"\" padding_bottom=\"\" padding_left=\"\" margin_top=\"0px\" margin_bottom=\"0px\" class=\"\" id=\"\" animation_type=\"\" animation_speed=\"0.3\" animation_direction=\"left\" hide_on_mobile=\"no\" center_content=\"no\" min_height=\"none\" last=\"no\" hover_type=\"none\" link=\"\" border_position=\"all\"][fusion_text]\r\n<h1 style=\"text-align: center;\">GARDENS</h1>\r\n[/fusion_text][fusion_separator style_type=\"single solid\" top_margin=\"\" bottom_margin=\"20\" sep_color=\"#000000\" border_size=\"\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"170px\" alignment=\"\" class=\"\" id=\"\" /][/fusion_builder_column][fusion_builder_column type=\"1_6\" layout=\"1_6\" last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding_top=\"\" padding_right=\"\" padding_bottom=\"\" padding_left=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\" min_height=\"\"][/fusion_builder_column][fusion_builder_column type=\"2_3\" layout=\"2_3\" last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding_top=\"\" padding_right=\"\" padding_bottom=\"\" padding_left=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\" min_height=\"\"][fusion_text]\r\n<h3 style=\"text-align: justify;\">The garden is large and offers many secluded spots to lose yourself in a book with a glass of wine underneath the shade of a tree, listening to the sounds of the birds and smelling the beautiful flowers.</h3>\r\n[/fusion_text][/fusion_builder_column][fusion_builder_column type=\"1_6\" layout=\"1_6\" last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding_top=\"\" padding_right=\"\" padding_bottom=\"\" padding_left=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\" min_height=\"\"][/fusion_builder_column][fusion_builder_column type=\"1_1\" layout=\"1_1\" background_position=\"left top\" background_color=\"\" border_size=\"\" border_color=\"\" border_style=\"solid\" spacing=\"yes\" background_image=\"\" background_repeat=\"no-repeat\" padding_top=\"\" padding_right=\"\" padding_bottom=\"\" padding_left=\"\" margin_top=\"0px\" margin_bottom=\"0px\" class=\"\" id=\"\" animation_type=\"\" animation_speed=\"0.3\" animation_direction=\"left\" hide_on_mobile=\"no\" center_content=\"no\" min_height=\"none\" last=\"no\" hover_type=\"none\" link=\"\" border_position=\"all\"][fusion_portfolio layout=\"grid\" picture_size=\"auto\" text_layout=\"no_text\" filters=\"no\" columns=\"3\" column_spacing=\"12\" cat_slug=\"gardens\" exclude_cats=\"\" number_posts=\"9\" offset=\"\" excerpt_length=\"35\" strip_html=\"yes\" carousel_layout=\"title_on_rollover\" scroll_items=\"\" autoplay=\"no\" show_nav=\"yes\" mouse_scroll=\"no\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\" /][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container background_color=\"#ffffff\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"65px\" padding_bottom=\"65px\" padding_left=\"\" padding_right=\"\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][fusion_builder_row][fusion_builder_column type=\"1_1\" layout=\"1_1\" background_position=\"left top\" background_color=\"\" border_size=\"\" border_color=\"\" border_style=\"solid\" spacing=\"yes\" background_image=\"\" background_repeat=\"no-repeat\" padding_top=\"\" padding_right=\"\" padding_bottom=\"\" padding_left=\"\" margin_top=\"0px\" margin_bottom=\"0px\" class=\"\" id=\"\" animation_type=\"\" animation_speed=\"0.3\" animation_direction=\"left\" hide_on_mobile=\"no\" center_content=\"no\" min_height=\"none\" last=\"no\" hover_type=\"none\" link=\"\" border_position=\"all\"][fusion_button link=\"https://msla.co.za/lodge/reservations/\" color=\"default\" size=\"xlarge\" stretch=\"default\" type=\"3d\" shape=\"round\" target=\"_self\" title=\"\" button_gradient_top_color=\"#f0f0ed\" button_gradient_bottom_color=\"#f0f0ed\" button_gradient_top_color_hover=\"#6666a4\" button_gradient_bottom_color_hover=\"#6666a4\" accent_color=\"#ffffff\" accent_hover_color=\"#ffffff\" bevel_color=\"\" border_width=\"0px\" icon=\"\" icon_position=\"left\" icon_divider=\"no\" modal=\"\" animation_type=\"0\" animation_direction=\"left\" animation_speed=\"1\" animation_offset=\"\" alignment=\"center\" class=\"\" id=\"\"]Make A Reservation Enquiry[/fusion_button][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container]', 'Home', '', 'inherit', 'closed', 'closed', '', '7-revision-v1', '', '', '2019-11-13 15:26:44', '2019-11-13 13:26:44', '', 7, 'https://msla.co.za/lodge/7-revision-v1/', 0, 'revision', '', 0),
(1382, 1, '2019-11-13 15:52:45', '2019-11-13 13:52:45', '[fusion_builder_container background_color=\"\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"70px\" padding_bottom=\"75px\" padding_left=\"\" padding_right=\"\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][fusion_builder_row][fusion_builder_column type=\"1_2\" layout=\"1_2\" last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding_top=\"\" padding_right=\"\" padding_bottom=\"\" padding_left=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\" min_height=\"\" hover_type=\"none\" link=\"\" border_position=\"all\"][fusion_text]\r\n<h1>Contact Us</h1>\r\n<h2>Send us a message.</h2>\r\n[/fusion_text][fusion_text][contact-form-7 id=\"246\" title=\"Contact form 1\"][/fusion_text][/fusion_builder_column][fusion_builder_column type=\"1_2\" layout=\"1_2\" last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding_top=\"\" padding_right=\"\" padding_bottom=\"\" padding_left=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\" min_height=\"\" hover_type=\"none\" link=\"\" border_position=\"all\"][fusion_text]\r\n<h1>Where are we?</h1>\r\n<h2>4 Williams Road\r\nAssagay, Hillcrest\r\nKwaZulu Natal</h2>\r\n<h1>Contact</h1>\r\n<h2>0317656046 or 0317655961</h2>\r\n[/fusion_text][fusion_separator style_type=\"none\" top_margin=\"\" bottom_margin=\"20\" sep_color=\"\" border_size=\"\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"\" alignment=\"\" class=\"\" id=\"\" /][fusion_accordion class=\"\" id=\"\"][fusion_toggle title=\"GPS Location\" open=\"no\"]\r\n\r\n<strong>GPS: Latitude (South) -29.771865, Longitude (East) 30.736892</strong>\r\n\r\n[/fusion_toggle][fusion_toggle title=\"Directions from King Shaka Airport / Durban\" open=\"no\"]\r\n\r\nFrom King Shaka Airport take the N2 South bound towards Durban, at the 3 level interchange be sure to take the N3 turn off towards Pietermaritzburg. Proceed through the Marionhill toll plaza and take the first off ramp marked Shongweni / Assagay / Hillcrest. Turn right towards Hillcrest into Kassier Road which will take you over the N3 and M13, keep on this road, pass the Hillcrest Private Hospital and Alverstone turn off. Remain on Kassier Road, for about 2-3km and turn into Assagay Road, which is just after Assagay Crescent.\r\n\r\nTake the left turn into Assagay Road. Head up the rise. Turn left into Castle Road, carry down the dip for about 500m and cross a small water-bridge. Turn first right into Lello Road, just after the bridge. Continue on Lello Road, the road dips and briefly climbs, the valley falling away to your right. Finally, turn left into Williams Road (it’s essentially the first left turn on Lello Road), Continue down Williams Road for about 800m. On your right you will come to the entrance of the farm called `Fourever` No 4 Williams Road. There’s a 1000 Hills Tourism Sign outside. A wooden fence and silver gate. Welcome to Assagay Forest Lodge.\r\n\r\n[/fusion_toggle][fusion_toggle title=\"Directions from Pietermaritzburg\" open=\"no\"]\r\n\r\nFrom Pietermaritzburg take the N3 towards Durban. After the Drummond turnoff the N3 makes a steep climb. Don\'t take the Alternative route but stay on the N3. Take the next off ramp marked Shongweni / Assagay / Hillcrest. Turn left towards Hillcrest into Kassier Road which will take you passed the Polo fields on your left and a Petrol Station on your right and over then over the M13, keep on this road, pass the Hillcrest Private Hospital and Alverstone turn off. Remain on Kassier Road, for about 2-3km and turn into Assagay Road, which is just after Assagay Crescent.\r\n\r\nTake the left turn into Assagay Road. Head up the rise. Turn left into Castle Road, carry down the dip for about 500m and cross a small water-bridge. Turn first right into Lello Road, just after the bridge. Continue on Lello Road, the road dips and briefly climbs, the valley falling away to your right. Finally, turn left into Williams Road (it’s essentially the first left turn on Lello Road), Continue down Williams Road for about 800m. On your right you will come to the entrance of the farm called `Fourever` No 4 Williams Road. There’s a 1000 Hills Tourism Sign outside. A wooden fence and silver gate. Welcome to Assagay Lodge.\r\n\r\n[/fusion_toggle][fusion_toggle title=\"Things to do\" open=\"no\"]\r\n\r\nThere is plenty to do.\r\n\r\nDurban Sea Side - 25kms\r\nGame reserve - 15 kms\r\nAnimal Farm - 2kms\r\nBrewery - 4kms\r\nShongweni Market - 6kms\r\nShongweni Dam - 8kms\r\nValley 1000 Hills , Zulu dancing and Croc farm - 4kms\r\nDrakensberg Mountains - 3 hours\r\nHillcrest Shopping Centre - 3 kms\r\nWaterfall Shopping Centre - 8kms\r\nPavilion Shopping Centre - 20 kms\r\nGateway Shopping Centre - 40kms\r\n\r\n[/fusion_toggle][/fusion_accordion][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container]', 'Contact & Directions', '', 'inherit', 'closed', 'closed', '', '11-revision-v1', '', '', '2019-11-13 15:52:45', '2019-11-13 13:52:45', '', 11, 'https://msla.co.za/lodge/11-revision-v1/', 0, 'revision', '', 0);
INSERT INTO `wp_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(1383, 1, '2019-11-13 16:01:52', '2019-11-13 14:01:52', '[fusion_builder_container background_color=\"#f0f0ed\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"20\" padding_bottom=\"20\" padding_left=\"\" padding_right=\"\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][fusion_builder_row][fusion_builder_column type=\"1_2\" layout=\"1_2\" last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"\" padding_right=\"\" padding_bottom=\"\" padding_left=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\" min_height=\"\"][fusion_separator style_type=\"single solid\" top_margin=\"0\" bottom_margin=\"30\" sep_color=\"#000000\" border_size=\"\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"170px\" alignment=\"center\" class=\"separator-left\" id=\"\" /][fusion_text]\r\n<h1 style=\"text-align: center;\">No Fancy Star Grading\r\nNo Room Service\r\nNo Bed Turn-downs\r\nNo Rose Petals in the Bath water</h1>\r\n<h1 style=\"text-align: center;\">... just old fashioned homely comforts</h1>\r\n[/fusion_text][/fusion_builder_column][fusion_builder_column type=\"1_2\" layout=\"1_2\" last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"\" padding_right=\"\" padding_bottom=\"\" padding_left=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\" min_height=\"\"][fusion_text]\r\n<h1 style=\"text-align: justify;\">5 BEDROOM FAMILY LODGE</h1>\r\n<h3 style=\"text-align: justify;\">We are a four season lodge, because there’s always something to celebrate… We offer comfort, relaxation and privacy right in the heart of 1000 Hills. The Forest, the Gardens, the Atmosphere all speak to  Rest  &amp; Relaxation.</h3>\r\n[/fusion_text][fusion_separator style_type=\"single solid\" top_margin=\"0\" bottom_margin=\"30\" sep_color=\"#000000\" border_size=\"\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"170px\" alignment=\"left\" class=\"separator-left\" id=\"\" /][fusion_title size=\"1\" content_align=\"right\" style_type=\"default\" sep_color=\"\" margin_top=\"\" margin_bottom=\"\" class=\"\" id=\"\"]\r\n<h1 style=\"text-align: center;\">Current Offers!</h1>\r\n[/fusion_title][fusion_checklist icon=\"fa-umbrella-beach fas\" iconcolor=\"#8bc34a\" circle=\"yes\" circlecolor=\"#000000\" size=\"18px\" divider=\"\" divider_color=\"\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" class=\"\" id=\"\"][fusion_li_item icon=\"\"]\r\n<h3>Book on-line - get 15% OFF your <a href=\"http://msla.co.za/lodge/reservations/\"> Accommodation</a> or...</h3>\r\n[/fusion_li_item][fusion_li_item icon=\"fa-umbrella-beach fas\"]\r\n<h3><a href=\"http://msla.co.za/lodge/reservations/\">Stay 3 days or more</a> - get 25% OFF your Accommodation</h3>\r\n[/fusion_li_item][/fusion_checklist][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container background_color=\"#f0f0ed\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"20\" padding_bottom=\"20\" padding_left=\"\" padding_right=\"\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][fusion_builder_row][fusion_builder_column type=\"1_2\" layout=\"1_2\" last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"\" padding_right=\"\" padding_bottom=\"\" padding_left=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\" min_height=\"\"][fusion_text]\r\n<h3 style=\"text-align: justify;\">Set in the rolling peaks and valleys of a thousand hills surrounded by a canopy of indigenous trees, you will find that horses still have right of way, we certainly offer the best of both worlds, farm and charm coupled with modern amenities that will have you feeling relaxed and rejuvenated.</h3>\r\n<h3 style=\"text-align: justify;\">We know that sometimes you are searching for a romantic getaway or maybe a few days away with old friends. Other times you are searching for a place to host a weekend, family reunion or a business retreat. In addition to nightly room rentals, our lodge is also available for meetings, retreats  and makes the perfect place for a wedding party to stay together and get ready for the big day. Regardless, with our five comfortable and cozy guest bedrooms, multiple garden spaces and hideaways, and a  large private deck  where you can take a nap or read a book we definitely have the room for you!</h3>\r\n<h3 style=\"text-align: justify;\">Evenings are quiet and peaceful taking you far away from the business of city life. This is a unique and memorable country experience. We look forward to having you as a guest!</h3>\r\n[/fusion_text][/fusion_builder_column][fusion_builder_column type=\"1_2\" layout=\"1_2\" last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"\" padding_right=\"\" padding_bottom=\"\" padding_left=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\" min_height=\"\"][fusion_text]\r\n<h3 style=\"text-align: justify;\">Our lodge has been in our family for years and has recently been beautifully renovated. Five rooms all with en-suite showers lead off your own large central lounge, featuring a 36 foot high vaulted ceiling, offering spacious living, dining, and a bar/conversational lounge area which includes a fitted kitchenette, all adding to a sense of homely comfort. Sumptuous meals can be provided on request and served on the bottom deck at the swimming pool.</h3>\r\n<h3 style=\"text-align: justify;\">Be lulled to sleep by the sound of the waterfall and tinkling stream just outside your window, waking from a peaceful night\'s sleep in a pillow-top bed dressed in luxurious linens to coddle you in ultimate comfort.</h3>\r\n<h3 style=\"text-align: justify;\">Our property boasts many different species of birds and animals. We have a resident otter, a family of wild bush pigs,  a family of rock rabbits, porcupine, little blue duikers, a variety of different frogs and an abundance of bird life, including the occasional snakes that pass through!</h3>\r\n[/fusion_text][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container background_color=\"#f0f0ed\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"20\" padding_bottom=\"20\" padding_left=\"\" padding_right=\"\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][fusion_builder_row][fusion_builder_column type=\"1_1\" layout=\"1_1\" background_position=\"left top\" background_color=\"\" border_size=\"\" border_color=\"\" border_style=\"solid\" spacing=\"yes\" background_image=\"\" background_repeat=\"no-repeat\" padding_top=\"\" padding_right=\"\" padding_bottom=\"\" padding_left=\"\" margin_top=\"0px\" margin_bottom=\"0px\" class=\"\" id=\"\" animation_type=\"\" animation_speed=\"0.3\" animation_direction=\"left\" hide_on_mobile=\"no\" center_content=\"no\" min_height=\"none\" last=\"no\" hover_type=\"none\" link=\"\" border_position=\"all\"][fusion_text]\r\n<h1 style=\"text-align: center;\">Gallery</h1>\r\n[/fusion_text][fusion_separator style_type=\"single solid\" top_margin=\"\" bottom_margin=\"40\" sep_color=\"#000000\" border_size=\"\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"170px\" alignment=\"\" class=\"\" id=\"\" /][/fusion_builder_column][fusion_builder_column type=\"1_6\" layout=\"1_6\" last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding_top=\"\" padding_right=\"\" padding_bottom=\"\" padding_left=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\" min_height=\"\"][/fusion_builder_column][fusion_builder_column type=\"2_3\" layout=\"2_3\" last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding_top=\"\" padding_right=\"\" padding_bottom=\"\" padding_left=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\" min_height=\"\"][fusion_text]\r\n<h3 style=\"text-align: justify;\">The Lodge is open, spacious, comfortable and homely. During hot summer days, sit and bask in the sun on the deck  with one of our  picnic specials. In winter, snuggle up with a good book or challenge one another to a friendly board game in the glassed nook area .</h3>\r\n[/fusion_text][/fusion_builder_column][fusion_builder_column type=\"1_6\" layout=\"1_6\" last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding_top=\"\" padding_right=\"\" padding_bottom=\"\" padding_left=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\" min_height=\"\"][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container background_color=\"#f0f0ed\" background_image=\"http://localhost/assagaylodge/wp-content/uploads/2015/01/Wood_Texture.jpg\" background_parallax=\"fixed\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"30\" padding_bottom=\"10\" padding_left=\"0\" padding_right=\"0\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][fusion_builder_row][fusion_builder_column type=\"1_1\" layout=\"1_1\" background_position=\"left top\" background_color=\"\" border_size=\"\" border_color=\"\" border_style=\"solid\" spacing=\"yes\" background_image=\"\" background_repeat=\"no-repeat\" padding_top=\"\" padding_right=\"\" padding_bottom=\"\" padding_left=\"\" margin_top=\"0px\" margin_bottom=\"0px\" class=\"\" id=\"\" animation_type=\"\" animation_speed=\"0.3\" animation_direction=\"left\" hide_on_mobile=\"no\" center_content=\"no\" min_height=\"none\" last=\"no\" hover_type=\"none\" link=\"\" border_position=\"all\"][fusion_portfolio layout=\"grid\" picture_size=\"auto\" text_layout=\"no_text\" filters=\"no\" columns=\"3\" column_spacing=\"12\" cat_slug=\"the-lodge\" exclude_cats=\"\" number_posts=\"9\" offset=\"\" excerpt_length=\"35\" strip_html=\"yes\" carousel_layout=\"title_on_rollover\" scroll_items=\"\" autoplay=\"no\" show_nav=\"yes\" mouse_scroll=\"no\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\" /][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container background_color=\"#f0f0ed\" background_image=\"\" background_parallax=\"fixed\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"20\" padding_bottom=\"20\" padding_left=\"\" padding_right=\"\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][fusion_builder_row][fusion_builder_column type=\"1_1\" layout=\"1_1\" background_position=\"left top\" background_color=\"\" border_size=\"\" border_color=\"\" border_style=\"solid\" spacing=\"yes\" background_image=\"\" background_repeat=\"no-repeat\" padding_top=\"\" padding_right=\"\" padding_bottom=\"\" padding_left=\"\" margin_top=\"0px\" margin_bottom=\"0px\" class=\"\" id=\"\" animation_type=\"\" animation_speed=\"0.3\" animation_direction=\"left\" hide_on_mobile=\"no\" center_content=\"no\" min_height=\"none\" last=\"no\" hover_type=\"none\" link=\"\" border_position=\"all\"][fusion_text]\r\n<h1 style=\"text-align: center;\">BEDROOMS</h1>\r\n[/fusion_text][fusion_separator style_type=\"single solid\" top_margin=\"\" bottom_margin=\"20\" sep_color=\"#000000\" border_size=\"\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"170px\" alignment=\"\" class=\"\" id=\"\" /][/fusion_builder_column][fusion_builder_column type=\"1_6\" layout=\"1_6\" last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding_top=\"\" padding_right=\"\" padding_bottom=\"\" padding_left=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\" min_height=\"\"][/fusion_builder_column][fusion_builder_column type=\"2_3\" layout=\"2_3\" last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding_top=\"\" padding_right=\"\" padding_bottom=\"\" padding_left=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\" min_height=\"\"][fusion_text]\r\n<h3 style=\"text-align: justify;\">When it comes to our bedrooms we’re proud to say we offer something a little more special. One of five  lovingly and tastefully decorated guest rooms. Soft gray decor soothes the senses providing a peaceful, blissfully comfortable rest from your travels and hectic lives.</h3>\r\n<h3 style=\"text-align: justify;\">Our  bedrooms are spacious, clean, comfortable all en-suite, equipped with either king size or queen size beds. Each room sleeps two guests. The rooms have high ceilings, wall heaters &amp; ceiling fans. Beds all have electric blankets in Winter, 100% cotton percale sheets and thick hyper allergenic microfiber duvets and pillows. All guest rooms are cleaned with organic and green products. Amenities include hairdryers in each room. Three rooms feature King-sized beds  of which two can be  split into two single beds. Two  rooms can therefore be changed into a twin room upon request. Two rooms feature a Queen-sized double bed. These beds cannot be split into twin beds.</h3>\r\n[/fusion_text][/fusion_builder_column][fusion_builder_column type=\"1_6\" layout=\"1_6\" last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding_top=\"\" padding_right=\"\" padding_bottom=\"\" padding_left=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\" min_height=\"\"][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container background_color=\"\" background_image=\"http://localhost/assagaylodge/wp-content/uploads/2015/01/DSC01516-1148-x-764.jpg\" background_parallax=\"fixed\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"center center\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"20\" padding_bottom=\"20\" padding_left=\"0\" padding_right=\"0\" hundred_percent=\"no\" equal_height_columns=\"yes\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][fusion_builder_row][fusion_builder_column type=\"1_1\" layout=\"1_1\" background_position=\"left top\" background_color=\"\" border_size=\"\" border_color=\"\" border_style=\"solid\" spacing=\"yes\" background_image=\"\" background_repeat=\"no-repeat\" padding_top=\"\" padding_right=\"\" padding_bottom=\"\" padding_left=\"\" margin_top=\"0px\" margin_bottom=\"0px\" class=\"\" id=\"\" animation_type=\"\" animation_speed=\"0.3\" animation_direction=\"left\" hide_on_mobile=\"no\" center_content=\"no\" min_height=\"none\" last=\"no\" hover_type=\"none\" link=\"\" border_position=\"all\"][fusion_portfolio layout=\"grid\" picture_size=\"auto\" text_layout=\"no_text\" filters=\"no\" columns=\"3\" column_spacing=\"12\" cat_slug=\"bedrooms\" exclude_cats=\"\" number_posts=\"6\" offset=\"\" excerpt_length=\"35\" strip_html=\"yes\" carousel_layout=\"title_on_rollover\" scroll_items=\"\" autoplay=\"no\" show_nav=\"yes\" mouse_scroll=\"no\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\" /][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container background_color=\"#f0f0ed\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"20\" padding_bottom=\"20\" padding_left=\"0\" padding_right=\"0\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][fusion_builder_row][fusion_builder_column type=\"1_1\" layout=\"1_1\" background_position=\"left top\" background_color=\"\" border_size=\"\" border_color=\"\" border_style=\"solid\" spacing=\"yes\" background_image=\"\" background_repeat=\"no-repeat\" padding_top=\"\" padding_right=\"\" padding_bottom=\"\" padding_left=\"\" margin_top=\"0px\" margin_bottom=\"0px\" class=\"\" id=\"\" animation_type=\"\" animation_speed=\"0.3\" animation_direction=\"left\" hide_on_mobile=\"no\" center_content=\"no\" min_height=\"none\" last=\"no\" hover_type=\"none\" link=\"\" border_position=\"all\"][fusion_text]\r\n<h1 style=\"text-align: center;\">GARDENS</h1>\r\n[/fusion_text][fusion_separator style_type=\"single solid\" top_margin=\"\" bottom_margin=\"20\" sep_color=\"#000000\" border_size=\"\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"170px\" alignment=\"\" class=\"\" id=\"\" /][/fusion_builder_column][fusion_builder_column type=\"1_6\" layout=\"1_6\" last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding_top=\"\" padding_right=\"\" padding_bottom=\"\" padding_left=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\" min_height=\"\"][/fusion_builder_column][fusion_builder_column type=\"2_3\" layout=\"2_3\" last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding_top=\"\" padding_right=\"\" padding_bottom=\"\" padding_left=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\" min_height=\"\"][fusion_text]\r\n<h3 style=\"text-align: justify;\">The garden is large and offers many secluded spots to lose yourself in a book with a glass of wine underneath the shade of a tree, listening to the sounds of the birds and smelling the beautiful flowers.</h3>\r\n[/fusion_text][/fusion_builder_column][fusion_builder_column type=\"1_6\" layout=\"1_6\" last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding_top=\"\" padding_right=\"\" padding_bottom=\"\" padding_left=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\" min_height=\"\"][/fusion_builder_column][fusion_builder_column type=\"1_1\" layout=\"1_1\" background_position=\"left top\" background_color=\"\" border_size=\"\" border_color=\"\" border_style=\"solid\" spacing=\"yes\" background_image=\"\" background_repeat=\"no-repeat\" padding_top=\"\" padding_right=\"\" padding_bottom=\"\" padding_left=\"\" margin_top=\"0px\" margin_bottom=\"0px\" class=\"\" id=\"\" animation_type=\"\" animation_speed=\"0.3\" animation_direction=\"left\" hide_on_mobile=\"no\" center_content=\"no\" min_height=\"none\" last=\"no\" hover_type=\"none\" link=\"\" border_position=\"all\"][fusion_portfolio layout=\"grid\" picture_size=\"auto\" text_layout=\"no_text\" filters=\"no\" columns=\"3\" column_spacing=\"12\" cat_slug=\"gardens\" exclude_cats=\"\" number_posts=\"9\" offset=\"\" excerpt_length=\"35\" strip_html=\"yes\" carousel_layout=\"title_on_rollover\" scroll_items=\"\" autoplay=\"no\" show_nav=\"yes\" mouse_scroll=\"no\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\" /][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container background_color=\"#ffffff\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"65px\" padding_bottom=\"65px\" padding_left=\"\" padding_right=\"\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][fusion_builder_row][fusion_builder_column type=\"1_1\" layout=\"1_1\" background_position=\"left top\" background_color=\"\" border_size=\"\" border_color=\"\" border_style=\"solid\" spacing=\"yes\" background_image=\"\" background_repeat=\"no-repeat\" padding_top=\"\" padding_right=\"\" padding_bottom=\"\" padding_left=\"\" margin_top=\"0px\" margin_bottom=\"0px\" class=\"\" id=\"\" animation_type=\"\" animation_speed=\"0.3\" animation_direction=\"left\" hide_on_mobile=\"no\" center_content=\"no\" min_height=\"none\" last=\"no\" hover_type=\"none\" link=\"\" border_position=\"all\"][fusion_button link=\"https://msla.co.za/lodge/reservations/\" color=\"default\" size=\"xlarge\" stretch=\"default\" type=\"3d\" shape=\"round\" target=\"_self\" title=\"\" button_gradient_top_color=\"#f0f0ed\" button_gradient_bottom_color=\"#f0f0ed\" button_gradient_top_color_hover=\"#6666a4\" button_gradient_bottom_color_hover=\"#6666a4\" accent_color=\"#ffffff\" accent_hover_color=\"#ffffff\" bevel_color=\"\" border_width=\"0px\" icon=\"\" icon_position=\"left\" icon_divider=\"no\" modal=\"\" animation_type=\"0\" animation_direction=\"left\" animation_speed=\"1\" animation_offset=\"\" alignment=\"center\" class=\"\" id=\"\"]Make A Reservation Enquiry[/fusion_button][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container]', 'Home', '', 'inherit', 'closed', 'closed', '', '7-revision-v1', '', '', '2019-11-13 16:01:52', '2019-11-13 14:01:52', '', 7, 'https://msla.co.za/lodge/7-revision-v1/', 0, 'revision', '', 0);
INSERT INTO `wp_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(1384, 1, '2019-11-13 16:02:32', '2019-11-13 14:02:32', '[fusion_builder_container background_color=\"#f0f0ed\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"20\" padding_bottom=\"20\" padding_left=\"\" padding_right=\"\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][fusion_builder_row][fusion_builder_column type=\"1_2\" layout=\"1_2\" last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"\" padding_right=\"\" padding_bottom=\"\" padding_left=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\" min_height=\"\"][fusion_separator style_type=\"single solid\" top_margin=\"0\" bottom_margin=\"30\" sep_color=\"#000000\" border_size=\"\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"170px\" alignment=\"center\" class=\"separator-left\" id=\"\" /][fusion_text]\r\n<h1 style=\"text-align: center;\">No Fancy Star Grading\r\nNo Room Service\r\nNo Bed Turn-downs\r\nNo Rose Petals in the Bath water</h1>\r\n<h1 style=\"text-align: center;\">... just old fashioned homely comforts</h1>\r\n[/fusion_text][/fusion_builder_column][fusion_builder_column type=\"1_2\" layout=\"1_2\" last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"\" padding_right=\"\" padding_bottom=\"\" padding_left=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\" min_height=\"\"][fusion_text]\r\n<h1 style=\"text-align: justify;\">5 BEDROOM FAMILY LODGE</h1>\r\n<h3 style=\"text-align: justify;\">We are a four season lodge, because there’s always something to celebrate… We offer comfort, relaxation and privacy right in the heart of 1000 Hills. The Forest, the Gardens, the Atmosphere all speak to  Rest  &amp; Relaxation.</h3>\r\n[/fusion_text][fusion_separator style_type=\"single solid\" top_margin=\"0\" bottom_margin=\"30\" sep_color=\"#000000\" border_size=\"\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"170px\" alignment=\"left\" class=\"separator-left\" id=\"\" /][fusion_title size=\"1\" content_align=\"right\" style_type=\"default\" sep_color=\"\" margin_top=\"\" margin_bottom=\"\" class=\"\" id=\"\"]\r\n<h1 style=\"text-align: center;\">Current Offers!</h1>\r\n[/fusion_title][fusion_checklist icon=\"fa-umbrella-beach fas\" iconcolor=\"#8bc34a\" circle=\"yes\" circlecolor=\"\" size=\"18px\" divider=\"\" divider_color=\"\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" class=\"\" id=\"\"][fusion_li_item icon=\"\"]\r\n<h3>Book on-line - get 15% OFF your <a href=\"http://msla.co.za/lodge/reservations/\"> Accommodation</a> or...</h3>\r\n[/fusion_li_item][fusion_li_item icon=\"fa-umbrella-beach fas\"]\r\n<h3><a href=\"http://msla.co.za/lodge/reservations/\">Stay 3 days or more</a> - get 25% OFF your Accommodation</h3>\r\n[/fusion_li_item][/fusion_checklist][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container background_color=\"#f0f0ed\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"20\" padding_bottom=\"20\" padding_left=\"\" padding_right=\"\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][fusion_builder_row][fusion_builder_column type=\"1_2\" layout=\"1_2\" last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"\" padding_right=\"\" padding_bottom=\"\" padding_left=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\" min_height=\"\"][fusion_text]\r\n<h3 style=\"text-align: justify;\">Set in the rolling peaks and valleys of a thousand hills surrounded by a canopy of indigenous trees, you will find that horses still have right of way, we certainly offer the best of both worlds, farm and charm coupled with modern amenities that will have you feeling relaxed and rejuvenated.</h3>\r\n<h3 style=\"text-align: justify;\">We know that sometimes you are searching for a romantic getaway or maybe a few days away with old friends. Other times you are searching for a place to host a weekend, family reunion or a business retreat. In addition to nightly room rentals, our lodge is also available for meetings, retreats  and makes the perfect place for a wedding party to stay together and get ready for the big day. Regardless, with our five comfortable and cozy guest bedrooms, multiple garden spaces and hideaways, and a  large private deck  where you can take a nap or read a book we definitely have the room for you!</h3>\r\n<h3 style=\"text-align: justify;\">Evenings are quiet and peaceful taking you far away from the business of city life. This is a unique and memorable country experience. We look forward to having you as a guest!</h3>\r\n[/fusion_text][/fusion_builder_column][fusion_builder_column type=\"1_2\" layout=\"1_2\" last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"\" padding_right=\"\" padding_bottom=\"\" padding_left=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\" min_height=\"\"][fusion_text]\r\n<h3 style=\"text-align: justify;\">Our lodge has been in our family for years and has recently been beautifully renovated. Five rooms all with en-suite showers lead off your own large central lounge, featuring a 36 foot high vaulted ceiling, offering spacious living, dining, and a bar/conversational lounge area which includes a fitted kitchenette, all adding to a sense of homely comfort. Sumptuous meals can be provided on request and served on the bottom deck at the swimming pool.</h3>\r\n<h3 style=\"text-align: justify;\">Be lulled to sleep by the sound of the waterfall and tinkling stream just outside your window, waking from a peaceful night\'s sleep in a pillow-top bed dressed in luxurious linens to coddle you in ultimate comfort.</h3>\r\n<h3 style=\"text-align: justify;\">Our property boasts many different species of birds and animals. We have a resident otter, a family of wild bush pigs,  a family of rock rabbits, porcupine, little blue duikers, a variety of different frogs and an abundance of bird life, including the occasional snakes that pass through!</h3>\r\n[/fusion_text][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container background_color=\"#f0f0ed\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"20\" padding_bottom=\"20\" padding_left=\"\" padding_right=\"\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][fusion_builder_row][fusion_builder_column type=\"1_1\" layout=\"1_1\" background_position=\"left top\" background_color=\"\" border_size=\"\" border_color=\"\" border_style=\"solid\" spacing=\"yes\" background_image=\"\" background_repeat=\"no-repeat\" padding_top=\"\" padding_right=\"\" padding_bottom=\"\" padding_left=\"\" margin_top=\"0px\" margin_bottom=\"0px\" class=\"\" id=\"\" animation_type=\"\" animation_speed=\"0.3\" animation_direction=\"left\" hide_on_mobile=\"no\" center_content=\"no\" min_height=\"none\" last=\"no\" hover_type=\"none\" link=\"\" border_position=\"all\"][fusion_text]\r\n<h1 style=\"text-align: center;\">Gallery</h1>\r\n[/fusion_text][fusion_separator style_type=\"single solid\" top_margin=\"\" bottom_margin=\"40\" sep_color=\"#000000\" border_size=\"\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"170px\" alignment=\"\" class=\"\" id=\"\" /][/fusion_builder_column][fusion_builder_column type=\"1_6\" layout=\"1_6\" last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding_top=\"\" padding_right=\"\" padding_bottom=\"\" padding_left=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\" min_height=\"\"][/fusion_builder_column][fusion_builder_column type=\"2_3\" layout=\"2_3\" last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding_top=\"\" padding_right=\"\" padding_bottom=\"\" padding_left=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\" min_height=\"\"][fusion_text]\r\n<h3 style=\"text-align: justify;\">The Lodge is open, spacious, comfortable and homely. During hot summer days, sit and bask in the sun on the deck  with one of our  picnic specials. In winter, snuggle up with a good book or challenge one another to a friendly board game in the glassed nook area .</h3>\r\n[/fusion_text][/fusion_builder_column][fusion_builder_column type=\"1_6\" layout=\"1_6\" last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding_top=\"\" padding_right=\"\" padding_bottom=\"\" padding_left=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\" min_height=\"\"][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container background_color=\"#f0f0ed\" background_image=\"http://localhost/assagaylodge/wp-content/uploads/2015/01/Wood_Texture.jpg\" background_parallax=\"fixed\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"30\" padding_bottom=\"10\" padding_left=\"0\" padding_right=\"0\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][fusion_builder_row][fusion_builder_column type=\"1_1\" layout=\"1_1\" background_position=\"left top\" background_color=\"\" border_size=\"\" border_color=\"\" border_style=\"solid\" spacing=\"yes\" background_image=\"\" background_repeat=\"no-repeat\" padding_top=\"\" padding_right=\"\" padding_bottom=\"\" padding_left=\"\" margin_top=\"0px\" margin_bottom=\"0px\" class=\"\" id=\"\" animation_type=\"\" animation_speed=\"0.3\" animation_direction=\"left\" hide_on_mobile=\"no\" center_content=\"no\" min_height=\"none\" last=\"no\" hover_type=\"none\" link=\"\" border_position=\"all\"][fusion_portfolio layout=\"grid\" picture_size=\"auto\" text_layout=\"no_text\" filters=\"no\" columns=\"3\" column_spacing=\"12\" cat_slug=\"the-lodge\" exclude_cats=\"\" number_posts=\"9\" offset=\"\" excerpt_length=\"35\" strip_html=\"yes\" carousel_layout=\"title_on_rollover\" scroll_items=\"\" autoplay=\"no\" show_nav=\"yes\" mouse_scroll=\"no\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\" /][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container background_color=\"#f0f0ed\" background_image=\"\" background_parallax=\"fixed\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"20\" padding_bottom=\"20\" padding_left=\"\" padding_right=\"\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][fusion_builder_row][fusion_builder_column type=\"1_1\" layout=\"1_1\" background_position=\"left top\" background_color=\"\" border_size=\"\" border_color=\"\" border_style=\"solid\" spacing=\"yes\" background_image=\"\" background_repeat=\"no-repeat\" padding_top=\"\" padding_right=\"\" padding_bottom=\"\" padding_left=\"\" margin_top=\"0px\" margin_bottom=\"0px\" class=\"\" id=\"\" animation_type=\"\" animation_speed=\"0.3\" animation_direction=\"left\" hide_on_mobile=\"no\" center_content=\"no\" min_height=\"none\" last=\"no\" hover_type=\"none\" link=\"\" border_position=\"all\"][fusion_text]\r\n<h1 style=\"text-align: center;\">BEDROOMS</h1>\r\n[/fusion_text][fusion_separator style_type=\"single solid\" top_margin=\"\" bottom_margin=\"20\" sep_color=\"#000000\" border_size=\"\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"170px\" alignment=\"\" class=\"\" id=\"\" /][/fusion_builder_column][fusion_builder_column type=\"1_6\" layout=\"1_6\" last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding_top=\"\" padding_right=\"\" padding_bottom=\"\" padding_left=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\" min_height=\"\"][/fusion_builder_column][fusion_builder_column type=\"2_3\" layout=\"2_3\" last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding_top=\"\" padding_right=\"\" padding_bottom=\"\" padding_left=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\" min_height=\"\"][fusion_text]\r\n<h3 style=\"text-align: justify;\">When it comes to our bedrooms we’re proud to say we offer something a little more special. One of five  lovingly and tastefully decorated guest rooms. Soft gray decor soothes the senses providing a peaceful, blissfully comfortable rest from your travels and hectic lives.</h3>\r\n<h3 style=\"text-align: justify;\">Our  bedrooms are spacious, clean, comfortable all en-suite, equipped with either king size or queen size beds. Each room sleeps two guests. The rooms have high ceilings, wall heaters &amp; ceiling fans. Beds all have electric blankets in Winter, 100% cotton percale sheets and thick hyper allergenic microfiber duvets and pillows. All guest rooms are cleaned with organic and green products. Amenities include hairdryers in each room. Three rooms feature King-sized beds  of which two can be  split into two single beds. Two  rooms can therefore be changed into a twin room upon request. Two rooms feature a Queen-sized double bed. These beds cannot be split into twin beds.</h3>\r\n[/fusion_text][/fusion_builder_column][fusion_builder_column type=\"1_6\" layout=\"1_6\" last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding_top=\"\" padding_right=\"\" padding_bottom=\"\" padding_left=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\" min_height=\"\"][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container background_color=\"\" background_image=\"http://localhost/assagaylodge/wp-content/uploads/2015/01/DSC01516-1148-x-764.jpg\" background_parallax=\"fixed\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"center center\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"20\" padding_bottom=\"20\" padding_left=\"0\" padding_right=\"0\" hundred_percent=\"no\" equal_height_columns=\"yes\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][fusion_builder_row][fusion_builder_column type=\"1_1\" layout=\"1_1\" background_position=\"left top\" background_color=\"\" border_size=\"\" border_color=\"\" border_style=\"solid\" spacing=\"yes\" background_image=\"\" background_repeat=\"no-repeat\" padding_top=\"\" padding_right=\"\" padding_bottom=\"\" padding_left=\"\" margin_top=\"0px\" margin_bottom=\"0px\" class=\"\" id=\"\" animation_type=\"\" animation_speed=\"0.3\" animation_direction=\"left\" hide_on_mobile=\"no\" center_content=\"no\" min_height=\"none\" last=\"no\" hover_type=\"none\" link=\"\" border_position=\"all\"][fusion_portfolio layout=\"grid\" picture_size=\"auto\" text_layout=\"no_text\" filters=\"no\" columns=\"3\" column_spacing=\"12\" cat_slug=\"bedrooms\" exclude_cats=\"\" number_posts=\"6\" offset=\"\" excerpt_length=\"35\" strip_html=\"yes\" carousel_layout=\"title_on_rollover\" scroll_items=\"\" autoplay=\"no\" show_nav=\"yes\" mouse_scroll=\"no\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\" /][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container background_color=\"#f0f0ed\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"20\" padding_bottom=\"20\" padding_left=\"0\" padding_right=\"0\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][fusion_builder_row][fusion_builder_column type=\"1_1\" layout=\"1_1\" background_position=\"left top\" background_color=\"\" border_size=\"\" border_color=\"\" border_style=\"solid\" spacing=\"yes\" background_image=\"\" background_repeat=\"no-repeat\" padding_top=\"\" padding_right=\"\" padding_bottom=\"\" padding_left=\"\" margin_top=\"0px\" margin_bottom=\"0px\" class=\"\" id=\"\" animation_type=\"\" animation_speed=\"0.3\" animation_direction=\"left\" hide_on_mobile=\"no\" center_content=\"no\" min_height=\"none\" last=\"no\" hover_type=\"none\" link=\"\" border_position=\"all\"][fusion_text]\r\n<h1 style=\"text-align: center;\">GARDENS</h1>\r\n[/fusion_text][fusion_separator style_type=\"single solid\" top_margin=\"\" bottom_margin=\"20\" sep_color=\"#000000\" border_size=\"\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"170px\" alignment=\"\" class=\"\" id=\"\" /][/fusion_builder_column][fusion_builder_column type=\"1_6\" layout=\"1_6\" last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding_top=\"\" padding_right=\"\" padding_bottom=\"\" padding_left=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\" min_height=\"\"][/fusion_builder_column][fusion_builder_column type=\"2_3\" layout=\"2_3\" last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding_top=\"\" padding_right=\"\" padding_bottom=\"\" padding_left=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\" min_height=\"\"][fusion_text]\r\n<h3 style=\"text-align: justify;\">The garden is large and offers many secluded spots to lose yourself in a book with a glass of wine underneath the shade of a tree, listening to the sounds of the birds and smelling the beautiful flowers.</h3>\r\n[/fusion_text][/fusion_builder_column][fusion_builder_column type=\"1_6\" layout=\"1_6\" last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding_top=\"\" padding_right=\"\" padding_bottom=\"\" padding_left=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\" min_height=\"\"][/fusion_builder_column][fusion_builder_column type=\"1_1\" layout=\"1_1\" background_position=\"left top\" background_color=\"\" border_size=\"\" border_color=\"\" border_style=\"solid\" spacing=\"yes\" background_image=\"\" background_repeat=\"no-repeat\" padding_top=\"\" padding_right=\"\" padding_bottom=\"\" padding_left=\"\" margin_top=\"0px\" margin_bottom=\"0px\" class=\"\" id=\"\" animation_type=\"\" animation_speed=\"0.3\" animation_direction=\"left\" hide_on_mobile=\"no\" center_content=\"no\" min_height=\"none\" last=\"no\" hover_type=\"none\" link=\"\" border_position=\"all\"][fusion_portfolio layout=\"grid\" picture_size=\"auto\" text_layout=\"no_text\" filters=\"no\" columns=\"3\" column_spacing=\"12\" cat_slug=\"gardens\" exclude_cats=\"\" number_posts=\"9\" offset=\"\" excerpt_length=\"35\" strip_html=\"yes\" carousel_layout=\"title_on_rollover\" scroll_items=\"\" autoplay=\"no\" show_nav=\"yes\" mouse_scroll=\"no\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\" /][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container background_color=\"#ffffff\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"65px\" padding_bottom=\"65px\" padding_left=\"\" padding_right=\"\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][fusion_builder_row][fusion_builder_column type=\"1_1\" layout=\"1_1\" background_position=\"left top\" background_color=\"\" border_size=\"\" border_color=\"\" border_style=\"solid\" spacing=\"yes\" background_image=\"\" background_repeat=\"no-repeat\" padding_top=\"\" padding_right=\"\" padding_bottom=\"\" padding_left=\"\" margin_top=\"0px\" margin_bottom=\"0px\" class=\"\" id=\"\" animation_type=\"\" animation_speed=\"0.3\" animation_direction=\"left\" hide_on_mobile=\"no\" center_content=\"no\" min_height=\"none\" last=\"no\" hover_type=\"none\" link=\"\" border_position=\"all\"][fusion_button link=\"https://msla.co.za/lodge/reservations/\" color=\"default\" size=\"xlarge\" stretch=\"default\" type=\"3d\" shape=\"round\" target=\"_self\" title=\"\" button_gradient_top_color=\"#f0f0ed\" button_gradient_bottom_color=\"#f0f0ed\" button_gradient_top_color_hover=\"#6666a4\" button_gradient_bottom_color_hover=\"#6666a4\" accent_color=\"#ffffff\" accent_hover_color=\"#ffffff\" bevel_color=\"\" border_width=\"0px\" icon=\"\" icon_position=\"left\" icon_divider=\"no\" modal=\"\" animation_type=\"0\" animation_direction=\"left\" animation_speed=\"1\" animation_offset=\"\" alignment=\"center\" class=\"\" id=\"\"]Make A Reservation Enquiry[/fusion_button][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container]', 'Home', '', 'inherit', 'closed', 'closed', '', '7-revision-v1', '', '', '2019-11-13 16:02:32', '2019-11-13 14:02:32', '', 7, 'https://msla.co.za/lodge/7-revision-v1/', 0, 'revision', '', 0);
INSERT INTO `wp_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(1385, 1, '2019-11-13 18:03:09', '2019-11-13 16:03:09', '[fusion_builder_container background_color=\"#f0f0ed\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"20\" padding_bottom=\"20\" padding_left=\"\" padding_right=\"\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][fusion_builder_row][fusion_builder_column type=\"1_2\" layout=\"1_2\" last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"\" padding_right=\"\" padding_bottom=\"\" padding_left=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\" min_height=\"\"][fusion_separator style_type=\"single solid\" top_margin=\"0\" bottom_margin=\"30\" sep_color=\"#000000\" border_size=\"\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"170px\" alignment=\"center\" class=\"separator-left\" id=\"\" /][fusion_text]\r\n<h1 style=\"text-align: center;\">No Fancy Star Grading\r\nNo Room Service\r\nNo Bed Turn-downs\r\nNo Rose Petals in the Bath water</h1>\r\n<h1 style=\"text-align: center;\">... just old fashioned homely comforts</h1>\r\n[/fusion_text][/fusion_builder_column][fusion_builder_column type=\"1_2\" layout=\"1_2\" last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"\" padding_right=\"\" padding_bottom=\"\" padding_left=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\" min_height=\"\"][fusion_text]\r\n<h1 style=\"text-align: justify;\">5 BEDROOM FAMILY LODGE</h1>\r\n<h3 style=\"text-align: justify;\">We are a four season lodge, because there’s always something to celebrate… We offer comfort, relaxation and privacy right in the heart of 1000 Hills. The Forest, the Gardens, the Atmosphere all speak to  Rest  &amp; Relaxation.</h3>\r\n[/fusion_text][fusion_separator style_type=\"single solid\" top_margin=\"0\" bottom_margin=\"30\" sep_color=\"#000000\" border_size=\"\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"170px\" alignment=\"left\" class=\"separator-left\" id=\"\" /][fusion_title size=\"1\" content_align=\"right\" style_type=\"default\" sep_color=\"\" margin_top=\"\" margin_bottom=\"\" class=\"\" id=\"\"]\r\n<h1 style=\"text-align: center;\">Current Offers!</h1>\r\n[/fusion_title][fusion_checklist icon=\"fa-umbrella-beach fas\" iconcolor=\"#8bc34a\" circle=\"yes\" circlecolor=\"\" size=\"18px\" divider=\"\" divider_color=\"\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" class=\"\" id=\"\"][fusion_li_item icon=\"\"]\r\n<h3>Book on-line - get 15% OFF your <a href=\"http://msla.co.za/lodge/reservations/\"> Accommodation</a> or...</h3>\r\n[/fusion_li_item][fusion_li_item icon=\"fa-umbrella-beach fas\"]\r\n<h3><a href=\"http://msla.co.za/lodge/reservations/\">Stay 3 days or more</a> - get 25% OFF your Accommodation</h3>\r\n[/fusion_li_item][/fusion_checklist][fusion_checklist icon=\"fa-check-circle far\" iconcolor=\"\" circle=\"yes\" circlecolor=\"\" size=\"\" divider=\"\" divider_color=\"\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" class=\"\" id=\"\"][fusion_li_item icon=\"\"]\r\n<h3>Book on-line - get 15% OFF your <a href=\"http://msla.co.za/lodge/reservations/\"> Accommodation</a> or...</h3>\r\n[/fusion_li_item][fusion_li_item icon=\"\"]\r\n<h3><a href=\"http://msla.co.za/lodge/reservations/\">Stay 3 days or more</a> - get 25% OFF your Accommodation</h3>\r\n[/fusion_li_item][/fusion_checklist][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container background_color=\"#f0f0ed\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"20\" padding_bottom=\"20\" padding_left=\"\" padding_right=\"\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][fusion_builder_row][fusion_builder_column type=\"1_2\" layout=\"1_2\" last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"\" padding_right=\"\" padding_bottom=\"\" padding_left=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\" min_height=\"\"][fusion_text]\r\n<h3 style=\"text-align: justify;\">Set in the rolling peaks and valleys of a thousand hills surrounded by a canopy of indigenous trees, you will find that horses still have right of way, we certainly offer the best of both worlds, farm and charm coupled with modern amenities that will have you feeling relaxed and rejuvenated.</h3>\r\n<h3 style=\"text-align: justify;\">We know that sometimes you are searching for a romantic getaway or maybe a few days away with old friends. Other times you are searching for a place to host a weekend, family reunion or a business retreat. In addition to nightly room rentals, our lodge is also available for meetings, retreats  and makes the perfect place for a wedding party to stay together and get ready for the big day. Regardless, with our five comfortable and cozy guest bedrooms, multiple garden spaces and hideaways, and a  large private deck  where you can take a nap or read a book we definitely have the room for you!</h3>\r\n<h3 style=\"text-align: justify;\">Evenings are quiet and peaceful taking you far away from the business of city life. This is a unique and memorable country experience. We look forward to having you as a guest!</h3>\r\n[/fusion_text][/fusion_builder_column][fusion_builder_column type=\"1_2\" layout=\"1_2\" last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"\" padding_right=\"\" padding_bottom=\"\" padding_left=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\" min_height=\"\"][fusion_text]\r\n<h3 style=\"text-align: justify;\">Our lodge has been in our family for years and has recently been beautifully renovated. Five rooms all with en-suite showers lead off your own large central lounge, featuring a 36 foot high vaulted ceiling, offering spacious living, dining, and a bar/conversational lounge area which includes a fitted kitchenette, all adding to a sense of homely comfort. Sumptuous meals can be provided on request and served on the bottom deck at the swimming pool.</h3>\r\n<h3 style=\"text-align: justify;\">Be lulled to sleep by the sound of the waterfall and tinkling stream just outside your window, waking from a peaceful night\'s sleep in a pillow-top bed dressed in luxurious linens to coddle you in ultimate comfort.</h3>\r\n<h3 style=\"text-align: justify;\">Our property boasts many different species of birds and animals. We have a resident otter, a family of wild bush pigs,  a family of rock rabbits, porcupine, little blue duikers, a variety of different frogs and an abundance of bird life, including the occasional snakes that pass through!</h3>\r\n[/fusion_text][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container background_color=\"#f0f0ed\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"20\" padding_bottom=\"20\" padding_left=\"\" padding_right=\"\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][fusion_builder_row][fusion_builder_column type=\"1_1\" layout=\"1_1\" background_position=\"left top\" background_color=\"\" border_size=\"\" border_color=\"\" border_style=\"solid\" spacing=\"yes\" background_image=\"\" background_repeat=\"no-repeat\" padding_top=\"\" padding_right=\"\" padding_bottom=\"\" padding_left=\"\" margin_top=\"0px\" margin_bottom=\"0px\" class=\"\" id=\"\" animation_type=\"\" animation_speed=\"0.3\" animation_direction=\"left\" hide_on_mobile=\"no\" center_content=\"no\" min_height=\"none\" last=\"no\" hover_type=\"none\" link=\"\" border_position=\"all\"][fusion_text]\r\n<h1 style=\"text-align: center;\">Gallery</h1>\r\n[/fusion_text][fusion_separator style_type=\"single solid\" top_margin=\"\" bottom_margin=\"40\" sep_color=\"#000000\" border_size=\"\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"170px\" alignment=\"\" class=\"\" id=\"\" /][/fusion_builder_column][fusion_builder_column type=\"1_6\" layout=\"1_6\" last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding_top=\"\" padding_right=\"\" padding_bottom=\"\" padding_left=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\" min_height=\"\"][/fusion_builder_column][fusion_builder_column type=\"2_3\" layout=\"2_3\" last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding_top=\"\" padding_right=\"\" padding_bottom=\"\" padding_left=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\" min_height=\"\"][fusion_text]\r\n<h3 style=\"text-align: justify;\">The Lodge is open, spacious, comfortable and homely. During hot summer days, sit and bask in the sun on the deck  with one of our  picnic specials. In winter, snuggle up with a good book or challenge one another to a friendly board game in the glassed nook area .</h3>\r\n[/fusion_text][/fusion_builder_column][fusion_builder_column type=\"1_6\" layout=\"1_6\" last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding_top=\"\" padding_right=\"\" padding_bottom=\"\" padding_left=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\" min_height=\"\"][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container background_color=\"#f0f0ed\" background_image=\"http://localhost/assagaylodge/wp-content/uploads/2015/01/Wood_Texture.jpg\" background_parallax=\"fixed\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"30\" padding_bottom=\"10\" padding_left=\"0\" padding_right=\"0\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][fusion_builder_row][fusion_builder_column type=\"1_1\" layout=\"1_1\" background_position=\"left top\" background_color=\"\" border_size=\"\" border_color=\"\" border_style=\"solid\" spacing=\"yes\" background_image=\"\" background_repeat=\"no-repeat\" padding_top=\"\" padding_right=\"\" padding_bottom=\"\" padding_left=\"\" margin_top=\"0px\" margin_bottom=\"0px\" class=\"\" id=\"\" animation_type=\"\" animation_speed=\"0.3\" animation_direction=\"left\" hide_on_mobile=\"no\" center_content=\"no\" min_height=\"none\" last=\"no\" hover_type=\"none\" link=\"\" border_position=\"all\"][fusion_portfolio layout=\"grid\" picture_size=\"auto\" text_layout=\"no_text\" filters=\"no\" columns=\"3\" column_spacing=\"12\" cat_slug=\"the-lodge\" exclude_cats=\"\" number_posts=\"9\" offset=\"\" excerpt_length=\"35\" strip_html=\"yes\" carousel_layout=\"title_on_rollover\" scroll_items=\"\" autoplay=\"no\" show_nav=\"yes\" mouse_scroll=\"no\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\" /][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container background_color=\"#f0f0ed\" background_image=\"\" background_parallax=\"fixed\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"20\" padding_bottom=\"20\" padding_left=\"\" padding_right=\"\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][fusion_builder_row][fusion_builder_column type=\"1_1\" layout=\"1_1\" background_position=\"left top\" background_color=\"\" border_size=\"\" border_color=\"\" border_style=\"solid\" spacing=\"yes\" background_image=\"\" background_repeat=\"no-repeat\" padding_top=\"\" padding_right=\"\" padding_bottom=\"\" padding_left=\"\" margin_top=\"0px\" margin_bottom=\"0px\" class=\"\" id=\"\" animation_type=\"\" animation_speed=\"0.3\" animation_direction=\"left\" hide_on_mobile=\"no\" center_content=\"no\" min_height=\"none\" last=\"no\" hover_type=\"none\" link=\"\" border_position=\"all\"][fusion_text]\r\n<h1 style=\"text-align: center;\">BEDROOMS</h1>\r\n[/fusion_text][fusion_separator style_type=\"single solid\" top_margin=\"\" bottom_margin=\"20\" sep_color=\"#000000\" border_size=\"\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"170px\" alignment=\"\" class=\"\" id=\"\" /][/fusion_builder_column][fusion_builder_column type=\"1_6\" layout=\"1_6\" last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding_top=\"\" padding_right=\"\" padding_bottom=\"\" padding_left=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\" min_height=\"\"][/fusion_builder_column][fusion_builder_column type=\"2_3\" layout=\"2_3\" last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding_top=\"\" padding_right=\"\" padding_bottom=\"\" padding_left=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\" min_height=\"\"][fusion_text]\r\n<h3 style=\"text-align: justify;\">When it comes to our bedrooms we’re proud to say we offer something a little more special. One of five  lovingly and tastefully decorated guest rooms. Soft gray decor soothes the senses providing a peaceful, blissfully comfortable rest from your travels and hectic lives.</h3>\r\n<h3 style=\"text-align: justify;\">Our  bedrooms are spacious, clean, comfortable all en-suite, equipped with either king size or queen size beds. Each room sleeps two guests. The rooms have high ceilings, wall heaters &amp; ceiling fans. Beds all have electric blankets in Winter, 100% cotton percale sheets and thick hyper allergenic microfiber duvets and pillows. All guest rooms are cleaned with organic and green products. Amenities include hairdryers in each room. Three rooms feature King-sized beds  of which two can be  split into two single beds. Two  rooms can therefore be changed into a twin room upon request. Two rooms feature a Queen-sized double bed. These beds cannot be split into twin beds.</h3>\r\n[/fusion_text][/fusion_builder_column][fusion_builder_column type=\"1_6\" layout=\"1_6\" last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding_top=\"\" padding_right=\"\" padding_bottom=\"\" padding_left=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\" min_height=\"\"][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container background_color=\"\" background_image=\"http://localhost/assagaylodge/wp-content/uploads/2015/01/DSC01516-1148-x-764.jpg\" background_parallax=\"fixed\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"center center\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"20\" padding_bottom=\"20\" padding_left=\"0\" padding_right=\"0\" hundred_percent=\"no\" equal_height_columns=\"yes\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][fusion_builder_row][fusion_builder_column type=\"1_1\" layout=\"1_1\" background_position=\"left top\" background_color=\"\" border_size=\"\" border_color=\"\" border_style=\"solid\" spacing=\"yes\" background_image=\"\" background_repeat=\"no-repeat\" padding_top=\"\" padding_right=\"\" padding_bottom=\"\" padding_left=\"\" margin_top=\"0px\" margin_bottom=\"0px\" class=\"\" id=\"\" animation_type=\"\" animation_speed=\"0.3\" animation_direction=\"left\" hide_on_mobile=\"no\" center_content=\"no\" min_height=\"none\" last=\"no\" hover_type=\"none\" link=\"\" border_position=\"all\"][fusion_portfolio layout=\"grid\" picture_size=\"auto\" text_layout=\"no_text\" filters=\"no\" columns=\"3\" column_spacing=\"12\" cat_slug=\"bedrooms\" exclude_cats=\"\" number_posts=\"6\" offset=\"\" excerpt_length=\"35\" strip_html=\"yes\" carousel_layout=\"title_on_rollover\" scroll_items=\"\" autoplay=\"no\" show_nav=\"yes\" mouse_scroll=\"no\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\" /][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container background_color=\"#f0f0ed\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"20\" padding_bottom=\"20\" padding_left=\"0\" padding_right=\"0\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][fusion_builder_row][fusion_builder_column type=\"1_1\" layout=\"1_1\" background_position=\"left top\" background_color=\"\" border_size=\"\" border_color=\"\" border_style=\"solid\" spacing=\"yes\" background_image=\"\" background_repeat=\"no-repeat\" padding_top=\"\" padding_right=\"\" padding_bottom=\"\" padding_left=\"\" margin_top=\"0px\" margin_bottom=\"0px\" class=\"\" id=\"\" animation_type=\"\" animation_speed=\"0.3\" animation_direction=\"left\" hide_on_mobile=\"no\" center_content=\"no\" min_height=\"none\" last=\"no\" hover_type=\"none\" link=\"\" border_position=\"all\"][fusion_text]\r\n<h1 style=\"text-align: center;\">GARDENS</h1>\r\n[/fusion_text][fusion_separator style_type=\"single solid\" top_margin=\"\" bottom_margin=\"20\" sep_color=\"#000000\" border_size=\"\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"170px\" alignment=\"\" class=\"\" id=\"\" /][/fusion_builder_column][fusion_builder_column type=\"1_6\" layout=\"1_6\" last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding_top=\"\" padding_right=\"\" padding_bottom=\"\" padding_left=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\" min_height=\"\"][/fusion_builder_column][fusion_builder_column type=\"2_3\" layout=\"2_3\" last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding_top=\"\" padding_right=\"\" padding_bottom=\"\" padding_left=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\" min_height=\"\"][fusion_text]\r\n<h3 style=\"text-align: justify;\">The garden is large and offers many secluded spots to lose yourself in a book with a glass of wine underneath the shade of a tree, listening to the sounds of the birds and smelling the beautiful flowers.</h3>\r\n[/fusion_text][/fusion_builder_column][fusion_builder_column type=\"1_6\" layout=\"1_6\" last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding_top=\"\" padding_right=\"\" padding_bottom=\"\" padding_left=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\" min_height=\"\"][/fusion_builder_column][fusion_builder_column type=\"1_1\" layout=\"1_1\" background_position=\"left top\" background_color=\"\" border_size=\"\" border_color=\"\" border_style=\"solid\" spacing=\"yes\" background_image=\"\" background_repeat=\"no-repeat\" padding_top=\"\" padding_right=\"\" padding_bottom=\"\" padding_left=\"\" margin_top=\"0px\" margin_bottom=\"0px\" class=\"\" id=\"\" animation_type=\"\" animation_speed=\"0.3\" animation_direction=\"left\" hide_on_mobile=\"no\" center_content=\"no\" min_height=\"none\" last=\"no\" hover_type=\"none\" link=\"\" border_position=\"all\"][fusion_portfolio layout=\"grid\" picture_size=\"auto\" text_layout=\"no_text\" filters=\"no\" columns=\"3\" column_spacing=\"12\" cat_slug=\"gardens\" exclude_cats=\"\" number_posts=\"9\" offset=\"\" excerpt_length=\"35\" strip_html=\"yes\" carousel_layout=\"title_on_rollover\" scroll_items=\"\" autoplay=\"no\" show_nav=\"yes\" mouse_scroll=\"no\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\" /][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container background_color=\"#ffffff\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"65px\" padding_bottom=\"65px\" padding_left=\"\" padding_right=\"\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][fusion_builder_row][fusion_builder_column type=\"1_1\" layout=\"1_1\" background_position=\"left top\" background_color=\"\" border_size=\"\" border_color=\"\" border_style=\"solid\" spacing=\"yes\" background_image=\"\" background_repeat=\"no-repeat\" padding_top=\"\" padding_right=\"\" padding_bottom=\"\" padding_left=\"\" margin_top=\"0px\" margin_bottom=\"0px\" class=\"\" id=\"\" animation_type=\"\" animation_speed=\"0.3\" animation_direction=\"left\" hide_on_mobile=\"no\" center_content=\"no\" min_height=\"none\" last=\"no\" hover_type=\"none\" link=\"\" border_position=\"all\"][fusion_button link=\"https://msla.co.za/lodge/reservations/\" color=\"default\" size=\"xlarge\" stretch=\"default\" type=\"3d\" shape=\"round\" target=\"_self\" title=\"\" button_gradient_top_color=\"#f0f0ed\" button_gradient_bottom_color=\"#f0f0ed\" button_gradient_top_color_hover=\"#6666a4\" button_gradient_bottom_color_hover=\"#6666a4\" accent_color=\"#ffffff\" accent_hover_color=\"#ffffff\" bevel_color=\"\" border_width=\"0px\" icon=\"\" icon_position=\"left\" icon_divider=\"no\" modal=\"\" animation_type=\"0\" animation_direction=\"left\" animation_speed=\"1\" animation_offset=\"\" alignment=\"center\" class=\"\" id=\"\"]Make A Reservation Enquiry[/fusion_button][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container]', 'Home', '', 'inherit', 'closed', 'closed', '', '7-revision-v1', '', '', '2019-11-13 18:03:09', '2019-11-13 16:03:09', '', 7, 'https://msla.co.za/lodge/7-revision-v1/', 0, 'revision', '', 0);
INSERT INTO `wp_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(1386, 1, '2019-11-13 18:04:00', '2019-11-13 16:04:00', '[fusion_builder_container background_color=\"#f0f0ed\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"20\" padding_bottom=\"20\" padding_left=\"\" padding_right=\"\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][fusion_builder_row][fusion_builder_column type=\"1_2\" layout=\"1_2\" last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"\" padding_right=\"\" padding_bottom=\"\" padding_left=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\" min_height=\"\"][fusion_separator style_type=\"single solid\" top_margin=\"0\" bottom_margin=\"30\" sep_color=\"#000000\" border_size=\"\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"170px\" alignment=\"center\" class=\"separator-left\" id=\"\" /][fusion_text]\r\n<h1 style=\"text-align: center;\">No Fancy Star Grading\r\nNo Room Service\r\nNo Bed Turn-downs\r\nNo Rose Petals in the Bath water</h1>\r\n<h1 style=\"text-align: center;\">... just old fashioned homely comforts</h1>\r\n[/fusion_text][/fusion_builder_column][fusion_builder_column type=\"1_2\" layout=\"1_2\" last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"\" padding_right=\"\" padding_bottom=\"\" padding_left=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\" min_height=\"\"][fusion_text]\r\n<h1 style=\"text-align: justify;\">5 BEDROOM FAMILY LODGE</h1>\r\n<h3 style=\"text-align: justify;\">We are a four season lodge, because there’s always something to celebrate… We offer comfort, relaxation and privacy right in the heart of 1000 Hills. The Forest, the Gardens, the Atmosphere all speak to  Rest  &amp; Relaxation.</h3>\r\n[/fusion_text][fusion_separator style_type=\"single solid\" top_margin=\"0\" bottom_margin=\"30\" sep_color=\"#000000\" border_size=\"\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"170px\" alignment=\"left\" class=\"separator-left\" id=\"\" /][fusion_title size=\"1\" content_align=\"right\" style_type=\"default\" sep_color=\"\" margin_top=\"\" margin_bottom=\"\" class=\"\" id=\"\"]\r\n<h1 style=\"text-align: center;\">Current Offers!</h1>\r\n[/fusion_title][fusion_checklist icon=\"fa-umbrella-beach fas\" iconcolor=\"#8bc34a\" circle=\"no\" circlecolor=\"\" size=\"18px\" divider=\"\" divider_color=\"\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" class=\"\" id=\"\"][fusion_li_item icon=\"\"]\r\n<h3>Book on-line - get 15% OFF your <a href=\"http://msla.co.za/lodge/reservations/\"> Accommodation</a> or...</h3>\r\n[/fusion_li_item][fusion_li_item icon=\"fa-umbrella-beach fas\"]\r\n<h3><a href=\"http://msla.co.za/lodge/reservations/\">Stay 3 days or more</a> - get 25% OFF your Accommodation</h3>\r\n[/fusion_li_item][/fusion_checklist][fusion_checklist icon=\"fa-check-circle far\" iconcolor=\"\" circle=\"yes\" circlecolor=\"\" size=\"\" divider=\"\" divider_color=\"\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" class=\"\" id=\"\"][fusion_li_item icon=\"\"]\r\n<h3>Book on-line - get 15% OFF your <a href=\"http://msla.co.za/lodge/reservations/\"> Accommodation</a> or...</h3>\r\n[/fusion_li_item][fusion_li_item icon=\"\"]\r\n<h3><a href=\"http://msla.co.za/lodge/reservations/\">Stay 3 days or more</a> - get 25% OFF your Accommodation</h3>\r\n[/fusion_li_item][/fusion_checklist][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container background_color=\"#f0f0ed\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"20\" padding_bottom=\"20\" padding_left=\"\" padding_right=\"\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][fusion_builder_row][fusion_builder_column type=\"1_2\" layout=\"1_2\" last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"\" padding_right=\"\" padding_bottom=\"\" padding_left=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\" min_height=\"\"][fusion_text]\r\n<h3 style=\"text-align: justify;\">Set in the rolling peaks and valleys of a thousand hills surrounded by a canopy of indigenous trees, you will find that horses still have right of way, we certainly offer the best of both worlds, farm and charm coupled with modern amenities that will have you feeling relaxed and rejuvenated.</h3>\r\n<h3 style=\"text-align: justify;\">We know that sometimes you are searching for a romantic getaway or maybe a few days away with old friends. Other times you are searching for a place to host a weekend, family reunion or a business retreat. In addition to nightly room rentals, our lodge is also available for meetings, retreats  and makes the perfect place for a wedding party to stay together and get ready for the big day. Regardless, with our five comfortable and cozy guest bedrooms, multiple garden spaces and hideaways, and a  large private deck  where you can take a nap or read a book we definitely have the room for you!</h3>\r\n<h3 style=\"text-align: justify;\">Evenings are quiet and peaceful taking you far away from the business of city life. This is a unique and memorable country experience. We look forward to having you as a guest!</h3>\r\n[/fusion_text][/fusion_builder_column][fusion_builder_column type=\"1_2\" layout=\"1_2\" last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"\" padding_right=\"\" padding_bottom=\"\" padding_left=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\" min_height=\"\"][fusion_text]\r\n<h3 style=\"text-align: justify;\">Our lodge has been in our family for years and has recently been beautifully renovated. Five rooms all with en-suite showers lead off your own large central lounge, featuring a 36 foot high vaulted ceiling, offering spacious living, dining, and a bar/conversational lounge area which includes a fitted kitchenette, all adding to a sense of homely comfort. Sumptuous meals can be provided on request and served on the bottom deck at the swimming pool.</h3>\r\n<h3 style=\"text-align: justify;\">Be lulled to sleep by the sound of the waterfall and tinkling stream just outside your window, waking from a peaceful night\'s sleep in a pillow-top bed dressed in luxurious linens to coddle you in ultimate comfort.</h3>\r\n<h3 style=\"text-align: justify;\">Our property boasts many different species of birds and animals. We have a resident otter, a family of wild bush pigs,  a family of rock rabbits, porcupine, little blue duikers, a variety of different frogs and an abundance of bird life, including the occasional snakes that pass through!</h3>\r\n[/fusion_text][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container background_color=\"#f0f0ed\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"20\" padding_bottom=\"20\" padding_left=\"\" padding_right=\"\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][fusion_builder_row][fusion_builder_column type=\"1_1\" layout=\"1_1\" background_position=\"left top\" background_color=\"\" border_size=\"\" border_color=\"\" border_style=\"solid\" spacing=\"yes\" background_image=\"\" background_repeat=\"no-repeat\" padding_top=\"\" padding_right=\"\" padding_bottom=\"\" padding_left=\"\" margin_top=\"0px\" margin_bottom=\"0px\" class=\"\" id=\"\" animation_type=\"\" animation_speed=\"0.3\" animation_direction=\"left\" hide_on_mobile=\"no\" center_content=\"no\" min_height=\"none\" last=\"no\" hover_type=\"none\" link=\"\" border_position=\"all\"][fusion_text]\r\n<h1 style=\"text-align: center;\">Gallery</h1>\r\n[/fusion_text][fusion_separator style_type=\"single solid\" top_margin=\"\" bottom_margin=\"40\" sep_color=\"#000000\" border_size=\"\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"170px\" alignment=\"\" class=\"\" id=\"\" /][/fusion_builder_column][fusion_builder_column type=\"1_6\" layout=\"1_6\" last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding_top=\"\" padding_right=\"\" padding_bottom=\"\" padding_left=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\" min_height=\"\"][/fusion_builder_column][fusion_builder_column type=\"2_3\" layout=\"2_3\" last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding_top=\"\" padding_right=\"\" padding_bottom=\"\" padding_left=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\" min_height=\"\"][fusion_text]\r\n<h3 style=\"text-align: justify;\">The Lodge is open, spacious, comfortable and homely. During hot summer days, sit and bask in the sun on the deck  with one of our  picnic specials. In winter, snuggle up with a good book or challenge one another to a friendly board game in the glassed nook area .</h3>\r\n[/fusion_text][/fusion_builder_column][fusion_builder_column type=\"1_6\" layout=\"1_6\" last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding_top=\"\" padding_right=\"\" padding_bottom=\"\" padding_left=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\" min_height=\"\"][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container background_color=\"#f0f0ed\" background_image=\"http://localhost/assagaylodge/wp-content/uploads/2015/01/Wood_Texture.jpg\" background_parallax=\"fixed\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"30\" padding_bottom=\"10\" padding_left=\"0\" padding_right=\"0\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][fusion_builder_row][fusion_builder_column type=\"1_1\" layout=\"1_1\" background_position=\"left top\" background_color=\"\" border_size=\"\" border_color=\"\" border_style=\"solid\" spacing=\"yes\" background_image=\"\" background_repeat=\"no-repeat\" padding_top=\"\" padding_right=\"\" padding_bottom=\"\" padding_left=\"\" margin_top=\"0px\" margin_bottom=\"0px\" class=\"\" id=\"\" animation_type=\"\" animation_speed=\"0.3\" animation_direction=\"left\" hide_on_mobile=\"no\" center_content=\"no\" min_height=\"none\" last=\"no\" hover_type=\"none\" link=\"\" border_position=\"all\"][fusion_portfolio layout=\"grid\" picture_size=\"auto\" text_layout=\"no_text\" filters=\"no\" columns=\"3\" column_spacing=\"12\" cat_slug=\"the-lodge\" exclude_cats=\"\" number_posts=\"9\" offset=\"\" excerpt_length=\"35\" strip_html=\"yes\" carousel_layout=\"title_on_rollover\" scroll_items=\"\" autoplay=\"no\" show_nav=\"yes\" mouse_scroll=\"no\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\" /][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container background_color=\"#f0f0ed\" background_image=\"\" background_parallax=\"fixed\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"20\" padding_bottom=\"20\" padding_left=\"\" padding_right=\"\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][fusion_builder_row][fusion_builder_column type=\"1_1\" layout=\"1_1\" background_position=\"left top\" background_color=\"\" border_size=\"\" border_color=\"\" border_style=\"solid\" spacing=\"yes\" background_image=\"\" background_repeat=\"no-repeat\" padding_top=\"\" padding_right=\"\" padding_bottom=\"\" padding_left=\"\" margin_top=\"0px\" margin_bottom=\"0px\" class=\"\" id=\"\" animation_type=\"\" animation_speed=\"0.3\" animation_direction=\"left\" hide_on_mobile=\"no\" center_content=\"no\" min_height=\"none\" last=\"no\" hover_type=\"none\" link=\"\" border_position=\"all\"][fusion_text]\r\n<h1 style=\"text-align: center;\">BEDROOMS</h1>\r\n[/fusion_text][fusion_separator style_type=\"single solid\" top_margin=\"\" bottom_margin=\"20\" sep_color=\"#000000\" border_size=\"\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"170px\" alignment=\"\" class=\"\" id=\"\" /][/fusion_builder_column][fusion_builder_column type=\"1_6\" layout=\"1_6\" last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding_top=\"\" padding_right=\"\" padding_bottom=\"\" padding_left=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\" min_height=\"\"][/fusion_builder_column][fusion_builder_column type=\"2_3\" layout=\"2_3\" last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding_top=\"\" padding_right=\"\" padding_bottom=\"\" padding_left=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\" min_height=\"\"][fusion_text]\r\n<h3 style=\"text-align: justify;\">When it comes to our bedrooms we’re proud to say we offer something a little more special. One of five  lovingly and tastefully decorated guest rooms. Soft gray decor soothes the senses providing a peaceful, blissfully comfortable rest from your travels and hectic lives.</h3>\r\n<h3 style=\"text-align: justify;\">Our  bedrooms are spacious, clean, comfortable all en-suite, equipped with either king size or queen size beds. Each room sleeps two guests. The rooms have high ceilings, wall heaters &amp; ceiling fans. Beds all have electric blankets in Winter, 100% cotton percale sheets and thick hyper allergenic microfiber duvets and pillows. All guest rooms are cleaned with organic and green products. Amenities include hairdryers in each room. Three rooms feature King-sized beds  of which two can be  split into two single beds. Two  rooms can therefore be changed into a twin room upon request. Two rooms feature a Queen-sized double bed. These beds cannot be split into twin beds.</h3>\r\n[/fusion_text][/fusion_builder_column][fusion_builder_column type=\"1_6\" layout=\"1_6\" last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding_top=\"\" padding_right=\"\" padding_bottom=\"\" padding_left=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\" min_height=\"\"][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container background_color=\"\" background_image=\"http://localhost/assagaylodge/wp-content/uploads/2015/01/DSC01516-1148-x-764.jpg\" background_parallax=\"fixed\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"center center\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"20\" padding_bottom=\"20\" padding_left=\"0\" padding_right=\"0\" hundred_percent=\"no\" equal_height_columns=\"yes\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][fusion_builder_row][fusion_builder_column type=\"1_1\" layout=\"1_1\" background_position=\"left top\" background_color=\"\" border_size=\"\" border_color=\"\" border_style=\"solid\" spacing=\"yes\" background_image=\"\" background_repeat=\"no-repeat\" padding_top=\"\" padding_right=\"\" padding_bottom=\"\" padding_left=\"\" margin_top=\"0px\" margin_bottom=\"0px\" class=\"\" id=\"\" animation_type=\"\" animation_speed=\"0.3\" animation_direction=\"left\" hide_on_mobile=\"no\" center_content=\"no\" min_height=\"none\" last=\"no\" hover_type=\"none\" link=\"\" border_position=\"all\"][fusion_portfolio layout=\"grid\" picture_size=\"auto\" text_layout=\"no_text\" filters=\"no\" columns=\"3\" column_spacing=\"12\" cat_slug=\"bedrooms\" exclude_cats=\"\" number_posts=\"6\" offset=\"\" excerpt_length=\"35\" strip_html=\"yes\" carousel_layout=\"title_on_rollover\" scroll_items=\"\" autoplay=\"no\" show_nav=\"yes\" mouse_scroll=\"no\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\" /][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container background_color=\"#f0f0ed\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"20\" padding_bottom=\"20\" padding_left=\"0\" padding_right=\"0\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][fusion_builder_row][fusion_builder_column type=\"1_1\" layout=\"1_1\" background_position=\"left top\" background_color=\"\" border_size=\"\" border_color=\"\" border_style=\"solid\" spacing=\"yes\" background_image=\"\" background_repeat=\"no-repeat\" padding_top=\"\" padding_right=\"\" padding_bottom=\"\" padding_left=\"\" margin_top=\"0px\" margin_bottom=\"0px\" class=\"\" id=\"\" animation_type=\"\" animation_speed=\"0.3\" animation_direction=\"left\" hide_on_mobile=\"no\" center_content=\"no\" min_height=\"none\" last=\"no\" hover_type=\"none\" link=\"\" border_position=\"all\"][fusion_text]\r\n<h1 style=\"text-align: center;\">GARDENS</h1>\r\n[/fusion_text][fusion_separator style_type=\"single solid\" top_margin=\"\" bottom_margin=\"20\" sep_color=\"#000000\" border_size=\"\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"170px\" alignment=\"\" class=\"\" id=\"\" /][/fusion_builder_column][fusion_builder_column type=\"1_6\" layout=\"1_6\" last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding_top=\"\" padding_right=\"\" padding_bottom=\"\" padding_left=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\" min_height=\"\"][/fusion_builder_column][fusion_builder_column type=\"2_3\" layout=\"2_3\" last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding_top=\"\" padding_right=\"\" padding_bottom=\"\" padding_left=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\" min_height=\"\"][fusion_text]\r\n<h3 style=\"text-align: justify;\">The garden is large and offers many secluded spots to lose yourself in a book with a glass of wine underneath the shade of a tree, listening to the sounds of the birds and smelling the beautiful flowers.</h3>\r\n[/fusion_text][/fusion_builder_column][fusion_builder_column type=\"1_6\" layout=\"1_6\" last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding_top=\"\" padding_right=\"\" padding_bottom=\"\" padding_left=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\" min_height=\"\"][/fusion_builder_column][fusion_builder_column type=\"1_1\" layout=\"1_1\" background_position=\"left top\" background_color=\"\" border_size=\"\" border_color=\"\" border_style=\"solid\" spacing=\"yes\" background_image=\"\" background_repeat=\"no-repeat\" padding_top=\"\" padding_right=\"\" padding_bottom=\"\" padding_left=\"\" margin_top=\"0px\" margin_bottom=\"0px\" class=\"\" id=\"\" animation_type=\"\" animation_speed=\"0.3\" animation_direction=\"left\" hide_on_mobile=\"no\" center_content=\"no\" min_height=\"none\" last=\"no\" hover_type=\"none\" link=\"\" border_position=\"all\"][fusion_portfolio layout=\"grid\" picture_size=\"auto\" text_layout=\"no_text\" filters=\"no\" columns=\"3\" column_spacing=\"12\" cat_slug=\"gardens\" exclude_cats=\"\" number_posts=\"9\" offset=\"\" excerpt_length=\"35\" strip_html=\"yes\" carousel_layout=\"title_on_rollover\" scroll_items=\"\" autoplay=\"no\" show_nav=\"yes\" mouse_scroll=\"no\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\" /][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container background_color=\"#ffffff\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"65px\" padding_bottom=\"65px\" padding_left=\"\" padding_right=\"\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][fusion_builder_row][fusion_builder_column type=\"1_1\" layout=\"1_1\" background_position=\"left top\" background_color=\"\" border_size=\"\" border_color=\"\" border_style=\"solid\" spacing=\"yes\" background_image=\"\" background_repeat=\"no-repeat\" padding_top=\"\" padding_right=\"\" padding_bottom=\"\" padding_left=\"\" margin_top=\"0px\" margin_bottom=\"0px\" class=\"\" id=\"\" animation_type=\"\" animation_speed=\"0.3\" animation_direction=\"left\" hide_on_mobile=\"no\" center_content=\"no\" min_height=\"none\" last=\"no\" hover_type=\"none\" link=\"\" border_position=\"all\"][fusion_button link=\"https://msla.co.za/lodge/reservations/\" color=\"default\" size=\"xlarge\" stretch=\"default\" type=\"3d\" shape=\"round\" target=\"_self\" title=\"\" button_gradient_top_color=\"#f0f0ed\" button_gradient_bottom_color=\"#f0f0ed\" button_gradient_top_color_hover=\"#6666a4\" button_gradient_bottom_color_hover=\"#6666a4\" accent_color=\"#ffffff\" accent_hover_color=\"#ffffff\" bevel_color=\"\" border_width=\"0px\" icon=\"\" icon_position=\"left\" icon_divider=\"no\" modal=\"\" animation_type=\"0\" animation_direction=\"left\" animation_speed=\"1\" animation_offset=\"\" alignment=\"center\" class=\"\" id=\"\"]Make A Reservation Enquiry[/fusion_button][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container]', 'Home', '', 'inherit', 'closed', 'closed', '', '7-revision-v1', '', '', '2019-11-13 18:04:00', '2019-11-13 16:04:00', '', 7, 'https://msla.co.za/lodge/7-revision-v1/', 0, 'revision', '', 0);
INSERT INTO `wp_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(1387, 1, '2019-11-13 18:05:31', '2019-11-13 16:05:31', '[fusion_builder_container background_color=\"#f0f0ed\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"20\" padding_bottom=\"20\" padding_left=\"\" padding_right=\"\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][fusion_builder_row][fusion_builder_column type=\"1_2\" layout=\"1_2\" last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"\" padding_right=\"\" padding_bottom=\"\" padding_left=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\" min_height=\"\"][fusion_separator style_type=\"single solid\" top_margin=\"0\" bottom_margin=\"30\" sep_color=\"#000000\" border_size=\"\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"170px\" alignment=\"center\" class=\"separator-left\" id=\"\" /][fusion_text]\r\n<h1 style=\"text-align: center;\">No Fancy Star Grading\r\nNo Room Service\r\nNo Bed Turn-downs\r\nNo Rose Petals in the Bath water</h1>\r\n<h1 style=\"text-align: center;\">... just old fashioned homely comforts</h1>\r\n[/fusion_text][/fusion_builder_column][fusion_builder_column type=\"1_2\" layout=\"1_2\" last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"\" padding_right=\"\" padding_bottom=\"\" padding_left=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\" min_height=\"\"][fusion_text]\r\n<h1 style=\"text-align: justify;\">5 BEDROOM FAMILY LODGE</h1>\r\n<h3 style=\"text-align: justify;\">We are a four season lodge, because there’s always something to celebrate… We offer comfort, relaxation and privacy right in the heart of 1000 Hills. The Forest, the Gardens, the Atmosphere all speak to  Rest  &amp; Relaxation.</h3>\r\n[/fusion_text][fusion_separator style_type=\"single solid\" top_margin=\"0\" bottom_margin=\"30\" sep_color=\"#000000\" border_size=\"\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"170px\" alignment=\"left\" class=\"separator-left\" id=\"\" /][fusion_title size=\"1\" content_align=\"right\" style_type=\"default\" sep_color=\"\" margin_top=\"\" margin_bottom=\"\" class=\"\" id=\"\"]\r\n<h1 style=\"text-align: center;\">Current Offers!</h1>\r\n[/fusion_title][fusion_checklist icon=\"fa-umbrella-beach fas\" iconcolor=\"#8bc34a\" circle=\"no\" circlecolor=\"\" size=\"24px\" divider=\"\" divider_color=\"\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" class=\"\" id=\"\"][fusion_li_item icon=\"\"]\r\n<h3>Book on-line - get 15% OFF your <a href=\"http://msla.co.za/lodge/reservations/\"> Accommodation</a> or...</h3>\r\n[/fusion_li_item][fusion_li_item icon=\"fa-umbrella-beach fas\"]\r\n<h3><a href=\"http://msla.co.za/lodge/reservations/\">Stay 3 days or more</a> - get 25% OFF your Accommodation</h3>\r\n[/fusion_li_item][/fusion_checklist][fusion_checklist icon=\"fa-check-circle far\" iconcolor=\"\" circle=\"yes\" circlecolor=\"\" size=\"\" divider=\"\" divider_color=\"\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" class=\"\" id=\"\"][fusion_li_item icon=\"\"]\r\n<h3>Book on-line - get 15% OFF your <a href=\"http://msla.co.za/lodge/reservations/\"> Accommodation</a> or...</h3>\r\n[/fusion_li_item][fusion_li_item icon=\"\"]\r\n<h3><a href=\"http://msla.co.za/lodge/reservations/\">Stay 3 days or more</a> - get 25% OFF your Accommodation</h3>\r\n[/fusion_li_item][/fusion_checklist][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container background_color=\"#f0f0ed\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"20\" padding_bottom=\"20\" padding_left=\"\" padding_right=\"\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][fusion_builder_row][fusion_builder_column type=\"1_2\" layout=\"1_2\" last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"\" padding_right=\"\" padding_bottom=\"\" padding_left=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\" min_height=\"\"][fusion_text]\r\n<h3 style=\"text-align: justify;\">Set in the rolling peaks and valleys of a thousand hills surrounded by a canopy of indigenous trees, you will find that horses still have right of way, we certainly offer the best of both worlds, farm and charm coupled with modern amenities that will have you feeling relaxed and rejuvenated.</h3>\r\n<h3 style=\"text-align: justify;\">We know that sometimes you are searching for a romantic getaway or maybe a few days away with old friends. Other times you are searching for a place to host a weekend, family reunion or a business retreat. In addition to nightly room rentals, our lodge is also available for meetings, retreats  and makes the perfect place for a wedding party to stay together and get ready for the big day. Regardless, with our five comfortable and cozy guest bedrooms, multiple garden spaces and hideaways, and a  large private deck  where you can take a nap or read a book we definitely have the room for you!</h3>\r\n<h3 style=\"text-align: justify;\">Evenings are quiet and peaceful taking you far away from the business of city life. This is a unique and memorable country experience. We look forward to having you as a guest!</h3>\r\n[/fusion_text][/fusion_builder_column][fusion_builder_column type=\"1_2\" layout=\"1_2\" last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"\" padding_right=\"\" padding_bottom=\"\" padding_left=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\" min_height=\"\"][fusion_text]\r\n<h3 style=\"text-align: justify;\">Our lodge has been in our family for years and has recently been beautifully renovated. Five rooms all with en-suite showers lead off your own large central lounge, featuring a 36 foot high vaulted ceiling, offering spacious living, dining, and a bar/conversational lounge area which includes a fitted kitchenette, all adding to a sense of homely comfort. Sumptuous meals can be provided on request and served on the bottom deck at the swimming pool.</h3>\r\n<h3 style=\"text-align: justify;\">Be lulled to sleep by the sound of the waterfall and tinkling stream just outside your window, waking from a peaceful night\'s sleep in a pillow-top bed dressed in luxurious linens to coddle you in ultimate comfort.</h3>\r\n<h3 style=\"text-align: justify;\">Our property boasts many different species of birds and animals. We have a resident otter, a family of wild bush pigs,  a family of rock rabbits, porcupine, little blue duikers, a variety of different frogs and an abundance of bird life, including the occasional snakes that pass through!</h3>\r\n[/fusion_text][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container background_color=\"#f0f0ed\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"20\" padding_bottom=\"20\" padding_left=\"\" padding_right=\"\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][fusion_builder_row][fusion_builder_column type=\"1_1\" layout=\"1_1\" background_position=\"left top\" background_color=\"\" border_size=\"\" border_color=\"\" border_style=\"solid\" spacing=\"yes\" background_image=\"\" background_repeat=\"no-repeat\" padding_top=\"\" padding_right=\"\" padding_bottom=\"\" padding_left=\"\" margin_top=\"0px\" margin_bottom=\"0px\" class=\"\" id=\"\" animation_type=\"\" animation_speed=\"0.3\" animation_direction=\"left\" hide_on_mobile=\"no\" center_content=\"no\" min_height=\"none\" last=\"no\" hover_type=\"none\" link=\"\" border_position=\"all\"][fusion_text]\r\n<h1 style=\"text-align: center;\">Gallery</h1>\r\n[/fusion_text][fusion_separator style_type=\"single solid\" top_margin=\"\" bottom_margin=\"40\" sep_color=\"#000000\" border_size=\"\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"170px\" alignment=\"\" class=\"\" id=\"\" /][/fusion_builder_column][fusion_builder_column type=\"1_6\" layout=\"1_6\" last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding_top=\"\" padding_right=\"\" padding_bottom=\"\" padding_left=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\" min_height=\"\"][/fusion_builder_column][fusion_builder_column type=\"2_3\" layout=\"2_3\" last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding_top=\"\" padding_right=\"\" padding_bottom=\"\" padding_left=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\" min_height=\"\"][fusion_text]\r\n<h3 style=\"text-align: justify;\">The Lodge is open, spacious, comfortable and homely. During hot summer days, sit and bask in the sun on the deck  with one of our  picnic specials. In winter, snuggle up with a good book or challenge one another to a friendly board game in the glassed nook area .</h3>\r\n[/fusion_text][/fusion_builder_column][fusion_builder_column type=\"1_6\" layout=\"1_6\" last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding_top=\"\" padding_right=\"\" padding_bottom=\"\" padding_left=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\" min_height=\"\"][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container background_color=\"#f0f0ed\" background_image=\"http://localhost/assagaylodge/wp-content/uploads/2015/01/Wood_Texture.jpg\" background_parallax=\"fixed\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"30\" padding_bottom=\"10\" padding_left=\"0\" padding_right=\"0\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][fusion_builder_row][fusion_builder_column type=\"1_1\" layout=\"1_1\" background_position=\"left top\" background_color=\"\" border_size=\"\" border_color=\"\" border_style=\"solid\" spacing=\"yes\" background_image=\"\" background_repeat=\"no-repeat\" padding_top=\"\" padding_right=\"\" padding_bottom=\"\" padding_left=\"\" margin_top=\"0px\" margin_bottom=\"0px\" class=\"\" id=\"\" animation_type=\"\" animation_speed=\"0.3\" animation_direction=\"left\" hide_on_mobile=\"no\" center_content=\"no\" min_height=\"none\" last=\"no\" hover_type=\"none\" link=\"\" border_position=\"all\"][fusion_portfolio layout=\"grid\" picture_size=\"auto\" text_layout=\"no_text\" filters=\"no\" columns=\"3\" column_spacing=\"12\" cat_slug=\"the-lodge\" exclude_cats=\"\" number_posts=\"9\" offset=\"\" excerpt_length=\"35\" strip_html=\"yes\" carousel_layout=\"title_on_rollover\" scroll_items=\"\" autoplay=\"no\" show_nav=\"yes\" mouse_scroll=\"no\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\" /][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container background_color=\"#f0f0ed\" background_image=\"\" background_parallax=\"fixed\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"20\" padding_bottom=\"20\" padding_left=\"\" padding_right=\"\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][fusion_builder_row][fusion_builder_column type=\"1_1\" layout=\"1_1\" background_position=\"left top\" background_color=\"\" border_size=\"\" border_color=\"\" border_style=\"solid\" spacing=\"yes\" background_image=\"\" background_repeat=\"no-repeat\" padding_top=\"\" padding_right=\"\" padding_bottom=\"\" padding_left=\"\" margin_top=\"0px\" margin_bottom=\"0px\" class=\"\" id=\"\" animation_type=\"\" animation_speed=\"0.3\" animation_direction=\"left\" hide_on_mobile=\"no\" center_content=\"no\" min_height=\"none\" last=\"no\" hover_type=\"none\" link=\"\" border_position=\"all\"][fusion_text]\r\n<h1 style=\"text-align: center;\">BEDROOMS</h1>\r\n[/fusion_text][fusion_separator style_type=\"single solid\" top_margin=\"\" bottom_margin=\"20\" sep_color=\"#000000\" border_size=\"\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"170px\" alignment=\"\" class=\"\" id=\"\" /][/fusion_builder_column][fusion_builder_column type=\"1_6\" layout=\"1_6\" last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding_top=\"\" padding_right=\"\" padding_bottom=\"\" padding_left=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\" min_height=\"\"][/fusion_builder_column][fusion_builder_column type=\"2_3\" layout=\"2_3\" last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding_top=\"\" padding_right=\"\" padding_bottom=\"\" padding_left=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\" min_height=\"\"][fusion_text]\r\n<h3 style=\"text-align: justify;\">When it comes to our bedrooms we’re proud to say we offer something a little more special. One of five  lovingly and tastefully decorated guest rooms. Soft gray decor soothes the senses providing a peaceful, blissfully comfortable rest from your travels and hectic lives.</h3>\r\n<h3 style=\"text-align: justify;\">Our  bedrooms are spacious, clean, comfortable all en-suite, equipped with either king size or queen size beds. Each room sleeps two guests. The rooms have high ceilings, wall heaters &amp; ceiling fans. Beds all have electric blankets in Winter, 100% cotton percale sheets and thick hyper allergenic microfiber duvets and pillows. All guest rooms are cleaned with organic and green products. Amenities include hairdryers in each room. Three rooms feature King-sized beds  of which two can be  split into two single beds. Two  rooms can therefore be changed into a twin room upon request. Two rooms feature a Queen-sized double bed. These beds cannot be split into twin beds.</h3>\r\n[/fusion_text][/fusion_builder_column][fusion_builder_column type=\"1_6\" layout=\"1_6\" last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding_top=\"\" padding_right=\"\" padding_bottom=\"\" padding_left=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\" min_height=\"\"][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container background_color=\"\" background_image=\"http://localhost/assagaylodge/wp-content/uploads/2015/01/DSC01516-1148-x-764.jpg\" background_parallax=\"fixed\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"center center\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"20\" padding_bottom=\"20\" padding_left=\"0\" padding_right=\"0\" hundred_percent=\"no\" equal_height_columns=\"yes\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][fusion_builder_row][fusion_builder_column type=\"1_1\" layout=\"1_1\" background_position=\"left top\" background_color=\"\" border_size=\"\" border_color=\"\" border_style=\"solid\" spacing=\"yes\" background_image=\"\" background_repeat=\"no-repeat\" padding_top=\"\" padding_right=\"\" padding_bottom=\"\" padding_left=\"\" margin_top=\"0px\" margin_bottom=\"0px\" class=\"\" id=\"\" animation_type=\"\" animation_speed=\"0.3\" animation_direction=\"left\" hide_on_mobile=\"no\" center_content=\"no\" min_height=\"none\" last=\"no\" hover_type=\"none\" link=\"\" border_position=\"all\"][fusion_portfolio layout=\"grid\" picture_size=\"auto\" text_layout=\"no_text\" filters=\"no\" columns=\"3\" column_spacing=\"12\" cat_slug=\"bedrooms\" exclude_cats=\"\" number_posts=\"6\" offset=\"\" excerpt_length=\"35\" strip_html=\"yes\" carousel_layout=\"title_on_rollover\" scroll_items=\"\" autoplay=\"no\" show_nav=\"yes\" mouse_scroll=\"no\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\" /][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container background_color=\"#f0f0ed\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"20\" padding_bottom=\"20\" padding_left=\"0\" padding_right=\"0\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][fusion_builder_row][fusion_builder_column type=\"1_1\" layout=\"1_1\" background_position=\"left top\" background_color=\"\" border_size=\"\" border_color=\"\" border_style=\"solid\" spacing=\"yes\" background_image=\"\" background_repeat=\"no-repeat\" padding_top=\"\" padding_right=\"\" padding_bottom=\"\" padding_left=\"\" margin_top=\"0px\" margin_bottom=\"0px\" class=\"\" id=\"\" animation_type=\"\" animation_speed=\"0.3\" animation_direction=\"left\" hide_on_mobile=\"no\" center_content=\"no\" min_height=\"none\" last=\"no\" hover_type=\"none\" link=\"\" border_position=\"all\"][fusion_text]\r\n<h1 style=\"text-align: center;\">GARDENS</h1>\r\n[/fusion_text][fusion_separator style_type=\"single solid\" top_margin=\"\" bottom_margin=\"20\" sep_color=\"#000000\" border_size=\"\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"170px\" alignment=\"\" class=\"\" id=\"\" /][/fusion_builder_column][fusion_builder_column type=\"1_6\" layout=\"1_6\" last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding_top=\"\" padding_right=\"\" padding_bottom=\"\" padding_left=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\" min_height=\"\"][/fusion_builder_column][fusion_builder_column type=\"2_3\" layout=\"2_3\" last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding_top=\"\" padding_right=\"\" padding_bottom=\"\" padding_left=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\" min_height=\"\"][fusion_text]\r\n<h3 style=\"text-align: justify;\">The garden is large and offers many secluded spots to lose yourself in a book with a glass of wine underneath the shade of a tree, listening to the sounds of the birds and smelling the beautiful flowers.</h3>\r\n[/fusion_text][/fusion_builder_column][fusion_builder_column type=\"1_6\" layout=\"1_6\" last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding_top=\"\" padding_right=\"\" padding_bottom=\"\" padding_left=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\" min_height=\"\"][/fusion_builder_column][fusion_builder_column type=\"1_1\" layout=\"1_1\" background_position=\"left top\" background_color=\"\" border_size=\"\" border_color=\"\" border_style=\"solid\" spacing=\"yes\" background_image=\"\" background_repeat=\"no-repeat\" padding_top=\"\" padding_right=\"\" padding_bottom=\"\" padding_left=\"\" margin_top=\"0px\" margin_bottom=\"0px\" class=\"\" id=\"\" animation_type=\"\" animation_speed=\"0.3\" animation_direction=\"left\" hide_on_mobile=\"no\" center_content=\"no\" min_height=\"none\" last=\"no\" hover_type=\"none\" link=\"\" border_position=\"all\"][fusion_portfolio layout=\"grid\" picture_size=\"auto\" text_layout=\"no_text\" filters=\"no\" columns=\"3\" column_spacing=\"12\" cat_slug=\"gardens\" exclude_cats=\"\" number_posts=\"9\" offset=\"\" excerpt_length=\"35\" strip_html=\"yes\" carousel_layout=\"title_on_rollover\" scroll_items=\"\" autoplay=\"no\" show_nav=\"yes\" mouse_scroll=\"no\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\" /][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container background_color=\"#ffffff\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"65px\" padding_bottom=\"65px\" padding_left=\"\" padding_right=\"\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][fusion_builder_row][fusion_builder_column type=\"1_1\" layout=\"1_1\" background_position=\"left top\" background_color=\"\" border_size=\"\" border_color=\"\" border_style=\"solid\" spacing=\"yes\" background_image=\"\" background_repeat=\"no-repeat\" padding_top=\"\" padding_right=\"\" padding_bottom=\"\" padding_left=\"\" margin_top=\"0px\" margin_bottom=\"0px\" class=\"\" id=\"\" animation_type=\"\" animation_speed=\"0.3\" animation_direction=\"left\" hide_on_mobile=\"no\" center_content=\"no\" min_height=\"none\" last=\"no\" hover_type=\"none\" link=\"\" border_position=\"all\"][fusion_button link=\"https://msla.co.za/lodge/reservations/\" color=\"default\" size=\"xlarge\" stretch=\"default\" type=\"3d\" shape=\"round\" target=\"_self\" title=\"\" button_gradient_top_color=\"#f0f0ed\" button_gradient_bottom_color=\"#f0f0ed\" button_gradient_top_color_hover=\"#6666a4\" button_gradient_bottom_color_hover=\"#6666a4\" accent_color=\"#ffffff\" accent_hover_color=\"#ffffff\" bevel_color=\"\" border_width=\"0px\" icon=\"\" icon_position=\"left\" icon_divider=\"no\" modal=\"\" animation_type=\"0\" animation_direction=\"left\" animation_speed=\"1\" animation_offset=\"\" alignment=\"center\" class=\"\" id=\"\"]Make A Reservation Enquiry[/fusion_button][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container]', 'Home', '', 'inherit', 'closed', 'closed', '', '7-revision-v1', '', '', '2019-11-13 18:05:31', '2019-11-13 16:05:31', '', 7, 'https://msla.co.za/lodge/7-revision-v1/', 0, 'revision', '', 0);
INSERT INTO `wp_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(1388, 1, '2019-11-13 18:06:31', '2019-11-13 16:06:31', '[fusion_builder_container background_color=\"#f0f0ed\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"20\" padding_bottom=\"20\" padding_left=\"\" padding_right=\"\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][fusion_builder_row][fusion_builder_column type=\"1_2\" layout=\"1_2\" last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"\" padding_right=\"\" padding_bottom=\"\" padding_left=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\" min_height=\"\"][fusion_separator style_type=\"single solid\" top_margin=\"0\" bottom_margin=\"30\" sep_color=\"#000000\" border_size=\"\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"170px\" alignment=\"center\" class=\"separator-left\" id=\"\" /][fusion_text]\r\n<h1 style=\"text-align: center;\">No Fancy Star Grading\r\nNo Room Service\r\nNo Bed Turn-downs\r\nNo Rose Petals in the Bath water</h1>\r\n<h1 style=\"text-align: center;\">... just old fashioned homely comforts</h1>\r\n[/fusion_text][/fusion_builder_column][fusion_builder_column type=\"1_2\" layout=\"1_2\" last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"\" padding_right=\"\" padding_bottom=\"\" padding_left=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\" min_height=\"\"][fusion_text]\r\n<h1 style=\"text-align: justify;\">5 BEDROOM FAMILY LODGE</h1>\r\n<h3 style=\"text-align: justify;\">We are a four season lodge, because there’s always something to celebrate… We offer comfort, relaxation and privacy right in the heart of 1000 Hills. The Forest, the Gardens, the Atmosphere all speak to  Rest  &amp; Relaxation.</h3>\r\n[/fusion_text][fusion_separator style_type=\"single solid\" top_margin=\"0\" bottom_margin=\"30\" sep_color=\"#000000\" border_size=\"\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"170px\" alignment=\"left\" class=\"separator-left\" id=\"\" /][fusion_title size=\"1\" content_align=\"right\" style_type=\"default\" sep_color=\"\" margin_top=\"\" margin_bottom=\"\" class=\"\" id=\"\"]\r\n<h1 style=\"text-align: center;\">Current Offers!</h1>\r\n[/fusion_title][fusion_checklist icon=\"fa-umbrella-beach fas\" iconcolor=\"#8bc34a\" circle=\"no\" circlecolor=\"\" size=\"24px\" divider=\"\" divider_color=\"\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" class=\"\" id=\"\"][fusion_li_item icon=\"\"]\r\n<h3>Book on-line - get 15% OFF your <a href=\"http://msla.co.za/lodge/reservations/\"> Accommodation</a> or...</h3>\r\n[/fusion_li_item][fusion_li_item icon=\"fa-umbrella-beach fas\"]\r\n<h3><a href=\"http://msla.co.za/lodge/reservations/\">Stay 3 days or more</a> - get 25% OFF your Accommodation</h3>\r\n[/fusion_li_item][/fusion_checklist][fusion_checklist icon=\"fa-border-none fas\" iconcolor=\"\" circle=\"no\" circlecolor=\"\" size=\"\" divider=\"\" divider_color=\"\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" class=\"\" id=\"\"][fusion_li_item icon=\"\"]\r\n<h3>Book on-line - get 15% OFF your <a href=\"http://msla.co.za/lodge/reservations/\"> Accommodation</a> or...</h3>\r\n[/fusion_li_item][fusion_li_item icon=\"\"]\r\n<h3><a href=\"http://msla.co.za/lodge/reservations/\">Stay 3 days or more</a> - get 25% OFF your Accommodation</h3>\r\n[/fusion_li_item][/fusion_checklist][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container background_color=\"#f0f0ed\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"20\" padding_bottom=\"20\" padding_left=\"\" padding_right=\"\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][fusion_builder_row][fusion_builder_column type=\"1_2\" layout=\"1_2\" last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"\" padding_right=\"\" padding_bottom=\"\" padding_left=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\" min_height=\"\"][fusion_text]\r\n<h3 style=\"text-align: justify;\">Set in the rolling peaks and valleys of a thousand hills surrounded by a canopy of indigenous trees, you will find that horses still have right of way, we certainly offer the best of both worlds, farm and charm coupled with modern amenities that will have you feeling relaxed and rejuvenated.</h3>\r\n<h3 style=\"text-align: justify;\">We know that sometimes you are searching for a romantic getaway or maybe a few days away with old friends. Other times you are searching for a place to host a weekend, family reunion or a business retreat. In addition to nightly room rentals, our lodge is also available for meetings, retreats  and makes the perfect place for a wedding party to stay together and get ready for the big day. Regardless, with our five comfortable and cozy guest bedrooms, multiple garden spaces and hideaways, and a  large private deck  where you can take a nap or read a book we definitely have the room for you!</h3>\r\n<h3 style=\"text-align: justify;\">Evenings are quiet and peaceful taking you far away from the business of city life. This is a unique and memorable country experience. We look forward to having you as a guest!</h3>\r\n[/fusion_text][/fusion_builder_column][fusion_builder_column type=\"1_2\" layout=\"1_2\" last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"\" padding_right=\"\" padding_bottom=\"\" padding_left=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\" min_height=\"\"][fusion_text]\r\n<h3 style=\"text-align: justify;\">Our lodge has been in our family for years and has recently been beautifully renovated. Five rooms all with en-suite showers lead off your own large central lounge, featuring a 36 foot high vaulted ceiling, offering spacious living, dining, and a bar/conversational lounge area which includes a fitted kitchenette, all adding to a sense of homely comfort. Sumptuous meals can be provided on request and served on the bottom deck at the swimming pool.</h3>\r\n<h3 style=\"text-align: justify;\">Be lulled to sleep by the sound of the waterfall and tinkling stream just outside your window, waking from a peaceful night\'s sleep in a pillow-top bed dressed in luxurious linens to coddle you in ultimate comfort.</h3>\r\n<h3 style=\"text-align: justify;\">Our property boasts many different species of birds and animals. We have a resident otter, a family of wild bush pigs,  a family of rock rabbits, porcupine, little blue duikers, a variety of different frogs and an abundance of bird life, including the occasional snakes that pass through!</h3>\r\n[/fusion_text][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container background_color=\"#f0f0ed\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"20\" padding_bottom=\"20\" padding_left=\"\" padding_right=\"\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][fusion_builder_row][fusion_builder_column type=\"1_1\" layout=\"1_1\" background_position=\"left top\" background_color=\"\" border_size=\"\" border_color=\"\" border_style=\"solid\" spacing=\"yes\" background_image=\"\" background_repeat=\"no-repeat\" padding_top=\"\" padding_right=\"\" padding_bottom=\"\" padding_left=\"\" margin_top=\"0px\" margin_bottom=\"0px\" class=\"\" id=\"\" animation_type=\"\" animation_speed=\"0.3\" animation_direction=\"left\" hide_on_mobile=\"no\" center_content=\"no\" min_height=\"none\" last=\"no\" hover_type=\"none\" link=\"\" border_position=\"all\"][fusion_text]\r\n<h1 style=\"text-align: center;\">Gallery</h1>\r\n[/fusion_text][fusion_separator style_type=\"single solid\" top_margin=\"\" bottom_margin=\"40\" sep_color=\"#000000\" border_size=\"\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"170px\" alignment=\"\" class=\"\" id=\"\" /][/fusion_builder_column][fusion_builder_column type=\"1_6\" layout=\"1_6\" last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding_top=\"\" padding_right=\"\" padding_bottom=\"\" padding_left=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\" min_height=\"\"][/fusion_builder_column][fusion_builder_column type=\"2_3\" layout=\"2_3\" last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding_top=\"\" padding_right=\"\" padding_bottom=\"\" padding_left=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\" min_height=\"\"][fusion_text]\r\n<h3 style=\"text-align: justify;\">The Lodge is open, spacious, comfortable and homely. During hot summer days, sit and bask in the sun on the deck  with one of our  picnic specials. In winter, snuggle up with a good book or challenge one another to a friendly board game in the glassed nook area .</h3>\r\n[/fusion_text][/fusion_builder_column][fusion_builder_column type=\"1_6\" layout=\"1_6\" last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding_top=\"\" padding_right=\"\" padding_bottom=\"\" padding_left=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\" min_height=\"\"][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container background_color=\"#f0f0ed\" background_image=\"http://localhost/assagaylodge/wp-content/uploads/2015/01/Wood_Texture.jpg\" background_parallax=\"fixed\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"30\" padding_bottom=\"10\" padding_left=\"0\" padding_right=\"0\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][fusion_builder_row][fusion_builder_column type=\"1_1\" layout=\"1_1\" background_position=\"left top\" background_color=\"\" border_size=\"\" border_color=\"\" border_style=\"solid\" spacing=\"yes\" background_image=\"\" background_repeat=\"no-repeat\" padding_top=\"\" padding_right=\"\" padding_bottom=\"\" padding_left=\"\" margin_top=\"0px\" margin_bottom=\"0px\" class=\"\" id=\"\" animation_type=\"\" animation_speed=\"0.3\" animation_direction=\"left\" hide_on_mobile=\"no\" center_content=\"no\" min_height=\"none\" last=\"no\" hover_type=\"none\" link=\"\" border_position=\"all\"][fusion_portfolio layout=\"grid\" picture_size=\"auto\" text_layout=\"no_text\" filters=\"no\" columns=\"3\" column_spacing=\"12\" cat_slug=\"the-lodge\" exclude_cats=\"\" number_posts=\"9\" offset=\"\" excerpt_length=\"35\" strip_html=\"yes\" carousel_layout=\"title_on_rollover\" scroll_items=\"\" autoplay=\"no\" show_nav=\"yes\" mouse_scroll=\"no\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\" /][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container background_color=\"#f0f0ed\" background_image=\"\" background_parallax=\"fixed\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"20\" padding_bottom=\"20\" padding_left=\"\" padding_right=\"\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][fusion_builder_row][fusion_builder_column type=\"1_1\" layout=\"1_1\" background_position=\"left top\" background_color=\"\" border_size=\"\" border_color=\"\" border_style=\"solid\" spacing=\"yes\" background_image=\"\" background_repeat=\"no-repeat\" padding_top=\"\" padding_right=\"\" padding_bottom=\"\" padding_left=\"\" margin_top=\"0px\" margin_bottom=\"0px\" class=\"\" id=\"\" animation_type=\"\" animation_speed=\"0.3\" animation_direction=\"left\" hide_on_mobile=\"no\" center_content=\"no\" min_height=\"none\" last=\"no\" hover_type=\"none\" link=\"\" border_position=\"all\"][fusion_text]\r\n<h1 style=\"text-align: center;\">BEDROOMS</h1>\r\n[/fusion_text][fusion_separator style_type=\"single solid\" top_margin=\"\" bottom_margin=\"20\" sep_color=\"#000000\" border_size=\"\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"170px\" alignment=\"\" class=\"\" id=\"\" /][/fusion_builder_column][fusion_builder_column type=\"1_6\" layout=\"1_6\" last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding_top=\"\" padding_right=\"\" padding_bottom=\"\" padding_left=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\" min_height=\"\"][/fusion_builder_column][fusion_builder_column type=\"2_3\" layout=\"2_3\" last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding_top=\"\" padding_right=\"\" padding_bottom=\"\" padding_left=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\" min_height=\"\"][fusion_text]\r\n<h3 style=\"text-align: justify;\">When it comes to our bedrooms we’re proud to say we offer something a little more special. One of five  lovingly and tastefully decorated guest rooms. Soft gray decor soothes the senses providing a peaceful, blissfully comfortable rest from your travels and hectic lives.</h3>\r\n<h3 style=\"text-align: justify;\">Our  bedrooms are spacious, clean, comfortable all en-suite, equipped with either king size or queen size beds. Each room sleeps two guests. The rooms have high ceilings, wall heaters &amp; ceiling fans. Beds all have electric blankets in Winter, 100% cotton percale sheets and thick hyper allergenic microfiber duvets and pillows. All guest rooms are cleaned with organic and green products. Amenities include hairdryers in each room. Three rooms feature King-sized beds  of which two can be  split into two single beds. Two  rooms can therefore be changed into a twin room upon request. Two rooms feature a Queen-sized double bed. These beds cannot be split into twin beds.</h3>\r\n[/fusion_text][/fusion_builder_column][fusion_builder_column type=\"1_6\" layout=\"1_6\" last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding_top=\"\" padding_right=\"\" padding_bottom=\"\" padding_left=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\" min_height=\"\"][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container background_color=\"\" background_image=\"http://localhost/assagaylodge/wp-content/uploads/2015/01/DSC01516-1148-x-764.jpg\" background_parallax=\"fixed\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"center center\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"20\" padding_bottom=\"20\" padding_left=\"0\" padding_right=\"0\" hundred_percent=\"no\" equal_height_columns=\"yes\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][fusion_builder_row][fusion_builder_column type=\"1_1\" layout=\"1_1\" background_position=\"left top\" background_color=\"\" border_size=\"\" border_color=\"\" border_style=\"solid\" spacing=\"yes\" background_image=\"\" background_repeat=\"no-repeat\" padding_top=\"\" padding_right=\"\" padding_bottom=\"\" padding_left=\"\" margin_top=\"0px\" margin_bottom=\"0px\" class=\"\" id=\"\" animation_type=\"\" animation_speed=\"0.3\" animation_direction=\"left\" hide_on_mobile=\"no\" center_content=\"no\" min_height=\"none\" last=\"no\" hover_type=\"none\" link=\"\" border_position=\"all\"][fusion_portfolio layout=\"grid\" picture_size=\"auto\" text_layout=\"no_text\" filters=\"no\" columns=\"3\" column_spacing=\"12\" cat_slug=\"bedrooms\" exclude_cats=\"\" number_posts=\"6\" offset=\"\" excerpt_length=\"35\" strip_html=\"yes\" carousel_layout=\"title_on_rollover\" scroll_items=\"\" autoplay=\"no\" show_nav=\"yes\" mouse_scroll=\"no\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\" /][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container background_color=\"#f0f0ed\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"20\" padding_bottom=\"20\" padding_left=\"0\" padding_right=\"0\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][fusion_builder_row][fusion_builder_column type=\"1_1\" layout=\"1_1\" background_position=\"left top\" background_color=\"\" border_size=\"\" border_color=\"\" border_style=\"solid\" spacing=\"yes\" background_image=\"\" background_repeat=\"no-repeat\" padding_top=\"\" padding_right=\"\" padding_bottom=\"\" padding_left=\"\" margin_top=\"0px\" margin_bottom=\"0px\" class=\"\" id=\"\" animation_type=\"\" animation_speed=\"0.3\" animation_direction=\"left\" hide_on_mobile=\"no\" center_content=\"no\" min_height=\"none\" last=\"no\" hover_type=\"none\" link=\"\" border_position=\"all\"][fusion_text]\r\n<h1 style=\"text-align: center;\">GARDENS</h1>\r\n[/fusion_text][fusion_separator style_type=\"single solid\" top_margin=\"\" bottom_margin=\"20\" sep_color=\"#000000\" border_size=\"\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"170px\" alignment=\"\" class=\"\" id=\"\" /][/fusion_builder_column][fusion_builder_column type=\"1_6\" layout=\"1_6\" last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding_top=\"\" padding_right=\"\" padding_bottom=\"\" padding_left=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\" min_height=\"\"][/fusion_builder_column][fusion_builder_column type=\"2_3\" layout=\"2_3\" last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding_top=\"\" padding_right=\"\" padding_bottom=\"\" padding_left=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\" min_height=\"\"][fusion_text]\r\n<h3 style=\"text-align: justify;\">The garden is large and offers many secluded spots to lose yourself in a book with a glass of wine underneath the shade of a tree, listening to the sounds of the birds and smelling the beautiful flowers.</h3>\r\n[/fusion_text][/fusion_builder_column][fusion_builder_column type=\"1_6\" layout=\"1_6\" last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding_top=\"\" padding_right=\"\" padding_bottom=\"\" padding_left=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\" min_height=\"\"][/fusion_builder_column][fusion_builder_column type=\"1_1\" layout=\"1_1\" background_position=\"left top\" background_color=\"\" border_size=\"\" border_color=\"\" border_style=\"solid\" spacing=\"yes\" background_image=\"\" background_repeat=\"no-repeat\" padding_top=\"\" padding_right=\"\" padding_bottom=\"\" padding_left=\"\" margin_top=\"0px\" margin_bottom=\"0px\" class=\"\" id=\"\" animation_type=\"\" animation_speed=\"0.3\" animation_direction=\"left\" hide_on_mobile=\"no\" center_content=\"no\" min_height=\"none\" last=\"no\" hover_type=\"none\" link=\"\" border_position=\"all\"][fusion_portfolio layout=\"grid\" picture_size=\"auto\" text_layout=\"no_text\" filters=\"no\" columns=\"3\" column_spacing=\"12\" cat_slug=\"gardens\" exclude_cats=\"\" number_posts=\"9\" offset=\"\" excerpt_length=\"35\" strip_html=\"yes\" carousel_layout=\"title_on_rollover\" scroll_items=\"\" autoplay=\"no\" show_nav=\"yes\" mouse_scroll=\"no\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\" /][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container background_color=\"#ffffff\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"65px\" padding_bottom=\"65px\" padding_left=\"\" padding_right=\"\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][fusion_builder_row][fusion_builder_column type=\"1_1\" layout=\"1_1\" background_position=\"left top\" background_color=\"\" border_size=\"\" border_color=\"\" border_style=\"solid\" spacing=\"yes\" background_image=\"\" background_repeat=\"no-repeat\" padding_top=\"\" padding_right=\"\" padding_bottom=\"\" padding_left=\"\" margin_top=\"0px\" margin_bottom=\"0px\" class=\"\" id=\"\" animation_type=\"\" animation_speed=\"0.3\" animation_direction=\"left\" hide_on_mobile=\"no\" center_content=\"no\" min_height=\"none\" last=\"no\" hover_type=\"none\" link=\"\" border_position=\"all\"][fusion_button link=\"https://msla.co.za/lodge/reservations/\" color=\"default\" size=\"xlarge\" stretch=\"default\" type=\"3d\" shape=\"round\" target=\"_self\" title=\"\" button_gradient_top_color=\"#f0f0ed\" button_gradient_bottom_color=\"#f0f0ed\" button_gradient_top_color_hover=\"#6666a4\" button_gradient_bottom_color_hover=\"#6666a4\" accent_color=\"#ffffff\" accent_hover_color=\"#ffffff\" bevel_color=\"\" border_width=\"0px\" icon=\"\" icon_position=\"left\" icon_divider=\"no\" modal=\"\" animation_type=\"0\" animation_direction=\"left\" animation_speed=\"1\" animation_offset=\"\" alignment=\"center\" class=\"\" id=\"\"]Make A Reservation Enquiry[/fusion_button][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container]', 'Home', '', 'inherit', 'closed', 'closed', '', '7-revision-v1', '', '', '2019-11-13 18:06:31', '2019-11-13 16:06:31', '', 7, 'https://msla.co.za/lodge/7-revision-v1/', 0, 'revision', '', 0);
INSERT INTO `wp_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(1389, 1, '2019-11-13 18:07:19', '2019-11-13 16:07:19', '[fusion_builder_container background_color=\"#f0f0ed\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"20\" padding_bottom=\"20\" padding_left=\"\" padding_right=\"\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][fusion_builder_row][fusion_builder_column type=\"1_2\" layout=\"1_2\" last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"\" padding_right=\"\" padding_bottom=\"\" padding_left=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\" min_height=\"\"][fusion_separator style_type=\"single solid\" top_margin=\"0\" bottom_margin=\"30\" sep_color=\"#000000\" border_size=\"\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"170px\" alignment=\"center\" class=\"separator-left\" id=\"\" /][fusion_text]\r\n<h1 style=\"text-align: center;\">No Fancy Star Grading\r\nNo Room Service\r\nNo Bed Turn-downs\r\nNo Rose Petals in the Bath water</h1>\r\n<h1 style=\"text-align: center;\">... just old fashioned homely comforts</h1>\r\n[/fusion_text][/fusion_builder_column][fusion_builder_column type=\"1_2\" layout=\"1_2\" last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"\" padding_right=\"\" padding_bottom=\"\" padding_left=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\" min_height=\"\"][fusion_text]\r\n<h1 style=\"text-align: justify;\">5 BEDROOM FAMILY LODGE</h1>\r\n<h3 style=\"text-align: justify;\">We are a four season lodge, because there’s always something to celebrate… We offer comfort, relaxation and privacy right in the heart of 1000 Hills. The Forest, the Gardens, the Atmosphere all speak to  Rest  &amp; Relaxation.</h3>\r\n[/fusion_text][fusion_separator style_type=\"single solid\" top_margin=\"0\" bottom_margin=\"30\" sep_color=\"#000000\" border_size=\"\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"170px\" alignment=\"left\" class=\"separator-left\" id=\"\" /][fusion_title size=\"1\" content_align=\"right\" style_type=\"default\" sep_color=\"\" margin_top=\"\" margin_bottom=\"\" class=\"\" id=\"\"]\r\n<h1 style=\"text-align: center;\">Current Offers!</h1>\r\n[/fusion_title][fusion_checklist icon=\"\" iconcolor=\"#8bc34a\" circle=\"no\" circlecolor=\"\" size=\"24px\" divider=\"\" divider_color=\"\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" class=\"\" id=\"\"][fusion_li_item icon=\"\"]\r\n<h3>Book on-line - get 15% OFF your <a href=\"http://msla.co.za/lodge/reservations/\"> Accommodation</a> or...</h3>\r\n[/fusion_li_item][fusion_li_item icon=\"fa-umbrella-beach fas\"]\r\n<h3><a href=\"http://msla.co.za/lodge/reservations/\">Stay 3 days or more</a> - get 25% OFF your Accommodation</h3>\r\n[/fusion_li_item][/fusion_checklist][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container background_color=\"#f0f0ed\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"20\" padding_bottom=\"20\" padding_left=\"\" padding_right=\"\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][fusion_builder_row][fusion_builder_column type=\"1_2\" layout=\"1_2\" last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"\" padding_right=\"\" padding_bottom=\"\" padding_left=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\" min_height=\"\"][fusion_text]\r\n<h3 style=\"text-align: justify;\">Set in the rolling peaks and valleys of a thousand hills surrounded by a canopy of indigenous trees, you will find that horses still have right of way, we certainly offer the best of both worlds, farm and charm coupled with modern amenities that will have you feeling relaxed and rejuvenated.</h3>\r\n<h3 style=\"text-align: justify;\">We know that sometimes you are searching for a romantic getaway or maybe a few days away with old friends. Other times you are searching for a place to host a weekend, family reunion or a business retreat. In addition to nightly room rentals, our lodge is also available for meetings, retreats  and makes the perfect place for a wedding party to stay together and get ready for the big day. Regardless, with our five comfortable and cozy guest bedrooms, multiple garden spaces and hideaways, and a  large private deck  where you can take a nap or read a book we definitely have the room for you!</h3>\r\n<h3 style=\"text-align: justify;\">Evenings are quiet and peaceful taking you far away from the business of city life. This is a unique and memorable country experience. We look forward to having you as a guest!</h3>\r\n[/fusion_text][/fusion_builder_column][fusion_builder_column type=\"1_2\" layout=\"1_2\" last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"\" padding_right=\"\" padding_bottom=\"\" padding_left=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\" min_height=\"\"][fusion_text]\r\n<h3 style=\"text-align: justify;\">Our lodge has been in our family for years and has recently been beautifully renovated. Five rooms all with en-suite showers lead off your own large central lounge, featuring a 36 foot high vaulted ceiling, offering spacious living, dining, and a bar/conversational lounge area which includes a fitted kitchenette, all adding to a sense of homely comfort. Sumptuous meals can be provided on request and served on the bottom deck at the swimming pool.</h3>\r\n<h3 style=\"text-align: justify;\">Be lulled to sleep by the sound of the waterfall and tinkling stream just outside your window, waking from a peaceful night\'s sleep in a pillow-top bed dressed in luxurious linens to coddle you in ultimate comfort.</h3>\r\n<h3 style=\"text-align: justify;\">Our property boasts many different species of birds and animals. We have a resident otter, a family of wild bush pigs,  a family of rock rabbits, porcupine, little blue duikers, a variety of different frogs and an abundance of bird life, including the occasional snakes that pass through!</h3>\r\n[/fusion_text][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container background_color=\"#f0f0ed\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"20\" padding_bottom=\"20\" padding_left=\"\" padding_right=\"\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][fusion_builder_row][fusion_builder_column type=\"1_1\" layout=\"1_1\" background_position=\"left top\" background_color=\"\" border_size=\"\" border_color=\"\" border_style=\"solid\" spacing=\"yes\" background_image=\"\" background_repeat=\"no-repeat\" padding_top=\"\" padding_right=\"\" padding_bottom=\"\" padding_left=\"\" margin_top=\"0px\" margin_bottom=\"0px\" class=\"\" id=\"\" animation_type=\"\" animation_speed=\"0.3\" animation_direction=\"left\" hide_on_mobile=\"no\" center_content=\"no\" min_height=\"none\" last=\"no\" hover_type=\"none\" link=\"\" border_position=\"all\"][fusion_text]\r\n<h1 style=\"text-align: center;\">Gallery</h1>\r\n[/fusion_text][fusion_separator style_type=\"single solid\" top_margin=\"\" bottom_margin=\"40\" sep_color=\"#000000\" border_size=\"\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"170px\" alignment=\"\" class=\"\" id=\"\" /][/fusion_builder_column][fusion_builder_column type=\"1_6\" layout=\"1_6\" last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding_top=\"\" padding_right=\"\" padding_bottom=\"\" padding_left=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\" min_height=\"\"][/fusion_builder_column][fusion_builder_column type=\"2_3\" layout=\"2_3\" last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding_top=\"\" padding_right=\"\" padding_bottom=\"\" padding_left=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\" min_height=\"\"][fusion_text]\r\n<h3 style=\"text-align: justify;\">The Lodge is open, spacious, comfortable and homely. During hot summer days, sit and bask in the sun on the deck  with one of our  picnic specials. In winter, snuggle up with a good book or challenge one another to a friendly board game in the glassed nook area .</h3>\r\n[/fusion_text][/fusion_builder_column][fusion_builder_column type=\"1_6\" layout=\"1_6\" last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding_top=\"\" padding_right=\"\" padding_bottom=\"\" padding_left=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\" min_height=\"\"][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container background_color=\"#f0f0ed\" background_image=\"http://localhost/assagaylodge/wp-content/uploads/2015/01/Wood_Texture.jpg\" background_parallax=\"fixed\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"30\" padding_bottom=\"10\" padding_left=\"0\" padding_right=\"0\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][fusion_builder_row][fusion_builder_column type=\"1_1\" layout=\"1_1\" background_position=\"left top\" background_color=\"\" border_size=\"\" border_color=\"\" border_style=\"solid\" spacing=\"yes\" background_image=\"\" background_repeat=\"no-repeat\" padding_top=\"\" padding_right=\"\" padding_bottom=\"\" padding_left=\"\" margin_top=\"0px\" margin_bottom=\"0px\" class=\"\" id=\"\" animation_type=\"\" animation_speed=\"0.3\" animation_direction=\"left\" hide_on_mobile=\"no\" center_content=\"no\" min_height=\"none\" last=\"no\" hover_type=\"none\" link=\"\" border_position=\"all\"][fusion_portfolio layout=\"grid\" picture_size=\"auto\" text_layout=\"no_text\" filters=\"no\" columns=\"3\" column_spacing=\"12\" cat_slug=\"the-lodge\" exclude_cats=\"\" number_posts=\"9\" offset=\"\" excerpt_length=\"35\" strip_html=\"yes\" carousel_layout=\"title_on_rollover\" scroll_items=\"\" autoplay=\"no\" show_nav=\"yes\" mouse_scroll=\"no\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\" /][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container background_color=\"#f0f0ed\" background_image=\"\" background_parallax=\"fixed\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"20\" padding_bottom=\"20\" padding_left=\"\" padding_right=\"\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][fusion_builder_row][fusion_builder_column type=\"1_1\" layout=\"1_1\" background_position=\"left top\" background_color=\"\" border_size=\"\" border_color=\"\" border_style=\"solid\" spacing=\"yes\" background_image=\"\" background_repeat=\"no-repeat\" padding_top=\"\" padding_right=\"\" padding_bottom=\"\" padding_left=\"\" margin_top=\"0px\" margin_bottom=\"0px\" class=\"\" id=\"\" animation_type=\"\" animation_speed=\"0.3\" animation_direction=\"left\" hide_on_mobile=\"no\" center_content=\"no\" min_height=\"none\" last=\"no\" hover_type=\"none\" link=\"\" border_position=\"all\"][fusion_text]\r\n<h1 style=\"text-align: center;\">BEDROOMS</h1>\r\n[/fusion_text][fusion_separator style_type=\"single solid\" top_margin=\"\" bottom_margin=\"20\" sep_color=\"#000000\" border_size=\"\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"170px\" alignment=\"\" class=\"\" id=\"\" /][/fusion_builder_column][fusion_builder_column type=\"1_6\" layout=\"1_6\" last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding_top=\"\" padding_right=\"\" padding_bottom=\"\" padding_left=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\" min_height=\"\"][/fusion_builder_column][fusion_builder_column type=\"2_3\" layout=\"2_3\" last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding_top=\"\" padding_right=\"\" padding_bottom=\"\" padding_left=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\" min_height=\"\"][fusion_text]\r\n<h3 style=\"text-align: justify;\">When it comes to our bedrooms we’re proud to say we offer something a little more special. One of five  lovingly and tastefully decorated guest rooms. Soft gray decor soothes the senses providing a peaceful, blissfully comfortable rest from your travels and hectic lives.</h3>\r\n<h3 style=\"text-align: justify;\">Our  bedrooms are spacious, clean, comfortable all en-suite, equipped with either king size or queen size beds. Each room sleeps two guests. The rooms have high ceilings, wall heaters &amp; ceiling fans. Beds all have electric blankets in Winter, 100% cotton percale sheets and thick hyper allergenic microfiber duvets and pillows. All guest rooms are cleaned with organic and green products. Amenities include hairdryers in each room. Three rooms feature King-sized beds  of which two can be  split into two single beds. Two  rooms can therefore be changed into a twin room upon request. Two rooms feature a Queen-sized double bed. These beds cannot be split into twin beds.</h3>\r\n[/fusion_text][/fusion_builder_column][fusion_builder_column type=\"1_6\" layout=\"1_6\" last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding_top=\"\" padding_right=\"\" padding_bottom=\"\" padding_left=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\" min_height=\"\"][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container background_color=\"\" background_image=\"http://localhost/assagaylodge/wp-content/uploads/2015/01/DSC01516-1148-x-764.jpg\" background_parallax=\"fixed\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"center center\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"20\" padding_bottom=\"20\" padding_left=\"0\" padding_right=\"0\" hundred_percent=\"no\" equal_height_columns=\"yes\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][fusion_builder_row][fusion_builder_column type=\"1_1\" layout=\"1_1\" background_position=\"left top\" background_color=\"\" border_size=\"\" border_color=\"\" border_style=\"solid\" spacing=\"yes\" background_image=\"\" background_repeat=\"no-repeat\" padding_top=\"\" padding_right=\"\" padding_bottom=\"\" padding_left=\"\" margin_top=\"0px\" margin_bottom=\"0px\" class=\"\" id=\"\" animation_type=\"\" animation_speed=\"0.3\" animation_direction=\"left\" hide_on_mobile=\"no\" center_content=\"no\" min_height=\"none\" last=\"no\" hover_type=\"none\" link=\"\" border_position=\"all\"][fusion_portfolio layout=\"grid\" picture_size=\"auto\" text_layout=\"no_text\" filters=\"no\" columns=\"3\" column_spacing=\"12\" cat_slug=\"bedrooms\" exclude_cats=\"\" number_posts=\"6\" offset=\"\" excerpt_length=\"35\" strip_html=\"yes\" carousel_layout=\"title_on_rollover\" scroll_items=\"\" autoplay=\"no\" show_nav=\"yes\" mouse_scroll=\"no\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\" /][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container background_color=\"#f0f0ed\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"20\" padding_bottom=\"20\" padding_left=\"0\" padding_right=\"0\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][fusion_builder_row][fusion_builder_column type=\"1_1\" layout=\"1_1\" background_position=\"left top\" background_color=\"\" border_size=\"\" border_color=\"\" border_style=\"solid\" spacing=\"yes\" background_image=\"\" background_repeat=\"no-repeat\" padding_top=\"\" padding_right=\"\" padding_bottom=\"\" padding_left=\"\" margin_top=\"0px\" margin_bottom=\"0px\" class=\"\" id=\"\" animation_type=\"\" animation_speed=\"0.3\" animation_direction=\"left\" hide_on_mobile=\"no\" center_content=\"no\" min_height=\"none\" last=\"no\" hover_type=\"none\" link=\"\" border_position=\"all\"][fusion_text]\r\n<h1 style=\"text-align: center;\">GARDENS</h1>\r\n[/fusion_text][fusion_separator style_type=\"single solid\" top_margin=\"\" bottom_margin=\"20\" sep_color=\"#000000\" border_size=\"\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"170px\" alignment=\"\" class=\"\" id=\"\" /][/fusion_builder_column][fusion_builder_column type=\"1_6\" layout=\"1_6\" last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding_top=\"\" padding_right=\"\" padding_bottom=\"\" padding_left=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\" min_height=\"\"][/fusion_builder_column][fusion_builder_column type=\"2_3\" layout=\"2_3\" last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding_top=\"\" padding_right=\"\" padding_bottom=\"\" padding_left=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\" min_height=\"\"][fusion_text]\r\n<h3 style=\"text-align: justify;\">The garden is large and offers many secluded spots to lose yourself in a book with a glass of wine underneath the shade of a tree, listening to the sounds of the birds and smelling the beautiful flowers.</h3>\r\n[/fusion_text][/fusion_builder_column][fusion_builder_column type=\"1_6\" layout=\"1_6\" last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding_top=\"\" padding_right=\"\" padding_bottom=\"\" padding_left=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\" min_height=\"\"][/fusion_builder_column][fusion_builder_column type=\"1_1\" layout=\"1_1\" background_position=\"left top\" background_color=\"\" border_size=\"\" border_color=\"\" border_style=\"solid\" spacing=\"yes\" background_image=\"\" background_repeat=\"no-repeat\" padding_top=\"\" padding_right=\"\" padding_bottom=\"\" padding_left=\"\" margin_top=\"0px\" margin_bottom=\"0px\" class=\"\" id=\"\" animation_type=\"\" animation_speed=\"0.3\" animation_direction=\"left\" hide_on_mobile=\"no\" center_content=\"no\" min_height=\"none\" last=\"no\" hover_type=\"none\" link=\"\" border_position=\"all\"][fusion_portfolio layout=\"grid\" picture_size=\"auto\" text_layout=\"no_text\" filters=\"no\" columns=\"3\" column_spacing=\"12\" cat_slug=\"gardens\" exclude_cats=\"\" number_posts=\"9\" offset=\"\" excerpt_length=\"35\" strip_html=\"yes\" carousel_layout=\"title_on_rollover\" scroll_items=\"\" autoplay=\"no\" show_nav=\"yes\" mouse_scroll=\"no\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\" /][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container background_color=\"#ffffff\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"65px\" padding_bottom=\"65px\" padding_left=\"\" padding_right=\"\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][fusion_builder_row][fusion_builder_column type=\"1_1\" layout=\"1_1\" background_position=\"left top\" background_color=\"\" border_size=\"\" border_color=\"\" border_style=\"solid\" spacing=\"yes\" background_image=\"\" background_repeat=\"no-repeat\" padding_top=\"\" padding_right=\"\" padding_bottom=\"\" padding_left=\"\" margin_top=\"0px\" margin_bottom=\"0px\" class=\"\" id=\"\" animation_type=\"\" animation_speed=\"0.3\" animation_direction=\"left\" hide_on_mobile=\"no\" center_content=\"no\" min_height=\"none\" last=\"no\" hover_type=\"none\" link=\"\" border_position=\"all\"][fusion_button link=\"https://msla.co.za/lodge/reservations/\" color=\"default\" size=\"xlarge\" stretch=\"default\" type=\"3d\" shape=\"round\" target=\"_self\" title=\"\" button_gradient_top_color=\"#f0f0ed\" button_gradient_bottom_color=\"#f0f0ed\" button_gradient_top_color_hover=\"#6666a4\" button_gradient_bottom_color_hover=\"#6666a4\" accent_color=\"#ffffff\" accent_hover_color=\"#ffffff\" bevel_color=\"\" border_width=\"0px\" icon=\"\" icon_position=\"left\" icon_divider=\"no\" modal=\"\" animation_type=\"0\" animation_direction=\"left\" animation_speed=\"1\" animation_offset=\"\" alignment=\"center\" class=\"\" id=\"\"]Make A Reservation Enquiry[/fusion_button][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container]', 'Home', '', 'inherit', 'closed', 'closed', '', '7-revision-v1', '', '', '2019-11-13 18:07:19', '2019-11-13 16:07:19', '', 7, 'https://msla.co.za/lodge/7-revision-v1/', 0, 'revision', '', 0);
INSERT INTO `wp_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(1390, 1, '2019-11-13 18:08:17', '2019-11-13 16:08:17', '[fusion_builder_container background_color=\"#f0f0ed\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"20\" padding_bottom=\"20\" padding_left=\"\" padding_right=\"\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][fusion_builder_row][fusion_builder_column type=\"1_2\" layout=\"1_2\" last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"\" padding_right=\"\" padding_bottom=\"\" padding_left=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\" min_height=\"\"][fusion_separator style_type=\"single solid\" top_margin=\"0\" bottom_margin=\"30\" sep_color=\"#000000\" border_size=\"\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"170px\" alignment=\"center\" class=\"separator-left\" id=\"\" /][fusion_text]\r\n<h1 style=\"text-align: center;\">No Fancy Star Grading\r\nNo Room Service\r\nNo Bed Turn-downs\r\nNo Rose Petals in the Bath water</h1>\r\n<h1 style=\"text-align: center;\">... just old fashioned homely comforts</h1>\r\n[/fusion_text][/fusion_builder_column][fusion_builder_column type=\"1_2\" layout=\"1_2\" last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"\" padding_right=\"\" padding_bottom=\"\" padding_left=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\" min_height=\"\"][fusion_text]\r\n<h1 style=\"text-align: justify;\">5 BEDROOM FAMILY LODGE</h1>\r\n<h3 style=\"text-align: justify;\">We are a four season lodge, because there’s always something to celebrate… We offer comfort, relaxation and privacy right in the heart of 1000 Hills. The Forest, the Gardens, the Atmosphere all speak to  Rest  &amp; Relaxation.</h3>\r\n[/fusion_text][fusion_separator style_type=\"single solid\" top_margin=\"0\" bottom_margin=\"30\" sep_color=\"#000000\" border_size=\"\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"170px\" alignment=\"left\" class=\"separator-left\" id=\"\" /][fusion_title size=\"1\" content_align=\"right\" style_type=\"default\" sep_color=\"\" margin_top=\"\" margin_bottom=\"\" class=\"\" id=\"\"]\r\n<h1 style=\"text-align: center;\">Current Offers!</h1>\r\n[/fusion_title][fusion_checklist icon=\"\" iconcolor=\"#8bc34a\" circle=\"no\" circlecolor=\"\" size=\"24px\" divider=\"\" divider_color=\"\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" class=\"\" id=\"\"][fusion_li_item icon=\"\"]\r\n<h3>Book on-line - get 15% OFF your <a href=\"http://msla.co.za/lodge/reservations/\"> Accommodation</a> or...</h3>\r\n[/fusion_li_item][fusion_li_item icon=\"\"]\r\n<h3><a href=\"http://msla.co.za/lodge/reservations/\">Stay 3 days or more</a> - get 25% OFF your Accommodation</h3>\r\n[/fusion_li_item][/fusion_checklist][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container background_color=\"#f0f0ed\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"20\" padding_bottom=\"20\" padding_left=\"\" padding_right=\"\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][fusion_builder_row][fusion_builder_column type=\"1_2\" layout=\"1_2\" last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"\" padding_right=\"\" padding_bottom=\"\" padding_left=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\" min_height=\"\"][fusion_text]\r\n<h3 style=\"text-align: justify;\">Set in the rolling peaks and valleys of a thousand hills surrounded by a canopy of indigenous trees, you will find that horses still have right of way, we certainly offer the best of both worlds, farm and charm coupled with modern amenities that will have you feeling relaxed and rejuvenated.</h3>\r\n<h3 style=\"text-align: justify;\">We know that sometimes you are searching for a romantic getaway or maybe a few days away with old friends. Other times you are searching for a place to host a weekend, family reunion or a business retreat. In addition to nightly room rentals, our lodge is also available for meetings, retreats  and makes the perfect place for a wedding party to stay together and get ready for the big day. Regardless, with our five comfortable and cozy guest bedrooms, multiple garden spaces and hideaways, and a  large private deck  where you can take a nap or read a book we definitely have the room for you!</h3>\r\n<h3 style=\"text-align: justify;\">Evenings are quiet and peaceful taking you far away from the business of city life. This is a unique and memorable country experience. We look forward to having you as a guest!</h3>\r\n[/fusion_text][/fusion_builder_column][fusion_builder_column type=\"1_2\" layout=\"1_2\" last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"\" padding_right=\"\" padding_bottom=\"\" padding_left=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\" min_height=\"\"][fusion_text]\r\n<h3 style=\"text-align: justify;\">Our lodge has been in our family for years and has recently been beautifully renovated. Five rooms all with en-suite showers lead off your own large central lounge, featuring a 36 foot high vaulted ceiling, offering spacious living, dining, and a bar/conversational lounge area which includes a fitted kitchenette, all adding to a sense of homely comfort. Sumptuous meals can be provided on request and served on the bottom deck at the swimming pool.</h3>\r\n<h3 style=\"text-align: justify;\">Be lulled to sleep by the sound of the waterfall and tinkling stream just outside your window, waking from a peaceful night\'s sleep in a pillow-top bed dressed in luxurious linens to coddle you in ultimate comfort.</h3>\r\n<h3 style=\"text-align: justify;\">Our property boasts many different species of birds and animals. We have a resident otter, a family of wild bush pigs,  a family of rock rabbits, porcupine, little blue duikers, a variety of different frogs and an abundance of bird life, including the occasional snakes that pass through!</h3>\r\n[/fusion_text][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container background_color=\"#f0f0ed\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"20\" padding_bottom=\"20\" padding_left=\"\" padding_right=\"\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][fusion_builder_row][fusion_builder_column type=\"1_1\" layout=\"1_1\" background_position=\"left top\" background_color=\"\" border_size=\"\" border_color=\"\" border_style=\"solid\" spacing=\"yes\" background_image=\"\" background_repeat=\"no-repeat\" padding_top=\"\" padding_right=\"\" padding_bottom=\"\" padding_left=\"\" margin_top=\"0px\" margin_bottom=\"0px\" class=\"\" id=\"\" animation_type=\"\" animation_speed=\"0.3\" animation_direction=\"left\" hide_on_mobile=\"no\" center_content=\"no\" min_height=\"none\" last=\"no\" hover_type=\"none\" link=\"\" border_position=\"all\"][fusion_text]\r\n<h1 style=\"text-align: center;\">Gallery</h1>\r\n[/fusion_text][fusion_separator style_type=\"single solid\" top_margin=\"\" bottom_margin=\"40\" sep_color=\"#000000\" border_size=\"\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"170px\" alignment=\"\" class=\"\" id=\"\" /][/fusion_builder_column][fusion_builder_column type=\"1_6\" layout=\"1_6\" last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding_top=\"\" padding_right=\"\" padding_bottom=\"\" padding_left=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\" min_height=\"\"][/fusion_builder_column][fusion_builder_column type=\"2_3\" layout=\"2_3\" last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding_top=\"\" padding_right=\"\" padding_bottom=\"\" padding_left=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\" min_height=\"\"][fusion_text]\r\n<h3 style=\"text-align: justify;\">The Lodge is open, spacious, comfortable and homely. During hot summer days, sit and bask in the sun on the deck  with one of our  picnic specials. In winter, snuggle up with a good book or challenge one another to a friendly board game in the glassed nook area .</h3>\r\n[/fusion_text][/fusion_builder_column][fusion_builder_column type=\"1_6\" layout=\"1_6\" last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding_top=\"\" padding_right=\"\" padding_bottom=\"\" padding_left=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\" min_height=\"\"][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container background_color=\"#f0f0ed\" background_image=\"http://localhost/assagaylodge/wp-content/uploads/2015/01/Wood_Texture.jpg\" background_parallax=\"fixed\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"30\" padding_bottom=\"10\" padding_left=\"0\" padding_right=\"0\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][fusion_builder_row][fusion_builder_column type=\"1_1\" layout=\"1_1\" background_position=\"left top\" background_color=\"\" border_size=\"\" border_color=\"\" border_style=\"solid\" spacing=\"yes\" background_image=\"\" background_repeat=\"no-repeat\" padding_top=\"\" padding_right=\"\" padding_bottom=\"\" padding_left=\"\" margin_top=\"0px\" margin_bottom=\"0px\" class=\"\" id=\"\" animation_type=\"\" animation_speed=\"0.3\" animation_direction=\"left\" hide_on_mobile=\"no\" center_content=\"no\" min_height=\"none\" last=\"no\" hover_type=\"none\" link=\"\" border_position=\"all\"][fusion_portfolio layout=\"grid\" picture_size=\"auto\" text_layout=\"no_text\" filters=\"no\" columns=\"3\" column_spacing=\"12\" cat_slug=\"the-lodge\" exclude_cats=\"\" number_posts=\"9\" offset=\"\" excerpt_length=\"35\" strip_html=\"yes\" carousel_layout=\"title_on_rollover\" scroll_items=\"\" autoplay=\"no\" show_nav=\"yes\" mouse_scroll=\"no\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\" /][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container background_color=\"#f0f0ed\" background_image=\"\" background_parallax=\"fixed\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"20\" padding_bottom=\"20\" padding_left=\"\" padding_right=\"\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][fusion_builder_row][fusion_builder_column type=\"1_1\" layout=\"1_1\" background_position=\"left top\" background_color=\"\" border_size=\"\" border_color=\"\" border_style=\"solid\" spacing=\"yes\" background_image=\"\" background_repeat=\"no-repeat\" padding_top=\"\" padding_right=\"\" padding_bottom=\"\" padding_left=\"\" margin_top=\"0px\" margin_bottom=\"0px\" class=\"\" id=\"\" animation_type=\"\" animation_speed=\"0.3\" animation_direction=\"left\" hide_on_mobile=\"no\" center_content=\"no\" min_height=\"none\" last=\"no\" hover_type=\"none\" link=\"\" border_position=\"all\"][fusion_text]\r\n<h1 style=\"text-align: center;\">BEDROOMS</h1>\r\n[/fusion_text][fusion_separator style_type=\"single solid\" top_margin=\"\" bottom_margin=\"20\" sep_color=\"#000000\" border_size=\"\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"170px\" alignment=\"\" class=\"\" id=\"\" /][/fusion_builder_column][fusion_builder_column type=\"1_6\" layout=\"1_6\" last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding_top=\"\" padding_right=\"\" padding_bottom=\"\" padding_left=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\" min_height=\"\"][/fusion_builder_column][fusion_builder_column type=\"2_3\" layout=\"2_3\" last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding_top=\"\" padding_right=\"\" padding_bottom=\"\" padding_left=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\" min_height=\"\"][fusion_text]\r\n<h3 style=\"text-align: justify;\">When it comes to our bedrooms we’re proud to say we offer something a little more special. One of five  lovingly and tastefully decorated guest rooms. Soft gray decor soothes the senses providing a peaceful, blissfully comfortable rest from your travels and hectic lives.</h3>\r\n<h3 style=\"text-align: justify;\">Our  bedrooms are spacious, clean, comfortable all en-suite, equipped with either king size or queen size beds. Each room sleeps two guests. The rooms have high ceilings, wall heaters &amp; ceiling fans. Beds all have electric blankets in Winter, 100% cotton percale sheets and thick hyper allergenic microfiber duvets and pillows. All guest rooms are cleaned with organic and green products. Amenities include hairdryers in each room. Three rooms feature King-sized beds  of which two can be  split into two single beds. Two  rooms can therefore be changed into a twin room upon request. Two rooms feature a Queen-sized double bed. These beds cannot be split into twin beds.</h3>\r\n[/fusion_text][/fusion_builder_column][fusion_builder_column type=\"1_6\" layout=\"1_6\" last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding_top=\"\" padding_right=\"\" padding_bottom=\"\" padding_left=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\" min_height=\"\"][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container background_color=\"\" background_image=\"http://localhost/assagaylodge/wp-content/uploads/2015/01/DSC01516-1148-x-764.jpg\" background_parallax=\"fixed\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"center center\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"20\" padding_bottom=\"20\" padding_left=\"0\" padding_right=\"0\" hundred_percent=\"no\" equal_height_columns=\"yes\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][fusion_builder_row][fusion_builder_column type=\"1_1\" layout=\"1_1\" background_position=\"left top\" background_color=\"\" border_size=\"\" border_color=\"\" border_style=\"solid\" spacing=\"yes\" background_image=\"\" background_repeat=\"no-repeat\" padding_top=\"\" padding_right=\"\" padding_bottom=\"\" padding_left=\"\" margin_top=\"0px\" margin_bottom=\"0px\" class=\"\" id=\"\" animation_type=\"\" animation_speed=\"0.3\" animation_direction=\"left\" hide_on_mobile=\"no\" center_content=\"no\" min_height=\"none\" last=\"no\" hover_type=\"none\" link=\"\" border_position=\"all\"][fusion_portfolio layout=\"grid\" picture_size=\"auto\" text_layout=\"no_text\" filters=\"no\" columns=\"3\" column_spacing=\"12\" cat_slug=\"bedrooms\" exclude_cats=\"\" number_posts=\"6\" offset=\"\" excerpt_length=\"35\" strip_html=\"yes\" carousel_layout=\"title_on_rollover\" scroll_items=\"\" autoplay=\"no\" show_nav=\"yes\" mouse_scroll=\"no\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\" /][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container background_color=\"#f0f0ed\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"20\" padding_bottom=\"20\" padding_left=\"0\" padding_right=\"0\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][fusion_builder_row][fusion_builder_column type=\"1_1\" layout=\"1_1\" background_position=\"left top\" background_color=\"\" border_size=\"\" border_color=\"\" border_style=\"solid\" spacing=\"yes\" background_image=\"\" background_repeat=\"no-repeat\" padding_top=\"\" padding_right=\"\" padding_bottom=\"\" padding_left=\"\" margin_top=\"0px\" margin_bottom=\"0px\" class=\"\" id=\"\" animation_type=\"\" animation_speed=\"0.3\" animation_direction=\"left\" hide_on_mobile=\"no\" center_content=\"no\" min_height=\"none\" last=\"no\" hover_type=\"none\" link=\"\" border_position=\"all\"][fusion_text]\r\n<h1 style=\"text-align: center;\">GARDENS</h1>\r\n[/fusion_text][fusion_separator style_type=\"single solid\" top_margin=\"\" bottom_margin=\"20\" sep_color=\"#000000\" border_size=\"\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"170px\" alignment=\"\" class=\"\" id=\"\" /][/fusion_builder_column][fusion_builder_column type=\"1_6\" layout=\"1_6\" last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding_top=\"\" padding_right=\"\" padding_bottom=\"\" padding_left=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\" min_height=\"\"][/fusion_builder_column][fusion_builder_column type=\"2_3\" layout=\"2_3\" last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding_top=\"\" padding_right=\"\" padding_bottom=\"\" padding_left=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\" min_height=\"\"][fusion_text]\r\n<h3 style=\"text-align: justify;\">The garden is large and offers many secluded spots to lose yourself in a book with a glass of wine underneath the shade of a tree, listening to the sounds of the birds and smelling the beautiful flowers.</h3>\r\n[/fusion_text][/fusion_builder_column][fusion_builder_column type=\"1_6\" layout=\"1_6\" last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding_top=\"\" padding_right=\"\" padding_bottom=\"\" padding_left=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\" min_height=\"\"][/fusion_builder_column][fusion_builder_column type=\"1_1\" layout=\"1_1\" background_position=\"left top\" background_color=\"\" border_size=\"\" border_color=\"\" border_style=\"solid\" spacing=\"yes\" background_image=\"\" background_repeat=\"no-repeat\" padding_top=\"\" padding_right=\"\" padding_bottom=\"\" padding_left=\"\" margin_top=\"0px\" margin_bottom=\"0px\" class=\"\" id=\"\" animation_type=\"\" animation_speed=\"0.3\" animation_direction=\"left\" hide_on_mobile=\"no\" center_content=\"no\" min_height=\"none\" last=\"no\" hover_type=\"none\" link=\"\" border_position=\"all\"][fusion_portfolio layout=\"grid\" picture_size=\"auto\" text_layout=\"no_text\" filters=\"no\" columns=\"3\" column_spacing=\"12\" cat_slug=\"gardens\" exclude_cats=\"\" number_posts=\"9\" offset=\"\" excerpt_length=\"35\" strip_html=\"yes\" carousel_layout=\"title_on_rollover\" scroll_items=\"\" autoplay=\"no\" show_nav=\"yes\" mouse_scroll=\"no\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\" /][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container background_color=\"#ffffff\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"65px\" padding_bottom=\"65px\" padding_left=\"\" padding_right=\"\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][fusion_builder_row][fusion_builder_column type=\"1_1\" layout=\"1_1\" background_position=\"left top\" background_color=\"\" border_size=\"\" border_color=\"\" border_style=\"solid\" spacing=\"yes\" background_image=\"\" background_repeat=\"no-repeat\" padding_top=\"\" padding_right=\"\" padding_bottom=\"\" padding_left=\"\" margin_top=\"0px\" margin_bottom=\"0px\" class=\"\" id=\"\" animation_type=\"\" animation_speed=\"0.3\" animation_direction=\"left\" hide_on_mobile=\"no\" center_content=\"no\" min_height=\"none\" last=\"no\" hover_type=\"none\" link=\"\" border_position=\"all\"][fusion_button link=\"https://msla.co.za/lodge/reservations/\" color=\"default\" size=\"xlarge\" stretch=\"default\" type=\"3d\" shape=\"round\" target=\"_self\" title=\"\" button_gradient_top_color=\"#f0f0ed\" button_gradient_bottom_color=\"#f0f0ed\" button_gradient_top_color_hover=\"#6666a4\" button_gradient_bottom_color_hover=\"#6666a4\" accent_color=\"#ffffff\" accent_hover_color=\"#ffffff\" bevel_color=\"\" border_width=\"0px\" icon=\"\" icon_position=\"left\" icon_divider=\"no\" modal=\"\" animation_type=\"0\" animation_direction=\"left\" animation_speed=\"1\" animation_offset=\"\" alignment=\"center\" class=\"\" id=\"\"]Make A Reservation Enquiry[/fusion_button][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container]', 'Home', '', 'inherit', 'closed', 'closed', '', '7-revision-v1', '', '', '2019-11-13 18:08:17', '2019-11-13 16:08:17', '', 7, 'https://msla.co.za/lodge/7-revision-v1/', 0, 'revision', '', 0);
INSERT INTO `wp_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(1391, 1, '2019-11-13 18:13:03', '2019-11-13 16:13:03', '[fusion_builder_container background_color=\"#f0f0ed\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"20\" padding_bottom=\"20\" padding_left=\"\" padding_right=\"\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][fusion_builder_row][fusion_builder_column type=\"1_2\" layout=\"1_2\" last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"\" padding_right=\"\" padding_bottom=\"\" padding_left=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\" min_height=\"\"][fusion_separator style_type=\"single solid\" top_margin=\"0\" bottom_margin=\"30\" sep_color=\"#000000\" border_size=\"\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"170px\" alignment=\"center\" class=\"separator-left\" id=\"\" /][fusion_text]\r\n<h1 style=\"text-align: center;\">No Fancy Star Grading\r\nNo Room Service\r\nNo Bed Turn-downs\r\nNo Rose Petals in the Bath water</h1>\r\n<h1 style=\"text-align: center;\">... just old fashioned homely comforts</h1>\r\n[/fusion_text][/fusion_builder_column][fusion_builder_column type=\"1_2\" layout=\"1_2\" last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"\" padding_right=\"\" padding_bottom=\"\" padding_left=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\" min_height=\"\"][fusion_text]\r\n<h1 style=\"text-align: justify;\">5 BEDROOM FAMILY LODGE</h1>\r\n<h3 style=\"text-align: justify;\">We are a four season lodge, because there’s always something to celebrate… We offer comfort, relaxation and privacy right in the heart of 1000 Hills. The Forest, the Gardens, the Atmosphere all speak to  Rest  &amp; Relaxation.</h3>\r\n[/fusion_text][fusion_separator style_type=\"single solid\" top_margin=\"0\" bottom_margin=\"30\" sep_color=\"#000000\" border_size=\"\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"170px\" alignment=\"left\" class=\"separator-left\" id=\"\" /][fusion_title size=\"1\" content_align=\"right\" style_type=\"default\" sep_color=\"\" margin_top=\"\" margin_bottom=\"\" class=\"\" id=\"\"]\r\n<h1 style=\"text-align: center;\">Current Offers!</h1>\r\n[/fusion_title][fusion_checklist icon=\"\" iconcolor=\"#8bc34a\" circle=\"no\" circlecolor=\"\" size=\"24px\" divider=\"\" divider_color=\"\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" class=\"\" id=\"\"][fusion_li_item icon=\"\"]\r\n<h3>Book on-line - get 15% OFF your <a href=\"http://msla.co.za/lodge/reservations/\"> Accommodation</a> or...</h3>\r\n[/fusion_li_item][fusion_li_item icon=\"\"]\r\n<h3><a href=\"http://msla.co.za/lodge/reservations/\">Stay 3 days or more</a> - get 25% OFF your Accommodation</h3>\r\n[/fusion_li_item][/fusion_checklist][fusion_tagline_box backgroundcolor=\"\" shadow=\"yes\" shadowopacity=\"0.70\" border=\"1\" bordercolor=\"\" highlightposition=\"none\" content_alignment=\"center\" link=\"http://msla.co.za/lodge/reservations\" button=\"Book on-line - get 15% OFF your Accommodation\" linktarget=\"_self\" modal=\"\" button_size=\"large\" button_type=\"\" button_shape=\"square\" buttoncolor=\"default\" title=\"WW91ciBDb250ZW50IEdvZXMgSGVyZQ==\" description=\"WW91ciBDb250ZW50IEdvZXMgSGVyZQ==\" margin_top=\"\" margin_bottom=\"\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" class=\"\" id=\"\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"\"]\r\n\r\nYour Content Goes Here\r\n\r\n[/fusion_tagline_box][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container background_color=\"#f0f0ed\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"20\" padding_bottom=\"20\" padding_left=\"\" padding_right=\"\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][fusion_builder_row][fusion_builder_column type=\"1_2\" layout=\"1_2\" last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"\" padding_right=\"\" padding_bottom=\"\" padding_left=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\" min_height=\"\"][fusion_text]\r\n<h3 style=\"text-align: justify;\">Set in the rolling peaks and valleys of a thousand hills surrounded by a canopy of indigenous trees, you will find that horses still have right of way, we certainly offer the best of both worlds, farm and charm coupled with modern amenities that will have you feeling relaxed and rejuvenated.</h3>\r\n<h3 style=\"text-align: justify;\">We know that sometimes you are searching for a romantic getaway or maybe a few days away with old friends. Other times you are searching for a place to host a weekend, family reunion or a business retreat. In addition to nightly room rentals, our lodge is also available for meetings, retreats  and makes the perfect place for a wedding party to stay together and get ready for the big day. Regardless, with our five comfortable and cozy guest bedrooms, multiple garden spaces and hideaways, and a  large private deck  where you can take a nap or read a book we definitely have the room for you!</h3>\r\n<h3 style=\"text-align: justify;\">Evenings are quiet and peaceful taking you far away from the business of city life. This is a unique and memorable country experience. We look forward to having you as a guest!</h3>\r\n[/fusion_text][/fusion_builder_column][fusion_builder_column type=\"1_2\" layout=\"1_2\" last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"\" padding_right=\"\" padding_bottom=\"\" padding_left=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\" min_height=\"\"][fusion_text]\r\n<h3 style=\"text-align: justify;\">Our lodge has been in our family for years and has recently been beautifully renovated. Five rooms all with en-suite showers lead off your own large central lounge, featuring a 36 foot high vaulted ceiling, offering spacious living, dining, and a bar/conversational lounge area which includes a fitted kitchenette, all adding to a sense of homely comfort. Sumptuous meals can be provided on request and served on the bottom deck at the swimming pool.</h3>\r\n<h3 style=\"text-align: justify;\">Be lulled to sleep by the sound of the waterfall and tinkling stream just outside your window, waking from a peaceful night\'s sleep in a pillow-top bed dressed in luxurious linens to coddle you in ultimate comfort.</h3>\r\n<h3 style=\"text-align: justify;\">Our property boasts many different species of birds and animals. We have a resident otter, a family of wild bush pigs,  a family of rock rabbits, porcupine, little blue duikers, a variety of different frogs and an abundance of bird life, including the occasional snakes that pass through!</h3>\r\n[/fusion_text][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container background_color=\"#f0f0ed\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"20\" padding_bottom=\"20\" padding_left=\"\" padding_right=\"\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][fusion_builder_row][fusion_builder_column type=\"1_1\" layout=\"1_1\" background_position=\"left top\" background_color=\"\" border_size=\"\" border_color=\"\" border_style=\"solid\" spacing=\"yes\" background_image=\"\" background_repeat=\"no-repeat\" padding_top=\"\" padding_right=\"\" padding_bottom=\"\" padding_left=\"\" margin_top=\"0px\" margin_bottom=\"0px\" class=\"\" id=\"\" animation_type=\"\" animation_speed=\"0.3\" animation_direction=\"left\" hide_on_mobile=\"no\" center_content=\"no\" min_height=\"none\" last=\"no\" hover_type=\"none\" link=\"\" border_position=\"all\"][fusion_text]\r\n<h1 style=\"text-align: center;\">Gallery</h1>\r\n[/fusion_text][fusion_separator style_type=\"single solid\" top_margin=\"\" bottom_margin=\"40\" sep_color=\"#000000\" border_size=\"\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"170px\" alignment=\"\" class=\"\" id=\"\" /][/fusion_builder_column][fusion_builder_column type=\"1_6\" layout=\"1_6\" last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding_top=\"\" padding_right=\"\" padding_bottom=\"\" padding_left=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\" min_height=\"\"][/fusion_builder_column][fusion_builder_column type=\"2_3\" layout=\"2_3\" last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding_top=\"\" padding_right=\"\" padding_bottom=\"\" padding_left=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\" min_height=\"\"][fusion_text]\r\n<h3 style=\"text-align: justify;\">The Lodge is open, spacious, comfortable and homely. During hot summer days, sit and bask in the sun on the deck  with one of our  picnic specials. In winter, snuggle up with a good book or challenge one another to a friendly board game in the glassed nook area .</h3>\r\n[/fusion_text][/fusion_builder_column][fusion_builder_column type=\"1_6\" layout=\"1_6\" last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding_top=\"\" padding_right=\"\" padding_bottom=\"\" padding_left=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\" min_height=\"\"][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container background_color=\"#f0f0ed\" background_image=\"http://localhost/assagaylodge/wp-content/uploads/2015/01/Wood_Texture.jpg\" background_parallax=\"fixed\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"30\" padding_bottom=\"10\" padding_left=\"0\" padding_right=\"0\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][fusion_builder_row][fusion_builder_column type=\"1_1\" layout=\"1_1\" background_position=\"left top\" background_color=\"\" border_size=\"\" border_color=\"\" border_style=\"solid\" spacing=\"yes\" background_image=\"\" background_repeat=\"no-repeat\" padding_top=\"\" padding_right=\"\" padding_bottom=\"\" padding_left=\"\" margin_top=\"0px\" margin_bottom=\"0px\" class=\"\" id=\"\" animation_type=\"\" animation_speed=\"0.3\" animation_direction=\"left\" hide_on_mobile=\"no\" center_content=\"no\" min_height=\"none\" last=\"no\" hover_type=\"none\" link=\"\" border_position=\"all\"][fusion_portfolio layout=\"grid\" picture_size=\"auto\" text_layout=\"no_text\" filters=\"no\" columns=\"3\" column_spacing=\"12\" cat_slug=\"the-lodge\" exclude_cats=\"\" number_posts=\"9\" offset=\"\" excerpt_length=\"35\" strip_html=\"yes\" carousel_layout=\"title_on_rollover\" scroll_items=\"\" autoplay=\"no\" show_nav=\"yes\" mouse_scroll=\"no\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\" /][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container background_color=\"#f0f0ed\" background_image=\"\" background_parallax=\"fixed\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"20\" padding_bottom=\"20\" padding_left=\"\" padding_right=\"\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][fusion_builder_row][fusion_builder_column type=\"1_1\" layout=\"1_1\" background_position=\"left top\" background_color=\"\" border_size=\"\" border_color=\"\" border_style=\"solid\" spacing=\"yes\" background_image=\"\" background_repeat=\"no-repeat\" padding_top=\"\" padding_right=\"\" padding_bottom=\"\" padding_left=\"\" margin_top=\"0px\" margin_bottom=\"0px\" class=\"\" id=\"\" animation_type=\"\" animation_speed=\"0.3\" animation_direction=\"left\" hide_on_mobile=\"no\" center_content=\"no\" min_height=\"none\" last=\"no\" hover_type=\"none\" link=\"\" border_position=\"all\"][fusion_text]\r\n<h1 style=\"text-align: center;\">BEDROOMS</h1>\r\n[/fusion_text][fusion_separator style_type=\"single solid\" top_margin=\"\" bottom_margin=\"20\" sep_color=\"#000000\" border_size=\"\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"170px\" alignment=\"\" class=\"\" id=\"\" /][/fusion_builder_column][fusion_builder_column type=\"1_6\" layout=\"1_6\" last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding_top=\"\" padding_right=\"\" padding_bottom=\"\" padding_left=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\" min_height=\"\"][/fusion_builder_column][fusion_builder_column type=\"2_3\" layout=\"2_3\" last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding_top=\"\" padding_right=\"\" padding_bottom=\"\" padding_left=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\" min_height=\"\"][fusion_text]\r\n<h3 style=\"text-align: justify;\">When it comes to our bedrooms we’re proud to say we offer something a little more special. One of five  lovingly and tastefully decorated guest rooms. Soft gray decor soothes the senses providing a peaceful, blissfully comfortable rest from your travels and hectic lives.</h3>\r\n<h3 style=\"text-align: justify;\">Our  bedrooms are spacious, clean, comfortable all en-suite, equipped with either king size or queen size beds. Each room sleeps two guests. The rooms have high ceilings, wall heaters &amp; ceiling fans. Beds all have electric blankets in Winter, 100% cotton percale sheets and thick hyper allergenic microfiber duvets and pillows. All guest rooms are cleaned with organic and green products. Amenities include hairdryers in each room. Three rooms feature King-sized beds  of which two can be  split into two single beds. Two  rooms can therefore be changed into a twin room upon request. Two rooms feature a Queen-sized double bed. These beds cannot be split into twin beds.</h3>\r\n[/fusion_text][/fusion_builder_column][fusion_builder_column type=\"1_6\" layout=\"1_6\" last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding_top=\"\" padding_right=\"\" padding_bottom=\"\" padding_left=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\" min_height=\"\"][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container background_color=\"\" background_image=\"http://localhost/assagaylodge/wp-content/uploads/2015/01/DSC01516-1148-x-764.jpg\" background_parallax=\"fixed\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"center center\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"20\" padding_bottom=\"20\" padding_left=\"0\" padding_right=\"0\" hundred_percent=\"no\" equal_height_columns=\"yes\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][fusion_builder_row][fusion_builder_column type=\"1_1\" layout=\"1_1\" background_position=\"left top\" background_color=\"\" border_size=\"\" border_color=\"\" border_style=\"solid\" spacing=\"yes\" background_image=\"\" background_repeat=\"no-repeat\" padding_top=\"\" padding_right=\"\" padding_bottom=\"\" padding_left=\"\" margin_top=\"0px\" margin_bottom=\"0px\" class=\"\" id=\"\" animation_type=\"\" animation_speed=\"0.3\" animation_direction=\"left\" hide_on_mobile=\"no\" center_content=\"no\" min_height=\"none\" last=\"no\" hover_type=\"none\" link=\"\" border_position=\"all\"][fusion_portfolio layout=\"grid\" picture_size=\"auto\" text_layout=\"no_text\" filters=\"no\" columns=\"3\" column_spacing=\"12\" cat_slug=\"bedrooms\" exclude_cats=\"\" number_posts=\"6\" offset=\"\" excerpt_length=\"35\" strip_html=\"yes\" carousel_layout=\"title_on_rollover\" scroll_items=\"\" autoplay=\"no\" show_nav=\"yes\" mouse_scroll=\"no\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\" /][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container background_color=\"#f0f0ed\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"20\" padding_bottom=\"20\" padding_left=\"0\" padding_right=\"0\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][fusion_builder_row][fusion_builder_column type=\"1_1\" layout=\"1_1\" background_position=\"left top\" background_color=\"\" border_size=\"\" border_color=\"\" border_style=\"solid\" spacing=\"yes\" background_image=\"\" background_repeat=\"no-repeat\" padding_top=\"\" padding_right=\"\" padding_bottom=\"\" padding_left=\"\" margin_top=\"0px\" margin_bottom=\"0px\" class=\"\" id=\"\" animation_type=\"\" animation_speed=\"0.3\" animation_direction=\"left\" hide_on_mobile=\"no\" center_content=\"no\" min_height=\"none\" last=\"no\" hover_type=\"none\" link=\"\" border_position=\"all\"][fusion_text]\r\n<h1 style=\"text-align: center;\">GARDENS</h1>\r\n[/fusion_text][fusion_separator style_type=\"single solid\" top_margin=\"\" bottom_margin=\"20\" sep_color=\"#000000\" border_size=\"\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"170px\" alignment=\"\" class=\"\" id=\"\" /][/fusion_builder_column][fusion_builder_column type=\"1_6\" layout=\"1_6\" last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding_top=\"\" padding_right=\"\" padding_bottom=\"\" padding_left=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\" min_height=\"\"][/fusion_builder_column][fusion_builder_column type=\"2_3\" layout=\"2_3\" last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding_top=\"\" padding_right=\"\" padding_bottom=\"\" padding_left=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\" min_height=\"\"][fusion_text]\r\n<h3 style=\"text-align: justify;\">The garden is large and offers many secluded spots to lose yourself in a book with a glass of wine underneath the shade of a tree, listening to the sounds of the birds and smelling the beautiful flowers.</h3>\r\n[/fusion_text][/fusion_builder_column][fusion_builder_column type=\"1_6\" layout=\"1_6\" last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding_top=\"\" padding_right=\"\" padding_bottom=\"\" padding_left=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\" min_height=\"\"][/fusion_builder_column][fusion_builder_column type=\"1_1\" layout=\"1_1\" background_position=\"left top\" background_color=\"\" border_size=\"\" border_color=\"\" border_style=\"solid\" spacing=\"yes\" background_image=\"\" background_repeat=\"no-repeat\" padding_top=\"\" padding_right=\"\" padding_bottom=\"\" padding_left=\"\" margin_top=\"0px\" margin_bottom=\"0px\" class=\"\" id=\"\" animation_type=\"\" animation_speed=\"0.3\" animation_direction=\"left\" hide_on_mobile=\"no\" center_content=\"no\" min_height=\"none\" last=\"no\" hover_type=\"none\" link=\"\" border_position=\"all\"][fusion_portfolio layout=\"grid\" picture_size=\"auto\" text_layout=\"no_text\" filters=\"no\" columns=\"3\" column_spacing=\"12\" cat_slug=\"gardens\" exclude_cats=\"\" number_posts=\"9\" offset=\"\" excerpt_length=\"35\" strip_html=\"yes\" carousel_layout=\"title_on_rollover\" scroll_items=\"\" autoplay=\"no\" show_nav=\"yes\" mouse_scroll=\"no\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\" /][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container background_color=\"#ffffff\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"65px\" padding_bottom=\"65px\" padding_left=\"\" padding_right=\"\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][fusion_builder_row][fusion_builder_column type=\"1_1\" layout=\"1_1\" background_position=\"left top\" background_color=\"\" border_size=\"\" border_color=\"\" border_style=\"solid\" spacing=\"yes\" background_image=\"\" background_repeat=\"no-repeat\" padding_top=\"\" padding_right=\"\" padding_bottom=\"\" padding_left=\"\" margin_top=\"0px\" margin_bottom=\"0px\" class=\"\" id=\"\" animation_type=\"\" animation_speed=\"0.3\" animation_direction=\"left\" hide_on_mobile=\"no\" center_content=\"no\" min_height=\"none\" last=\"no\" hover_type=\"none\" link=\"\" border_position=\"all\"][fusion_button link=\"https://msla.co.za/lodge/reservations/\" color=\"default\" size=\"xlarge\" stretch=\"default\" type=\"3d\" shape=\"round\" target=\"_self\" title=\"\" button_gradient_top_color=\"#f0f0ed\" button_gradient_bottom_color=\"#f0f0ed\" button_gradient_top_color_hover=\"#6666a4\" button_gradient_bottom_color_hover=\"#6666a4\" accent_color=\"#ffffff\" accent_hover_color=\"#ffffff\" bevel_color=\"\" border_width=\"0px\" icon=\"\" icon_position=\"left\" icon_divider=\"no\" modal=\"\" animation_type=\"0\" animation_direction=\"left\" animation_speed=\"1\" animation_offset=\"\" alignment=\"center\" class=\"\" id=\"\"]Make A Reservation Enquiry[/fusion_button][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container]', 'Home', '', 'inherit', 'closed', 'closed', '', '7-revision-v1', '', '', '2019-11-13 18:13:03', '2019-11-13 16:13:03', '', 7, 'https://msla.co.za/lodge/7-revision-v1/', 0, 'revision', '', 0);
INSERT INTO `wp_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(1392, 1, '2019-11-13 18:15:57', '2019-11-13 16:15:57', '[fusion_builder_container background_color=\"#f0f0ed\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"20\" padding_bottom=\"20\" padding_left=\"\" padding_right=\"\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][fusion_builder_row][fusion_builder_column type=\"1_2\" layout=\"1_2\" last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"\" padding_right=\"\" padding_bottom=\"\" padding_left=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\" min_height=\"\"][fusion_separator style_type=\"single solid\" top_margin=\"0\" bottom_margin=\"30\" sep_color=\"#000000\" border_size=\"\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"170px\" alignment=\"center\" class=\"separator-left\" id=\"\" /][fusion_text]\r\n<h1 style=\"text-align: center;\">No Fancy Star Grading\r\nNo Room Service\r\nNo Bed Turn-downs\r\nNo Rose Petals in the Bath water</h1>\r\n<h1 style=\"text-align: center;\">... just old fashioned homely comforts</h1>\r\n[/fusion_text][/fusion_builder_column][fusion_builder_column type=\"1_2\" layout=\"1_2\" last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"\" padding_right=\"\" padding_bottom=\"\" padding_left=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\" min_height=\"\"][fusion_text]\r\n<h1 style=\"text-align: justify;\">5 BEDROOM FAMILY LODGE</h1>\r\n<h3 style=\"text-align: justify;\">We are a four season lodge, because there’s always something to celebrate… We offer comfort, relaxation and privacy right in the heart of 1000 Hills. The Forest, the Gardens, the Atmosphere all speak to  Rest  &amp; Relaxation.</h3>\r\n[/fusion_text][fusion_separator style_type=\"single solid\" top_margin=\"0\" bottom_margin=\"30\" sep_color=\"#000000\" border_size=\"\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"170px\" alignment=\"left\" class=\"separator-left\" id=\"\" /][fusion_title size=\"1\" content_align=\"right\" style_type=\"default\" sep_color=\"\" margin_top=\"\" margin_bottom=\"\" class=\"\" id=\"\"]\r\n<h1 style=\"text-align: center;\">Current Offers!</h1>\r\n[/fusion_title][fusion_checklist icon=\"\" iconcolor=\"#8bc34a\" circle=\"no\" circlecolor=\"\" size=\"24px\" divider=\"\" divider_color=\"\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" class=\"\" id=\"\"][fusion_li_item icon=\"\"]\r\n<h3>Book on-line - get 15% OFF your <a href=\"http://msla.co.za/lodge/reservations/\"> Accommodation</a> or...</h3>\r\n[/fusion_li_item][fusion_li_item icon=\"\"]\r\n<h3><a href=\"http://msla.co.za/lodge/reservations/\">Stay 3 days or more</a> - get 25% OFF your Accommodation</h3>\r\n[/fusion_li_item][/fusion_checklist][fusion_tagline_box backgroundcolor=\"\" shadow=\"yes\" shadowopacity=\"0.70\" border=\"1\" bordercolor=\"\" highlightposition=\"none\" content_alignment=\"center\" link=\"http://msla.co.za/lodge/reservations\" button=\"Book on-line - get 15% OFF your Accommodation\" linktarget=\"_self\" modal=\"\" button_size=\"large\" button_type=\"\" button_shape=\"square\" buttoncolor=\"default\" title=\"\" description=\"\" margin_top=\"\" margin_bottom=\"\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" class=\"\" id=\"\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"\"]\r\n\r\nYour Content Goes Here\r\n\r\n[/fusion_tagline_box][fusion_tagline_box backgroundcolor=\"\" shadow=\"yes\" shadowopacity=\"0.70\" border=\"1\" bordercolor=\"\" highlightposition=\"none\" content_alignment=\"center\" link=\"http://msla.co.za/lodge/reservations\" button=\"Stay 3 days or more - get 25% OFF your Accommodation\" linktarget=\"_self\" modal=\"\" button_size=\"large\" button_type=\"\" button_shape=\"square\" buttoncolor=\"default\" title=\"\" description=\"\" margin_top=\"\" margin_bottom=\"\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" class=\"\" id=\"\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"\" /][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container background_color=\"#f0f0ed\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"20\" padding_bottom=\"20\" padding_left=\"\" padding_right=\"\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][fusion_builder_row][fusion_builder_column type=\"1_2\" layout=\"1_2\" last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"\" padding_right=\"\" padding_bottom=\"\" padding_left=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\" min_height=\"\"][fusion_text]\r\n<h3 style=\"text-align: justify;\">Set in the rolling peaks and valleys of a thousand hills surrounded by a canopy of indigenous trees, you will find that horses still have right of way, we certainly offer the best of both worlds, farm and charm coupled with modern amenities that will have you feeling relaxed and rejuvenated.</h3>\r\n<h3 style=\"text-align: justify;\">We know that sometimes you are searching for a romantic getaway or maybe a few days away with old friends. Other times you are searching for a place to host a weekend, family reunion or a business retreat. In addition to nightly room rentals, our lodge is also available for meetings, retreats  and makes the perfect place for a wedding party to stay together and get ready for the big day. Regardless, with our five comfortable and cozy guest bedrooms, multiple garden spaces and hideaways, and a  large private deck  where you can take a nap or read a book we definitely have the room for you!</h3>\r\n<h3 style=\"text-align: justify;\">Evenings are quiet and peaceful taking you far away from the business of city life. This is a unique and memorable country experience. We look forward to having you as a guest!</h3>\r\n[/fusion_text][/fusion_builder_column][fusion_builder_column type=\"1_2\" layout=\"1_2\" last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"\" padding_right=\"\" padding_bottom=\"\" padding_left=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\" min_height=\"\"][fusion_text]\r\n<h3 style=\"text-align: justify;\">Our lodge has been in our family for years and has recently been beautifully renovated. Five rooms all with en-suite showers lead off your own large central lounge, featuring a 36 foot high vaulted ceiling, offering spacious living, dining, and a bar/conversational lounge area which includes a fitted kitchenette, all adding to a sense of homely comfort. Sumptuous meals can be provided on request and served on the bottom deck at the swimming pool.</h3>\r\n<h3 style=\"text-align: justify;\">Be lulled to sleep by the sound of the waterfall and tinkling stream just outside your window, waking from a peaceful night\'s sleep in a pillow-top bed dressed in luxurious linens to coddle you in ultimate comfort.</h3>\r\n<h3 style=\"text-align: justify;\">Our property boasts many different species of birds and animals. We have a resident otter, a family of wild bush pigs,  a family of rock rabbits, porcupine, little blue duikers, a variety of different frogs and an abundance of bird life, including the occasional snakes that pass through!</h3>\r\n[/fusion_text][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container background_color=\"#f0f0ed\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"20\" padding_bottom=\"20\" padding_left=\"\" padding_right=\"\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][fusion_builder_row][fusion_builder_column type=\"1_1\" layout=\"1_1\" background_position=\"left top\" background_color=\"\" border_size=\"\" border_color=\"\" border_style=\"solid\" spacing=\"yes\" background_image=\"\" background_repeat=\"no-repeat\" padding_top=\"\" padding_right=\"\" padding_bottom=\"\" padding_left=\"\" margin_top=\"0px\" margin_bottom=\"0px\" class=\"\" id=\"\" animation_type=\"\" animation_speed=\"0.3\" animation_direction=\"left\" hide_on_mobile=\"no\" center_content=\"no\" min_height=\"none\" last=\"no\" hover_type=\"none\" link=\"\" border_position=\"all\"][fusion_text]\r\n<h1 style=\"text-align: center;\">Gallery</h1>\r\n[/fusion_text][fusion_separator style_type=\"single solid\" top_margin=\"\" bottom_margin=\"40\" sep_color=\"#000000\" border_size=\"\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"170px\" alignment=\"\" class=\"\" id=\"\" /][/fusion_builder_column][fusion_builder_column type=\"1_6\" layout=\"1_6\" last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding_top=\"\" padding_right=\"\" padding_bottom=\"\" padding_left=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\" min_height=\"\"][/fusion_builder_column][fusion_builder_column type=\"2_3\" layout=\"2_3\" last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding_top=\"\" padding_right=\"\" padding_bottom=\"\" padding_left=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\" min_height=\"\"][fusion_text]\r\n<h3 style=\"text-align: justify;\">The Lodge is open, spacious, comfortable and homely. During hot summer days, sit and bask in the sun on the deck  with one of our  picnic specials. In winter, snuggle up with a good book or challenge one another to a friendly board game in the glassed nook area .</h3>\r\n[/fusion_text][/fusion_builder_column][fusion_builder_column type=\"1_6\" layout=\"1_6\" last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding_top=\"\" padding_right=\"\" padding_bottom=\"\" padding_left=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\" min_height=\"\"][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container background_color=\"#f0f0ed\" background_image=\"http://localhost/assagaylodge/wp-content/uploads/2015/01/Wood_Texture.jpg\" background_parallax=\"fixed\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"30\" padding_bottom=\"10\" padding_left=\"0\" padding_right=\"0\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][fusion_builder_row][fusion_builder_column type=\"1_1\" layout=\"1_1\" background_position=\"left top\" background_color=\"\" border_size=\"\" border_color=\"\" border_style=\"solid\" spacing=\"yes\" background_image=\"\" background_repeat=\"no-repeat\" padding_top=\"\" padding_right=\"\" padding_bottom=\"\" padding_left=\"\" margin_top=\"0px\" margin_bottom=\"0px\" class=\"\" id=\"\" animation_type=\"\" animation_speed=\"0.3\" animation_direction=\"left\" hide_on_mobile=\"no\" center_content=\"no\" min_height=\"none\" last=\"no\" hover_type=\"none\" link=\"\" border_position=\"all\"][fusion_portfolio layout=\"grid\" picture_size=\"auto\" text_layout=\"no_text\" filters=\"no\" columns=\"3\" column_spacing=\"12\" cat_slug=\"the-lodge\" exclude_cats=\"\" number_posts=\"9\" offset=\"\" excerpt_length=\"35\" strip_html=\"yes\" carousel_layout=\"title_on_rollover\" scroll_items=\"\" autoplay=\"no\" show_nav=\"yes\" mouse_scroll=\"no\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\" /][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container background_color=\"#f0f0ed\" background_image=\"\" background_parallax=\"fixed\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"20\" padding_bottom=\"20\" padding_left=\"\" padding_right=\"\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][fusion_builder_row][fusion_builder_column type=\"1_1\" layout=\"1_1\" background_position=\"left top\" background_color=\"\" border_size=\"\" border_color=\"\" border_style=\"solid\" spacing=\"yes\" background_image=\"\" background_repeat=\"no-repeat\" padding_top=\"\" padding_right=\"\" padding_bottom=\"\" padding_left=\"\" margin_top=\"0px\" margin_bottom=\"0px\" class=\"\" id=\"\" animation_type=\"\" animation_speed=\"0.3\" animation_direction=\"left\" hide_on_mobile=\"no\" center_content=\"no\" min_height=\"none\" last=\"no\" hover_type=\"none\" link=\"\" border_position=\"all\"][fusion_text]\r\n<h1 style=\"text-align: center;\">BEDROOMS</h1>\r\n[/fusion_text][fusion_separator style_type=\"single solid\" top_margin=\"\" bottom_margin=\"20\" sep_color=\"#000000\" border_size=\"\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"170px\" alignment=\"\" class=\"\" id=\"\" /][/fusion_builder_column][fusion_builder_column type=\"1_6\" layout=\"1_6\" last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding_top=\"\" padding_right=\"\" padding_bottom=\"\" padding_left=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\" min_height=\"\"][/fusion_builder_column][fusion_builder_column type=\"2_3\" layout=\"2_3\" last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding_top=\"\" padding_right=\"\" padding_bottom=\"\" padding_left=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\" min_height=\"\"][fusion_text]\r\n<h3 style=\"text-align: justify;\">When it comes to our bedrooms we’re proud to say we offer something a little more special. One of five  lovingly and tastefully decorated guest rooms. Soft gray decor soothes the senses providing a peaceful, blissfully comfortable rest from your travels and hectic lives.</h3>\r\n<h3 style=\"text-align: justify;\">Our  bedrooms are spacious, clean, comfortable all en-suite, equipped with either king size or queen size beds. Each room sleeps two guests. The rooms have high ceilings, wall heaters &amp; ceiling fans. Beds all have electric blankets in Winter, 100% cotton percale sheets and thick hyper allergenic microfiber duvets and pillows. All guest rooms are cleaned with organic and green products. Amenities include hairdryers in each room. Three rooms feature King-sized beds  of which two can be  split into two single beds. Two  rooms can therefore be changed into a twin room upon request. Two rooms feature a Queen-sized double bed. These beds cannot be split into twin beds.</h3>\r\n[/fusion_text][/fusion_builder_column][fusion_builder_column type=\"1_6\" layout=\"1_6\" last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding_top=\"\" padding_right=\"\" padding_bottom=\"\" padding_left=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\" min_height=\"\"][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container background_color=\"\" background_image=\"http://localhost/assagaylodge/wp-content/uploads/2015/01/DSC01516-1148-x-764.jpg\" background_parallax=\"fixed\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"center center\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"20\" padding_bottom=\"20\" padding_left=\"0\" padding_right=\"0\" hundred_percent=\"no\" equal_height_columns=\"yes\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][fusion_builder_row][fusion_builder_column type=\"1_1\" layout=\"1_1\" background_position=\"left top\" background_color=\"\" border_size=\"\" border_color=\"\" border_style=\"solid\" spacing=\"yes\" background_image=\"\" background_repeat=\"no-repeat\" padding_top=\"\" padding_right=\"\" padding_bottom=\"\" padding_left=\"\" margin_top=\"0px\" margin_bottom=\"0px\" class=\"\" id=\"\" animation_type=\"\" animation_speed=\"0.3\" animation_direction=\"left\" hide_on_mobile=\"no\" center_content=\"no\" min_height=\"none\" last=\"no\" hover_type=\"none\" link=\"\" border_position=\"all\"][fusion_portfolio layout=\"grid\" picture_size=\"auto\" text_layout=\"no_text\" filters=\"no\" columns=\"3\" column_spacing=\"12\" cat_slug=\"bedrooms\" exclude_cats=\"\" number_posts=\"6\" offset=\"\" excerpt_length=\"35\" strip_html=\"yes\" carousel_layout=\"title_on_rollover\" scroll_items=\"\" autoplay=\"no\" show_nav=\"yes\" mouse_scroll=\"no\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\" /][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container background_color=\"#f0f0ed\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"20\" padding_bottom=\"20\" padding_left=\"0\" padding_right=\"0\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][fusion_builder_row][fusion_builder_column type=\"1_1\" layout=\"1_1\" background_position=\"left top\" background_color=\"\" border_size=\"\" border_color=\"\" border_style=\"solid\" spacing=\"yes\" background_image=\"\" background_repeat=\"no-repeat\" padding_top=\"\" padding_right=\"\" padding_bottom=\"\" padding_left=\"\" margin_top=\"0px\" margin_bottom=\"0px\" class=\"\" id=\"\" animation_type=\"\" animation_speed=\"0.3\" animation_direction=\"left\" hide_on_mobile=\"no\" center_content=\"no\" min_height=\"none\" last=\"no\" hover_type=\"none\" link=\"\" border_position=\"all\"][fusion_text]\r\n<h1 style=\"text-align: center;\">GARDENS</h1>\r\n[/fusion_text][fusion_separator style_type=\"single solid\" top_margin=\"\" bottom_margin=\"20\" sep_color=\"#000000\" border_size=\"\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"170px\" alignment=\"\" class=\"\" id=\"\" /][/fusion_builder_column][fusion_builder_column type=\"1_6\" layout=\"1_6\" last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding_top=\"\" padding_right=\"\" padding_bottom=\"\" padding_left=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\" min_height=\"\"][/fusion_builder_column][fusion_builder_column type=\"2_3\" layout=\"2_3\" last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding_top=\"\" padding_right=\"\" padding_bottom=\"\" padding_left=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\" min_height=\"\"][fusion_text]\r\n<h3 style=\"text-align: justify;\">The garden is large and offers many secluded spots to lose yourself in a book with a glass of wine underneath the shade of a tree, listening to the sounds of the birds and smelling the beautiful flowers.</h3>\r\n[/fusion_text][/fusion_builder_column][fusion_builder_column type=\"1_6\" layout=\"1_6\" last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding_top=\"\" padding_right=\"\" padding_bottom=\"\" padding_left=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\" min_height=\"\"][/fusion_builder_column][fusion_builder_column type=\"1_1\" layout=\"1_1\" background_position=\"left top\" background_color=\"\" border_size=\"\" border_color=\"\" border_style=\"solid\" spacing=\"yes\" background_image=\"\" background_repeat=\"no-repeat\" padding_top=\"\" padding_right=\"\" padding_bottom=\"\" padding_left=\"\" margin_top=\"0px\" margin_bottom=\"0px\" class=\"\" id=\"\" animation_type=\"\" animation_speed=\"0.3\" animation_direction=\"left\" hide_on_mobile=\"no\" center_content=\"no\" min_height=\"none\" last=\"no\" hover_type=\"none\" link=\"\" border_position=\"all\"][fusion_portfolio layout=\"grid\" picture_size=\"auto\" text_layout=\"no_text\" filters=\"no\" columns=\"3\" column_spacing=\"12\" cat_slug=\"gardens\" exclude_cats=\"\" number_posts=\"9\" offset=\"\" excerpt_length=\"35\" strip_html=\"yes\" carousel_layout=\"title_on_rollover\" scroll_items=\"\" autoplay=\"no\" show_nav=\"yes\" mouse_scroll=\"no\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\" /][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container background_color=\"#ffffff\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"65px\" padding_bottom=\"65px\" padding_left=\"\" padding_right=\"\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][fusion_builder_row][fusion_builder_column type=\"1_1\" layout=\"1_1\" background_position=\"left top\" background_color=\"\" border_size=\"\" border_color=\"\" border_style=\"solid\" spacing=\"yes\" background_image=\"\" background_repeat=\"no-repeat\" padding_top=\"\" padding_right=\"\" padding_bottom=\"\" padding_left=\"\" margin_top=\"0px\" margin_bottom=\"0px\" class=\"\" id=\"\" animation_type=\"\" animation_speed=\"0.3\" animation_direction=\"left\" hide_on_mobile=\"no\" center_content=\"no\" min_height=\"none\" last=\"no\" hover_type=\"none\" link=\"\" border_position=\"all\"][fusion_button link=\"https://msla.co.za/lodge/reservations/\" color=\"default\" size=\"xlarge\" stretch=\"default\" type=\"3d\" shape=\"round\" target=\"_self\" title=\"\" button_gradient_top_color=\"#f0f0ed\" button_gradient_bottom_color=\"#f0f0ed\" button_gradient_top_color_hover=\"#6666a4\" button_gradient_bottom_color_hover=\"#6666a4\" accent_color=\"#ffffff\" accent_hover_color=\"#ffffff\" bevel_color=\"\" border_width=\"0px\" icon=\"\" icon_position=\"left\" icon_divider=\"no\" modal=\"\" animation_type=\"0\" animation_direction=\"left\" animation_speed=\"1\" animation_offset=\"\" alignment=\"center\" class=\"\" id=\"\"]Make A Reservation Enquiry[/fusion_button][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container]', 'Home', '', 'inherit', 'closed', 'closed', '', '7-revision-v1', '', '', '2019-11-13 18:15:57', '2019-11-13 16:15:57', '', 7, 'https://msla.co.za/lodge/7-revision-v1/', 0, 'revision', '', 0);
INSERT INTO `wp_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(1393, 1, '2019-11-13 18:18:41', '2019-11-13 16:18:41', '[fusion_builder_container background_color=\"#f0f0ed\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"20\" padding_bottom=\"20\" padding_left=\"\" padding_right=\"\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][fusion_builder_row][fusion_builder_column type=\"1_2\" layout=\"1_2\" last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"\" padding_right=\"\" padding_bottom=\"\" padding_left=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\" min_height=\"\"][fusion_separator style_type=\"single solid\" top_margin=\"0\" bottom_margin=\"30\" sep_color=\"#000000\" border_size=\"\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"170px\" alignment=\"center\" class=\"separator-left\" id=\"\" /][fusion_text]\r\n<h1 style=\"text-align: center;\">No Fancy Star Grading\r\nNo Room Service\r\nNo Bed Turn-downs\r\nNo Rose Petals in the Bath water</h1>\r\n<h1 style=\"text-align: center;\">... just old fashioned homely comforts</h1>\r\n[/fusion_text][/fusion_builder_column][fusion_builder_column type=\"1_2\" layout=\"1_2\" last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"\" padding_right=\"\" padding_bottom=\"\" padding_left=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\" min_height=\"\"][fusion_text]\r\n<h1 style=\"text-align: justify;\">5 BEDROOM FAMILY LODGE</h1>\r\n<h3 style=\"text-align: justify;\">We are a four season lodge, because there’s always something to celebrate… We offer comfort, relaxation and privacy right in the heart of 1000 Hills. The Forest, the Gardens, the Atmosphere all speak to  Rest  &amp; Relaxation.</h3>\r\n[/fusion_text][fusion_separator style_type=\"single solid\" top_margin=\"0\" bottom_margin=\"30\" sep_color=\"#000000\" border_size=\"\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"170px\" alignment=\"left\" class=\"separator-left\" id=\"\" /][fusion_title size=\"1\" content_align=\"right\" style_type=\"default\" sep_color=\"\" margin_top=\"\" margin_bottom=\"\" class=\"\" id=\"\"]\r\n<h1 style=\"text-align: center;\">Current Offers!</h1>\r\n[/fusion_title][fusion_tagline_box backgroundcolor=\"\" shadow=\"yes\" shadowopacity=\"0.70\" border=\"1\" bordercolor=\"\" highlightposition=\"none\" content_alignment=\"center\" link=\"http://msla.co.za/lodge/reservations\" button=\"Book Now!\" linktarget=\"_self\" modal=\"\" button_size=\"large\" button_type=\"\" button_shape=\"square\" buttoncolor=\"default\" title=\"Qm9vayBvbi1saW5lIC0gZ2V0IDE1JSBPRkYgeW91ciBBY2NvbW1vZGF0aW9u\" description=\"U3RheSAzIGRheXMgb3IgbW9yZSAtIGdldCAyNSUgT0ZGIHlvdXIgQWNjb21tb2RhdGlvbg==\" margin_top=\"\" margin_bottom=\"\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" class=\"\" id=\"\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"\"]\r\n\r\nYour Content Goes Here\r\n\r\n[/fusion_tagline_box][fusion_tagline_box backgroundcolor=\"\" shadow=\"yes\" shadowopacity=\"0.70\" border=\"1\" bordercolor=\"\" highlightposition=\"none\" content_alignment=\"center\" link=\"http://msla.co.za/lodge/reservations\" button=\"Stay 3 days or more - get 25% OFF your Accommodation\" linktarget=\"_self\" modal=\"\" button_size=\"large\" button_type=\"\" button_shape=\"square\" buttoncolor=\"default\" title=\"\" description=\"\" margin_top=\"\" margin_bottom=\"\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" class=\"\" id=\"\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"\" /][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container background_color=\"#f0f0ed\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"20\" padding_bottom=\"20\" padding_left=\"\" padding_right=\"\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][fusion_builder_row][fusion_builder_column type=\"1_2\" layout=\"1_2\" last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"\" padding_right=\"\" padding_bottom=\"\" padding_left=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\" min_height=\"\"][fusion_text]\r\n<h3 style=\"text-align: justify;\">Set in the rolling peaks and valleys of a thousand hills surrounded by a canopy of indigenous trees, you will find that horses still have right of way, we certainly offer the best of both worlds, farm and charm coupled with modern amenities that will have you feeling relaxed and rejuvenated.</h3>\r\n<h3 style=\"text-align: justify;\">We know that sometimes you are searching for a romantic getaway or maybe a few days away with old friends. Other times you are searching for a place to host a weekend, family reunion or a business retreat. In addition to nightly room rentals, our lodge is also available for meetings, retreats  and makes the perfect place for a wedding party to stay together and get ready for the big day. Regardless, with our five comfortable and cozy guest bedrooms, multiple garden spaces and hideaways, and a  large private deck  where you can take a nap or read a book we definitely have the room for you!</h3>\r\n<h3 style=\"text-align: justify;\">Evenings are quiet and peaceful taking you far away from the business of city life. This is a unique and memorable country experience. We look forward to having you as a guest!</h3>\r\n[/fusion_text][/fusion_builder_column][fusion_builder_column type=\"1_2\" layout=\"1_2\" last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"\" padding_right=\"\" padding_bottom=\"\" padding_left=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\" min_height=\"\"][fusion_text]\r\n<h3 style=\"text-align: justify;\">Our lodge has been in our family for years and has recently been beautifully renovated. Five rooms all with en-suite showers lead off your own large central lounge, featuring a 36 foot high vaulted ceiling, offering spacious living, dining, and a bar/conversational lounge area which includes a fitted kitchenette, all adding to a sense of homely comfort. Sumptuous meals can be provided on request and served on the bottom deck at the swimming pool.</h3>\r\n<h3 style=\"text-align: justify;\">Be lulled to sleep by the sound of the waterfall and tinkling stream just outside your window, waking from a peaceful night\'s sleep in a pillow-top bed dressed in luxurious linens to coddle you in ultimate comfort.</h3>\r\n<h3 style=\"text-align: justify;\">Our property boasts many different species of birds and animals. We have a resident otter, a family of wild bush pigs,  a family of rock rabbits, porcupine, little blue duikers, a variety of different frogs and an abundance of bird life, including the occasional snakes that pass through!</h3>\r\n[/fusion_text][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container background_color=\"#f0f0ed\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"20\" padding_bottom=\"20\" padding_left=\"\" padding_right=\"\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][fusion_builder_row][fusion_builder_column type=\"1_1\" layout=\"1_1\" background_position=\"left top\" background_color=\"\" border_size=\"\" border_color=\"\" border_style=\"solid\" spacing=\"yes\" background_image=\"\" background_repeat=\"no-repeat\" padding_top=\"\" padding_right=\"\" padding_bottom=\"\" padding_left=\"\" margin_top=\"0px\" margin_bottom=\"0px\" class=\"\" id=\"\" animation_type=\"\" animation_speed=\"0.3\" animation_direction=\"left\" hide_on_mobile=\"no\" center_content=\"no\" min_height=\"none\" last=\"no\" hover_type=\"none\" link=\"\" border_position=\"all\"][fusion_text]\r\n<h1 style=\"text-align: center;\">Gallery</h1>\r\n[/fusion_text][fusion_separator style_type=\"single solid\" top_margin=\"\" bottom_margin=\"40\" sep_color=\"#000000\" border_size=\"\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"170px\" alignment=\"\" class=\"\" id=\"\" /][/fusion_builder_column][fusion_builder_column type=\"1_6\" layout=\"1_6\" last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding_top=\"\" padding_right=\"\" padding_bottom=\"\" padding_left=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\" min_height=\"\"][/fusion_builder_column][fusion_builder_column type=\"2_3\" layout=\"2_3\" last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding_top=\"\" padding_right=\"\" padding_bottom=\"\" padding_left=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\" min_height=\"\"][fusion_text]\r\n<h3 style=\"text-align: justify;\">The Lodge is open, spacious, comfortable and homely. During hot summer days, sit and bask in the sun on the deck  with one of our  picnic specials. In winter, snuggle up with a good book or challenge one another to a friendly board game in the glassed nook area .</h3>\r\n[/fusion_text][/fusion_builder_column][fusion_builder_column type=\"1_6\" layout=\"1_6\" last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding_top=\"\" padding_right=\"\" padding_bottom=\"\" padding_left=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\" min_height=\"\"][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container background_color=\"#f0f0ed\" background_image=\"http://localhost/assagaylodge/wp-content/uploads/2015/01/Wood_Texture.jpg\" background_parallax=\"fixed\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"30\" padding_bottom=\"10\" padding_left=\"0\" padding_right=\"0\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][fusion_builder_row][fusion_builder_column type=\"1_1\" layout=\"1_1\" background_position=\"left top\" background_color=\"\" border_size=\"\" border_color=\"\" border_style=\"solid\" spacing=\"yes\" background_image=\"\" background_repeat=\"no-repeat\" padding_top=\"\" padding_right=\"\" padding_bottom=\"\" padding_left=\"\" margin_top=\"0px\" margin_bottom=\"0px\" class=\"\" id=\"\" animation_type=\"\" animation_speed=\"0.3\" animation_direction=\"left\" hide_on_mobile=\"no\" center_content=\"no\" min_height=\"none\" last=\"no\" hover_type=\"none\" link=\"\" border_position=\"all\"][fusion_portfolio layout=\"grid\" picture_size=\"auto\" text_layout=\"no_text\" filters=\"no\" columns=\"3\" column_spacing=\"12\" cat_slug=\"the-lodge\" exclude_cats=\"\" number_posts=\"9\" offset=\"\" excerpt_length=\"35\" strip_html=\"yes\" carousel_layout=\"title_on_rollover\" scroll_items=\"\" autoplay=\"no\" show_nav=\"yes\" mouse_scroll=\"no\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\" /][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container background_color=\"#f0f0ed\" background_image=\"\" background_parallax=\"fixed\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"20\" padding_bottom=\"20\" padding_left=\"\" padding_right=\"\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][fusion_builder_row][fusion_builder_column type=\"1_1\" layout=\"1_1\" background_position=\"left top\" background_color=\"\" border_size=\"\" border_color=\"\" border_style=\"solid\" spacing=\"yes\" background_image=\"\" background_repeat=\"no-repeat\" padding_top=\"\" padding_right=\"\" padding_bottom=\"\" padding_left=\"\" margin_top=\"0px\" margin_bottom=\"0px\" class=\"\" id=\"\" animation_type=\"\" animation_speed=\"0.3\" animation_direction=\"left\" hide_on_mobile=\"no\" center_content=\"no\" min_height=\"none\" last=\"no\" hover_type=\"none\" link=\"\" border_position=\"all\"][fusion_text]\r\n<h1 style=\"text-align: center;\">BEDROOMS</h1>\r\n[/fusion_text][fusion_separator style_type=\"single solid\" top_margin=\"\" bottom_margin=\"20\" sep_color=\"#000000\" border_size=\"\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"170px\" alignment=\"\" class=\"\" id=\"\" /][/fusion_builder_column][fusion_builder_column type=\"1_6\" layout=\"1_6\" last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding_top=\"\" padding_right=\"\" padding_bottom=\"\" padding_left=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\" min_height=\"\"][/fusion_builder_column][fusion_builder_column type=\"2_3\" layout=\"2_3\" last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding_top=\"\" padding_right=\"\" padding_bottom=\"\" padding_left=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\" min_height=\"\"][fusion_text]\r\n<h3 style=\"text-align: justify;\">When it comes to our bedrooms we’re proud to say we offer something a little more special. One of five  lovingly and tastefully decorated guest rooms. Soft gray decor soothes the senses providing a peaceful, blissfully comfortable rest from your travels and hectic lives.</h3>\r\n<h3 style=\"text-align: justify;\">Our  bedrooms are spacious, clean, comfortable all en-suite, equipped with either king size or queen size beds. Each room sleeps two guests. The rooms have high ceilings, wall heaters &amp; ceiling fans. Beds all have electric blankets in Winter, 100% cotton percale sheets and thick hyper allergenic microfiber duvets and pillows. All guest rooms are cleaned with organic and green products. Amenities include hairdryers in each room. Three rooms feature King-sized beds  of which two can be  split into two single beds. Two  rooms can therefore be changed into a twin room upon request. Two rooms feature a Queen-sized double bed. These beds cannot be split into twin beds.</h3>\r\n[/fusion_text][/fusion_builder_column][fusion_builder_column type=\"1_6\" layout=\"1_6\" last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding_top=\"\" padding_right=\"\" padding_bottom=\"\" padding_left=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\" min_height=\"\"][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container background_color=\"\" background_image=\"http://localhost/assagaylodge/wp-content/uploads/2015/01/DSC01516-1148-x-764.jpg\" background_parallax=\"fixed\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"center center\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"20\" padding_bottom=\"20\" padding_left=\"0\" padding_right=\"0\" hundred_percent=\"no\" equal_height_columns=\"yes\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][fusion_builder_row][fusion_builder_column type=\"1_1\" layout=\"1_1\" background_position=\"left top\" background_color=\"\" border_size=\"\" border_color=\"\" border_style=\"solid\" spacing=\"yes\" background_image=\"\" background_repeat=\"no-repeat\" padding_top=\"\" padding_right=\"\" padding_bottom=\"\" padding_left=\"\" margin_top=\"0px\" margin_bottom=\"0px\" class=\"\" id=\"\" animation_type=\"\" animation_speed=\"0.3\" animation_direction=\"left\" hide_on_mobile=\"no\" center_content=\"no\" min_height=\"none\" last=\"no\" hover_type=\"none\" link=\"\" border_position=\"all\"][fusion_portfolio layout=\"grid\" picture_size=\"auto\" text_layout=\"no_text\" filters=\"no\" columns=\"3\" column_spacing=\"12\" cat_slug=\"bedrooms\" exclude_cats=\"\" number_posts=\"6\" offset=\"\" excerpt_length=\"35\" strip_html=\"yes\" carousel_layout=\"title_on_rollover\" scroll_items=\"\" autoplay=\"no\" show_nav=\"yes\" mouse_scroll=\"no\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\" /][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container background_color=\"#f0f0ed\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"20\" padding_bottom=\"20\" padding_left=\"0\" padding_right=\"0\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][fusion_builder_row][fusion_builder_column type=\"1_1\" layout=\"1_1\" background_position=\"left top\" background_color=\"\" border_size=\"\" border_color=\"\" border_style=\"solid\" spacing=\"yes\" background_image=\"\" background_repeat=\"no-repeat\" padding_top=\"\" padding_right=\"\" padding_bottom=\"\" padding_left=\"\" margin_top=\"0px\" margin_bottom=\"0px\" class=\"\" id=\"\" animation_type=\"\" animation_speed=\"0.3\" animation_direction=\"left\" hide_on_mobile=\"no\" center_content=\"no\" min_height=\"none\" last=\"no\" hover_type=\"none\" link=\"\" border_position=\"all\"][fusion_text]\r\n<h1 style=\"text-align: center;\">GARDENS</h1>\r\n[/fusion_text][fusion_separator style_type=\"single solid\" top_margin=\"\" bottom_margin=\"20\" sep_color=\"#000000\" border_size=\"\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"170px\" alignment=\"\" class=\"\" id=\"\" /][/fusion_builder_column][fusion_builder_column type=\"1_6\" layout=\"1_6\" last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding_top=\"\" padding_right=\"\" padding_bottom=\"\" padding_left=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\" min_height=\"\"][/fusion_builder_column][fusion_builder_column type=\"2_3\" layout=\"2_3\" last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding_top=\"\" padding_right=\"\" padding_bottom=\"\" padding_left=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\" min_height=\"\"][fusion_text]\r\n<h3 style=\"text-align: justify;\">The garden is large and offers many secluded spots to lose yourself in a book with a glass of wine underneath the shade of a tree, listening to the sounds of the birds and smelling the beautiful flowers.</h3>\r\n[/fusion_text][/fusion_builder_column][fusion_builder_column type=\"1_6\" layout=\"1_6\" last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding_top=\"\" padding_right=\"\" padding_bottom=\"\" padding_left=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\" min_height=\"\"][/fusion_builder_column][fusion_builder_column type=\"1_1\" layout=\"1_1\" background_position=\"left top\" background_color=\"\" border_size=\"\" border_color=\"\" border_style=\"solid\" spacing=\"yes\" background_image=\"\" background_repeat=\"no-repeat\" padding_top=\"\" padding_right=\"\" padding_bottom=\"\" padding_left=\"\" margin_top=\"0px\" margin_bottom=\"0px\" class=\"\" id=\"\" animation_type=\"\" animation_speed=\"0.3\" animation_direction=\"left\" hide_on_mobile=\"no\" center_content=\"no\" min_height=\"none\" last=\"no\" hover_type=\"none\" link=\"\" border_position=\"all\"][fusion_portfolio layout=\"grid\" picture_size=\"auto\" text_layout=\"no_text\" filters=\"no\" columns=\"3\" column_spacing=\"12\" cat_slug=\"gardens\" exclude_cats=\"\" number_posts=\"9\" offset=\"\" excerpt_length=\"35\" strip_html=\"yes\" carousel_layout=\"title_on_rollover\" scroll_items=\"\" autoplay=\"no\" show_nav=\"yes\" mouse_scroll=\"no\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\" /][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container background_color=\"#ffffff\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"65px\" padding_bottom=\"65px\" padding_left=\"\" padding_right=\"\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][fusion_builder_row][fusion_builder_column type=\"1_1\" layout=\"1_1\" background_position=\"left top\" background_color=\"\" border_size=\"\" border_color=\"\" border_style=\"solid\" spacing=\"yes\" background_image=\"\" background_repeat=\"no-repeat\" padding_top=\"\" padding_right=\"\" padding_bottom=\"\" padding_left=\"\" margin_top=\"0px\" margin_bottom=\"0px\" class=\"\" id=\"\" animation_type=\"\" animation_speed=\"0.3\" animation_direction=\"left\" hide_on_mobile=\"no\" center_content=\"no\" min_height=\"none\" last=\"no\" hover_type=\"none\" link=\"\" border_position=\"all\"][fusion_button link=\"https://msla.co.za/lodge/reservations/\" color=\"default\" size=\"xlarge\" stretch=\"default\" type=\"3d\" shape=\"round\" target=\"_self\" title=\"\" button_gradient_top_color=\"#f0f0ed\" button_gradient_bottom_color=\"#f0f0ed\" button_gradient_top_color_hover=\"#6666a4\" button_gradient_bottom_color_hover=\"#6666a4\" accent_color=\"#ffffff\" accent_hover_color=\"#ffffff\" bevel_color=\"\" border_width=\"0px\" icon=\"\" icon_position=\"left\" icon_divider=\"no\" modal=\"\" animation_type=\"0\" animation_direction=\"left\" animation_speed=\"1\" animation_offset=\"\" alignment=\"center\" class=\"\" id=\"\"]Make A Reservation Enquiry[/fusion_button][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container]', 'Home', '', 'inherit', 'closed', 'closed', '', '7-revision-v1', '', '', '2019-11-13 18:18:41', '2019-11-13 16:18:41', '', 7, 'https://msla.co.za/lodge/7-revision-v1/', 0, 'revision', '', 0);
INSERT INTO `wp_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(1394, 1, '2019-11-13 18:20:08', '2019-11-13 16:20:08', '[fusion_builder_container background_color=\"#f0f0ed\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"20\" padding_bottom=\"20\" padding_left=\"\" padding_right=\"\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][fusion_builder_row][fusion_builder_column type=\"1_2\" layout=\"1_2\" last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"\" padding_right=\"\" padding_bottom=\"\" padding_left=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\" min_height=\"\"][fusion_separator style_type=\"single solid\" top_margin=\"0\" bottom_margin=\"30\" sep_color=\"#000000\" border_size=\"\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"170px\" alignment=\"center\" class=\"separator-left\" id=\"\" /][fusion_text]\r\n<h1 style=\"text-align: center;\">No Fancy Star Grading\r\nNo Room Service\r\nNo Bed Turn-downs\r\nNo Rose Petals in the Bath water</h1>\r\n<h1 style=\"text-align: center;\">... just old fashioned homely comforts</h1>\r\n[/fusion_text][/fusion_builder_column][fusion_builder_column type=\"1_2\" layout=\"1_2\" last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"\" padding_right=\"\" padding_bottom=\"\" padding_left=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\" min_height=\"\"][fusion_text]\r\n<h1 style=\"text-align: justify;\">5 BEDROOM FAMILY LODGE</h1>\r\n<h3 style=\"text-align: justify;\">We are a four season lodge, because there’s always something to celebrate… We offer comfort, relaxation and privacy right in the heart of 1000 Hills. The Forest, the Gardens, the Atmosphere all speak to  Rest  &amp; Relaxation.</h3>\r\n[/fusion_text][fusion_separator style_type=\"single solid\" top_margin=\"0\" bottom_margin=\"30\" sep_color=\"#000000\" border_size=\"\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"170px\" alignment=\"left\" class=\"separator-left\" id=\"\" /][fusion_title size=\"1\" content_align=\"right\" style_type=\"default\" sep_color=\"\" margin_top=\"\" margin_bottom=\"\" class=\"\" id=\"\"]\r\n<h1 style=\"text-align: center;\">Current Offers!</h1>\r\n[/fusion_title][fusion_tagline_box backgroundcolor=\"\" shadow=\"yes\" shadowopacity=\"0.70\" border=\"1\" bordercolor=\"\" highlightposition=\"none\" content_alignment=\"center\" link=\"http://msla.co.za/lodge/reservations\" button=\"Book Now!\" linktarget=\"_self\" modal=\"\" button_size=\"large\" button_type=\"\" button_shape=\"square\" buttoncolor=\"default\" title=\"Q3VycmVudCBTcGVjaWFscw==\" description=\"Qm9vayBvbi1saW5lIC0gZ2V0IDE1JSBPRkYgeW91ciBBY2NvbW1vZGF0aW9u\" margin_top=\"\" margin_bottom=\"\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" class=\"\" id=\"\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"\"]\r\n\r\nStay 3 days or more - get 25% OFF your Accommodation\r\n\r\n[/fusion_tagline_box][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container background_color=\"#f0f0ed\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"20\" padding_bottom=\"20\" padding_left=\"\" padding_right=\"\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][fusion_builder_row][fusion_builder_column type=\"1_2\" layout=\"1_2\" last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"\" padding_right=\"\" padding_bottom=\"\" padding_left=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\" min_height=\"\"][fusion_text]\r\n<h3 style=\"text-align: justify;\">Set in the rolling peaks and valleys of a thousand hills surrounded by a canopy of indigenous trees, you will find that horses still have right of way, we certainly offer the best of both worlds, farm and charm coupled with modern amenities that will have you feeling relaxed and rejuvenated.</h3>\r\n<h3 style=\"text-align: justify;\">We know that sometimes you are searching for a romantic getaway or maybe a few days away with old friends. Other times you are searching for a place to host a weekend, family reunion or a business retreat. In addition to nightly room rentals, our lodge is also available for meetings, retreats  and makes the perfect place for a wedding party to stay together and get ready for the big day. Regardless, with our five comfortable and cozy guest bedrooms, multiple garden spaces and hideaways, and a  large private deck  where you can take a nap or read a book we definitely have the room for you!</h3>\r\n<h3 style=\"text-align: justify;\">Evenings are quiet and peaceful taking you far away from the business of city life. This is a unique and memorable country experience. We look forward to having you as a guest!</h3>\r\n[/fusion_text][/fusion_builder_column][fusion_builder_column type=\"1_2\" layout=\"1_2\" last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"\" padding_right=\"\" padding_bottom=\"\" padding_left=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\" min_height=\"\"][fusion_text]\r\n<h3 style=\"text-align: justify;\">Our lodge has been in our family for years and has recently been beautifully renovated. Five rooms all with en-suite showers lead off your own large central lounge, featuring a 36 foot high vaulted ceiling, offering spacious living, dining, and a bar/conversational lounge area which includes a fitted kitchenette, all adding to a sense of homely comfort. Sumptuous meals can be provided on request and served on the bottom deck at the swimming pool.</h3>\r\n<h3 style=\"text-align: justify;\">Be lulled to sleep by the sound of the waterfall and tinkling stream just outside your window, waking from a peaceful night\'s sleep in a pillow-top bed dressed in luxurious linens to coddle you in ultimate comfort.</h3>\r\n<h3 style=\"text-align: justify;\">Our property boasts many different species of birds and animals. We have a resident otter, a family of wild bush pigs,  a family of rock rabbits, porcupine, little blue duikers, a variety of different frogs and an abundance of bird life, including the occasional snakes that pass through!</h3>\r\n[/fusion_text][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container background_color=\"#f0f0ed\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"20\" padding_bottom=\"20\" padding_left=\"\" padding_right=\"\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][fusion_builder_row][fusion_builder_column type=\"1_1\" layout=\"1_1\" background_position=\"left top\" background_color=\"\" border_size=\"\" border_color=\"\" border_style=\"solid\" spacing=\"yes\" background_image=\"\" background_repeat=\"no-repeat\" padding_top=\"\" padding_right=\"\" padding_bottom=\"\" padding_left=\"\" margin_top=\"0px\" margin_bottom=\"0px\" class=\"\" id=\"\" animation_type=\"\" animation_speed=\"0.3\" animation_direction=\"left\" hide_on_mobile=\"no\" center_content=\"no\" min_height=\"none\" last=\"no\" hover_type=\"none\" link=\"\" border_position=\"all\"][fusion_text]\r\n<h1 style=\"text-align: center;\">Gallery</h1>\r\n[/fusion_text][fusion_separator style_type=\"single solid\" top_margin=\"\" bottom_margin=\"40\" sep_color=\"#000000\" border_size=\"\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"170px\" alignment=\"\" class=\"\" id=\"\" /][/fusion_builder_column][fusion_builder_column type=\"1_6\" layout=\"1_6\" last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding_top=\"\" padding_right=\"\" padding_bottom=\"\" padding_left=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\" min_height=\"\"][/fusion_builder_column][fusion_builder_column type=\"2_3\" layout=\"2_3\" last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding_top=\"\" padding_right=\"\" padding_bottom=\"\" padding_left=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\" min_height=\"\"][fusion_text]\r\n<h3 style=\"text-align: justify;\">The Lodge is open, spacious, comfortable and homely. During hot summer days, sit and bask in the sun on the deck  with one of our  picnic specials. In winter, snuggle up with a good book or challenge one another to a friendly board game in the glassed nook area .</h3>\r\n[/fusion_text][/fusion_builder_column][fusion_builder_column type=\"1_6\" layout=\"1_6\" last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding_top=\"\" padding_right=\"\" padding_bottom=\"\" padding_left=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\" min_height=\"\"][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container background_color=\"#f0f0ed\" background_image=\"http://localhost/assagaylodge/wp-content/uploads/2015/01/Wood_Texture.jpg\" background_parallax=\"fixed\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"30\" padding_bottom=\"10\" padding_left=\"0\" padding_right=\"0\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][fusion_builder_row][fusion_builder_column type=\"1_1\" layout=\"1_1\" background_position=\"left top\" background_color=\"\" border_size=\"\" border_color=\"\" border_style=\"solid\" spacing=\"yes\" background_image=\"\" background_repeat=\"no-repeat\" padding_top=\"\" padding_right=\"\" padding_bottom=\"\" padding_left=\"\" margin_top=\"0px\" margin_bottom=\"0px\" class=\"\" id=\"\" animation_type=\"\" animation_speed=\"0.3\" animation_direction=\"left\" hide_on_mobile=\"no\" center_content=\"no\" min_height=\"none\" last=\"no\" hover_type=\"none\" link=\"\" border_position=\"all\"][fusion_portfolio layout=\"grid\" picture_size=\"auto\" text_layout=\"no_text\" filters=\"no\" columns=\"3\" column_spacing=\"12\" cat_slug=\"the-lodge\" exclude_cats=\"\" number_posts=\"9\" offset=\"\" excerpt_length=\"35\" strip_html=\"yes\" carousel_layout=\"title_on_rollover\" scroll_items=\"\" autoplay=\"no\" show_nav=\"yes\" mouse_scroll=\"no\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\" /][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container background_color=\"#f0f0ed\" background_image=\"\" background_parallax=\"fixed\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"20\" padding_bottom=\"20\" padding_left=\"\" padding_right=\"\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][fusion_builder_row][fusion_builder_column type=\"1_1\" layout=\"1_1\" background_position=\"left top\" background_color=\"\" border_size=\"\" border_color=\"\" border_style=\"solid\" spacing=\"yes\" background_image=\"\" background_repeat=\"no-repeat\" padding_top=\"\" padding_right=\"\" padding_bottom=\"\" padding_left=\"\" margin_top=\"0px\" margin_bottom=\"0px\" class=\"\" id=\"\" animation_type=\"\" animation_speed=\"0.3\" animation_direction=\"left\" hide_on_mobile=\"no\" center_content=\"no\" min_height=\"none\" last=\"no\" hover_type=\"none\" link=\"\" border_position=\"all\"][fusion_text]\r\n<h1 style=\"text-align: center;\">BEDROOMS</h1>\r\n[/fusion_text][fusion_separator style_type=\"single solid\" top_margin=\"\" bottom_margin=\"20\" sep_color=\"#000000\" border_size=\"\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"170px\" alignment=\"\" class=\"\" id=\"\" /][/fusion_builder_column][fusion_builder_column type=\"1_6\" layout=\"1_6\" last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding_top=\"\" padding_right=\"\" padding_bottom=\"\" padding_left=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\" min_height=\"\"][/fusion_builder_column][fusion_builder_column type=\"2_3\" layout=\"2_3\" last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding_top=\"\" padding_right=\"\" padding_bottom=\"\" padding_left=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\" min_height=\"\"][fusion_text]\r\n<h3 style=\"text-align: justify;\">When it comes to our bedrooms we’re proud to say we offer something a little more special. One of five  lovingly and tastefully decorated guest rooms. Soft gray decor soothes the senses providing a peaceful, blissfully comfortable rest from your travels and hectic lives.</h3>\r\n<h3 style=\"text-align: justify;\">Our  bedrooms are spacious, clean, comfortable all en-suite, equipped with either king size or queen size beds. Each room sleeps two guests. The rooms have high ceilings, wall heaters &amp; ceiling fans. Beds all have electric blankets in Winter, 100% cotton percale sheets and thick hyper allergenic microfiber duvets and pillows. All guest rooms are cleaned with organic and green products. Amenities include hairdryers in each room. Three rooms feature King-sized beds  of which two can be  split into two single beds. Two  rooms can therefore be changed into a twin room upon request. Two rooms feature a Queen-sized double bed. These beds cannot be split into twin beds.</h3>\r\n[/fusion_text][/fusion_builder_column][fusion_builder_column type=\"1_6\" layout=\"1_6\" last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding_top=\"\" padding_right=\"\" padding_bottom=\"\" padding_left=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\" min_height=\"\"][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container background_color=\"\" background_image=\"http://localhost/assagaylodge/wp-content/uploads/2015/01/DSC01516-1148-x-764.jpg\" background_parallax=\"fixed\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"center center\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"20\" padding_bottom=\"20\" padding_left=\"0\" padding_right=\"0\" hundred_percent=\"no\" equal_height_columns=\"yes\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][fusion_builder_row][fusion_builder_column type=\"1_1\" layout=\"1_1\" background_position=\"left top\" background_color=\"\" border_size=\"\" border_color=\"\" border_style=\"solid\" spacing=\"yes\" background_image=\"\" background_repeat=\"no-repeat\" padding_top=\"\" padding_right=\"\" padding_bottom=\"\" padding_left=\"\" margin_top=\"0px\" margin_bottom=\"0px\" class=\"\" id=\"\" animation_type=\"\" animation_speed=\"0.3\" animation_direction=\"left\" hide_on_mobile=\"no\" center_content=\"no\" min_height=\"none\" last=\"no\" hover_type=\"none\" link=\"\" border_position=\"all\"][fusion_portfolio layout=\"grid\" picture_size=\"auto\" text_layout=\"no_text\" filters=\"no\" columns=\"3\" column_spacing=\"12\" cat_slug=\"bedrooms\" exclude_cats=\"\" number_posts=\"6\" offset=\"\" excerpt_length=\"35\" strip_html=\"yes\" carousel_layout=\"title_on_rollover\" scroll_items=\"\" autoplay=\"no\" show_nav=\"yes\" mouse_scroll=\"no\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\" /][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container background_color=\"#f0f0ed\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"20\" padding_bottom=\"20\" padding_left=\"0\" padding_right=\"0\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][fusion_builder_row][fusion_builder_column type=\"1_1\" layout=\"1_1\" background_position=\"left top\" background_color=\"\" border_size=\"\" border_color=\"\" border_style=\"solid\" spacing=\"yes\" background_image=\"\" background_repeat=\"no-repeat\" padding_top=\"\" padding_right=\"\" padding_bottom=\"\" padding_left=\"\" margin_top=\"0px\" margin_bottom=\"0px\" class=\"\" id=\"\" animation_type=\"\" animation_speed=\"0.3\" animation_direction=\"left\" hide_on_mobile=\"no\" center_content=\"no\" min_height=\"none\" last=\"no\" hover_type=\"none\" link=\"\" border_position=\"all\"][fusion_text]\r\n<h1 style=\"text-align: center;\">GARDENS</h1>\r\n[/fusion_text][fusion_separator style_type=\"single solid\" top_margin=\"\" bottom_margin=\"20\" sep_color=\"#000000\" border_size=\"\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"170px\" alignment=\"\" class=\"\" id=\"\" /][/fusion_builder_column][fusion_builder_column type=\"1_6\" layout=\"1_6\" last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding_top=\"\" padding_right=\"\" padding_bottom=\"\" padding_left=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\" min_height=\"\"][/fusion_builder_column][fusion_builder_column type=\"2_3\" layout=\"2_3\" last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding_top=\"\" padding_right=\"\" padding_bottom=\"\" padding_left=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\" min_height=\"\"][fusion_text]\r\n<h3 style=\"text-align: justify;\">The garden is large and offers many secluded spots to lose yourself in a book with a glass of wine underneath the shade of a tree, listening to the sounds of the birds and smelling the beautiful flowers.</h3>\r\n[/fusion_text][/fusion_builder_column][fusion_builder_column type=\"1_6\" layout=\"1_6\" last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding_top=\"\" padding_right=\"\" padding_bottom=\"\" padding_left=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\" min_height=\"\"][/fusion_builder_column][fusion_builder_column type=\"1_1\" layout=\"1_1\" background_position=\"left top\" background_color=\"\" border_size=\"\" border_color=\"\" border_style=\"solid\" spacing=\"yes\" background_image=\"\" background_repeat=\"no-repeat\" padding_top=\"\" padding_right=\"\" padding_bottom=\"\" padding_left=\"\" margin_top=\"0px\" margin_bottom=\"0px\" class=\"\" id=\"\" animation_type=\"\" animation_speed=\"0.3\" animation_direction=\"left\" hide_on_mobile=\"no\" center_content=\"no\" min_height=\"none\" last=\"no\" hover_type=\"none\" link=\"\" border_position=\"all\"][fusion_portfolio layout=\"grid\" picture_size=\"auto\" text_layout=\"no_text\" filters=\"no\" columns=\"3\" column_spacing=\"12\" cat_slug=\"gardens\" exclude_cats=\"\" number_posts=\"9\" offset=\"\" excerpt_length=\"35\" strip_html=\"yes\" carousel_layout=\"title_on_rollover\" scroll_items=\"\" autoplay=\"no\" show_nav=\"yes\" mouse_scroll=\"no\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\" /][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container background_color=\"#ffffff\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"65px\" padding_bottom=\"65px\" padding_left=\"\" padding_right=\"\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][fusion_builder_row][fusion_builder_column type=\"1_1\" layout=\"1_1\" background_position=\"left top\" background_color=\"\" border_size=\"\" border_color=\"\" border_style=\"solid\" spacing=\"yes\" background_image=\"\" background_repeat=\"no-repeat\" padding_top=\"\" padding_right=\"\" padding_bottom=\"\" padding_left=\"\" margin_top=\"0px\" margin_bottom=\"0px\" class=\"\" id=\"\" animation_type=\"\" animation_speed=\"0.3\" animation_direction=\"left\" hide_on_mobile=\"no\" center_content=\"no\" min_height=\"none\" last=\"no\" hover_type=\"none\" link=\"\" border_position=\"all\"][fusion_button link=\"https://msla.co.za/lodge/reservations/\" color=\"default\" size=\"xlarge\" stretch=\"default\" type=\"3d\" shape=\"round\" target=\"_self\" title=\"\" button_gradient_top_color=\"#f0f0ed\" button_gradient_bottom_color=\"#f0f0ed\" button_gradient_top_color_hover=\"#6666a4\" button_gradient_bottom_color_hover=\"#6666a4\" accent_color=\"#ffffff\" accent_hover_color=\"#ffffff\" bevel_color=\"\" border_width=\"0px\" icon=\"\" icon_position=\"left\" icon_divider=\"no\" modal=\"\" animation_type=\"0\" animation_direction=\"left\" animation_speed=\"1\" animation_offset=\"\" alignment=\"center\" class=\"\" id=\"\"]Make A Reservation Enquiry[/fusion_button][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container]', 'Home', '', 'inherit', 'closed', 'closed', '', '7-revision-v1', '', '', '2019-11-13 18:20:08', '2019-11-13 16:20:08', '', 7, 'https://msla.co.za/lodge/7-revision-v1/', 0, 'revision', '', 0);
INSERT INTO `wp_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(1395, 1, '2019-11-13 18:20:21', '2019-11-13 16:20:21', '[fusion_builder_container background_color=\"#f0f0ed\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"20\" padding_bottom=\"20\" padding_left=\"\" padding_right=\"\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][fusion_builder_row][fusion_builder_column type=\"1_2\" layout=\"1_2\" last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"\" padding_right=\"\" padding_bottom=\"\" padding_left=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\" min_height=\"\"][fusion_separator style_type=\"single solid\" top_margin=\"0\" bottom_margin=\"30\" sep_color=\"#000000\" border_size=\"\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"170px\" alignment=\"center\" class=\"separator-left\" id=\"\" /][fusion_text]\r\n<h1 style=\"text-align: center;\">No Fancy Star Grading\r\nNo Room Service\r\nNo Bed Turn-downs\r\nNo Rose Petals in the Bath water</h1>\r\n<h1 style=\"text-align: center;\">... just old fashioned homely comforts</h1>\r\n[/fusion_text][/fusion_builder_column][fusion_builder_column type=\"1_2\" layout=\"1_2\" last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"\" padding_right=\"\" padding_bottom=\"\" padding_left=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\" min_height=\"\"][fusion_text]\r\n<h1 style=\"text-align: justify;\">5 BEDROOM FAMILY LODGE</h1>\r\n<h3 style=\"text-align: justify;\">We are a four season lodge, because there’s always something to celebrate… We offer comfort, relaxation and privacy right in the heart of 1000 Hills. The Forest, the Gardens, the Atmosphere all speak to  Rest  &amp; Relaxation.</h3>\r\n[/fusion_text][fusion_separator style_type=\"single solid\" top_margin=\"0\" bottom_margin=\"30\" sep_color=\"#000000\" border_size=\"\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"170px\" alignment=\"left\" class=\"separator-left\" id=\"\" /][fusion_tagline_box backgroundcolor=\"\" shadow=\"yes\" shadowopacity=\"0.70\" border=\"1\" bordercolor=\"\" highlightposition=\"none\" content_alignment=\"center\" link=\"http://msla.co.za/lodge/reservations\" button=\"Book Now!\" linktarget=\"_self\" modal=\"\" button_size=\"large\" button_type=\"\" button_shape=\"square\" buttoncolor=\"default\" title=\"Q3VycmVudCBTcGVjaWFscw==\" description=\"Qm9vayBvbi1saW5lIC0gZ2V0IDE1JSBPRkYgeW91ciBBY2NvbW1vZGF0aW9u\" margin_top=\"\" margin_bottom=\"\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" class=\"\" id=\"\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"\"]\r\n\r\nStay 3 days or more - get 25% OFF your Accommodation\r\n\r\n[/fusion_tagline_box][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container background_color=\"#f0f0ed\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"20\" padding_bottom=\"20\" padding_left=\"\" padding_right=\"\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][fusion_builder_row][fusion_builder_column type=\"1_2\" layout=\"1_2\" last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"\" padding_right=\"\" padding_bottom=\"\" padding_left=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\" min_height=\"\"][fusion_text]\r\n<h3 style=\"text-align: justify;\">Set in the rolling peaks and valleys of a thousand hills surrounded by a canopy of indigenous trees, you will find that horses still have right of way, we certainly offer the best of both worlds, farm and charm coupled with modern amenities that will have you feeling relaxed and rejuvenated.</h3>\r\n<h3 style=\"text-align: justify;\">We know that sometimes you are searching for a romantic getaway or maybe a few days away with old friends. Other times you are searching for a place to host a weekend, family reunion or a business retreat. In addition to nightly room rentals, our lodge is also available for meetings, retreats  and makes the perfect place for a wedding party to stay together and get ready for the big day. Regardless, with our five comfortable and cozy guest bedrooms, multiple garden spaces and hideaways, and a  large private deck  where you can take a nap or read a book we definitely have the room for you!</h3>\r\n<h3 style=\"text-align: justify;\">Evenings are quiet and peaceful taking you far away from the business of city life. This is a unique and memorable country experience. We look forward to having you as a guest!</h3>\r\n[/fusion_text][/fusion_builder_column][fusion_builder_column type=\"1_2\" layout=\"1_2\" last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"\" padding_right=\"\" padding_bottom=\"\" padding_left=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\" min_height=\"\"][fusion_text]\r\n<h3 style=\"text-align: justify;\">Our lodge has been in our family for years and has recently been beautifully renovated. Five rooms all with en-suite showers lead off your own large central lounge, featuring a 36 foot high vaulted ceiling, offering spacious living, dining, and a bar/conversational lounge area which includes a fitted kitchenette, all adding to a sense of homely comfort. Sumptuous meals can be provided on request and served on the bottom deck at the swimming pool.</h3>\r\n<h3 style=\"text-align: justify;\">Be lulled to sleep by the sound of the waterfall and tinkling stream just outside your window, waking from a peaceful night\'s sleep in a pillow-top bed dressed in luxurious linens to coddle you in ultimate comfort.</h3>\r\n<h3 style=\"text-align: justify;\">Our property boasts many different species of birds and animals. We have a resident otter, a family of wild bush pigs,  a family of rock rabbits, porcupine, little blue duikers, a variety of different frogs and an abundance of bird life, including the occasional snakes that pass through!</h3>\r\n[/fusion_text][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container background_color=\"#f0f0ed\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"20\" padding_bottom=\"20\" padding_left=\"\" padding_right=\"\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][fusion_builder_row][fusion_builder_column type=\"1_1\" layout=\"1_1\" background_position=\"left top\" background_color=\"\" border_size=\"\" border_color=\"\" border_style=\"solid\" spacing=\"yes\" background_image=\"\" background_repeat=\"no-repeat\" padding_top=\"\" padding_right=\"\" padding_bottom=\"\" padding_left=\"\" margin_top=\"0px\" margin_bottom=\"0px\" class=\"\" id=\"\" animation_type=\"\" animation_speed=\"0.3\" animation_direction=\"left\" hide_on_mobile=\"no\" center_content=\"no\" min_height=\"none\" last=\"no\" hover_type=\"none\" link=\"\" border_position=\"all\"][fusion_text]\r\n<h1 style=\"text-align: center;\">Gallery</h1>\r\n[/fusion_text][fusion_separator style_type=\"single solid\" top_margin=\"\" bottom_margin=\"40\" sep_color=\"#000000\" border_size=\"\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"170px\" alignment=\"\" class=\"\" id=\"\" /][/fusion_builder_column][fusion_builder_column type=\"1_6\" layout=\"1_6\" last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding_top=\"\" padding_right=\"\" padding_bottom=\"\" padding_left=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\" min_height=\"\"][/fusion_builder_column][fusion_builder_column type=\"2_3\" layout=\"2_3\" last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding_top=\"\" padding_right=\"\" padding_bottom=\"\" padding_left=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\" min_height=\"\"][fusion_text]\r\n<h3 style=\"text-align: justify;\">The Lodge is open, spacious, comfortable and homely. During hot summer days, sit and bask in the sun on the deck  with one of our  picnic specials. In winter, snuggle up with a good book or challenge one another to a friendly board game in the glassed nook area .</h3>\r\n[/fusion_text][/fusion_builder_column][fusion_builder_column type=\"1_6\" layout=\"1_6\" last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding_top=\"\" padding_right=\"\" padding_bottom=\"\" padding_left=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\" min_height=\"\"][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container background_color=\"#f0f0ed\" background_image=\"http://localhost/assagaylodge/wp-content/uploads/2015/01/Wood_Texture.jpg\" background_parallax=\"fixed\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"30\" padding_bottom=\"10\" padding_left=\"0\" padding_right=\"0\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][fusion_builder_row][fusion_builder_column type=\"1_1\" layout=\"1_1\" background_position=\"left top\" background_color=\"\" border_size=\"\" border_color=\"\" border_style=\"solid\" spacing=\"yes\" background_image=\"\" background_repeat=\"no-repeat\" padding_top=\"\" padding_right=\"\" padding_bottom=\"\" padding_left=\"\" margin_top=\"0px\" margin_bottom=\"0px\" class=\"\" id=\"\" animation_type=\"\" animation_speed=\"0.3\" animation_direction=\"left\" hide_on_mobile=\"no\" center_content=\"no\" min_height=\"none\" last=\"no\" hover_type=\"none\" link=\"\" border_position=\"all\"][fusion_portfolio layout=\"grid\" picture_size=\"auto\" text_layout=\"no_text\" filters=\"no\" columns=\"3\" column_spacing=\"12\" cat_slug=\"the-lodge\" exclude_cats=\"\" number_posts=\"9\" offset=\"\" excerpt_length=\"35\" strip_html=\"yes\" carousel_layout=\"title_on_rollover\" scroll_items=\"\" autoplay=\"no\" show_nav=\"yes\" mouse_scroll=\"no\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\" /][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container background_color=\"#f0f0ed\" background_image=\"\" background_parallax=\"fixed\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"20\" padding_bottom=\"20\" padding_left=\"\" padding_right=\"\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][fusion_builder_row][fusion_builder_column type=\"1_1\" layout=\"1_1\" background_position=\"left top\" background_color=\"\" border_size=\"\" border_color=\"\" border_style=\"solid\" spacing=\"yes\" background_image=\"\" background_repeat=\"no-repeat\" padding_top=\"\" padding_right=\"\" padding_bottom=\"\" padding_left=\"\" margin_top=\"0px\" margin_bottom=\"0px\" class=\"\" id=\"\" animation_type=\"\" animation_speed=\"0.3\" animation_direction=\"left\" hide_on_mobile=\"no\" center_content=\"no\" min_height=\"none\" last=\"no\" hover_type=\"none\" link=\"\" border_position=\"all\"][fusion_text]\r\n<h1 style=\"text-align: center;\">BEDROOMS</h1>\r\n[/fusion_text][fusion_separator style_type=\"single solid\" top_margin=\"\" bottom_margin=\"20\" sep_color=\"#000000\" border_size=\"\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"170px\" alignment=\"\" class=\"\" id=\"\" /][/fusion_builder_column][fusion_builder_column type=\"1_6\" layout=\"1_6\" last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding_top=\"\" padding_right=\"\" padding_bottom=\"\" padding_left=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\" min_height=\"\"][/fusion_builder_column][fusion_builder_column type=\"2_3\" layout=\"2_3\" last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding_top=\"\" padding_right=\"\" padding_bottom=\"\" padding_left=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\" min_height=\"\"][fusion_text]\r\n<h3 style=\"text-align: justify;\">When it comes to our bedrooms we’re proud to say we offer something a little more special. One of five  lovingly and tastefully decorated guest rooms. Soft gray decor soothes the senses providing a peaceful, blissfully comfortable rest from your travels and hectic lives.</h3>\r\n<h3 style=\"text-align: justify;\">Our  bedrooms are spacious, clean, comfortable all en-suite, equipped with either king size or queen size beds. Each room sleeps two guests. The rooms have high ceilings, wall heaters &amp; ceiling fans. Beds all have electric blankets in Winter, 100% cotton percale sheets and thick hyper allergenic microfiber duvets and pillows. All guest rooms are cleaned with organic and green products. Amenities include hairdryers in each room. Three rooms feature King-sized beds  of which two can be  split into two single beds. Two  rooms can therefore be changed into a twin room upon request. Two rooms feature a Queen-sized double bed. These beds cannot be split into twin beds.</h3>\r\n[/fusion_text][/fusion_builder_column][fusion_builder_column type=\"1_6\" layout=\"1_6\" last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding_top=\"\" padding_right=\"\" padding_bottom=\"\" padding_left=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\" min_height=\"\"][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container background_color=\"\" background_image=\"http://localhost/assagaylodge/wp-content/uploads/2015/01/DSC01516-1148-x-764.jpg\" background_parallax=\"fixed\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"center center\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"20\" padding_bottom=\"20\" padding_left=\"0\" padding_right=\"0\" hundred_percent=\"no\" equal_height_columns=\"yes\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][fusion_builder_row][fusion_builder_column type=\"1_1\" layout=\"1_1\" background_position=\"left top\" background_color=\"\" border_size=\"\" border_color=\"\" border_style=\"solid\" spacing=\"yes\" background_image=\"\" background_repeat=\"no-repeat\" padding_top=\"\" padding_right=\"\" padding_bottom=\"\" padding_left=\"\" margin_top=\"0px\" margin_bottom=\"0px\" class=\"\" id=\"\" animation_type=\"\" animation_speed=\"0.3\" animation_direction=\"left\" hide_on_mobile=\"no\" center_content=\"no\" min_height=\"none\" last=\"no\" hover_type=\"none\" link=\"\" border_position=\"all\"][fusion_portfolio layout=\"grid\" picture_size=\"auto\" text_layout=\"no_text\" filters=\"no\" columns=\"3\" column_spacing=\"12\" cat_slug=\"bedrooms\" exclude_cats=\"\" number_posts=\"6\" offset=\"\" excerpt_length=\"35\" strip_html=\"yes\" carousel_layout=\"title_on_rollover\" scroll_items=\"\" autoplay=\"no\" show_nav=\"yes\" mouse_scroll=\"no\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\" /][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container background_color=\"#f0f0ed\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"20\" padding_bottom=\"20\" padding_left=\"0\" padding_right=\"0\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][fusion_builder_row][fusion_builder_column type=\"1_1\" layout=\"1_1\" background_position=\"left top\" background_color=\"\" border_size=\"\" border_color=\"\" border_style=\"solid\" spacing=\"yes\" background_image=\"\" background_repeat=\"no-repeat\" padding_top=\"\" padding_right=\"\" padding_bottom=\"\" padding_left=\"\" margin_top=\"0px\" margin_bottom=\"0px\" class=\"\" id=\"\" animation_type=\"\" animation_speed=\"0.3\" animation_direction=\"left\" hide_on_mobile=\"no\" center_content=\"no\" min_height=\"none\" last=\"no\" hover_type=\"none\" link=\"\" border_position=\"all\"][fusion_text]\r\n<h1 style=\"text-align: center;\">GARDENS</h1>\r\n[/fusion_text][fusion_separator style_type=\"single solid\" top_margin=\"\" bottom_margin=\"20\" sep_color=\"#000000\" border_size=\"\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"170px\" alignment=\"\" class=\"\" id=\"\" /][/fusion_builder_column][fusion_builder_column type=\"1_6\" layout=\"1_6\" last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding_top=\"\" padding_right=\"\" padding_bottom=\"\" padding_left=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\" min_height=\"\"][/fusion_builder_column][fusion_builder_column type=\"2_3\" layout=\"2_3\" last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding_top=\"\" padding_right=\"\" padding_bottom=\"\" padding_left=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\" min_height=\"\"][fusion_text]\r\n<h3 style=\"text-align: justify;\">The garden is large and offers many secluded spots to lose yourself in a book with a glass of wine underneath the shade of a tree, listening to the sounds of the birds and smelling the beautiful flowers.</h3>\r\n[/fusion_text][/fusion_builder_column][fusion_builder_column type=\"1_6\" layout=\"1_6\" last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding_top=\"\" padding_right=\"\" padding_bottom=\"\" padding_left=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\" min_height=\"\"][/fusion_builder_column][fusion_builder_column type=\"1_1\" layout=\"1_1\" background_position=\"left top\" background_color=\"\" border_size=\"\" border_color=\"\" border_style=\"solid\" spacing=\"yes\" background_image=\"\" background_repeat=\"no-repeat\" padding_top=\"\" padding_right=\"\" padding_bottom=\"\" padding_left=\"\" margin_top=\"0px\" margin_bottom=\"0px\" class=\"\" id=\"\" animation_type=\"\" animation_speed=\"0.3\" animation_direction=\"left\" hide_on_mobile=\"no\" center_content=\"no\" min_height=\"none\" last=\"no\" hover_type=\"none\" link=\"\" border_position=\"all\"][fusion_portfolio layout=\"grid\" picture_size=\"auto\" text_layout=\"no_text\" filters=\"no\" columns=\"3\" column_spacing=\"12\" cat_slug=\"gardens\" exclude_cats=\"\" number_posts=\"9\" offset=\"\" excerpt_length=\"35\" strip_html=\"yes\" carousel_layout=\"title_on_rollover\" scroll_items=\"\" autoplay=\"no\" show_nav=\"yes\" mouse_scroll=\"no\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\" /][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container background_color=\"#ffffff\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"65px\" padding_bottom=\"65px\" padding_left=\"\" padding_right=\"\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][fusion_builder_row][fusion_builder_column type=\"1_1\" layout=\"1_1\" background_position=\"left top\" background_color=\"\" border_size=\"\" border_color=\"\" border_style=\"solid\" spacing=\"yes\" background_image=\"\" background_repeat=\"no-repeat\" padding_top=\"\" padding_right=\"\" padding_bottom=\"\" padding_left=\"\" margin_top=\"0px\" margin_bottom=\"0px\" class=\"\" id=\"\" animation_type=\"\" animation_speed=\"0.3\" animation_direction=\"left\" hide_on_mobile=\"no\" center_content=\"no\" min_height=\"none\" last=\"no\" hover_type=\"none\" link=\"\" border_position=\"all\"][fusion_button link=\"https://msla.co.za/lodge/reservations/\" color=\"default\" size=\"xlarge\" stretch=\"default\" type=\"3d\" shape=\"round\" target=\"_self\" title=\"\" button_gradient_top_color=\"#f0f0ed\" button_gradient_bottom_color=\"#f0f0ed\" button_gradient_top_color_hover=\"#6666a4\" button_gradient_bottom_color_hover=\"#6666a4\" accent_color=\"#ffffff\" accent_hover_color=\"#ffffff\" bevel_color=\"\" border_width=\"0px\" icon=\"\" icon_position=\"left\" icon_divider=\"no\" modal=\"\" animation_type=\"0\" animation_direction=\"left\" animation_speed=\"1\" animation_offset=\"\" alignment=\"center\" class=\"\" id=\"\"]Make A Reservation Enquiry[/fusion_button][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container]', 'Home', '', 'inherit', 'closed', 'closed', '', '7-revision-v1', '', '', '2019-11-13 18:20:21', '2019-11-13 16:20:21', '', 7, 'https://msla.co.za/lodge/7-revision-v1/', 0, 'revision', '', 0);
INSERT INTO `wp_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(1396, 1, '2019-11-13 18:22:29', '2019-11-13 16:22:29', '[fusion_builder_container background_color=\"#f0f0ed\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"20\" padding_bottom=\"20\" padding_left=\"\" padding_right=\"\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][fusion_builder_row][fusion_builder_column type=\"1_2\" layout=\"1_2\" last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"\" padding_right=\"\" padding_bottom=\"\" padding_left=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\" min_height=\"\"][fusion_separator style_type=\"single solid\" top_margin=\"0\" bottom_margin=\"30\" sep_color=\"#000000\" border_size=\"\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"170px\" alignment=\"center\" class=\"separator-left\" id=\"\" /][fusion_text]\r\n<h1 style=\"text-align: center;\">No Fancy Star Grading\r\nNo Room Service\r\nNo Bed Turn-downs\r\nNo Rose Petals in the Bath water</h1>\r\n<h1 style=\"text-align: center;\">... just old fashioned homely comforts</h1>\r\n[/fusion_text][/fusion_builder_column][fusion_builder_column type=\"1_2\" layout=\"1_2\" last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"\" padding_right=\"\" padding_bottom=\"\" padding_left=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\" min_height=\"\"][fusion_text]\r\n<h1 style=\"text-align: justify;\">5 BEDROOM FAMILY LODGE</h1>\r\n<h3 style=\"text-align: justify;\">We are a four season lodge, because there’s always something to celebrate… We offer comfort, relaxation and privacy right in the heart of 1000 Hills. The Forest, the Gardens, the Atmosphere all speak to  Rest  &amp; Relaxation.</h3>\r\n[/fusion_text][fusion_tagline_box backgroundcolor=\"\" shadow=\"yes\" shadowopacity=\"0.70\" border=\"1\" bordercolor=\"\" highlightposition=\"none\" content_alignment=\"center\" link=\"http://msla.co.za/lodge/reservations\" button=\"Book Now!\" linktarget=\"_self\" modal=\"\" button_size=\"large\" button_type=\"\" button_shape=\"square\" buttoncolor=\"default\" title=\"Q3VycmVudCBTcGVjaWFscw==\" description=\"\" margin_top=\"\" margin_bottom=\"\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" class=\"\" id=\"\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"\"]\r\n<p style=\"text-align: center;\"><span style=\"font-size: 14pt;\">Book on-line - get 15% OFF</span></p>\r\n<p style=\"text-align: center;\"><span style=\"font-size: 14pt;\">Stay 3 days or more - get 25% OFF</span></p>\r\n[/fusion_tagline_box][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container background_color=\"#f0f0ed\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"20\" padding_bottom=\"20\" padding_left=\"\" padding_right=\"\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][fusion_builder_row][fusion_builder_column type=\"1_2\" layout=\"1_2\" last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"\" padding_right=\"\" padding_bottom=\"\" padding_left=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\" min_height=\"\"][fusion_text]\r\n<h3 style=\"text-align: justify;\">Set in the rolling peaks and valleys of a thousand hills surrounded by a canopy of indigenous trees, you will find that horses still have right of way, we certainly offer the best of both worlds, farm and charm coupled with modern amenities that will have you feeling relaxed and rejuvenated.</h3>\r\n<h3 style=\"text-align: justify;\">We know that sometimes you are searching for a romantic getaway or maybe a few days away with old friends. Other times you are searching for a place to host a weekend, family reunion or a business retreat. In addition to nightly room rentals, our lodge is also available for meetings, retreats  and makes the perfect place for a wedding party to stay together and get ready for the big day. Regardless, with our five comfortable and cozy guest bedrooms, multiple garden spaces and hideaways, and a  large private deck  where you can take a nap or read a book we definitely have the room for you!</h3>\r\n<h3 style=\"text-align: justify;\">Evenings are quiet and peaceful taking you far away from the business of city life. This is a unique and memorable country experience. We look forward to having you as a guest!</h3>\r\n[/fusion_text][/fusion_builder_column][fusion_builder_column type=\"1_2\" layout=\"1_2\" last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"\" padding_right=\"\" padding_bottom=\"\" padding_left=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\" min_height=\"\"][fusion_text]\r\n<h3 style=\"text-align: justify;\">Our lodge has been in our family for years and has recently been beautifully renovated. Five rooms all with en-suite showers lead off your own large central lounge, featuring a 36 foot high vaulted ceiling, offering spacious living, dining, and a bar/conversational lounge area which includes a fitted kitchenette, all adding to a sense of homely comfort. Sumptuous meals can be provided on request and served on the bottom deck at the swimming pool.</h3>\r\n<h3 style=\"text-align: justify;\">Be lulled to sleep by the sound of the waterfall and tinkling stream just outside your window, waking from a peaceful night\'s sleep in a pillow-top bed dressed in luxurious linens to coddle you in ultimate comfort.</h3>\r\n<h3 style=\"text-align: justify;\">Our property boasts many different species of birds and animals. We have a resident otter, a family of wild bush pigs,  a family of rock rabbits, porcupine, little blue duikers, a variety of different frogs and an abundance of bird life, including the occasional snakes that pass through!</h3>\r\n[/fusion_text][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container background_color=\"#f0f0ed\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"20\" padding_bottom=\"20\" padding_left=\"\" padding_right=\"\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][fusion_builder_row][fusion_builder_column type=\"1_1\" layout=\"1_1\" background_position=\"left top\" background_color=\"\" border_size=\"\" border_color=\"\" border_style=\"solid\" spacing=\"yes\" background_image=\"\" background_repeat=\"no-repeat\" padding_top=\"\" padding_right=\"\" padding_bottom=\"\" padding_left=\"\" margin_top=\"0px\" margin_bottom=\"0px\" class=\"\" id=\"\" animation_type=\"\" animation_speed=\"0.3\" animation_direction=\"left\" hide_on_mobile=\"no\" center_content=\"no\" min_height=\"none\" last=\"no\" hover_type=\"none\" link=\"\" border_position=\"all\"][fusion_text]\r\n<h1 style=\"text-align: center;\">Gallery</h1>\r\n[/fusion_text][fusion_separator style_type=\"single solid\" top_margin=\"\" bottom_margin=\"40\" sep_color=\"#000000\" border_size=\"\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"170px\" alignment=\"\" class=\"\" id=\"\" /][/fusion_builder_column][fusion_builder_column type=\"1_6\" layout=\"1_6\" last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding_top=\"\" padding_right=\"\" padding_bottom=\"\" padding_left=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\" min_height=\"\"][/fusion_builder_column][fusion_builder_column type=\"2_3\" layout=\"2_3\" last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding_top=\"\" padding_right=\"\" padding_bottom=\"\" padding_left=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\" min_height=\"\"][fusion_text]\r\n<h3 style=\"text-align: justify;\">The Lodge is open, spacious, comfortable and homely. During hot summer days, sit and bask in the sun on the deck  with one of our  picnic specials. In winter, snuggle up with a good book or challenge one another to a friendly board game in the glassed nook area .</h3>\r\n[/fusion_text][/fusion_builder_column][fusion_builder_column type=\"1_6\" layout=\"1_6\" last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding_top=\"\" padding_right=\"\" padding_bottom=\"\" padding_left=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\" min_height=\"\"][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container background_color=\"#f0f0ed\" background_image=\"http://localhost/assagaylodge/wp-content/uploads/2015/01/Wood_Texture.jpg\" background_parallax=\"fixed\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"30\" padding_bottom=\"10\" padding_left=\"0\" padding_right=\"0\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][fusion_builder_row][fusion_builder_column type=\"1_1\" layout=\"1_1\" background_position=\"left top\" background_color=\"\" border_size=\"\" border_color=\"\" border_style=\"solid\" spacing=\"yes\" background_image=\"\" background_repeat=\"no-repeat\" padding_top=\"\" padding_right=\"\" padding_bottom=\"\" padding_left=\"\" margin_top=\"0px\" margin_bottom=\"0px\" class=\"\" id=\"\" animation_type=\"\" animation_speed=\"0.3\" animation_direction=\"left\" hide_on_mobile=\"no\" center_content=\"no\" min_height=\"none\" last=\"no\" hover_type=\"none\" link=\"\" border_position=\"all\"][fusion_portfolio layout=\"grid\" picture_size=\"auto\" text_layout=\"no_text\" filters=\"no\" columns=\"3\" column_spacing=\"12\" cat_slug=\"the-lodge\" exclude_cats=\"\" number_posts=\"9\" offset=\"\" excerpt_length=\"35\" strip_html=\"yes\" carousel_layout=\"title_on_rollover\" scroll_items=\"\" autoplay=\"no\" show_nav=\"yes\" mouse_scroll=\"no\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\" /][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container background_color=\"#f0f0ed\" background_image=\"\" background_parallax=\"fixed\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"20\" padding_bottom=\"20\" padding_left=\"\" padding_right=\"\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][fusion_builder_row][fusion_builder_column type=\"1_1\" layout=\"1_1\" background_position=\"left top\" background_color=\"\" border_size=\"\" border_color=\"\" border_style=\"solid\" spacing=\"yes\" background_image=\"\" background_repeat=\"no-repeat\" padding_top=\"\" padding_right=\"\" padding_bottom=\"\" padding_left=\"\" margin_top=\"0px\" margin_bottom=\"0px\" class=\"\" id=\"\" animation_type=\"\" animation_speed=\"0.3\" animation_direction=\"left\" hide_on_mobile=\"no\" center_content=\"no\" min_height=\"none\" last=\"no\" hover_type=\"none\" link=\"\" border_position=\"all\"][fusion_text]\r\n<h1 style=\"text-align: center;\">BEDROOMS</h1>\r\n[/fusion_text][fusion_separator style_type=\"single solid\" top_margin=\"\" bottom_margin=\"20\" sep_color=\"#000000\" border_size=\"\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"170px\" alignment=\"\" class=\"\" id=\"\" /][/fusion_builder_column][fusion_builder_column type=\"1_6\" layout=\"1_6\" last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding_top=\"\" padding_right=\"\" padding_bottom=\"\" padding_left=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\" min_height=\"\"][/fusion_builder_column][fusion_builder_column type=\"2_3\" layout=\"2_3\" last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding_top=\"\" padding_right=\"\" padding_bottom=\"\" padding_left=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\" min_height=\"\"][fusion_text]\r\n<h3 style=\"text-align: justify;\">When it comes to our bedrooms we’re proud to say we offer something a little more special. One of five  lovingly and tastefully decorated guest rooms. Soft gray decor soothes the senses providing a peaceful, blissfully comfortable rest from your travels and hectic lives.</h3>\r\n<h3 style=\"text-align: justify;\">Our  bedrooms are spacious, clean, comfortable all en-suite, equipped with either king size or queen size beds. Each room sleeps two guests. The rooms have high ceilings, wall heaters &amp; ceiling fans. Beds all have electric blankets in Winter, 100% cotton percale sheets and thick hyper allergenic microfiber duvets and pillows. All guest rooms are cleaned with organic and green products. Amenities include hairdryers in each room. Three rooms feature King-sized beds  of which two can be  split into two single beds. Two  rooms can therefore be changed into a twin room upon request. Two rooms feature a Queen-sized double bed. These beds cannot be split into twin beds.</h3>\r\n[/fusion_text][/fusion_builder_column][fusion_builder_column type=\"1_6\" layout=\"1_6\" last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding_top=\"\" padding_right=\"\" padding_bottom=\"\" padding_left=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\" min_height=\"\"][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container background_color=\"\" background_image=\"http://localhost/assagaylodge/wp-content/uploads/2015/01/DSC01516-1148-x-764.jpg\" background_parallax=\"fixed\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"center center\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"20\" padding_bottom=\"20\" padding_left=\"0\" padding_right=\"0\" hundred_percent=\"no\" equal_height_columns=\"yes\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][fusion_builder_row][fusion_builder_column type=\"1_1\" layout=\"1_1\" background_position=\"left top\" background_color=\"\" border_size=\"\" border_color=\"\" border_style=\"solid\" spacing=\"yes\" background_image=\"\" background_repeat=\"no-repeat\" padding_top=\"\" padding_right=\"\" padding_bottom=\"\" padding_left=\"\" margin_top=\"0px\" margin_bottom=\"0px\" class=\"\" id=\"\" animation_type=\"\" animation_speed=\"0.3\" animation_direction=\"left\" hide_on_mobile=\"no\" center_content=\"no\" min_height=\"none\" last=\"no\" hover_type=\"none\" link=\"\" border_position=\"all\"][fusion_portfolio layout=\"grid\" picture_size=\"auto\" text_layout=\"no_text\" filters=\"no\" columns=\"3\" column_spacing=\"12\" cat_slug=\"bedrooms\" exclude_cats=\"\" number_posts=\"6\" offset=\"\" excerpt_length=\"35\" strip_html=\"yes\" carousel_layout=\"title_on_rollover\" scroll_items=\"\" autoplay=\"no\" show_nav=\"yes\" mouse_scroll=\"no\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\" /][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container background_color=\"#f0f0ed\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"20\" padding_bottom=\"20\" padding_left=\"0\" padding_right=\"0\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][fusion_builder_row][fusion_builder_column type=\"1_1\" layout=\"1_1\" background_position=\"left top\" background_color=\"\" border_size=\"\" border_color=\"\" border_style=\"solid\" spacing=\"yes\" background_image=\"\" background_repeat=\"no-repeat\" padding_top=\"\" padding_right=\"\" padding_bottom=\"\" padding_left=\"\" margin_top=\"0px\" margin_bottom=\"0px\" class=\"\" id=\"\" animation_type=\"\" animation_speed=\"0.3\" animation_direction=\"left\" hide_on_mobile=\"no\" center_content=\"no\" min_height=\"none\" last=\"no\" hover_type=\"none\" link=\"\" border_position=\"all\"][fusion_text]\r\n<h1 style=\"text-align: center;\">GARDENS</h1>\r\n[/fusion_text][fusion_separator style_type=\"single solid\" top_margin=\"\" bottom_margin=\"20\" sep_color=\"#000000\" border_size=\"\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"170px\" alignment=\"\" class=\"\" id=\"\" /][/fusion_builder_column][fusion_builder_column type=\"1_6\" layout=\"1_6\" last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding_top=\"\" padding_right=\"\" padding_bottom=\"\" padding_left=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\" min_height=\"\"][/fusion_builder_column][fusion_builder_column type=\"2_3\" layout=\"2_3\" last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding_top=\"\" padding_right=\"\" padding_bottom=\"\" padding_left=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\" min_height=\"\"][fusion_text]\r\n<h3 style=\"text-align: justify;\">The garden is large and offers many secluded spots to lose yourself in a book with a glass of wine underneath the shade of a tree, listening to the sounds of the birds and smelling the beautiful flowers.</h3>\r\n[/fusion_text][/fusion_builder_column][fusion_builder_column type=\"1_6\" layout=\"1_6\" last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding_top=\"\" padding_right=\"\" padding_bottom=\"\" padding_left=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\" min_height=\"\"][/fusion_builder_column][fusion_builder_column type=\"1_1\" layout=\"1_1\" background_position=\"left top\" background_color=\"\" border_size=\"\" border_color=\"\" border_style=\"solid\" spacing=\"yes\" background_image=\"\" background_repeat=\"no-repeat\" padding_top=\"\" padding_right=\"\" padding_bottom=\"\" padding_left=\"\" margin_top=\"0px\" margin_bottom=\"0px\" class=\"\" id=\"\" animation_type=\"\" animation_speed=\"0.3\" animation_direction=\"left\" hide_on_mobile=\"no\" center_content=\"no\" min_height=\"none\" last=\"no\" hover_type=\"none\" link=\"\" border_position=\"all\"][fusion_portfolio layout=\"grid\" picture_size=\"auto\" text_layout=\"no_text\" filters=\"no\" columns=\"3\" column_spacing=\"12\" cat_slug=\"gardens\" exclude_cats=\"\" number_posts=\"9\" offset=\"\" excerpt_length=\"35\" strip_html=\"yes\" carousel_layout=\"title_on_rollover\" scroll_items=\"\" autoplay=\"no\" show_nav=\"yes\" mouse_scroll=\"no\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\" /][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container background_color=\"#ffffff\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"65px\" padding_bottom=\"65px\" padding_left=\"\" padding_right=\"\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][fusion_builder_row][fusion_builder_column type=\"1_1\" layout=\"1_1\" background_position=\"left top\" background_color=\"\" border_size=\"\" border_color=\"\" border_style=\"solid\" spacing=\"yes\" background_image=\"\" background_repeat=\"no-repeat\" padding_top=\"\" padding_right=\"\" padding_bottom=\"\" padding_left=\"\" margin_top=\"0px\" margin_bottom=\"0px\" class=\"\" id=\"\" animation_type=\"\" animation_speed=\"0.3\" animation_direction=\"left\" hide_on_mobile=\"no\" center_content=\"no\" min_height=\"none\" last=\"no\" hover_type=\"none\" link=\"\" border_position=\"all\"][fusion_button link=\"https://msla.co.za/lodge/reservations/\" color=\"default\" size=\"xlarge\" stretch=\"default\" type=\"3d\" shape=\"round\" target=\"_self\" title=\"\" button_gradient_top_color=\"#f0f0ed\" button_gradient_bottom_color=\"#f0f0ed\" button_gradient_top_color_hover=\"#6666a4\" button_gradient_bottom_color_hover=\"#6666a4\" accent_color=\"#ffffff\" accent_hover_color=\"#ffffff\" bevel_color=\"\" border_width=\"0px\" icon=\"\" icon_position=\"left\" icon_divider=\"no\" modal=\"\" animation_type=\"0\" animation_direction=\"left\" animation_speed=\"1\" animation_offset=\"\" alignment=\"center\" class=\"\" id=\"\"]Make A Reservation Enquiry[/fusion_button][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container]', 'Home', '', 'inherit', 'closed', 'closed', '', '7-revision-v1', '', '', '2019-11-13 18:22:29', '2019-11-13 16:22:29', '', 7, 'https://msla.co.za/lodge/7-revision-v1/', 0, 'revision', '', 0);
INSERT INTO `wp_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(1398, 1, '2019-11-13 18:24:34', '2019-11-13 16:24:34', '[fusion_builder_container background_color=\"#f0f0ed\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"20\" padding_bottom=\"20\" padding_left=\"\" padding_right=\"\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][fusion_builder_row][fusion_builder_column type=\"1_2\" layout=\"1_2\" last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"\" padding_right=\"\" padding_bottom=\"\" padding_left=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\" min_height=\"\"][fusion_separator style_type=\"single solid\" top_margin=\"0\" bottom_margin=\"30\" sep_color=\"#000000\" border_size=\"\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"170px\" alignment=\"center\" class=\"separator-left\" id=\"\" /][fusion_text]\r\n<h1 style=\"text-align: center;\">No Fancy Star Grading\r\nNo Room Service\r\nNo Bed Turn-downs\r\nNo Rose Petals in the Bath water</h1>\r\n<h1 style=\"text-align: center;\">... just old fashioned homely comforts</h1>\r\n[/fusion_text][/fusion_builder_column][fusion_builder_column type=\"1_2\" layout=\"1_2\" last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"\" padding_right=\"\" padding_bottom=\"\" padding_left=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\" min_height=\"\"][fusion_text]\r\n<h1 style=\"text-align: justify;\">5 BEDROOM FAMILY LODGE</h1>\r\n<h3 style=\"text-align: justify;\">We are a four season lodge, because there’s always something to celebrate… We offer comfort, relaxation and privacy right in the heart of 1000 Hills. The Forest, the Gardens, the Atmosphere all speak to  Rest  &amp; Relaxation.</h3>\r\n[/fusion_text][fusion_tagline_box backgroundcolor=\"\" shadow=\"yes\" shadowopacity=\"0.70\" border=\"1\" bordercolor=\"\" highlightposition=\"none\" content_alignment=\"center\" link=\"http://msla.co.za/lodge/reservations\" button=\"Book Now!\" linktarget=\"_self\" modal=\"\" button_size=\"large\" button_type=\"\" button_shape=\"square\" buttoncolor=\"default\" title=\"Q3VycmVudCBTcGVjaWFscw==\" description=\"\" margin_top=\"\" margin_bottom=\"\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" class=\"\" id=\"\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"\"]\r\n<h3 style=\"text-align: center;\"><span style=\"text-decoration: underline;\">Current Specials</span></h3>\r\n<p style=\"text-align: center;\"><span style=\"font-size: 14pt;\">Book on-line - get 15% OF\r\n</span><span style=\"font-size: 14pt;\">Stay 3 days or more - get 25% OFF</span></p>\r\n[/fusion_tagline_box][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container background_color=\"#f0f0ed\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"20\" padding_bottom=\"20\" padding_left=\"\" padding_right=\"\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][fusion_builder_row][fusion_builder_column type=\"1_2\" layout=\"1_2\" last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"\" padding_right=\"\" padding_bottom=\"\" padding_left=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\" min_height=\"\"][fusion_text]\r\n<h3 style=\"text-align: justify;\">Set in the rolling peaks and valleys of a thousand hills surrounded by a canopy of indigenous trees, you will find that horses still have right of way, we certainly offer the best of both worlds, farm and charm coupled with modern amenities that will have you feeling relaxed and rejuvenated.</h3>\r\n<h3 style=\"text-align: justify;\">We know that sometimes you are searching for a romantic getaway or maybe a few days away with old friends. Other times you are searching for a place to host a weekend, family reunion or a business retreat. In addition to nightly room rentals, our lodge is also available for meetings, retreats  and makes the perfect place for a wedding party to stay together and get ready for the big day. Regardless, with our five comfortable and cozy guest bedrooms, multiple garden spaces and hideaways, and a  large private deck  where you can take a nap or read a book we definitely have the room for you!</h3>\r\n<h3 style=\"text-align: justify;\">Evenings are quiet and peaceful taking you far away from the business of city life. This is a unique and memorable country experience. We look forward to having you as a guest!</h3>\r\n[/fusion_text][/fusion_builder_column][fusion_builder_column type=\"1_2\" layout=\"1_2\" last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"\" padding_right=\"\" padding_bottom=\"\" padding_left=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\" min_height=\"\"][fusion_text]\r\n<h3 style=\"text-align: justify;\">Our lodge has been in our family for years and has recently been beautifully renovated. Five rooms all with en-suite showers lead off your own large central lounge, featuring a 36 foot high vaulted ceiling, offering spacious living, dining, and a bar/conversational lounge area which includes a fitted kitchenette, all adding to a sense of homely comfort. Sumptuous meals can be provided on request and served on the bottom deck at the swimming pool.</h3>\r\n<h3 style=\"text-align: justify;\">Be lulled to sleep by the sound of the waterfall and tinkling stream just outside your window, waking from a peaceful night\'s sleep in a pillow-top bed dressed in luxurious linens to coddle you in ultimate comfort.</h3>\r\n<h3 style=\"text-align: justify;\">Our property boasts many different species of birds and animals. We have a resident otter, a family of wild bush pigs,  a family of rock rabbits, porcupine, little blue duikers, a variety of different frogs and an abundance of bird life, including the occasional snakes that pass through!</h3>\r\n[/fusion_text][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container background_color=\"#f0f0ed\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"20\" padding_bottom=\"20\" padding_left=\"\" padding_right=\"\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][fusion_builder_row][fusion_builder_column type=\"1_1\" layout=\"1_1\" background_position=\"left top\" background_color=\"\" border_size=\"\" border_color=\"\" border_style=\"solid\" spacing=\"yes\" background_image=\"\" background_repeat=\"no-repeat\" padding_top=\"\" padding_right=\"\" padding_bottom=\"\" padding_left=\"\" margin_top=\"0px\" margin_bottom=\"0px\" class=\"\" id=\"\" animation_type=\"\" animation_speed=\"0.3\" animation_direction=\"left\" hide_on_mobile=\"no\" center_content=\"no\" min_height=\"none\" last=\"no\" hover_type=\"none\" link=\"\" border_position=\"all\"][fusion_text]\r\n<h1 style=\"text-align: center;\">Gallery</h1>\r\n[/fusion_text][fusion_separator style_type=\"single solid\" top_margin=\"\" bottom_margin=\"40\" sep_color=\"#000000\" border_size=\"\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"170px\" alignment=\"\" class=\"\" id=\"\" /][/fusion_builder_column][fusion_builder_column type=\"1_6\" layout=\"1_6\" last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding_top=\"\" padding_right=\"\" padding_bottom=\"\" padding_left=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\" min_height=\"\"][/fusion_builder_column][fusion_builder_column type=\"2_3\" layout=\"2_3\" last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding_top=\"\" padding_right=\"\" padding_bottom=\"\" padding_left=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\" min_height=\"\"][fusion_text]\r\n<h3 style=\"text-align: justify;\">The Lodge is open, spacious, comfortable and homely. During hot summer days, sit and bask in the sun on the deck  with one of our  picnic specials. In winter, snuggle up with a good book or challenge one another to a friendly board game in the glassed nook area .</h3>\r\n[/fusion_text][/fusion_builder_column][fusion_builder_column type=\"1_6\" layout=\"1_6\" last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding_top=\"\" padding_right=\"\" padding_bottom=\"\" padding_left=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\" min_height=\"\"][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container background_color=\"#f0f0ed\" background_image=\"http://localhost/assagaylodge/wp-content/uploads/2015/01/Wood_Texture.jpg\" background_parallax=\"fixed\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"30\" padding_bottom=\"10\" padding_left=\"0\" padding_right=\"0\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][fusion_builder_row][fusion_builder_column type=\"1_1\" layout=\"1_1\" background_position=\"left top\" background_color=\"\" border_size=\"\" border_color=\"\" border_style=\"solid\" spacing=\"yes\" background_image=\"\" background_repeat=\"no-repeat\" padding_top=\"\" padding_right=\"\" padding_bottom=\"\" padding_left=\"\" margin_top=\"0px\" margin_bottom=\"0px\" class=\"\" id=\"\" animation_type=\"\" animation_speed=\"0.3\" animation_direction=\"left\" hide_on_mobile=\"no\" center_content=\"no\" min_height=\"none\" last=\"no\" hover_type=\"none\" link=\"\" border_position=\"all\"][fusion_portfolio layout=\"grid\" picture_size=\"auto\" text_layout=\"no_text\" filters=\"no\" columns=\"3\" column_spacing=\"12\" cat_slug=\"the-lodge\" exclude_cats=\"\" number_posts=\"9\" offset=\"\" excerpt_length=\"35\" strip_html=\"yes\" carousel_layout=\"title_on_rollover\" scroll_items=\"\" autoplay=\"no\" show_nav=\"yes\" mouse_scroll=\"no\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\" /][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container background_color=\"#f0f0ed\" background_image=\"\" background_parallax=\"fixed\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"20\" padding_bottom=\"20\" padding_left=\"\" padding_right=\"\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][fusion_builder_row][fusion_builder_column type=\"1_1\" layout=\"1_1\" background_position=\"left top\" background_color=\"\" border_size=\"\" border_color=\"\" border_style=\"solid\" spacing=\"yes\" background_image=\"\" background_repeat=\"no-repeat\" padding_top=\"\" padding_right=\"\" padding_bottom=\"\" padding_left=\"\" margin_top=\"0px\" margin_bottom=\"0px\" class=\"\" id=\"\" animation_type=\"\" animation_speed=\"0.3\" animation_direction=\"left\" hide_on_mobile=\"no\" center_content=\"no\" min_height=\"none\" last=\"no\" hover_type=\"none\" link=\"\" border_position=\"all\"][fusion_text]\r\n<h1 style=\"text-align: center;\">BEDROOMS</h1>\r\n[/fusion_text][fusion_separator style_type=\"single solid\" top_margin=\"\" bottom_margin=\"20\" sep_color=\"#000000\" border_size=\"\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"170px\" alignment=\"\" class=\"\" id=\"\" /][/fusion_builder_column][fusion_builder_column type=\"1_6\" layout=\"1_6\" last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding_top=\"\" padding_right=\"\" padding_bottom=\"\" padding_left=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\" min_height=\"\"][/fusion_builder_column][fusion_builder_column type=\"2_3\" layout=\"2_3\" last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding_top=\"\" padding_right=\"\" padding_bottom=\"\" padding_left=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\" min_height=\"\"][fusion_text]\r\n<h3 style=\"text-align: justify;\">When it comes to our bedrooms we’re proud to say we offer something a little more special. One of five  lovingly and tastefully decorated guest rooms. Soft gray decor soothes the senses providing a peaceful, blissfully comfortable rest from your travels and hectic lives.</h3>\r\n<h3 style=\"text-align: justify;\">Our  bedrooms are spacious, clean, comfortable all en-suite, equipped with either king size or queen size beds. Each room sleeps two guests. The rooms have high ceilings, wall heaters &amp; ceiling fans. Beds all have electric blankets in Winter, 100% cotton percale sheets and thick hyper allergenic microfiber duvets and pillows. All guest rooms are cleaned with organic and green products. Amenities include hairdryers in each room. Three rooms feature King-sized beds  of which two can be  split into two single beds. Two  rooms can therefore be changed into a twin room upon request. Two rooms feature a Queen-sized double bed. These beds cannot be split into twin beds.</h3>\r\n[/fusion_text][/fusion_builder_column][fusion_builder_column type=\"1_6\" layout=\"1_6\" last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding_top=\"\" padding_right=\"\" padding_bottom=\"\" padding_left=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\" min_height=\"\"][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container background_color=\"\" background_image=\"http://localhost/assagaylodge/wp-content/uploads/2015/01/DSC01516-1148-x-764.jpg\" background_parallax=\"fixed\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"center center\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"20\" padding_bottom=\"20\" padding_left=\"0\" padding_right=\"0\" hundred_percent=\"no\" equal_height_columns=\"yes\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][fusion_builder_row][fusion_builder_column type=\"1_1\" layout=\"1_1\" background_position=\"left top\" background_color=\"\" border_size=\"\" border_color=\"\" border_style=\"solid\" spacing=\"yes\" background_image=\"\" background_repeat=\"no-repeat\" padding_top=\"\" padding_right=\"\" padding_bottom=\"\" padding_left=\"\" margin_top=\"0px\" margin_bottom=\"0px\" class=\"\" id=\"\" animation_type=\"\" animation_speed=\"0.3\" animation_direction=\"left\" hide_on_mobile=\"no\" center_content=\"no\" min_height=\"none\" last=\"no\" hover_type=\"none\" link=\"\" border_position=\"all\"][fusion_portfolio layout=\"grid\" picture_size=\"auto\" text_layout=\"no_text\" filters=\"no\" columns=\"3\" column_spacing=\"12\" cat_slug=\"bedrooms\" exclude_cats=\"\" number_posts=\"6\" offset=\"\" excerpt_length=\"35\" strip_html=\"yes\" carousel_layout=\"title_on_rollover\" scroll_items=\"\" autoplay=\"no\" show_nav=\"yes\" mouse_scroll=\"no\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\" /][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container background_color=\"#f0f0ed\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"20\" padding_bottom=\"20\" padding_left=\"0\" padding_right=\"0\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][fusion_builder_row][fusion_builder_column type=\"1_1\" layout=\"1_1\" background_position=\"left top\" background_color=\"\" border_size=\"\" border_color=\"\" border_style=\"solid\" spacing=\"yes\" background_image=\"\" background_repeat=\"no-repeat\" padding_top=\"\" padding_right=\"\" padding_bottom=\"\" padding_left=\"\" margin_top=\"0px\" margin_bottom=\"0px\" class=\"\" id=\"\" animation_type=\"\" animation_speed=\"0.3\" animation_direction=\"left\" hide_on_mobile=\"no\" center_content=\"no\" min_height=\"none\" last=\"no\" hover_type=\"none\" link=\"\" border_position=\"all\"][fusion_text]\r\n<h1 style=\"text-align: center;\">GARDENS</h1>\r\n[/fusion_text][fusion_separator style_type=\"single solid\" top_margin=\"\" bottom_margin=\"20\" sep_color=\"#000000\" border_size=\"\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"170px\" alignment=\"\" class=\"\" id=\"\" /][/fusion_builder_column][fusion_builder_column type=\"1_6\" layout=\"1_6\" last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding_top=\"\" padding_right=\"\" padding_bottom=\"\" padding_left=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\" min_height=\"\"][/fusion_builder_column][fusion_builder_column type=\"2_3\" layout=\"2_3\" last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding_top=\"\" padding_right=\"\" padding_bottom=\"\" padding_left=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\" min_height=\"\"][fusion_text]\r\n<h3 style=\"text-align: justify;\">The garden is large and offers many secluded spots to lose yourself in a book with a glass of wine underneath the shade of a tree, listening to the sounds of the birds and smelling the beautiful flowers.</h3>\r\n[/fusion_text][/fusion_builder_column][fusion_builder_column type=\"1_6\" layout=\"1_6\" last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding_top=\"\" padding_right=\"\" padding_bottom=\"\" padding_left=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\" min_height=\"\"][/fusion_builder_column][fusion_builder_column type=\"1_1\" layout=\"1_1\" background_position=\"left top\" background_color=\"\" border_size=\"\" border_color=\"\" border_style=\"solid\" spacing=\"yes\" background_image=\"\" background_repeat=\"no-repeat\" padding_top=\"\" padding_right=\"\" padding_bottom=\"\" padding_left=\"\" margin_top=\"0px\" margin_bottom=\"0px\" class=\"\" id=\"\" animation_type=\"\" animation_speed=\"0.3\" animation_direction=\"left\" hide_on_mobile=\"no\" center_content=\"no\" min_height=\"none\" last=\"no\" hover_type=\"none\" link=\"\" border_position=\"all\"][fusion_portfolio layout=\"grid\" picture_size=\"auto\" text_layout=\"no_text\" filters=\"no\" columns=\"3\" column_spacing=\"12\" cat_slug=\"gardens\" exclude_cats=\"\" number_posts=\"9\" offset=\"\" excerpt_length=\"35\" strip_html=\"yes\" carousel_layout=\"title_on_rollover\" scroll_items=\"\" autoplay=\"no\" show_nav=\"yes\" mouse_scroll=\"no\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\" /][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container background_color=\"#ffffff\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"65px\" padding_bottom=\"65px\" padding_left=\"\" padding_right=\"\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][fusion_builder_row][fusion_builder_column type=\"1_1\" layout=\"1_1\" background_position=\"left top\" background_color=\"\" border_size=\"\" border_color=\"\" border_style=\"solid\" spacing=\"yes\" background_image=\"\" background_repeat=\"no-repeat\" padding_top=\"\" padding_right=\"\" padding_bottom=\"\" padding_left=\"\" margin_top=\"0px\" margin_bottom=\"0px\" class=\"\" id=\"\" animation_type=\"\" animation_speed=\"0.3\" animation_direction=\"left\" hide_on_mobile=\"no\" center_content=\"no\" min_height=\"none\" last=\"no\" hover_type=\"none\" link=\"\" border_position=\"all\"][fusion_button link=\"https://msla.co.za/lodge/reservations/\" color=\"default\" size=\"xlarge\" stretch=\"default\" type=\"3d\" shape=\"round\" target=\"_self\" title=\"\" button_gradient_top_color=\"#f0f0ed\" button_gradient_bottom_color=\"#f0f0ed\" button_gradient_top_color_hover=\"#6666a4\" button_gradient_bottom_color_hover=\"#6666a4\" accent_color=\"#ffffff\" accent_hover_color=\"#ffffff\" bevel_color=\"\" border_width=\"0px\" icon=\"\" icon_position=\"left\" icon_divider=\"no\" modal=\"\" animation_type=\"0\" animation_direction=\"left\" animation_speed=\"1\" animation_offset=\"\" alignment=\"center\" class=\"\" id=\"\"]Make A Reservation Enquiry[/fusion_button][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container]', 'Home', '', 'inherit', 'closed', 'closed', '', '7-revision-v1', '', '', '2019-11-13 18:24:34', '2019-11-13 16:24:34', '', 7, 'https://msla.co.za/lodge/7-revision-v1/', 0, 'revision', '', 0);
INSERT INTO `wp_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(1399, 1, '2019-11-13 18:25:07', '2019-11-13 16:25:07', '[fusion_builder_container background_color=\"#f0f0ed\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"20\" padding_bottom=\"20\" padding_left=\"\" padding_right=\"\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][fusion_builder_row][fusion_builder_column type=\"1_2\" layout=\"1_2\" last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"\" padding_right=\"\" padding_bottom=\"\" padding_left=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\" min_height=\"\"][fusion_separator style_type=\"single solid\" top_margin=\"0\" bottom_margin=\"30\" sep_color=\"#000000\" border_size=\"\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"170px\" alignment=\"center\" class=\"separator-left\" id=\"\" /][fusion_text]\r\n<h1 style=\"text-align: center;\">No Fancy Star Grading\r\nNo Room Service\r\nNo Bed Turn-downs\r\nNo Rose Petals in the Bath water</h1>\r\n<h1 style=\"text-align: center;\">... just old fashioned homely comforts</h1>\r\n[/fusion_text][/fusion_builder_column][fusion_builder_column type=\"1_2\" layout=\"1_2\" last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"\" padding_right=\"\" padding_bottom=\"\" padding_left=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\" min_height=\"\"][fusion_text]\r\n<h1 style=\"text-align: justify;\">5 BEDROOM FAMILY LODGE</h1>\r\n<h3 style=\"text-align: justify;\">We are a four season lodge, because there’s always something to celebrate… We offer comfort, relaxation and privacy right in the heart of 1000 Hills. The Forest, the Gardens, the Atmosphere all speak to  Rest  &amp; Relaxation.</h3>\r\n[/fusion_text][fusion_tagline_box backgroundcolor=\"\" shadow=\"yes\" shadowopacity=\"0.70\" border=\"1\" bordercolor=\"\" highlightposition=\"none\" content_alignment=\"center\" link=\"http://msla.co.za/lodge/reservations\" button=\"Book Now!\" linktarget=\"_self\" modal=\"\" button_size=\"large\" button_type=\"\" button_shape=\"square\" buttoncolor=\"default\" title=\"\" description=\"\" margin_top=\"\" margin_bottom=\"\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" class=\"\" id=\"\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"\"]\r\n<h2 style=\"text-align: center;\"><span style=\"text-decoration: underline;\">Current Specials</span></h2>\r\n<p style=\"text-align: center;\"><span style=\"font-size: 14pt;\">Book on-line - get 15% OF\r\n</span><span style=\"font-size: 14pt;\">Stay 3 days or more - get 25% OFF</span></p>\r\n[/fusion_tagline_box][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container background_color=\"#f0f0ed\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"20\" padding_bottom=\"20\" padding_left=\"\" padding_right=\"\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][fusion_builder_row][fusion_builder_column type=\"1_2\" layout=\"1_2\" last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"\" padding_right=\"\" padding_bottom=\"\" padding_left=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\" min_height=\"\"][fusion_text]\r\n<h3 style=\"text-align: justify;\">Set in the rolling peaks and valleys of a thousand hills surrounded by a canopy of indigenous trees, you will find that horses still have right of way, we certainly offer the best of both worlds, farm and charm coupled with modern amenities that will have you feeling relaxed and rejuvenated.</h3>\r\n<h3 style=\"text-align: justify;\">We know that sometimes you are searching for a romantic getaway or maybe a few days away with old friends. Other times you are searching for a place to host a weekend, family reunion or a business retreat. In addition to nightly room rentals, our lodge is also available for meetings, retreats  and makes the perfect place for a wedding party to stay together and get ready for the big day. Regardless, with our five comfortable and cozy guest bedrooms, multiple garden spaces and hideaways, and a  large private deck  where you can take a nap or read a book we definitely have the room for you!</h3>\r\n<h3 style=\"text-align: justify;\">Evenings are quiet and peaceful taking you far away from the business of city life. This is a unique and memorable country experience. We look forward to having you as a guest!</h3>\r\n[/fusion_text][/fusion_builder_column][fusion_builder_column type=\"1_2\" layout=\"1_2\" last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"\" padding_right=\"\" padding_bottom=\"\" padding_left=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\" min_height=\"\"][fusion_text]\r\n<h3 style=\"text-align: justify;\">Our lodge has been in our family for years and has recently been beautifully renovated. Five rooms all with en-suite showers lead off your own large central lounge, featuring a 36 foot high vaulted ceiling, offering spacious living, dining, and a bar/conversational lounge area which includes a fitted kitchenette, all adding to a sense of homely comfort. Sumptuous meals can be provided on request and served on the bottom deck at the swimming pool.</h3>\r\n<h3 style=\"text-align: justify;\">Be lulled to sleep by the sound of the waterfall and tinkling stream just outside your window, waking from a peaceful night\'s sleep in a pillow-top bed dressed in luxurious linens to coddle you in ultimate comfort.</h3>\r\n<h3 style=\"text-align: justify;\">Our property boasts many different species of birds and animals. We have a resident otter, a family of wild bush pigs,  a family of rock rabbits, porcupine, little blue duikers, a variety of different frogs and an abundance of bird life, including the occasional snakes that pass through!</h3>\r\n[/fusion_text][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container background_color=\"#f0f0ed\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"20\" padding_bottom=\"20\" padding_left=\"\" padding_right=\"\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][fusion_builder_row][fusion_builder_column type=\"1_1\" layout=\"1_1\" background_position=\"left top\" background_color=\"\" border_size=\"\" border_color=\"\" border_style=\"solid\" spacing=\"yes\" background_image=\"\" background_repeat=\"no-repeat\" padding_top=\"\" padding_right=\"\" padding_bottom=\"\" padding_left=\"\" margin_top=\"0px\" margin_bottom=\"0px\" class=\"\" id=\"\" animation_type=\"\" animation_speed=\"0.3\" animation_direction=\"left\" hide_on_mobile=\"no\" center_content=\"no\" min_height=\"none\" last=\"no\" hover_type=\"none\" link=\"\" border_position=\"all\"][fusion_text]\r\n<h1 style=\"text-align: center;\">Gallery</h1>\r\n[/fusion_text][fusion_separator style_type=\"single solid\" top_margin=\"\" bottom_margin=\"40\" sep_color=\"#000000\" border_size=\"\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"170px\" alignment=\"\" class=\"\" id=\"\" /][/fusion_builder_column][fusion_builder_column type=\"1_6\" layout=\"1_6\" last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding_top=\"\" padding_right=\"\" padding_bottom=\"\" padding_left=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\" min_height=\"\"][/fusion_builder_column][fusion_builder_column type=\"2_3\" layout=\"2_3\" last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding_top=\"\" padding_right=\"\" padding_bottom=\"\" padding_left=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\" min_height=\"\"][fusion_text]\r\n<h3 style=\"text-align: justify;\">The Lodge is open, spacious, comfortable and homely. During hot summer days, sit and bask in the sun on the deck  with one of our  picnic specials. In winter, snuggle up with a good book or challenge one another to a friendly board game in the glassed nook area .</h3>\r\n[/fusion_text][/fusion_builder_column][fusion_builder_column type=\"1_6\" layout=\"1_6\" last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding_top=\"\" padding_right=\"\" padding_bottom=\"\" padding_left=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\" min_height=\"\"][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container background_color=\"#f0f0ed\" background_image=\"http://localhost/assagaylodge/wp-content/uploads/2015/01/Wood_Texture.jpg\" background_parallax=\"fixed\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"30\" padding_bottom=\"10\" padding_left=\"0\" padding_right=\"0\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][fusion_builder_row][fusion_builder_column type=\"1_1\" layout=\"1_1\" background_position=\"left top\" background_color=\"\" border_size=\"\" border_color=\"\" border_style=\"solid\" spacing=\"yes\" background_image=\"\" background_repeat=\"no-repeat\" padding_top=\"\" padding_right=\"\" padding_bottom=\"\" padding_left=\"\" margin_top=\"0px\" margin_bottom=\"0px\" class=\"\" id=\"\" animation_type=\"\" animation_speed=\"0.3\" animation_direction=\"left\" hide_on_mobile=\"no\" center_content=\"no\" min_height=\"none\" last=\"no\" hover_type=\"none\" link=\"\" border_position=\"all\"][fusion_portfolio layout=\"grid\" picture_size=\"auto\" text_layout=\"no_text\" filters=\"no\" columns=\"3\" column_spacing=\"12\" cat_slug=\"the-lodge\" exclude_cats=\"\" number_posts=\"9\" offset=\"\" excerpt_length=\"35\" strip_html=\"yes\" carousel_layout=\"title_on_rollover\" scroll_items=\"\" autoplay=\"no\" show_nav=\"yes\" mouse_scroll=\"no\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\" /][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container background_color=\"#f0f0ed\" background_image=\"\" background_parallax=\"fixed\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"20\" padding_bottom=\"20\" padding_left=\"\" padding_right=\"\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][fusion_builder_row][fusion_builder_column type=\"1_1\" layout=\"1_1\" background_position=\"left top\" background_color=\"\" border_size=\"\" border_color=\"\" border_style=\"solid\" spacing=\"yes\" background_image=\"\" background_repeat=\"no-repeat\" padding_top=\"\" padding_right=\"\" padding_bottom=\"\" padding_left=\"\" margin_top=\"0px\" margin_bottom=\"0px\" class=\"\" id=\"\" animation_type=\"\" animation_speed=\"0.3\" animation_direction=\"left\" hide_on_mobile=\"no\" center_content=\"no\" min_height=\"none\" last=\"no\" hover_type=\"none\" link=\"\" border_position=\"all\"][fusion_text]\r\n<h1 style=\"text-align: center;\">BEDROOMS</h1>\r\n[/fusion_text][fusion_separator style_type=\"single solid\" top_margin=\"\" bottom_margin=\"20\" sep_color=\"#000000\" border_size=\"\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"170px\" alignment=\"\" class=\"\" id=\"\" /][/fusion_builder_column][fusion_builder_column type=\"1_6\" layout=\"1_6\" last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding_top=\"\" padding_right=\"\" padding_bottom=\"\" padding_left=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\" min_height=\"\"][/fusion_builder_column][fusion_builder_column type=\"2_3\" layout=\"2_3\" last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding_top=\"\" padding_right=\"\" padding_bottom=\"\" padding_left=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\" min_height=\"\"][fusion_text]\r\n<h3 style=\"text-align: justify;\">When it comes to our bedrooms we’re proud to say we offer something a little more special. One of five  lovingly and tastefully decorated guest rooms. Soft gray decor soothes the senses providing a peaceful, blissfully comfortable rest from your travels and hectic lives.</h3>\r\n<h3 style=\"text-align: justify;\">Our  bedrooms are spacious, clean, comfortable all en-suite, equipped with either king size or queen size beds. Each room sleeps two guests. The rooms have high ceilings, wall heaters &amp; ceiling fans. Beds all have electric blankets in Winter, 100% cotton percale sheets and thick hyper allergenic microfiber duvets and pillows. All guest rooms are cleaned with organic and green products. Amenities include hairdryers in each room. Three rooms feature King-sized beds  of which two can be  split into two single beds. Two  rooms can therefore be changed into a twin room upon request. Two rooms feature a Queen-sized double bed. These beds cannot be split into twin beds.</h3>\r\n[/fusion_text][/fusion_builder_column][fusion_builder_column type=\"1_6\" layout=\"1_6\" last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding_top=\"\" padding_right=\"\" padding_bottom=\"\" padding_left=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\" min_height=\"\"][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container background_color=\"\" background_image=\"http://localhost/assagaylodge/wp-content/uploads/2015/01/DSC01516-1148-x-764.jpg\" background_parallax=\"fixed\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"center center\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"20\" padding_bottom=\"20\" padding_left=\"0\" padding_right=\"0\" hundred_percent=\"no\" equal_height_columns=\"yes\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][fusion_builder_row][fusion_builder_column type=\"1_1\" layout=\"1_1\" background_position=\"left top\" background_color=\"\" border_size=\"\" border_color=\"\" border_style=\"solid\" spacing=\"yes\" background_image=\"\" background_repeat=\"no-repeat\" padding_top=\"\" padding_right=\"\" padding_bottom=\"\" padding_left=\"\" margin_top=\"0px\" margin_bottom=\"0px\" class=\"\" id=\"\" animation_type=\"\" animation_speed=\"0.3\" animation_direction=\"left\" hide_on_mobile=\"no\" center_content=\"no\" min_height=\"none\" last=\"no\" hover_type=\"none\" link=\"\" border_position=\"all\"][fusion_portfolio layout=\"grid\" picture_size=\"auto\" text_layout=\"no_text\" filters=\"no\" columns=\"3\" column_spacing=\"12\" cat_slug=\"bedrooms\" exclude_cats=\"\" number_posts=\"6\" offset=\"\" excerpt_length=\"35\" strip_html=\"yes\" carousel_layout=\"title_on_rollover\" scroll_items=\"\" autoplay=\"no\" show_nav=\"yes\" mouse_scroll=\"no\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\" /][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container background_color=\"#f0f0ed\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"20\" padding_bottom=\"20\" padding_left=\"0\" padding_right=\"0\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][fusion_builder_row][fusion_builder_column type=\"1_1\" layout=\"1_1\" background_position=\"left top\" background_color=\"\" border_size=\"\" border_color=\"\" border_style=\"solid\" spacing=\"yes\" background_image=\"\" background_repeat=\"no-repeat\" padding_top=\"\" padding_right=\"\" padding_bottom=\"\" padding_left=\"\" margin_top=\"0px\" margin_bottom=\"0px\" class=\"\" id=\"\" animation_type=\"\" animation_speed=\"0.3\" animation_direction=\"left\" hide_on_mobile=\"no\" center_content=\"no\" min_height=\"none\" last=\"no\" hover_type=\"none\" link=\"\" border_position=\"all\"][fusion_text]\r\n<h1 style=\"text-align: center;\">GARDENS</h1>\r\n[/fusion_text][fusion_separator style_type=\"single solid\" top_margin=\"\" bottom_margin=\"20\" sep_color=\"#000000\" border_size=\"\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"170px\" alignment=\"\" class=\"\" id=\"\" /][/fusion_builder_column][fusion_builder_column type=\"1_6\" layout=\"1_6\" last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding_top=\"\" padding_right=\"\" padding_bottom=\"\" padding_left=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\" min_height=\"\"][/fusion_builder_column][fusion_builder_column type=\"2_3\" layout=\"2_3\" last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding_top=\"\" padding_right=\"\" padding_bottom=\"\" padding_left=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\" min_height=\"\"][fusion_text]\r\n<h3 style=\"text-align: justify;\">The garden is large and offers many secluded spots to lose yourself in a book with a glass of wine underneath the shade of a tree, listening to the sounds of the birds and smelling the beautiful flowers.</h3>\r\n[/fusion_text][/fusion_builder_column][fusion_builder_column type=\"1_6\" layout=\"1_6\" last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding_top=\"\" padding_right=\"\" padding_bottom=\"\" padding_left=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\" min_height=\"\"][/fusion_builder_column][fusion_builder_column type=\"1_1\" layout=\"1_1\" background_position=\"left top\" background_color=\"\" border_size=\"\" border_color=\"\" border_style=\"solid\" spacing=\"yes\" background_image=\"\" background_repeat=\"no-repeat\" padding_top=\"\" padding_right=\"\" padding_bottom=\"\" padding_left=\"\" margin_top=\"0px\" margin_bottom=\"0px\" class=\"\" id=\"\" animation_type=\"\" animation_speed=\"0.3\" animation_direction=\"left\" hide_on_mobile=\"no\" center_content=\"no\" min_height=\"none\" last=\"no\" hover_type=\"none\" link=\"\" border_position=\"all\"][fusion_portfolio layout=\"grid\" picture_size=\"auto\" text_layout=\"no_text\" filters=\"no\" columns=\"3\" column_spacing=\"12\" cat_slug=\"gardens\" exclude_cats=\"\" number_posts=\"9\" offset=\"\" excerpt_length=\"35\" strip_html=\"yes\" carousel_layout=\"title_on_rollover\" scroll_items=\"\" autoplay=\"no\" show_nav=\"yes\" mouse_scroll=\"no\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\" /][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container background_color=\"#ffffff\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"65px\" padding_bottom=\"65px\" padding_left=\"\" padding_right=\"\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][fusion_builder_row][fusion_builder_column type=\"1_1\" layout=\"1_1\" background_position=\"left top\" background_color=\"\" border_size=\"\" border_color=\"\" border_style=\"solid\" spacing=\"yes\" background_image=\"\" background_repeat=\"no-repeat\" padding_top=\"\" padding_right=\"\" padding_bottom=\"\" padding_left=\"\" margin_top=\"0px\" margin_bottom=\"0px\" class=\"\" id=\"\" animation_type=\"\" animation_speed=\"0.3\" animation_direction=\"left\" hide_on_mobile=\"no\" center_content=\"no\" min_height=\"none\" last=\"no\" hover_type=\"none\" link=\"\" border_position=\"all\"][fusion_button link=\"https://msla.co.za/lodge/reservations/\" color=\"default\" size=\"xlarge\" stretch=\"default\" type=\"3d\" shape=\"round\" target=\"_self\" title=\"\" button_gradient_top_color=\"#f0f0ed\" button_gradient_bottom_color=\"#f0f0ed\" button_gradient_top_color_hover=\"#6666a4\" button_gradient_bottom_color_hover=\"#6666a4\" accent_color=\"#ffffff\" accent_hover_color=\"#ffffff\" bevel_color=\"\" border_width=\"0px\" icon=\"\" icon_position=\"left\" icon_divider=\"no\" modal=\"\" animation_type=\"0\" animation_direction=\"left\" animation_speed=\"1\" animation_offset=\"\" alignment=\"center\" class=\"\" id=\"\"]Make A Reservation Enquiry[/fusion_button][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container]', 'Home', '', 'inherit', 'closed', 'closed', '', '7-revision-v1', '', '', '2019-11-13 18:25:07', '2019-11-13 16:25:07', '', 7, 'https://msla.co.za/lodge/7-revision-v1/', 0, 'revision', '', 0);
INSERT INTO `wp_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(1400, 1, '2019-11-13 18:25:46', '2019-11-13 16:25:46', '[fusion_builder_container background_color=\"#f0f0ed\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"20\" padding_bottom=\"20\" padding_left=\"\" padding_right=\"\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][fusion_builder_row][fusion_builder_column type=\"1_2\" layout=\"1_2\" last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"\" padding_right=\"\" padding_bottom=\"\" padding_left=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\" min_height=\"\"][fusion_separator style_type=\"single solid\" top_margin=\"0\" bottom_margin=\"30\" sep_color=\"#000000\" border_size=\"\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"170px\" alignment=\"center\" class=\"separator-left\" id=\"\" /][fusion_text]\r\n<h1 style=\"text-align: center;\">No Fancy Star Grading\r\nNo Room Service\r\nNo Bed Turn-downs\r\nNo Rose Petals in the Bath water</h1>\r\n<h1 style=\"text-align: center;\">... just old fashioned homely comforts</h1>\r\n[/fusion_text][/fusion_builder_column][fusion_builder_column type=\"1_2\" layout=\"1_2\" last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"\" padding_right=\"\" padding_bottom=\"\" padding_left=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\" min_height=\"\"][fusion_text]\r\n<h1 style=\"text-align: justify;\">5 BEDROOM FAMILY LODGE</h1>\r\n<h3 style=\"text-align: justify;\">We are a four season lodge, because there’s always something to celebrate… We offer comfort, relaxation and privacy right in the heart of 1000 Hills. The Forest, the Gardens, the Atmosphere all speak to  Rest  &amp; Relaxation.</h3>\r\n[/fusion_text][fusion_tagline_box backgroundcolor=\"\" shadow=\"yes\" shadowopacity=\"0.70\" border=\"1\" bordercolor=\"\" highlightposition=\"none\" content_alignment=\"center\" link=\"http://msla.co.za/lodge/reservations\" button=\"Book Now!\" linktarget=\"_self\" modal=\"\" button_size=\"large\" button_type=\"\" button_shape=\"square\" buttoncolor=\"default\" title=\"\" description=\"\" margin_top=\"\" margin_bottom=\"\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" class=\"\" id=\"\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"\"]\r\n<p style=\"text-align: center;\"><span style=\"text-decoration: underline; font-size: 24pt;\">Current Specials</span></p>\r\n<p style=\"text-align: center;\"><span style=\"font-size: 14pt;\">Book on-line - get 15% OF\r\n</span><span style=\"font-size: 14pt;\">Stay 3 days or more - get 25% OFF</span></p>\r\n[/fusion_tagline_box][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container background_color=\"#f0f0ed\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"20\" padding_bottom=\"20\" padding_left=\"\" padding_right=\"\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][fusion_builder_row][fusion_builder_column type=\"1_2\" layout=\"1_2\" last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"\" padding_right=\"\" padding_bottom=\"\" padding_left=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\" min_height=\"\"][fusion_text]\r\n<h3 style=\"text-align: justify;\">Set in the rolling peaks and valleys of a thousand hills surrounded by a canopy of indigenous trees, you will find that horses still have right of way, we certainly offer the best of both worlds, farm and charm coupled with modern amenities that will have you feeling relaxed and rejuvenated.</h3>\r\n<h3 style=\"text-align: justify;\">We know that sometimes you are searching for a romantic getaway or maybe a few days away with old friends. Other times you are searching for a place to host a weekend, family reunion or a business retreat. In addition to nightly room rentals, our lodge is also available for meetings, retreats  and makes the perfect place for a wedding party to stay together and get ready for the big day. Regardless, with our five comfortable and cozy guest bedrooms, multiple garden spaces and hideaways, and a  large private deck  where you can take a nap or read a book we definitely have the room for you!</h3>\r\n<h3 style=\"text-align: justify;\">Evenings are quiet and peaceful taking you far away from the business of city life. This is a unique and memorable country experience. We look forward to having you as a guest!</h3>\r\n[/fusion_text][/fusion_builder_column][fusion_builder_column type=\"1_2\" layout=\"1_2\" last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"\" padding_right=\"\" padding_bottom=\"\" padding_left=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\" min_height=\"\"][fusion_text]\r\n<h3 style=\"text-align: justify;\">Our lodge has been in our family for years and has recently been beautifully renovated. Five rooms all with en-suite showers lead off your own large central lounge, featuring a 36 foot high vaulted ceiling, offering spacious living, dining, and a bar/conversational lounge area which includes a fitted kitchenette, all adding to a sense of homely comfort. Sumptuous meals can be provided on request and served on the bottom deck at the swimming pool.</h3>\r\n<h3 style=\"text-align: justify;\">Be lulled to sleep by the sound of the waterfall and tinkling stream just outside your window, waking from a peaceful night\'s sleep in a pillow-top bed dressed in luxurious linens to coddle you in ultimate comfort.</h3>\r\n<h3 style=\"text-align: justify;\">Our property boasts many different species of birds and animals. We have a resident otter, a family of wild bush pigs,  a family of rock rabbits, porcupine, little blue duikers, a variety of different frogs and an abundance of bird life, including the occasional snakes that pass through!</h3>\r\n[/fusion_text][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container background_color=\"#f0f0ed\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"20\" padding_bottom=\"20\" padding_left=\"\" padding_right=\"\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][fusion_builder_row][fusion_builder_column type=\"1_1\" layout=\"1_1\" background_position=\"left top\" background_color=\"\" border_size=\"\" border_color=\"\" border_style=\"solid\" spacing=\"yes\" background_image=\"\" background_repeat=\"no-repeat\" padding_top=\"\" padding_right=\"\" padding_bottom=\"\" padding_left=\"\" margin_top=\"0px\" margin_bottom=\"0px\" class=\"\" id=\"\" animation_type=\"\" animation_speed=\"0.3\" animation_direction=\"left\" hide_on_mobile=\"no\" center_content=\"no\" min_height=\"none\" last=\"no\" hover_type=\"none\" link=\"\" border_position=\"all\"][fusion_text]\r\n<h1 style=\"text-align: center;\">Gallery</h1>\r\n[/fusion_text][fusion_separator style_type=\"single solid\" top_margin=\"\" bottom_margin=\"40\" sep_color=\"#000000\" border_size=\"\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"170px\" alignment=\"\" class=\"\" id=\"\" /][/fusion_builder_column][fusion_builder_column type=\"1_6\" layout=\"1_6\" last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding_top=\"\" padding_right=\"\" padding_bottom=\"\" padding_left=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\" min_height=\"\"][/fusion_builder_column][fusion_builder_column type=\"2_3\" layout=\"2_3\" last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding_top=\"\" padding_right=\"\" padding_bottom=\"\" padding_left=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\" min_height=\"\"][fusion_text]\r\n<h3 style=\"text-align: justify;\">The Lodge is open, spacious, comfortable and homely. During hot summer days, sit and bask in the sun on the deck  with one of our  picnic specials. In winter, snuggle up with a good book or challenge one another to a friendly board game in the glassed nook area .</h3>\r\n[/fusion_text][/fusion_builder_column][fusion_builder_column type=\"1_6\" layout=\"1_6\" last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding_top=\"\" padding_right=\"\" padding_bottom=\"\" padding_left=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\" min_height=\"\"][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container background_color=\"#f0f0ed\" background_image=\"http://localhost/assagaylodge/wp-content/uploads/2015/01/Wood_Texture.jpg\" background_parallax=\"fixed\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"30\" padding_bottom=\"10\" padding_left=\"0\" padding_right=\"0\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][fusion_builder_row][fusion_builder_column type=\"1_1\" layout=\"1_1\" background_position=\"left top\" background_color=\"\" border_size=\"\" border_color=\"\" border_style=\"solid\" spacing=\"yes\" background_image=\"\" background_repeat=\"no-repeat\" padding_top=\"\" padding_right=\"\" padding_bottom=\"\" padding_left=\"\" margin_top=\"0px\" margin_bottom=\"0px\" class=\"\" id=\"\" animation_type=\"\" animation_speed=\"0.3\" animation_direction=\"left\" hide_on_mobile=\"no\" center_content=\"no\" min_height=\"none\" last=\"no\" hover_type=\"none\" link=\"\" border_position=\"all\"][fusion_portfolio layout=\"grid\" picture_size=\"auto\" text_layout=\"no_text\" filters=\"no\" columns=\"3\" column_spacing=\"12\" cat_slug=\"the-lodge\" exclude_cats=\"\" number_posts=\"9\" offset=\"\" excerpt_length=\"35\" strip_html=\"yes\" carousel_layout=\"title_on_rollover\" scroll_items=\"\" autoplay=\"no\" show_nav=\"yes\" mouse_scroll=\"no\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\" /][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container background_color=\"#f0f0ed\" background_image=\"\" background_parallax=\"fixed\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"20\" padding_bottom=\"20\" padding_left=\"\" padding_right=\"\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][fusion_builder_row][fusion_builder_column type=\"1_1\" layout=\"1_1\" background_position=\"left top\" background_color=\"\" border_size=\"\" border_color=\"\" border_style=\"solid\" spacing=\"yes\" background_image=\"\" background_repeat=\"no-repeat\" padding_top=\"\" padding_right=\"\" padding_bottom=\"\" padding_left=\"\" margin_top=\"0px\" margin_bottom=\"0px\" class=\"\" id=\"\" animation_type=\"\" animation_speed=\"0.3\" animation_direction=\"left\" hide_on_mobile=\"no\" center_content=\"no\" min_height=\"none\" last=\"no\" hover_type=\"none\" link=\"\" border_position=\"all\"][fusion_text]\r\n<h1 style=\"text-align: center;\">BEDROOMS</h1>\r\n[/fusion_text][fusion_separator style_type=\"single solid\" top_margin=\"\" bottom_margin=\"20\" sep_color=\"#000000\" border_size=\"\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"170px\" alignment=\"\" class=\"\" id=\"\" /][/fusion_builder_column][fusion_builder_column type=\"1_6\" layout=\"1_6\" last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding_top=\"\" padding_right=\"\" padding_bottom=\"\" padding_left=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\" min_height=\"\"][/fusion_builder_column][fusion_builder_column type=\"2_3\" layout=\"2_3\" last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding_top=\"\" padding_right=\"\" padding_bottom=\"\" padding_left=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\" min_height=\"\"][fusion_text]\r\n<h3 style=\"text-align: justify;\">When it comes to our bedrooms we’re proud to say we offer something a little more special. One of five  lovingly and tastefully decorated guest rooms. Soft gray decor soothes the senses providing a peaceful, blissfully comfortable rest from your travels and hectic lives.</h3>\r\n<h3 style=\"text-align: justify;\">Our  bedrooms are spacious, clean, comfortable all en-suite, equipped with either king size or queen size beds. Each room sleeps two guests. The rooms have high ceilings, wall heaters &amp; ceiling fans. Beds all have electric blankets in Winter, 100% cotton percale sheets and thick hyper allergenic microfiber duvets and pillows. All guest rooms are cleaned with organic and green products. Amenities include hairdryers in each room. Three rooms feature King-sized beds  of which two can be  split into two single beds. Two  rooms can therefore be changed into a twin room upon request. Two rooms feature a Queen-sized double bed. These beds cannot be split into twin beds.</h3>\r\n[/fusion_text][/fusion_builder_column][fusion_builder_column type=\"1_6\" layout=\"1_6\" last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding_top=\"\" padding_right=\"\" padding_bottom=\"\" padding_left=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\" min_height=\"\"][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container background_color=\"\" background_image=\"http://localhost/assagaylodge/wp-content/uploads/2015/01/DSC01516-1148-x-764.jpg\" background_parallax=\"fixed\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"center center\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"20\" padding_bottom=\"20\" padding_left=\"0\" padding_right=\"0\" hundred_percent=\"no\" equal_height_columns=\"yes\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][fusion_builder_row][fusion_builder_column type=\"1_1\" layout=\"1_1\" background_position=\"left top\" background_color=\"\" border_size=\"\" border_color=\"\" border_style=\"solid\" spacing=\"yes\" background_image=\"\" background_repeat=\"no-repeat\" padding_top=\"\" padding_right=\"\" padding_bottom=\"\" padding_left=\"\" margin_top=\"0px\" margin_bottom=\"0px\" class=\"\" id=\"\" animation_type=\"\" animation_speed=\"0.3\" animation_direction=\"left\" hide_on_mobile=\"no\" center_content=\"no\" min_height=\"none\" last=\"no\" hover_type=\"none\" link=\"\" border_position=\"all\"][fusion_portfolio layout=\"grid\" picture_size=\"auto\" text_layout=\"no_text\" filters=\"no\" columns=\"3\" column_spacing=\"12\" cat_slug=\"bedrooms\" exclude_cats=\"\" number_posts=\"6\" offset=\"\" excerpt_length=\"35\" strip_html=\"yes\" carousel_layout=\"title_on_rollover\" scroll_items=\"\" autoplay=\"no\" show_nav=\"yes\" mouse_scroll=\"no\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\" /][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container background_color=\"#f0f0ed\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"20\" padding_bottom=\"20\" padding_left=\"0\" padding_right=\"0\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][fusion_builder_row][fusion_builder_column type=\"1_1\" layout=\"1_1\" background_position=\"left top\" background_color=\"\" border_size=\"\" border_color=\"\" border_style=\"solid\" spacing=\"yes\" background_image=\"\" background_repeat=\"no-repeat\" padding_top=\"\" padding_right=\"\" padding_bottom=\"\" padding_left=\"\" margin_top=\"0px\" margin_bottom=\"0px\" class=\"\" id=\"\" animation_type=\"\" animation_speed=\"0.3\" animation_direction=\"left\" hide_on_mobile=\"no\" center_content=\"no\" min_height=\"none\" last=\"no\" hover_type=\"none\" link=\"\" border_position=\"all\"][fusion_text]\r\n<h1 style=\"text-align: center;\">GARDENS</h1>\r\n[/fusion_text][fusion_separator style_type=\"single solid\" top_margin=\"\" bottom_margin=\"20\" sep_color=\"#000000\" border_size=\"\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"170px\" alignment=\"\" class=\"\" id=\"\" /][/fusion_builder_column][fusion_builder_column type=\"1_6\" layout=\"1_6\" last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding_top=\"\" padding_right=\"\" padding_bottom=\"\" padding_left=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\" min_height=\"\"][/fusion_builder_column][fusion_builder_column type=\"2_3\" layout=\"2_3\" last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding_top=\"\" padding_right=\"\" padding_bottom=\"\" padding_left=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\" min_height=\"\"][fusion_text]\r\n<h3 style=\"text-align: justify;\">The garden is large and offers many secluded spots to lose yourself in a book with a glass of wine underneath the shade of a tree, listening to the sounds of the birds and smelling the beautiful flowers.</h3>\r\n[/fusion_text][/fusion_builder_column][fusion_builder_column type=\"1_6\" layout=\"1_6\" last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding_top=\"\" padding_right=\"\" padding_bottom=\"\" padding_left=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\" min_height=\"\"][/fusion_builder_column][fusion_builder_column type=\"1_1\" layout=\"1_1\" background_position=\"left top\" background_color=\"\" border_size=\"\" border_color=\"\" border_style=\"solid\" spacing=\"yes\" background_image=\"\" background_repeat=\"no-repeat\" padding_top=\"\" padding_right=\"\" padding_bottom=\"\" padding_left=\"\" margin_top=\"0px\" margin_bottom=\"0px\" class=\"\" id=\"\" animation_type=\"\" animation_speed=\"0.3\" animation_direction=\"left\" hide_on_mobile=\"no\" center_content=\"no\" min_height=\"none\" last=\"no\" hover_type=\"none\" link=\"\" border_position=\"all\"][fusion_portfolio layout=\"grid\" picture_size=\"auto\" text_layout=\"no_text\" filters=\"no\" columns=\"3\" column_spacing=\"12\" cat_slug=\"gardens\" exclude_cats=\"\" number_posts=\"9\" offset=\"\" excerpt_length=\"35\" strip_html=\"yes\" carousel_layout=\"title_on_rollover\" scroll_items=\"\" autoplay=\"no\" show_nav=\"yes\" mouse_scroll=\"no\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\" /][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container background_color=\"#ffffff\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"65px\" padding_bottom=\"65px\" padding_left=\"\" padding_right=\"\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][fusion_builder_row][fusion_builder_column type=\"1_1\" layout=\"1_1\" background_position=\"left top\" background_color=\"\" border_size=\"\" border_color=\"\" border_style=\"solid\" spacing=\"yes\" background_image=\"\" background_repeat=\"no-repeat\" padding_top=\"\" padding_right=\"\" padding_bottom=\"\" padding_left=\"\" margin_top=\"0px\" margin_bottom=\"0px\" class=\"\" id=\"\" animation_type=\"\" animation_speed=\"0.3\" animation_direction=\"left\" hide_on_mobile=\"no\" center_content=\"no\" min_height=\"none\" last=\"no\" hover_type=\"none\" link=\"\" border_position=\"all\"][fusion_button link=\"https://msla.co.za/lodge/reservations/\" color=\"default\" size=\"xlarge\" stretch=\"default\" type=\"3d\" shape=\"round\" target=\"_self\" title=\"\" button_gradient_top_color=\"#f0f0ed\" button_gradient_bottom_color=\"#f0f0ed\" button_gradient_top_color_hover=\"#6666a4\" button_gradient_bottom_color_hover=\"#6666a4\" accent_color=\"#ffffff\" accent_hover_color=\"#ffffff\" bevel_color=\"\" border_width=\"0px\" icon=\"\" icon_position=\"left\" icon_divider=\"no\" modal=\"\" animation_type=\"0\" animation_direction=\"left\" animation_speed=\"1\" animation_offset=\"\" alignment=\"center\" class=\"\" id=\"\"]Make A Reservation Enquiry[/fusion_button][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container]', 'Home', '', 'inherit', 'closed', 'closed', '', '7-revision-v1', '', '', '2019-11-13 18:25:46', '2019-11-13 16:25:46', '', 7, 'https://msla.co.za/lodge/7-revision-v1/', 0, 'revision', '', 0);
INSERT INTO `wp_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(1402, 1, '2019-11-13 18:51:15', '2019-11-13 16:51:15', '[fusion_builder_container background_color=\"#f0f0ed\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"20\" padding_bottom=\"20\" padding_left=\"\" padding_right=\"\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][fusion_builder_row][fusion_builder_column type=\"1_2\" layout=\"1_2\" last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"\" padding_right=\"\" padding_bottom=\"\" padding_left=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\" min_height=\"\"][fusion_text]\r\n<h1 style=\"text-align: center;\">No Fancy Star Grading\r\nNo Room Service\r\nNo Bed Turn-downs\r\nNo Rose Petals in the Bath water</h1>\r\n<h1 style=\"text-align: center;\">... just old fashioned homely comforts</h1>\r\n[/fusion_text][/fusion_builder_column][fusion_builder_column type=\"1_2\" layout=\"1_2\" last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"\" padding_right=\"\" padding_bottom=\"\" padding_left=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\" min_height=\"\"][fusion_text]\r\n<h1 style=\"text-align: justify;\">5 BEDROOM FAMILY LODGE</h1>\r\n<h3 style=\"text-align: justify;\">We are a four season lodge, because there’s always something to celebrate… We offer comfort, relaxation and privacy right in the heart of 1000 Hills. The Forest, the Gardens, the Atmosphere all speak to  Rest  &amp; Relaxation.</h3>\r\n[/fusion_text][fusion_tagline_box backgroundcolor=\"\" shadow=\"yes\" shadowopacity=\"0.70\" border=\"1\" bordercolor=\"\" highlightposition=\"none\" content_alignment=\"center\" link=\"http://msla.co.za/lodge/reservations\" button=\"Book Now!\" linktarget=\"_self\" modal=\"\" button_size=\"xlarge\" button_type=\"\" button_shape=\"square\" buttoncolor=\"default\" title=\"\" description=\"\" margin_top=\"\" margin_bottom=\"\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" class=\"\" id=\"\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"\"]\r\n<p style=\"text-align: center;\"><span style=\"text-decoration: underline; font-size: 24pt;\">Current Specials</span></p>\r\n<p style=\"text-align: center;\"><span style=\"font-size: 14pt;\">Book on-line - get 15% OF\r\n</span><span style=\"font-size: 14pt;\">Stay 3 days or more - get 25% OFF</span></p>\r\n[/fusion_tagline_box][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container background_color=\"#f0f0ed\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"20\" padding_bottom=\"20\" padding_left=\"\" padding_right=\"\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][fusion_builder_row][fusion_builder_column type=\"1_2\" layout=\"1_2\" last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"\" padding_right=\"\" padding_bottom=\"\" padding_left=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\" min_height=\"\"][fusion_text]\r\n<h3 style=\"text-align: justify;\">Set in the rolling peaks and valleys of a thousand hills surrounded by a canopy of indigenous trees, you will find that horses still have right of way, we certainly offer the best of both worlds, farm and charm coupled with modern amenities that will have you feeling relaxed and rejuvenated.</h3>\r\n<h3 style=\"text-align: justify;\">We know that sometimes you are searching for a romantic getaway or maybe a few days away with old friends. Other times you are searching for a place to host a weekend, family reunion or a business retreat. In addition to nightly room rentals, our lodge is also available for meetings, retreats  and makes the perfect place for a wedding party to stay together and get ready for the big day. Regardless, with our five comfortable and cozy guest bedrooms, multiple garden spaces and hideaways, and a  large private deck  where you can take a nap or read a book we definitely have the room for you!</h3>\r\n<h3 style=\"text-align: justify;\">Evenings are quiet and peaceful taking you far away from the business of city life. This is a unique and memorable country experience. We look forward to having you as a guest!</h3>\r\n[/fusion_text][/fusion_builder_column][fusion_builder_column type=\"1_2\" layout=\"1_2\" last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"\" padding_right=\"\" padding_bottom=\"\" padding_left=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\" min_height=\"\"][fusion_text]\r\n<h3 style=\"text-align: justify;\">Our lodge has been in our family for years and has recently been beautifully renovated. Five rooms all with en-suite showers lead off your own large central lounge, featuring a 36 foot high vaulted ceiling, offering spacious living, dining, and a bar/conversational lounge area which includes a fitted kitchenette, all adding to a sense of homely comfort. Sumptuous meals can be provided on request and served on the bottom deck at the swimming pool.</h3>\r\n<h3 style=\"text-align: justify;\">Be lulled to sleep by the sound of the waterfall and tinkling stream just outside your window, waking from a peaceful night\'s sleep in a pillow-top bed dressed in luxurious linens to coddle you in ultimate comfort.</h3>\r\n<h3 style=\"text-align: justify;\">Our property boasts many different species of birds and animals. We have a resident otter, a family of wild bush pigs,  a family of rock rabbits, porcupine, little blue duikers, a variety of different frogs and an abundance of bird life, including the occasional snakes that pass through!</h3>\r\n[/fusion_text][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container background_color=\"#f0f0ed\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"20\" padding_bottom=\"20\" padding_left=\"\" padding_right=\"\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][fusion_builder_row][fusion_builder_column type=\"1_1\" layout=\"1_1\" background_position=\"left top\" background_color=\"\" border_size=\"\" border_color=\"\" border_style=\"solid\" spacing=\"yes\" background_image=\"\" background_repeat=\"no-repeat\" padding_top=\"\" padding_right=\"\" padding_bottom=\"\" padding_left=\"\" margin_top=\"0px\" margin_bottom=\"0px\" class=\"\" id=\"\" animation_type=\"\" animation_speed=\"0.3\" animation_direction=\"left\" hide_on_mobile=\"no\" center_content=\"no\" min_height=\"none\" last=\"no\" hover_type=\"none\" link=\"\" border_position=\"all\"][fusion_text]\r\n<h1 style=\"text-align: center;\">Gallery</h1>\r\n[/fusion_text][fusion_separator style_type=\"single solid\" top_margin=\"\" bottom_margin=\"40\" sep_color=\"#000000\" border_size=\"\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"170px\" alignment=\"\" class=\"\" id=\"\" /][/fusion_builder_column][fusion_builder_column type=\"1_6\" layout=\"1_6\" last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding_top=\"\" padding_right=\"\" padding_bottom=\"\" padding_left=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\" min_height=\"\"][/fusion_builder_column][fusion_builder_column type=\"2_3\" layout=\"2_3\" last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding_top=\"\" padding_right=\"\" padding_bottom=\"\" padding_left=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\" min_height=\"\"][fusion_text]\r\n<h3 style=\"text-align: justify;\">The Lodge is open, spacious, comfortable and homely. During hot summer days, sit and bask in the sun on the deck  with one of our  picnic specials. In winter, snuggle up with a good book or challenge one another to a friendly board game in the glassed nook area .</h3>\r\n[/fusion_text][/fusion_builder_column][fusion_builder_column type=\"1_6\" layout=\"1_6\" last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding_top=\"\" padding_right=\"\" padding_bottom=\"\" padding_left=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\" min_height=\"\"][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container background_color=\"#f0f0ed\" background_image=\"http://localhost/assagaylodge/wp-content/uploads/2015/01/Wood_Texture.jpg\" background_parallax=\"fixed\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"30\" padding_bottom=\"10\" padding_left=\"0\" padding_right=\"0\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][fusion_builder_row][fusion_builder_column type=\"1_1\" layout=\"1_1\" background_position=\"left top\" background_color=\"\" border_size=\"\" border_color=\"\" border_style=\"solid\" spacing=\"yes\" background_image=\"\" background_repeat=\"no-repeat\" padding_top=\"\" padding_right=\"\" padding_bottom=\"\" padding_left=\"\" margin_top=\"0px\" margin_bottom=\"0px\" class=\"\" id=\"\" animation_type=\"\" animation_speed=\"0.3\" animation_direction=\"left\" hide_on_mobile=\"no\" center_content=\"no\" min_height=\"none\" last=\"no\" hover_type=\"none\" link=\"\" border_position=\"all\"][fusion_portfolio layout=\"grid\" picture_size=\"auto\" text_layout=\"no_text\" filters=\"no\" columns=\"3\" column_spacing=\"12\" cat_slug=\"the-lodge\" exclude_cats=\"\" number_posts=\"9\" offset=\"\" excerpt_length=\"35\" strip_html=\"yes\" carousel_layout=\"title_on_rollover\" scroll_items=\"\" autoplay=\"no\" show_nav=\"yes\" mouse_scroll=\"no\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\" /][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container background_color=\"#f0f0ed\" background_image=\"\" background_parallax=\"fixed\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"20\" padding_bottom=\"20\" padding_left=\"\" padding_right=\"\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][fusion_builder_row][fusion_builder_column type=\"1_1\" layout=\"1_1\" background_position=\"left top\" background_color=\"\" border_size=\"\" border_color=\"\" border_style=\"solid\" spacing=\"yes\" background_image=\"\" background_repeat=\"no-repeat\" padding_top=\"\" padding_right=\"\" padding_bottom=\"\" padding_left=\"\" margin_top=\"0px\" margin_bottom=\"0px\" class=\"\" id=\"\" animation_type=\"\" animation_speed=\"0.3\" animation_direction=\"left\" hide_on_mobile=\"no\" center_content=\"no\" min_height=\"none\" last=\"no\" hover_type=\"none\" link=\"\" border_position=\"all\"][fusion_text]\r\n<h1 style=\"text-align: center;\">BEDROOMS</h1>\r\n[/fusion_text][fusion_separator style_type=\"single solid\" top_margin=\"\" bottom_margin=\"20\" sep_color=\"#000000\" border_size=\"\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"170px\" alignment=\"\" class=\"\" id=\"\" /][/fusion_builder_column][fusion_builder_column type=\"1_6\" layout=\"1_6\" last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding_top=\"\" padding_right=\"\" padding_bottom=\"\" padding_left=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\" min_height=\"\"][/fusion_builder_column][fusion_builder_column type=\"2_3\" layout=\"2_3\" last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding_top=\"\" padding_right=\"\" padding_bottom=\"\" padding_left=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\" min_height=\"\"][fusion_text]\r\n<h3 style=\"text-align: justify;\">When it comes to our bedrooms we’re proud to say we offer something a little more special. One of five  lovingly and tastefully decorated guest rooms. Soft gray decor soothes the senses providing a peaceful, blissfully comfortable rest from your travels and hectic lives.</h3>\r\n<h3 style=\"text-align: justify;\">Our  bedrooms are spacious, clean, comfortable all en-suite, equipped with either king size or queen size beds. Each room sleeps two guests. The rooms have high ceilings, wall heaters &amp; ceiling fans. Beds all have electric blankets in Winter, 100% cotton percale sheets and thick hyper allergenic microfiber duvets and pillows. All guest rooms are cleaned with organic and green products. Amenities include hairdryers in each room. Three rooms feature King-sized beds  of which two can be  split into two single beds. Two  rooms can therefore be changed into a twin room upon request. Two rooms feature a Queen-sized double bed. These beds cannot be split into twin beds.</h3>\r\n[/fusion_text][/fusion_builder_column][fusion_builder_column type=\"1_6\" layout=\"1_6\" last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding_top=\"\" padding_right=\"\" padding_bottom=\"\" padding_left=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\" min_height=\"\"][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container background_color=\"\" background_image=\"http://localhost/assagaylodge/wp-content/uploads/2015/01/DSC01516-1148-x-764.jpg\" background_parallax=\"fixed\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"center center\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"20\" padding_bottom=\"20\" padding_left=\"0\" padding_right=\"0\" hundred_percent=\"no\" equal_height_columns=\"yes\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][fusion_builder_row][fusion_builder_column type=\"1_1\" layout=\"1_1\" background_position=\"left top\" background_color=\"\" border_size=\"\" border_color=\"\" border_style=\"solid\" spacing=\"yes\" background_image=\"\" background_repeat=\"no-repeat\" padding_top=\"\" padding_right=\"\" padding_bottom=\"\" padding_left=\"\" margin_top=\"0px\" margin_bottom=\"0px\" class=\"\" id=\"\" animation_type=\"\" animation_speed=\"0.3\" animation_direction=\"left\" hide_on_mobile=\"no\" center_content=\"no\" min_height=\"none\" last=\"no\" hover_type=\"none\" link=\"\" border_position=\"all\"][fusion_portfolio layout=\"grid\" picture_size=\"auto\" text_layout=\"no_text\" filters=\"no\" columns=\"3\" column_spacing=\"12\" cat_slug=\"bedrooms\" exclude_cats=\"\" number_posts=\"6\" offset=\"\" excerpt_length=\"35\" strip_html=\"yes\" carousel_layout=\"title_on_rollover\" scroll_items=\"\" autoplay=\"no\" show_nav=\"yes\" mouse_scroll=\"no\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\" /][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container background_color=\"#f0f0ed\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"20\" padding_bottom=\"20\" padding_left=\"0\" padding_right=\"0\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][fusion_builder_row][fusion_builder_column type=\"1_1\" layout=\"1_1\" background_position=\"left top\" background_color=\"\" border_size=\"\" border_color=\"\" border_style=\"solid\" spacing=\"yes\" background_image=\"\" background_repeat=\"no-repeat\" padding_top=\"\" padding_right=\"\" padding_bottom=\"\" padding_left=\"\" margin_top=\"0px\" margin_bottom=\"0px\" class=\"\" id=\"\" animation_type=\"\" animation_speed=\"0.3\" animation_direction=\"left\" hide_on_mobile=\"no\" center_content=\"no\" min_height=\"none\" last=\"no\" hover_type=\"none\" link=\"\" border_position=\"all\"][fusion_text]\r\n<h1 style=\"text-align: center;\">GARDENS</h1>\r\n[/fusion_text][fusion_separator style_type=\"single solid\" top_margin=\"\" bottom_margin=\"20\" sep_color=\"#000000\" border_size=\"\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"170px\" alignment=\"\" class=\"\" id=\"\" /][/fusion_builder_column][fusion_builder_column type=\"1_6\" layout=\"1_6\" last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding_top=\"\" padding_right=\"\" padding_bottom=\"\" padding_left=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\" min_height=\"\"][/fusion_builder_column][fusion_builder_column type=\"2_3\" layout=\"2_3\" last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding_top=\"\" padding_right=\"\" padding_bottom=\"\" padding_left=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\" min_height=\"\"][fusion_text]\r\n<h3 style=\"text-align: justify;\">The garden is large and offers many secluded spots to lose yourself in a book with a glass of wine underneath the shade of a tree, listening to the sounds of the birds and smelling the beautiful flowers.</h3>\r\n[/fusion_text][/fusion_builder_column][fusion_builder_column type=\"1_6\" layout=\"1_6\" last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding_top=\"\" padding_right=\"\" padding_bottom=\"\" padding_left=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\" min_height=\"\"][/fusion_builder_column][fusion_builder_column type=\"1_1\" layout=\"1_1\" background_position=\"left top\" background_color=\"\" border_size=\"\" border_color=\"\" border_style=\"solid\" spacing=\"yes\" background_image=\"\" background_repeat=\"no-repeat\" padding_top=\"\" padding_right=\"\" padding_bottom=\"\" padding_left=\"\" margin_top=\"0px\" margin_bottom=\"0px\" class=\"\" id=\"\" animation_type=\"\" animation_speed=\"0.3\" animation_direction=\"left\" hide_on_mobile=\"no\" center_content=\"no\" min_height=\"none\" last=\"no\" hover_type=\"none\" link=\"\" border_position=\"all\"][fusion_portfolio layout=\"grid\" picture_size=\"auto\" text_layout=\"no_text\" filters=\"no\" columns=\"3\" column_spacing=\"12\" cat_slug=\"gardens\" exclude_cats=\"\" number_posts=\"9\" offset=\"\" excerpt_length=\"35\" strip_html=\"yes\" carousel_layout=\"title_on_rollover\" scroll_items=\"\" autoplay=\"no\" show_nav=\"yes\" mouse_scroll=\"no\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\" /][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container background_color=\"#ffffff\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"65px\" padding_bottom=\"65px\" padding_left=\"\" padding_right=\"\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][fusion_builder_row][fusion_builder_column type=\"1_1\" layout=\"1_1\" background_position=\"left top\" background_color=\"\" border_size=\"\" border_color=\"\" border_style=\"solid\" spacing=\"yes\" background_image=\"\" background_repeat=\"no-repeat\" padding_top=\"\" padding_right=\"\" padding_bottom=\"\" padding_left=\"\" margin_top=\"0px\" margin_bottom=\"0px\" class=\"\" id=\"\" animation_type=\"\" animation_speed=\"0.3\" animation_direction=\"left\" hide_on_mobile=\"no\" center_content=\"no\" min_height=\"none\" last=\"no\" hover_type=\"none\" link=\"\" border_position=\"all\"][fusion_button link=\"https://msla.co.za/lodge/reservations/\" color=\"default\" size=\"xlarge\" stretch=\"default\" type=\"3d\" shape=\"round\" target=\"_self\" title=\"\" button_gradient_top_color=\"#f0f0ed\" button_gradient_bottom_color=\"#f0f0ed\" button_gradient_top_color_hover=\"#6666a4\" button_gradient_bottom_color_hover=\"#6666a4\" accent_color=\"#ffffff\" accent_hover_color=\"#ffffff\" bevel_color=\"\" border_width=\"0px\" icon=\"\" icon_position=\"left\" icon_divider=\"no\" modal=\"\" animation_type=\"0\" animation_direction=\"left\" animation_speed=\"1\" animation_offset=\"\" alignment=\"center\" class=\"\" id=\"\"]Make A Reservation Enquiry[/fusion_button][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container]', 'Home', '', 'inherit', 'closed', 'closed', '', '7-revision-v1', '', '', '2019-11-13 18:51:15', '2019-11-13 16:51:15', '', 7, 'https://msla.co.za/lodge/7-revision-v1/', 0, 'revision', '', 0);
INSERT INTO `wp_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(1403, 1, '2019-11-13 18:53:12', '2019-11-13 16:53:12', '[fusion_builder_container background_color=\"#f0f0ed\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"20\" padding_bottom=\"20\" padding_left=\"\" padding_right=\"\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][fusion_builder_row][fusion_builder_column type=\"1_2\" spacing=\"yes\" center_content=\"no\" link=\"\" target=\"_self\" min_height=\"\" hide_on_mobile=\"no\" class=\"\" id=\"\" background_image_id=\"\" background_color=\"\" background_image=\"\" background_position=\"left top\" background_repeat=\"no-repeat\" hover_type=\"none\" border_size=\"0\" border_color=\"\" border_style=\"solid\" border_position=\"all\" border_radius_top_left=\"\" border_radius_top_right=\"\" border_radius_bottom_left=\"\" border_radius_bottom_right=\"\" box_shadow=\"no\" box_shadow_vertical=\"\" box_shadow_horizontal=\"\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" box_shadow_color=\"\" box_shadow_style=\"\" padding_top=\"40px\" padding_right=\"\" padding_bottom=\"40px\" padding_left=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.1\" animation_offset=\"\" last=\"no\"][fusion_text]\r\n<h1 style=\"text-align: center;\">No Fancy Star Grading\r\nNo Room Service\r\nNo Bed Turn-downs\r\nNo Rose Petals in the Bath water</h1>\r\n<h1 style=\"text-align: center;\">... just old fashioned homely comforts</h1>\r\n[/fusion_text][/fusion_builder_column][fusion_builder_column type=\"1_2\" layout=\"1_2\" last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"\" padding_right=\"\" padding_bottom=\"\" padding_left=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\" min_height=\"\"][fusion_text]\r\n<h1 style=\"text-align: justify;\">5 BEDROOM FAMILY LODGE</h1>\r\n<h3 style=\"text-align: justify;\">We are a four season lodge, because there’s always something to celebrate… We offer comfort, relaxation and privacy right in the heart of 1000 Hills. The Forest, the Gardens, the Atmosphere all speak to  Rest  &amp; Relaxation.</h3>\r\n[/fusion_text][fusion_tagline_box backgroundcolor=\"\" shadow=\"yes\" shadowopacity=\"0.70\" border=\"1\" bordercolor=\"\" highlightposition=\"none\" content_alignment=\"center\" link=\"http://msla.co.za/lodge/reservations\" button=\"Book Now!\" linktarget=\"_self\" modal=\"\" button_size=\"xlarge\" button_type=\"\" button_shape=\"square\" buttoncolor=\"default\" title=\"\" description=\"\" margin_top=\"\" margin_bottom=\"\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" class=\"\" id=\"\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"\"]\r\n<p style=\"text-align: center;\"><span style=\"text-decoration: underline; font-size: 24pt;\">Current Specials</span></p>\r\n<p style=\"text-align: center;\"><span style=\"font-size: 14pt;\">Book on-line - get 15% OF\r\n</span><span style=\"font-size: 14pt;\">Stay 3 days or more - get 25% OFF</span></p>\r\n[/fusion_tagline_box][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container background_color=\"#f0f0ed\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"20\" padding_bottom=\"20\" padding_left=\"\" padding_right=\"\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][fusion_builder_row][fusion_builder_column type=\"1_2\" layout=\"1_2\" last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"\" padding_right=\"\" padding_bottom=\"\" padding_left=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\" min_height=\"\"][fusion_text]\r\n<h3 style=\"text-align: justify;\">Set in the rolling peaks and valleys of a thousand hills surrounded by a canopy of indigenous trees, you will find that horses still have right of way, we certainly offer the best of both worlds, farm and charm coupled with modern amenities that will have you feeling relaxed and rejuvenated.</h3>\r\n<h3 style=\"text-align: justify;\">We know that sometimes you are searching for a romantic getaway or maybe a few days away with old friends. Other times you are searching for a place to host a weekend, family reunion or a business retreat. In addition to nightly room rentals, our lodge is also available for meetings, retreats  and makes the perfect place for a wedding party to stay together and get ready for the big day. Regardless, with our five comfortable and cozy guest bedrooms, multiple garden spaces and hideaways, and a  large private deck  where you can take a nap or read a book we definitely have the room for you!</h3>\r\n<h3 style=\"text-align: justify;\">Evenings are quiet and peaceful taking you far away from the business of city life. This is a unique and memorable country experience. We look forward to having you as a guest!</h3>\r\n[/fusion_text][/fusion_builder_column][fusion_builder_column type=\"1_2\" layout=\"1_2\" last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"\" padding_right=\"\" padding_bottom=\"\" padding_left=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\" min_height=\"\"][fusion_text]\r\n<h3 style=\"text-align: justify;\">Our lodge has been in our family for years and has recently been beautifully renovated. Five rooms all with en-suite showers lead off your own large central lounge, featuring a 36 foot high vaulted ceiling, offering spacious living, dining, and a bar/conversational lounge area which includes a fitted kitchenette, all adding to a sense of homely comfort. Sumptuous meals can be provided on request and served on the bottom deck at the swimming pool.</h3>\r\n<h3 style=\"text-align: justify;\">Be lulled to sleep by the sound of the waterfall and tinkling stream just outside your window, waking from a peaceful night\'s sleep in a pillow-top bed dressed in luxurious linens to coddle you in ultimate comfort.</h3>\r\n<h3 style=\"text-align: justify;\">Our property boasts many different species of birds and animals. We have a resident otter, a family of wild bush pigs,  a family of rock rabbits, porcupine, little blue duikers, a variety of different frogs and an abundance of bird life, including the occasional snakes that pass through!</h3>\r\n[/fusion_text][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container background_color=\"#f0f0ed\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"20\" padding_bottom=\"20\" padding_left=\"\" padding_right=\"\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][fusion_builder_row][fusion_builder_column type=\"1_1\" layout=\"1_1\" background_position=\"left top\" background_color=\"\" border_size=\"\" border_color=\"\" border_style=\"solid\" spacing=\"yes\" background_image=\"\" background_repeat=\"no-repeat\" padding_top=\"\" padding_right=\"\" padding_bottom=\"\" padding_left=\"\" margin_top=\"0px\" margin_bottom=\"0px\" class=\"\" id=\"\" animation_type=\"\" animation_speed=\"0.3\" animation_direction=\"left\" hide_on_mobile=\"no\" center_content=\"no\" min_height=\"none\" last=\"no\" hover_type=\"none\" link=\"\" border_position=\"all\"][fusion_text]\r\n<h1 style=\"text-align: center;\">Gallery</h1>\r\n[/fusion_text][fusion_separator style_type=\"single solid\" top_margin=\"\" bottom_margin=\"40\" sep_color=\"#000000\" border_size=\"\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"170px\" alignment=\"\" class=\"\" id=\"\" /][/fusion_builder_column][fusion_builder_column type=\"1_6\" layout=\"1_6\" last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding_top=\"\" padding_right=\"\" padding_bottom=\"\" padding_left=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\" min_height=\"\"][/fusion_builder_column][fusion_builder_column type=\"2_3\" layout=\"2_3\" last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding_top=\"\" padding_right=\"\" padding_bottom=\"\" padding_left=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\" min_height=\"\"][fusion_text]\r\n<h3 style=\"text-align: justify;\">The Lodge is open, spacious, comfortable and homely. During hot summer days, sit and bask in the sun on the deck  with one of our  picnic specials. In winter, snuggle up with a good book or challenge one another to a friendly board game in the glassed nook area .</h3>\r\n[/fusion_text][/fusion_builder_column][fusion_builder_column type=\"1_6\" layout=\"1_6\" last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding_top=\"\" padding_right=\"\" padding_bottom=\"\" padding_left=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\" min_height=\"\"][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container background_color=\"#f0f0ed\" background_image=\"http://localhost/assagaylodge/wp-content/uploads/2015/01/Wood_Texture.jpg\" background_parallax=\"fixed\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"30\" padding_bottom=\"10\" padding_left=\"0\" padding_right=\"0\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][fusion_builder_row][fusion_builder_column type=\"1_1\" layout=\"1_1\" background_position=\"left top\" background_color=\"\" border_size=\"\" border_color=\"\" border_style=\"solid\" spacing=\"yes\" background_image=\"\" background_repeat=\"no-repeat\" padding_top=\"\" padding_right=\"\" padding_bottom=\"\" padding_left=\"\" margin_top=\"0px\" margin_bottom=\"0px\" class=\"\" id=\"\" animation_type=\"\" animation_speed=\"0.3\" animation_direction=\"left\" hide_on_mobile=\"no\" center_content=\"no\" min_height=\"none\" last=\"no\" hover_type=\"none\" link=\"\" border_position=\"all\"][fusion_portfolio layout=\"grid\" picture_size=\"auto\" text_layout=\"no_text\" filters=\"no\" columns=\"3\" column_spacing=\"12\" cat_slug=\"the-lodge\" exclude_cats=\"\" number_posts=\"9\" offset=\"\" excerpt_length=\"35\" strip_html=\"yes\" carousel_layout=\"title_on_rollover\" scroll_items=\"\" autoplay=\"no\" show_nav=\"yes\" mouse_scroll=\"no\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\" /][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container background_color=\"#f0f0ed\" background_image=\"\" background_parallax=\"fixed\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"20\" padding_bottom=\"20\" padding_left=\"\" padding_right=\"\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][fusion_builder_row][fusion_builder_column type=\"1_1\" layout=\"1_1\" background_position=\"left top\" background_color=\"\" border_size=\"\" border_color=\"\" border_style=\"solid\" spacing=\"yes\" background_image=\"\" background_repeat=\"no-repeat\" padding_top=\"\" padding_right=\"\" padding_bottom=\"\" padding_left=\"\" margin_top=\"0px\" margin_bottom=\"0px\" class=\"\" id=\"\" animation_type=\"\" animation_speed=\"0.3\" animation_direction=\"left\" hide_on_mobile=\"no\" center_content=\"no\" min_height=\"none\" last=\"no\" hover_type=\"none\" link=\"\" border_position=\"all\"][fusion_text]\r\n<h1 style=\"text-align: center;\">BEDROOMS</h1>\r\n[/fusion_text][fusion_separator style_type=\"single solid\" top_margin=\"\" bottom_margin=\"20\" sep_color=\"#000000\" border_size=\"\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"170px\" alignment=\"\" class=\"\" id=\"\" /][/fusion_builder_column][fusion_builder_column type=\"1_6\" layout=\"1_6\" last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding_top=\"\" padding_right=\"\" padding_bottom=\"\" padding_left=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\" min_height=\"\"][/fusion_builder_column][fusion_builder_column type=\"2_3\" layout=\"2_3\" last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding_top=\"\" padding_right=\"\" padding_bottom=\"\" padding_left=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\" min_height=\"\"][fusion_text]\r\n<h3 style=\"text-align: justify;\">When it comes to our bedrooms we’re proud to say we offer something a little more special. One of five  lovingly and tastefully decorated guest rooms. Soft gray decor soothes the senses providing a peaceful, blissfully comfortable rest from your travels and hectic lives.</h3>\r\n<h3 style=\"text-align: justify;\">Our  bedrooms are spacious, clean, comfortable all en-suite, equipped with either king size or queen size beds. Each room sleeps two guests. The rooms have high ceilings, wall heaters &amp; ceiling fans. Beds all have electric blankets in Winter, 100% cotton percale sheets and thick hyper allergenic microfiber duvets and pillows. All guest rooms are cleaned with organic and green products. Amenities include hairdryers in each room. Three rooms feature King-sized beds  of which two can be  split into two single beds. Two  rooms can therefore be changed into a twin room upon request. Two rooms feature a Queen-sized double bed. These beds cannot be split into twin beds.</h3>\r\n[/fusion_text][/fusion_builder_column][fusion_builder_column type=\"1_6\" layout=\"1_6\" last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding_top=\"\" padding_right=\"\" padding_bottom=\"\" padding_left=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\" min_height=\"\"][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container background_color=\"\" background_image=\"http://localhost/assagaylodge/wp-content/uploads/2015/01/DSC01516-1148-x-764.jpg\" background_parallax=\"fixed\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"center center\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"20\" padding_bottom=\"20\" padding_left=\"0\" padding_right=\"0\" hundred_percent=\"no\" equal_height_columns=\"yes\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][fusion_builder_row][fusion_builder_column type=\"1_1\" layout=\"1_1\" background_position=\"left top\" background_color=\"\" border_size=\"\" border_color=\"\" border_style=\"solid\" spacing=\"yes\" background_image=\"\" background_repeat=\"no-repeat\" padding_top=\"\" padding_right=\"\" padding_bottom=\"\" padding_left=\"\" margin_top=\"0px\" margin_bottom=\"0px\" class=\"\" id=\"\" animation_type=\"\" animation_speed=\"0.3\" animation_direction=\"left\" hide_on_mobile=\"no\" center_content=\"no\" min_height=\"none\" last=\"no\" hover_type=\"none\" link=\"\" border_position=\"all\"][fusion_portfolio layout=\"grid\" picture_size=\"auto\" text_layout=\"no_text\" filters=\"no\" columns=\"3\" column_spacing=\"12\" cat_slug=\"bedrooms\" exclude_cats=\"\" number_posts=\"6\" offset=\"\" excerpt_length=\"35\" strip_html=\"yes\" carousel_layout=\"title_on_rollover\" scroll_items=\"\" autoplay=\"no\" show_nav=\"yes\" mouse_scroll=\"no\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\" /][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container background_color=\"#f0f0ed\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"20\" padding_bottom=\"20\" padding_left=\"0\" padding_right=\"0\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][fusion_builder_row][fusion_builder_column type=\"1_1\" layout=\"1_1\" background_position=\"left top\" background_color=\"\" border_size=\"\" border_color=\"\" border_style=\"solid\" spacing=\"yes\" background_image=\"\" background_repeat=\"no-repeat\" padding_top=\"\" padding_right=\"\" padding_bottom=\"\" padding_left=\"\" margin_top=\"0px\" margin_bottom=\"0px\" class=\"\" id=\"\" animation_type=\"\" animation_speed=\"0.3\" animation_direction=\"left\" hide_on_mobile=\"no\" center_content=\"no\" min_height=\"none\" last=\"no\" hover_type=\"none\" link=\"\" border_position=\"all\"][fusion_text]\r\n<h1 style=\"text-align: center;\">GARDENS</h1>\r\n[/fusion_text][fusion_separator style_type=\"single solid\" top_margin=\"\" bottom_margin=\"20\" sep_color=\"#000000\" border_size=\"\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"170px\" alignment=\"\" class=\"\" id=\"\" /][/fusion_builder_column][fusion_builder_column type=\"1_6\" layout=\"1_6\" last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding_top=\"\" padding_right=\"\" padding_bottom=\"\" padding_left=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\" min_height=\"\"][/fusion_builder_column][fusion_builder_column type=\"2_3\" layout=\"2_3\" last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding_top=\"\" padding_right=\"\" padding_bottom=\"\" padding_left=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\" min_height=\"\"][fusion_text]\r\n<h3 style=\"text-align: justify;\">The garden is large and offers many secluded spots to lose yourself in a book with a glass of wine underneath the shade of a tree, listening to the sounds of the birds and smelling the beautiful flowers.</h3>\r\n[/fusion_text][/fusion_builder_column][fusion_builder_column type=\"1_6\" layout=\"1_6\" last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding_top=\"\" padding_right=\"\" padding_bottom=\"\" padding_left=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\" min_height=\"\"][/fusion_builder_column][fusion_builder_column type=\"1_1\" layout=\"1_1\" background_position=\"left top\" background_color=\"\" border_size=\"\" border_color=\"\" border_style=\"solid\" spacing=\"yes\" background_image=\"\" background_repeat=\"no-repeat\" padding_top=\"\" padding_right=\"\" padding_bottom=\"\" padding_left=\"\" margin_top=\"0px\" margin_bottom=\"0px\" class=\"\" id=\"\" animation_type=\"\" animation_speed=\"0.3\" animation_direction=\"left\" hide_on_mobile=\"no\" center_content=\"no\" min_height=\"none\" last=\"no\" hover_type=\"none\" link=\"\" border_position=\"all\"][fusion_portfolio layout=\"grid\" picture_size=\"auto\" text_layout=\"no_text\" filters=\"no\" columns=\"3\" column_spacing=\"12\" cat_slug=\"gardens\" exclude_cats=\"\" number_posts=\"9\" offset=\"\" excerpt_length=\"35\" strip_html=\"yes\" carousel_layout=\"title_on_rollover\" scroll_items=\"\" autoplay=\"no\" show_nav=\"yes\" mouse_scroll=\"no\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\" /][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container background_color=\"#ffffff\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"65px\" padding_bottom=\"65px\" padding_left=\"\" padding_right=\"\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][fusion_builder_row][fusion_builder_column type=\"1_1\" layout=\"1_1\" background_position=\"left top\" background_color=\"\" border_size=\"\" border_color=\"\" border_style=\"solid\" spacing=\"yes\" background_image=\"\" background_repeat=\"no-repeat\" padding_top=\"\" padding_right=\"\" padding_bottom=\"\" padding_left=\"\" margin_top=\"0px\" margin_bottom=\"0px\" class=\"\" id=\"\" animation_type=\"\" animation_speed=\"0.3\" animation_direction=\"left\" hide_on_mobile=\"no\" center_content=\"no\" min_height=\"none\" last=\"no\" hover_type=\"none\" link=\"\" border_position=\"all\"][fusion_button link=\"https://msla.co.za/lodge/reservations/\" color=\"default\" size=\"xlarge\" stretch=\"default\" type=\"3d\" shape=\"round\" target=\"_self\" title=\"\" button_gradient_top_color=\"#f0f0ed\" button_gradient_bottom_color=\"#f0f0ed\" button_gradient_top_color_hover=\"#6666a4\" button_gradient_bottom_color_hover=\"#6666a4\" accent_color=\"#ffffff\" accent_hover_color=\"#ffffff\" bevel_color=\"\" border_width=\"0px\" icon=\"\" icon_position=\"left\" icon_divider=\"no\" modal=\"\" animation_type=\"0\" animation_direction=\"left\" animation_speed=\"1\" animation_offset=\"\" alignment=\"center\" class=\"\" id=\"\"]Make A Reservation Enquiry[/fusion_button][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container]', 'Home', '', 'inherit', 'closed', 'closed', '', '7-revision-v1', '', '', '2019-11-13 18:53:12', '2019-11-13 16:53:12', '', 7, 'https://msla.co.za/lodge/7-revision-v1/', 0, 'revision', '', 0);
INSERT INTO `wp_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(1404, 1, '2019-11-13 18:54:32', '2019-11-13 16:54:32', '[fusion_builder_container background_color=\"#f0f0ed\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"20\" padding_bottom=\"20\" padding_left=\"\" padding_right=\"\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][fusion_builder_row][fusion_builder_column type=\"1_2\" layout=\"1_2\" spacing=\"yes\" center_content=\"no\" link=\"\" target=\"_self\" min_height=\"\" hide_on_mobile=\"no\" class=\"\" id=\"\" background_image_id=\"\" background_color=\"\" background_image=\"\" background_position=\"left top\" background_repeat=\"no-repeat\" hover_type=\"none\" border_size=\"0\" border_color=\"\" border_style=\"solid\" border_position=\"all\" border_radius_top_left=\"\" border_radius_top_right=\"\" border_radius_bottom_left=\"\" border_radius_bottom_right=\"\" box_shadow=\"no\" box_shadow_vertical=\"\" box_shadow_horizontal=\"\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" box_shadow_color=\"\" box_shadow_style=\"\" padding_top=\"40px\" padding_right=\"\" padding_bottom=\"40px\" padding_left=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.1\" animation_offset=\"\" last=\"no\"][fusion_text]\r\n<h1 style=\"text-align: center;\">No Fancy Star Grading\r\nNo Room Service\r\nNo Bed Turn-downs\r\nNo Rose Petals in the Bath water</h1>\r\n<h1 style=\"text-align: center;\">... just old fashioned homely comforts</h1>\r\n[/fusion_text][/fusion_builder_column][fusion_builder_column type=\"1_2\" layout=\"1_2\" last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"\" padding_right=\"\" padding_bottom=\"\" padding_left=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\" min_height=\"\"][fusion_text columns=\"\" column_min_width=\"\" column_spacing=\"\" rule_style=\"default\" rule_size=\"\" rule_color=\"\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" class=\"\" id=\"\"]\r\n<h1 style=\"text-align: center;\">5 Bedroom Family Lodge</h1>\r\n<h3 style=\"text-align: justify;\">We are a four season lodge, because there’s always something to celebrate… We offer comfort, relaxation and privacy right in the heart of 1000 Hills. The Forest, the Gardens, the Atmosphere all speak to  Rest  &amp; Relaxation.</h3>\r\n[/fusion_text][fusion_tagline_box backgroundcolor=\"\" shadow=\"yes\" shadowopacity=\"0.70\" border=\"1\" bordercolor=\"\" highlightposition=\"none\" content_alignment=\"center\" link=\"http://msla.co.za/lodge/reservations\" button=\"Book Now!\" linktarget=\"_self\" modal=\"\" button_size=\"xlarge\" button_type=\"\" button_shape=\"square\" buttoncolor=\"default\" title=\"\" description=\"\" margin_top=\"\" margin_bottom=\"\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" class=\"\" id=\"\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"\"]\r\n<p style=\"text-align: center;\"><span style=\"text-decoration: underline; font-size: 24pt;\">Current Specials</span></p>\r\n<p style=\"text-align: center;\"><span style=\"font-size: 14pt;\">Book on-line - get 15% OF\r\n</span><span style=\"font-size: 14pt;\">Stay 3 days or more - get 25% OFF</span></p>\r\n[/fusion_tagline_box][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container background_color=\"#f0f0ed\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"20\" padding_bottom=\"20\" padding_left=\"\" padding_right=\"\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][fusion_builder_row][fusion_builder_column type=\"1_2\" layout=\"1_2\" last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"\" padding_right=\"\" padding_bottom=\"\" padding_left=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\" min_height=\"\"][fusion_text]\r\n<h3 style=\"text-align: justify;\">Set in the rolling peaks and valleys of a thousand hills surrounded by a canopy of indigenous trees, you will find that horses still have right of way, we certainly offer the best of both worlds, farm and charm coupled with modern amenities that will have you feeling relaxed and rejuvenated.</h3>\r\n<h3 style=\"text-align: justify;\">We know that sometimes you are searching for a romantic getaway or maybe a few days away with old friends. Other times you are searching for a place to host a weekend, family reunion or a business retreat. In addition to nightly room rentals, our lodge is also available for meetings, retreats  and makes the perfect place for a wedding party to stay together and get ready for the big day. Regardless, with our five comfortable and cozy guest bedrooms, multiple garden spaces and hideaways, and a  large private deck  where you can take a nap or read a book we definitely have the room for you!</h3>\r\n<h3 style=\"text-align: justify;\">Evenings are quiet and peaceful taking you far away from the business of city life. This is a unique and memorable country experience. We look forward to having you as a guest!</h3>\r\n[/fusion_text][/fusion_builder_column][fusion_builder_column type=\"1_2\" layout=\"1_2\" last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"\" padding_right=\"\" padding_bottom=\"\" padding_left=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\" min_height=\"\"][fusion_text]\r\n<h3 style=\"text-align: justify;\">Our lodge has been in our family for years and has recently been beautifully renovated. Five rooms all with en-suite showers lead off your own large central lounge, featuring a 36 foot high vaulted ceiling, offering spacious living, dining, and a bar/conversational lounge area which includes a fitted kitchenette, all adding to a sense of homely comfort. Sumptuous meals can be provided on request and served on the bottom deck at the swimming pool.</h3>\r\n<h3 style=\"text-align: justify;\">Be lulled to sleep by the sound of the waterfall and tinkling stream just outside your window, waking from a peaceful night\'s sleep in a pillow-top bed dressed in luxurious linens to coddle you in ultimate comfort.</h3>\r\n<h3 style=\"text-align: justify;\">Our property boasts many different species of birds and animals. We have a resident otter, a family of wild bush pigs,  a family of rock rabbits, porcupine, little blue duikers, a variety of different frogs and an abundance of bird life, including the occasional snakes that pass through!</h3>\r\n[/fusion_text][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container background_color=\"#f0f0ed\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"20\" padding_bottom=\"20\" padding_left=\"\" padding_right=\"\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][fusion_builder_row][fusion_builder_column type=\"1_1\" layout=\"1_1\" background_position=\"left top\" background_color=\"\" border_size=\"\" border_color=\"\" border_style=\"solid\" spacing=\"yes\" background_image=\"\" background_repeat=\"no-repeat\" padding_top=\"\" padding_right=\"\" padding_bottom=\"\" padding_left=\"\" margin_top=\"0px\" margin_bottom=\"0px\" class=\"\" id=\"\" animation_type=\"\" animation_speed=\"0.3\" animation_direction=\"left\" hide_on_mobile=\"no\" center_content=\"no\" min_height=\"none\" last=\"no\" hover_type=\"none\" link=\"\" border_position=\"all\"][fusion_text]\r\n<h1 style=\"text-align: center;\">Gallery</h1>\r\n[/fusion_text][fusion_separator style_type=\"single solid\" top_margin=\"\" bottom_margin=\"40\" sep_color=\"#000000\" border_size=\"\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"170px\" alignment=\"\" class=\"\" id=\"\" /][/fusion_builder_column][fusion_builder_column type=\"1_6\" layout=\"1_6\" last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding_top=\"\" padding_right=\"\" padding_bottom=\"\" padding_left=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\" min_height=\"\"][/fusion_builder_column][fusion_builder_column type=\"2_3\" layout=\"2_3\" last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding_top=\"\" padding_right=\"\" padding_bottom=\"\" padding_left=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\" min_height=\"\"][fusion_text]\r\n<h3 style=\"text-align: justify;\">The Lodge is open, spacious, comfortable and homely. During hot summer days, sit and bask in the sun on the deck  with one of our  picnic specials. In winter, snuggle up with a good book or challenge one another to a friendly board game in the glassed nook area .</h3>\r\n[/fusion_text][/fusion_builder_column][fusion_builder_column type=\"1_6\" layout=\"1_6\" last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding_top=\"\" padding_right=\"\" padding_bottom=\"\" padding_left=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\" min_height=\"\"][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container background_color=\"#f0f0ed\" background_image=\"http://localhost/assagaylodge/wp-content/uploads/2015/01/Wood_Texture.jpg\" background_parallax=\"fixed\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"30\" padding_bottom=\"10\" padding_left=\"0\" padding_right=\"0\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][fusion_builder_row][fusion_builder_column type=\"1_1\" layout=\"1_1\" background_position=\"left top\" background_color=\"\" border_size=\"\" border_color=\"\" border_style=\"solid\" spacing=\"yes\" background_image=\"\" background_repeat=\"no-repeat\" padding_top=\"\" padding_right=\"\" padding_bottom=\"\" padding_left=\"\" margin_top=\"0px\" margin_bottom=\"0px\" class=\"\" id=\"\" animation_type=\"\" animation_speed=\"0.3\" animation_direction=\"left\" hide_on_mobile=\"no\" center_content=\"no\" min_height=\"none\" last=\"no\" hover_type=\"none\" link=\"\" border_position=\"all\"][fusion_portfolio layout=\"grid\" picture_size=\"auto\" text_layout=\"no_text\" filters=\"no\" columns=\"3\" column_spacing=\"12\" cat_slug=\"the-lodge\" exclude_cats=\"\" number_posts=\"9\" offset=\"\" excerpt_length=\"35\" strip_html=\"yes\" carousel_layout=\"title_on_rollover\" scroll_items=\"\" autoplay=\"no\" show_nav=\"yes\" mouse_scroll=\"no\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\" /][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container background_color=\"#f0f0ed\" background_image=\"\" background_parallax=\"fixed\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"20\" padding_bottom=\"20\" padding_left=\"\" padding_right=\"\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][fusion_builder_row][fusion_builder_column type=\"1_1\" layout=\"1_1\" background_position=\"left top\" background_color=\"\" border_size=\"\" border_color=\"\" border_style=\"solid\" spacing=\"yes\" background_image=\"\" background_repeat=\"no-repeat\" padding_top=\"\" padding_right=\"\" padding_bottom=\"\" padding_left=\"\" margin_top=\"0px\" margin_bottom=\"0px\" class=\"\" id=\"\" animation_type=\"\" animation_speed=\"0.3\" animation_direction=\"left\" hide_on_mobile=\"no\" center_content=\"no\" min_height=\"none\" last=\"no\" hover_type=\"none\" link=\"\" border_position=\"all\"][fusion_text]\r\n<h1 style=\"text-align: center;\">BEDROOMS</h1>\r\n[/fusion_text][fusion_separator style_type=\"single solid\" top_margin=\"\" bottom_margin=\"20\" sep_color=\"#000000\" border_size=\"\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"170px\" alignment=\"\" class=\"\" id=\"\" /][/fusion_builder_column][fusion_builder_column type=\"1_6\" layout=\"1_6\" last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding_top=\"\" padding_right=\"\" padding_bottom=\"\" padding_left=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\" min_height=\"\"][/fusion_builder_column][fusion_builder_column type=\"2_3\" layout=\"2_3\" last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding_top=\"\" padding_right=\"\" padding_bottom=\"\" padding_left=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\" min_height=\"\"][fusion_text]\r\n<h3 style=\"text-align: justify;\">When it comes to our bedrooms we’re proud to say we offer something a little more special. One of five  lovingly and tastefully decorated guest rooms. Soft gray decor soothes the senses providing a peaceful, blissfully comfortable rest from your travels and hectic lives.</h3>\r\n<h3 style=\"text-align: justify;\">Our  bedrooms are spacious, clean, comfortable all en-suite, equipped with either king size or queen size beds. Each room sleeps two guests. The rooms have high ceilings, wall heaters &amp; ceiling fans. Beds all have electric blankets in Winter, 100% cotton percale sheets and thick hyper allergenic microfiber duvets and pillows. All guest rooms are cleaned with organic and green products. Amenities include hairdryers in each room. Three rooms feature King-sized beds  of which two can be  split into two single beds. Two  rooms can therefore be changed into a twin room upon request. Two rooms feature a Queen-sized double bed. These beds cannot be split into twin beds.</h3>\r\n[/fusion_text][/fusion_builder_column][fusion_builder_column type=\"1_6\" layout=\"1_6\" last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding_top=\"\" padding_right=\"\" padding_bottom=\"\" padding_left=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\" min_height=\"\"][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container background_color=\"\" background_image=\"http://localhost/assagaylodge/wp-content/uploads/2015/01/DSC01516-1148-x-764.jpg\" background_parallax=\"fixed\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"center center\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"20\" padding_bottom=\"20\" padding_left=\"0\" padding_right=\"0\" hundred_percent=\"no\" equal_height_columns=\"yes\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][fusion_builder_row][fusion_builder_column type=\"1_1\" layout=\"1_1\" background_position=\"left top\" background_color=\"\" border_size=\"\" border_color=\"\" border_style=\"solid\" spacing=\"yes\" background_image=\"\" background_repeat=\"no-repeat\" padding_top=\"\" padding_right=\"\" padding_bottom=\"\" padding_left=\"\" margin_top=\"0px\" margin_bottom=\"0px\" class=\"\" id=\"\" animation_type=\"\" animation_speed=\"0.3\" animation_direction=\"left\" hide_on_mobile=\"no\" center_content=\"no\" min_height=\"none\" last=\"no\" hover_type=\"none\" link=\"\" border_position=\"all\"][fusion_portfolio layout=\"grid\" picture_size=\"auto\" text_layout=\"no_text\" filters=\"no\" columns=\"3\" column_spacing=\"12\" cat_slug=\"bedrooms\" exclude_cats=\"\" number_posts=\"6\" offset=\"\" excerpt_length=\"35\" strip_html=\"yes\" carousel_layout=\"title_on_rollover\" scroll_items=\"\" autoplay=\"no\" show_nav=\"yes\" mouse_scroll=\"no\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\" /][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container background_color=\"#f0f0ed\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"20\" padding_bottom=\"20\" padding_left=\"0\" padding_right=\"0\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][fusion_builder_row][fusion_builder_column type=\"1_1\" layout=\"1_1\" background_position=\"left top\" background_color=\"\" border_size=\"\" border_color=\"\" border_style=\"solid\" spacing=\"yes\" background_image=\"\" background_repeat=\"no-repeat\" padding_top=\"\" padding_right=\"\" padding_bottom=\"\" padding_left=\"\" margin_top=\"0px\" margin_bottom=\"0px\" class=\"\" id=\"\" animation_type=\"\" animation_speed=\"0.3\" animation_direction=\"left\" hide_on_mobile=\"no\" center_content=\"no\" min_height=\"none\" last=\"no\" hover_type=\"none\" link=\"\" border_position=\"all\"][fusion_text]\r\n<h1 style=\"text-align: center;\">GARDENS</h1>\r\n[/fusion_text][fusion_separator style_type=\"single solid\" top_margin=\"\" bottom_margin=\"20\" sep_color=\"#000000\" border_size=\"\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"170px\" alignment=\"\" class=\"\" id=\"\" /][/fusion_builder_column][fusion_builder_column type=\"1_6\" layout=\"1_6\" last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding_top=\"\" padding_right=\"\" padding_bottom=\"\" padding_left=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\" min_height=\"\"][/fusion_builder_column][fusion_builder_column type=\"2_3\" layout=\"2_3\" last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding_top=\"\" padding_right=\"\" padding_bottom=\"\" padding_left=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\" min_height=\"\"][fusion_text]\r\n<h3 style=\"text-align: justify;\">The garden is large and offers many secluded spots to lose yourself in a book with a glass of wine underneath the shade of a tree, listening to the sounds of the birds and smelling the beautiful flowers.</h3>\r\n[/fusion_text][/fusion_builder_column][fusion_builder_column type=\"1_6\" layout=\"1_6\" last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding_top=\"\" padding_right=\"\" padding_bottom=\"\" padding_left=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\" min_height=\"\"][/fusion_builder_column][fusion_builder_column type=\"1_1\" layout=\"1_1\" background_position=\"left top\" background_color=\"\" border_size=\"\" border_color=\"\" border_style=\"solid\" spacing=\"yes\" background_image=\"\" background_repeat=\"no-repeat\" padding_top=\"\" padding_right=\"\" padding_bottom=\"\" padding_left=\"\" margin_top=\"0px\" margin_bottom=\"0px\" class=\"\" id=\"\" animation_type=\"\" animation_speed=\"0.3\" animation_direction=\"left\" hide_on_mobile=\"no\" center_content=\"no\" min_height=\"none\" last=\"no\" hover_type=\"none\" link=\"\" border_position=\"all\"][fusion_portfolio layout=\"grid\" picture_size=\"auto\" text_layout=\"no_text\" filters=\"no\" columns=\"3\" column_spacing=\"12\" cat_slug=\"gardens\" exclude_cats=\"\" number_posts=\"9\" offset=\"\" excerpt_length=\"35\" strip_html=\"yes\" carousel_layout=\"title_on_rollover\" scroll_items=\"\" autoplay=\"no\" show_nav=\"yes\" mouse_scroll=\"no\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\" /][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container background_color=\"#ffffff\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"65px\" padding_bottom=\"65px\" padding_left=\"\" padding_right=\"\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][fusion_builder_row][fusion_builder_column type=\"1_1\" layout=\"1_1\" background_position=\"left top\" background_color=\"\" border_size=\"\" border_color=\"\" border_style=\"solid\" spacing=\"yes\" background_image=\"\" background_repeat=\"no-repeat\" padding_top=\"\" padding_right=\"\" padding_bottom=\"\" padding_left=\"\" margin_top=\"0px\" margin_bottom=\"0px\" class=\"\" id=\"\" animation_type=\"\" animation_speed=\"0.3\" animation_direction=\"left\" hide_on_mobile=\"no\" center_content=\"no\" min_height=\"none\" last=\"no\" hover_type=\"none\" link=\"\" border_position=\"all\"][fusion_button link=\"https://msla.co.za/lodge/reservations/\" color=\"default\" size=\"xlarge\" stretch=\"default\" type=\"3d\" shape=\"round\" target=\"_self\" title=\"\" button_gradient_top_color=\"#f0f0ed\" button_gradient_bottom_color=\"#f0f0ed\" button_gradient_top_color_hover=\"#6666a4\" button_gradient_bottom_color_hover=\"#6666a4\" accent_color=\"#ffffff\" accent_hover_color=\"#ffffff\" bevel_color=\"\" border_width=\"0px\" icon=\"\" icon_position=\"left\" icon_divider=\"no\" modal=\"\" animation_type=\"0\" animation_direction=\"left\" animation_speed=\"1\" animation_offset=\"\" alignment=\"center\" class=\"\" id=\"\"]Make A Reservation Enquiry[/fusion_button][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container]', 'Home', '', 'inherit', 'closed', 'closed', '', '7-revision-v1', '', '', '2019-11-13 18:54:32', '2019-11-13 16:54:32', '', 7, 'https://msla.co.za/lodge/7-revision-v1/', 0, 'revision', '', 0),
(1407, 1, '2020-03-02 16:44:38', '2020-03-02 14:44:38', '', '14146294918_a82a7fa09e_b', '', 'inherit', 'open', 'closed', '', '14146294918_a82a7fa09e_b', '', '', '2020-03-02 16:44:38', '2020-03-02 14:44:38', '', 24, 'https://msla.co.za/lodge/wp-content/uploads/2015/01/14146294918_a82a7fa09e_b.jpg', 0, 'attachment', 'image/jpeg', 0),
(1408, 1, '2020-03-03 08:19:26', '2020-03-03 06:19:26', '[fusion_builder_container background_color=\"\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding_top=\"20\" padding_bottom=\"20\" padding_left=\"0\" padding_right=\"0\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][fusion_builder_row][fusion_builder_column type=\"1_1\" layout=\"1_1\" background_position=\"left top\" background_color=\"\" border_size=\"\" border_color=\"\" border_style=\"solid\" spacing=\"yes\" background_image=\"\" background_repeat=\"no-repeat\" padding_top=\"\" padding_right=\"\" padding_bottom=\"\" padding_left=\"\" margin_top=\"0px\" margin_bottom=\"0px\" class=\"\" id=\"\" animation_type=\"\" animation_speed=\"0.3\" animation_direction=\"left\" hide_on_mobile=\"no\" center_content=\"no\" min_height=\"none\" last=\"no\" hover_type=\"none\" link=\"\" border_position=\"all\"][fusion_title size=\"1\" content_align=\"right\" style_type=\"default\" sep_color=\"\" margin_top=\"\" margin_bottom=\"\" class=\"\" id=\"\"]Lodge Facilities &amp; Amenities[/fusion_title][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container hundred_percent=\"yes\" overflow=\"visible\"][fusion_builder_row][fusion_builder_column type=\"1_6\" layout=\"1_6\" last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding_top=\"\" padding_right=\"\" padding_bottom=\"\" padding_left=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\" min_height=\"\"][/fusion_builder_column][fusion_builder_column type=\"2_3\" layout=\"2_3\" last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding_top=\"\" padding_right=\"\" padding_bottom=\"\" padding_left=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\" min_height=\"\"][fusion_text columns=\"\" column_min_width=\"\" column_spacing=\"\" rule_style=\"default\" rule_size=\"\" rule_color=\"\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" class=\"\" id=\"\"]<h3><span style=\"text-align: justify; line-height: 1.5em; font-family: verdana, geneva; font-size: 18px;\">Rooms</span></h3><p><span style=\"font-size: 12pt;\">[fusion_checklist icon=\"fa-star-o\" iconcolor=\"\" circle=\"\" circlecolor=\"\" size=\"13px\" class=\"\" id=\"\"]</span><br /><span style=\"font-size: 12pt;\"> [fusion_li_item icon=\"\"]All Rooms are en-suite i.e. Hand Basin, Toilet, Shower.[/fusion_li_item]<br />[fusion_li_item icon=\"\"]Wall to Wall Carpeting[/fusion_li_item]<br /></span><span style=\"font-size: 12pt;\">[fusion_li_item icon=\"\"]Ceiling Fan.[/fusion_li_item]<br /></span><span style=\"font-size: 12pt;\">[fusion_li_item icon=\"\"]Wall Heater.[/fusion_li_item]<br /></span><span style=\"font-size: 12pt;\">[fusion_li_item icon=\"\"]Electrical Plug Sockets.[/fusion_li_item]<br /></span><span style=\"font-size: 12pt;\">[fusion_li_item icon=\"\"]Cupboard.[/fusion_li_item]<br />[fusion_li_item icon=\"\"]Bedside Lamps.[/fusion_li_item]</span><br /><span style=\"font-size: 12pt;\">[/fusion_checklist]</span></p>[/fusion_text][fusion_text]\r\n<h3><span style=\"text-align: justify; line-height: 1.5em; font-family: verdana, geneva; font-size: 18px;\">Beds</span></h3>\r\n<span style=\"font-size: 12pt;\">[fusion_checklist icon=\"fa-star-o\" iconcolor=\"\" circle=\"\" circlecolor=\"\" size=\"13px\" class=\"\" id=\"\"]</span>\r\n<span style=\"font-size: 12pt;\">[fusion_li_item icon=\"\"]King or Queen Bed &amp; Mattress Protector.[/fusion_li_item]\r\n</span><span style=\"font-size: 12pt;\">[fusion_li_item icon=\"\"]Electric Blankets.[/fusion_li_item]\r\n[fusion_li_item icon=\"\"]100% Cotton Percale Fitted Sheet.[/fusion_li_item]\r\n</span><span style=\"font-size: 12pt;\">[fusion_li_item icon=\"\"]100% Cotton Percale Flat Sheet.[/fusion_li_item]\r\n</span><span style=\"font-size: 12pt;\">[fusion_li_item icon=\"\"]2x King Microfibre Pillows, Pillow Protectors &amp; 100% Cotton Percale Pillow Cases.[/fusion_li_item]\r\n[fusion_li_item icon=\"\"]2x Standard Microfibre Pillows, Pillow Protectors &amp; 100% Cotton Percale Pillow Cases.[/fusion_li_item]\r\n</span><span style=\"font-size: 12pt;\">[fusion_li_item icon=\"\"]Microfibre Duvet Inner.[/fusion_li_item]\r\n</span><span style=\"font-size: 12pt;\">[fusion_li_item icon=\"\"]Duvet Cover.[/fusion_li_item]\r\n</span><span style=\"font-size: 12pt;\">[fusion_li_item icon=\"\"]A Bed Blanket.[/fusion_li_item]\r\n</span><span style=\"font-size: 12pt;\">[/fusion_checklist]</span>[/fusion_text][fusion_text columns=\"\" column_min_width=\"\" column_spacing=\"\" rule_style=\"default\" rule_size=\"\" rule_color=\"\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" class=\"\" id=\"\"]<h3><span style=\"text-align: justify; line-height: 1.5em; font-family: verdana, geneva; font-size: 18px;\">Kitchen</span></h3><p><span style=\"font-size: 12pt;\">[fusion_checklist icon=\"fa-star-o\" iconcolor=\"\" circle=\"\" circlecolor=\"\" size=\"13px\" class=\"\" id=\"\"]</span><br /><span style=\"font-size: 12pt;\"> [fusion_li_item icon=\"\"]Fridge &amp; Freezer Unit.[/fusion_li_item]<br /></span><span style=\"font-size: 12pt;\">[fusion_li_item icon=\"\"]Microwave.[/fusion_li_item]<br /></span><span style=\"font-size: 12pt;\">[fusion_li_item icon=\"\"]Electric Frying Pan[/fusion_li_item]<br /></span><span style=\"font-size: 12pt;\">[fusion_li_item icon=\"\"]Toaster.[/fusion_li_item]<br /></span><span style=\"font-size: 12pt;\">[fusion_li_item icon=\"\"]Iron &amp; Ironing Board.[/fusion_li_item]<br /></span><span style=\"font-size: 12pt;\">[fusion_li_item icon=\"\"]Kettle &amp; Urn.[/fusion_li_item]<br /></span><span style=\"font-size: 12pt;\">[fusion_li_item icon=\"\"]Gas Stove &amp; Oven.[/fusion_li_item]<br /></span><span style=\"font-size: 12pt;\">[fusion_li_item icon=\"\"]Coffee Peculator.[/fusion_li_item]<br /></span><span style=\"font-size: 12pt;\">[fusion_li_item icon=\"\"]Glasses.[/fusion_li_item]<br /></span><span style=\"font-size: 12pt;\">[fusion_li_item icon=\"\"]Pot &amp; Pans.[/fusion_li_item]<br /></span><span style=\"font-size: 12pt;\">[fusion_li_item icon=\"\"]Crockery &amp; Cutlery.[/fusion_li_item]</span></p><p><span style=\"font-size: 12pt;\">[/fusion_checklist]</span></p>[/fusion_text][/fusion_builder_column][fusion_builder_column type=\"1_6\" layout=\"1_6\" last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding_top=\"\" padding_right=\"\" padding_bottom=\"\" padding_left=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\" min_height=\"\"][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container]', 'Facilities', '', 'inherit', 'closed', 'closed', '', '998-revision-v1', '', '', '2020-03-03 08:19:26', '2020-03-03 06:19:26', '', 998, 'https://msla.co.za/lodge/998-revision-v1/', 0, 'revision', '', 0),
(1409, 1, '2020-03-03 08:19:32', '2020-03-03 06:19:32', '[fusion_builder_container background_color=\"\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding_top=\"20\" padding_bottom=\"20\" padding_left=\"0\" padding_right=\"0\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][fusion_builder_row][fusion_builder_column type=\"1_1\" layout=\"1_1\" background_position=\"left top\" background_color=\"\" border_size=\"\" border_color=\"\" border_style=\"solid\" spacing=\"yes\" background_image=\"\" background_repeat=\"no-repeat\" padding_top=\"\" padding_right=\"\" padding_bottom=\"\" padding_left=\"\" margin_top=\"0px\" margin_bottom=\"0px\" class=\"\" id=\"\" animation_type=\"\" animation_speed=\"0.3\" animation_direction=\"left\" hide_on_mobile=\"no\" center_content=\"no\" min_height=\"none\" last=\"no\" hover_type=\"none\" link=\"\" border_position=\"all\"][fusion_title size=\"1\" content_align=\"right\" style_type=\"default\" sep_color=\"\" margin_top=\"\" margin_bottom=\"\" class=\"\" id=\"\"]Lodge Facilities &amp; Amenities[/fusion_title][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container hundred_percent=\"yes\" overflow=\"visible\"][fusion_builder_row][fusion_builder_column type=\"1_6\" layout=\"1_6\" last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding_top=\"\" padding_right=\"\" padding_bottom=\"\" padding_left=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\" min_height=\"\"][/fusion_builder_column][fusion_builder_column type=\"2_3\" layout=\"2_3\" last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding_top=\"\" padding_right=\"\" padding_bottom=\"\" padding_left=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\" min_height=\"\"][fusion_text columns=\"\" column_min_width=\"\" column_spacing=\"\" rule_style=\"default\" rule_size=\"\" rule_color=\"\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" class=\"\" id=\"\"]\r\n<h3><span style=\"text-align: justify; line-height: 1.5em; font-family: verdana, geneva; font-size: 18px;\">Rooms</span></h3>\r\n<span style=\"font-size: 12pt;\">[fusion_checklist icon=\"fa-star-o\" iconcolor=\"\" circle=\"\" circlecolor=\"\" size=\"13px\" class=\"\" id=\"\"]</span>\r\n<span style=\"font-size: 12pt;\"> [fusion_li_item icon=\"\"]All Rooms are en-suite i.e. Hand Basin, Toilet, Shower.[/fusion_li_item]\r\n[fusion_li_item icon=\"\"]Wall to Wall Carpeting[/fusion_li_item]\r\n</span><span style=\"font-size: 12pt;\">[fusion_li_item icon=\"\"]Ceiling Fan.[/fusion_li_item]\r\n</span><span style=\"font-size: 12pt;\">[fusion_li_item icon=\"\"]Wall Heater.[/fusion_li_item]\r\n</span><span style=\"font-size: 12pt;\">[fusion_li_item icon=\"\"]Electrical Plug Sockets.[/fusion_li_item]\r\n</span><span style=\"font-size: 12pt;\">[fusion_li_item icon=\"\"]Cupboard.[/fusion_li_item]\r\n[fusion_li_item icon=\"\"]Bedside Lamps.[/fusion_li_item]</span>\r\n<span style=\"font-size: 12pt;\">[/fusion_checklist]</span>\r\n\r\n[/fusion_text][fusion_text]\r\n<h3><span style=\"text-align: justify; line-height: 1.5em; font-family: verdana, geneva; font-size: 18px;\">Beds</span></h3>\r\n<span style=\"font-size: 12pt;\">[fusion_checklist icon=\"fa-star-o\" iconcolor=\"\" circle=\"\" circlecolor=\"\" size=\"13px\" class=\"\" id=\"\"]</span>\r\n<span style=\"font-size: 12pt;\">[fusion_li_item icon=\"\"]King or Queen Bed &amp; Mattress Protector.[/fusion_li_item]\r\n</span><span style=\"font-size: 12pt;\">[fusion_li_item icon=\"\"]Electric Blankets.[/fusion_li_item]\r\n[fusion_li_item icon=\"\"]100% Cotton Percale Fitted Sheet.[/fusion_li_item]\r\n</span><span style=\"font-size: 12pt;\">[fusion_li_item icon=\"\"]100% Cotton Percale Flat Sheet.[/fusion_li_item]\r\n</span><span style=\"font-size: 12pt;\">[fusion_li_item icon=\"\"]2x King Microfibre Pillows, Pillow Protectors &amp; 100% Cotton Percale Pillow Cases.[/fusion_li_item]\r\n[fusion_li_item icon=\"\"]2x Standard Microfibre Pillows, Pillow Protectors &amp; 100% Cotton Percale Pillow Cases.[/fusion_li_item]\r\n</span><span style=\"font-size: 12pt;\">[fusion_li_item icon=\"\"]Microfibre Duvet Inner.[/fusion_li_item]\r\n</span><span style=\"font-size: 12pt;\">[fusion_li_item icon=\"\"]Duvet Cover.[/fusion_li_item]\r\n</span><span style=\"font-size: 12pt;\">[fusion_li_item icon=\"\"]A Bed Blanket.[/fusion_li_item]\r\n</span><span style=\"font-size: 12pt;\">[/fusion_checklist]</span>[/fusion_text][fusion_text columns=\"\" column_min_width=\"\" column_spacing=\"\" rule_style=\"default\" rule_size=\"\" rule_color=\"\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" class=\"\" id=\"\"]\r\n<h3><span style=\"text-align: justify; line-height: 1.5em; font-family: verdana, geneva; font-size: 18px;\">Kitchen</span></h3>\r\n<span style=\"font-size: 12pt;\">[fusion_checklist icon=\"fa-star-o\" iconcolor=\"\" circle=\"\" circlecolor=\"\" size=\"13px\" class=\"\" id=\"\"]</span>\r\n<span style=\"font-size: 12pt;\"> [fusion_li_item icon=\"\"]Fridge &amp; Freezer Unit.[/fusion_li_item]\r\n</span><span style=\"font-size: 12pt;\">[fusion_li_item icon=\"\"]Microwave.[/fusion_li_item]\r\n</span><span style=\"font-size: 12pt;\">[fusion_li_item icon=\"\"]Electric Frying Pan[/fusion_li_item]\r\n</span><span style=\"font-size: 12pt;\">[fusion_li_item icon=\"\"]Toaster.[/fusion_li_item]\r\n</span><span style=\"font-size: 12pt;\">[fusion_li_item icon=\"\"]Iron &amp; Ironing Board.[/fusion_li_item]\r\n</span><span style=\"font-size: 12pt;\">[fusion_li_item icon=\"\"]Kettle &amp; Urn.[/fusion_li_item]\r\n</span><span style=\"font-size: 12pt;\">[fusion_li_item icon=\"\"]Gas Stove &amp; Oven.[/fusion_li_item]\r\n</span><span style=\"font-size: 12pt;\">[fusion_li_item icon=\"\"]Coffee Peculator.[/fusion_li_item]\r\n</span><span style=\"font-size: 12pt;\">[fusion_li_item icon=\"\"]Glasses.[/fusion_li_item]\r\n</span><span style=\"font-size: 12pt;\">[fusion_li_item icon=\"\"]Pot &amp; Pans.[/fusion_li_item]\r\n</span><span style=\"font-size: 12pt;\">[fusion_li_item icon=\"\"]Crockery &amp; Cutlery.[/fusion_li_item]</span>\r\n\r\n<span style=\"font-size: 12pt;\">[/fusion_checklist]</span>\r\n\r\n[/fusion_text][/fusion_builder_column][fusion_builder_column type=\"1_6\" layout=\"1_6\" last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding_top=\"\" padding_right=\"\" padding_bottom=\"\" padding_left=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\" min_height=\"\"][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container]', 'Facilities', '', 'inherit', 'closed', 'closed', '', '998-revision-v1', '', '', '2020-03-03 08:19:32', '2020-03-03 06:19:32', '', 998, 'https://msla.co.za/lodge/998-revision-v1/', 0, 'revision', '', 0);
INSERT INTO `wp_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(1410, 1, '2020-03-03 08:21:41', '2020-03-03 06:21:41', '[fusion_builder_container background_color=\"\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding_top=\"20\" padding_bottom=\"20\" padding_left=\"0\" padding_right=\"0\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][fusion_builder_row][fusion_builder_column type=\"1_1\" layout=\"1_1\" background_position=\"left top\" background_color=\"\" border_size=\"\" border_color=\"\" border_style=\"solid\" spacing=\"yes\" background_image=\"\" background_repeat=\"no-repeat\" padding_top=\"\" padding_right=\"\" padding_bottom=\"\" padding_left=\"\" margin_top=\"0px\" margin_bottom=\"0px\" class=\"\" id=\"\" animation_type=\"\" animation_speed=\"0.3\" animation_direction=\"left\" hide_on_mobile=\"no\" center_content=\"no\" min_height=\"none\" last=\"no\" hover_type=\"none\" link=\"\" border_position=\"all\"][fusion_title size=\"1\" content_align=\"right\" style_type=\"default\" sep_color=\"\" margin_top=\"\" margin_bottom=\"\" class=\"\" id=\"\"]Lodge Facilities &amp; Amenities[/fusion_title][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container hundred_percent=\"yes\" overflow=\"visible\"][fusion_builder_row][fusion_builder_column type=\"1_6\" layout=\"1_6\" last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding_top=\"\" padding_right=\"\" padding_bottom=\"\" padding_left=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\" min_height=\"\"][/fusion_builder_column][fusion_builder_column type=\"2_3\" layout=\"2_3\" last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding_top=\"\" padding_right=\"\" padding_bottom=\"\" padding_left=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\" min_height=\"\"][fusion_text columns=\"\" column_min_width=\"\" column_spacing=\"\" rule_style=\"default\" rule_size=\"\" rule_color=\"\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" class=\"\" id=\"\"]\r\n<h3><span style=\"text-align: justify; line-height: 1.5em; font-family: verdana, geneva; font-size: 18px;\">Rooms</span></h3>\r\n<span style=\"font-size: 12pt;\">[fusion_checklist icon=\"fa-star-o\" iconcolor=\"\" circle=\"\" circlecolor=\"\" size=\"13px\" class=\"\" id=\"\"]</span>\r\n<span style=\"font-size: 12pt;\"> [fusion_li_item icon=\"\"]All Rooms are en-suite i.e. Hand Basin, Toilet, Shower.[/fusion_li_item]\r\n</span><span style=\"font-size: 12pt;\">[fusion_li_item icon=\"\"]Wall to Wall Carpeting.[/fusion_li_item]\r\n</span><span style=\"font-size: 12pt;\">[fusion_li_item icon=\"\"]Ceiling Fan.[/fusion_li_item]\r\n</span><span style=\"font-size: 12pt;\">[fusion_li_item icon=\"\"]Wall Heater.[/fusion_li_item]\r\n</span><span style=\"font-size: 12pt;\">[fusion_li_item icon=\"\"]Electrical Plug Sockets.[/fusion_li_item]\r\n</span><span style=\"font-size: 12pt;\">[fusion_li_item icon=\"\"]Cupboard.[/fusion_li_item]\r\n[fusion_li_item icon=\"\"]Bedside Lamps.[/fusion_li_item]</span>\r\n<span style=\"font-size: 12pt;\">[/fusion_checklist]</span>[/fusion_text][fusion_text]\r\n<h3><span style=\"text-align: justify; line-height: 1.5em; font-family: verdana, geneva; font-size: 18px;\">Beds</span></h3>\r\n<span style=\"font-size: 12pt;\">[fusion_checklist icon=\"fa-star-o\" iconcolor=\"\" circle=\"\" circlecolor=\"\" size=\"13px\" class=\"\" id=\"\"]</span>\r\n<span style=\"font-size: 12pt;\">[fusion_li_item icon=\"\"]King or Queen Bed &amp; Mattress Protector.[/fusion_li_item]\r\n</span><span style=\"font-size: 12pt;\">[fusion_li_item icon=\"\"]Electric Blankets.[/fusion_li_item]\r\n[fusion_li_item icon=\"\"]100% Cotton Percale Fitted Sheet.[/fusion_li_item]\r\n</span><span style=\"font-size: 12pt;\">[fusion_li_item icon=\"\"]100% Cotton Percale Flat Sheet.[/fusion_li_item]\r\n</span><span style=\"font-size: 12pt;\">[fusion_li_item icon=\"\"]2x King Microfibre Pillows, Pillow Protectors &amp; 100% Cotton Percale Pillow Cases.[/fusion_li_item]\r\n[fusion_li_item icon=\"\"]2x Standard Microfibre Pillows, Pillow Protectors &amp; 100% Cotton Percale Pillow Cases.[/fusion_li_item]\r\n</span><span style=\"font-size: 12pt;\">[fusion_li_item icon=\"\"]Microfibre Duvet Inner.[/fusion_li_item]\r\n</span><span style=\"font-size: 12pt;\">[fusion_li_item icon=\"\"]Duvet Cover.[/fusion_li_item]\r\n</span><span style=\"font-size: 12pt;\">[fusion_li_item icon=\"\"]A Bed Blanket.[/fusion_li_item]\r\n</span><span style=\"font-size: 12pt;\">[/fusion_checklist]</span>[/fusion_text][fusion_text columns=\"\" column_min_width=\"\" column_spacing=\"\" rule_style=\"default\" rule_size=\"\" rule_color=\"\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" class=\"\" id=\"\"]\r\n<h3><span style=\"text-align: justify; line-height: 1.5em; font-family: verdana, geneva; font-size: 18px;\">Kitchen</span></h3>\r\n<span style=\"font-size: 12pt;\">[fusion_checklist icon=\"fa-star-o\" iconcolor=\"\" circle=\"\" circlecolor=\"\" size=\"13px\" class=\"\" id=\"\"]</span>\r\n<span style=\"font-size: 12pt;\"> [fusion_li_item icon=\"\"]Fridge &amp; Freezer Unit.[/fusion_li_item]\r\n</span><span style=\"font-size: 12pt;\">[fusion_li_item icon=\"\"]Microwave.[/fusion_li_item]\r\n</span><span style=\"font-size: 12pt;\">[fusion_li_item icon=\"\"]Electric Frying Pan[/fusion_li_item]\r\n</span><span style=\"font-size: 12pt;\">[fusion_li_item icon=\"\"]Toaster.[/fusion_li_item]\r\n</span><span style=\"font-size: 12pt;\">[fusion_li_item icon=\"\"]Iron &amp; Ironing Board.[/fusion_li_item]\r\n</span><span style=\"font-size: 12pt;\">[fusion_li_item icon=\"\"]Kettle &amp; Urn.[/fusion_li_item]\r\n</span><span style=\"font-size: 12pt;\">[fusion_li_item icon=\"\"]Gas Stove &amp; Oven.[/fusion_li_item]\r\n</span><span style=\"font-size: 12pt;\">[fusion_li_item icon=\"\"]Coffee Peculator.[/fusion_li_item]\r\n</span><span style=\"font-size: 12pt;\">[fusion_li_item icon=\"\"]Glasses.[/fusion_li_item]\r\n</span><span style=\"font-size: 12pt;\">[fusion_li_item icon=\"\"]Pot &amp; Pans.[/fusion_li_item]\r\n</span><span style=\"font-size: 12pt;\">[fusion_li_item icon=\"\"]Crockery &amp; Cutlery.[/fusion_li_item]</span>\r\n\r\n<span style=\"font-size: 12pt;\">[/fusion_checklist]</span>\r\n\r\n[/fusion_text][/fusion_builder_column][fusion_builder_column type=\"1_6\" layout=\"1_6\" last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding_top=\"\" padding_right=\"\" padding_bottom=\"\" padding_left=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\" min_height=\"\"][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container]', 'Facilities', '', 'inherit', 'closed', 'closed', '', '998-revision-v1', '', '', '2020-03-03 08:21:41', '2020-03-03 06:21:41', '', 998, 'https://msla.co.za/lodge/998-revision-v1/', 0, 'revision', '', 0),
(1411, 1, '2020-03-03 08:23:36', '2020-03-03 06:23:36', '[fusion_builder_container background_color=\"\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding_top=\"20\" padding_bottom=\"20\" padding_left=\"0\" padding_right=\"0\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][fusion_builder_row][fusion_builder_column type=\"1_1\" layout=\"1_1\" background_position=\"left top\" background_color=\"\" border_size=\"\" border_color=\"\" border_style=\"solid\" spacing=\"yes\" background_image=\"\" background_repeat=\"no-repeat\" padding_top=\"\" padding_right=\"\" padding_bottom=\"\" padding_left=\"\" margin_top=\"0px\" margin_bottom=\"0px\" class=\"\" id=\"\" animation_type=\"\" animation_speed=\"0.3\" animation_direction=\"left\" hide_on_mobile=\"no\" center_content=\"no\" min_height=\"none\" last=\"no\" hover_type=\"none\" link=\"\" border_position=\"all\"][fusion_title size=\"1\" content_align=\"right\" style_type=\"default\" sep_color=\"\" margin_top=\"\" margin_bottom=\"\" class=\"\" id=\"\"]Lodge Facilities &amp; Amenities[/fusion_title][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container hundred_percent=\"yes\" overflow=\"visible\"][fusion_builder_row][fusion_builder_column type=\"1_6\" layout=\"1_6\" last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding_top=\"\" padding_right=\"\" padding_bottom=\"\" padding_left=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\" min_height=\"\"][/fusion_builder_column][fusion_builder_column type=\"2_3\" layout=\"2_3\" last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding_top=\"\" padding_right=\"\" padding_bottom=\"\" padding_left=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\" min_height=\"\"][fusion_text columns=\"\" column_min_width=\"\" column_spacing=\"\" rule_style=\"default\" rule_size=\"\" rule_color=\"\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" class=\"\" id=\"\"]<h3><span style=\"text-align: justify; line-height: 1.5em; font-family: verdana, geneva; font-size: 18px;\">Rooms</span></h3><p><span style=\"font-size: 12pt;\">[fusion_checklist icon=\"fa-star-o\" iconcolor=\"\" circle=\"\" circlecolor=\"\" size=\"13px\" class=\"\" id=\"\"]</span><br /><span style=\"font-size: 12pt;\"> [fusion_li_item icon=\"\"]All Rooms are en-suite i.e. Hand Basin, Toilet, Shower.[/fusion_li_item]<br /></span><span style=\"font-size: 12pt;\">[fusion_li_item icon=\"\"]Wall to Wall Carpeting.[/fusion_li_item]<br /></span><span style=\"font-size: 12pt;\">[fusion_li_item icon=\"\"]Ceiling Fan.[/fusion_li_item]<br /></span><span style=\"font-size: 12pt;\">[fusion_li_item icon=\"\"]Wall Heater.[/fusion_li_item]<br /></span><span style=\"font-size: 12pt;\">[fusion_li_item icon=\"\"]Electrical Plug Sockets.[/fusion_li_item]<br /></span><span style=\"font-size: 12pt;\">[fusion_li_item icon=\"\"]Cupboard.[/fusion_li_item]<br />[fusion_li_item icon=\"\"]Bedside Lamps.[/fusion_li_item]</span><br /><span style=\"font-size: 12pt;\">[/fusion_checklist]</span></p>[/fusion_text][fusion_text columns=\"\" column_min_width=\"\" column_spacing=\"\" rule_style=\"default\" rule_size=\"\" rule_color=\"\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" class=\"\" id=\"\"]<h3><span style=\"text-align: justify; line-height: 1.5em; font-family: verdana, geneva; font-size: 18px;\">Beds</span></h3><p><span style=\"font-size: 12pt;\">[fusion_checklist icon=\"fa-star-o\" iconcolor=\"\" circle=\"\" circlecolor=\"\" size=\"13px\" class=\"\" id=\"\"]</span><br /><span style=\"font-size: 12pt;\">[fusion_li_item icon=\"\"]King or Queen Bed &amp; Mattress Protector.[/fusion_li_item]<br /></span><span style=\"font-size: 12pt;\">[fusion_li_item icon=\"\"]Electric Blankets.[/fusion_li_item]<br />[fusion_li_item icon=\"\"]100% Cotton Percale Fitted Sheet.[/fusion_li_item]<br /></span><span style=\"font-size: 12pt;\">[fusion_li_item icon=\"\"]100% Cotton Percale Flat Sheet.[/fusion_li_item]<br /></span><span style=\"font-size: 12pt;\">[fusion_li_item icon=\"\"]2x King Microfibre Pillows, Pillow Protectors &amp; 100% Cotton Percale Pillow Cases.[/fusion_li_item]<br />[fusion_li_item icon=\"\"]2x Standard Microfibre Pillows, Pillow Protectors &amp; 100% Cotton Percale Pillow Cases.[/fusion_li_item]<br /></span><span style=\"font-size: 12pt;\">[fusion_li_item icon=\"\"]Microfibre Duvet Inner.[/fusion_li_item]<br /></span><span style=\"font-size: 12pt;\">[fusion_li_item icon=\"\"]Duvet Cover.[/fusion_li_item]<br /></span><span style=\"font-size: 12pt;\">[fusion_li_item icon=\"\"]A Bed Blanket.[/fusion_li_item]<br /></span><span style=\"font-size: 12pt;\">[/fusion_checklist]</span></p>[/fusion_text][fusion_text columns=\"\" column_min_width=\"\" column_spacing=\"\" rule_style=\"default\" rule_size=\"\" rule_color=\"\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" class=\"\" id=\"\"]<h3><span style=\"text-align: justify; line-height: 1.5em; font-family: verdana, geneva; font-size: 18px;\">Kitchen</span></h3><p><span style=\"font-size: 12pt;\">[fusion_checklist icon=\"fa-star-o\" iconcolor=\"\" circle=\"\" circlecolor=\"\" size=\"13px\" class=\"\" id=\"\"]</span><br /><span style=\"font-size: 12pt;\"> [fusion_li_item icon=\"\"]Fridge &amp; Freezer Unit.[/fusion_li_item]<br /></span><span style=\"font-size: 12pt;\">[fusion_li_item icon=\"\"]Microwave.[/fusion_li_item]<br /></span><span style=\"font-size: 12pt;\">[fusion_li_item icon=\"\"]Electric Frying Pan[/fusion_li_item]<br /></span><span style=\"font-size: 12pt;\">[fusion_li_item icon=\"\"]Toaster.[/fusion_li_item]<br /></span><span style=\"font-size: 12pt;\">[fusion_li_item icon=\"\"]Iron &amp; Ironing Board.[/fusion_li_item]<br /></span><span style=\"font-size: 12pt;\">[fusion_li_item icon=\"\"]Kettle &amp; Urn.[/fusion_li_item]<br /></span><span style=\"font-size: 12pt;\">[fusion_li_item icon=\"\"]Gas Stove &amp; Oven.[/fusion_li_item]<br /></span><span style=\"font-size: 12pt;\">[fusion_li_item icon=\"\"]Coffee Peculator.[/fusion_li_item]<br /></span><span style=\"font-size: 12pt;\">[fusion_li_item icon=\"\"]Glasses.[/fusion_li_item]<br /></span><span style=\"font-size: 12pt;\">[fusion_li_item icon=\"\"]Pot &amp; Pans.[/fusion_li_item]<br /></span><span style=\"font-size: 12pt;\">[fusion_li_item icon=\"\"]Crockery &amp; Cutlery.[/fusion_li_item]</span></p><p><span style=\"font-size: 12pt;\">[/fusion_checklist]</span></p>[/fusion_text][/fusion_builder_column][fusion_builder_column type=\"1_6\" layout=\"1_6\" last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding_top=\"\" padding_right=\"\" padding_bottom=\"\" padding_left=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\" min_height=\"\"][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container]', 'Facilities', '', 'inherit', 'closed', 'closed', '', '998-revision-v1', '', '', '2020-03-03 08:23:36', '2020-03-03 06:23:36', '', 998, 'https://msla.co.za/lodge/998-revision-v1/', 0, 'revision', '', 0),
(1412, 1, '2020-03-04 08:52:52', '2020-03-04 06:52:52', '', 'Lodge', '', 'inherit', 'closed', 'closed', '', '192-autosave-v1', '', '', '2020-03-04 08:52:52', '2020-03-04 06:52:52', '', 192, 'https://msla.co.za/lodge/192-autosave-v1/', 0, 'revision', '', 0),
(1413, 1, '2020-03-04 09:26:17', '2020-03-04 07:26:17', '', 'IMG_20200302_145734', '', 'inherit', 'open', 'closed', '', 'img_20200302_145734', '', '', '2020-03-04 09:26:17', '2020-03-04 07:26:17', '', 192, 'https://msla.co.za/lodge/wp-content/uploads/2015/01/IMG_20200302_145734.jpg', 0, 'attachment', 'image/jpeg', 0),
(1414, 1, '2020-03-04 10:56:30', '2020-03-04 08:56:30', '[fusion_builder_container background_color=\"#f0f0ed\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"20\" padding_bottom=\"20\" padding_left=\"\" padding_right=\"\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][fusion_builder_row][fusion_builder_column type=\"1_2\" layout=\"1_2\" spacing=\"yes\" center_content=\"no\" link=\"\" target=\"_self\" min_height=\"\" hide_on_mobile=\"no\" class=\"\" id=\"\" background_image_id=\"\" background_color=\"\" background_image=\"\" background_position=\"left top\" background_repeat=\"no-repeat\" hover_type=\"none\" border_size=\"0\" border_color=\"\" border_style=\"solid\" border_position=\"all\" border_radius_top_left=\"\" border_radius_top_right=\"\" border_radius_bottom_left=\"\" border_radius_bottom_right=\"\" box_shadow=\"no\" box_shadow_vertical=\"\" box_shadow_horizontal=\"\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" box_shadow_color=\"\" box_shadow_style=\"\" padding_top=\"40px\" padding_right=\"\" padding_bottom=\"40px\" padding_left=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.1\" animation_offset=\"\" last=\"no\"][fusion_text]\r\n<h1 style=\"text-align: center;\">No Fancy Star Grading\r\nNo Room Service\r\nNo Bed Turn-downs\r\nNo Rose Petals in the Bath water</h1>\r\n<h1 style=\"text-align: center;\">... just old fashioned homely comforts</h1>\r\n[/fusion_text][/fusion_builder_column][fusion_builder_column type=\"1_2\" layout=\"1_2\" last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"\" padding_right=\"\" padding_bottom=\"\" padding_left=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\" min_height=\"\"][fusion_text columns=\"\" column_min_width=\"\" column_spacing=\"\" rule_style=\"default\" rule_size=\"\" rule_color=\"\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" class=\"\" id=\"\"]\r\n<h1 style=\"text-align: center;\">5 Bedroom Family Lodge</h1>\r\n<h3 style=\"text-align: justify;\">We are a four season lodge, because there’s always something to celebrate… We offer comfort, relaxation and privacy right in the heart of 1000 Hills. The Forest, the Gardens, the Atmosphere all speak to  Rest  &amp; Relaxation.</h3>\r\n[/fusion_text][fusion_tagline_box backgroundcolor=\"\" shadow=\"yes\" shadowopacity=\"0.70\" border=\"1\" bordercolor=\"\" highlightposition=\"none\" content_alignment=\"center\" link=\"http://msla.co.za/lodge/reservations\" button=\"Book Now!\" linktarget=\"_self\" modal=\"\" button_size=\"xlarge\" button_type=\"\" button_shape=\"square\" buttoncolor=\"default\" title=\"\" description=\"\" margin_top=\"\" margin_bottom=\"\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" class=\"\" id=\"\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"\"]\r\n<p style=\"text-align: center;\"><span style=\"text-decoration: underline; font-size: 24pt;\">Current Specials</span></p>\r\n<p style=\"text-align: center;\"><span style=\"font-size: 14pt;\">Book on-line - get 15% OF\r\n</span><span style=\"font-size: 14pt;\">Stay 3 days or more - get 25% OFF</span></p>\r\n[/fusion_tagline_box][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" menu_anchor=\"\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" publish_date=\"\" class=\"\" id=\"\" background_color=\"\" background_image=\"\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" video_mp4=\"\" video_webm=\"\" video_ogv=\"\" video_url=\"\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" video_preview_image=\"\" border_size=\"\" border_color=\"\" border_style=\"solid\" margin_top=\"\" margin_bottom=\"\" padding_top=\"\" padding_right=\"\" padding_bottom=\"\" padding_left=\"\"][fusion_builder_row][fusion_builder_column type=\"1_1\" spacing=\"\" center_content=\"no\" link=\"\" target=\"_self\" min_height=\"\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" class=\"\" id=\"\" background_color=\"\" background_image=\"\" background_image_id=\"\" background_position=\"left top\" background_repeat=\"no-repeat\" hover_type=\"none\" border_size=\"0\" border_color=\"\" border_style=\"solid\" border_position=\"all\" border_radius=\"\" box_shadow=\"no\" dimension_box_shadow=\"\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" box_shadow_color=\"\" box_shadow_style=\"\" padding_top=\"\" padding_right=\"\" padding_bottom=\"\" padding_left=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"\" last=\"no\"][fusion_fusionslider name=\"lodge\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" class=\"\" id=\"\" /][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container background_color=\"#f0f0ed\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"20\" padding_bottom=\"20\" padding_left=\"\" padding_right=\"\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][fusion_builder_row][fusion_builder_column type=\"1_2\" layout=\"1_2\" last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"\" padding_right=\"\" padding_bottom=\"\" padding_left=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\" min_height=\"\"][fusion_text]\r\n<h3 style=\"text-align: justify;\">Set in the rolling peaks and valleys of a thousand hills surrounded by a canopy of indigenous trees, you will find that horses still have right of way, we certainly offer the best of both worlds, farm and charm coupled with modern amenities that will have you feeling relaxed and rejuvenated.</h3>\r\n<h3 style=\"text-align: justify;\">We know that sometimes you are searching for a romantic getaway or maybe a few days away with old friends. Other times you are searching for a place to host a weekend, family reunion or a business retreat. In addition to nightly room rentals, our lodge is also available for meetings, retreats  and makes the perfect place for a wedding party to stay together and get ready for the big day. Regardless, with our five comfortable and cozy guest bedrooms, multiple garden spaces and hideaways, and a  large private deck  where you can take a nap or read a book we definitely have the room for you!</h3>\r\n<h3 style=\"text-align: justify;\">Evenings are quiet and peaceful taking you far away from the business of city life. This is a unique and memorable country experience. We look forward to having you as a guest!</h3>\r\n[/fusion_text][/fusion_builder_column][fusion_builder_column type=\"1_2\" layout=\"1_2\" last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"\" padding_right=\"\" padding_bottom=\"\" padding_left=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\" min_height=\"\"][fusion_text]\r\n<h3 style=\"text-align: justify;\">Our lodge has been in our family for years and has recently been beautifully renovated. Five rooms all with en-suite showers lead off your own large central lounge, featuring a 36 foot high vaulted ceiling, offering spacious living, dining, and a bar/conversational lounge area which includes a fitted kitchenette, all adding to a sense of homely comfort. Sumptuous meals can be provided on request and served on the bottom deck at the swimming pool.</h3>\r\n<h3 style=\"text-align: justify;\">Be lulled to sleep by the sound of the waterfall and tinkling stream just outside your window, waking from a peaceful night\'s sleep in a pillow-top bed dressed in luxurious linens to coddle you in ultimate comfort.</h3>\r\n<h3 style=\"text-align: justify;\">Our property boasts many different species of birds and animals. We have a resident otter, a family of wild bush pigs,  a family of rock rabbits, porcupine, little blue duikers, a variety of different frogs and an abundance of bird life, including the occasional snakes that pass through!</h3>\r\n[/fusion_text][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container background_color=\"#f0f0ed\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"20\" padding_bottom=\"20\" padding_left=\"\" padding_right=\"\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][fusion_builder_row][fusion_builder_column type=\"1_1\" layout=\"1_1\" background_position=\"left top\" background_color=\"\" border_size=\"\" border_color=\"\" border_style=\"solid\" spacing=\"yes\" background_image=\"\" background_repeat=\"no-repeat\" padding_top=\"\" padding_right=\"\" padding_bottom=\"\" padding_left=\"\" margin_top=\"0px\" margin_bottom=\"0px\" class=\"\" id=\"\" animation_type=\"\" animation_speed=\"0.3\" animation_direction=\"left\" hide_on_mobile=\"no\" center_content=\"no\" min_height=\"none\" last=\"no\" hover_type=\"none\" link=\"\" border_position=\"all\"][fusion_text]\r\n<h1 style=\"text-align: center;\">Gallery</h1>\r\n[/fusion_text][fusion_separator style_type=\"single solid\" top_margin=\"\" bottom_margin=\"40\" sep_color=\"#000000\" border_size=\"\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"170px\" alignment=\"\" class=\"\" id=\"\" /][/fusion_builder_column][fusion_builder_column type=\"1_6\" layout=\"1_6\" last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding_top=\"\" padding_right=\"\" padding_bottom=\"\" padding_left=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\" min_height=\"\"][/fusion_builder_column][fusion_builder_column type=\"2_3\" layout=\"2_3\" last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding_top=\"\" padding_right=\"\" padding_bottom=\"\" padding_left=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\" min_height=\"\"][fusion_text]\r\n<h3 style=\"text-align: justify;\">The Lodge is open, spacious, comfortable and homely. During hot summer days, sit and bask in the sun on the deck  with one of our  picnic specials. In winter, snuggle up with a good book or challenge one another to a friendly board game in the glassed nook area .</h3>\r\n[/fusion_text][/fusion_builder_column][fusion_builder_column type=\"1_6\" layout=\"1_6\" last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding_top=\"\" padding_right=\"\" padding_bottom=\"\" padding_left=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\" min_height=\"\"][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container background_color=\"#f0f0ed\" background_image=\"http://localhost/assagaylodge/wp-content/uploads/2015/01/Wood_Texture.jpg\" background_parallax=\"fixed\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"30\" padding_bottom=\"10\" padding_left=\"0\" padding_right=\"0\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][fusion_builder_row][fusion_builder_column type=\"1_1\" layout=\"1_1\" background_position=\"left top\" background_color=\"\" border_size=\"\" border_color=\"\" border_style=\"solid\" spacing=\"yes\" background_image=\"\" background_repeat=\"no-repeat\" padding_top=\"\" padding_right=\"\" padding_bottom=\"\" padding_left=\"\" margin_top=\"0px\" margin_bottom=\"0px\" class=\"\" id=\"\" animation_type=\"\" animation_speed=\"0.3\" animation_direction=\"left\" hide_on_mobile=\"no\" center_content=\"no\" min_height=\"none\" last=\"no\" hover_type=\"none\" link=\"\" border_position=\"all\"][fusion_portfolio layout=\"grid\" picture_size=\"auto\" text_layout=\"no_text\" filters=\"no\" columns=\"3\" column_spacing=\"12\" cat_slug=\"the-lodge\" exclude_cats=\"\" number_posts=\"9\" offset=\"\" excerpt_length=\"35\" strip_html=\"yes\" carousel_layout=\"title_on_rollover\" scroll_items=\"\" autoplay=\"no\" show_nav=\"yes\" mouse_scroll=\"no\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\" /][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container background_color=\"#f0f0ed\" background_image=\"\" background_parallax=\"fixed\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"20\" padding_bottom=\"20\" padding_left=\"\" padding_right=\"\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][fusion_builder_row][fusion_builder_column type=\"1_1\" layout=\"1_1\" background_position=\"left top\" background_color=\"\" border_size=\"\" border_color=\"\" border_style=\"solid\" spacing=\"yes\" background_image=\"\" background_repeat=\"no-repeat\" padding_top=\"\" padding_right=\"\" padding_bottom=\"\" padding_left=\"\" margin_top=\"0px\" margin_bottom=\"0px\" class=\"\" id=\"\" animation_type=\"\" animation_speed=\"0.3\" animation_direction=\"left\" hide_on_mobile=\"no\" center_content=\"no\" min_height=\"none\" last=\"no\" hover_type=\"none\" link=\"\" border_position=\"all\"][fusion_text]\r\n<h1 style=\"text-align: center;\">BEDROOMS</h1>\r\n[/fusion_text][fusion_separator style_type=\"single solid\" top_margin=\"\" bottom_margin=\"20\" sep_color=\"#000000\" border_size=\"\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"170px\" alignment=\"\" class=\"\" id=\"\" /][/fusion_builder_column][fusion_builder_column type=\"1_6\" layout=\"1_6\" last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding_top=\"\" padding_right=\"\" padding_bottom=\"\" padding_left=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\" min_height=\"\"][/fusion_builder_column][fusion_builder_column type=\"2_3\" layout=\"2_3\" last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding_top=\"\" padding_right=\"\" padding_bottom=\"\" padding_left=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\" min_height=\"\"][fusion_text]\r\n<h3 style=\"text-align: justify;\">When it comes to our bedrooms we’re proud to say we offer something a little more special. One of five  lovingly and tastefully decorated guest rooms. Soft gray decor soothes the senses providing a peaceful, blissfully comfortable rest from your travels and hectic lives.</h3>\r\n<h3 style=\"text-align: justify;\">Our  bedrooms are spacious, clean, comfortable all en-suite, equipped with either king size or queen size beds. Each room sleeps two guests. The rooms have high ceilings, wall heaters &amp; ceiling fans. Beds all have electric blankets in Winter, 100% cotton percale sheets and thick hyper allergenic microfiber duvets and pillows. All guest rooms are cleaned with organic and green products. Amenities include hairdryers in each room. Three rooms feature King-sized beds  of which two can be  split into two single beds. Two  rooms can therefore be changed into a twin room upon request. Two rooms feature a Queen-sized double bed. These beds cannot be split into twin beds.</h3>\r\n[/fusion_text][/fusion_builder_column][fusion_builder_column type=\"1_6\" layout=\"1_6\" last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding_top=\"\" padding_right=\"\" padding_bottom=\"\" padding_left=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\" min_height=\"\"][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container background_color=\"\" background_image=\"http://localhost/assagaylodge/wp-content/uploads/2015/01/DSC01516-1148-x-764.jpg\" background_parallax=\"fixed\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"center center\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"20\" padding_bottom=\"20\" padding_left=\"0\" padding_right=\"0\" hundred_percent=\"no\" equal_height_columns=\"yes\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][fusion_builder_row][fusion_builder_column type=\"1_1\" layout=\"1_1\" background_position=\"left top\" background_color=\"\" border_size=\"\" border_color=\"\" border_style=\"solid\" spacing=\"yes\" background_image=\"\" background_repeat=\"no-repeat\" padding_top=\"\" padding_right=\"\" padding_bottom=\"\" padding_left=\"\" margin_top=\"0px\" margin_bottom=\"0px\" class=\"\" id=\"\" animation_type=\"\" animation_speed=\"0.3\" animation_direction=\"left\" hide_on_mobile=\"no\" center_content=\"no\" min_height=\"none\" last=\"no\" hover_type=\"none\" link=\"\" border_position=\"all\"][fusion_portfolio layout=\"grid\" picture_size=\"auto\" text_layout=\"no_text\" filters=\"no\" columns=\"3\" column_spacing=\"12\" cat_slug=\"bedrooms\" exclude_cats=\"\" number_posts=\"6\" offset=\"\" excerpt_length=\"35\" strip_html=\"yes\" carousel_layout=\"title_on_rollover\" scroll_items=\"\" autoplay=\"no\" show_nav=\"yes\" mouse_scroll=\"no\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\" /][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container background_color=\"#f0f0ed\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"20\" padding_bottom=\"20\" padding_left=\"0\" padding_right=\"0\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][fusion_builder_row][fusion_builder_column type=\"1_1\" layout=\"1_1\" background_position=\"left top\" background_color=\"\" border_size=\"\" border_color=\"\" border_style=\"solid\" spacing=\"yes\" background_image=\"\" background_repeat=\"no-repeat\" padding_top=\"\" padding_right=\"\" padding_bottom=\"\" padding_left=\"\" margin_top=\"0px\" margin_bottom=\"0px\" class=\"\" id=\"\" animation_type=\"\" animation_speed=\"0.3\" animation_direction=\"left\" hide_on_mobile=\"no\" center_content=\"no\" min_height=\"none\" last=\"no\" hover_type=\"none\" link=\"\" border_position=\"all\"][fusion_text]\r\n<h1 style=\"text-align: center;\">GARDENS</h1>\r\n[/fusion_text][fusion_separator style_type=\"single solid\" top_margin=\"\" bottom_margin=\"20\" sep_color=\"#000000\" border_size=\"\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"170px\" alignment=\"\" class=\"\" id=\"\" /][/fusion_builder_column][fusion_builder_column type=\"1_6\" layout=\"1_6\" last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding_top=\"\" padding_right=\"\" padding_bottom=\"\" padding_left=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\" min_height=\"\"][/fusion_builder_column][fusion_builder_column type=\"2_3\" layout=\"2_3\" last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding_top=\"\" padding_right=\"\" padding_bottom=\"\" padding_left=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\" min_height=\"\"][fusion_text]\r\n<h3 style=\"text-align: justify;\">The garden is large and offers many secluded spots to lose yourself in a book with a glass of wine underneath the shade of a tree, listening to the sounds of the birds and smelling the beautiful flowers.</h3>\r\n[/fusion_text][/fusion_builder_column][fusion_builder_column type=\"1_6\" layout=\"1_6\" last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding_top=\"\" padding_right=\"\" padding_bottom=\"\" padding_left=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\" min_height=\"\"][/fusion_builder_column][fusion_builder_column type=\"1_1\" layout=\"1_1\" background_position=\"left top\" background_color=\"\" border_size=\"\" border_color=\"\" border_style=\"solid\" spacing=\"yes\" background_image=\"\" background_repeat=\"no-repeat\" padding_top=\"\" padding_right=\"\" padding_bottom=\"\" padding_left=\"\" margin_top=\"0px\" margin_bottom=\"0px\" class=\"\" id=\"\" animation_type=\"\" animation_speed=\"0.3\" animation_direction=\"left\" hide_on_mobile=\"no\" center_content=\"no\" min_height=\"none\" last=\"no\" hover_type=\"none\" link=\"\" border_position=\"all\"][fusion_portfolio layout=\"grid\" picture_size=\"auto\" text_layout=\"no_text\" filters=\"no\" columns=\"3\" column_spacing=\"12\" cat_slug=\"gardens\" exclude_cats=\"\" number_posts=\"9\" offset=\"\" excerpt_length=\"35\" strip_html=\"yes\" carousel_layout=\"title_on_rollover\" scroll_items=\"\" autoplay=\"no\" show_nav=\"yes\" mouse_scroll=\"no\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\" /][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container background_color=\"#ffffff\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"65px\" padding_bottom=\"65px\" padding_left=\"\" padding_right=\"\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][fusion_builder_row][fusion_builder_column type=\"1_1\" layout=\"1_1\" background_position=\"left top\" background_color=\"\" border_size=\"\" border_color=\"\" border_style=\"solid\" spacing=\"yes\" background_image=\"\" background_repeat=\"no-repeat\" padding_top=\"\" padding_right=\"\" padding_bottom=\"\" padding_left=\"\" margin_top=\"0px\" margin_bottom=\"0px\" class=\"\" id=\"\" animation_type=\"\" animation_speed=\"0.3\" animation_direction=\"left\" hide_on_mobile=\"no\" center_content=\"no\" min_height=\"none\" last=\"no\" hover_type=\"none\" link=\"\" border_position=\"all\"][fusion_button link=\"https://msla.co.za/lodge/reservations/\" color=\"default\" size=\"xlarge\" stretch=\"default\" type=\"3d\" shape=\"round\" target=\"_self\" title=\"\" button_gradient_top_color=\"#f0f0ed\" button_gradient_bottom_color=\"#f0f0ed\" button_gradient_top_color_hover=\"#6666a4\" button_gradient_bottom_color_hover=\"#6666a4\" accent_color=\"#ffffff\" accent_hover_color=\"#ffffff\" bevel_color=\"\" border_width=\"0px\" icon=\"\" icon_position=\"left\" icon_divider=\"no\" modal=\"\" animation_type=\"0\" animation_direction=\"left\" animation_speed=\"1\" animation_offset=\"\" alignment=\"center\" class=\"\" id=\"\"]Make A Reservation Enquiry[/fusion_button][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container]', 'Home', '', 'inherit', 'closed', 'closed', '', '7-revision-v1', '', '', '2020-03-04 10:56:30', '2020-03-04 08:56:30', '', 7, 'https://msla.co.za/lodge/7-revision-v1/', 0, 'revision', '', 0);
INSERT INTO `wp_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(1415, 1, '2020-03-04 11:00:45', '2020-03-04 09:00:45', '[fusion_builder_container background_color=\"#f0f0ed\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"20\" padding_bottom=\"20\" padding_left=\"\" padding_right=\"\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][fusion_builder_row][fusion_builder_column type=\"1_2\" layout=\"1_2\" spacing=\"yes\" center_content=\"no\" link=\"\" target=\"_self\" min_height=\"\" hide_on_mobile=\"no\" class=\"\" id=\"\" background_image_id=\"\" background_color=\"\" background_image=\"\" background_position=\"left top\" background_repeat=\"no-repeat\" hover_type=\"none\" border_size=\"0\" border_color=\"\" border_style=\"solid\" border_position=\"all\" border_radius_top_left=\"\" border_radius_top_right=\"\" border_radius_bottom_left=\"\" border_radius_bottom_right=\"\" box_shadow=\"no\" box_shadow_vertical=\"\" box_shadow_horizontal=\"\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" box_shadow_color=\"\" box_shadow_style=\"\" padding_top=\"40px\" padding_right=\"\" padding_bottom=\"40px\" padding_left=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.1\" animation_offset=\"\" last=\"no\"][fusion_text]\r\n<h1 style=\"text-align: center;\">No Fancy Star Grading\r\nNo Room Service\r\nNo Bed Turn-downs\r\nNo Rose Petals in the Bath water</h1>\r\n<h1 style=\"text-align: center;\">... just old fashioned homely comforts</h1>\r\n[/fusion_text][/fusion_builder_column][fusion_builder_column type=\"1_2\" layout=\"1_2\" last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"\" padding_right=\"\" padding_bottom=\"\" padding_left=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\" min_height=\"\"][fusion_text columns=\"\" column_min_width=\"\" column_spacing=\"\" rule_style=\"default\" rule_size=\"\" rule_color=\"\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" class=\"\" id=\"\"]\r\n<h1 style=\"text-align: center;\">5 Bedroom Family Lodge</h1>\r\n<h3 style=\"text-align: justify;\">We are a four season lodge, because there’s always something to celebrate… We offer comfort, relaxation and privacy right in the heart of 1000 Hills. The Forest, the Gardens, the Atmosphere all speak to  Rest  &amp; Relaxation.</h3>\r\n[/fusion_text][fusion_tagline_box backgroundcolor=\"\" shadow=\"yes\" shadowopacity=\"0.70\" border=\"1\" bordercolor=\"\" highlightposition=\"none\" content_alignment=\"center\" link=\"http://msla.co.za/lodge/reservations\" button=\"Book Now!\" linktarget=\"_self\" modal=\"\" button_size=\"xlarge\" button_type=\"\" button_shape=\"square\" buttoncolor=\"default\" title=\"\" description=\"\" margin_top=\"\" margin_bottom=\"\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" class=\"\" id=\"\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"\"]\r\n<p style=\"text-align: center;\"><span style=\"text-decoration: underline; font-size: 24pt;\">Current Specials</span></p>\r\n<p style=\"text-align: center;\"><span style=\"font-size: 14pt;\">Book on-line - get 15% OF\r\n</span><span style=\"font-size: 14pt;\">Stay 3 days or more - get 25% OFF</span></p>\r\n[/fusion_tagline_box][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" menu_anchor=\"\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" publish_date=\"\" class=\"\" id=\"\" background_color=\"\" background_image=\"\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" video_mp4=\"\" video_webm=\"\" video_ogv=\"\" video_url=\"\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" video_preview_image=\"\" border_size=\"\" border_color=\"\" border_style=\"solid\" margin_top=\"\" margin_bottom=\"\" padding_top=\"\" padding_right=\"\" padding_bottom=\"\" padding_left=\"\"][fusion_builder_row][fusion_builder_column type=\"1_1\" layout=\"1_1\" spacing=\"\" center_content=\"no\" link=\"\" target=\"_self\" min_height=\"\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" class=\"\" id=\"\" background_color=\"\" background_image=\"\" background_image_id=\"\" background_position=\"left top\" background_repeat=\"no-repeat\" hover_type=\"none\" border_size=\"0\" border_color=\"\" border_style=\"solid\" border_position=\"all\" border_radius=\"\" box_shadow=\"no\" dimension_box_shadow=\"\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" box_shadow_color=\"\" box_shadow_style=\"\" padding_top=\"\" padding_right=\"\" padding_bottom=\"\" padding_left=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"\" last=\"no\"][fusion_fusionslider name=\"lodge\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" class=\"\" id=\"\" /][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container background_color=\"#f0f0ed\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"20\" padding_bottom=\"20\" padding_left=\"\" padding_right=\"\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][fusion_builder_row][fusion_builder_column type=\"1_2\" layout=\"1_2\" last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"\" padding_right=\"\" padding_bottom=\"\" padding_left=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\" min_height=\"\"][fusion_text]\r\n<h3 style=\"text-align: justify;\">Set in the rolling peaks and valleys of a thousand hills surrounded by a canopy of indigenous trees, you will find that horses still have right of way, we certainly offer the best of both worlds, farm and charm coupled with modern amenities that will have you feeling relaxed and rejuvenated.</h3>\r\n<h3 style=\"text-align: justify;\">We know that sometimes you are searching for a romantic getaway or maybe a few days away with old friends. Other times you are searching for a place to host a weekend, family reunion or a business retreat. In addition to nightly room rentals, our lodge is also available for meetings, retreats  and makes the perfect place for a wedding party to stay together and get ready for the big day. Regardless, with our five comfortable and cozy guest bedrooms, multiple garden spaces and hideaways, and a  large private deck  where you can take a nap or read a book we definitely have the room for you!</h3>\r\n<h3 style=\"text-align: justify;\">Evenings are quiet and peaceful taking you far away from the business of city life. This is a unique and memorable country experience. We look forward to having you as a guest!</h3>\r\n[/fusion_text][/fusion_builder_column][fusion_builder_column type=\"1_2\" layout=\"1_2\" last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"\" padding_right=\"\" padding_bottom=\"\" padding_left=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\" min_height=\"\"][fusion_text]\r\n<h3 style=\"text-align: justify;\">Our lodge has been in our family for years and has recently been beautifully renovated. Five rooms all with en-suite showers lead off your own large central lounge, featuring a 36 foot high vaulted ceiling, offering spacious living, dining, and a bar/conversational lounge area which includes a fitted kitchenette, all adding to a sense of homely comfort. Sumptuous meals can be provided on request and served on the bottom deck at the swimming pool.</h3>\r\n<h3 style=\"text-align: justify;\">Be lulled to sleep by the sound of the waterfall and tinkling stream just outside your window, waking from a peaceful night\'s sleep in a pillow-top bed dressed in luxurious linens to coddle you in ultimate comfort.</h3>\r\n<h3 style=\"text-align: justify;\">Our property boasts many different species of birds and animals. We have a resident otter, a family of wild bush pigs,  a family of rock rabbits, porcupine, little blue duikers, a variety of different frogs and an abundance of bird life, including the occasional snakes that pass through!</h3>\r\n[/fusion_text][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container background_color=\"#f0f0ed\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"20\" padding_bottom=\"20\" padding_left=\"\" padding_right=\"\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][fusion_builder_row][fusion_builder_column type=\"1_1\" layout=\"1_1\" background_position=\"left top\" background_color=\"\" border_size=\"\" border_color=\"\" border_style=\"solid\" spacing=\"yes\" background_image=\"\" background_repeat=\"no-repeat\" padding_top=\"\" padding_right=\"\" padding_bottom=\"\" padding_left=\"\" margin_top=\"0px\" margin_bottom=\"0px\" class=\"\" id=\"\" animation_type=\"\" animation_speed=\"0.3\" animation_direction=\"left\" hide_on_mobile=\"no\" center_content=\"no\" min_height=\"none\" last=\"no\" hover_type=\"none\" link=\"\" border_position=\"all\"][fusion_text]\r\n<h1 style=\"text-align: center;\">Gallery</h1>\r\n[/fusion_text][fusion_separator style_type=\"single solid\" top_margin=\"\" bottom_margin=\"40\" sep_color=\"#000000\" border_size=\"\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"170px\" alignment=\"\" class=\"\" id=\"\" /][/fusion_builder_column][fusion_builder_column type=\"1_6\" layout=\"1_6\" last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding_top=\"\" padding_right=\"\" padding_bottom=\"\" padding_left=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\" min_height=\"\"][/fusion_builder_column][fusion_builder_column type=\"2_3\" layout=\"2_3\" last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding_top=\"\" padding_right=\"\" padding_bottom=\"\" padding_left=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\" min_height=\"\"][fusion_text]\r\n<h3 style=\"text-align: justify;\">The Lodge is open, spacious, comfortable and homely. During hot summer days, sit and bask in the sun on the deck  with one of our  picnic specials. In winter, snuggle up with a good book or challenge one another to a friendly board game in the glassed nook area .</h3>\r\n[/fusion_text][/fusion_builder_column][fusion_builder_column type=\"1_6\" layout=\"1_6\" last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding_top=\"\" padding_right=\"\" padding_bottom=\"\" padding_left=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\" min_height=\"\"][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container background_color=\"#f0f0ed\" background_image=\"http://localhost/assagaylodge/wp-content/uploads/2015/01/Wood_Texture.jpg\" background_parallax=\"fixed\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"30\" padding_bottom=\"10\" padding_left=\"0\" padding_right=\"0\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][fusion_builder_row][fusion_builder_column type=\"1_1\" layout=\"1_1\" background_position=\"left top\" background_color=\"\" border_size=\"\" border_color=\"\" border_style=\"solid\" spacing=\"yes\" background_image=\"\" background_repeat=\"no-repeat\" padding_top=\"\" padding_right=\"\" padding_bottom=\"\" padding_left=\"\" margin_top=\"0px\" margin_bottom=\"0px\" class=\"\" id=\"\" animation_type=\"\" animation_speed=\"0.3\" animation_direction=\"left\" hide_on_mobile=\"no\" center_content=\"no\" min_height=\"none\" last=\"no\" hover_type=\"none\" link=\"\" border_position=\"all\"][fusion_portfolio layout=\"grid\" picture_size=\"auto\" text_layout=\"no_text\" filters=\"no\" columns=\"3\" column_spacing=\"12\" cat_slug=\"the-lodge\" exclude_cats=\"\" number_posts=\"9\" offset=\"\" excerpt_length=\"35\" strip_html=\"yes\" carousel_layout=\"title_on_rollover\" scroll_items=\"\" autoplay=\"no\" show_nav=\"yes\" mouse_scroll=\"no\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\" /][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container background_color=\"#f0f0ed\" background_image=\"\" background_parallax=\"fixed\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"20\" padding_bottom=\"20\" padding_left=\"\" padding_right=\"\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][fusion_builder_row][fusion_builder_column type=\"1_1\" layout=\"1_1\" background_position=\"left top\" background_color=\"\" border_size=\"\" border_color=\"\" border_style=\"solid\" spacing=\"yes\" background_image=\"\" background_repeat=\"no-repeat\" padding_top=\"\" padding_right=\"\" padding_bottom=\"\" padding_left=\"\" margin_top=\"0px\" margin_bottom=\"0px\" class=\"\" id=\"\" animation_type=\"\" animation_speed=\"0.3\" animation_direction=\"left\" hide_on_mobile=\"no\" center_content=\"no\" min_height=\"none\" last=\"no\" hover_type=\"none\" link=\"\" border_position=\"all\"][fusion_text]\r\n<h1 style=\"text-align: center;\">BEDROOMS</h1>\r\n[/fusion_text][fusion_separator style_type=\"single solid\" top_margin=\"\" bottom_margin=\"20\" sep_color=\"#000000\" border_size=\"\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"170px\" alignment=\"\" class=\"\" id=\"\" /][/fusion_builder_column][fusion_builder_column type=\"1_6\" layout=\"1_6\" last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding_top=\"\" padding_right=\"\" padding_bottom=\"\" padding_left=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\" min_height=\"\"][/fusion_builder_column][fusion_builder_column type=\"2_3\" layout=\"2_3\" last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding_top=\"\" padding_right=\"\" padding_bottom=\"\" padding_left=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\" min_height=\"\"][fusion_text]\r\n<h3 style=\"text-align: justify;\">When it comes to our bedrooms we’re proud to say we offer something a little more special. One of five  lovingly and tastefully decorated guest rooms. Soft gray decor soothes the senses providing a peaceful, blissfully comfortable rest from your travels and hectic lives.</h3>\r\n<h3 style=\"text-align: justify;\">Our  bedrooms are spacious, clean, comfortable all en-suite, equipped with either king size or queen size beds. Each room sleeps two guests. The rooms have high ceilings, wall heaters &amp; ceiling fans. Beds all have electric blankets in Winter, 100% cotton percale sheets and thick hyper allergenic microfiber duvets and pillows. All guest rooms are cleaned with organic and green products. Amenities include hairdryers in each room. Three rooms feature King-sized beds  of which two can be  split into two single beds. Two  rooms can therefore be changed into a twin room upon request. Two rooms feature a Queen-sized double bed. These beds cannot be split into twin beds.</h3>\r\n[/fusion_text][/fusion_builder_column][fusion_builder_column type=\"1_6\" layout=\"1_6\" last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding_top=\"\" padding_right=\"\" padding_bottom=\"\" padding_left=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\" min_height=\"\"][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container background_color=\"\" background_image=\"http://localhost/assagaylodge/wp-content/uploads/2015/01/DSC01516-1148-x-764.jpg\" background_parallax=\"fixed\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"center center\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"20\" padding_bottom=\"20\" padding_left=\"0\" padding_right=\"0\" hundred_percent=\"no\" equal_height_columns=\"yes\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][fusion_builder_row][fusion_builder_column type=\"1_1\" layout=\"1_1\" background_position=\"left top\" background_color=\"\" border_size=\"\" border_color=\"\" border_style=\"solid\" spacing=\"yes\" background_image=\"\" background_repeat=\"no-repeat\" padding_top=\"\" padding_right=\"\" padding_bottom=\"\" padding_left=\"\" margin_top=\"0px\" margin_bottom=\"0px\" class=\"\" id=\"\" animation_type=\"\" animation_speed=\"0.3\" animation_direction=\"left\" hide_on_mobile=\"no\" center_content=\"no\" min_height=\"none\" last=\"no\" hover_type=\"none\" link=\"\" border_position=\"all\"][fusion_portfolio layout=\"grid\" picture_size=\"auto\" text_layout=\"no_text\" filters=\"no\" columns=\"3\" column_spacing=\"12\" cat_slug=\"bedrooms\" exclude_cats=\"\" number_posts=\"6\" offset=\"\" excerpt_length=\"35\" strip_html=\"yes\" carousel_layout=\"title_on_rollover\" scroll_items=\"\" autoplay=\"no\" show_nav=\"yes\" mouse_scroll=\"no\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\" /][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container background_color=\"#f0f0ed\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"20\" padding_bottom=\"20\" padding_left=\"0\" padding_right=\"0\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][fusion_builder_row][fusion_builder_column type=\"1_1\" layout=\"1_1\" background_position=\"left top\" background_color=\"\" border_size=\"\" border_color=\"\" border_style=\"solid\" spacing=\"yes\" background_image=\"\" background_repeat=\"no-repeat\" padding_top=\"\" padding_right=\"\" padding_bottom=\"\" padding_left=\"\" margin_top=\"0px\" margin_bottom=\"0px\" class=\"\" id=\"\" animation_type=\"\" animation_speed=\"0.3\" animation_direction=\"left\" hide_on_mobile=\"no\" center_content=\"no\" min_height=\"none\" last=\"no\" hover_type=\"none\" link=\"\" border_position=\"all\"][fusion_text]\r\n<h1 style=\"text-align: center;\">GARDENS</h1>\r\n[/fusion_text][fusion_separator style_type=\"single solid\" top_margin=\"\" bottom_margin=\"20\" sep_color=\"#000000\" border_size=\"\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"170px\" alignment=\"\" class=\"\" id=\"\" /][/fusion_builder_column][fusion_builder_column type=\"1_6\" layout=\"1_6\" last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding_top=\"\" padding_right=\"\" padding_bottom=\"\" padding_left=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\" min_height=\"\"][/fusion_builder_column][fusion_builder_column type=\"2_3\" layout=\"2_3\" last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding_top=\"\" padding_right=\"\" padding_bottom=\"\" padding_left=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\" min_height=\"\"][fusion_text]\r\n<h3 style=\"text-align: justify;\">The garden is large and offers many secluded spots to lose yourself in a book with a glass of wine underneath the shade of a tree, listening to the sounds of the birds and smelling the beautiful flowers.</h3>\r\n[/fusion_text][/fusion_builder_column][fusion_builder_column type=\"1_6\" layout=\"1_6\" last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding_top=\"\" padding_right=\"\" padding_bottom=\"\" padding_left=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\" min_height=\"\"][/fusion_builder_column][fusion_builder_column type=\"1_1\" layout=\"1_1\" background_position=\"left top\" background_color=\"\" border_size=\"\" border_color=\"\" border_style=\"solid\" spacing=\"yes\" background_image=\"\" background_repeat=\"no-repeat\" padding_top=\"\" padding_right=\"\" padding_bottom=\"\" padding_left=\"\" margin_top=\"0px\" margin_bottom=\"0px\" class=\"\" id=\"\" animation_type=\"\" animation_speed=\"0.3\" animation_direction=\"left\" hide_on_mobile=\"no\" center_content=\"no\" min_height=\"none\" last=\"no\" hover_type=\"none\" link=\"\" border_position=\"all\"][fusion_portfolio layout=\"grid\" picture_size=\"auto\" text_layout=\"no_text\" filters=\"no\" columns=\"3\" column_spacing=\"12\" cat_slug=\"gardens\" exclude_cats=\"\" number_posts=\"9\" offset=\"\" excerpt_length=\"35\" strip_html=\"yes\" carousel_layout=\"title_on_rollover\" scroll_items=\"\" autoplay=\"no\" show_nav=\"yes\" mouse_scroll=\"no\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\" /][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container background_color=\"#ffffff\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"65px\" padding_bottom=\"65px\" padding_left=\"\" padding_right=\"\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][fusion_builder_row][fusion_builder_column type=\"1_1\" layout=\"1_1\" background_position=\"left top\" background_color=\"\" border_size=\"\" border_color=\"\" border_style=\"solid\" spacing=\"yes\" background_image=\"\" background_repeat=\"no-repeat\" padding_top=\"\" padding_right=\"\" padding_bottom=\"\" padding_left=\"\" margin_top=\"0px\" margin_bottom=\"0px\" class=\"\" id=\"\" animation_type=\"\" animation_speed=\"0.3\" animation_direction=\"left\" hide_on_mobile=\"no\" center_content=\"no\" min_height=\"none\" last=\"no\" hover_type=\"none\" link=\"\" border_position=\"all\"][fusion_button link=\"https://msla.co.za/lodge/reservations/\" color=\"default\" size=\"xlarge\" stretch=\"default\" type=\"3d\" shape=\"round\" target=\"_self\" title=\"\" button_gradient_top_color=\"#f0f0ed\" button_gradient_bottom_color=\"#f0f0ed\" button_gradient_top_color_hover=\"#6666a4\" button_gradient_bottom_color_hover=\"#6666a4\" accent_color=\"#ffffff\" accent_hover_color=\"#ffffff\" bevel_color=\"\" border_width=\"0px\" icon=\"\" icon_position=\"left\" icon_divider=\"no\" modal=\"\" animation_type=\"0\" animation_direction=\"left\" animation_speed=\"1\" animation_offset=\"\" alignment=\"center\" class=\"\" id=\"\"]Make A Reservation Enquiry[/fusion_button][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container]', 'Home', '', 'inherit', 'closed', 'closed', '', '7-revision-v1', '', '', '2020-03-04 11:00:45', '2020-03-04 09:00:45', '', 7, 'https://msla.co.za/lodge/7-revision-v1/', 0, 'revision', '', 0),
(1416, 1, '2020-03-04 11:13:10', '2020-03-04 09:13:10', '', 'The Lodge', '', 'publish', 'closed', 'closed', '', 'about-3', '', '', '2020-03-04 11:13:10', '2020-03-04 09:13:10', '', 0, 'https://msla.co.za/lodge/?post_type=slide&#038;p=1416', 0, 'slide', '', 0),
(1418, 1, '2020-03-04 11:11:41', '2020-03-04 09:11:41', '', 'IMG_20200301_163055', '', 'inherit', 'open', 'closed', '', 'img_20200301_163055', '', '', '2020-03-04 11:11:41', '2020-03-04 09:11:41', '', 0, 'https://msla.co.za/lodge/wp-content/uploads/2020/03/IMG_20200301_163055.jpg', 0, 'attachment', 'image/jpeg', 0),
(1419, 1, '2020-03-04 11:12:51', '2020-03-04 09:12:51', '', 'IMG_20200302_145123', '', 'inherit', 'open', 'closed', '', 'img_20200302_145123', '', '', '2020-03-04 11:12:51', '2020-03-04 09:12:51', '', 1416, 'https://msla.co.za/lodge/wp-content/uploads/2020/03/IMG_20200302_145123.jpg', 0, 'attachment', 'image/jpeg', 0),
(1420, 1, '2020-03-04 12:00:40', '2020-03-04 10:00:40', '', 'The Lodge', '', 'publish', 'closed', 'closed', '', 'about-3-2', '', '', '2020-03-04 12:00:40', '2020-03-04 10:00:40', '', 0, 'https://msla.co.za/lodge/?post_type=slide&#038;p=1420', 0, 'slide', '', 0),
(1421, 1, '2020-03-04 12:00:21', '2020-03-04 10:00:21', '', 'IMG_20200302_145304', '', 'inherit', 'open', 'closed', '', 'img_20200302_145304', '', '', '2020-03-04 12:00:21', '2020-03-04 10:00:21', '', 1420, 'https://msla.co.za/lodge/wp-content/uploads/2020/03/IMG_20200302_145304.jpg', 0, 'attachment', 'image/jpeg', 0),
(1422, 1, '2020-03-04 12:01:53', '2020-03-04 10:01:53', '', 'The Lodge', '', 'publish', 'closed', 'closed', '', 'about-3-2-2', '', '', '2020-03-04 12:01:53', '2020-03-04 10:01:53', '', 0, 'https://msla.co.za/lodge/?post_type=slide&#038;p=1422', 0, 'slide', '', 0),
(1423, 1, '2020-03-04 12:01:44', '2020-03-04 10:01:44', '', 'IMG_20200302_145248', '', 'inherit', 'open', 'closed', '', 'img_20200302_145248', '', '', '2020-03-04 12:01:44', '2020-03-04 10:01:44', '', 1422, 'https://msla.co.za/lodge/wp-content/uploads/2020/03/IMG_20200302_145248.jpg', 0, 'attachment', 'image/jpeg', 0),
(1424, 1, '2020-03-04 12:02:17', '2020-03-04 10:02:17', '', 'The Lodge', '', 'publish', 'closed', 'closed', '', 'about-3-2-2-2', '', '', '2020-03-04 12:05:58', '2020-03-04 10:05:58', '', 0, 'https://msla.co.za/lodge/slide/the-lodge-cloned/', 0, 'slide', '', 0),
(1425, 1, '2020-03-04 12:02:37', '2020-03-04 10:02:37', '', 'IMG_20200302_144553', '', 'inherit', 'open', 'closed', '', 'img_20200302_144553', '', '', '2020-03-04 12:02:37', '2020-03-04 10:02:37', '', 1424, 'https://msla.co.za/lodge/wp-content/uploads/2020/03/IMG_20200302_144553.jpg', 0, 'attachment', 'image/jpeg', 0),
(1426, 1, '2020-03-04 12:02:56', '2020-03-04 10:02:56', '', 'The Lodge', '', 'publish', 'closed', 'closed', '', 'about-3-2-2-2-2', '', '', '2020-03-04 12:05:53', '2020-03-04 10:05:53', '', 0, 'https://msla.co.za/lodge/slide/the-lodge-cloned/', 0, 'slide', '', 0),
(1427, 1, '2020-03-04 12:03:14', '2020-03-04 10:03:14', '', 'IMG_20200302_145224', '', 'inherit', 'open', 'closed', '', 'img_20200302_145224', '', '', '2020-03-04 12:03:14', '2020-03-04 10:03:14', '', 1426, 'https://msla.co.za/lodge/wp-content/uploads/2020/03/IMG_20200302_145224.jpg', 0, 'attachment', 'image/jpeg', 0),
(1428, 1, '2020-03-04 12:03:44', '2020-03-04 10:03:44', '', 'The Lodge', '', 'publish', 'closed', 'closed', '', 'about-3-2-2-2-2-2', '', '', '2020-03-04 12:05:48', '2020-03-04 10:05:48', '', 0, 'https://msla.co.za/lodge/slide/the-lodge-cloned/', 0, 'slide', '', 0),
(1429, 1, '2020-03-04 12:04:19', '2020-03-04 10:04:19', '', 'IMG_20200302_145321', '', 'inherit', 'open', 'closed', '', 'img_20200302_145321', '', '', '2020-03-04 12:04:19', '2020-03-04 10:04:19', '', 1428, 'https://msla.co.za/lodge/wp-content/uploads/2020/03/IMG_20200302_145321.jpg', 0, 'attachment', 'image/jpeg', 0),
(1431, 1, '2020-03-04 12:05:30', '2020-03-04 10:05:30', '', 'The Lodge', '', 'publish', 'closed', 'closed', '', 'about-3-2-2-2-2-2-2-2', '', '', '2020-03-04 12:06:13', '2020-03-04 10:06:13', '', 0, 'https://msla.co.za/lodge/?post_type=slide&#038;p=1431', 0, 'slide', '', 0),
(1432, 1, '2020-03-04 12:05:21', '2020-03-04 10:05:21', '', 'IMG_20200301_163055', '', 'inherit', 'open', 'closed', '', 'img_20200301_163055-2', '', '', '2020-03-04 12:05:21', '2020-03-04 10:05:21', '', 1431, 'https://msla.co.za/lodge/wp-content/uploads/2020/03/IMG_20200301_163055-1.jpg', 0, 'attachment', 'image/jpeg', 0),
(1434, 1, '2020-05-06 11:24:16', '2020-05-06 09:24:16', '', 'covid-19-logo', '', 'inherit', 'open', 'closed', '', 'covid-19-logo', '', '', '2020-05-06 11:24:16', '2020-05-06 09:24:16', '', 7, 'https://msla.co.za/lodge/wp-content/uploads/2020/05/covid-19-logo.jpg', 0, 'attachment', 'image/jpeg', 0);
INSERT INTO `wp_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(1435, 1, '2020-05-06 11:25:04', '2020-05-06 09:25:04', '[fusion_builder_container background_color=\"#f0f0ed\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"20\" padding_bottom=\"20\" padding_left=\"\" padding_right=\"\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][fusion_builder_row][fusion_builder_column type=\"1_2\" layout=\"1_2\" spacing=\"yes\" center_content=\"no\" link=\"\" target=\"_self\" min_height=\"\" hide_on_mobile=\"no\" class=\"\" id=\"\" background_image_id=\"\" background_color=\"\" background_image=\"\" background_position=\"left top\" background_repeat=\"no-repeat\" hover_type=\"none\" border_size=\"0\" border_color=\"\" border_style=\"solid\" border_position=\"all\" border_radius_top_left=\"\" border_radius_top_right=\"\" border_radius_bottom_left=\"\" border_radius_bottom_right=\"\" box_shadow=\"no\" box_shadow_vertical=\"\" box_shadow_horizontal=\"\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" box_shadow_color=\"\" box_shadow_style=\"\" padding_top=\"40px\" padding_right=\"\" padding_bottom=\"40px\" padding_left=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.1\" animation_offset=\"\" last=\"no\"][fusion_imageframe image_id=\"1434|full\" max_width=\"\" style_type=\"\" blur=\"\" stylecolor=\"\" hover_type=\"none\" bordersize=\"\" bordercolor=\"\" borderradius=\"\" align=\"none\" lightbox=\"no\" gallery_id=\"\" lightbox_image=\"\" lightbox_image_id=\"\" alt=\"\" link=\"https://sacoronavirus.co.za/?__cf_chl_jschl_tk__=92d64755b6ddb7ea1fc6b815473d8020110b3d40-1588754057-0-ActMiuVPURaXt5nDqTQf4m1A8jJPoB4Nr82bN33Boig-nxuQaQ5JNwIMLl6194VFKvbsQ-iP29-Vipcb2l9vUk7l_oOZLU3zILPcqrj-B1hBdiYeiufX1RDM2LUbOs8FqL4hk4Ns_XnwG0wCLIAUS09YQJaCHRpCOP4yu2PuIzNljDtjmTGQmJDK2vMKwdX-nLGbYWd58RaB4QGTW21-6wpngc2h4VJ5W_qtOb9mTgSVT0DagBLpZNGjJ75syt96cKTQ95m2mf7IlDHyRtyOTrk\" linktarget=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" class=\"\" id=\"\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"\"]https://msla.co.za/lodge/wp-content/uploads/2020/05/covid-19-logo.jpg[/fusion_imageframe][fusion_text]\r\n<h1 style=\"text-align: center;\">No Fancy Star Grading\r\nNo Room Service\r\nNo Bed Turn-downs\r\nNo Rose Petals in the Bath water</h1>\r\n<h1 style=\"text-align: center;\">... just old fashioned homely comforts</h1>\r\n[/fusion_text][/fusion_builder_column][fusion_builder_column type=\"1_2\" layout=\"1_2\" last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"\" padding_right=\"\" padding_bottom=\"\" padding_left=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\" min_height=\"\"][fusion_text columns=\"\" column_min_width=\"\" column_spacing=\"\" rule_style=\"default\" rule_size=\"\" rule_color=\"\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" class=\"\" id=\"\"]\r\n<h1 style=\"text-align: center;\">5 Bedroom Family Lodge</h1>\r\n<h3 style=\"text-align: justify;\">We are a four season lodge, because there’s always something to celebrate… We offer comfort, relaxation and privacy right in the heart of 1000 Hills. The Forest, the Gardens, the Atmosphere all speak to  Rest  &amp; Relaxation.</h3>\r\n[/fusion_text][fusion_tagline_box backgroundcolor=\"\" shadow=\"yes\" shadowopacity=\"0.70\" border=\"1\" bordercolor=\"\" highlightposition=\"none\" content_alignment=\"center\" link=\"http://msla.co.za/lodge/reservations\" button=\"Book Now!\" linktarget=\"_self\" modal=\"\" button_size=\"xlarge\" button_type=\"\" button_shape=\"square\" buttoncolor=\"default\" title=\"\" description=\"\" margin_top=\"\" margin_bottom=\"\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" class=\"\" id=\"\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"\"]\r\n<p style=\"text-align: center;\"><span style=\"text-decoration: underline; font-size: 24pt;\">Current Specials</span></p>\r\n<p style=\"text-align: center;\"><span style=\"font-size: 14pt;\">Book on-line - get 15% OF\r\n</span><span style=\"font-size: 14pt;\">Stay 3 days or more - get 25% OFF</span></p>\r\n[/fusion_tagline_box][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" menu_anchor=\"\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" publish_date=\"\" class=\"\" id=\"\" background_color=\"\" background_image=\"\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" video_mp4=\"\" video_webm=\"\" video_ogv=\"\" video_url=\"\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" video_preview_image=\"\" border_size=\"\" border_color=\"\" border_style=\"solid\" margin_top=\"\" margin_bottom=\"\" padding_top=\"\" padding_right=\"\" padding_bottom=\"\" padding_left=\"\"][fusion_builder_row][fusion_builder_column type=\"1_1\" layout=\"1_1\" spacing=\"\" center_content=\"no\" link=\"\" target=\"_self\" min_height=\"\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" class=\"\" id=\"\" background_color=\"\" background_image=\"\" background_image_id=\"\" background_position=\"left top\" background_repeat=\"no-repeat\" hover_type=\"none\" border_size=\"0\" border_color=\"\" border_style=\"solid\" border_position=\"all\" border_radius=\"\" box_shadow=\"no\" dimension_box_shadow=\"\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" box_shadow_color=\"\" box_shadow_style=\"\" padding_top=\"\" padding_right=\"\" padding_bottom=\"\" padding_left=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"\" last=\"no\"][fusion_fusionslider name=\"lodge\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" class=\"\" id=\"\" /][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container background_color=\"#f0f0ed\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"20\" padding_bottom=\"20\" padding_left=\"\" padding_right=\"\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][fusion_builder_row][fusion_builder_column type=\"1_2\" layout=\"1_2\" last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"\" padding_right=\"\" padding_bottom=\"\" padding_left=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\" min_height=\"\"][fusion_text]\r\n<h3 style=\"text-align: justify;\">Set in the rolling peaks and valleys of a thousand hills surrounded by a canopy of indigenous trees, you will find that horses still have right of way, we certainly offer the best of both worlds, farm and charm coupled with modern amenities that will have you feeling relaxed and rejuvenated.</h3>\r\n<h3 style=\"text-align: justify;\">We know that sometimes you are searching for a romantic getaway or maybe a few days away with old friends. Other times you are searching for a place to host a weekend, family reunion or a business retreat. In addition to nightly room rentals, our lodge is also available for meetings, retreats  and makes the perfect place for a wedding party to stay together and get ready for the big day. Regardless, with our five comfortable and cozy guest bedrooms, multiple garden spaces and hideaways, and a  large private deck  where you can take a nap or read a book we definitely have the room for you!</h3>\r\n<h3 style=\"text-align: justify;\">Evenings are quiet and peaceful taking you far away from the business of city life. This is a unique and memorable country experience. We look forward to having you as a guest!</h3>\r\n[/fusion_text][/fusion_builder_column][fusion_builder_column type=\"1_2\" layout=\"1_2\" last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"\" padding_right=\"\" padding_bottom=\"\" padding_left=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\" min_height=\"\"][fusion_text]\r\n<h3 style=\"text-align: justify;\">Our lodge has been in our family for years and has recently been beautifully renovated. Five rooms all with en-suite showers lead off your own large central lounge, featuring a 36 foot high vaulted ceiling, offering spacious living, dining, and a bar/conversational lounge area which includes a fitted kitchenette, all adding to a sense of homely comfort. Sumptuous meals can be provided on request and served on the bottom deck at the swimming pool.</h3>\r\n<h3 style=\"text-align: justify;\">Be lulled to sleep by the sound of the waterfall and tinkling stream just outside your window, waking from a peaceful night\'s sleep in a pillow-top bed dressed in luxurious linens to coddle you in ultimate comfort.</h3>\r\n<h3 style=\"text-align: justify;\">Our property boasts many different species of birds and animals. We have a resident otter, a family of wild bush pigs,  a family of rock rabbits, porcupine, little blue duikers, a variety of different frogs and an abundance of bird life, including the occasional snakes that pass through!</h3>\r\n[/fusion_text][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container background_color=\"#f0f0ed\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"20\" padding_bottom=\"20\" padding_left=\"\" padding_right=\"\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][fusion_builder_row][fusion_builder_column type=\"1_1\" layout=\"1_1\" background_position=\"left top\" background_color=\"\" border_size=\"\" border_color=\"\" border_style=\"solid\" spacing=\"yes\" background_image=\"\" background_repeat=\"no-repeat\" padding_top=\"\" padding_right=\"\" padding_bottom=\"\" padding_left=\"\" margin_top=\"0px\" margin_bottom=\"0px\" class=\"\" id=\"\" animation_type=\"\" animation_speed=\"0.3\" animation_direction=\"left\" hide_on_mobile=\"no\" center_content=\"no\" min_height=\"none\" last=\"no\" hover_type=\"none\" link=\"\" border_position=\"all\"][fusion_text]\r\n<h1 style=\"text-align: center;\">Gallery</h1>\r\n[/fusion_text][fusion_separator style_type=\"single solid\" top_margin=\"\" bottom_margin=\"40\" sep_color=\"#000000\" border_size=\"\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"170px\" alignment=\"\" class=\"\" id=\"\" /][/fusion_builder_column][fusion_builder_column type=\"1_6\" layout=\"1_6\" last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding_top=\"\" padding_right=\"\" padding_bottom=\"\" padding_left=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\" min_height=\"\"][/fusion_builder_column][fusion_builder_column type=\"2_3\" layout=\"2_3\" last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding_top=\"\" padding_right=\"\" padding_bottom=\"\" padding_left=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\" min_height=\"\"][fusion_text]\r\n<h3 style=\"text-align: justify;\">The Lodge is open, spacious, comfortable and homely. During hot summer days, sit and bask in the sun on the deck  with one of our  picnic specials. In winter, snuggle up with a good book or challenge one another to a friendly board game in the glassed nook area .</h3>\r\n[/fusion_text][/fusion_builder_column][fusion_builder_column type=\"1_6\" layout=\"1_6\" last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding_top=\"\" padding_right=\"\" padding_bottom=\"\" padding_left=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\" min_height=\"\"][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container background_color=\"#f0f0ed\" background_image=\"http://localhost/assagaylodge/wp-content/uploads/2015/01/Wood_Texture.jpg\" background_parallax=\"fixed\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"30\" padding_bottom=\"10\" padding_left=\"0\" padding_right=\"0\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][fusion_builder_row][fusion_builder_column type=\"1_1\" layout=\"1_1\" background_position=\"left top\" background_color=\"\" border_size=\"\" border_color=\"\" border_style=\"solid\" spacing=\"yes\" background_image=\"\" background_repeat=\"no-repeat\" padding_top=\"\" padding_right=\"\" padding_bottom=\"\" padding_left=\"\" margin_top=\"0px\" margin_bottom=\"0px\" class=\"\" id=\"\" animation_type=\"\" animation_speed=\"0.3\" animation_direction=\"left\" hide_on_mobile=\"no\" center_content=\"no\" min_height=\"none\" last=\"no\" hover_type=\"none\" link=\"\" border_position=\"all\"][fusion_portfolio layout=\"grid\" picture_size=\"auto\" text_layout=\"no_text\" filters=\"no\" columns=\"3\" column_spacing=\"12\" cat_slug=\"the-lodge\" exclude_cats=\"\" number_posts=\"9\" offset=\"\" excerpt_length=\"35\" strip_html=\"yes\" carousel_layout=\"title_on_rollover\" scroll_items=\"\" autoplay=\"no\" show_nav=\"yes\" mouse_scroll=\"no\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\" /][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container background_color=\"#f0f0ed\" background_image=\"\" background_parallax=\"fixed\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"20\" padding_bottom=\"20\" padding_left=\"\" padding_right=\"\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][fusion_builder_row][fusion_builder_column type=\"1_1\" layout=\"1_1\" background_position=\"left top\" background_color=\"\" border_size=\"\" border_color=\"\" border_style=\"solid\" spacing=\"yes\" background_image=\"\" background_repeat=\"no-repeat\" padding_top=\"\" padding_right=\"\" padding_bottom=\"\" padding_left=\"\" margin_top=\"0px\" margin_bottom=\"0px\" class=\"\" id=\"\" animation_type=\"\" animation_speed=\"0.3\" animation_direction=\"left\" hide_on_mobile=\"no\" center_content=\"no\" min_height=\"none\" last=\"no\" hover_type=\"none\" link=\"\" border_position=\"all\"][fusion_text]\r\n<h1 style=\"text-align: center;\">BEDROOMS</h1>\r\n[/fusion_text][fusion_separator style_type=\"single solid\" top_margin=\"\" bottom_margin=\"20\" sep_color=\"#000000\" border_size=\"\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"170px\" alignment=\"\" class=\"\" id=\"\" /][/fusion_builder_column][fusion_builder_column type=\"1_6\" layout=\"1_6\" last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding_top=\"\" padding_right=\"\" padding_bottom=\"\" padding_left=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\" min_height=\"\"][/fusion_builder_column][fusion_builder_column type=\"2_3\" layout=\"2_3\" last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding_top=\"\" padding_right=\"\" padding_bottom=\"\" padding_left=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\" min_height=\"\"][fusion_text]\r\n<h3 style=\"text-align: justify;\">When it comes to our bedrooms we’re proud to say we offer something a little more special. One of five  lovingly and tastefully decorated guest rooms. Soft gray decor soothes the senses providing a peaceful, blissfully comfortable rest from your travels and hectic lives.</h3>\r\n<h3 style=\"text-align: justify;\">Our  bedrooms are spacious, clean, comfortable all en-suite, equipped with either king size or queen size beds. Each room sleeps two guests. The rooms have high ceilings, wall heaters &amp; ceiling fans. Beds all have electric blankets in Winter, 100% cotton percale sheets and thick hyper allergenic microfiber duvets and pillows. All guest rooms are cleaned with organic and green products. Amenities include hairdryers in each room. Three rooms feature King-sized beds  of which two can be  split into two single beds. Two  rooms can therefore be changed into a twin room upon request. Two rooms feature a Queen-sized double bed. These beds cannot be split into twin beds.</h3>\r\n[/fusion_text][/fusion_builder_column][fusion_builder_column type=\"1_6\" layout=\"1_6\" last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding_top=\"\" padding_right=\"\" padding_bottom=\"\" padding_left=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\" min_height=\"\"][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container background_color=\"\" background_image=\"http://localhost/assagaylodge/wp-content/uploads/2015/01/DSC01516-1148-x-764.jpg\" background_parallax=\"fixed\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"center center\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"20\" padding_bottom=\"20\" padding_left=\"0\" padding_right=\"0\" hundred_percent=\"no\" equal_height_columns=\"yes\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][fusion_builder_row][fusion_builder_column type=\"1_1\" layout=\"1_1\" background_position=\"left top\" background_color=\"\" border_size=\"\" border_color=\"\" border_style=\"solid\" spacing=\"yes\" background_image=\"\" background_repeat=\"no-repeat\" padding_top=\"\" padding_right=\"\" padding_bottom=\"\" padding_left=\"\" margin_top=\"0px\" margin_bottom=\"0px\" class=\"\" id=\"\" animation_type=\"\" animation_speed=\"0.3\" animation_direction=\"left\" hide_on_mobile=\"no\" center_content=\"no\" min_height=\"none\" last=\"no\" hover_type=\"none\" link=\"\" border_position=\"all\"][fusion_portfolio layout=\"grid\" picture_size=\"auto\" text_layout=\"no_text\" filters=\"no\" columns=\"3\" column_spacing=\"12\" cat_slug=\"bedrooms\" exclude_cats=\"\" number_posts=\"6\" offset=\"\" excerpt_length=\"35\" strip_html=\"yes\" carousel_layout=\"title_on_rollover\" scroll_items=\"\" autoplay=\"no\" show_nav=\"yes\" mouse_scroll=\"no\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\" /][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container background_color=\"#f0f0ed\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"20\" padding_bottom=\"20\" padding_left=\"0\" padding_right=\"0\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][fusion_builder_row][fusion_builder_column type=\"1_1\" layout=\"1_1\" background_position=\"left top\" background_color=\"\" border_size=\"\" border_color=\"\" border_style=\"solid\" spacing=\"yes\" background_image=\"\" background_repeat=\"no-repeat\" padding_top=\"\" padding_right=\"\" padding_bottom=\"\" padding_left=\"\" margin_top=\"0px\" margin_bottom=\"0px\" class=\"\" id=\"\" animation_type=\"\" animation_speed=\"0.3\" animation_direction=\"left\" hide_on_mobile=\"no\" center_content=\"no\" min_height=\"none\" last=\"no\" hover_type=\"none\" link=\"\" border_position=\"all\"][fusion_text]\r\n<h1 style=\"text-align: center;\">GARDENS</h1>\r\n[/fusion_text][fusion_separator style_type=\"single solid\" top_margin=\"\" bottom_margin=\"20\" sep_color=\"#000000\" border_size=\"\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"170px\" alignment=\"\" class=\"\" id=\"\" /][/fusion_builder_column][fusion_builder_column type=\"1_6\" layout=\"1_6\" last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding_top=\"\" padding_right=\"\" padding_bottom=\"\" padding_left=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\" min_height=\"\"][/fusion_builder_column][fusion_builder_column type=\"2_3\" layout=\"2_3\" last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding_top=\"\" padding_right=\"\" padding_bottom=\"\" padding_left=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\" min_height=\"\"][fusion_text]\r\n<h3 style=\"text-align: justify;\">The garden is large and offers many secluded spots to lose yourself in a book with a glass of wine underneath the shade of a tree, listening to the sounds of the birds and smelling the beautiful flowers.</h3>\r\n[/fusion_text][/fusion_builder_column][fusion_builder_column type=\"1_6\" layout=\"1_6\" last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding_top=\"\" padding_right=\"\" padding_bottom=\"\" padding_left=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\" min_height=\"\"][/fusion_builder_column][fusion_builder_column type=\"1_1\" layout=\"1_1\" background_position=\"left top\" background_color=\"\" border_size=\"\" border_color=\"\" border_style=\"solid\" spacing=\"yes\" background_image=\"\" background_repeat=\"no-repeat\" padding_top=\"\" padding_right=\"\" padding_bottom=\"\" padding_left=\"\" margin_top=\"0px\" margin_bottom=\"0px\" class=\"\" id=\"\" animation_type=\"\" animation_speed=\"0.3\" animation_direction=\"left\" hide_on_mobile=\"no\" center_content=\"no\" min_height=\"none\" last=\"no\" hover_type=\"none\" link=\"\" border_position=\"all\"][fusion_portfolio layout=\"grid\" picture_size=\"auto\" text_layout=\"no_text\" filters=\"no\" columns=\"3\" column_spacing=\"12\" cat_slug=\"gardens\" exclude_cats=\"\" number_posts=\"9\" offset=\"\" excerpt_length=\"35\" strip_html=\"yes\" carousel_layout=\"title_on_rollover\" scroll_items=\"\" autoplay=\"no\" show_nav=\"yes\" mouse_scroll=\"no\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\" /][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container background_color=\"#ffffff\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"65px\" padding_bottom=\"65px\" padding_left=\"\" padding_right=\"\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][fusion_builder_row][fusion_builder_column type=\"1_1\" layout=\"1_1\" background_position=\"left top\" background_color=\"\" border_size=\"\" border_color=\"\" border_style=\"solid\" spacing=\"yes\" background_image=\"\" background_repeat=\"no-repeat\" padding_top=\"\" padding_right=\"\" padding_bottom=\"\" padding_left=\"\" margin_top=\"0px\" margin_bottom=\"0px\" class=\"\" id=\"\" animation_type=\"\" animation_speed=\"0.3\" animation_direction=\"left\" hide_on_mobile=\"no\" center_content=\"no\" min_height=\"none\" last=\"no\" hover_type=\"none\" link=\"\" border_position=\"all\"][fusion_button link=\"https://msla.co.za/lodge/reservations/\" color=\"default\" size=\"xlarge\" stretch=\"default\" type=\"3d\" shape=\"round\" target=\"_self\" title=\"\" button_gradient_top_color=\"#f0f0ed\" button_gradient_bottom_color=\"#f0f0ed\" button_gradient_top_color_hover=\"#6666a4\" button_gradient_bottom_color_hover=\"#6666a4\" accent_color=\"#ffffff\" accent_hover_color=\"#ffffff\" bevel_color=\"\" border_width=\"0px\" icon=\"\" icon_position=\"left\" icon_divider=\"no\" modal=\"\" animation_type=\"0\" animation_direction=\"left\" animation_speed=\"1\" animation_offset=\"\" alignment=\"center\" class=\"\" id=\"\"]Make A Reservation Enquiry[/fusion_button][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container]', 'Home', '', 'inherit', 'closed', 'closed', '', '7-revision-v1', '', '', '2020-05-06 11:25:04', '2020-05-06 09:25:04', '', 7, 'https://msla.co.za/lodge/7-revision-v1/', 0, 'revision', '', 0),
(1436, 1, '2020-05-06 11:27:32', '2020-05-06 09:27:32', '', '', '', 'inherit', 'open', 'closed', '', 'covid-w', '', '', '2020-05-06 11:27:39', '2020-05-06 09:27:39', '', 7, 'https://msla.co.za/lodge/wp-content/uploads/2020/05/covid-w.png', 0, 'attachment', 'image/png', 0);
INSERT INTO `wp_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(1437, 1, '2020-05-06 11:27:47', '2020-05-06 09:27:47', '[fusion_builder_container background_color=\"#f0f0ed\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"20\" padding_bottom=\"20\" padding_left=\"\" padding_right=\"\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][fusion_builder_row][fusion_builder_column type=\"1_2\" layout=\"1_2\" spacing=\"yes\" center_content=\"no\" link=\"\" target=\"_self\" min_height=\"\" hide_on_mobile=\"no\" class=\"\" id=\"\" background_image_id=\"\" background_color=\"\" background_image=\"\" background_position=\"left top\" background_repeat=\"no-repeat\" hover_type=\"none\" border_size=\"0\" border_color=\"\" border_style=\"solid\" border_position=\"all\" border_radius_top_left=\"\" border_radius_top_right=\"\" border_radius_bottom_left=\"\" border_radius_bottom_right=\"\" box_shadow=\"no\" box_shadow_vertical=\"\" box_shadow_horizontal=\"\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" box_shadow_color=\"\" box_shadow_style=\"\" padding_top=\"40px\" padding_right=\"\" padding_bottom=\"40px\" padding_left=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.1\" animation_offset=\"\" last=\"no\"][fusion_imageframe image_id=\"1436|full\" max_width=\"\" style_type=\"\" blur=\"\" stylecolor=\"\" hover_type=\"none\" bordersize=\"\" bordercolor=\"\" borderradius=\"\" align=\"center\" lightbox=\"no\" gallery_id=\"\" lightbox_image=\"\" lightbox_image_id=\"\" alt=\"\" link=\"https://sacoronavirus.co.za/?__cf_chl_jschl_tk__=92d64755b6ddb7ea1fc6b815473d8020110b3d40-1588754057-0-ActMiuVPURaXt5nDqTQf4m1A8jJPoB4Nr82bN33Boig-nxuQaQ5JNwIMLl6194VFKvbsQ-iP29-Vipcb2l9vUk7l_oOZLU3zILPcqrj-B1hBdiYeiufX1RDM2LUbOs8FqL4hk4Ns_XnwG0wCLIAUS09YQJaCHRpCOP4yu2PuIzNljDtjmTGQmJDK2vMKwdX-nLGbYWd58RaB4QGTW21-6wpngc2h4VJ5W_qtOb9mTgSVT0DagBLpZNGjJ75syt96cKTQ95m2mf7IlDHyRtyOTrk\" linktarget=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" class=\"\" id=\"\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"\"]https://msla.co.za/lodge/wp-content/uploads/2020/05/covid-w.png[/fusion_imageframe][fusion_text]\r\n<h1 style=\"text-align: center;\">No Fancy Star Grading\r\nNo Room Service\r\nNo Bed Turn-downs\r\nNo Rose Petals in the Bath water</h1>\r\n<h1 style=\"text-align: center;\">... just old fashioned homely comforts</h1>\r\n[/fusion_text][/fusion_builder_column][fusion_builder_column type=\"1_2\" layout=\"1_2\" last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"\" padding_right=\"\" padding_bottom=\"\" padding_left=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\" min_height=\"\"][fusion_text columns=\"\" column_min_width=\"\" column_spacing=\"\" rule_style=\"default\" rule_size=\"\" rule_color=\"\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" class=\"\" id=\"\"]\r\n<h1 style=\"text-align: center;\">5 Bedroom Family Lodge</h1>\r\n<h3 style=\"text-align: justify;\">We are a four season lodge, because there’s always something to celebrate… We offer comfort, relaxation and privacy right in the heart of 1000 Hills. The Forest, the Gardens, the Atmosphere all speak to  Rest  &amp; Relaxation.</h3>\r\n[/fusion_text][fusion_tagline_box backgroundcolor=\"\" shadow=\"yes\" shadowopacity=\"0.70\" border=\"1\" bordercolor=\"\" highlightposition=\"none\" content_alignment=\"center\" link=\"http://msla.co.za/lodge/reservations\" button=\"Book Now!\" linktarget=\"_self\" modal=\"\" button_size=\"xlarge\" button_type=\"\" button_shape=\"square\" buttoncolor=\"default\" title=\"\" description=\"\" margin_top=\"\" margin_bottom=\"\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" class=\"\" id=\"\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"\"]\r\n<p style=\"text-align: center;\"><span style=\"text-decoration: underline; font-size: 24pt;\">Current Specials</span></p>\r\n<p style=\"text-align: center;\"><span style=\"font-size: 14pt;\">Book on-line - get 15% OF\r\n</span><span style=\"font-size: 14pt;\">Stay 3 days or more - get 25% OFF</span></p>\r\n[/fusion_tagline_box][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" menu_anchor=\"\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" publish_date=\"\" class=\"\" id=\"\" background_color=\"\" background_image=\"\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" video_mp4=\"\" video_webm=\"\" video_ogv=\"\" video_url=\"\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" video_preview_image=\"\" border_size=\"\" border_color=\"\" border_style=\"solid\" margin_top=\"\" margin_bottom=\"\" padding_top=\"\" padding_right=\"\" padding_bottom=\"\" padding_left=\"\"][fusion_builder_row][fusion_builder_column type=\"1_1\" layout=\"1_1\" spacing=\"\" center_content=\"no\" link=\"\" target=\"_self\" min_height=\"\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" class=\"\" id=\"\" background_color=\"\" background_image=\"\" background_image_id=\"\" background_position=\"left top\" background_repeat=\"no-repeat\" hover_type=\"none\" border_size=\"0\" border_color=\"\" border_style=\"solid\" border_position=\"all\" border_radius=\"\" box_shadow=\"no\" dimension_box_shadow=\"\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" box_shadow_color=\"\" box_shadow_style=\"\" padding_top=\"\" padding_right=\"\" padding_bottom=\"\" padding_left=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"\" last=\"no\"][fusion_fusionslider name=\"lodge\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" class=\"\" id=\"\" /][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container background_color=\"#f0f0ed\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"20\" padding_bottom=\"20\" padding_left=\"\" padding_right=\"\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][fusion_builder_row][fusion_builder_column type=\"1_2\" layout=\"1_2\" last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"\" padding_right=\"\" padding_bottom=\"\" padding_left=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\" min_height=\"\"][fusion_text]\r\n<h3 style=\"text-align: justify;\">Set in the rolling peaks and valleys of a thousand hills surrounded by a canopy of indigenous trees, you will find that horses still have right of way, we certainly offer the best of both worlds, farm and charm coupled with modern amenities that will have you feeling relaxed and rejuvenated.</h3>\r\n<h3 style=\"text-align: justify;\">We know that sometimes you are searching for a romantic getaway or maybe a few days away with old friends. Other times you are searching for a place to host a weekend, family reunion or a business retreat. In addition to nightly room rentals, our lodge is also available for meetings, retreats  and makes the perfect place for a wedding party to stay together and get ready for the big day. Regardless, with our five comfortable and cozy guest bedrooms, multiple garden spaces and hideaways, and a  large private deck  where you can take a nap or read a book we definitely have the room for you!</h3>\r\n<h3 style=\"text-align: justify;\">Evenings are quiet and peaceful taking you far away from the business of city life. This is a unique and memorable country experience. We look forward to having you as a guest!</h3>\r\n[/fusion_text][/fusion_builder_column][fusion_builder_column type=\"1_2\" layout=\"1_2\" last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"\" padding_right=\"\" padding_bottom=\"\" padding_left=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\" min_height=\"\"][fusion_text]\r\n<h3 style=\"text-align: justify;\">Our lodge has been in our family for years and has recently been beautifully renovated. Five rooms all with en-suite showers lead off your own large central lounge, featuring a 36 foot high vaulted ceiling, offering spacious living, dining, and a bar/conversational lounge area which includes a fitted kitchenette, all adding to a sense of homely comfort. Sumptuous meals can be provided on request and served on the bottom deck at the swimming pool.</h3>\r\n<h3 style=\"text-align: justify;\">Be lulled to sleep by the sound of the waterfall and tinkling stream just outside your window, waking from a peaceful night\'s sleep in a pillow-top bed dressed in luxurious linens to coddle you in ultimate comfort.</h3>\r\n<h3 style=\"text-align: justify;\">Our property boasts many different species of birds and animals. We have a resident otter, a family of wild bush pigs,  a family of rock rabbits, porcupine, little blue duikers, a variety of different frogs and an abundance of bird life, including the occasional snakes that pass through!</h3>\r\n[/fusion_text][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container background_color=\"#f0f0ed\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"20\" padding_bottom=\"20\" padding_left=\"\" padding_right=\"\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][fusion_builder_row][fusion_builder_column type=\"1_1\" layout=\"1_1\" background_position=\"left top\" background_color=\"\" border_size=\"\" border_color=\"\" border_style=\"solid\" spacing=\"yes\" background_image=\"\" background_repeat=\"no-repeat\" padding_top=\"\" padding_right=\"\" padding_bottom=\"\" padding_left=\"\" margin_top=\"0px\" margin_bottom=\"0px\" class=\"\" id=\"\" animation_type=\"\" animation_speed=\"0.3\" animation_direction=\"left\" hide_on_mobile=\"no\" center_content=\"no\" min_height=\"none\" last=\"no\" hover_type=\"none\" link=\"\" border_position=\"all\"][fusion_text]\r\n<h1 style=\"text-align: center;\">Gallery</h1>\r\n[/fusion_text][fusion_separator style_type=\"single solid\" top_margin=\"\" bottom_margin=\"40\" sep_color=\"#000000\" border_size=\"\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"170px\" alignment=\"\" class=\"\" id=\"\" /][/fusion_builder_column][fusion_builder_column type=\"1_6\" layout=\"1_6\" last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding_top=\"\" padding_right=\"\" padding_bottom=\"\" padding_left=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\" min_height=\"\"][/fusion_builder_column][fusion_builder_column type=\"2_3\" layout=\"2_3\" last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding_top=\"\" padding_right=\"\" padding_bottom=\"\" padding_left=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\" min_height=\"\"][fusion_text]\r\n<h3 style=\"text-align: justify;\">The Lodge is open, spacious, comfortable and homely. During hot summer days, sit and bask in the sun on the deck  with one of our  picnic specials. In winter, snuggle up with a good book or challenge one another to a friendly board game in the glassed nook area .</h3>\r\n[/fusion_text][/fusion_builder_column][fusion_builder_column type=\"1_6\" layout=\"1_6\" last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding_top=\"\" padding_right=\"\" padding_bottom=\"\" padding_left=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\" min_height=\"\"][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container background_color=\"#f0f0ed\" background_image=\"http://localhost/assagaylodge/wp-content/uploads/2015/01/Wood_Texture.jpg\" background_parallax=\"fixed\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"30\" padding_bottom=\"10\" padding_left=\"0\" padding_right=\"0\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][fusion_builder_row][fusion_builder_column type=\"1_1\" layout=\"1_1\" background_position=\"left top\" background_color=\"\" border_size=\"\" border_color=\"\" border_style=\"solid\" spacing=\"yes\" background_image=\"\" background_repeat=\"no-repeat\" padding_top=\"\" padding_right=\"\" padding_bottom=\"\" padding_left=\"\" margin_top=\"0px\" margin_bottom=\"0px\" class=\"\" id=\"\" animation_type=\"\" animation_speed=\"0.3\" animation_direction=\"left\" hide_on_mobile=\"no\" center_content=\"no\" min_height=\"none\" last=\"no\" hover_type=\"none\" link=\"\" border_position=\"all\"][fusion_portfolio layout=\"grid\" picture_size=\"auto\" text_layout=\"no_text\" filters=\"no\" columns=\"3\" column_spacing=\"12\" cat_slug=\"the-lodge\" exclude_cats=\"\" number_posts=\"9\" offset=\"\" excerpt_length=\"35\" strip_html=\"yes\" carousel_layout=\"title_on_rollover\" scroll_items=\"\" autoplay=\"no\" show_nav=\"yes\" mouse_scroll=\"no\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\" /][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container background_color=\"#f0f0ed\" background_image=\"\" background_parallax=\"fixed\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"20\" padding_bottom=\"20\" padding_left=\"\" padding_right=\"\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][fusion_builder_row][fusion_builder_column type=\"1_1\" layout=\"1_1\" background_position=\"left top\" background_color=\"\" border_size=\"\" border_color=\"\" border_style=\"solid\" spacing=\"yes\" background_image=\"\" background_repeat=\"no-repeat\" padding_top=\"\" padding_right=\"\" padding_bottom=\"\" padding_left=\"\" margin_top=\"0px\" margin_bottom=\"0px\" class=\"\" id=\"\" animation_type=\"\" animation_speed=\"0.3\" animation_direction=\"left\" hide_on_mobile=\"no\" center_content=\"no\" min_height=\"none\" last=\"no\" hover_type=\"none\" link=\"\" border_position=\"all\"][fusion_text]\r\n<h1 style=\"text-align: center;\">BEDROOMS</h1>\r\n[/fusion_text][fusion_separator style_type=\"single solid\" top_margin=\"\" bottom_margin=\"20\" sep_color=\"#000000\" border_size=\"\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"170px\" alignment=\"\" class=\"\" id=\"\" /][/fusion_builder_column][fusion_builder_column type=\"1_6\" layout=\"1_6\" last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding_top=\"\" padding_right=\"\" padding_bottom=\"\" padding_left=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\" min_height=\"\"][/fusion_builder_column][fusion_builder_column type=\"2_3\" layout=\"2_3\" last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding_top=\"\" padding_right=\"\" padding_bottom=\"\" padding_left=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\" min_height=\"\"][fusion_text]\r\n<h3 style=\"text-align: justify;\">When it comes to our bedrooms we’re proud to say we offer something a little more special. One of five  lovingly and tastefully decorated guest rooms. Soft gray decor soothes the senses providing a peaceful, blissfully comfortable rest from your travels and hectic lives.</h3>\r\n<h3 style=\"text-align: justify;\">Our  bedrooms are spacious, clean, comfortable all en-suite, equipped with either king size or queen size beds. Each room sleeps two guests. The rooms have high ceilings, wall heaters &amp; ceiling fans. Beds all have electric blankets in Winter, 100% cotton percale sheets and thick hyper allergenic microfiber duvets and pillows. All guest rooms are cleaned with organic and green products. Amenities include hairdryers in each room. Three rooms feature King-sized beds  of which two can be  split into two single beds. Two  rooms can therefore be changed into a twin room upon request. Two rooms feature a Queen-sized double bed. These beds cannot be split into twin beds.</h3>\r\n[/fusion_text][/fusion_builder_column][fusion_builder_column type=\"1_6\" layout=\"1_6\" last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding_top=\"\" padding_right=\"\" padding_bottom=\"\" padding_left=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\" min_height=\"\"][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container background_color=\"\" background_image=\"http://localhost/assagaylodge/wp-content/uploads/2015/01/DSC01516-1148-x-764.jpg\" background_parallax=\"fixed\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"center center\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"20\" padding_bottom=\"20\" padding_left=\"0\" padding_right=\"0\" hundred_percent=\"no\" equal_height_columns=\"yes\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][fusion_builder_row][fusion_builder_column type=\"1_1\" layout=\"1_1\" background_position=\"left top\" background_color=\"\" border_size=\"\" border_color=\"\" border_style=\"solid\" spacing=\"yes\" background_image=\"\" background_repeat=\"no-repeat\" padding_top=\"\" padding_right=\"\" padding_bottom=\"\" padding_left=\"\" margin_top=\"0px\" margin_bottom=\"0px\" class=\"\" id=\"\" animation_type=\"\" animation_speed=\"0.3\" animation_direction=\"left\" hide_on_mobile=\"no\" center_content=\"no\" min_height=\"none\" last=\"no\" hover_type=\"none\" link=\"\" border_position=\"all\"][fusion_portfolio layout=\"grid\" picture_size=\"auto\" text_layout=\"no_text\" filters=\"no\" columns=\"3\" column_spacing=\"12\" cat_slug=\"bedrooms\" exclude_cats=\"\" number_posts=\"6\" offset=\"\" excerpt_length=\"35\" strip_html=\"yes\" carousel_layout=\"title_on_rollover\" scroll_items=\"\" autoplay=\"no\" show_nav=\"yes\" mouse_scroll=\"no\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\" /][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container background_color=\"#f0f0ed\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"20\" padding_bottom=\"20\" padding_left=\"0\" padding_right=\"0\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][fusion_builder_row][fusion_builder_column type=\"1_1\" layout=\"1_1\" background_position=\"left top\" background_color=\"\" border_size=\"\" border_color=\"\" border_style=\"solid\" spacing=\"yes\" background_image=\"\" background_repeat=\"no-repeat\" padding_top=\"\" padding_right=\"\" padding_bottom=\"\" padding_left=\"\" margin_top=\"0px\" margin_bottom=\"0px\" class=\"\" id=\"\" animation_type=\"\" animation_speed=\"0.3\" animation_direction=\"left\" hide_on_mobile=\"no\" center_content=\"no\" min_height=\"none\" last=\"no\" hover_type=\"none\" link=\"\" border_position=\"all\"][fusion_text]\r\n<h1 style=\"text-align: center;\">GARDENS</h1>\r\n[/fusion_text][fusion_separator style_type=\"single solid\" top_margin=\"\" bottom_margin=\"20\" sep_color=\"#000000\" border_size=\"\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"170px\" alignment=\"\" class=\"\" id=\"\" /][/fusion_builder_column][fusion_builder_column type=\"1_6\" layout=\"1_6\" last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding_top=\"\" padding_right=\"\" padding_bottom=\"\" padding_left=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\" min_height=\"\"][/fusion_builder_column][fusion_builder_column type=\"2_3\" layout=\"2_3\" last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding_top=\"\" padding_right=\"\" padding_bottom=\"\" padding_left=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\" min_height=\"\"][fusion_text]\r\n<h3 style=\"text-align: justify;\">The garden is large and offers many secluded spots to lose yourself in a book with a glass of wine underneath the shade of a tree, listening to the sounds of the birds and smelling the beautiful flowers.</h3>\r\n[/fusion_text][/fusion_builder_column][fusion_builder_column type=\"1_6\" layout=\"1_6\" last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding_top=\"\" padding_right=\"\" padding_bottom=\"\" padding_left=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\" min_height=\"\"][/fusion_builder_column][fusion_builder_column type=\"1_1\" layout=\"1_1\" background_position=\"left top\" background_color=\"\" border_size=\"\" border_color=\"\" border_style=\"solid\" spacing=\"yes\" background_image=\"\" background_repeat=\"no-repeat\" padding_top=\"\" padding_right=\"\" padding_bottom=\"\" padding_left=\"\" margin_top=\"0px\" margin_bottom=\"0px\" class=\"\" id=\"\" animation_type=\"\" animation_speed=\"0.3\" animation_direction=\"left\" hide_on_mobile=\"no\" center_content=\"no\" min_height=\"none\" last=\"no\" hover_type=\"none\" link=\"\" border_position=\"all\"][fusion_portfolio layout=\"grid\" picture_size=\"auto\" text_layout=\"no_text\" filters=\"no\" columns=\"3\" column_spacing=\"12\" cat_slug=\"gardens\" exclude_cats=\"\" number_posts=\"9\" offset=\"\" excerpt_length=\"35\" strip_html=\"yes\" carousel_layout=\"title_on_rollover\" scroll_items=\"\" autoplay=\"no\" show_nav=\"yes\" mouse_scroll=\"no\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\" /][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container background_color=\"#ffffff\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"65px\" padding_bottom=\"65px\" padding_left=\"\" padding_right=\"\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][fusion_builder_row][fusion_builder_column type=\"1_1\" layout=\"1_1\" background_position=\"left top\" background_color=\"\" border_size=\"\" border_color=\"\" border_style=\"solid\" spacing=\"yes\" background_image=\"\" background_repeat=\"no-repeat\" padding_top=\"\" padding_right=\"\" padding_bottom=\"\" padding_left=\"\" margin_top=\"0px\" margin_bottom=\"0px\" class=\"\" id=\"\" animation_type=\"\" animation_speed=\"0.3\" animation_direction=\"left\" hide_on_mobile=\"no\" center_content=\"no\" min_height=\"none\" last=\"no\" hover_type=\"none\" link=\"\" border_position=\"all\"][fusion_button link=\"https://msla.co.za/lodge/reservations/\" color=\"default\" size=\"xlarge\" stretch=\"default\" type=\"3d\" shape=\"round\" target=\"_self\" title=\"\" button_gradient_top_color=\"#f0f0ed\" button_gradient_bottom_color=\"#f0f0ed\" button_gradient_top_color_hover=\"#6666a4\" button_gradient_bottom_color_hover=\"#6666a4\" accent_color=\"#ffffff\" accent_hover_color=\"#ffffff\" bevel_color=\"\" border_width=\"0px\" icon=\"\" icon_position=\"left\" icon_divider=\"no\" modal=\"\" animation_type=\"0\" animation_direction=\"left\" animation_speed=\"1\" animation_offset=\"\" alignment=\"center\" class=\"\" id=\"\"]Make A Reservation Enquiry[/fusion_button][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container]', 'Home', '', 'inherit', 'closed', 'closed', '', '7-revision-v1', '', '', '2020-05-06 11:27:47', '2020-05-06 09:27:47', '', 7, 'https://msla.co.za/lodge/7-revision-v1/', 0, 'revision', '', 0);
INSERT INTO `wp_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(1438, 1, '2020-05-06 11:41:55', '2020-05-06 09:41:55', '[fusion_builder_container background_color=\"#f0f0ed\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"20\" padding_bottom=\"20\" padding_left=\"\" padding_right=\"\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][fusion_builder_row][fusion_builder_column type=\"1_2\" layout=\"1_2\" spacing=\"yes\" center_content=\"no\" link=\"\" target=\"_self\" min_height=\"\" hide_on_mobile=\"no\" class=\"\" id=\"\" background_image_id=\"\" background_color=\"\" background_image=\"\" background_position=\"left top\" background_repeat=\"no-repeat\" hover_type=\"none\" border_size=\"0\" border_color=\"\" border_style=\"solid\" border_position=\"all\" border_radius_top_left=\"\" border_radius_top_right=\"\" border_radius_bottom_left=\"\" border_radius_bottom_right=\"\" box_shadow=\"no\" box_shadow_vertical=\"\" box_shadow_horizontal=\"\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" box_shadow_color=\"\" box_shadow_style=\"\" padding_top=\"40px\" padding_right=\"\" padding_bottom=\"40px\" padding_left=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.1\" animation_offset=\"\" last=\"no\"][fusion_imageframe image_id=\"1436|full\" max_width=\"\" style_type=\"\" blur=\"\" stylecolor=\"\" hover_type=\"none\" bordersize=\"\" bordercolor=\"\" borderradius=\"\" align=\"center\" lightbox=\"no\" gallery_id=\"\" lightbox_image=\"\" lightbox_image_id=\"\" alt=\"\" link=\"https://sacoronavirus.co.za/?__cf_chl_jschl_tk__=92d64755b6ddb7ea1fc6b815473d8020110b3d40-1588754057-0-ActMiuVPURaXt5nDqTQf4m1A8jJPoB4Nr82bN33Boig-nxuQaQ5JNwIMLl6194VFKvbsQ-iP29-Vipcb2l9vUk7l_oOZLU3zILPcqrj-B1hBdiYeiufX1RDM2LUbOs8FqL4hk4Ns_XnwG0wCLIAUS09YQJaCHRpCOP4yu2PuIzNljDtjmTGQmJDK2vMKwdX-nLGbYWd58RaB4QGTW21-6wpngc2h4VJ5W_qtOb9mTgSVT0DagBLpZNGjJ75syt96cKTQ95m2mf7IlDHyRtyOTrk\" linktarget=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" class=\"\" id=\"\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"\"]https://msla.co.za/lodge/wp-content/uploads/2020/05/covid-w.png[/fusion_imageframe][fusion_text]\r\n<h1 style=\"text-align: center;\">No Fancy Star Grading\r\nNo Room Service\r\nNo Bed Turn-downs\r\nNo Rose Petals in the Bath water</h1>\r\n<h1 style=\"text-align: center;\">... just old fashioned homely comforts</h1>\r\n[/fusion_text][fusion_text columns=\"\" column_min_width=\"\" column_spacing=\"\" rule_style=\"default\" rule_size=\"\" rule_color=\"\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" class=\"\" id=\"\"]\r\n<p style=\"text-align: center;\">Covid-19 Lockdown - Essential Services Guests</p>\r\n<p style=\"text-align: center;\">Taking Essential Services Guests as long as they have permits</p>\r\n[/fusion_text][/fusion_builder_column][fusion_builder_column type=\"1_2\" layout=\"1_2\" last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"\" padding_right=\"\" padding_bottom=\"\" padding_left=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\" min_height=\"\"][fusion_text columns=\"\" column_min_width=\"\" column_spacing=\"\" rule_style=\"default\" rule_size=\"\" rule_color=\"\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" class=\"\" id=\"\"]\r\n<h1 style=\"text-align: center;\">5 Bedroom Family Lodge</h1>\r\n<h3 style=\"text-align: justify;\">We are a four season lodge, because there’s always something to celebrate… We offer comfort, relaxation and privacy right in the heart of 1000 Hills. The Forest, the Gardens, the Atmosphere all speak to  Rest  &amp; Relaxation.</h3>\r\n[/fusion_text][fusion_tagline_box backgroundcolor=\"\" shadow=\"yes\" shadowopacity=\"0.70\" border=\"1\" bordercolor=\"\" highlightposition=\"none\" content_alignment=\"center\" link=\"http://msla.co.za/lodge/reservations\" button=\"Book Now!\" linktarget=\"_self\" modal=\"\" button_size=\"xlarge\" button_type=\"\" button_shape=\"square\" buttoncolor=\"default\" title=\"\" description=\"\" margin_top=\"\" margin_bottom=\"\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" class=\"\" id=\"\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"\"]\r\n<p style=\"text-align: center;\"><span style=\"text-decoration: underline; font-size: 24pt;\">Current Specials</span></p>\r\n<p style=\"text-align: center;\"><span style=\"font-size: 14pt;\">Book on-line - get 15% OF\r\n</span><span style=\"font-size: 14pt;\">Stay 3 days or more - get 25% OFF</span></p>\r\n[/fusion_tagline_box][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" menu_anchor=\"\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" publish_date=\"\" class=\"\" id=\"\" background_color=\"\" background_image=\"\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" video_mp4=\"\" video_webm=\"\" video_ogv=\"\" video_url=\"\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" video_preview_image=\"\" border_size=\"\" border_color=\"\" border_style=\"solid\" margin_top=\"\" margin_bottom=\"\" padding_top=\"\" padding_right=\"\" padding_bottom=\"\" padding_left=\"\"][fusion_builder_row][fusion_builder_column type=\"1_1\" layout=\"1_1\" spacing=\"\" center_content=\"no\" link=\"\" target=\"_self\" min_height=\"\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" class=\"\" id=\"\" background_color=\"\" background_image=\"\" background_image_id=\"\" background_position=\"left top\" background_repeat=\"no-repeat\" hover_type=\"none\" border_size=\"0\" border_color=\"\" border_style=\"solid\" border_position=\"all\" border_radius=\"\" box_shadow=\"no\" dimension_box_shadow=\"\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" box_shadow_color=\"\" box_shadow_style=\"\" padding_top=\"\" padding_right=\"\" padding_bottom=\"\" padding_left=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"\" last=\"no\"][fusion_fusionslider name=\"lodge\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" class=\"\" id=\"\" /][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container background_color=\"#f0f0ed\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"20\" padding_bottom=\"20\" padding_left=\"\" padding_right=\"\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][fusion_builder_row][fusion_builder_column type=\"1_2\" layout=\"1_2\" last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"\" padding_right=\"\" padding_bottom=\"\" padding_left=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\" min_height=\"\"][fusion_text]\r\n<h3 style=\"text-align: justify;\">Set in the rolling peaks and valleys of a thousand hills surrounded by a canopy of indigenous trees, you will find that horses still have right of way, we certainly offer the best of both worlds, farm and charm coupled with modern amenities that will have you feeling relaxed and rejuvenated.</h3>\r\n<h3 style=\"text-align: justify;\">We know that sometimes you are searching for a romantic getaway or maybe a few days away with old friends. Other times you are searching for a place to host a weekend, family reunion or a business retreat. In addition to nightly room rentals, our lodge is also available for meetings, retreats  and makes the perfect place for a wedding party to stay together and get ready for the big day. Regardless, with our five comfortable and cozy guest bedrooms, multiple garden spaces and hideaways, and a  large private deck  where you can take a nap or read a book we definitely have the room for you!</h3>\r\n<h3 style=\"text-align: justify;\">Evenings are quiet and peaceful taking you far away from the business of city life. This is a unique and memorable country experience. We look forward to having you as a guest!</h3>\r\n[/fusion_text][/fusion_builder_column][fusion_builder_column type=\"1_2\" layout=\"1_2\" last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"\" padding_right=\"\" padding_bottom=\"\" padding_left=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\" min_height=\"\"][fusion_text]\r\n<h3 style=\"text-align: justify;\">Our lodge has been in our family for years and has recently been beautifully renovated. Five rooms all with en-suite showers lead off your own large central lounge, featuring a 36 foot high vaulted ceiling, offering spacious living, dining, and a bar/conversational lounge area which includes a fitted kitchenette, all adding to a sense of homely comfort. Sumptuous meals can be provided on request and served on the bottom deck at the swimming pool.</h3>\r\n<h3 style=\"text-align: justify;\">Be lulled to sleep by the sound of the waterfall and tinkling stream just outside your window, waking from a peaceful night\'s sleep in a pillow-top bed dressed in luxurious linens to coddle you in ultimate comfort.</h3>\r\n<h3 style=\"text-align: justify;\">Our property boasts many different species of birds and animals. We have a resident otter, a family of wild bush pigs,  a family of rock rabbits, porcupine, little blue duikers, a variety of different frogs and an abundance of bird life, including the occasional snakes that pass through!</h3>\r\n[/fusion_text][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container background_color=\"#f0f0ed\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"20\" padding_bottom=\"20\" padding_left=\"\" padding_right=\"\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][fusion_builder_row][fusion_builder_column type=\"1_1\" layout=\"1_1\" background_position=\"left top\" background_color=\"\" border_size=\"\" border_color=\"\" border_style=\"solid\" spacing=\"yes\" background_image=\"\" background_repeat=\"no-repeat\" padding_top=\"\" padding_right=\"\" padding_bottom=\"\" padding_left=\"\" margin_top=\"0px\" margin_bottom=\"0px\" class=\"\" id=\"\" animation_type=\"\" animation_speed=\"0.3\" animation_direction=\"left\" hide_on_mobile=\"no\" center_content=\"no\" min_height=\"none\" last=\"no\" hover_type=\"none\" link=\"\" border_position=\"all\"][fusion_text]\r\n<h1 style=\"text-align: center;\">Gallery</h1>\r\n[/fusion_text][fusion_separator style_type=\"single solid\" top_margin=\"\" bottom_margin=\"40\" sep_color=\"#000000\" border_size=\"\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"170px\" alignment=\"\" class=\"\" id=\"\" /][/fusion_builder_column][fusion_builder_column type=\"1_6\" layout=\"1_6\" last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding_top=\"\" padding_right=\"\" padding_bottom=\"\" padding_left=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\" min_height=\"\"][/fusion_builder_column][fusion_builder_column type=\"2_3\" layout=\"2_3\" last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding_top=\"\" padding_right=\"\" padding_bottom=\"\" padding_left=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\" min_height=\"\"][fusion_text]\r\n<h3 style=\"text-align: justify;\">The Lodge is open, spacious, comfortable and homely. During hot summer days, sit and bask in the sun on the deck  with one of our  picnic specials. In winter, snuggle up with a good book or challenge one another to a friendly board game in the glassed nook area .</h3>\r\n[/fusion_text][/fusion_builder_column][fusion_builder_column type=\"1_6\" layout=\"1_6\" last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding_top=\"\" padding_right=\"\" padding_bottom=\"\" padding_left=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\" min_height=\"\"][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container background_color=\"#f0f0ed\" background_image=\"http://localhost/assagaylodge/wp-content/uploads/2015/01/Wood_Texture.jpg\" background_parallax=\"fixed\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"30\" padding_bottom=\"10\" padding_left=\"0\" padding_right=\"0\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][fusion_builder_row][fusion_builder_column type=\"1_1\" layout=\"1_1\" background_position=\"left top\" background_color=\"\" border_size=\"\" border_color=\"\" border_style=\"solid\" spacing=\"yes\" background_image=\"\" background_repeat=\"no-repeat\" padding_top=\"\" padding_right=\"\" padding_bottom=\"\" padding_left=\"\" margin_top=\"0px\" margin_bottom=\"0px\" class=\"\" id=\"\" animation_type=\"\" animation_speed=\"0.3\" animation_direction=\"left\" hide_on_mobile=\"no\" center_content=\"no\" min_height=\"none\" last=\"no\" hover_type=\"none\" link=\"\" border_position=\"all\"][fusion_portfolio layout=\"grid\" picture_size=\"auto\" text_layout=\"no_text\" filters=\"no\" columns=\"3\" column_spacing=\"12\" cat_slug=\"the-lodge\" exclude_cats=\"\" number_posts=\"9\" offset=\"\" excerpt_length=\"35\" strip_html=\"yes\" carousel_layout=\"title_on_rollover\" scroll_items=\"\" autoplay=\"no\" show_nav=\"yes\" mouse_scroll=\"no\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\" /][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container background_color=\"#f0f0ed\" background_image=\"\" background_parallax=\"fixed\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"20\" padding_bottom=\"20\" padding_left=\"\" padding_right=\"\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][fusion_builder_row][fusion_builder_column type=\"1_1\" layout=\"1_1\" background_position=\"left top\" background_color=\"\" border_size=\"\" border_color=\"\" border_style=\"solid\" spacing=\"yes\" background_image=\"\" background_repeat=\"no-repeat\" padding_top=\"\" padding_right=\"\" padding_bottom=\"\" padding_left=\"\" margin_top=\"0px\" margin_bottom=\"0px\" class=\"\" id=\"\" animation_type=\"\" animation_speed=\"0.3\" animation_direction=\"left\" hide_on_mobile=\"no\" center_content=\"no\" min_height=\"none\" last=\"no\" hover_type=\"none\" link=\"\" border_position=\"all\"][fusion_text]\r\n<h1 style=\"text-align: center;\">BEDROOMS</h1>\r\n[/fusion_text][fusion_separator style_type=\"single solid\" top_margin=\"\" bottom_margin=\"20\" sep_color=\"#000000\" border_size=\"\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"170px\" alignment=\"\" class=\"\" id=\"\" /][/fusion_builder_column][fusion_builder_column type=\"1_6\" layout=\"1_6\" last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding_top=\"\" padding_right=\"\" padding_bottom=\"\" padding_left=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\" min_height=\"\"][/fusion_builder_column][fusion_builder_column type=\"2_3\" layout=\"2_3\" last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding_top=\"\" padding_right=\"\" padding_bottom=\"\" padding_left=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\" min_height=\"\"][fusion_text]\r\n<h3 style=\"text-align: justify;\">When it comes to our bedrooms we’re proud to say we offer something a little more special. One of five  lovingly and tastefully decorated guest rooms. Soft gray decor soothes the senses providing a peaceful, blissfully comfortable rest from your travels and hectic lives.</h3>\r\n<h3 style=\"text-align: justify;\">Our  bedrooms are spacious, clean, comfortable all en-suite, equipped with either king size or queen size beds. Each room sleeps two guests. The rooms have high ceilings, wall heaters &amp; ceiling fans. Beds all have electric blankets in Winter, 100% cotton percale sheets and thick hyper allergenic microfiber duvets and pillows. All guest rooms are cleaned with organic and green products. Amenities include hairdryers in each room. Three rooms feature King-sized beds  of which two can be  split into two single beds. Two  rooms can therefore be changed into a twin room upon request. Two rooms feature a Queen-sized double bed. These beds cannot be split into twin beds.</h3>\r\n[/fusion_text][/fusion_builder_column][fusion_builder_column type=\"1_6\" layout=\"1_6\" last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding_top=\"\" padding_right=\"\" padding_bottom=\"\" padding_left=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\" min_height=\"\"][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container background_color=\"\" background_image=\"http://localhost/assagaylodge/wp-content/uploads/2015/01/DSC01516-1148-x-764.jpg\" background_parallax=\"fixed\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"center center\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"20\" padding_bottom=\"20\" padding_left=\"0\" padding_right=\"0\" hundred_percent=\"no\" equal_height_columns=\"yes\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][fusion_builder_row][fusion_builder_column type=\"1_1\" layout=\"1_1\" background_position=\"left top\" background_color=\"\" border_size=\"\" border_color=\"\" border_style=\"solid\" spacing=\"yes\" background_image=\"\" background_repeat=\"no-repeat\" padding_top=\"\" padding_right=\"\" padding_bottom=\"\" padding_left=\"\" margin_top=\"0px\" margin_bottom=\"0px\" class=\"\" id=\"\" animation_type=\"\" animation_speed=\"0.3\" animation_direction=\"left\" hide_on_mobile=\"no\" center_content=\"no\" min_height=\"none\" last=\"no\" hover_type=\"none\" link=\"\" border_position=\"all\"][fusion_portfolio layout=\"grid\" picture_size=\"auto\" text_layout=\"no_text\" filters=\"no\" columns=\"3\" column_spacing=\"12\" cat_slug=\"bedrooms\" exclude_cats=\"\" number_posts=\"6\" offset=\"\" excerpt_length=\"35\" strip_html=\"yes\" carousel_layout=\"title_on_rollover\" scroll_items=\"\" autoplay=\"no\" show_nav=\"yes\" mouse_scroll=\"no\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\" /][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container background_color=\"#f0f0ed\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"20\" padding_bottom=\"20\" padding_left=\"0\" padding_right=\"0\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][fusion_builder_row][fusion_builder_column type=\"1_1\" layout=\"1_1\" background_position=\"left top\" background_color=\"\" border_size=\"\" border_color=\"\" border_style=\"solid\" spacing=\"yes\" background_image=\"\" background_repeat=\"no-repeat\" padding_top=\"\" padding_right=\"\" padding_bottom=\"\" padding_left=\"\" margin_top=\"0px\" margin_bottom=\"0px\" class=\"\" id=\"\" animation_type=\"\" animation_speed=\"0.3\" animation_direction=\"left\" hide_on_mobile=\"no\" center_content=\"no\" min_height=\"none\" last=\"no\" hover_type=\"none\" link=\"\" border_position=\"all\"][fusion_text]\r\n<h1 style=\"text-align: center;\">GARDENS</h1>\r\n[/fusion_text][fusion_separator style_type=\"single solid\" top_margin=\"\" bottom_margin=\"20\" sep_color=\"#000000\" border_size=\"\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"170px\" alignment=\"\" class=\"\" id=\"\" /][/fusion_builder_column][fusion_builder_column type=\"1_6\" layout=\"1_6\" last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding_top=\"\" padding_right=\"\" padding_bottom=\"\" padding_left=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\" min_height=\"\"][/fusion_builder_column][fusion_builder_column type=\"2_3\" layout=\"2_3\" last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding_top=\"\" padding_right=\"\" padding_bottom=\"\" padding_left=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\" min_height=\"\"][fusion_text]\r\n<h3 style=\"text-align: justify;\">The garden is large and offers many secluded spots to lose yourself in a book with a glass of wine underneath the shade of a tree, listening to the sounds of the birds and smelling the beautiful flowers.</h3>\r\n[/fusion_text][/fusion_builder_column][fusion_builder_column type=\"1_6\" layout=\"1_6\" last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding_top=\"\" padding_right=\"\" padding_bottom=\"\" padding_left=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\" min_height=\"\"][/fusion_builder_column][fusion_builder_column type=\"1_1\" layout=\"1_1\" background_position=\"left top\" background_color=\"\" border_size=\"\" border_color=\"\" border_style=\"solid\" spacing=\"yes\" background_image=\"\" background_repeat=\"no-repeat\" padding_top=\"\" padding_right=\"\" padding_bottom=\"\" padding_left=\"\" margin_top=\"0px\" margin_bottom=\"0px\" class=\"\" id=\"\" animation_type=\"\" animation_speed=\"0.3\" animation_direction=\"left\" hide_on_mobile=\"no\" center_content=\"no\" min_height=\"none\" last=\"no\" hover_type=\"none\" link=\"\" border_position=\"all\"][fusion_portfolio layout=\"grid\" picture_size=\"auto\" text_layout=\"no_text\" filters=\"no\" columns=\"3\" column_spacing=\"12\" cat_slug=\"gardens\" exclude_cats=\"\" number_posts=\"9\" offset=\"\" excerpt_length=\"35\" strip_html=\"yes\" carousel_layout=\"title_on_rollover\" scroll_items=\"\" autoplay=\"no\" show_nav=\"yes\" mouse_scroll=\"no\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\" /][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container background_color=\"#ffffff\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"65px\" padding_bottom=\"65px\" padding_left=\"\" padding_right=\"\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][fusion_builder_row][fusion_builder_column type=\"1_1\" layout=\"1_1\" background_position=\"left top\" background_color=\"\" border_size=\"\" border_color=\"\" border_style=\"solid\" spacing=\"yes\" background_image=\"\" background_repeat=\"no-repeat\" padding_top=\"\" padding_right=\"\" padding_bottom=\"\" padding_left=\"\" margin_top=\"0px\" margin_bottom=\"0px\" class=\"\" id=\"\" animation_type=\"\" animation_speed=\"0.3\" animation_direction=\"left\" hide_on_mobile=\"no\" center_content=\"no\" min_height=\"none\" last=\"no\" hover_type=\"none\" link=\"\" border_position=\"all\"][fusion_button link=\"https://msla.co.za/lodge/reservations/\" color=\"default\" size=\"xlarge\" stretch=\"default\" type=\"3d\" shape=\"round\" target=\"_self\" title=\"\" button_gradient_top_color=\"#f0f0ed\" button_gradient_bottom_color=\"#f0f0ed\" button_gradient_top_color_hover=\"#6666a4\" button_gradient_bottom_color_hover=\"#6666a4\" accent_color=\"#ffffff\" accent_hover_color=\"#ffffff\" bevel_color=\"\" border_width=\"0px\" icon=\"\" icon_position=\"left\" icon_divider=\"no\" modal=\"\" animation_type=\"0\" animation_direction=\"left\" animation_speed=\"1\" animation_offset=\"\" alignment=\"center\" class=\"\" id=\"\"]Make A Reservation Enquiry[/fusion_button][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container]', 'Home', '', 'inherit', 'closed', 'closed', '', '7-revision-v1', '', '', '2020-05-06 11:41:55', '2020-05-06 09:41:55', '', 7, 'https://msla.co.za/lodge/7-revision-v1/', 0, 'revision', '', 0);
INSERT INTO `wp_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(1439, 1, '2020-05-06 11:42:51', '2020-05-06 09:42:51', '[fusion_builder_container background_color=\"#f0f0ed\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"20\" padding_bottom=\"20\" padding_left=\"\" padding_right=\"\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][fusion_builder_row][fusion_builder_column type=\"1_2\" layout=\"1_2\" spacing=\"yes\" center_content=\"no\" link=\"\" target=\"_self\" min_height=\"\" hide_on_mobile=\"no\" class=\"\" id=\"\" background_image_id=\"\" background_color=\"\" background_image=\"\" background_position=\"left top\" background_repeat=\"no-repeat\" hover_type=\"none\" border_size=\"0\" border_color=\"\" border_style=\"solid\" border_position=\"all\" border_radius_top_left=\"\" border_radius_top_right=\"\" border_radius_bottom_left=\"\" border_radius_bottom_right=\"\" box_shadow=\"no\" box_shadow_vertical=\"\" box_shadow_horizontal=\"\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" box_shadow_color=\"\" box_shadow_style=\"\" padding_top=\"40px\" padding_right=\"\" padding_bottom=\"40px\" padding_left=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.1\" animation_offset=\"\" last=\"no\"][fusion_imageframe image_id=\"1436|full\" max_width=\"\" style_type=\"\" blur=\"\" stylecolor=\"\" hover_type=\"none\" bordersize=\"\" bordercolor=\"\" borderradius=\"\" align=\"center\" lightbox=\"no\" gallery_id=\"\" lightbox_image=\"\" lightbox_image_id=\"\" alt=\"\" link=\"https://sacoronavirus.co.za/?__cf_chl_jschl_tk__=92d64755b6ddb7ea1fc6b815473d8020110b3d40-1588754057-0-ActMiuVPURaXt5nDqTQf4m1A8jJPoB4Nr82bN33Boig-nxuQaQ5JNwIMLl6194VFKvbsQ-iP29-Vipcb2l9vUk7l_oOZLU3zILPcqrj-B1hBdiYeiufX1RDM2LUbOs8FqL4hk4Ns_XnwG0wCLIAUS09YQJaCHRpCOP4yu2PuIzNljDtjmTGQmJDK2vMKwdX-nLGbYWd58RaB4QGTW21-6wpngc2h4VJ5W_qtOb9mTgSVT0DagBLpZNGjJ75syt96cKTQ95m2mf7IlDHyRtyOTrk\" linktarget=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" class=\"\" id=\"\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"\"]https://msla.co.za/lodge/wp-content/uploads/2020/05/covid-w.png[/fusion_imageframe][fusion_text columns=\"\" column_min_width=\"\" column_spacing=\"\" rule_style=\"default\" rule_size=\"\" rule_color=\"\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" class=\"\" id=\"\"]\r\n<p style=\"text-align: center;\">Covid-19 Lockdown - Taking \'Essential Services Guests\' as long as they have permits</p>\r\n[/fusion_text][fusion_text]\r\n<h1 style=\"text-align: center;\">No Fancy Star Grading\r\nNo Room Service\r\nNo Bed Turn-downs\r\nNo Rose Petals in the Bath water</h1>\r\n<h1 style=\"text-align: center;\">... just old fashioned homely comforts</h1>\r\n[/fusion_text][/fusion_builder_column][fusion_builder_column type=\"1_2\" layout=\"1_2\" last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"\" padding_right=\"\" padding_bottom=\"\" padding_left=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\" min_height=\"\"][fusion_text columns=\"\" column_min_width=\"\" column_spacing=\"\" rule_style=\"default\" rule_size=\"\" rule_color=\"\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" class=\"\" id=\"\"]\r\n<h1 style=\"text-align: center;\">5 Bedroom Family Lodge</h1>\r\n<h3 style=\"text-align: justify;\">We are a four season lodge, because there’s always something to celebrate… We offer comfort, relaxation and privacy right in the heart of 1000 Hills. The Forest, the Gardens, the Atmosphere all speak to  Rest  &amp; Relaxation.</h3>\r\n[/fusion_text][fusion_tagline_box backgroundcolor=\"\" shadow=\"yes\" shadowopacity=\"0.70\" border=\"1\" bordercolor=\"\" highlightposition=\"none\" content_alignment=\"center\" link=\"http://msla.co.za/lodge/reservations\" button=\"Book Now!\" linktarget=\"_self\" modal=\"\" button_size=\"xlarge\" button_type=\"\" button_shape=\"square\" buttoncolor=\"default\" title=\"\" description=\"\" margin_top=\"\" margin_bottom=\"\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" class=\"\" id=\"\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"\"]\r\n<p style=\"text-align: center;\"><span style=\"text-decoration: underline; font-size: 24pt;\">Current Specials</span></p>\r\n<p style=\"text-align: center;\"><span style=\"font-size: 14pt;\">Book on-line - get 15% OF\r\n</span><span style=\"font-size: 14pt;\">Stay 3 days or more - get 25% OFF</span></p>\r\n[/fusion_tagline_box][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" menu_anchor=\"\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" publish_date=\"\" class=\"\" id=\"\" background_color=\"\" background_image=\"\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" video_mp4=\"\" video_webm=\"\" video_ogv=\"\" video_url=\"\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" video_preview_image=\"\" border_size=\"\" border_color=\"\" border_style=\"solid\" margin_top=\"\" margin_bottom=\"\" padding_top=\"\" padding_right=\"\" padding_bottom=\"\" padding_left=\"\"][fusion_builder_row][fusion_builder_column type=\"1_1\" layout=\"1_1\" spacing=\"\" center_content=\"no\" link=\"\" target=\"_self\" min_height=\"\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" class=\"\" id=\"\" background_color=\"\" background_image=\"\" background_image_id=\"\" background_position=\"left top\" background_repeat=\"no-repeat\" hover_type=\"none\" border_size=\"0\" border_color=\"\" border_style=\"solid\" border_position=\"all\" border_radius=\"\" box_shadow=\"no\" dimension_box_shadow=\"\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" box_shadow_color=\"\" box_shadow_style=\"\" padding_top=\"\" padding_right=\"\" padding_bottom=\"\" padding_left=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"\" last=\"no\"][fusion_fusionslider name=\"lodge\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" class=\"\" id=\"\" /][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container background_color=\"#f0f0ed\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"20\" padding_bottom=\"20\" padding_left=\"\" padding_right=\"\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][fusion_builder_row][fusion_builder_column type=\"1_2\" layout=\"1_2\" last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"\" padding_right=\"\" padding_bottom=\"\" padding_left=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\" min_height=\"\"][fusion_text]\r\n<h3 style=\"text-align: justify;\">Set in the rolling peaks and valleys of a thousand hills surrounded by a canopy of indigenous trees, you will find that horses still have right of way, we certainly offer the best of both worlds, farm and charm coupled with modern amenities that will have you feeling relaxed and rejuvenated.</h3>\r\n<h3 style=\"text-align: justify;\">We know that sometimes you are searching for a romantic getaway or maybe a few days away with old friends. Other times you are searching for a place to host a weekend, family reunion or a business retreat. In addition to nightly room rentals, our lodge is also available for meetings, retreats  and makes the perfect place for a wedding party to stay together and get ready for the big day. Regardless, with our five comfortable and cozy guest bedrooms, multiple garden spaces and hideaways, and a  large private deck  where you can take a nap or read a book we definitely have the room for you!</h3>\r\n<h3 style=\"text-align: justify;\">Evenings are quiet and peaceful taking you far away from the business of city life. This is a unique and memorable country experience. We look forward to having you as a guest!</h3>\r\n[/fusion_text][/fusion_builder_column][fusion_builder_column type=\"1_2\" layout=\"1_2\" last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"\" padding_right=\"\" padding_bottom=\"\" padding_left=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\" min_height=\"\"][fusion_text]\r\n<h3 style=\"text-align: justify;\">Our lodge has been in our family for years and has recently been beautifully renovated. Five rooms all with en-suite showers lead off your own large central lounge, featuring a 36 foot high vaulted ceiling, offering spacious living, dining, and a bar/conversational lounge area which includes a fitted kitchenette, all adding to a sense of homely comfort. Sumptuous meals can be provided on request and served on the bottom deck at the swimming pool.</h3>\r\n<h3 style=\"text-align: justify;\">Be lulled to sleep by the sound of the waterfall and tinkling stream just outside your window, waking from a peaceful night\'s sleep in a pillow-top bed dressed in luxurious linens to coddle you in ultimate comfort.</h3>\r\n<h3 style=\"text-align: justify;\">Our property boasts many different species of birds and animals. We have a resident otter, a family of wild bush pigs,  a family of rock rabbits, porcupine, little blue duikers, a variety of different frogs and an abundance of bird life, including the occasional snakes that pass through!</h3>\r\n[/fusion_text][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container background_color=\"#f0f0ed\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"20\" padding_bottom=\"20\" padding_left=\"\" padding_right=\"\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][fusion_builder_row][fusion_builder_column type=\"1_1\" layout=\"1_1\" background_position=\"left top\" background_color=\"\" border_size=\"\" border_color=\"\" border_style=\"solid\" spacing=\"yes\" background_image=\"\" background_repeat=\"no-repeat\" padding_top=\"\" padding_right=\"\" padding_bottom=\"\" padding_left=\"\" margin_top=\"0px\" margin_bottom=\"0px\" class=\"\" id=\"\" animation_type=\"\" animation_speed=\"0.3\" animation_direction=\"left\" hide_on_mobile=\"no\" center_content=\"no\" min_height=\"none\" last=\"no\" hover_type=\"none\" link=\"\" border_position=\"all\"][fusion_text]\r\n<h1 style=\"text-align: center;\">Gallery</h1>\r\n[/fusion_text][fusion_separator style_type=\"single solid\" top_margin=\"\" bottom_margin=\"40\" sep_color=\"#000000\" border_size=\"\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"170px\" alignment=\"\" class=\"\" id=\"\" /][/fusion_builder_column][fusion_builder_column type=\"1_6\" layout=\"1_6\" last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding_top=\"\" padding_right=\"\" padding_bottom=\"\" padding_left=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\" min_height=\"\"][/fusion_builder_column][fusion_builder_column type=\"2_3\" layout=\"2_3\" last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding_top=\"\" padding_right=\"\" padding_bottom=\"\" padding_left=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\" min_height=\"\"][fusion_text]\r\n<h3 style=\"text-align: justify;\">The Lodge is open, spacious, comfortable and homely. During hot summer days, sit and bask in the sun on the deck  with one of our  picnic specials. In winter, snuggle up with a good book or challenge one another to a friendly board game in the glassed nook area .</h3>\r\n[/fusion_text][/fusion_builder_column][fusion_builder_column type=\"1_6\" layout=\"1_6\" last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding_top=\"\" padding_right=\"\" padding_bottom=\"\" padding_left=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\" min_height=\"\"][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container background_color=\"#f0f0ed\" background_image=\"http://localhost/assagaylodge/wp-content/uploads/2015/01/Wood_Texture.jpg\" background_parallax=\"fixed\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"30\" padding_bottom=\"10\" padding_left=\"0\" padding_right=\"0\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][fusion_builder_row][fusion_builder_column type=\"1_1\" layout=\"1_1\" background_position=\"left top\" background_color=\"\" border_size=\"\" border_color=\"\" border_style=\"solid\" spacing=\"yes\" background_image=\"\" background_repeat=\"no-repeat\" padding_top=\"\" padding_right=\"\" padding_bottom=\"\" padding_left=\"\" margin_top=\"0px\" margin_bottom=\"0px\" class=\"\" id=\"\" animation_type=\"\" animation_speed=\"0.3\" animation_direction=\"left\" hide_on_mobile=\"no\" center_content=\"no\" min_height=\"none\" last=\"no\" hover_type=\"none\" link=\"\" border_position=\"all\"][fusion_portfolio layout=\"grid\" picture_size=\"auto\" text_layout=\"no_text\" filters=\"no\" columns=\"3\" column_spacing=\"12\" cat_slug=\"the-lodge\" exclude_cats=\"\" number_posts=\"9\" offset=\"\" excerpt_length=\"35\" strip_html=\"yes\" carousel_layout=\"title_on_rollover\" scroll_items=\"\" autoplay=\"no\" show_nav=\"yes\" mouse_scroll=\"no\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\" /][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container background_color=\"#f0f0ed\" background_image=\"\" background_parallax=\"fixed\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"20\" padding_bottom=\"20\" padding_left=\"\" padding_right=\"\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][fusion_builder_row][fusion_builder_column type=\"1_1\" layout=\"1_1\" background_position=\"left top\" background_color=\"\" border_size=\"\" border_color=\"\" border_style=\"solid\" spacing=\"yes\" background_image=\"\" background_repeat=\"no-repeat\" padding_top=\"\" padding_right=\"\" padding_bottom=\"\" padding_left=\"\" margin_top=\"0px\" margin_bottom=\"0px\" class=\"\" id=\"\" animation_type=\"\" animation_speed=\"0.3\" animation_direction=\"left\" hide_on_mobile=\"no\" center_content=\"no\" min_height=\"none\" last=\"no\" hover_type=\"none\" link=\"\" border_position=\"all\"][fusion_text]\r\n<h1 style=\"text-align: center;\">BEDROOMS</h1>\r\n[/fusion_text][fusion_separator style_type=\"single solid\" top_margin=\"\" bottom_margin=\"20\" sep_color=\"#000000\" border_size=\"\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"170px\" alignment=\"\" class=\"\" id=\"\" /][/fusion_builder_column][fusion_builder_column type=\"1_6\" layout=\"1_6\" last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding_top=\"\" padding_right=\"\" padding_bottom=\"\" padding_left=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\" min_height=\"\"][/fusion_builder_column][fusion_builder_column type=\"2_3\" layout=\"2_3\" last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding_top=\"\" padding_right=\"\" padding_bottom=\"\" padding_left=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\" min_height=\"\"][fusion_text]\r\n<h3 style=\"text-align: justify;\">When it comes to our bedrooms we’re proud to say we offer something a little more special. One of five  lovingly and tastefully decorated guest rooms. Soft gray decor soothes the senses providing a peaceful, blissfully comfortable rest from your travels and hectic lives.</h3>\r\n<h3 style=\"text-align: justify;\">Our  bedrooms are spacious, clean, comfortable all en-suite, equipped with either king size or queen size beds. Each room sleeps two guests. The rooms have high ceilings, wall heaters &amp; ceiling fans. Beds all have electric blankets in Winter, 100% cotton percale sheets and thick hyper allergenic microfiber duvets and pillows. All guest rooms are cleaned with organic and green products. Amenities include hairdryers in each room. Three rooms feature King-sized beds  of which two can be  split into two single beds. Two  rooms can therefore be changed into a twin room upon request. Two rooms feature a Queen-sized double bed. These beds cannot be split into twin beds.</h3>\r\n[/fusion_text][/fusion_builder_column][fusion_builder_column type=\"1_6\" layout=\"1_6\" last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding_top=\"\" padding_right=\"\" padding_bottom=\"\" padding_left=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\" min_height=\"\"][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container background_color=\"\" background_image=\"http://localhost/assagaylodge/wp-content/uploads/2015/01/DSC01516-1148-x-764.jpg\" background_parallax=\"fixed\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"center center\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"20\" padding_bottom=\"20\" padding_left=\"0\" padding_right=\"0\" hundred_percent=\"no\" equal_height_columns=\"yes\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][fusion_builder_row][fusion_builder_column type=\"1_1\" layout=\"1_1\" background_position=\"left top\" background_color=\"\" border_size=\"\" border_color=\"\" border_style=\"solid\" spacing=\"yes\" background_image=\"\" background_repeat=\"no-repeat\" padding_top=\"\" padding_right=\"\" padding_bottom=\"\" padding_left=\"\" margin_top=\"0px\" margin_bottom=\"0px\" class=\"\" id=\"\" animation_type=\"\" animation_speed=\"0.3\" animation_direction=\"left\" hide_on_mobile=\"no\" center_content=\"no\" min_height=\"none\" last=\"no\" hover_type=\"none\" link=\"\" border_position=\"all\"][fusion_portfolio layout=\"grid\" picture_size=\"auto\" text_layout=\"no_text\" filters=\"no\" columns=\"3\" column_spacing=\"12\" cat_slug=\"bedrooms\" exclude_cats=\"\" number_posts=\"6\" offset=\"\" excerpt_length=\"35\" strip_html=\"yes\" carousel_layout=\"title_on_rollover\" scroll_items=\"\" autoplay=\"no\" show_nav=\"yes\" mouse_scroll=\"no\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\" /][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container background_color=\"#f0f0ed\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"20\" padding_bottom=\"20\" padding_left=\"0\" padding_right=\"0\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][fusion_builder_row][fusion_builder_column type=\"1_1\" layout=\"1_1\" background_position=\"left top\" background_color=\"\" border_size=\"\" border_color=\"\" border_style=\"solid\" spacing=\"yes\" background_image=\"\" background_repeat=\"no-repeat\" padding_top=\"\" padding_right=\"\" padding_bottom=\"\" padding_left=\"\" margin_top=\"0px\" margin_bottom=\"0px\" class=\"\" id=\"\" animation_type=\"\" animation_speed=\"0.3\" animation_direction=\"left\" hide_on_mobile=\"no\" center_content=\"no\" min_height=\"none\" last=\"no\" hover_type=\"none\" link=\"\" border_position=\"all\"][fusion_text]\r\n<h1 style=\"text-align: center;\">GARDENS</h1>\r\n[/fusion_text][fusion_separator style_type=\"single solid\" top_margin=\"\" bottom_margin=\"20\" sep_color=\"#000000\" border_size=\"\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"170px\" alignment=\"\" class=\"\" id=\"\" /][/fusion_builder_column][fusion_builder_column type=\"1_6\" layout=\"1_6\" last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding_top=\"\" padding_right=\"\" padding_bottom=\"\" padding_left=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\" min_height=\"\"][/fusion_builder_column][fusion_builder_column type=\"2_3\" layout=\"2_3\" last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding_top=\"\" padding_right=\"\" padding_bottom=\"\" padding_left=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\" min_height=\"\"][fusion_text]\r\n<h3 style=\"text-align: justify;\">The garden is large and offers many secluded spots to lose yourself in a book with a glass of wine underneath the shade of a tree, listening to the sounds of the birds and smelling the beautiful flowers.</h3>\r\n[/fusion_text][/fusion_builder_column][fusion_builder_column type=\"1_6\" layout=\"1_6\" last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding_top=\"\" padding_right=\"\" padding_bottom=\"\" padding_left=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\" min_height=\"\"][/fusion_builder_column][fusion_builder_column type=\"1_1\" layout=\"1_1\" background_position=\"left top\" background_color=\"\" border_size=\"\" border_color=\"\" border_style=\"solid\" spacing=\"yes\" background_image=\"\" background_repeat=\"no-repeat\" padding_top=\"\" padding_right=\"\" padding_bottom=\"\" padding_left=\"\" margin_top=\"0px\" margin_bottom=\"0px\" class=\"\" id=\"\" animation_type=\"\" animation_speed=\"0.3\" animation_direction=\"left\" hide_on_mobile=\"no\" center_content=\"no\" min_height=\"none\" last=\"no\" hover_type=\"none\" link=\"\" border_position=\"all\"][fusion_portfolio layout=\"grid\" picture_size=\"auto\" text_layout=\"no_text\" filters=\"no\" columns=\"3\" column_spacing=\"12\" cat_slug=\"gardens\" exclude_cats=\"\" number_posts=\"9\" offset=\"\" excerpt_length=\"35\" strip_html=\"yes\" carousel_layout=\"title_on_rollover\" scroll_items=\"\" autoplay=\"no\" show_nav=\"yes\" mouse_scroll=\"no\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\" /][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container background_color=\"#ffffff\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"65px\" padding_bottom=\"65px\" padding_left=\"\" padding_right=\"\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][fusion_builder_row][fusion_builder_column type=\"1_1\" layout=\"1_1\" background_position=\"left top\" background_color=\"\" border_size=\"\" border_color=\"\" border_style=\"solid\" spacing=\"yes\" background_image=\"\" background_repeat=\"no-repeat\" padding_top=\"\" padding_right=\"\" padding_bottom=\"\" padding_left=\"\" margin_top=\"0px\" margin_bottom=\"0px\" class=\"\" id=\"\" animation_type=\"\" animation_speed=\"0.3\" animation_direction=\"left\" hide_on_mobile=\"no\" center_content=\"no\" min_height=\"none\" last=\"no\" hover_type=\"none\" link=\"\" border_position=\"all\"][fusion_button link=\"https://msla.co.za/lodge/reservations/\" color=\"default\" size=\"xlarge\" stretch=\"default\" type=\"3d\" shape=\"round\" target=\"_self\" title=\"\" button_gradient_top_color=\"#f0f0ed\" button_gradient_bottom_color=\"#f0f0ed\" button_gradient_top_color_hover=\"#6666a4\" button_gradient_bottom_color_hover=\"#6666a4\" accent_color=\"#ffffff\" accent_hover_color=\"#ffffff\" bevel_color=\"\" border_width=\"0px\" icon=\"\" icon_position=\"left\" icon_divider=\"no\" modal=\"\" animation_type=\"0\" animation_direction=\"left\" animation_speed=\"1\" animation_offset=\"\" alignment=\"center\" class=\"\" id=\"\"]Make A Reservation Enquiry[/fusion_button][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container]', 'Home', '', 'inherit', 'closed', 'closed', '', '7-revision-v1', '', '', '2020-05-06 11:42:51', '2020-05-06 09:42:51', '', 7, 'https://msla.co.za/lodge/7-revision-v1/', 0, 'revision', '', 0);
INSERT INTO `wp_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(1440, 1, '2020-05-06 11:44:15', '2020-05-06 09:44:15', '[fusion_builder_container background_color=\"#f0f0ed\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"20\" padding_bottom=\"20\" padding_left=\"\" padding_right=\"\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][fusion_builder_row][fusion_builder_column type=\"1_2\" layout=\"1_2\" spacing=\"yes\" center_content=\"no\" link=\"\" target=\"_self\" min_height=\"\" hide_on_mobile=\"no\" class=\"\" id=\"\" background_image_id=\"\" background_color=\"\" background_image=\"\" background_position=\"left top\" background_repeat=\"no-repeat\" hover_type=\"none\" border_size=\"0\" border_color=\"\" border_style=\"solid\" border_position=\"all\" border_radius_top_left=\"\" border_radius_top_right=\"\" border_radius_bottom_left=\"\" border_radius_bottom_right=\"\" box_shadow=\"no\" box_shadow_vertical=\"\" box_shadow_horizontal=\"\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" box_shadow_color=\"\" box_shadow_style=\"\" padding_top=\"40px\" padding_right=\"\" padding_bottom=\"40px\" padding_left=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.1\" animation_offset=\"\" last=\"no\"][fusion_imageframe image_id=\"1436|full\" max_width=\"\" style_type=\"\" blur=\"\" stylecolor=\"\" hover_type=\"none\" bordersize=\"\" bordercolor=\"\" borderradius=\"\" align=\"center\" lightbox=\"no\" gallery_id=\"\" lightbox_image=\"\" lightbox_image_id=\"\" alt=\"\" link=\"https://sacoronavirus.co.za/?__cf_chl_jschl_tk__=92d64755b6ddb7ea1fc6b815473d8020110b3d40-1588754057-0-ActMiuVPURaXt5nDqTQf4m1A8jJPoB4Nr82bN33Boig-nxuQaQ5JNwIMLl6194VFKvbsQ-iP29-Vipcb2l9vUk7l_oOZLU3zILPcqrj-B1hBdiYeiufX1RDM2LUbOs8FqL4hk4Ns_XnwG0wCLIAUS09YQJaCHRpCOP4yu2PuIzNljDtjmTGQmJDK2vMKwdX-nLGbYWd58RaB4QGTW21-6wpngc2h4VJ5W_qtOb9mTgSVT0DagBLpZNGjJ75syt96cKTQ95m2mf7IlDHyRtyOTrk\" linktarget=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" class=\"\" id=\"\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"\"]https://msla.co.za/lodge/wp-content/uploads/2020/05/covid-w.png[/fusion_imageframe][fusion_text columns=\"\" column_min_width=\"\" column_spacing=\"\" rule_style=\"default\" rule_size=\"\" rule_color=\"\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" class=\"\" id=\"\"]\r\n<p style=\"text-align: center;\"><span style=\"font-size: 14pt;\">Covid-19 Lockdown - Taking \'Essential Services Guests\' as long as they have permits</span></p>\r\n[/fusion_text][fusion_text]\r\n<h1 style=\"text-align: center;\">No Fancy Star Grading\r\nNo Room Service\r\nNo Bed Turn-downs\r\nNo Rose Petals in the Bath water</h1>\r\n<h1 style=\"text-align: center;\">... just old fashioned homely comforts</h1>\r\n[/fusion_text][/fusion_builder_column][fusion_builder_column type=\"1_2\" layout=\"1_2\" last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"\" padding_right=\"\" padding_bottom=\"\" padding_left=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\" min_height=\"\"][fusion_text columns=\"\" column_min_width=\"\" column_spacing=\"\" rule_style=\"default\" rule_size=\"\" rule_color=\"\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" class=\"\" id=\"\"]\r\n<h1 style=\"text-align: center;\">5 Bedroom Family Lodge</h1>\r\n<h3 style=\"text-align: justify;\">We are a four season lodge, because there’s always something to celebrate… We offer comfort, relaxation and privacy right in the heart of 1000 Hills. The Forest, the Gardens, the Atmosphere all speak to  Rest  &amp; Relaxation.</h3>\r\n[/fusion_text][fusion_tagline_box backgroundcolor=\"\" shadow=\"yes\" shadowopacity=\"0.70\" border=\"1\" bordercolor=\"\" highlightposition=\"none\" content_alignment=\"center\" link=\"http://msla.co.za/lodge/reservations\" button=\"Book Now!\" linktarget=\"_self\" modal=\"\" button_size=\"xlarge\" button_type=\"\" button_shape=\"square\" buttoncolor=\"default\" title=\"\" description=\"\" margin_top=\"\" margin_bottom=\"\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" class=\"\" id=\"\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"\"]\r\n<p style=\"text-align: center;\"><span style=\"text-decoration: underline; font-size: 24pt;\">Current Specials</span></p>\r\n<p style=\"text-align: center;\"><span style=\"font-size: 14pt;\">Book on-line - get 15% OF\r\n</span><span style=\"font-size: 14pt;\">Stay 3 days or more - get 25% OFF</span></p>\r\n[/fusion_tagline_box][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" menu_anchor=\"\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" publish_date=\"\" class=\"\" id=\"\" background_color=\"\" background_image=\"\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" video_mp4=\"\" video_webm=\"\" video_ogv=\"\" video_url=\"\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" video_preview_image=\"\" border_size=\"\" border_color=\"\" border_style=\"solid\" margin_top=\"\" margin_bottom=\"\" padding_top=\"\" padding_right=\"\" padding_bottom=\"\" padding_left=\"\"][fusion_builder_row][fusion_builder_column type=\"1_1\" layout=\"1_1\" spacing=\"\" center_content=\"no\" link=\"\" target=\"_self\" min_height=\"\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" class=\"\" id=\"\" background_color=\"\" background_image=\"\" background_image_id=\"\" background_position=\"left top\" background_repeat=\"no-repeat\" hover_type=\"none\" border_size=\"0\" border_color=\"\" border_style=\"solid\" border_position=\"all\" border_radius=\"\" box_shadow=\"no\" dimension_box_shadow=\"\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" box_shadow_color=\"\" box_shadow_style=\"\" padding_top=\"\" padding_right=\"\" padding_bottom=\"\" padding_left=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"\" last=\"no\"][fusion_fusionslider name=\"lodge\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" class=\"\" id=\"\" /][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container background_color=\"#f0f0ed\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"20\" padding_bottom=\"20\" padding_left=\"\" padding_right=\"\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][fusion_builder_row][fusion_builder_column type=\"1_2\" layout=\"1_2\" last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"\" padding_right=\"\" padding_bottom=\"\" padding_left=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\" min_height=\"\"][fusion_text]\r\n<h3 style=\"text-align: justify;\">Set in the rolling peaks and valleys of a thousand hills surrounded by a canopy of indigenous trees, you will find that horses still have right of way, we certainly offer the best of both worlds, farm and charm coupled with modern amenities that will have you feeling relaxed and rejuvenated.</h3>\r\n<h3 style=\"text-align: justify;\">We know that sometimes you are searching for a romantic getaway or maybe a few days away with old friends. Other times you are searching for a place to host a weekend, family reunion or a business retreat. In addition to nightly room rentals, our lodge is also available for meetings, retreats  and makes the perfect place for a wedding party to stay together and get ready for the big day. Regardless, with our five comfortable and cozy guest bedrooms, multiple garden spaces and hideaways, and a  large private deck  where you can take a nap or read a book we definitely have the room for you!</h3>\r\n<h3 style=\"text-align: justify;\">Evenings are quiet and peaceful taking you far away from the business of city life. This is a unique and memorable country experience. We look forward to having you as a guest!</h3>\r\n[/fusion_text][/fusion_builder_column][fusion_builder_column type=\"1_2\" layout=\"1_2\" last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"\" padding_right=\"\" padding_bottom=\"\" padding_left=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\" min_height=\"\"][fusion_text]\r\n<h3 style=\"text-align: justify;\">Our lodge has been in our family for years and has recently been beautifully renovated. Five rooms all with en-suite showers lead off your own large central lounge, featuring a 36 foot high vaulted ceiling, offering spacious living, dining, and a bar/conversational lounge area which includes a fitted kitchenette, all adding to a sense of homely comfort. Sumptuous meals can be provided on request and served on the bottom deck at the swimming pool.</h3>\r\n<h3 style=\"text-align: justify;\">Be lulled to sleep by the sound of the waterfall and tinkling stream just outside your window, waking from a peaceful night\'s sleep in a pillow-top bed dressed in luxurious linens to coddle you in ultimate comfort.</h3>\r\n<h3 style=\"text-align: justify;\">Our property boasts many different species of birds and animals. We have a resident otter, a family of wild bush pigs,  a family of rock rabbits, porcupine, little blue duikers, a variety of different frogs and an abundance of bird life, including the occasional snakes that pass through!</h3>\r\n[/fusion_text][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container background_color=\"#f0f0ed\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"20\" padding_bottom=\"20\" padding_left=\"\" padding_right=\"\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][fusion_builder_row][fusion_builder_column type=\"1_1\" layout=\"1_1\" background_position=\"left top\" background_color=\"\" border_size=\"\" border_color=\"\" border_style=\"solid\" spacing=\"yes\" background_image=\"\" background_repeat=\"no-repeat\" padding_top=\"\" padding_right=\"\" padding_bottom=\"\" padding_left=\"\" margin_top=\"0px\" margin_bottom=\"0px\" class=\"\" id=\"\" animation_type=\"\" animation_speed=\"0.3\" animation_direction=\"left\" hide_on_mobile=\"no\" center_content=\"no\" min_height=\"none\" last=\"no\" hover_type=\"none\" link=\"\" border_position=\"all\"][fusion_text]\r\n<h1 style=\"text-align: center;\">Gallery</h1>\r\n[/fusion_text][fusion_separator style_type=\"single solid\" top_margin=\"\" bottom_margin=\"40\" sep_color=\"#000000\" border_size=\"\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"170px\" alignment=\"\" class=\"\" id=\"\" /][/fusion_builder_column][fusion_builder_column type=\"1_6\" layout=\"1_6\" last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding_top=\"\" padding_right=\"\" padding_bottom=\"\" padding_left=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\" min_height=\"\"][/fusion_builder_column][fusion_builder_column type=\"2_3\" layout=\"2_3\" last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding_top=\"\" padding_right=\"\" padding_bottom=\"\" padding_left=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\" min_height=\"\"][fusion_text]\r\n<h3 style=\"text-align: justify;\">The Lodge is open, spacious, comfortable and homely. During hot summer days, sit and bask in the sun on the deck  with one of our  picnic specials. In winter, snuggle up with a good book or challenge one another to a friendly board game in the glassed nook area .</h3>\r\n[/fusion_text][/fusion_builder_column][fusion_builder_column type=\"1_6\" layout=\"1_6\" last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding_top=\"\" padding_right=\"\" padding_bottom=\"\" padding_left=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\" min_height=\"\"][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container background_color=\"#f0f0ed\" background_image=\"http://localhost/assagaylodge/wp-content/uploads/2015/01/Wood_Texture.jpg\" background_parallax=\"fixed\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"30\" padding_bottom=\"10\" padding_left=\"0\" padding_right=\"0\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][fusion_builder_row][fusion_builder_column type=\"1_1\" layout=\"1_1\" background_position=\"left top\" background_color=\"\" border_size=\"\" border_color=\"\" border_style=\"solid\" spacing=\"yes\" background_image=\"\" background_repeat=\"no-repeat\" padding_top=\"\" padding_right=\"\" padding_bottom=\"\" padding_left=\"\" margin_top=\"0px\" margin_bottom=\"0px\" class=\"\" id=\"\" animation_type=\"\" animation_speed=\"0.3\" animation_direction=\"left\" hide_on_mobile=\"no\" center_content=\"no\" min_height=\"none\" last=\"no\" hover_type=\"none\" link=\"\" border_position=\"all\"][fusion_portfolio layout=\"grid\" picture_size=\"auto\" text_layout=\"no_text\" filters=\"no\" columns=\"3\" column_spacing=\"12\" cat_slug=\"the-lodge\" exclude_cats=\"\" number_posts=\"9\" offset=\"\" excerpt_length=\"35\" strip_html=\"yes\" carousel_layout=\"title_on_rollover\" scroll_items=\"\" autoplay=\"no\" show_nav=\"yes\" mouse_scroll=\"no\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\" /][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container background_color=\"#f0f0ed\" background_image=\"\" background_parallax=\"fixed\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"20\" padding_bottom=\"20\" padding_left=\"\" padding_right=\"\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][fusion_builder_row][fusion_builder_column type=\"1_1\" layout=\"1_1\" background_position=\"left top\" background_color=\"\" border_size=\"\" border_color=\"\" border_style=\"solid\" spacing=\"yes\" background_image=\"\" background_repeat=\"no-repeat\" padding_top=\"\" padding_right=\"\" padding_bottom=\"\" padding_left=\"\" margin_top=\"0px\" margin_bottom=\"0px\" class=\"\" id=\"\" animation_type=\"\" animation_speed=\"0.3\" animation_direction=\"left\" hide_on_mobile=\"no\" center_content=\"no\" min_height=\"none\" last=\"no\" hover_type=\"none\" link=\"\" border_position=\"all\"][fusion_text]\r\n<h1 style=\"text-align: center;\">BEDROOMS</h1>\r\n[/fusion_text][fusion_separator style_type=\"single solid\" top_margin=\"\" bottom_margin=\"20\" sep_color=\"#000000\" border_size=\"\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"170px\" alignment=\"\" class=\"\" id=\"\" /][/fusion_builder_column][fusion_builder_column type=\"1_6\" layout=\"1_6\" last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding_top=\"\" padding_right=\"\" padding_bottom=\"\" padding_left=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\" min_height=\"\"][/fusion_builder_column][fusion_builder_column type=\"2_3\" layout=\"2_3\" last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding_top=\"\" padding_right=\"\" padding_bottom=\"\" padding_left=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\" min_height=\"\"][fusion_text]\r\n<h3 style=\"text-align: justify;\">When it comes to our bedrooms we’re proud to say we offer something a little more special. One of five  lovingly and tastefully decorated guest rooms. Soft gray decor soothes the senses providing a peaceful, blissfully comfortable rest from your travels and hectic lives.</h3>\r\n<h3 style=\"text-align: justify;\">Our  bedrooms are spacious, clean, comfortable all en-suite, equipped with either king size or queen size beds. Each room sleeps two guests. The rooms have high ceilings, wall heaters &amp; ceiling fans. Beds all have electric blankets in Winter, 100% cotton percale sheets and thick hyper allergenic microfiber duvets and pillows. All guest rooms are cleaned with organic and green products. Amenities include hairdryers in each room. Three rooms feature King-sized beds  of which two can be  split into two single beds. Two  rooms can therefore be changed into a twin room upon request. Two rooms feature a Queen-sized double bed. These beds cannot be split into twin beds.</h3>\r\n[/fusion_text][/fusion_builder_column][fusion_builder_column type=\"1_6\" layout=\"1_6\" last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding_top=\"\" padding_right=\"\" padding_bottom=\"\" padding_left=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\" min_height=\"\"][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container background_color=\"\" background_image=\"http://localhost/assagaylodge/wp-content/uploads/2015/01/DSC01516-1148-x-764.jpg\" background_parallax=\"fixed\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"center center\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"20\" padding_bottom=\"20\" padding_left=\"0\" padding_right=\"0\" hundred_percent=\"no\" equal_height_columns=\"yes\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][fusion_builder_row][fusion_builder_column type=\"1_1\" layout=\"1_1\" background_position=\"left top\" background_color=\"\" border_size=\"\" border_color=\"\" border_style=\"solid\" spacing=\"yes\" background_image=\"\" background_repeat=\"no-repeat\" padding_top=\"\" padding_right=\"\" padding_bottom=\"\" padding_left=\"\" margin_top=\"0px\" margin_bottom=\"0px\" class=\"\" id=\"\" animation_type=\"\" animation_speed=\"0.3\" animation_direction=\"left\" hide_on_mobile=\"no\" center_content=\"no\" min_height=\"none\" last=\"no\" hover_type=\"none\" link=\"\" border_position=\"all\"][fusion_portfolio layout=\"grid\" picture_size=\"auto\" text_layout=\"no_text\" filters=\"no\" columns=\"3\" column_spacing=\"12\" cat_slug=\"bedrooms\" exclude_cats=\"\" number_posts=\"6\" offset=\"\" excerpt_length=\"35\" strip_html=\"yes\" carousel_layout=\"title_on_rollover\" scroll_items=\"\" autoplay=\"no\" show_nav=\"yes\" mouse_scroll=\"no\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\" /][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container background_color=\"#f0f0ed\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"20\" padding_bottom=\"20\" padding_left=\"0\" padding_right=\"0\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][fusion_builder_row][fusion_builder_column type=\"1_1\" layout=\"1_1\" background_position=\"left top\" background_color=\"\" border_size=\"\" border_color=\"\" border_style=\"solid\" spacing=\"yes\" background_image=\"\" background_repeat=\"no-repeat\" padding_top=\"\" padding_right=\"\" padding_bottom=\"\" padding_left=\"\" margin_top=\"0px\" margin_bottom=\"0px\" class=\"\" id=\"\" animation_type=\"\" animation_speed=\"0.3\" animation_direction=\"left\" hide_on_mobile=\"no\" center_content=\"no\" min_height=\"none\" last=\"no\" hover_type=\"none\" link=\"\" border_position=\"all\"][fusion_text]\r\n<h1 style=\"text-align: center;\">GARDENS</h1>\r\n[/fusion_text][fusion_separator style_type=\"single solid\" top_margin=\"\" bottom_margin=\"20\" sep_color=\"#000000\" border_size=\"\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"170px\" alignment=\"\" class=\"\" id=\"\" /][/fusion_builder_column][fusion_builder_column type=\"1_6\" layout=\"1_6\" last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding_top=\"\" padding_right=\"\" padding_bottom=\"\" padding_left=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\" min_height=\"\"][/fusion_builder_column][fusion_builder_column type=\"2_3\" layout=\"2_3\" last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding_top=\"\" padding_right=\"\" padding_bottom=\"\" padding_left=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\" min_height=\"\"][fusion_text]\r\n<h3 style=\"text-align: justify;\">The garden is large and offers many secluded spots to lose yourself in a book with a glass of wine underneath the shade of a tree, listening to the sounds of the birds and smelling the beautiful flowers.</h3>\r\n[/fusion_text][/fusion_builder_column][fusion_builder_column type=\"1_6\" layout=\"1_6\" last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding_top=\"\" padding_right=\"\" padding_bottom=\"\" padding_left=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\" min_height=\"\"][/fusion_builder_column][fusion_builder_column type=\"1_1\" layout=\"1_1\" background_position=\"left top\" background_color=\"\" border_size=\"\" border_color=\"\" border_style=\"solid\" spacing=\"yes\" background_image=\"\" background_repeat=\"no-repeat\" padding_top=\"\" padding_right=\"\" padding_bottom=\"\" padding_left=\"\" margin_top=\"0px\" margin_bottom=\"0px\" class=\"\" id=\"\" animation_type=\"\" animation_speed=\"0.3\" animation_direction=\"left\" hide_on_mobile=\"no\" center_content=\"no\" min_height=\"none\" last=\"no\" hover_type=\"none\" link=\"\" border_position=\"all\"][fusion_portfolio layout=\"grid\" picture_size=\"auto\" text_layout=\"no_text\" filters=\"no\" columns=\"3\" column_spacing=\"12\" cat_slug=\"gardens\" exclude_cats=\"\" number_posts=\"9\" offset=\"\" excerpt_length=\"35\" strip_html=\"yes\" carousel_layout=\"title_on_rollover\" scroll_items=\"\" autoplay=\"no\" show_nav=\"yes\" mouse_scroll=\"no\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\" /][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container background_color=\"#ffffff\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"65px\" padding_bottom=\"65px\" padding_left=\"\" padding_right=\"\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][fusion_builder_row][fusion_builder_column type=\"1_1\" layout=\"1_1\" background_position=\"left top\" background_color=\"\" border_size=\"\" border_color=\"\" border_style=\"solid\" spacing=\"yes\" background_image=\"\" background_repeat=\"no-repeat\" padding_top=\"\" padding_right=\"\" padding_bottom=\"\" padding_left=\"\" margin_top=\"0px\" margin_bottom=\"0px\" class=\"\" id=\"\" animation_type=\"\" animation_speed=\"0.3\" animation_direction=\"left\" hide_on_mobile=\"no\" center_content=\"no\" min_height=\"none\" last=\"no\" hover_type=\"none\" link=\"\" border_position=\"all\"][fusion_button link=\"https://msla.co.za/lodge/reservations/\" color=\"default\" size=\"xlarge\" stretch=\"default\" type=\"3d\" shape=\"round\" target=\"_self\" title=\"\" button_gradient_top_color=\"#f0f0ed\" button_gradient_bottom_color=\"#f0f0ed\" button_gradient_top_color_hover=\"#6666a4\" button_gradient_bottom_color_hover=\"#6666a4\" accent_color=\"#ffffff\" accent_hover_color=\"#ffffff\" bevel_color=\"\" border_width=\"0px\" icon=\"\" icon_position=\"left\" icon_divider=\"no\" modal=\"\" animation_type=\"0\" animation_direction=\"left\" animation_speed=\"1\" animation_offset=\"\" alignment=\"center\" class=\"\" id=\"\"]Make A Reservation Enquiry[/fusion_button][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container]', 'Home', '', 'inherit', 'closed', 'closed', '', '7-revision-v1', '', '', '2020-05-06 11:44:15', '2020-05-06 09:44:15', '', 7, 'https://msla.co.za/lodge/7-revision-v1/', 0, 'revision', '', 0);
INSERT INTO `wp_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(1441, 1, '2020-05-06 14:41:55', '2020-05-06 12:41:55', '[fusion_builder_container background_color=\"#f0f0ed\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"20\" padding_bottom=\"20\" padding_left=\"\" padding_right=\"\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][fusion_builder_row][fusion_builder_column type=\"1_2\" layout=\"1_2\" spacing=\"yes\" center_content=\"no\" link=\"\" target=\"_self\" min_height=\"\" hide_on_mobile=\"no\" class=\"\" id=\"\" background_image_id=\"\" background_color=\"\" background_image=\"\" background_position=\"left top\" background_repeat=\"no-repeat\" hover_type=\"none\" border_size=\"0\" border_color=\"\" border_style=\"solid\" border_position=\"all\" border_radius_top_left=\"\" border_radius_top_right=\"\" border_radius_bottom_left=\"\" border_radius_bottom_right=\"\" box_shadow=\"no\" box_shadow_vertical=\"\" box_shadow_horizontal=\"\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" box_shadow_color=\"\" box_shadow_style=\"\" padding_top=\"40px\" padding_right=\"\" padding_bottom=\"40px\" padding_left=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.1\" animation_offset=\"\" last=\"no\"][fusion_imageframe image_id=\"1436|full\" max_width=\"\" style_type=\"\" blur=\"\" stylecolor=\"\" hover_type=\"none\" bordersize=\"\" bordercolor=\"\" borderradius=\"\" align=\"center\" lightbox=\"no\" gallery_id=\"\" lightbox_image=\"\" lightbox_image_id=\"\" alt=\"\" link=\"https://sacoronavirus.co.za/?__cf_chl_jschl_tk__=92d64755b6ddb7ea1fc6b815473d8020110b3d40-1588754057-0-ActMiuVPURaXt5nDqTQf4m1A8jJPoB4Nr82bN33Boig-nxuQaQ5JNwIMLl6194VFKvbsQ-iP29-Vipcb2l9vUk7l_oOZLU3zILPcqrj-B1hBdiYeiufX1RDM2LUbOs8FqL4hk4Ns_XnwG0wCLIAUS09YQJaCHRpCOP4yu2PuIzNljDtjmTGQmJDK2vMKwdX-nLGbYWd58RaB4QGTW21-6wpngc2h4VJ5W_qtOb9mTgSVT0DagBLpZNGjJ75syt96cKTQ95m2mf7IlDHyRtyOTrk\" linktarget=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" class=\"\" id=\"\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"\"]https://msla.co.za/lodge/wp-content/uploads/2020/05/covid-w.png[/fusion_imageframe][fusion_text columns=\"\" column_min_width=\"\" column_spacing=\"\" rule_style=\"default\" rule_size=\"\" rule_color=\"\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" class=\"\" id=\"\"]<p style=\"text-align: center;\"><span style=\"font-size: 14pt;\">Covid-19 Lockdown - Taking \'Essential Services Guests\' &amp; Self-Catering Residential Bookings</span></p>[/fusion_text][fusion_text]\r\n<h1 style=\"text-align: center;\">No Fancy Star Grading\r\nNo Room Service\r\nNo Bed Turn-downs\r\nNo Rose Petals in the Bath water</h1>\r\n<h1 style=\"text-align: center;\">... just old fashioned homely comforts</h1>\r\n[/fusion_text][/fusion_builder_column][fusion_builder_column type=\"1_2\" layout=\"1_2\" last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"\" padding_right=\"\" padding_bottom=\"\" padding_left=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\" min_height=\"\"][fusion_text columns=\"\" column_min_width=\"\" column_spacing=\"\" rule_style=\"default\" rule_size=\"\" rule_color=\"\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" class=\"\" id=\"\"]\r\n<h1 style=\"text-align: center;\">5 Bedroom Family Lodge</h1>\r\n<h3 style=\"text-align: justify;\">We are a four season lodge, because there’s always something to celebrate… We offer comfort, relaxation and privacy right in the heart of 1000 Hills. The Forest, the Gardens, the Atmosphere all speak to  Rest  &amp; Relaxation.</h3>\r\n[/fusion_text][fusion_tagline_box backgroundcolor=\"\" shadow=\"yes\" shadowopacity=\"0.70\" border=\"1\" bordercolor=\"\" highlightposition=\"none\" content_alignment=\"center\" link=\"http://msla.co.za/lodge/reservations\" button=\"Book Now!\" linktarget=\"_self\" modal=\"\" button_size=\"xlarge\" button_type=\"\" button_shape=\"square\" buttoncolor=\"default\" title=\"\" description=\"\" margin_top=\"\" margin_bottom=\"\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" class=\"\" id=\"\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"\"]\r\n<p style=\"text-align: center;\"><span style=\"text-decoration: underline; font-size: 24pt;\">Current Specials</span></p>\r\n<p style=\"text-align: center;\"><span style=\"font-size: 14pt;\">Book on-line - get 15% OF\r\n</span><span style=\"font-size: 14pt;\">Stay 3 days or more - get 25% OFF</span></p>\r\n[/fusion_tagline_box][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" menu_anchor=\"\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" publish_date=\"\" class=\"\" id=\"\" background_color=\"\" background_image=\"\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" video_mp4=\"\" video_webm=\"\" video_ogv=\"\" video_url=\"\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" video_preview_image=\"\" border_size=\"\" border_color=\"\" border_style=\"solid\" margin_top=\"\" margin_bottom=\"\" padding_top=\"\" padding_right=\"\" padding_bottom=\"\" padding_left=\"\"][fusion_builder_row][fusion_builder_column type=\"1_1\" layout=\"1_1\" spacing=\"\" center_content=\"no\" link=\"\" target=\"_self\" min_height=\"\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" class=\"\" id=\"\" background_color=\"\" background_image=\"\" background_image_id=\"\" background_position=\"left top\" background_repeat=\"no-repeat\" hover_type=\"none\" border_size=\"0\" border_color=\"\" border_style=\"solid\" border_position=\"all\" border_radius=\"\" box_shadow=\"no\" dimension_box_shadow=\"\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" box_shadow_color=\"\" box_shadow_style=\"\" padding_top=\"\" padding_right=\"\" padding_bottom=\"\" padding_left=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"\" last=\"no\"][fusion_fusionslider name=\"lodge\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" class=\"\" id=\"\" /][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container background_color=\"#f0f0ed\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"20\" padding_bottom=\"20\" padding_left=\"\" padding_right=\"\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][fusion_builder_row][fusion_builder_column type=\"1_2\" layout=\"1_2\" last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"\" padding_right=\"\" padding_bottom=\"\" padding_left=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\" min_height=\"\"][fusion_text]\r\n<h3 style=\"text-align: justify;\">Set in the rolling peaks and valleys of a thousand hills surrounded by a canopy of indigenous trees, you will find that horses still have right of way, we certainly offer the best of both worlds, farm and charm coupled with modern amenities that will have you feeling relaxed and rejuvenated.</h3>\r\n<h3 style=\"text-align: justify;\">We know that sometimes you are searching for a romantic getaway or maybe a few days away with old friends. Other times you are searching for a place to host a weekend, family reunion or a business retreat. In addition to nightly room rentals, our lodge is also available for meetings, retreats  and makes the perfect place for a wedding party to stay together and get ready for the big day. Regardless, with our five comfortable and cozy guest bedrooms, multiple garden spaces and hideaways, and a  large private deck  where you can take a nap or read a book we definitely have the room for you!</h3>\r\n<h3 style=\"text-align: justify;\">Evenings are quiet and peaceful taking you far away from the business of city life. This is a unique and memorable country experience. We look forward to having you as a guest!</h3>\r\n[/fusion_text][/fusion_builder_column][fusion_builder_column type=\"1_2\" layout=\"1_2\" last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"\" padding_right=\"\" padding_bottom=\"\" padding_left=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\" min_height=\"\"][fusion_text]\r\n<h3 style=\"text-align: justify;\">Our lodge has been in our family for years and has recently been beautifully renovated. Five rooms all with en-suite showers lead off your own large central lounge, featuring a 36 foot high vaulted ceiling, offering spacious living, dining, and a bar/conversational lounge area which includes a fitted kitchenette, all adding to a sense of homely comfort. Sumptuous meals can be provided on request and served on the bottom deck at the swimming pool.</h3>\r\n<h3 style=\"text-align: justify;\">Be lulled to sleep by the sound of the waterfall and tinkling stream just outside your window, waking from a peaceful night\'s sleep in a pillow-top bed dressed in luxurious linens to coddle you in ultimate comfort.</h3>\r\n<h3 style=\"text-align: justify;\">Our property boasts many different species of birds and animals. We have a resident otter, a family of wild bush pigs,  a family of rock rabbits, porcupine, little blue duikers, a variety of different frogs and an abundance of bird life, including the occasional snakes that pass through!</h3>\r\n[/fusion_text][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container background_color=\"#f0f0ed\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"20\" padding_bottom=\"20\" padding_left=\"\" padding_right=\"\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][fusion_builder_row][fusion_builder_column type=\"1_1\" layout=\"1_1\" background_position=\"left top\" background_color=\"\" border_size=\"\" border_color=\"\" border_style=\"solid\" spacing=\"yes\" background_image=\"\" background_repeat=\"no-repeat\" padding_top=\"\" padding_right=\"\" padding_bottom=\"\" padding_left=\"\" margin_top=\"0px\" margin_bottom=\"0px\" class=\"\" id=\"\" animation_type=\"\" animation_speed=\"0.3\" animation_direction=\"left\" hide_on_mobile=\"no\" center_content=\"no\" min_height=\"none\" last=\"no\" hover_type=\"none\" link=\"\" border_position=\"all\"][fusion_text]\r\n<h1 style=\"text-align: center;\">Gallery</h1>\r\n[/fusion_text][fusion_separator style_type=\"single solid\" top_margin=\"\" bottom_margin=\"40\" sep_color=\"#000000\" border_size=\"\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"170px\" alignment=\"\" class=\"\" id=\"\" /][/fusion_builder_column][fusion_builder_column type=\"1_6\" layout=\"1_6\" last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding_top=\"\" padding_right=\"\" padding_bottom=\"\" padding_left=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\" min_height=\"\"][/fusion_builder_column][fusion_builder_column type=\"2_3\" layout=\"2_3\" last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding_top=\"\" padding_right=\"\" padding_bottom=\"\" padding_left=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\" min_height=\"\"][fusion_text]\r\n<h3 style=\"text-align: justify;\">The Lodge is open, spacious, comfortable and homely. During hot summer days, sit and bask in the sun on the deck  with one of our  picnic specials. In winter, snuggle up with a good book or challenge one another to a friendly board game in the glassed nook area .</h3>\r\n[/fusion_text][/fusion_builder_column][fusion_builder_column type=\"1_6\" layout=\"1_6\" last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding_top=\"\" padding_right=\"\" padding_bottom=\"\" padding_left=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\" min_height=\"\"][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container background_color=\"#f0f0ed\" background_image=\"http://localhost/assagaylodge/wp-content/uploads/2015/01/Wood_Texture.jpg\" background_parallax=\"fixed\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"30\" padding_bottom=\"10\" padding_left=\"0\" padding_right=\"0\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][fusion_builder_row][fusion_builder_column type=\"1_1\" layout=\"1_1\" background_position=\"left top\" background_color=\"\" border_size=\"\" border_color=\"\" border_style=\"solid\" spacing=\"yes\" background_image=\"\" background_repeat=\"no-repeat\" padding_top=\"\" padding_right=\"\" padding_bottom=\"\" padding_left=\"\" margin_top=\"0px\" margin_bottom=\"0px\" class=\"\" id=\"\" animation_type=\"\" animation_speed=\"0.3\" animation_direction=\"left\" hide_on_mobile=\"no\" center_content=\"no\" min_height=\"none\" last=\"no\" hover_type=\"none\" link=\"\" border_position=\"all\"][fusion_portfolio layout=\"grid\" picture_size=\"auto\" text_layout=\"no_text\" filters=\"no\" columns=\"3\" column_spacing=\"12\" cat_slug=\"the-lodge\" exclude_cats=\"\" number_posts=\"9\" offset=\"\" excerpt_length=\"35\" strip_html=\"yes\" carousel_layout=\"title_on_rollover\" scroll_items=\"\" autoplay=\"no\" show_nav=\"yes\" mouse_scroll=\"no\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\" /][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container background_color=\"#f0f0ed\" background_image=\"\" background_parallax=\"fixed\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"20\" padding_bottom=\"20\" padding_left=\"\" padding_right=\"\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][fusion_builder_row][fusion_builder_column type=\"1_1\" layout=\"1_1\" background_position=\"left top\" background_color=\"\" border_size=\"\" border_color=\"\" border_style=\"solid\" spacing=\"yes\" background_image=\"\" background_repeat=\"no-repeat\" padding_top=\"\" padding_right=\"\" padding_bottom=\"\" padding_left=\"\" margin_top=\"0px\" margin_bottom=\"0px\" class=\"\" id=\"\" animation_type=\"\" animation_speed=\"0.3\" animation_direction=\"left\" hide_on_mobile=\"no\" center_content=\"no\" min_height=\"none\" last=\"no\" hover_type=\"none\" link=\"\" border_position=\"all\"][fusion_text]\r\n<h1 style=\"text-align: center;\">BEDROOMS</h1>\r\n[/fusion_text][fusion_separator style_type=\"single solid\" top_margin=\"\" bottom_margin=\"20\" sep_color=\"#000000\" border_size=\"\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"170px\" alignment=\"\" class=\"\" id=\"\" /][/fusion_builder_column][fusion_builder_column type=\"1_6\" layout=\"1_6\" last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding_top=\"\" padding_right=\"\" padding_bottom=\"\" padding_left=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\" min_height=\"\"][/fusion_builder_column][fusion_builder_column type=\"2_3\" layout=\"2_3\" last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding_top=\"\" padding_right=\"\" padding_bottom=\"\" padding_left=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\" min_height=\"\"][fusion_text]\r\n<h3 style=\"text-align: justify;\">When it comes to our bedrooms we’re proud to say we offer something a little more special. One of five  lovingly and tastefully decorated guest rooms. Soft gray decor soothes the senses providing a peaceful, blissfully comfortable rest from your travels and hectic lives.</h3>\r\n<h3 style=\"text-align: justify;\">Our  bedrooms are spacious, clean, comfortable all en-suite, equipped with either king size or queen size beds. Each room sleeps two guests. The rooms have high ceilings, wall heaters &amp; ceiling fans. Beds all have electric blankets in Winter, 100% cotton percale sheets and thick hyper allergenic microfiber duvets and pillows. All guest rooms are cleaned with organic and green products. Amenities include hairdryers in each room. Three rooms feature King-sized beds  of which two can be  split into two single beds. Two  rooms can therefore be changed into a twin room upon request. Two rooms feature a Queen-sized double bed. These beds cannot be split into twin beds.</h3>\r\n[/fusion_text][/fusion_builder_column][fusion_builder_column type=\"1_6\" layout=\"1_6\" last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding_top=\"\" padding_right=\"\" padding_bottom=\"\" padding_left=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\" min_height=\"\"][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container background_color=\"\" background_image=\"http://localhost/assagaylodge/wp-content/uploads/2015/01/DSC01516-1148-x-764.jpg\" background_parallax=\"fixed\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"center center\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"20\" padding_bottom=\"20\" padding_left=\"0\" padding_right=\"0\" hundred_percent=\"no\" equal_height_columns=\"yes\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][fusion_builder_row][fusion_builder_column type=\"1_1\" layout=\"1_1\" background_position=\"left top\" background_color=\"\" border_size=\"\" border_color=\"\" border_style=\"solid\" spacing=\"yes\" background_image=\"\" background_repeat=\"no-repeat\" padding_top=\"\" padding_right=\"\" padding_bottom=\"\" padding_left=\"\" margin_top=\"0px\" margin_bottom=\"0px\" class=\"\" id=\"\" animation_type=\"\" animation_speed=\"0.3\" animation_direction=\"left\" hide_on_mobile=\"no\" center_content=\"no\" min_height=\"none\" last=\"no\" hover_type=\"none\" link=\"\" border_position=\"all\"][fusion_portfolio layout=\"grid\" picture_size=\"auto\" text_layout=\"no_text\" filters=\"no\" columns=\"3\" column_spacing=\"12\" cat_slug=\"bedrooms\" exclude_cats=\"\" number_posts=\"6\" offset=\"\" excerpt_length=\"35\" strip_html=\"yes\" carousel_layout=\"title_on_rollover\" scroll_items=\"\" autoplay=\"no\" show_nav=\"yes\" mouse_scroll=\"no\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\" /][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container background_color=\"#f0f0ed\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"20\" padding_bottom=\"20\" padding_left=\"0\" padding_right=\"0\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][fusion_builder_row][fusion_builder_column type=\"1_1\" layout=\"1_1\" background_position=\"left top\" background_color=\"\" border_size=\"\" border_color=\"\" border_style=\"solid\" spacing=\"yes\" background_image=\"\" background_repeat=\"no-repeat\" padding_top=\"\" padding_right=\"\" padding_bottom=\"\" padding_left=\"\" margin_top=\"0px\" margin_bottom=\"0px\" class=\"\" id=\"\" animation_type=\"\" animation_speed=\"0.3\" animation_direction=\"left\" hide_on_mobile=\"no\" center_content=\"no\" min_height=\"none\" last=\"no\" hover_type=\"none\" link=\"\" border_position=\"all\"][fusion_text]\r\n<h1 style=\"text-align: center;\">GARDENS</h1>\r\n[/fusion_text][fusion_separator style_type=\"single solid\" top_margin=\"\" bottom_margin=\"20\" sep_color=\"#000000\" border_size=\"\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"170px\" alignment=\"\" class=\"\" id=\"\" /][/fusion_builder_column][fusion_builder_column type=\"1_6\" layout=\"1_6\" last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding_top=\"\" padding_right=\"\" padding_bottom=\"\" padding_left=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\" min_height=\"\"][/fusion_builder_column][fusion_builder_column type=\"2_3\" layout=\"2_3\" last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding_top=\"\" padding_right=\"\" padding_bottom=\"\" padding_left=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\" min_height=\"\"][fusion_text]\r\n<h3 style=\"text-align: justify;\">The garden is large and offers many secluded spots to lose yourself in a book with a glass of wine underneath the shade of a tree, listening to the sounds of the birds and smelling the beautiful flowers.</h3>\r\n[/fusion_text][/fusion_builder_column][fusion_builder_column type=\"1_6\" layout=\"1_6\" last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding_top=\"\" padding_right=\"\" padding_bottom=\"\" padding_left=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\" min_height=\"\"][/fusion_builder_column][fusion_builder_column type=\"1_1\" layout=\"1_1\" background_position=\"left top\" background_color=\"\" border_size=\"\" border_color=\"\" border_style=\"solid\" spacing=\"yes\" background_image=\"\" background_repeat=\"no-repeat\" padding_top=\"\" padding_right=\"\" padding_bottom=\"\" padding_left=\"\" margin_top=\"0px\" margin_bottom=\"0px\" class=\"\" id=\"\" animation_type=\"\" animation_speed=\"0.3\" animation_direction=\"left\" hide_on_mobile=\"no\" center_content=\"no\" min_height=\"none\" last=\"no\" hover_type=\"none\" link=\"\" border_position=\"all\"][fusion_portfolio layout=\"grid\" picture_size=\"auto\" text_layout=\"no_text\" filters=\"no\" columns=\"3\" column_spacing=\"12\" cat_slug=\"gardens\" exclude_cats=\"\" number_posts=\"9\" offset=\"\" excerpt_length=\"35\" strip_html=\"yes\" carousel_layout=\"title_on_rollover\" scroll_items=\"\" autoplay=\"no\" show_nav=\"yes\" mouse_scroll=\"no\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\" /][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container background_color=\"#ffffff\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"65px\" padding_bottom=\"65px\" padding_left=\"\" padding_right=\"\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][fusion_builder_row][fusion_builder_column type=\"1_1\" layout=\"1_1\" background_position=\"left top\" background_color=\"\" border_size=\"\" border_color=\"\" border_style=\"solid\" spacing=\"yes\" background_image=\"\" background_repeat=\"no-repeat\" padding_top=\"\" padding_right=\"\" padding_bottom=\"\" padding_left=\"\" margin_top=\"0px\" margin_bottom=\"0px\" class=\"\" id=\"\" animation_type=\"\" animation_speed=\"0.3\" animation_direction=\"left\" hide_on_mobile=\"no\" center_content=\"no\" min_height=\"none\" last=\"no\" hover_type=\"none\" link=\"\" border_position=\"all\"][fusion_button link=\"https://msla.co.za/lodge/reservations/\" color=\"default\" size=\"xlarge\" stretch=\"default\" type=\"3d\" shape=\"round\" target=\"_self\" title=\"\" button_gradient_top_color=\"#f0f0ed\" button_gradient_bottom_color=\"#f0f0ed\" button_gradient_top_color_hover=\"#6666a4\" button_gradient_bottom_color_hover=\"#6666a4\" accent_color=\"#ffffff\" accent_hover_color=\"#ffffff\" bevel_color=\"\" border_width=\"0px\" icon=\"\" icon_position=\"left\" icon_divider=\"no\" modal=\"\" animation_type=\"0\" animation_direction=\"left\" animation_speed=\"1\" animation_offset=\"\" alignment=\"center\" class=\"\" id=\"\"]Make A Reservation Enquiry[/fusion_button][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container]', 'Home', '', 'inherit', 'closed', 'closed', '', '7-revision-v1', '', '', '2020-05-06 14:41:55', '2020-05-06 12:41:55', '', 7, 'https://msla.co.za/lodge/7-revision-v1/', 0, 'revision', '', 0);
INSERT INTO `wp_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(1443, 1, '2020-08-24 12:45:36', '2020-08-24 10:45:36', '[fusion_builder_container background_color=\"#f0f0ed\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"20\" padding_bottom=\"20\" padding_left=\"\" padding_right=\"\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][fusion_builder_row][fusion_builder_column type=\"1_2\" layout=\"1_2\" spacing=\"yes\" center_content=\"no\" link=\"\" target=\"_self\" min_height=\"\" hide_on_mobile=\"no\" class=\"\" id=\"\" background_image_id=\"\" background_color=\"\" background_image=\"\" background_position=\"left top\" background_repeat=\"no-repeat\" hover_type=\"none\" border_size=\"0\" border_color=\"\" border_style=\"solid\" border_position=\"all\" border_radius_top_left=\"\" border_radius_top_right=\"\" border_radius_bottom_left=\"\" border_radius_bottom_right=\"\" box_shadow=\"no\" box_shadow_vertical=\"\" box_shadow_horizontal=\"\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" box_shadow_color=\"\" box_shadow_style=\"\" padding_top=\"40px\" padding_right=\"\" padding_bottom=\"40px\" padding_left=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.1\" animation_offset=\"\" last=\"no\"][fusion_text]\r\n<h1 style=\"text-align: center;\">No Fancy Star Grading\r\nNo Room Service\r\nNo Bed Turn-downs\r\nNo Rose Petals in the Bath water</h1>\r\n<h1 style=\"text-align: center;\">... just old fashioned homely comforts</h1>\r\n[/fusion_text][/fusion_builder_column][fusion_builder_column type=\"1_2\" layout=\"1_2\" last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"\" padding_right=\"\" padding_bottom=\"\" padding_left=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\" min_height=\"\"][fusion_text columns=\"\" column_min_width=\"\" column_spacing=\"\" rule_style=\"default\" rule_size=\"\" rule_color=\"\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" class=\"\" id=\"\"]\r\n<h1 style=\"text-align: center;\">5 Bedroom Family Lodge</h1>\r\n<h3 style=\"text-align: justify;\">We are a four season lodge, because there’s always something to celebrate… We offer comfort, relaxation and privacy right in the heart of 1000 Hills. The Forest, the Gardens, the Atmosphere all speak to  Rest  &amp; Relaxation.</h3>\r\n[/fusion_text][fusion_tagline_box backgroundcolor=\"\" shadow=\"yes\" shadowopacity=\"0.70\" border=\"1\" bordercolor=\"\" highlightposition=\"none\" content_alignment=\"center\" link=\"http://msla.co.za/lodge/reservations\" button=\"Book Now!\" linktarget=\"_self\" modal=\"\" button_size=\"xlarge\" button_type=\"\" button_shape=\"square\" buttoncolor=\"default\" title=\"\" description=\"\" margin_top=\"\" margin_bottom=\"\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" class=\"\" id=\"\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"\"]\r\n<p style=\"text-align: center;\"><span style=\"text-decoration: underline; font-size: 24pt;\">Current Specials</span></p>\r\n<p style=\"text-align: center;\"><span style=\"font-size: 14pt;\">Book on-line - get 15% OF\r\n</span><span style=\"font-size: 14pt;\">Stay 3 days or more - get 25% OFF</span></p>\r\n[/fusion_tagline_box][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" menu_anchor=\"\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" publish_date=\"\" class=\"\" id=\"\" background_color=\"\" background_image=\"\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" video_mp4=\"\" video_webm=\"\" video_ogv=\"\" video_url=\"\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" video_preview_image=\"\" border_size=\"\" border_color=\"\" border_style=\"solid\" margin_top=\"\" margin_bottom=\"\" padding_top=\"\" padding_right=\"\" padding_bottom=\"\" padding_left=\"\"][fusion_builder_row][fusion_builder_column type=\"1_1\" layout=\"1_1\" spacing=\"\" center_content=\"no\" link=\"\" target=\"_self\" min_height=\"\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" class=\"\" id=\"\" background_color=\"\" background_image=\"\" background_image_id=\"\" background_position=\"left top\" background_repeat=\"no-repeat\" hover_type=\"none\" border_size=\"0\" border_color=\"\" border_style=\"solid\" border_position=\"all\" border_radius=\"\" box_shadow=\"no\" dimension_box_shadow=\"\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" box_shadow_color=\"\" box_shadow_style=\"\" padding_top=\"\" padding_right=\"\" padding_bottom=\"\" padding_left=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"\" last=\"no\"][fusion_fusionslider name=\"lodge\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" class=\"\" id=\"\" /][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container background_color=\"#f0f0ed\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"20\" padding_bottom=\"20\" padding_left=\"\" padding_right=\"\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][fusion_builder_row][fusion_builder_column type=\"1_2\" layout=\"1_2\" last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"\" padding_right=\"\" padding_bottom=\"\" padding_left=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\" min_height=\"\"][fusion_text]\r\n<h3 style=\"text-align: justify;\">Set in the rolling peaks and valleys of a thousand hills surrounded by a canopy of indigenous trees, you will find that horses still have right of way, we certainly offer the best of both worlds, farm and charm coupled with modern amenities that will have you feeling relaxed and rejuvenated.</h3>\r\n<h3 style=\"text-align: justify;\">We know that sometimes you are searching for a romantic getaway or maybe a few days away with old friends. Other times you are searching for a place to host a weekend, family reunion or a business retreat. In addition to nightly room rentals, our lodge is also available for meetings, retreats  and makes the perfect place for a wedding party to stay together and get ready for the big day. Regardless, with our five comfortable and cozy guest bedrooms, multiple garden spaces and hideaways, and a  large private deck  where you can take a nap or read a book we definitely have the room for you!</h3>\r\n<h3 style=\"text-align: justify;\">Evenings are quiet and peaceful taking you far away from the business of city life. This is a unique and memorable country experience. We look forward to having you as a guest!</h3>\r\n[/fusion_text][/fusion_builder_column][fusion_builder_column type=\"1_2\" layout=\"1_2\" last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"\" padding_right=\"\" padding_bottom=\"\" padding_left=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\" min_height=\"\"][fusion_text]\r\n<h3 style=\"text-align: justify;\">Our lodge has been in our family for years and has recently been beautifully renovated. Five rooms all with en-suite showers lead off your own large central lounge, featuring a 36 foot high vaulted ceiling, offering spacious living, dining, and a bar/conversational lounge area which includes a fitted kitchenette, all adding to a sense of homely comfort. Sumptuous meals can be provided on request and served on the bottom deck at the swimming pool.</h3>\r\n<h3 style=\"text-align: justify;\">Be lulled to sleep by the sound of the waterfall and tinkling stream just outside your window, waking from a peaceful night\'s sleep in a pillow-top bed dressed in luxurious linens to coddle you in ultimate comfort.</h3>\r\n<h3 style=\"text-align: justify;\">Our property boasts many different species of birds and animals. We have a resident otter, a family of wild bush pigs,  a family of rock rabbits, porcupine, little blue duikers, a variety of different frogs and an abundance of bird life, including the occasional snakes that pass through!</h3>\r\n[/fusion_text][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container background_color=\"#f0f0ed\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"20\" padding_bottom=\"20\" padding_left=\"\" padding_right=\"\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][fusion_builder_row][fusion_builder_column type=\"1_1\" layout=\"1_1\" background_position=\"left top\" background_color=\"\" border_size=\"\" border_color=\"\" border_style=\"solid\" spacing=\"yes\" background_image=\"\" background_repeat=\"no-repeat\" padding_top=\"\" padding_right=\"\" padding_bottom=\"\" padding_left=\"\" margin_top=\"0px\" margin_bottom=\"0px\" class=\"\" id=\"\" animation_type=\"\" animation_speed=\"0.3\" animation_direction=\"left\" hide_on_mobile=\"no\" center_content=\"no\" min_height=\"none\" last=\"no\" hover_type=\"none\" link=\"\" border_position=\"all\"][fusion_text]\r\n<h1 style=\"text-align: center;\">Gallery</h1>\r\n[/fusion_text][fusion_separator style_type=\"single solid\" top_margin=\"\" bottom_margin=\"40\" sep_color=\"#000000\" border_size=\"\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"170px\" alignment=\"\" class=\"\" id=\"\" /][/fusion_builder_column][fusion_builder_column type=\"1_6\" layout=\"1_6\" last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding_top=\"\" padding_right=\"\" padding_bottom=\"\" padding_left=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\" min_height=\"\"][/fusion_builder_column][fusion_builder_column type=\"2_3\" layout=\"2_3\" last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding_top=\"\" padding_right=\"\" padding_bottom=\"\" padding_left=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\" min_height=\"\"][fusion_text]\r\n<h3 style=\"text-align: justify;\">The Lodge is open, spacious, comfortable and homely. During hot summer days, sit and bask in the sun on the deck  with one of our  picnic specials. In winter, snuggle up with a good book or challenge one another to a friendly board game in the glassed nook area .</h3>\r\n[/fusion_text][/fusion_builder_column][fusion_builder_column type=\"1_6\" layout=\"1_6\" last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding_top=\"\" padding_right=\"\" padding_bottom=\"\" padding_left=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\" min_height=\"\"][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container background_color=\"#f0f0ed\" background_image=\"http://localhost/assagaylodge/wp-content/uploads/2015/01/Wood_Texture.jpg\" background_parallax=\"fixed\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"30\" padding_bottom=\"10\" padding_left=\"0\" padding_right=\"0\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][fusion_builder_row][fusion_builder_column type=\"1_1\" layout=\"1_1\" background_position=\"left top\" background_color=\"\" border_size=\"\" border_color=\"\" border_style=\"solid\" spacing=\"yes\" background_image=\"\" background_repeat=\"no-repeat\" padding_top=\"\" padding_right=\"\" padding_bottom=\"\" padding_left=\"\" margin_top=\"0px\" margin_bottom=\"0px\" class=\"\" id=\"\" animation_type=\"\" animation_speed=\"0.3\" animation_direction=\"left\" hide_on_mobile=\"no\" center_content=\"no\" min_height=\"none\" last=\"no\" hover_type=\"none\" link=\"\" border_position=\"all\"][fusion_portfolio layout=\"grid\" picture_size=\"auto\" text_layout=\"no_text\" filters=\"no\" columns=\"3\" column_spacing=\"12\" cat_slug=\"the-lodge\" exclude_cats=\"\" number_posts=\"9\" offset=\"\" excerpt_length=\"35\" strip_html=\"yes\" carousel_layout=\"title_on_rollover\" scroll_items=\"\" autoplay=\"no\" show_nav=\"yes\" mouse_scroll=\"no\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\" /][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container background_color=\"#f0f0ed\" background_image=\"\" background_parallax=\"fixed\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"20\" padding_bottom=\"20\" padding_left=\"\" padding_right=\"\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][fusion_builder_row][fusion_builder_column type=\"1_1\" layout=\"1_1\" background_position=\"left top\" background_color=\"\" border_size=\"\" border_color=\"\" border_style=\"solid\" spacing=\"yes\" background_image=\"\" background_repeat=\"no-repeat\" padding_top=\"\" padding_right=\"\" padding_bottom=\"\" padding_left=\"\" margin_top=\"0px\" margin_bottom=\"0px\" class=\"\" id=\"\" animation_type=\"\" animation_speed=\"0.3\" animation_direction=\"left\" hide_on_mobile=\"no\" center_content=\"no\" min_height=\"none\" last=\"no\" hover_type=\"none\" link=\"\" border_position=\"all\"][fusion_text]\r\n<h1 style=\"text-align: center;\">BEDROOMS</h1>\r\n[/fusion_text][fusion_separator style_type=\"single solid\" top_margin=\"\" bottom_margin=\"20\" sep_color=\"#000000\" border_size=\"\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"170px\" alignment=\"\" class=\"\" id=\"\" /][/fusion_builder_column][fusion_builder_column type=\"1_6\" layout=\"1_6\" last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding_top=\"\" padding_right=\"\" padding_bottom=\"\" padding_left=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\" min_height=\"\"][/fusion_builder_column][fusion_builder_column type=\"2_3\" layout=\"2_3\" last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding_top=\"\" padding_right=\"\" padding_bottom=\"\" padding_left=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\" min_height=\"\"][fusion_text]\r\n<h3 style=\"text-align: justify;\">When it comes to our bedrooms we’re proud to say we offer something a little more special. One of five  lovingly and tastefully decorated guest rooms. Soft gray decor soothes the senses providing a peaceful, blissfully comfortable rest from your travels and hectic lives.</h3>\r\n<h3 style=\"text-align: justify;\">Our  bedrooms are spacious, clean, comfortable all en-suite, equipped with either king size or queen size beds. Each room sleeps two guests. The rooms have high ceilings, wall heaters &amp; ceiling fans. Beds all have electric blankets in Winter, 100% cotton percale sheets and thick hyper allergenic microfiber duvets and pillows. All guest rooms are cleaned with organic and green products. Amenities include hairdryers in each room. Three rooms feature King-sized beds  of which two can be  split into two single beds. Two  rooms can therefore be changed into a twin room upon request. Two rooms feature a Queen-sized double bed. These beds cannot be split into twin beds.</h3>\r\n[/fusion_text][/fusion_builder_column][fusion_builder_column type=\"1_6\" layout=\"1_6\" last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding_top=\"\" padding_right=\"\" padding_bottom=\"\" padding_left=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\" min_height=\"\"][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container background_color=\"\" background_image=\"http://localhost/assagaylodge/wp-content/uploads/2015/01/DSC01516-1148-x-764.jpg\" background_parallax=\"fixed\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"center center\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"20\" padding_bottom=\"20\" padding_left=\"0\" padding_right=\"0\" hundred_percent=\"no\" equal_height_columns=\"yes\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][fusion_builder_row][fusion_builder_column type=\"1_1\" layout=\"1_1\" background_position=\"left top\" background_color=\"\" border_size=\"\" border_color=\"\" border_style=\"solid\" spacing=\"yes\" background_image=\"\" background_repeat=\"no-repeat\" padding_top=\"\" padding_right=\"\" padding_bottom=\"\" padding_left=\"\" margin_top=\"0px\" margin_bottom=\"0px\" class=\"\" id=\"\" animation_type=\"\" animation_speed=\"0.3\" animation_direction=\"left\" hide_on_mobile=\"no\" center_content=\"no\" min_height=\"none\" last=\"no\" hover_type=\"none\" link=\"\" border_position=\"all\"][fusion_portfolio layout=\"grid\" picture_size=\"auto\" text_layout=\"no_text\" filters=\"no\" columns=\"3\" column_spacing=\"12\" cat_slug=\"bedrooms\" exclude_cats=\"\" number_posts=\"6\" offset=\"\" excerpt_length=\"35\" strip_html=\"yes\" carousel_layout=\"title_on_rollover\" scroll_items=\"\" autoplay=\"no\" show_nav=\"yes\" mouse_scroll=\"no\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\" /][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container background_color=\"#f0f0ed\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"20\" padding_bottom=\"20\" padding_left=\"0\" padding_right=\"0\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][fusion_builder_row][fusion_builder_column type=\"1_1\" layout=\"1_1\" background_position=\"left top\" background_color=\"\" border_size=\"\" border_color=\"\" border_style=\"solid\" spacing=\"yes\" background_image=\"\" background_repeat=\"no-repeat\" padding_top=\"\" padding_right=\"\" padding_bottom=\"\" padding_left=\"\" margin_top=\"0px\" margin_bottom=\"0px\" class=\"\" id=\"\" animation_type=\"\" animation_speed=\"0.3\" animation_direction=\"left\" hide_on_mobile=\"no\" center_content=\"no\" min_height=\"none\" last=\"no\" hover_type=\"none\" link=\"\" border_position=\"all\"][fusion_text]\r\n<h1 style=\"text-align: center;\">GARDENS</h1>\r\n[/fusion_text][fusion_separator style_type=\"single solid\" top_margin=\"\" bottom_margin=\"20\" sep_color=\"#000000\" border_size=\"\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"170px\" alignment=\"\" class=\"\" id=\"\" /][/fusion_builder_column][fusion_builder_column type=\"1_6\" layout=\"1_6\" last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding_top=\"\" padding_right=\"\" padding_bottom=\"\" padding_left=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\" min_height=\"\"][/fusion_builder_column][fusion_builder_column type=\"2_3\" layout=\"2_3\" last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding_top=\"\" padding_right=\"\" padding_bottom=\"\" padding_left=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\" min_height=\"\"][fusion_text]\r\n<h3 style=\"text-align: justify;\">The garden is large and offers many secluded spots to lose yourself in a book with a glass of wine underneath the shade of a tree, listening to the sounds of the birds and smelling the beautiful flowers.</h3>\r\n[/fusion_text][/fusion_builder_column][fusion_builder_column type=\"1_6\" layout=\"1_6\" last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding_top=\"\" padding_right=\"\" padding_bottom=\"\" padding_left=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\" min_height=\"\"][/fusion_builder_column][fusion_builder_column type=\"1_1\" layout=\"1_1\" background_position=\"left top\" background_color=\"\" border_size=\"\" border_color=\"\" border_style=\"solid\" spacing=\"yes\" background_image=\"\" background_repeat=\"no-repeat\" padding_top=\"\" padding_right=\"\" padding_bottom=\"\" padding_left=\"\" margin_top=\"0px\" margin_bottom=\"0px\" class=\"\" id=\"\" animation_type=\"\" animation_speed=\"0.3\" animation_direction=\"left\" hide_on_mobile=\"no\" center_content=\"no\" min_height=\"none\" last=\"no\" hover_type=\"none\" link=\"\" border_position=\"all\"][fusion_portfolio layout=\"grid\" picture_size=\"auto\" text_layout=\"no_text\" filters=\"no\" columns=\"3\" column_spacing=\"12\" cat_slug=\"gardens\" exclude_cats=\"\" number_posts=\"9\" offset=\"\" excerpt_length=\"35\" strip_html=\"yes\" carousel_layout=\"title_on_rollover\" scroll_items=\"\" autoplay=\"no\" show_nav=\"yes\" mouse_scroll=\"no\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\" /][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container background_color=\"#ffffff\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"65px\" padding_bottom=\"65px\" padding_left=\"\" padding_right=\"\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][fusion_builder_row][fusion_builder_column type=\"1_1\" layout=\"1_1\" background_position=\"left top\" background_color=\"\" border_size=\"\" border_color=\"\" border_style=\"solid\" spacing=\"yes\" background_image=\"\" background_repeat=\"no-repeat\" padding_top=\"\" padding_right=\"\" padding_bottom=\"\" padding_left=\"\" margin_top=\"0px\" margin_bottom=\"0px\" class=\"\" id=\"\" animation_type=\"\" animation_speed=\"0.3\" animation_direction=\"left\" hide_on_mobile=\"no\" center_content=\"no\" min_height=\"none\" last=\"no\" hover_type=\"none\" link=\"\" border_position=\"all\"][fusion_button link=\"https://msla.co.za/lodge/reservations/\" color=\"default\" size=\"xlarge\" stretch=\"default\" type=\"3d\" shape=\"round\" target=\"_self\" title=\"\" button_gradient_top_color=\"#f0f0ed\" button_gradient_bottom_color=\"#f0f0ed\" button_gradient_top_color_hover=\"#6666a4\" button_gradient_bottom_color_hover=\"#6666a4\" accent_color=\"#ffffff\" accent_hover_color=\"#ffffff\" bevel_color=\"\" border_width=\"0px\" icon=\"\" icon_position=\"left\" icon_divider=\"no\" modal=\"\" animation_type=\"0\" animation_direction=\"left\" animation_speed=\"1\" animation_offset=\"\" alignment=\"center\" class=\"\" id=\"\"]Make A Reservation Enquiry[/fusion_button][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container]', 'Home', '', 'inherit', 'closed', 'closed', '', '7-revision-v1', '', '', '2020-08-24 12:45:36', '2020-08-24 10:45:36', '', 7, 'https://msla.co.za/lodge/7-revision-v1/', 0, 'revision', '', 0);
INSERT INTO `wp_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(1453, 1, '2022-08-04 11:58:58', '2022-08-04 09:58:58', '[fusion_builder_container background_color=\"#f0f0ed\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"20\" padding_bottom=\"20\" padding_left=\"\" padding_right=\"\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][fusion_builder_row][fusion_builder_column type=\"1_2\" layout=\"1_2\" spacing=\"yes\" center_content=\"no\" link=\"\" target=\"_self\" min_height=\"\" hide_on_mobile=\"no\" class=\"\" id=\"\" background_image_id=\"\" background_color=\"\" background_image=\"\" background_position=\"left top\" background_repeat=\"no-repeat\" hover_type=\"none\" border_size=\"0\" border_color=\"\" border_style=\"solid\" border_position=\"all\" border_radius_top_left=\"\" border_radius_top_right=\"\" border_radius_bottom_left=\"\" border_radius_bottom_right=\"\" box_shadow=\"no\" box_shadow_vertical=\"\" box_shadow_horizontal=\"\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" box_shadow_color=\"\" box_shadow_style=\"\" padding_top=\"40px\" padding_right=\"\" padding_bottom=\"40px\" padding_left=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.1\" animation_offset=\"\" last=\"no\"][fusion_text]\r\n<h1 style=\"text-align: center;\">No Fancy Star Grading\r\nNo Room Service\r\nNo Bed Turn-downs\r\nNo Rose Petals in the Bath water</h1>\r\n<h1 style=\"text-align: center;\">... just old fashioned homely comforts</h1>\r\n[/fusion_text][/fusion_builder_column][fusion_builder_column type=\"1_2\" layout=\"1_2\" last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"\" padding_right=\"\" padding_bottom=\"\" padding_left=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\" min_height=\"\"][fusion_text columns=\"\" column_min_width=\"\" column_spacing=\"\" rule_style=\"default\" rule_size=\"\" rule_color=\"\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" class=\"\" id=\"\"]\r\n<h1 style=\"text-align: center;\">5 Bedroom Family Lodge</h1>\r\n<h3 style=\"text-align: justify;\">We are a four season lodge, because there’s always something to celebrate… We offer comfort, relaxation and privacy right in the heart of 1000 Hills. The Forest, the Gardens, the Atmosphere all speak to  Rest  &amp; Relaxation.</h3>\r\n[/fusion_text][fusion_tagline_box backgroundcolor=\"\" shadow=\"yes\" shadowopacity=\"0.70\" border=\"1\" bordercolor=\"\" highlightposition=\"none\" content_alignment=\"center\" link=\"http://msla.co.za/lodge/reservations\" button=\"Book Now!\" linktarget=\"_self\" modal=\"\" button_size=\"xlarge\" button_type=\"\" button_shape=\"square\" buttoncolor=\"default\" title=\"\" description=\"\" margin_top=\"\" margin_bottom=\"\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" class=\"\" id=\"\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"\" /][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" menu_anchor=\"\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" publish_date=\"\" class=\"\" id=\"\" background_color=\"\" background_image=\"\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" video_mp4=\"\" video_webm=\"\" video_ogv=\"\" video_url=\"\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" video_preview_image=\"\" border_size=\"\" border_color=\"\" border_style=\"solid\" margin_top=\"\" margin_bottom=\"\" padding_top=\"\" padding_right=\"\" padding_bottom=\"\" padding_left=\"\"][fusion_builder_row][fusion_builder_column type=\"1_1\" layout=\"1_1\" spacing=\"\" center_content=\"no\" link=\"\" target=\"_self\" min_height=\"\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" class=\"\" id=\"\" background_color=\"\" background_image=\"\" background_image_id=\"\" background_position=\"left top\" background_repeat=\"no-repeat\" hover_type=\"none\" border_size=\"0\" border_color=\"\" border_style=\"solid\" border_position=\"all\" border_radius=\"\" box_shadow=\"no\" dimension_box_shadow=\"\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" box_shadow_color=\"\" box_shadow_style=\"\" padding_top=\"\" padding_right=\"\" padding_bottom=\"\" padding_left=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"\" last=\"no\"][fusion_fusionslider name=\"lodge\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" class=\"\" id=\"\" /][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container background_color=\"#f0f0ed\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"20\" padding_bottom=\"20\" padding_left=\"\" padding_right=\"\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][fusion_builder_row][fusion_builder_column type=\"1_2\" layout=\"1_2\" last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"\" padding_right=\"\" padding_bottom=\"\" padding_left=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\" min_height=\"\"][fusion_text]\r\n<h3 style=\"text-align: justify;\">Set in the rolling peaks and valleys of a thousand hills surrounded by a canopy of indigenous trees, you will find that horses still have right of way, we certainly offer the best of both worlds, farm and charm coupled with modern amenities that will have you feeling relaxed and rejuvenated.</h3>\r\n<h3 style=\"text-align: justify;\">We know that sometimes you are searching for a romantic getaway or maybe a few days away with old friends. Other times you are searching for a place to host a weekend, family reunion or a business retreat. In addition to nightly room rentals, our lodge is also available for meetings, retreats  and makes the perfect place for a wedding party to stay together and get ready for the big day. Regardless, with our five comfortable and cozy guest bedrooms, multiple garden spaces and hideaways, and a  large private deck  where you can take a nap or read a book we definitely have the room for you!</h3>\r\n<h3 style=\"text-align: justify;\">Evenings are quiet and peaceful taking you far away from the business of city life. This is a unique and memorable country experience. We look forward to having you as a guest!</h3>\r\n[/fusion_text][/fusion_builder_column][fusion_builder_column type=\"1_2\" layout=\"1_2\" last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"\" padding_right=\"\" padding_bottom=\"\" padding_left=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\" min_height=\"\"][fusion_text]\r\n<h3 style=\"text-align: justify;\">Our lodge has been in our family for years and has recently been beautifully renovated. Five rooms all with en-suite showers lead off your own large central lounge, featuring a 36 foot high vaulted ceiling, offering spacious living, dining, and a bar/conversational lounge area which includes a fitted kitchenette, all adding to a sense of homely comfort. Sumptuous meals can be provided on request and served on the bottom deck at the swimming pool.</h3>\r\n<h3 style=\"text-align: justify;\">Be lulled to sleep by the sound of the waterfall and tinkling stream just outside your window, waking from a peaceful night\'s sleep in a pillow-top bed dressed in luxurious linens to coddle you in ultimate comfort.</h3>\r\n<h3 style=\"text-align: justify;\">Our property boasts many different species of birds and animals. We have a resident otter, a family of wild bush pigs,  a family of rock rabbits, porcupine, little blue duikers, a variety of different frogs and an abundance of bird life, including the occasional snakes that pass through!</h3>\r\n[/fusion_text][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container background_color=\"#f0f0ed\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"20\" padding_bottom=\"20\" padding_left=\"\" padding_right=\"\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][fusion_builder_row][fusion_builder_column type=\"1_1\" layout=\"1_1\" background_position=\"left top\" background_color=\"\" border_size=\"\" border_color=\"\" border_style=\"solid\" spacing=\"yes\" background_image=\"\" background_repeat=\"no-repeat\" padding_top=\"\" padding_right=\"\" padding_bottom=\"\" padding_left=\"\" margin_top=\"0px\" margin_bottom=\"0px\" class=\"\" id=\"\" animation_type=\"\" animation_speed=\"0.3\" animation_direction=\"left\" hide_on_mobile=\"no\" center_content=\"no\" min_height=\"none\" last=\"no\" hover_type=\"none\" link=\"\" border_position=\"all\"][fusion_text]\r\n<h1 style=\"text-align: center;\">Gallery</h1>\r\n[/fusion_text][fusion_separator style_type=\"single solid\" top_margin=\"\" bottom_margin=\"40\" sep_color=\"#000000\" border_size=\"\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"170px\" alignment=\"\" class=\"\" id=\"\" /][/fusion_builder_column][fusion_builder_column type=\"1_6\" layout=\"1_6\" last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding_top=\"\" padding_right=\"\" padding_bottom=\"\" padding_left=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\" min_height=\"\"][/fusion_builder_column][fusion_builder_column type=\"2_3\" layout=\"2_3\" last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding_top=\"\" padding_right=\"\" padding_bottom=\"\" padding_left=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\" min_height=\"\"][fusion_text]\r\n<h3 style=\"text-align: justify;\">The Lodge is open, spacious, comfortable and homely. During hot summer days, sit and bask in the sun on the deck  with one of our  picnic specials. In winter, snuggle up with a good book or challenge one another to a friendly board game in the glassed nook area .</h3>\r\n[/fusion_text][/fusion_builder_column][fusion_builder_column type=\"1_6\" layout=\"1_6\" last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding_top=\"\" padding_right=\"\" padding_bottom=\"\" padding_left=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\" min_height=\"\"][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container background_color=\"#f0f0ed\" background_image=\"http://localhost/assagaylodge/wp-content/uploads/2015/01/Wood_Texture.jpg\" background_parallax=\"fixed\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"30\" padding_bottom=\"10\" padding_left=\"0\" padding_right=\"0\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][fusion_builder_row][fusion_builder_column type=\"1_1\" layout=\"1_1\" background_position=\"left top\" background_color=\"\" border_size=\"\" border_color=\"\" border_style=\"solid\" spacing=\"yes\" background_image=\"\" background_repeat=\"no-repeat\" padding_top=\"\" padding_right=\"\" padding_bottom=\"\" padding_left=\"\" margin_top=\"0px\" margin_bottom=\"0px\" class=\"\" id=\"\" animation_type=\"\" animation_speed=\"0.3\" animation_direction=\"left\" hide_on_mobile=\"no\" center_content=\"no\" min_height=\"none\" last=\"no\" hover_type=\"none\" link=\"\" border_position=\"all\"][fusion_portfolio layout=\"grid\" picture_size=\"auto\" text_layout=\"no_text\" filters=\"no\" columns=\"3\" column_spacing=\"12\" cat_slug=\"the-lodge\" exclude_cats=\"\" number_posts=\"9\" offset=\"\" excerpt_length=\"35\" strip_html=\"yes\" carousel_layout=\"title_on_rollover\" scroll_items=\"\" autoplay=\"no\" show_nav=\"yes\" mouse_scroll=\"no\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\" /][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container background_color=\"#f0f0ed\" background_image=\"\" background_parallax=\"fixed\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"20\" padding_bottom=\"20\" padding_left=\"\" padding_right=\"\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][fusion_builder_row][fusion_builder_column type=\"1_1\" layout=\"1_1\" background_position=\"left top\" background_color=\"\" border_size=\"\" border_color=\"\" border_style=\"solid\" spacing=\"yes\" background_image=\"\" background_repeat=\"no-repeat\" padding_top=\"\" padding_right=\"\" padding_bottom=\"\" padding_left=\"\" margin_top=\"0px\" margin_bottom=\"0px\" class=\"\" id=\"\" animation_type=\"\" animation_speed=\"0.3\" animation_direction=\"left\" hide_on_mobile=\"no\" center_content=\"no\" min_height=\"none\" last=\"no\" hover_type=\"none\" link=\"\" border_position=\"all\"][fusion_text]\r\n<h1 style=\"text-align: center;\">BEDROOMS</h1>\r\n[/fusion_text][fusion_separator style_type=\"single solid\" top_margin=\"\" bottom_margin=\"20\" sep_color=\"#000000\" border_size=\"\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"170px\" alignment=\"\" class=\"\" id=\"\" /][/fusion_builder_column][fusion_builder_column type=\"1_6\" layout=\"1_6\" last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding_top=\"\" padding_right=\"\" padding_bottom=\"\" padding_left=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\" min_height=\"\"][/fusion_builder_column][fusion_builder_column type=\"2_3\" layout=\"2_3\" last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding_top=\"\" padding_right=\"\" padding_bottom=\"\" padding_left=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\" min_height=\"\"][fusion_text]\r\n<h3 style=\"text-align: justify;\">When it comes to our bedrooms we’re proud to say we offer something a little more special. One of five  lovingly and tastefully decorated guest rooms. Soft gray decor soothes the senses providing a peaceful, blissfully comfortable rest from your travels and hectic lives.</h3>\r\n<h3 style=\"text-align: justify;\">Our  bedrooms are spacious, clean, comfortable all en-suite, equipped with either king size or queen size beds. Each room sleeps two guests. The rooms have high ceilings, wall heaters &amp; ceiling fans. Beds all have electric blankets in Winter, 100% cotton percale sheets and thick hyper allergenic microfiber duvets and pillows. All guest rooms are cleaned with organic and green products. Amenities include hairdryers in each room. Three rooms feature King-sized beds  of which two can be  split into two single beds. Two  rooms can therefore be changed into a twin room upon request. Two rooms feature a Queen-sized double bed. These beds cannot be split into twin beds.</h3>\r\n[/fusion_text][/fusion_builder_column][fusion_builder_column type=\"1_6\" layout=\"1_6\" last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding_top=\"\" padding_right=\"\" padding_bottom=\"\" padding_left=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\" min_height=\"\"][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container background_color=\"\" background_image=\"http://localhost/assagaylodge/wp-content/uploads/2015/01/DSC01516-1148-x-764.jpg\" background_parallax=\"fixed\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"center center\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"20\" padding_bottom=\"20\" padding_left=\"0\" padding_right=\"0\" hundred_percent=\"no\" equal_height_columns=\"yes\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][fusion_builder_row][fusion_builder_column type=\"1_1\" layout=\"1_1\" background_position=\"left top\" background_color=\"\" border_size=\"\" border_color=\"\" border_style=\"solid\" spacing=\"yes\" background_image=\"\" background_repeat=\"no-repeat\" padding_top=\"\" padding_right=\"\" padding_bottom=\"\" padding_left=\"\" margin_top=\"0px\" margin_bottom=\"0px\" class=\"\" id=\"\" animation_type=\"\" animation_speed=\"0.3\" animation_direction=\"left\" hide_on_mobile=\"no\" center_content=\"no\" min_height=\"none\" last=\"no\" hover_type=\"none\" link=\"\" border_position=\"all\"][fusion_portfolio layout=\"grid\" picture_size=\"auto\" text_layout=\"no_text\" filters=\"no\" columns=\"3\" column_spacing=\"12\" cat_slug=\"bedrooms\" exclude_cats=\"\" number_posts=\"6\" offset=\"\" excerpt_length=\"35\" strip_html=\"yes\" carousel_layout=\"title_on_rollover\" scroll_items=\"\" autoplay=\"no\" show_nav=\"yes\" mouse_scroll=\"no\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\" /][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container background_color=\"#f0f0ed\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"20\" padding_bottom=\"20\" padding_left=\"0\" padding_right=\"0\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][fusion_builder_row][fusion_builder_column type=\"1_1\" layout=\"1_1\" background_position=\"left top\" background_color=\"\" border_size=\"\" border_color=\"\" border_style=\"solid\" spacing=\"yes\" background_image=\"\" background_repeat=\"no-repeat\" padding_top=\"\" padding_right=\"\" padding_bottom=\"\" padding_left=\"\" margin_top=\"0px\" margin_bottom=\"0px\" class=\"\" id=\"\" animation_type=\"\" animation_speed=\"0.3\" animation_direction=\"left\" hide_on_mobile=\"no\" center_content=\"no\" min_height=\"none\" last=\"no\" hover_type=\"none\" link=\"\" border_position=\"all\"][fusion_text]\r\n<h1 style=\"text-align: center;\">GARDENS</h1>\r\n[/fusion_text][fusion_separator style_type=\"single solid\" top_margin=\"\" bottom_margin=\"20\" sep_color=\"#000000\" border_size=\"\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"170px\" alignment=\"\" class=\"\" id=\"\" /][/fusion_builder_column][fusion_builder_column type=\"1_6\" layout=\"1_6\" last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding_top=\"\" padding_right=\"\" padding_bottom=\"\" padding_left=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\" min_height=\"\"][/fusion_builder_column][fusion_builder_column type=\"2_3\" layout=\"2_3\" last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding_top=\"\" padding_right=\"\" padding_bottom=\"\" padding_left=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\" min_height=\"\"][fusion_text]\r\n<h3 style=\"text-align: justify;\">The garden is large and offers many secluded spots to lose yourself in a book with a glass of wine underneath the shade of a tree, listening to the sounds of the birds and smelling the beautiful flowers.</h3>\r\n[/fusion_text][/fusion_builder_column][fusion_builder_column type=\"1_6\" layout=\"1_6\" last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding_top=\"\" padding_right=\"\" padding_bottom=\"\" padding_left=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\" min_height=\"\"][/fusion_builder_column][fusion_builder_column type=\"1_1\" layout=\"1_1\" background_position=\"left top\" background_color=\"\" border_size=\"\" border_color=\"\" border_style=\"solid\" spacing=\"yes\" background_image=\"\" background_repeat=\"no-repeat\" padding_top=\"\" padding_right=\"\" padding_bottom=\"\" padding_left=\"\" margin_top=\"0px\" margin_bottom=\"0px\" class=\"\" id=\"\" animation_type=\"\" animation_speed=\"0.3\" animation_direction=\"left\" hide_on_mobile=\"no\" center_content=\"no\" min_height=\"none\" last=\"no\" hover_type=\"none\" link=\"\" border_position=\"all\"][fusion_portfolio layout=\"grid\" picture_size=\"auto\" text_layout=\"no_text\" filters=\"no\" columns=\"3\" column_spacing=\"12\" cat_slug=\"gardens\" exclude_cats=\"\" number_posts=\"9\" offset=\"\" excerpt_length=\"35\" strip_html=\"yes\" carousel_layout=\"title_on_rollover\" scroll_items=\"\" autoplay=\"no\" show_nav=\"yes\" mouse_scroll=\"no\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\" /][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container background_color=\"#ffffff\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"65px\" padding_bottom=\"65px\" padding_left=\"\" padding_right=\"\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][fusion_builder_row][fusion_builder_column type=\"1_1\" layout=\"1_1\" background_position=\"left top\" background_color=\"\" border_size=\"\" border_color=\"\" border_style=\"solid\" spacing=\"yes\" background_image=\"\" background_repeat=\"no-repeat\" padding_top=\"\" padding_right=\"\" padding_bottom=\"\" padding_left=\"\" margin_top=\"0px\" margin_bottom=\"0px\" class=\"\" id=\"\" animation_type=\"\" animation_speed=\"0.3\" animation_direction=\"left\" hide_on_mobile=\"no\" center_content=\"no\" min_height=\"none\" last=\"no\" hover_type=\"none\" link=\"\" border_position=\"all\"][fusion_button link=\"https://msla.co.za/lodge/reservations/\" color=\"default\" size=\"xlarge\" stretch=\"default\" type=\"3d\" shape=\"round\" target=\"_self\" title=\"\" button_gradient_top_color=\"#f0f0ed\" button_gradient_bottom_color=\"#f0f0ed\" button_gradient_top_color_hover=\"#6666a4\" button_gradient_bottom_color_hover=\"#6666a4\" accent_color=\"#ffffff\" accent_hover_color=\"#ffffff\" bevel_color=\"\" border_width=\"0px\" icon=\"\" icon_position=\"left\" icon_divider=\"no\" modal=\"\" animation_type=\"0\" animation_direction=\"left\" animation_speed=\"1\" animation_offset=\"\" alignment=\"center\" class=\"\" id=\"\"]Make A Reservation Enquiry[/fusion_button][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container]', 'Home', '', 'inherit', 'closed', 'closed', '', '7-revision-v1', '', '', '2022-08-04 11:58:58', '2022-08-04 09:58:58', '', 7, 'https://msla.co.za/lodge/?p=1453', 0, 'revision', '', 0),
(1454, 1, '2022-08-04 12:01:04', '2022-08-04 10:01:04', '[fusion_builder_container background_color=\"\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding_top=\"20\" padding_bottom=\"20\" padding_left=\"0\" padding_right=\"0\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][fusion_builder_row][fusion_builder_column type=\"1_1\" layout=\"1_1\" background_position=\"left top\" background_color=\"\" border_size=\"\" border_color=\"\" border_style=\"solid\" spacing=\"yes\" background_image=\"\" background_repeat=\"no-repeat\" padding_top=\"\" padding_right=\"\" padding_bottom=\"\" padding_left=\"\" margin_top=\"0px\" margin_bottom=\"0px\" class=\"\" id=\"\" animation_type=\"\" animation_speed=\"0.3\" animation_direction=\"left\" hide_on_mobile=\"no\" center_content=\"no\" min_height=\"none\" last=\"no\" hover_type=\"none\" link=\"\" border_position=\"all\"][fusion_title size=\"1\" content_align=\"right\" style_type=\"default\" sep_color=\"\" margin_top=\"\" margin_bottom=\"\" class=\"\" id=\"\"]Rates &amp; Tariffs[/fusion_title][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container hundred_percent=\"yes\" overflow=\"visible\"][fusion_builder_row][fusion_builder_column type=\"1_1\" layout=\"1_1\" background_position=\"left top\" background_color=\"\" border_size=\"\" border_color=\"\" border_style=\"solid\" spacing=\"yes\" background_image=\"\" background_repeat=\"no-repeat\" padding_top=\"\" padding_right=\"\" padding_bottom=\"\" padding_left=\"\" margin_top=\"0px\" margin_bottom=\"0px\" class=\"\" id=\"\" animation_type=\"\" animation_speed=\"0.3\" animation_direction=\"left\" hide_on_mobile=\"no\" center_content=\"no\" min_height=\"none\" last=\"no\" hover_type=\"none\" link=\"\" border_position=\"all\"][fusion_text columns=\"\" column_min_width=\"\" column_spacing=\"\" rule_style=\"default\" rule_size=\"\" rule_color=\"\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" class=\"\" id=\"\"]\r\n<table style=\"width: 100%;\" cellspacing=\"10\" cellpadding=\"5\">\r\n<tbody>\r\n<tr>\r\n<td style=\"text-align: right;\" colspan=\"2\"><span style=\"font-size: 10pt;\">ALL PRICES INCLUDE VAT<strong> </strong></span></td>\r\n</tr>\r\n<tr>\r\n<td colspan=\"2\"><span style=\"font-size: 10pt;\"> </span></td>\r\n</tr>\r\n<tr>\r\n<td colspan=\"2\"><span style=\"font-size: 12pt;\"><strong>Self-Catering / Self-Servicing Accommodation</strong></span></td>\r\n</tr>\r\n<tr>\r\n<td colspan=\"2\"><span style=\"font-size: 12pt;\"><strong> </strong></span></td>\r\n</tr>\r\n<tr>\r\n<td><span style=\"font-size: 12pt;\"><strong>Accommodation</strong> </span></td>\r\n<td><span style=\"font-size: 12pt;\"><strong>*R 705</strong> per person per night</span></td>\r\n</tr>\r\n<tr>\r\n<td></td>\r\n<td><span style=\"font-size: 12pt;\"><strong> </strong></span></td>\r\n</tr>\r\n<tr>\r\n<td><span style=\"font-size: 12pt;\">* <strong>Specials</strong></span></td>\r\n<td></td>\r\n</tr>\r\n<tr>\r\n<td><span style=\"font-size: 12pt;\"> </span></td>\r\n<td></td>\r\n</tr>\r\n<tr>\r\n<td><strong><span style=\"font-size: 12pt;\"> </span></strong></td>\r\n<td><span style=\"font-size: 12pt;\"><strong> </strong></span></td>\r\n</tr>\r\n<tr>\r\n<td><strong><span style=\"font-size: 12pt;\">Servicing Options</span></strong></td>\r\n<td><span style=\"font-size: 12pt;\"><strong> </strong></span></td>\r\n</tr>\r\n<tr>\r\n<td><strong><span style=\"font-size: 12pt;\"> </span></strong></td>\r\n<td><span style=\"font-size: 12pt;\"><strong> </strong></span></td>\r\n</tr>\r\n<tr>\r\n<td><span style=\"font-size: 12pt;\">Lodge Only Servicing (Optional) </span></td>\r\n<td><span style=\"font-size: 12pt;\"><strong>R  25</strong> per person per day</span></td>\r\n</tr>\r\n<tr>\r\n<td><span style=\"font-size: 12pt;\">Room Only Servicing (Optional) </span></td>\r\n<td><span style=\"font-size: 12pt;\"><strong>R  25</strong> per person per day</span></td>\r\n</tr>\r\n<tr>\r\n<td><span style=\"font-size: 12pt;\"> </span></td>\r\n<td><span style=\"font-size: 12pt;\"><strong> </strong></span></td>\r\n</tr>\r\n<tr>\r\n<td colspan=\"2\"><span style=\"font-size: 12pt;\"><span style=\"font-size: 12pt;\"><strong>Catering Options</strong></span> </span><span style=\"font-size: 12pt;\"><strong> </strong></span></td>\r\n</tr>\r\n<tr>\r\n<td colspan=\"2\"><span style=\"font-size: 12pt;\"><span style=\"font-size: 12pt;\"><strong> </strong></span></span></td>\r\n</tr>\r\n<tr>\r\n<td><span style=\"font-size: 12pt;\"> <span style=\"font-size: 12pt;\">Breakfast </span></span></td>\r\n<td><span style=\"font-size: 12pt;\"><strong> </strong><span style=\"font-size: 12pt;\"><strong>R 95</strong> per person</span></span></td>\r\n</tr>\r\n<tr>\r\n<td><span style=\"font-size: 12pt;\"> <span style=\"font-size: 12pt;\">Dinners</span></span></td>\r\n<td><span style=\"font-size: 12pt;\"><span style=\"font-size: 12pt;\"><strong>R 180 </strong>per person</span></span></td>\r\n</tr>\r\n<tr>\r\n<td><span style=\"font-size: 12pt;\"> </span></td>\r\n<td><span style=\"font-size: 12pt;\"><strong> </strong></span></td>\r\n</tr>\r\n<tr>\r\n<td><strong><span style=\"font-size: 12pt;\">Others</span></strong></td>\r\n<td><span style=\"font-size: 12pt;\"><strong> </strong></span></td>\r\n</tr>\r\n<tr>\r\n<td><strong><span style=\"font-size: 12pt;\"> </span></strong></td>\r\n<td><span style=\"font-size: 12pt;\"><strong> </strong></span></td>\r\n</tr>\r\n<tr>\r\n<td><span style=\"font-size: 12pt;\">Gate Remote</span></td>\r\n<td><span style=\"font-size: 12pt;\"><strong>R 200 </strong>deposit (may be requested)</span></td>\r\n</tr>\r\n<tr>\r\n<td><span style=\"font-size: 12pt;\">Gas Braai</span></td>\r\n<td><span style=\"font-size: 12pt;\"><strong>R  25</strong> per person per day</span></td>\r\n</tr>\r\n<tr>\r\n<td><span style=\"font-size: 12pt;\">Day Visitors / Guests</span></td>\r\n<td><span style=\"font-size: 12pt;\"><strong>R  50 </strong>per person per day</span></td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n[/fusion_text][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container]', 'Rates', '', 'inherit', 'closed', 'closed', '', '1121-revision-v1', '', '', '2022-08-04 12:01:04', '2022-08-04 10:01:04', '', 1121, 'https://msla.co.za/lodge/?p=1454', 0, 'revision', '', 0);

-- --------------------------------------------------------

--
-- Table structure for table `wp_revslider_css`
--

CREATE TABLE `wp_revslider_css` (
  `id` int(9) NOT NULL,
  `handle` text NOT NULL,
  `settings` text DEFAULT NULL,
  `hover` text DEFAULT NULL,
  `params` text NOT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_general_ci;

--
-- Dumping data for table `wp_revslider_css`
--

INSERT INTO `wp_revslider_css` (`id`, `handle`, `settings`, `hover`, `params`) VALUES
(1, '.tp-caption.medium_grey', NULL, NULL, '{\"position\":\"absolute\",\"color\":\"#fff\",\"text-shadow\":\"0px 2px 5px rgba(0, 0, 0, 0.5)\",\"font-weight\":\"700\",\"font-size\":\"20px\",\"line-height\":\"20px\",\"font-family\":\"Arial\",\"padding\":\"2px 4px\",\"margin\":\"0px\",\"border-width\":\"0px\",\"border-style\":\"none\",\"background-color\":\"#888\",\"white-space\":\"nowrap\"}'),
(2, '.tp-caption.small_text', NULL, NULL, '{\"position\":\"absolute\",\"color\":\"#fff\",\"text-shadow\":\"0px 2px 5px rgba(0, 0, 0, 0.5)\",\"font-weight\":\"700\",\"font-size\":\"14px\",\"line-height\":\"20px\",\"font-family\":\"Arial\",\"margin\":\"0px\",\"border-width\":\"0px\",\"border-style\":\"none\",\"white-space\":\"nowrap\"}'),
(3, '.tp-caption.medium_text', NULL, NULL, '{\"position\":\"absolute\",\"color\":\"#fff\",\"text-shadow\":\"0px 2px 5px rgba(0, 0, 0, 0.5)\",\"font-weight\":\"700\",\"font-size\":\"20px\",\"line-height\":\"20px\",\"font-family\":\"Arial\",\"margin\":\"0px\",\"border-width\":\"0px\",\"border-style\":\"none\",\"white-space\":\"nowrap\"}'),
(4, '.tp-caption.large_text', NULL, NULL, '{\"position\":\"absolute\",\"color\":\"#fff\",\"text-shadow\":\"0px 2px 5px rgba(0, 0, 0, 0.5)\",\"font-weight\":\"700\",\"font-size\":\"40px\",\"line-height\":\"40px\",\"font-family\":\"Arial\",\"margin\":\"0px\",\"border-width\":\"0px\",\"border-style\":\"none\",\"white-space\":\"nowrap\"}'),
(5, '.tp-caption.very_large_text', NULL, NULL, '{\"position\":\"absolute\",\"color\":\"#fff\",\"text-shadow\":\"0px 2px 5px rgba(0, 0, 0, 0.5)\",\"font-weight\":\"700\",\"font-size\":\"60px\",\"line-height\":\"60px\",\"font-family\":\"Arial\",\"margin\":\"0px\",\"border-width\":\"0px\",\"border-style\":\"none\",\"white-space\":\"nowrap\",\"letter-spacing\":\"-2px\"}'),
(6, '.tp-caption.very_big_white', NULL, NULL, '{\"position\":\"absolute\",\"color\":\"#fff\",\"text-shadow\":\"none\",\"font-weight\":\"800\",\"font-size\":\"60px\",\"line-height\":\"60px\",\"font-family\":\"Arial\",\"margin\":\"0px\",\"border-width\":\"0px\",\"border-style\":\"none\",\"white-space\":\"nowrap\",\"padding\":\"0px 4px\",\"padding-top\":\"1px\",\"background-color\":\"#000\"}'),
(7, '.tp-caption.very_big_black', NULL, NULL, '{\"position\":\"absolute\",\"color\":\"#000\",\"text-shadow\":\"none\",\"font-weight\":\"700\",\"font-size\":\"60px\",\"line-height\":\"60px\",\"font-family\":\"Arial\",\"margin\":\"0px\",\"border-width\":\"0px\",\"border-style\":\"none\",\"white-space\":\"nowrap\",\"padding\":\"0px 4px\",\"padding-top\":\"1px\",\"background-color\":\"#fff\"}'),
(8, '.tp-caption.modern_medium_fat', NULL, NULL, '{\"position\":\"absolute\",\"color\":\"#000\",\"text-shadow\":\"none\",\"font-weight\":\"800\",\"font-size\":\"24px\",\"line-height\":\"20px\",\"font-family\":\"\\\"Open Sans\\\", sans-serif\",\"margin\":\"0px\",\"border-width\":\"0px\",\"border-style\":\"none\",\"white-space\":\"nowrap\"}'),
(9, '.tp-caption.modern_medium_fat_white', NULL, NULL, '{\"position\":\"absolute\",\"color\":\"#fff\",\"text-shadow\":\"none\",\"font-weight\":\"800\",\"font-size\":\"24px\",\"line-height\":\"20px\",\"font-family\":\"\\\"Open Sans\\\", sans-serif\",\"margin\":\"0px\",\"border-width\":\"0px\",\"border-style\":\"none\",\"white-space\":\"nowrap\"}'),
(10, '.tp-caption.modern_medium_light', NULL, NULL, '{\"position\":\"absolute\",\"color\":\"#000\",\"text-shadow\":\"none\",\"font-weight\":\"300\",\"font-size\":\"24px\",\"line-height\":\"20px\",\"font-family\":\"\\\"Open Sans\\\", sans-serif\",\"margin\":\"0px\",\"border-width\":\"0px\",\"border-style\":\"none\",\"white-space\":\"nowrap\"}'),
(11, '.tp-caption.modern_big_bluebg', NULL, NULL, '{\"position\":\"absolute\",\"color\":\"#fff\",\"text-shadow\":\"none\",\"font-weight\":\"800\",\"font-size\":\"30px\",\"line-height\":\"36px\",\"font-family\":\"\\\"Open Sans\\\", sans-serif\",\"padding\":\"3px 10px\",\"margin\":\"0px\",\"border-width\":\"0px\",\"border-style\":\"none\",\"background-color\":\"#4e5b6c\",\"letter-spacing\":\"0\"}'),
(12, '.tp-caption.modern_big_redbg', NULL, NULL, '{\"position\":\"absolute\",\"color\":\"#fff\",\"text-shadow\":\"none\",\"font-weight\":\"300\",\"font-size\":\"30px\",\"line-height\":\"36px\",\"font-family\":\"\\\"Open Sans\\\", sans-serif\",\"padding\":\"3px 10px\",\"padding-top\":\"1px\",\"margin\":\"0px\",\"border-width\":\"0px\",\"border-style\":\"none\",\"background-color\":\"#de543e\",\"letter-spacing\":\"0\"}'),
(13, '.tp-caption.modern_small_text_dark', NULL, NULL, '{\"position\":\"absolute\",\"color\":\"#555\",\"text-shadow\":\"none\",\"font-size\":\"14px\",\"line-height\":\"22px\",\"font-family\":\"Arial\",\"margin\":\"0px\",\"border-width\":\"0px\",\"border-style\":\"none\",\"white-space\":\"nowrap\"}'),
(14, '.tp-caption.boxshadow', NULL, NULL, '{\"-moz-box-shadow\":\"0px 0px 20px rgba(0, 0, 0, 0.5)\",\"-webkit-box-shadow\":\"0px 0px 20px rgba(0, 0, 0, 0.5)\",\"box-shadow\":\"0px 0px 20px rgba(0, 0, 0, 0.5)\"}'),
(15, '.tp-caption.black', NULL, NULL, '{\"color\":\"#000\",\"text-shadow\":\"none\"}'),
(16, '.tp-caption.noshadow', NULL, NULL, '{\"text-shadow\":\"none\"}'),
(17, '.tp-caption.thinheadline_dark', NULL, NULL, '{\"position\":\"absolute\",\"color\":\"rgba(0,0,0,0.85)\",\"text-shadow\":\"none\",\"font-weight\":\"300\",\"font-size\":\"30px\",\"line-height\":\"30px\",\"font-family\":\"\\\"Open Sans\\\"\",\"background-color\":\"transparent\"}'),
(18, '.tp-caption.thintext_dark', NULL, NULL, '{\"position\":\"absolute\",\"color\":\"rgba(0,0,0,0.85)\",\"text-shadow\":\"none\",\"font-weight\":\"300\",\"font-size\":\"16px\",\"line-height\":\"26px\",\"font-family\":\"\\\"Open Sans\\\"\",\"background-color\":\"transparent\"}'),
(19, '.tp-caption.largeblackbg', NULL, NULL, '{\"position\":\"absolute\",\"color\":\"#fff\",\"text-shadow\":\"none\",\"font-weight\":\"300\",\"font-size\":\"50px\",\"line-height\":\"70px\",\"font-family\":\"\\\"Open Sans\\\"\",\"background-color\":\"#000\",\"padding\":\"0px 20px\",\"-webkit-border-radius\":\"0px\",\"-moz-border-radius\":\"0px\",\"border-radius\":\"0px\"}'),
(20, '.tp-caption.largepinkbg', NULL, NULL, '{\"position\":\"absolute\",\"color\":\"#fff\",\"text-shadow\":\"none\",\"font-weight\":\"300\",\"font-size\":\"50px\",\"line-height\":\"70px\",\"font-family\":\"\\\"Open Sans\\\"\",\"background-color\":\"#db4360\",\"padding\":\"0px 20px\",\"-webkit-border-radius\":\"0px\",\"-moz-border-radius\":\"0px\",\"border-radius\":\"0px\"}'),
(21, '.tp-caption.largewhitebg', NULL, NULL, '{\"position\":\"absolute\",\"color\":\"#000\",\"text-shadow\":\"none\",\"font-weight\":\"300\",\"font-size\":\"50px\",\"line-height\":\"70px\",\"font-family\":\"\\\"Open Sans\\\"\",\"background-color\":\"#fff\",\"padding\":\"0px 20px\",\"-webkit-border-radius\":\"0px\",\"-moz-border-radius\":\"0px\",\"border-radius\":\"0px\"}'),
(22, '.tp-caption.largegreenbg', NULL, NULL, '{\"position\":\"absolute\",\"color\":\"#fff\",\"text-shadow\":\"none\",\"font-weight\":\"300\",\"font-size\":\"50px\",\"line-height\":\"70px\",\"font-family\":\"\\\"Open Sans\\\"\",\"background-color\":\"#67ae73\",\"padding\":\"0px 20px\",\"-webkit-border-radius\":\"0px\",\"-moz-border-radius\":\"0px\",\"border-radius\":\"0px\"}'),
(23, '.tp-caption.excerpt', NULL, NULL, '{\"font-size\":\"36px\",\"line-height\":\"36px\",\"font-weight\":\"700\",\"font-family\":\"Arial\",\"color\":\"#ffffff\",\"text-decoration\":\"none\",\"background-color\":\"rgba(0, 0, 0, 1)\",\"text-shadow\":\"none\",\"margin\":\"0px\",\"letter-spacing\":\"-1.5px\",\"padding\":\"1px 4px 0px 4px\",\"width\":\"150px\",\"white-space\":\"normal !important\",\"height\":\"auto\",\"border-width\":\"0px\",\"border-color\":\"rgb(255, 255, 255)\",\"border-style\":\"none\"}'),
(24, '.tp-caption.large_bold_grey', NULL, NULL, '{\"font-size\":\"60px\",\"line-height\":\"60px\",\"font-weight\":\"800\",\"font-family\":\"\\\"Open Sans\\\"\",\"color\":\"rgb(102, 102, 102)\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"text-shadow\":\"none\",\"margin\":\"0px\",\"padding\":\"1px 4px 0px\",\"border-width\":\"0px\",\"border-color\":\"rgb(255, 214, 88)\",\"border-style\":\"none\"}'),
(25, '.tp-caption.medium_thin_grey', NULL, NULL, '{\"font-size\":\"34px\",\"line-height\":\"30px\",\"font-weight\":\"300\",\"font-family\":\"\\\"Open Sans\\\"\",\"color\":\"rgb(102, 102, 102)\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"padding\":\"1px 4px 0px\",\"text-shadow\":\"none\",\"margin\":\"0px\",\"border-width\":\"0px\",\"border-color\":\"rgb(255, 214, 88)\",\"border-style\":\"none\"}'),
(26, '.tp-caption.small_thin_grey', NULL, NULL, '{\"font-size\":\"18px\",\"line-height\":\"26px\",\"font-weight\":\"300\",\"font-family\":\"\\\"Open Sans\\\"\",\"color\":\"rgb(117, 117, 117)\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"padding\":\"1px 4px 0px\",\"text-shadow\":\"none\",\"margin\":\"0px\",\"border-width\":\"0px\",\"border-color\":\"rgb(255, 214, 88)\",\"border-style\":\"none\"}'),
(27, '.tp-caption.lightgrey_divider', NULL, NULL, '{\"text-decoration\":\"none\",\"background-color\":\"rgba(235, 235, 235, 1)\",\"width\":\"370px\",\"height\":\"3px\",\"background-position\":\"initial initial\",\"background-repeat\":\"initial initial\",\"border-width\":\"0px\",\"border-color\":\"rgb(34, 34, 34)\",\"border-style\":\"none\"}'),
(28, '.tp-caption.large_bold_darkblue', NULL, NULL, '{\"font-size\":\"58px\",\"line-height\":\"60px\",\"font-weight\":\"800\",\"font-family\":\"\\\"Open Sans\\\"\",\"color\":\"rgb(52, 73, 94)\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"border-width\":\"0px\",\"border-color\":\"rgb(255, 214, 88)\",\"border-style\":\"none\"}'),
(29, '.tp-caption.medium_bg_darkblue', NULL, NULL, '{\"font-size\":\"20px\",\"line-height\":\"20px\",\"font-weight\":\"800\",\"font-family\":\"\\\"Open Sans\\\"\",\"color\":\"rgb(255, 255, 255)\",\"text-decoration\":\"none\",\"background-color\":\"rgb(52, 73, 94)\",\"padding\":\"10px\",\"border-width\":\"0px\",\"border-color\":\"rgb(255, 214, 88)\",\"border-style\":\"none\"}'),
(30, '.tp-caption.medium_bold_red', NULL, NULL, '{\"font-size\":\"24px\",\"line-height\":\"30px\",\"font-weight\":\"800\",\"font-family\":\"\\\"Open Sans\\\"\",\"color\":\"rgb(227, 58, 12)\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"padding\":\"0px\",\"border-width\":\"0px\",\"border-color\":\"rgb(255, 214, 88)\",\"border-style\":\"none\"}'),
(31, '.tp-caption.medium_light_red', NULL, NULL, '{\"font-size\":\"21px\",\"line-height\":\"26px\",\"font-weight\":\"300\",\"font-family\":\"\\\"Open Sans\\\"\",\"color\":\"rgb(227, 58, 12)\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"padding\":\"0px\",\"border-width\":\"0px\",\"border-color\":\"rgb(255, 214, 88)\",\"border-style\":\"none\"}'),
(32, '.tp-caption.medium_bg_red', NULL, NULL, '{\"font-size\":\"20px\",\"line-height\":\"20px\",\"font-weight\":\"800\",\"font-family\":\"\\\"Open Sans\\\"\",\"color\":\"rgb(255, 255, 255)\",\"text-decoration\":\"none\",\"background-color\":\"rgb(227, 58, 12)\",\"padding\":\"10px\",\"border-width\":\"0px\",\"border-color\":\"rgb(255, 214, 88)\",\"border-style\":\"none\"}'),
(33, '.tp-caption.medium_bold_orange', NULL, NULL, '{\"font-size\":\"24px\",\"line-height\":\"30px\",\"font-weight\":\"800\",\"font-family\":\"\\\"Open Sans\\\"\",\"color\":\"rgb(243, 156, 18)\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"border-width\":\"0px\",\"border-color\":\"rgb(255, 214, 88)\",\"border-style\":\"none\"}'),
(34, '.tp-caption.medium_bg_orange', NULL, NULL, '{\"font-size\":\"20px\",\"line-height\":\"20px\",\"font-weight\":\"800\",\"font-family\":\"\\\"Open Sans\\\"\",\"color\":\"rgb(255, 255, 255)\",\"text-decoration\":\"none\",\"background-color\":\"rgb(243, 156, 18)\",\"padding\":\"10px\",\"border-width\":\"0px\",\"border-color\":\"rgb(255, 214, 88)\",\"border-style\":\"none\"}'),
(35, '.tp-caption.grassfloor', NULL, NULL, '{\"text-decoration\":\"none\",\"background-color\":\"rgba(160, 179, 151, 1)\",\"width\":\"4000px\",\"height\":\"150px\",\"border-width\":\"0px\",\"border-color\":\"rgb(34, 34, 34)\",\"border-style\":\"none\"}'),
(36, '.tp-caption.large_bold_white', NULL, NULL, '{\"font-size\":\"58px\",\"line-height\":\"60px\",\"font-weight\":\"800\",\"font-family\":\"\\\"Open Sans\\\"\",\"color\":\"rgb(255, 255, 255)\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"border-width\":\"0px\",\"border-color\":\"rgb(255, 214, 88)\",\"border-style\":\"none\"}'),
(37, '.tp-caption.medium_light_white', NULL, NULL, '{\"font-size\":\"30px\",\"line-height\":\"36px\",\"font-weight\":\"300\",\"font-family\":\"\\\"Open Sans\\\"\",\"color\":\"rgb(255, 255, 255)\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"padding\":\"0px\",\"border-width\":\"0px\",\"border-color\":\"rgb(255, 214, 88)\",\"border-style\":\"none\"}'),
(38, '.tp-caption.mediumlarge_light_white', NULL, NULL, '{\"font-size\":\"34px\",\"line-height\":\"40px\",\"font-weight\":\"300\",\"font-family\":\"\\\"Open Sans\\\"\",\"color\":\"rgb(255, 255, 255)\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"padding\":\"0px\",\"border-width\":\"0px\",\"border-color\":\"rgb(255, 214, 88)\",\"border-style\":\"none\"}'),
(39, '.tp-caption.mediumlarge_light_white_center', NULL, NULL, '{\"font-size\":\"34px\",\"line-height\":\"40px\",\"font-weight\":\"300\",\"font-family\":\"\\\"Open Sans\\\"\",\"color\":\"#ffffff\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"padding\":\"0px 0px 0px 0px\",\"text-align\":\"center\",\"border-width\":\"0px\",\"border-color\":\"rgb(255, 214, 88)\",\"border-style\":\"none\"}'),
(40, '.tp-caption.medium_bg_asbestos', NULL, NULL, '{\"font-size\":\"20px\",\"line-height\":\"20px\",\"font-weight\":\"800\",\"font-family\":\"\\\"Open Sans\\\"\",\"color\":\"rgb(255, 255, 255)\",\"text-decoration\":\"none\",\"background-color\":\"rgb(127, 140, 141)\",\"padding\":\"10px\",\"border-width\":\"0px\",\"border-color\":\"rgb(255, 214, 88)\",\"border-style\":\"none\"}'),
(41, '.tp-caption.medium_light_black', NULL, NULL, '{\"font-size\":\"30px\",\"line-height\":\"36px\",\"font-weight\":\"300\",\"font-family\":\"\\\"Open Sans\\\"\",\"color\":\"rgb(0, 0, 0)\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"padding\":\"0px\",\"border-width\":\"0px\",\"border-color\":\"rgb(255, 214, 88)\",\"border-style\":\"none\"}'),
(42, '.tp-caption.large_bold_black', NULL, NULL, '{\"font-size\":\"58px\",\"line-height\":\"60px\",\"font-weight\":\"800\",\"font-family\":\"\\\"Open Sans\\\"\",\"color\":\"rgb(0, 0, 0)\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"border-width\":\"0px\",\"border-color\":\"rgb(255, 214, 88)\",\"border-style\":\"none\"}'),
(43, '.tp-caption.mediumlarge_light_darkblue', NULL, NULL, '{\"font-size\":\"34px\",\"line-height\":\"40px\",\"font-weight\":\"300\",\"font-family\":\"\\\"Open Sans\\\"\",\"color\":\"rgb(52, 73, 94)\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"padding\":\"0px\",\"border-width\":\"0px\",\"border-color\":\"rgb(255, 214, 88)\",\"border-style\":\"none\"}'),
(44, '.tp-caption.small_light_white', NULL, NULL, '{\"font-size\":\"17px\",\"line-height\":\"28px\",\"font-weight\":\"300\",\"font-family\":\"\\\"Open Sans\\\"\",\"color\":\"rgb(255, 255, 255)\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"padding\":\"0px\",\"border-width\":\"0px\",\"border-color\":\"rgb(255, 214, 88)\",\"border-style\":\"none\"}'),
(45, '.tp-caption.roundedimage', NULL, NULL, '{\"border-width\":\"0px\",\"border-color\":\"rgb(34, 34, 34)\",\"border-style\":\"none\"}'),
(46, '.tp-caption.large_bg_black', NULL, NULL, '{\"font-size\":\"40px\",\"line-height\":\"40px\",\"font-weight\":\"800\",\"font-family\":\"\\\"Open Sans\\\"\",\"color\":\"rgb(255, 255, 255)\",\"text-decoration\":\"none\",\"background-color\":\"rgb(0, 0, 0)\",\"padding\":\"10px 20px 15px\",\"border-width\":\"0px\",\"border-color\":\"rgb(255, 214, 88)\",\"border-style\":\"none\"}'),
(47, '.tp-caption.mediumwhitebg', NULL, NULL, '{\"font-size\":\"30px\",\"line-height\":\"30px\",\"font-weight\":\"300\",\"font-family\":\"\\\"Open Sans\\\"\",\"color\":\"rgb(0, 0, 0)\",\"text-decoration\":\"none\",\"background-color\":\"rgb(255, 255, 255)\",\"padding\":\"5px 15px 10px\",\"text-shadow\":\"none\",\"border-width\":\"0px\",\"border-color\":\"rgb(0, 0, 0)\",\"border-style\":\"none\"}'),
(48, '.tp-caption.avada_huge_white_text', NULL, NULL, '{\"position\":\"absolute\",\"color\":\"#ffffff\",\"font-size\":\"130px\",\"line-height\":\"45px\",\"font-family\":\"museoslab500regular\"}'),
(49, '.tp-caption.avada_huge_black_text', NULL, NULL, '{\"position\":\"absolute\",\"color\":\"#000000\",\"font-size\":\"130px\",\"line-height\":\"45px\",\"font-family\":\"museoslab500regular\"}'),
(50, '.tp-caption.avada_big_black_text', NULL, NULL, '{\"position\":\"absolute\",\"color\":\"#333333\",\"font-size\":\"42px\",\"line-height\":\"45px\",\"font-family\":\"museoslab500regular\"}'),
(51, '.tp-caption.avada_big_white_text', NULL, NULL, '{\"position\":\"absolute\",\"color\":\"#fff\",\"font-size\":\"42px\",\"line-height\":\"45px\",\"font-family\":\"museoslab500regular\"}'),
(52, '.tp-caption.avada_big_black_text_center', NULL, NULL, '{\"position\":\"absolute\",\"color\":\"#333333\",\"font-size\":\"38px\",\"line-height\":\"45px\",\"font-family\":\"museoslab500regular\",\"text-align\":\"center\"}'),
(53, '.tp-caption.avada_med_green_text', NULL, NULL, '{\"position\":\"absolute\",\"color\":\"#A0CE4E\",\"font-size\":\"24px\",\"line-height\":\"24px\",\"font-family\":\"PTSansRegular, Arial, Helvetica, sans-serif\"}'),
(54, '.tp-caption.avada_small_gray_text', NULL, NULL, '{\"position\":\"absolute\",\"color\":\"#747474\",\"font-size\":\"13px\",\"line-height\":\"20px\",\"font-family\":\"PTSansRegular, Arial, Helvetica, sans-serif\"}'),
(55, '.tp-caption.avada_small_white_text', NULL, NULL, '{\"position\":\"absolute\",\"color\":\"#fff\",\"font-size\":\"13px\",\"line-height\":\"20px\",\"font-family\":\"PTSansRegular, Arial, Helvetica, sans-serif\",\"text-shadow\":\"0px 2px 5px rgba(0, 0, 0, 0.5)\",\"font-weight\":\"700\"}'),
(56, '.tp-caption.avada_block_black', NULL, NULL, '{\"position\":\"absolute\",\"color\":\"#A0CE4E\",\"text-shadow\":\"none\",\"font-size\":\"22px\",\"line-height\":\"34px\",\"padding\":\"0px 10px\",\"padding-top\":\"1px\",\"margin\":\"0px\",\"border-width\":\"0px\",\"border-style\":\"none\",\"background-color\":\"#000\",\"font-family\":\"PTSansRegular, Arial, Helvetica, sans-serif\"}'),
(57, '.tp-caption.avada_block_green', NULL, NULL, '{\"position\":\"absolute\",\"color\":\"#000\",\"text-shadow\":\"none\",\"font-size\":\"22px\",\"line-height\":\"34px\",\"padding\":\"0px 10px\",\"padding-top\":\"1px\",\"margin\":\"0px\",\"border-width\":\"0px\",\"border-style\":\"none\",\"background-color\":\"#A0CE4E\",\"font-family\":\"PTSansRegular, Arial, Helvetica, sans-serif\"}'),
(58, '.tp-caption.avada_block_white', NULL, NULL, '{\"position\":\"absolute\",\"color\":\"#fff\",\"text-shadow\":\"none\",\"font-size\":\"22px\",\"line-height\":\"34px\",\"padding\":\"0px 10px\",\"padding-top\":\"1px\",\"margin\":\"0px\",\"border-width\":\"0px\",\"border-style\":\"none\",\"background-color\":\"#000\",\"font-family\":\"PTSansRegular, Arial, Helvetica, sans-serif\"}'),
(59, '.tp-caption.avada_block_white_trans', NULL, NULL, '{\"position\":\"absolute\",\"color\":\"#fff\",\"text-shadow\":\"none\",\"font-size\":\"22px\",\"line-height\":\"34px\",\"padding\":\"0px 10px\",\"padding-top\":\"1px\",\"margin\":\"0px\",\"border-width\":\"0px\",\"border-style\":\"none\",\"background-color\":\"rgba(0, 0, 0, 0.6)\",\"font-family\":\"PTSansRegular, Arial, Helvetica, sans-serif\"}');

-- --------------------------------------------------------

--
-- Table structure for table `wp_revslider_layer_animations`
--

CREATE TABLE `wp_revslider_layer_animations` (
  `id` int(9) NOT NULL,
  `handle` text NOT NULL,
  `params` text NOT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_general_ci;

-- --------------------------------------------------------

--
-- Table structure for table `wp_revslider_settings`
--

CREATE TABLE `wp_revslider_settings` (
  `id` int(9) NOT NULL,
  `general` text NOT NULL,
  `params` text NOT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_general_ci;

--
-- Dumping data for table `wp_revslider_settings`
--

INSERT INTO `wp_revslider_settings` (`id`, `general`, `params`) VALUES
(1, 'a:0:{}', '');

-- --------------------------------------------------------

--
-- Table structure for table `wp_revslider_sliders`
--

CREATE TABLE `wp_revslider_sliders` (
  `id` int(9) NOT NULL,
  `title` tinytext NOT NULL,
  `alias` tinytext DEFAULT NULL,
  `params` text NOT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_general_ci;

-- --------------------------------------------------------

--
-- Table structure for table `wp_revslider_slides`
--

CREATE TABLE `wp_revslider_slides` (
  `id` int(9) NOT NULL,
  `slider_id` int(9) NOT NULL,
  `slide_order` int(11) NOT NULL,
  `params` text NOT NULL,
  `layers` text NOT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_general_ci;

-- --------------------------------------------------------

--
-- Table structure for table `wp_revslider_static_slides`
--

CREATE TABLE `wp_revslider_static_slides` (
  `id` int(9) NOT NULL,
  `slider_id` int(9) NOT NULL,
  `params` text NOT NULL,
  `layers` text NOT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_general_ci;

-- --------------------------------------------------------

--
-- Table structure for table `wp_termmeta`
--

CREATE TABLE `wp_termmeta` (
  `meta_id` bigint(20) UNSIGNED NOT NULL,
  `term_id` bigint(20) UNSIGNED NOT NULL DEFAULT 0,
  `meta_key` varchar(255) DEFAULT NULL,
  `meta_value` longtext DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;

--
-- Dumping data for table `wp_termmeta`
--

INSERT INTO `wp_termmeta` (`meta_id`, `term_id`, `meta_key`, `meta_value`) VALUES
(1, 27, 'fusion_slider_options', 'a:20:{s:12:\"slider_width\";s:1:\"2\";s:13:\"slider_height\";s:1:\"2\";s:20:\"slider_content_width\";s:0:\"\";s:11:\"full_screen\";s:1:\"1\";s:16:\"slider_indicator\";s:0:\"\";s:22:\"slider_indicator_color\";s:0:\"\";s:8:\"parallax\";s:1:\"1\";s:10:\"nav_arrows\";s:1:\"1\";s:13:\"nav_box_width\";s:1:\"2\";s:14:\"nav_box_height\";s:1:\"2\";s:14:\"nav_arrow_size\";s:0:\"\";s:8:\"autoplay\";s:1:\"1\";s:4:\"loop\";s:1:\"1\";s:7:\"orderby\";s:4:\"date\";s:5:\"order\";s:4:\"DESC\";s:9:\"animation\";s:4:\"fade\";s:15:\"slideshow_speed\";s:1:\"2\";s:15:\"animation_speed\";s:1:\"2\";s:16:\"typo_sensitivity\";s:1:\"2\";s:11:\"typo_factor\";s:1:\"2\";}'),
(2, 21, 'fusion_slider_options', 'a:20:{s:12:\"slider_width\";s:6:\"1920px\";s:13:\"slider_height\";s:6:\"1080px\";s:20:\"slider_content_width\";s:0:\"\";s:11:\"full_screen\";s:1:\"1\";s:16:\"slider_indicator\";s:18:\"pagination_circles\";s:22:\"slider_indicator_color\";s:0:\"\";s:8:\"parallax\";s:1:\"1\";s:10:\"nav_arrows\";s:1:\"1\";s:13:\"nav_box_width\";s:4:\"40px\";s:14:\"nav_box_height\";s:4:\"40px\";s:14:\"nav_arrow_size\";s:0:\"\";s:8:\"autoplay\";s:1:\"1\";s:4:\"loop\";s:1:\"1\";s:7:\"orderby\";s:4:\"date\";s:5:\"order\";s:4:\"DESC\";s:9:\"animation\";s:4:\"fade\";s:15:\"slideshow_speed\";s:4:\"5000\";s:15:\"animation_speed\";s:4:\"1000\";s:16:\"typo_sensitivity\";s:1:\"2\";s:11:\"typo_factor\";s:1:\"2\";}'),
(3, 27, '_fusion', 'a:16:{s:12:\"slider_width\";s:1:\"2\";s:13:\"slider_height\";s:1:\"2\";s:11:\"full_screen\";s:1:\"1\";s:8:\"parallax\";s:1:\"1\";s:10:\"nav_arrows\";s:1:\"1\";s:13:\"nav_box_width\";s:1:\"2\";s:14:\"nav_box_height\";s:1:\"2\";s:8:\"autoplay\";s:1:\"1\";s:4:\"loop\";s:1:\"1\";s:7:\"orderby\";s:4:\"date\";s:5:\"order\";s:4:\"DESC\";s:9:\"animation\";s:4:\"fade\";s:15:\"slideshow_speed\";s:1:\"2\";s:15:\"animation_speed\";s:1:\"2\";s:16:\"typo_sensitivity\";s:1:\"2\";s:11:\"typo_factor\";s:1:\"2\";}'),
(4, 21, '_fusion', 'a:17:{s:12:\"slider_width\";s:6:\"1920px\";s:13:\"slider_height\";s:6:\"1080px\";s:11:\"full_screen\";s:1:\"1\";s:16:\"slider_indicator\";s:18:\"pagination_circles\";s:8:\"parallax\";s:1:\"1\";s:10:\"nav_arrows\";s:1:\"1\";s:13:\"nav_box_width\";s:4:\"40px\";s:14:\"nav_box_height\";s:4:\"40px\";s:8:\"autoplay\";s:1:\"1\";s:4:\"loop\";s:1:\"1\";s:7:\"orderby\";s:4:\"date\";s:5:\"order\";s:4:\"DESC\";s:9:\"animation\";s:4:\"fade\";s:15:\"slideshow_speed\";s:4:\"5000\";s:15:\"animation_speed\";s:4:\"1000\";s:16:\"typo_sensitivity\";s:1:\"2\";s:11:\"typo_factor\";s:1:\"2\";}'),
(5, 22, '_fusion', 'a:0:{}'),
(6, 32, '_fusion', 'a:0:{}'),
(7, 1, '_fusion', 'a:0:{}'),
(8, 30, '_fusion', 'a:0:{}'),
(9, 6, '_fusion', 'a:0:{}'),
(10, 4, '_fusion', 'a:0:{}'),
(11, 3, '_fusion', 'a:0:{}'),
(12, 5, '_fusion', 'a:0:{}'),
(13, 7, '_fusion', 'a:0:{}'),
(14, 2, '_fusion', 'a:0:{}');

-- --------------------------------------------------------

--
-- Table structure for table `wp_terms`
--

CREATE TABLE `wp_terms` (
  `term_id` bigint(20) UNSIGNED NOT NULL,
  `name` varchar(200) NOT NULL DEFAULT '',
  `slug` varchar(200) NOT NULL DEFAULT '',
  `term_group` bigint(10) NOT NULL DEFAULT 0
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;

--
-- Dumping data for table `wp_terms`
--

INSERT INTO `wp_terms` (`term_id`, `name`, `slug`, `term_group`) VALUES
(1, 'Uncategorized', 'uncategorized', 0),
(2, 'Cold Countries', 'cold-countries', 0),
(3, 'Feature', 'feature', 0),
(4, 'General', 'general', 0),
(5, 'Summer', 'summer', 0),
(6, 'Warm Countries', 'warm-countries', 0),
(7, 'Winter', 'winter', 0),
(8, 'Africa', 'africa', 0),
(9, 'Bucket List', 'bucket-list', 0),
(10, 'Feature', 'feature', 0),
(11, 'General', 'general', 0),
(12, 'Health', 'health', 0),
(13, 'Mountains', 'mountains', 0),
(14, 'Must Do', 'must-do', 0),
(15, 'Popular', 'popular', 0),
(16, 'Road Trip', 'road-trip', 0),
(17, 'Special', 'special', 0),
(18, 'Summer', 'summer', 0),
(19, 'Trip', 'trip', 0),
(20, 'Winter', 'winter', 0),
(21, 'Lodge', 'lodge', 0),
(22, 'Gardens', 'gardens', 0),
(23, 'Beaches', 'beaches', 0),
(24, 'Blog', 'blog', 0),
(25, 'Destinations', 'destinations', 0),
(26, 'Gateways', 'gateways', 0),
(27, 'Home', 'home2', 0),
(28, 'Reservation', 'reservation', 0),
(29, 'Spa', 'spa', 0),
(30, 'Bedrooms', 'bedrooms', 0),
(31, 'Main Menu', 'main-menu', 0),
(32, 'The Lodge', 'the-lodge', 0),
(33, 'Top Menu', 'top-menu', 0),
(34, 'post-format-image', 'post-format-image', 0);

-- --------------------------------------------------------

--
-- Table structure for table `wp_term_relationships`
--

CREATE TABLE `wp_term_relationships` (
  `object_id` bigint(20) UNSIGNED NOT NULL DEFAULT 0,
  `term_taxonomy_id` bigint(20) UNSIGNED NOT NULL DEFAULT 0,
  `term_order` int(11) NOT NULL DEFAULT 0
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;

--
-- Dumping data for table `wp_term_relationships`
--

INSERT INTO `wp_term_relationships` (`object_id`, `term_taxonomy_id`, `term_order`) VALUES
(1, 1, 0),
(24, 27, 0),
(50, 32, 0),
(53, 32, 0),
(55, 32, 0),
(57, 32, 0),
(59, 32, 0),
(61, 32, 0),
(86, 4, 0),
(86, 5, 0),
(86, 6, 0),
(86, 8, 0),
(86, 12, 0),
(89, 3, 0),
(89, 4, 0),
(89, 5, 0),
(89, 6, 0),
(89, 9, 0),
(89, 17, 0),
(92, 3, 0),
(92, 4, 0),
(92, 6, 0),
(92, 7, 0),
(92, 14, 0),
(92, 16, 0),
(96, 25, 0),
(152, 28, 0),
(192, 21, 0),
(319, 24, 0),
(358, 32, 0),
(361, 32, 0),
(364, 32, 0),
(415, 3, 0),
(415, 4, 0),
(415, 5, 0),
(415, 6, 0),
(415, 11, 0),
(415, 20, 0),
(830, 31, 0),
(832, 31, 0),
(919, 30, 0),
(927, 30, 0),
(930, 30, 0),
(934, 30, 0),
(936, 30, 0),
(938, 30, 0),
(942, 22, 0),
(948, 22, 0),
(950, 22, 0),
(1005, 33, 0),
(1006, 33, 0),
(1149, 33, 0),
(1196, 22, 0),
(1199, 22, 0),
(1201, 22, 0),
(1202, 22, 0),
(1317, 31, 0),
(1416, 21, 0),
(1420, 21, 0),
(1422, 21, 0),
(1424, 21, 0),
(1426, 21, 0),
(1428, 21, 0),
(1431, 21, 0);

-- --------------------------------------------------------

--
-- Table structure for table `wp_term_taxonomy`
--

CREATE TABLE `wp_term_taxonomy` (
  `term_taxonomy_id` bigint(20) UNSIGNED NOT NULL,
  `term_id` bigint(20) UNSIGNED NOT NULL DEFAULT 0,
  `taxonomy` varchar(32) NOT NULL DEFAULT '',
  `description` longtext NOT NULL,
  `parent` bigint(20) UNSIGNED NOT NULL DEFAULT 0,
  `count` bigint(20) NOT NULL DEFAULT 0
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;

--
-- Dumping data for table `wp_term_taxonomy`
--

INSERT INTO `wp_term_taxonomy` (`term_taxonomy_id`, `term_id`, `taxonomy`, `description`, `parent`, `count`) VALUES
(1, 1, 'category', '', 0, 1),
(2, 2, 'category', '', 0, 0),
(3, 3, 'category', '', 0, 0),
(4, 4, 'category', '', 0, 0),
(5, 5, 'category', '', 0, 0),
(6, 6, 'category', '', 0, 0),
(7, 7, 'category', '', 0, 0),
(8, 8, 'post_tag', '', 0, 0),
(9, 9, 'post_tag', '', 0, 0),
(10, 10, 'post_tag', '', 0, 0),
(11, 11, 'post_tag', '', 0, 0),
(12, 12, 'post_tag', '', 0, 0),
(13, 13, 'post_tag', '', 0, 0),
(14, 14, 'post_tag', '', 0, 0),
(15, 15, 'post_tag', '', 0, 0),
(16, 16, 'post_tag', '', 0, 0),
(17, 17, 'post_tag', '', 0, 0),
(18, 18, 'post_tag', '', 0, 0),
(19, 19, 'post_tag', '', 0, 0),
(20, 20, 'post_tag', '', 0, 0),
(21, 21, 'slide-page', '', 0, 8),
(22, 22, 'portfolio_category', '', 0, 6),
(23, 23, 'portfolio_category', '', 0, 0),
(24, 24, 'slide-page', '', 0, 0),
(25, 25, 'slide-page', '', 0, 0),
(26, 26, 'portfolio_category', '', 0, 0),
(27, 27, 'slide-page', '', 0, 1),
(28, 28, 'slide-page', '', 0, 0),
(29, 29, 'portfolio_category', '', 0, 0),
(30, 30, 'portfolio_category', '', 0, 6),
(31, 31, 'nav_menu', '', 0, 3),
(32, 32, 'portfolio_category', '', 0, 9),
(33, 33, 'nav_menu', '', 0, 3),
(34, 34, 'post_format', '', 0, 0);

-- --------------------------------------------------------

--
-- Table structure for table `wp_usermeta`
--

CREATE TABLE `wp_usermeta` (
  `umeta_id` bigint(20) UNSIGNED NOT NULL,
  `user_id` bigint(20) UNSIGNED NOT NULL DEFAULT 0,
  `meta_key` varchar(255) DEFAULT NULL,
  `meta_value` longtext DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;

--
-- Dumping data for table `wp_usermeta`
--

INSERT INTO `wp_usermeta` (`umeta_id`, `user_id`, `meta_key`, `meta_value`) VALUES
(1, 1, 'nickname', 'lodge'),
(2, 1, 'first_name', ''),
(3, 1, 'last_name', ''),
(4, 1, 'description', ''),
(5, 1, 'rich_editing', 'true'),
(6, 1, 'comment_shortcuts', 'false'),
(7, 1, 'admin_color', 'fresh'),
(8, 1, 'use_ssl', '0'),
(9, 1, 'show_admin_bar_front', 'true'),
(10, 1, 'wp_capabilities', 'a:1:{s:13:\"administrator\";b:1;}'),
(11, 1, 'wp_user_level', '10'),
(12, 1, 'dismissed_wp_pointers', 'wp360_locks,wp390_widgets,wp410_dfw,wpe_admin_pointers_1_0_toggle_toolbar,wp496_privacy'),
(13, 1, 'default_password_nag', ''),
(14, 1, 'show_welcome_panel', '1'),
(15, 1, 'session_tokens', 'a:2:{s:64:\"4f1d2b9838dbf3b854501e36e0c2fc55b8e6d640029c8ec4c8e664fb3e0ddd97\";a:4:{s:10:\"expiration\";i:1731160003;s:2:\"ip\";s:13:\"211.173.25.25\";s:2:\"ua\";s:111:\"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/127.0.0.0 Safari/537.36\";s:5:\"login\";i:1730987203;}s:64:\"aa7d42a0da7fb53cc2682cfbcfc39913ed10bfea68aaea431f7098826fb57ec7\";a:4:{s:10:\"expiration\";i:1731238819;s:2:\"ip\";s:13:\"47.219.205.36\";s:2:\"ua\";s:111:\"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/127.0.0.0 Safari/537.36\";s:5:\"login\";i:1731066019;}}'),
(16, 1, 'wp_user-settings', 'libraryContent=browse&editor=tinymce&hidetb=1&easy_tutorial=settings&imgsize=full&align=left&wplink=1&advImgDetails=hide&unfold=1&mfold=o'),
(17, 1, 'wp_user-settings-time', '1588768911'),
(18, 1, 'wp_dashboard_quick_press_last_post_id', '1457'),
(19, 1, 'aaa_wp_edit_user_meta', 'a:11:{s:9:\"id_column\";s:1:\"0\";s:16:\"thumbnail_column\";s:1:\"0\";s:13:\"hide_text_tab\";s:1:\"0\";s:18:\"default_visual_tab\";s:1:\"0\";s:16:\"dashboard_widget\";s:1:\"0\";s:17:\"enable_highlights\";s:1:\"0\";s:15:\"draft_highlight\";s:7:\"#FFFFFF\";s:17:\"pending_highlight\";s:7:\"#FFFFFF\";s:19:\"published_highlight\";s:7:\"#FFFFFF\";s:16:\"future_highlight\";s:7:\"#FFFFFF\";s:17:\"private_highlight\";s:7:\"#FFFFFF\";}'),
(20, 1, 'nav_menu_recently_edited', '33'),
(21, 1, 'managenav-menuscolumnshidden', 'a:4:{i:0;s:11:\"link-target\";i:1;s:11:\"css-classes\";i:2;s:3:\"xfn\";i:3;s:11:\"description\";}'),
(22, 1, 'metaboxhidden_nav-menus', 'a:12:{i:0;s:8:\"add-post\";i:1;s:9:\"add-slide\";i:2;s:19:\"add-avada_portfolio\";i:3;s:13:\"add-avada_faq\";i:4;s:23:\"add-themefusion_elastic\";i:5;s:12:\"add-post_tag\";i:6;s:15:\"add-post_format\";i:7;s:22:\"add-portfolio_category\";i:8;s:20:\"add-portfolio_skills\";i:9;s:18:\"add-portfolio_tags\";i:10;s:16:\"add-faq_category\";i:11;s:25:\"add-themefusion_es_groups\";}'),
(23, 1, 'layerslider_help_wp_pointer', '1'),
(24, 1, 'wp_media_library_mode', 'list'),
(25, 1, 'closedpostboxes_avada_portfolio', 'a:1:{i:0;s:22:\"pyre_portfolio_options\";}'),
(26, 1, 'metaboxhidden_avada_portfolio', 'a:9:{i:0;s:19:\"portfolio_skillsdiv\";i:1;s:32:\"featured-image-2_avada_portfolio\";i:2;s:32:\"featured-image-3_avada_portfolio\";i:3;s:32:\"featured-image-4_avada_portfolio\";i:4;s:32:\"featured-image-5_avada_portfolio\";i:5;s:16:\"commentstatusdiv\";i:6;s:11:\"commentsdiv\";i:7;s:7:\"slugdiv\";i:8;s:9:\"authordiv\";}'),
(27, 1, 'closedpostboxes_page', 'a:0:{}'),
(28, 1, 'metaboxhidden_page', 'a:11:{i:0;s:24:\"fusion_settings_meta_box\";i:1;s:21:\"featured-image-2_page\";i:2;s:21:\"featured-image-3_page\";i:3;s:21:\"featured-image-4_page\";i:4;s:21:\"featured-image-5_page\";i:5;s:27:\"fusion_featured_images_info\";i:6;s:12:\"revisionsdiv\";i:7;s:10:\"postcustom\";i:8;s:16:\"commentstatusdiv\";i:9;s:7:\"slugdiv\";i:10;s:9:\"authordiv\";}'),
(29, 1, 'ignore_wpedit_ag_notice', 'yes'),
(30, 1, 'DOPBSP_backend_language', 'en'),
(31, 1, 'community-events-location', 'a:1:{s:2:\"ip\";s:11:\"41.144.99.0\";}'),
(32, 1, 'closedpostboxes_dashboard', 'a:0:{}'),
(33, 1, 'metaboxhidden_dashboard', 'a:1:{i:0;s:21:\"dashboard_browser_nag\";}'),
(34, 2, 'nickname', 'debug'),
(35, 2, 'first_name', ''),
(36, 2, 'last_name', ''),
(37, 2, 'description', 'Debug user'),
(38, 2, 'rich_editing', 'true'),
(39, 2, 'comment_shortcuts', 'false'),
(40, 2, 'admin_color', 'fresh'),
(41, 2, 'use_ssl', '0'),
(42, 2, 'show_admin_bar_front', 'true'),
(43, 2, 'locale', ''),
(44, 2, 'wp_capabilities', 'a:1:{s:13:\"administrator\";b:1;}'),
(45, 2, 'wp_user_level', '10'),
(46, 2, 'author_email', ''),
(47, 2, 'author_facebook', ''),
(48, 2, 'author_twitter', ''),
(49, 2, 'author_linkedin', ''),
(50, 2, 'author_dribble', ''),
(51, 2, 'author_gplus', ''),
(52, 2, 'author_custom', ''),
(53, 1, 'wpcf7_hide_welcome_panel_on', 'a:1:{i:0;s:3:\"5.1\";}'),
(54, 1, 'the-meta', '1');

-- --------------------------------------------------------

--
-- Table structure for table `wp_users`
--

CREATE TABLE `wp_users` (
  `ID` bigint(20) UNSIGNED NOT NULL,
  `user_login` varchar(60) NOT NULL DEFAULT '',
  `user_pass` varchar(255) NOT NULL DEFAULT '',
  `user_nicename` varchar(50) NOT NULL DEFAULT '',
  `user_email` varchar(100) NOT NULL DEFAULT '',
  `user_url` varchar(100) NOT NULL DEFAULT '',
  `user_registered` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
  `user_activation_key` varchar(255) NOT NULL DEFAULT '',
  `user_status` int(11) NOT NULL DEFAULT 0,
  `display_name` varchar(250) NOT NULL DEFAULT ''
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;

--
-- Dumping data for table `wp_users`
--

INSERT INTO `wp_users` (`ID`, `user_login`, `user_pass`, `user_nicename`, `user_email`, `user_url`, `user_registered`, `user_activation_key`, `user_status`, `display_name`) VALUES
(1, 'lodge', '$P$BeOUnwghDhx3wFJ//hKfFKukzmv1S61', 'lodge', 'assagaylodge@msla.co.za', '', '2015-08-07 13:45:49', '', 0, 'lodge'),
(2, 'debug', '$P$BAIiJBczkZ2XpkFwcS.lKQhKbZYruD0', 'debug', 'debug@help.help', '', '2017-08-03 10:01:13', '', 0, 'debug');

--
-- Indexes for dumped tables
--

--
-- Indexes for table `wp_commentmeta`
--
ALTER TABLE `wp_commentmeta`
  ADD PRIMARY KEY (`meta_id`),
  ADD KEY `comment_id` (`comment_id`),
  ADD KEY `meta_key` (`meta_key`(191));

--
-- Indexes for table `wp_comments`
--
ALTER TABLE `wp_comments`
  ADD PRIMARY KEY (`comment_ID`),
  ADD KEY `comment_post_ID` (`comment_post_ID`),
  ADD KEY `comment_approved_date_gmt` (`comment_approved`,`comment_date_gmt`),
  ADD KEY `comment_date_gmt` (`comment_date_gmt`),
  ADD KEY `comment_parent` (`comment_parent`),
  ADD KEY `comment_author_email` (`comment_author_email`(10));

--
-- Indexes for table `wp_datalist`
--
ALTER TABLE `wp_datalist`
  ADD PRIMARY KEY (`url`);

--
-- Indexes for table `wp_dopbsp_api_keys`
--
ALTER TABLE `wp_dopbsp_api_keys`
  ADD UNIQUE KEY `id` (`id`),
  ADD KEY `user_id` (`user_id`);

--
-- Indexes for table `wp_dopbsp_availability`
--
ALTER TABLE `wp_dopbsp_availability`
  ADD KEY `calendar_id` (`calendar_id`),
  ADD KEY `date_start` (`date_start`),
  ADD KEY `date_end` (`date_end`);

--
-- Indexes for table `wp_dopbsp_availability_no`
--
ALTER TABLE `wp_dopbsp_availability_no`
  ADD KEY `calendar_id` (`calendar_id`),
  ADD KEY `no_available` (`no_available`),
  ADD KEY `date_start` (`date_start`),
  ADD KEY `date_end` (`date_end`);

--
-- Indexes for table `wp_dopbsp_availability_price`
--
ALTER TABLE `wp_dopbsp_availability_price`
  ADD KEY `calendar_id` (`calendar_id`),
  ADD KEY `price` (`price`),
  ADD KEY `date_start` (`date_start`),
  ADD KEY `date_end` (`date_end`);

--
-- Indexes for table `wp_dopbsp_calendars`
--
ALTER TABLE `wp_dopbsp_calendars`
  ADD UNIQUE KEY `id` (`id`),
  ADD KEY `user_id` (`user_id`),
  ADD KEY `post_id` (`post_id`),
  ADD KEY `price_min` (`price_min`),
  ADD KEY `price_max` (`price_max`),
  ADD KEY `min_available` (`min_available`);

--
-- Indexes for table `wp_dopbsp_coupons`
--
ALTER TABLE `wp_dopbsp_coupons`
  ADD UNIQUE KEY `id` (`id`),
  ADD KEY `user_id` (`user_id`);

--
-- Indexes for table `wp_dopbsp_days`
--
ALTER TABLE `wp_dopbsp_days`
  ADD UNIQUE KEY `id` (`unique_key`),
  ADD KEY `calendar_id` (`calendar_id`),
  ADD KEY `day` (`day`),
  ADD KEY `year` (`year`),
  ADD KEY `price_min` (`price_min`),
  ADD KEY `price_max` (`price_max`),
  ADD KEY `min_available` (`min_available`);

--
-- Indexes for table `wp_dopbsp_days_available`
--
ALTER TABLE `wp_dopbsp_days_available`
  ADD UNIQUE KEY `id` (`unique_key`),
  ADD KEY `day` (`day`),
  ADD KEY `hour` (`hour`);

--
-- Indexes for table `wp_dopbsp_days_unavailable`
--
ALTER TABLE `wp_dopbsp_days_unavailable`
  ADD UNIQUE KEY `id` (`unique_key`),
  ADD KEY `day` (`day`),
  ADD KEY `hour` (`hour`);

--
-- Indexes for table `wp_dopbsp_discounts`
--
ALTER TABLE `wp_dopbsp_discounts`
  ADD UNIQUE KEY `id` (`id`),
  ADD KEY `user_id` (`user_id`);

--
-- Indexes for table `wp_dopbsp_discounts_items`
--
ALTER TABLE `wp_dopbsp_discounts_items`
  ADD UNIQUE KEY `id` (`id`),
  ADD KEY `discount_id` (`discount_id`);

--
-- Indexes for table `wp_dopbsp_discounts_items_rules`
--
ALTER TABLE `wp_dopbsp_discounts_items_rules`
  ADD UNIQUE KEY `id` (`id`),
  ADD KEY `discount_item_id` (`discount_item_id`);

--
-- Indexes for table `wp_dopbsp_emails`
--
ALTER TABLE `wp_dopbsp_emails`
  ADD UNIQUE KEY `id` (`id`),
  ADD KEY `user_id` (`user_id`);

--
-- Indexes for table `wp_dopbsp_emails_translation`
--
ALTER TABLE `wp_dopbsp_emails_translation`
  ADD UNIQUE KEY `id` (`id`),
  ADD KEY `email_id` (`email_id`),
  ADD KEY `template` (`template`);

--
-- Indexes for table `wp_dopbsp_extras`
--
ALTER TABLE `wp_dopbsp_extras`
  ADD UNIQUE KEY `id` (`id`),
  ADD KEY `user_id` (`user_id`);

--
-- Indexes for table `wp_dopbsp_extras_groups`
--
ALTER TABLE `wp_dopbsp_extras_groups`
  ADD UNIQUE KEY `id` (`id`),
  ADD KEY `extra_id` (`extra_id`);

--
-- Indexes for table `wp_dopbsp_extras_groups_items`
--
ALTER TABLE `wp_dopbsp_extras_groups_items`
  ADD UNIQUE KEY `id` (`id`),
  ADD KEY `group_id` (`group_id`);

--
-- Indexes for table `wp_dopbsp_fees`
--
ALTER TABLE `wp_dopbsp_fees`
  ADD UNIQUE KEY `id` (`id`),
  ADD KEY `user_id` (`user_id`);

--
-- Indexes for table `wp_dopbsp_forms`
--
ALTER TABLE `wp_dopbsp_forms`
  ADD UNIQUE KEY `id` (`id`),
  ADD KEY `user_id` (`user_id`);

--
-- Indexes for table `wp_dopbsp_forms_fields`
--
ALTER TABLE `wp_dopbsp_forms_fields`
  ADD UNIQUE KEY `id` (`id`),
  ADD KEY `form_id` (`form_id`);

--
-- Indexes for table `wp_dopbsp_forms_select_options`
--
ALTER TABLE `wp_dopbsp_forms_select_options`
  ADD UNIQUE KEY `id` (`id`),
  ADD KEY `field_id` (`field_id`);

--
-- Indexes for table `wp_dopbsp_languages`
--
ALTER TABLE `wp_dopbsp_languages`
  ADD UNIQUE KEY `id` (`id`),
  ADD KEY `code` (`code`),
  ADD KEY `enabled` (`enabled`);

--
-- Indexes for table `wp_dopbsp_locations`
--
ALTER TABLE `wp_dopbsp_locations`
  ADD UNIQUE KEY `id` (`id`),
  ADD KEY `user_id` (`user_id`);

--
-- Indexes for table `wp_dopbsp_models`
--
ALTER TABLE `wp_dopbsp_models`
  ADD UNIQUE KEY `id` (`id`),
  ADD KEY `user_id` (`user_id`);

--
-- Indexes for table `wp_dopbsp_reservations`
--
ALTER TABLE `wp_dopbsp_reservations`
  ADD UNIQUE KEY `id` (`id`),
  ADD KEY `calendar_id` (`calendar_id`),
  ADD KEY `check_in` (`check_in`),
  ADD KEY `check_out` (`check_out`),
  ADD KEY `start_hour` (`end_hour`),
  ADD KEY `status` (`status`),
  ADD KEY `payment_method` (`payment_method`),
  ADD KEY `transaction_id` (`transaction_id`),
  ADD KEY `token` (`token`),
  ADD KEY `uid` (`uid`);

--
-- Indexes for table `wp_dopbsp_rules`
--
ALTER TABLE `wp_dopbsp_rules`
  ADD UNIQUE KEY `id` (`id`),
  ADD KEY `user_id` (`user_id`);

--
-- Indexes for table `wp_dopbsp_searches`
--
ALTER TABLE `wp_dopbsp_searches`
  ADD UNIQUE KEY `id` (`id`),
  ADD KEY `user_id` (`user_id`);

--
-- Indexes for table `wp_dopbsp_settings`
--
ALTER TABLE `wp_dopbsp_settings`
  ADD UNIQUE KEY `id` (`id`),
  ADD KEY `name` (`name`);

--
-- Indexes for table `wp_dopbsp_settings_calendar`
--
ALTER TABLE `wp_dopbsp_settings_calendar`
  ADD UNIQUE KEY `id` (`id`),
  ADD KEY `calendar_id` (`calendar_id`),
  ADD KEY `name` (`name`);

--
-- Indexes for table `wp_dopbsp_settings_notifications`
--
ALTER TABLE `wp_dopbsp_settings_notifications`
  ADD UNIQUE KEY `id` (`id`),
  ADD KEY `calendar_id` (`calendar_id`),
  ADD KEY `name` (`name`);

--
-- Indexes for table `wp_dopbsp_settings_payment`
--
ALTER TABLE `wp_dopbsp_settings_payment`
  ADD UNIQUE KEY `id` (`id`),
  ADD KEY `calendar_id` (`calendar_id`),
  ADD KEY `name` (`name`);

--
-- Indexes for table `wp_dopbsp_settings_search`
--
ALTER TABLE `wp_dopbsp_settings_search`
  ADD UNIQUE KEY `id` (`id`),
  ADD KEY `search_id` (`search_id`),
  ADD KEY `name` (`name`);

--
-- Indexes for table `wp_dopbsp_smses`
--
ALTER TABLE `wp_dopbsp_smses`
  ADD UNIQUE KEY `id` (`id`),
  ADD KEY `user_id` (`user_id`);

--
-- Indexes for table `wp_dopbsp_smses_translation`
--
ALTER TABLE `wp_dopbsp_smses_translation`
  ADD UNIQUE KEY `id` (`id`),
  ADD KEY `sms_id` (`sms_id`),
  ADD KEY `template` (`template`);

--
-- Indexes for table `wp_dopbsp_translation_en`
--
ALTER TABLE `wp_dopbsp_translation_en`
  ADD UNIQUE KEY `id` (`id`),
  ADD KEY `key_data` (`key_data`);

--
-- Indexes for table `wp_fusion_forms`
--
ALTER TABLE `wp_fusion_forms`
  ADD PRIMARY KEY (`id`),
  ADD UNIQUE KEY `id` (`id`),
  ADD UNIQUE KEY `form_id` (`form_id`);

--
-- Indexes for table `wp_fusion_form_entries`
--
ALTER TABLE `wp_fusion_form_entries`
  ADD PRIMARY KEY (`id`),
  ADD UNIQUE KEY `id` (`id`);

--
-- Indexes for table `wp_fusion_form_fields`
--
ALTER TABLE `wp_fusion_form_fields`
  ADD PRIMARY KEY (`id`),
  ADD UNIQUE KEY `id` (`id`);

--
-- Indexes for table `wp_fusion_form_submissions`
--
ALTER TABLE `wp_fusion_form_submissions`
  ADD PRIMARY KEY (`id`),
  ADD UNIQUE KEY `id` (`id`);

--
-- Indexes for table `wp_layerslider`
--
ALTER TABLE `wp_layerslider`
  ADD PRIMARY KEY (`id`);

--
-- Indexes for table `wp_links`
--
ALTER TABLE `wp_links`
  ADD PRIMARY KEY (`link_id`),
  ADD KEY `link_visible` (`link_visible`);

--
-- Indexes for table `wp_options`
--
ALTER TABLE `wp_options`
  ADD PRIMARY KEY (`option_id`),
  ADD UNIQUE KEY `option_name` (`option_name`),
  ADD KEY `autoload` (`autoload`);

--
-- Indexes for table `wp_postmeta`
--
ALTER TABLE `wp_postmeta`
  ADD PRIMARY KEY (`meta_id`),
  ADD KEY `post_id` (`post_id`),
  ADD KEY `meta_key` (`meta_key`(191));

--
-- Indexes for table `wp_posts`
--
ALTER TABLE `wp_posts`
  ADD PRIMARY KEY (`ID`),
  ADD KEY `post_name` (`post_name`(191)),
  ADD KEY `type_status_date` (`post_type`,`post_status`,`post_date`,`ID`),
  ADD KEY `post_parent` (`post_parent`),
  ADD KEY `post_author` (`post_author`);

--
-- Indexes for table `wp_revslider_css`
--
ALTER TABLE `wp_revslider_css`
  ADD UNIQUE KEY `id` (`id`);

--
-- Indexes for table `wp_revslider_layer_animations`
--
ALTER TABLE `wp_revslider_layer_animations`
  ADD UNIQUE KEY `id` (`id`);

--
-- Indexes for table `wp_revslider_settings`
--
ALTER TABLE `wp_revslider_settings`
  ADD UNIQUE KEY `id` (`id`);

--
-- Indexes for table `wp_revslider_sliders`
--
ALTER TABLE `wp_revslider_sliders`
  ADD UNIQUE KEY `id` (`id`);

--
-- Indexes for table `wp_revslider_slides`
--
ALTER TABLE `wp_revslider_slides`
  ADD UNIQUE KEY `id` (`id`);

--
-- Indexes for table `wp_revslider_static_slides`
--
ALTER TABLE `wp_revslider_static_slides`
  ADD UNIQUE KEY `id` (`id`);

--
-- Indexes for table `wp_termmeta`
--
ALTER TABLE `wp_termmeta`
  ADD PRIMARY KEY (`meta_id`),
  ADD KEY `term_id` (`term_id`),
  ADD KEY `meta_key` (`meta_key`(191));

--
-- Indexes for table `wp_terms`
--
ALTER TABLE `wp_terms`
  ADD PRIMARY KEY (`term_id`),
  ADD KEY `slug` (`slug`(191)),
  ADD KEY `name` (`name`(191));

--
-- Indexes for table `wp_term_relationships`
--
ALTER TABLE `wp_term_relationships`
  ADD PRIMARY KEY (`object_id`,`term_taxonomy_id`),
  ADD KEY `term_taxonomy_id` (`term_taxonomy_id`);

--
-- Indexes for table `wp_term_taxonomy`
--
ALTER TABLE `wp_term_taxonomy`
  ADD PRIMARY KEY (`term_taxonomy_id`),
  ADD UNIQUE KEY `term_id_taxonomy` (`term_id`,`taxonomy`),
  ADD KEY `taxonomy` (`taxonomy`);

--
-- Indexes for table `wp_usermeta`
--
ALTER TABLE `wp_usermeta`
  ADD PRIMARY KEY (`umeta_id`),
  ADD KEY `user_id` (`user_id`),
  ADD KEY `meta_key` (`meta_key`(191));

--
-- Indexes for table `wp_users`
--
ALTER TABLE `wp_users`
  ADD PRIMARY KEY (`ID`),
  ADD KEY `user_login_key` (`user_login`),
  ADD KEY `user_nicename` (`user_nicename`),
  ADD KEY `user_email` (`user_email`);

--
-- AUTO_INCREMENT for dumped tables
--

--
-- AUTO_INCREMENT for table `wp_commentmeta`
--
ALTER TABLE `wp_commentmeta`
  MODIFY `meta_id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT;

--
-- AUTO_INCREMENT for table `wp_comments`
--
ALTER TABLE `wp_comments`
  MODIFY `comment_ID` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=2;

--
-- AUTO_INCREMENT for table `wp_dopbsp_api_keys`
--
ALTER TABLE `wp_dopbsp_api_keys`
  MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=2;

--
-- AUTO_INCREMENT for table `wp_dopbsp_calendars`
--
ALTER TABLE `wp_dopbsp_calendars`
  MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=2;

--
-- AUTO_INCREMENT for table `wp_dopbsp_coupons`
--
ALTER TABLE `wp_dopbsp_coupons`
  MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT;

--
-- AUTO_INCREMENT for table `wp_dopbsp_discounts`
--
ALTER TABLE `wp_dopbsp_discounts`
  MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=2;

--
-- AUTO_INCREMENT for table `wp_dopbsp_discounts_items`
--
ALTER TABLE `wp_dopbsp_discounts_items`
  MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT;

--
-- AUTO_INCREMENT for table `wp_dopbsp_discounts_items_rules`
--
ALTER TABLE `wp_dopbsp_discounts_items_rules`
  MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT;

--
-- AUTO_INCREMENT for table `wp_dopbsp_emails`
--
ALTER TABLE `wp_dopbsp_emails`
  MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=5;

--
-- AUTO_INCREMENT for table `wp_dopbsp_emails_translation`
--
ALTER TABLE `wp_dopbsp_emails_translation`
  MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=56;

--
-- AUTO_INCREMENT for table `wp_dopbsp_extras`
--
ALTER TABLE `wp_dopbsp_extras`
  MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=2;

--
-- AUTO_INCREMENT for table `wp_dopbsp_extras_groups`
--
ALTER TABLE `wp_dopbsp_extras_groups`
  MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=9;

--
-- AUTO_INCREMENT for table `wp_dopbsp_extras_groups_items`
--
ALTER TABLE `wp_dopbsp_extras_groups_items`
  MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=23;

--
-- AUTO_INCREMENT for table `wp_dopbsp_fees`
--
ALTER TABLE `wp_dopbsp_fees`
  MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=2;

--
-- AUTO_INCREMENT for table `wp_dopbsp_forms`
--
ALTER TABLE `wp_dopbsp_forms`
  MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=2;

--
-- AUTO_INCREMENT for table `wp_dopbsp_forms_fields`
--
ALTER TABLE `wp_dopbsp_forms_fields`
  MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=6;

--
-- AUTO_INCREMENT for table `wp_dopbsp_forms_select_options`
--
ALTER TABLE `wp_dopbsp_forms_select_options`
  MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT;

--
-- AUTO_INCREMENT for table `wp_dopbsp_languages`
--
ALTER TABLE `wp_dopbsp_languages`
  MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=57;

--
-- AUTO_INCREMENT for table `wp_dopbsp_locations`
--
ALTER TABLE `wp_dopbsp_locations`
  MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=2;

--
-- AUTO_INCREMENT for table `wp_dopbsp_models`
--
ALTER TABLE `wp_dopbsp_models`
  MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT;

--
-- AUTO_INCREMENT for table `wp_dopbsp_reservations`
--
ALTER TABLE `wp_dopbsp_reservations`
  MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=89;

--
-- AUTO_INCREMENT for table `wp_dopbsp_rules`
--
ALTER TABLE `wp_dopbsp_rules`
  MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=2;

--
-- AUTO_INCREMENT for table `wp_dopbsp_searches`
--
ALTER TABLE `wp_dopbsp_searches`
  MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT;

--
-- AUTO_INCREMENT for table `wp_dopbsp_settings`
--
ALTER TABLE `wp_dopbsp_settings`
  MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT;

--
-- AUTO_INCREMENT for table `wp_dopbsp_settings_calendar`
--
ALTER TABLE `wp_dopbsp_settings_calendar`
  MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=23;

--
-- AUTO_INCREMENT for table `wp_dopbsp_settings_notifications`
--
ALTER TABLE `wp_dopbsp_settings_notifications`
  MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=18;

--
-- AUTO_INCREMENT for table `wp_dopbsp_settings_payment`
--
ALTER TABLE `wp_dopbsp_settings_payment`
  MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=5;

--
-- AUTO_INCREMENT for table `wp_dopbsp_settings_search`
--
ALTER TABLE `wp_dopbsp_settings_search`
  MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT;

--
-- AUTO_INCREMENT for table `wp_dopbsp_smses`
--
ALTER TABLE `wp_dopbsp_smses`
  MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=2;

--
-- AUTO_INCREMENT for table `wp_dopbsp_smses_translation`
--
ALTER TABLE `wp_dopbsp_smses_translation`
  MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=8;

--
-- AUTO_INCREMENT for table `wp_dopbsp_translation_en`
--
ALTER TABLE `wp_dopbsp_translation_en`
  MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=3713;

--
-- AUTO_INCREMENT for table `wp_fusion_forms`
--
ALTER TABLE `wp_fusion_forms`
  MODIFY `id` bigint(20) NOT NULL AUTO_INCREMENT;

--
-- AUTO_INCREMENT for table `wp_fusion_form_entries`
--
ALTER TABLE `wp_fusion_form_entries`
  MODIFY `id` bigint(20) NOT NULL AUTO_INCREMENT;

--
-- AUTO_INCREMENT for table `wp_fusion_form_fields`
--
ALTER TABLE `wp_fusion_form_fields`
  MODIFY `id` bigint(20) NOT NULL AUTO_INCREMENT;

--
-- AUTO_INCREMENT for table `wp_fusion_form_submissions`
--
ALTER TABLE `wp_fusion_form_submissions`
  MODIFY `id` bigint(20) NOT NULL AUTO_INCREMENT;

--
-- AUTO_INCREMENT for table `wp_layerslider`
--
ALTER TABLE `wp_layerslider`
  MODIFY `id` int(10) NOT NULL AUTO_INCREMENT;

--
-- AUTO_INCREMENT for table `wp_links`
--
ALTER TABLE `wp_links`
  MODIFY `link_id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT;

--
-- AUTO_INCREMENT for table `wp_options`
--
ALTER TABLE `wp_options`
  MODIFY `option_id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=109704;

--
-- AUTO_INCREMENT for table `wp_postmeta`
--
ALTER TABLE `wp_postmeta`
  MODIFY `meta_id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=10704;

--
-- AUTO_INCREMENT for table `wp_posts`
--
ALTER TABLE `wp_posts`
  MODIFY `ID` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=1461;

--
-- AUTO_INCREMENT for table `wp_revslider_css`
--
ALTER TABLE `wp_revslider_css`
  MODIFY `id` int(9) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=60;

--
-- AUTO_INCREMENT for table `wp_revslider_layer_animations`
--
ALTER TABLE `wp_revslider_layer_animations`
  MODIFY `id` int(9) NOT NULL AUTO_INCREMENT;

--
-- AUTO_INCREMENT for table `wp_revslider_settings`
--
ALTER TABLE `wp_revslider_settings`
  MODIFY `id` int(9) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=2;

--
-- AUTO_INCREMENT for table `wp_revslider_sliders`
--
ALTER TABLE `wp_revslider_sliders`
  MODIFY `id` int(9) NOT NULL AUTO_INCREMENT;

--
-- AUTO_INCREMENT for table `wp_revslider_slides`
--
ALTER TABLE `wp_revslider_slides`
  MODIFY `id` int(9) NOT NULL AUTO_INCREMENT;

--
-- AUTO_INCREMENT for table `wp_revslider_static_slides`
--
ALTER TABLE `wp_revslider_static_slides`
  MODIFY `id` int(9) NOT NULL AUTO_INCREMENT;

--
-- AUTO_INCREMENT for table `wp_termmeta`
--
ALTER TABLE `wp_termmeta`
  MODIFY `meta_id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=15;

--
-- AUTO_INCREMENT for table `wp_terms`
--
ALTER TABLE `wp_terms`
  MODIFY `term_id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=35;

--
-- AUTO_INCREMENT for table `wp_term_taxonomy`
--
ALTER TABLE `wp_term_taxonomy`
  MODIFY `term_taxonomy_id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=35;

--
-- AUTO_INCREMENT for table `wp_usermeta`
--
ALTER TABLE `wp_usermeta`
  MODIFY `umeta_id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=55;

--
-- AUTO_INCREMENT for table `wp_users`
--
ALTER TABLE `wp_users`
  MODIFY `ID` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=3;
COMMIT;

/*!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 */;
